{"commit":"799d377eddc3d76ba2169f560927f7f2d88e8e8a","subject":"Fixed getScreenWithBounds","message":"Fixed getScreenWithBounds\n","repos":"catfist\/termtile,ezig\/termtile,apaszke\/termtile,gibsjose\/termtile,Ribeiro\/termtile","old_file":"src\/screenUtils.applescript","new_file":"src\/screenUtils.applescript","new_contents":"global _cache\nset _cache to {}\n\non split(_str, _delimiter)\n\tset _oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to _delimiter\n\tset _arr to every text item of _str\n\tset AppleScript's text item delimiters to _oldDelimiters\n\treturn _arr\nend split\n\non getAllScreens()\n\ttry\n\t\tset _tmp to getAllScreens of _cache\n\t\treturn _tmp\n\tend try\n\n\ttell application \"System Events\"\n\t\ttell dock preferences\n\t\t\tset _autohide to autohide\n\t\tend tell\n\tend tell\n\n\tset _aspath to ((path to me as text) & \"::getScreenInfo\")\n\tset _utilpath to POSIX path of _aspath\n\n\tset _lines to paragraphs of (do shell script _utilpath)\n\tset _dockHeight to word 1 of (item 2 of _lines) as number\n\tset _dockScreen to word 2 of (item 2 of _lines) as number\n\n\tset _screens to {}\n\n\tset _linesOffset to 3\n\trepeat (item 1 of _lines as number) times\n\t\tset _screenIndex to _linesOffset - 2\n\t\tset _screenInfo to split(item _linesOffset of _lines, \" \")\n\t\tset _originX to item 1 of _screenInfo as integer\n\t\tset _originY to item 2 of _screenInfo as integer\n\t\tset _width to item 3 of _screenInfo as integer\n\t\tset _height to item 4 of _screenInfo as integer\n\t\t(* HANDLE DOCK *)\n\t\t(* TODO: RETHINK *)\n\t\tif _dockScreen = _screenIndex then\n\t\t\tset _height to _height - _dockHeight\n\t\tend if\n\t\t(* END HANDLING DOCK *)\n\t\tset _screens to _screens & {{screenIndex:_screenIndex, originX:_originX, originY:_originY, width:_width, height:_height}}\n\t\tset _linesOffset to _linesOffset + 1\n\tend repeat\n\n\tset _result to {dock:{autohide:_autohide, height:_dockHeight, screenIndex:_dockScreen}, screens:_screens}\n\tset _cache to _cache & {getAllScreens:_result}\n\n\treturn _result\nend getAllScreens\n\non getScreenWithCoordinates(_x, _y)\n\tset _screenInfo to getAllScreens()\n\tset _screens to screens of _screenInfo\n\tset _index to 1\n\trepeat (count of _screens) times\n\t\tset _screen to item _index of _screens\n\t\tif (originX of _screen) <= _x and _x < (originX of _screen) + (width of _screen) then\n\t\t\tif (originY of _screen) <= _y and _y < (originY of _screen) + (height of _screen) then\n\t\t\t\treturn _screen\n\t\t\tend if\n\t\tend if\n\t\tset _index to _index + 1\n\tend repeat\n\treturn {}\nend getScreenWithCoordinates\n\non getScreenWithBounds(_bounds)\n\tset _lx to item 1 of _bounds\n\tset _ly to item 2 of _bounds\n\tset _rx to item 3 of _bounds\n\tset _ry to item 4 of _bounds\n\tset _result to getScreenWithCoordinates(_lx, _ly)\n\tif _result = {} then\n\t\tset _result to getScreenWithCoordinates(_rx, _ry)\n\tend if\n\n\tif _result = {} then\n\t\t-- silence warning if fullscreen\n\t\tif not _ly < 20 then\n\t\t\tset _alertResponse to display alert \"Something wierd happened. \" message \"Your window appears to be entirely off screen. Please post an issue on GitHub attaching a screenshot and a brief description.\" as critical buttons {\"Go to GitHub\", \"Never mind\"} default button \"Go to GitHub\"\n\t\t\tif button returned of _alertResponse = \"Go to Github\" then\n\t\t\t\ttell application \"Safari\" to open location \"https:\/\/github.com\/apaszke\/termtile\/issues\"\n\t\t\tend if\n\t\tend if\n\t\terror \"getScreenWithBounds: No screen found for bounds {\" & _lx & \", \" & _ly & \", \" & _rx & \", \" & _ry & \"}\" number 501\n\tend if\n\n\treturn _result\nend getScreenWithBounds\n\non getScreenWithFrontmostWindowOfApp(_appName)\n\tusing terms from application \"Terminal\"\n\t\ttell application _appName\n\t\t\tset _bounds to bounds of window 0\n\t\tend tell\n\tend using terms from\n\n\treturn getScreenWithBounds(_bounds)\nend getScreenWithFrontmostWindowOfApp\n","old_contents":"global _cache\nset _cache to {}\n\non split(_str, _delimiter)\n\tset _oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to _delimiter\n\tset _arr to every text item of _str\n\tset AppleScript's text item delimiters to _oldDelimiters\n\treturn _arr\nend split\n\non getAllScreens()\n\ttry\n\t\tset _tmp to getAllScreens of _cache\n\t\treturn _tmp\n\tend try\n\n\ttell application \"System Events\"\n\t\ttell dock preferences\n\t\t\tset _autohide to autohide\n\t\tend tell\n\tend tell\n\n\tset _aspath to ((path to me as text) & \"::getScreenInfo\")\n\tset _utilpath to POSIX path of _aspath\n\n\tset _lines to paragraphs of (do shell script _utilpath)\n\tset _dockHeight to word 1 of (item 2 of _lines) as number\n\tset _dockScreen to word 2 of (item 2 of _lines) as number\n\n\tset _screens to {}\n\n\tset _linesOffset to 3\n\trepeat (item 1 of _lines as number) times\n\t\tset _screenIndex to _linesOffset - 2\n\t\tset _screenInfo to split(item _linesOffset of _lines, \" \")\n\t\tset _originX to item 1 of _screenInfo as integer\n\t\tset _originY to item 2 of _screenInfo as integer\n\t\tset _width to item 3 of _screenInfo as integer\n\t\tset _height to item 4 of _screenInfo as integer\n\t\t(* HANDLE DOCK *)\n\t\t(* TODO: RETHINK *)\n\t\tif _dockScreen = _screenIndex then\n\t\t\tset _height to _height - _dockHeight\n\t\tend if\n\t\t(* END HANDLING DOCK *)\n\t\tset _screens to _screens & {{screenIndex:_screenIndex, originX:_originX, originY:_originY, width:_width, height:_height}}\n\t\tset _linesOffset to _linesOffset + 1\n\tend repeat\n\n\tset _result to {dock:{autohide:_autohide, height:_dockHeight, screenIndex:_dockScreen}, screens:_screens}\n\tset _cache to _cache & {getAllScreens:_result}\n\n\treturn _result\nend getAllScreens\n\non getScreenWithCoordinates(_x, _y)\n\tset _screenInfo to getAllScreens()\n\tset _screens to screens of _screenInfo\n\tset _index to 1\n\trepeat (count of _screens) times\n\t\tset _screen to item _index of _screens\n\t\tif (originX of _screen) <= _x and _x < (originX of _screen) + (width of _screen) then\n\t\t\tif (originY of _screen) <= _y and _y < (originY of _screen) + (height of _screen) then\n\t\t\t\treturn _screen\n\t\t\tend if\n\t\tend if\n\t\tset _index to _index + 1\n\tend repeat\n\treturn {}\nend getScreenWithCoordinates\n\non getScreenWithBounds(_bounds)\n\tset _lx to item 1 of _bounds\n\tset _ly to item 2 of _bounds\n\tset _rx to item 3 of _bounds\n\tset _ry to item 4 of _bounds\n\tset _result to getScreenWithCoordinates(_lx, _ly)\n\tif _result = {} then\n\t\tset _result to getScreenWithCoordinates(_rx, _ry)\n\tend if\n\n\t-- silence warning if fullscreen\n\tif _result = {} and not _ly < 20 then\n\t\tset _alertResponse to display alert \"Something wierd happened. \" message \"Your window appears to be entirely off screen. Please post an issue on GitHub attaching a screenshot and a brief description.\" as critical buttons {\"Go to GitHub\", \"Never mind\"} default button \"Go to GitHub\"\n\t\tif button returned of _alertResponse = \"Go to Github\" then\n\t\t\ttell application \"Safari\" to open location \"https:\/\/github.com\/apaszke\/termtile\/issues\"\n\t\tend if\n\tend if\n\terror \"getScreenWithBounds: No screen found for bounds {\" & _lx & \", \" & _ly & \", \" & _rx & \", \" & _ry & \"}\" number 501\nend getScreenWithBounds\n\non getScreenWithFrontmostWindowOfApp(_appName)\n\tusing terms from application \"Terminal\"\n\t\ttell application _appName\n\t\t\tset _bounds to bounds of window 0\n\t\tend tell\n\tend using terms from\n\n\treturn getScreenWithBounds(_bounds)\nend getScreenWithFrontmostWindowOfApp\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fac33c9f6a48015d874cc118e5cc5da54976bbca","subject":"should eliminate duplicates now if no new things to add","message":"should eliminate duplicates now if no new things to add\n","repos":"voccs\/iphone2ical","old_file":"add-events.applescript","new_file":"add-events.applescript","new_contents":"on split(theString, theDelimiter)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to theDelimiter\n\tset theArray to every text item of theString\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn theArray\nend split\n\non join(theList, theDelimiter)\n\tset prevTIDs to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to theDelimiter\n\tset output to \"\" & theList\n\tset AppleScript's text item delimiters to prevTIDs\n\treturn output\nend join\n\non run argv\n\tset CALLDB to item 1 of argv\n\tset CONTACTDB to item 2 of argv\n\tset PHONENAME to item 3 of argv\n\tset CALID to item 4 of argv\n\tset LASTID to item 5 of argv\n\t--set CALLDB to \"\/Users\/ryanlee\/Library\/Application Support\/MobileSync\/Backup\/185128b0d50c97e1e386e6a82ac33605d3589e2a\/2b2b0084a1bc3a5ac8c27afdf14afb42c61a19ca\"\n\t--set CONTACTDB to \"\/Users\/ryanlee\/Library\/Application Support\/MobileSync\/Backup\/185128b0d50c97e1e386e6a82ac33605d3589e2a\/31bb7ba8914766d4ba40d6dfb6113c8b614be442\"\n\t--set PHONENAME to \"Moore\"\n\t--set CALID to \"3C67DB8B-2A06-4A04-BBB5-9D7C07986712\"\n\t--set LASTID to 1580\n\tset RET to LASTID\n\tset tzOffset to time to GMT\n\tset main_query to \"attach '\" & CONTACTDB & \"' as ab; SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'outgoing' from call, ab.ABPerson as abp where call.rowid > \" & LASTID & \" and flags&1=1 and id=abp.rowid union SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'incoming' from call, ab.ABPerson as abp, ab.ABMultiValue as mv where call.rowid > \" & LASTID & \" and flags&1=0 and address=replace(replace(replace(replace(replace(replace(replace(mv.value,'.',''),'-',''),' ',''),'(',''),')',''),'+1',''),'+','') and mv.record_id=abp.rowid union SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'outgoing' from call, ab.ABPerson as abp, ab.ABMultiValue as mv where id=-1 and call.rowid > \" & LASTID & \" and flags&1=1 and address=replace(replace(replace(replace(replace(replace(replace(mv.value,'.',''),'-',''),' ',''),'(',''),')',''),'+1',''),'+','') and mv.record_id=abp.rowid;\"\n\tset rows to paragraphs of (do shell script \"\/usr\/bin\/sqlite3 -batch \\\"\" & CALLDB & \"\\\" \\\"\" & main_query & \"\\\"\")\n\tset found_ids to {}\n\trepeat with i from 1 to (length of rows)\n\t\tset eventInfo to my split(item i of rows, \"|\")\n\t\tset found_ids to found_ids & item 1 of eventInfo\n\tend repeat\n\tset sub_query to \"SELECT rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, address, '', 'outgoing' FROM call WHERE call.rowid > \" & LASTID & \" AND flags&1=1 AND id=-1 AND rowid not in (\" & my join(found_ids, \",\") & \") UNION SELECT rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, address, '', 'incoming' FROM call WHERE call.rowid > \" & LASTID & \" AND flags&1=0 AND id=-1 AND rowid not in (\" & my join(found_ids, \",\") & \")\"\n\tset rows to rows & paragraphs of (do shell script \"\/usr\/bin\/sqlite3 -batch \\\"\" & CALLDB & \"\\\" \\\"\" & sub_query & \"\\\"\")\n\ttell application \"iCal\"\n\t\tset theCalendar to first calendar whose uid = CALID\n\t\tset now to current date\n\t\ttell theCalendar\n\t\t\trepeat with row in rows\n\t\t\t\tset eventStart to current date\n\t\t\t\tset eventEnd to current date\n\t\t\t\tset eventInfo to my split(row, \"|\")\n\t\t\t\tset eventSummary to item 7 of eventInfo\n\t\t\t\tif item 8 of eventInfo is not \"\" then\n\t\t\t\t\tset eventSummary to eventSummary & \" \" & item 8 of eventInfo\n\t\t\t\tend if\n\t\t\t\tset eventSummary to eventSummary & \" (\" & item 9 of eventInfo & \")\"\n\t\t\t\tset eventURN to \"urn:tel:record:\" & PHONENAME & \":\" & item 1 of eventInfo\n\t\t\t\tset eventStartParts to my split(item 3 of eventInfo, \"-\")\n\t\t\t\tset eventEndParts to my split(item 4 of eventInfo, \"-\")\n\t\t\t\tset year of eventStart to item 1 of eventStartParts\n\t\t\t\tset month of eventStart to item 2 of eventStartParts\n\t\t\t\tset day of eventStart to item 3 of eventStartParts\n\t\t\t\tset hours of eventStart to item 4 of eventStartParts\n\t\t\t\tset minutes of eventStart to item 5 of eventStartParts\n\t\t\t\tset seconds of eventStart to item 6 of eventStartParts\n\t\t\t\tset year of eventEnd to item 1 of eventEndParts\n\t\t\t\tset month of eventEnd to item 2 of eventEndParts\n\t\t\t\tset day of eventEnd to item 3 of eventEndParts\n\t\t\t\tset hours of eventEnd to item 4 of eventEndParts\n\t\t\t\tset minutes of eventEnd to item 5 of eventEndParts\n\t\t\t\tset seconds of eventEnd to item 6 of eventEndParts\n\t\t\t\tmake new event at end of events with properties {summary:eventSummary, location:PHONENAME, start date:eventStart, end date:eventEnd, allday event:false, stamp date:now, url:eventURN}\n\t\t\t\tif item 1 of eventInfo as integer > RET then\n\t\t\t\t\tset RET to item 1 of eventInfo as integer\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend tell\n\tend tell\n\treturn RET\nend run\n","old_contents":"on split(theString, theDelimiter)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to theDelimiter\n\tset theArray to every text item of theString\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn theArray\nend split\n\non join(theList, theDelimiter)\n\tset prevTIDs to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to theDelimiter\n\tset output to \"\" & theList\n\tset AppleScript's text item delimiters to prevTIDs\n\treturn output\nend join\n\non run argv\n\tset RET to 0\n\tset CALLDB to item 1 of argv\n\tset CONTACTDB to item 2 of argv\n\tset PHONENAME to item 3 of argv\n\tset CALID to item 4 of argv\n\tset LASTID to item 5 of argv\n\t--set CALLDB to \"\/Users\/ryanlee\/Library\/Application Support\/MobileSync\/Backup\/185128b0d50c97e1e386e6a82ac33605d3589e2a\/2b2b0084a1bc3a5ac8c27afdf14afb42c61a19ca\"\n\t--set CONTACTDB to \"\/Users\/ryanlee\/Library\/Application Support\/MobileSync\/Backup\/185128b0d50c97e1e386e6a82ac33605d3589e2a\/31bb7ba8914766d4ba40d6dfb6113c8b614be442\"\n\t--set PHONENAME to \"Moore\"\n\t--set CALID to \"3C67DB8B-2A06-4A04-BBB5-9D7C07986712\"\n\t--set LASTID to 0\n\tset tzOffset to time to GMT\n\tset main_query to \"attach '\" & CONTACTDB & \"' as ab; SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'outgoing' from call, ab.ABPerson as abp where call.rowid > \" & LASTID & \" and flags&1=1 and id=abp.rowid union SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'incoming' from call, ab.ABPerson as abp, ab.ABMultiValue as mv where call.rowid > \" & LASTID & \" and flags&1=0 and address=replace(replace(replace(replace(replace(replace(replace(mv.value,'.',''),'-',''),' ',''),'(',''),')',''),'+1',''),'+','') and mv.record_id=abp.rowid union SELECT call.rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, abp.first, abp.last, 'outgoing' from call, ab.ABPerson as abp, ab.ABMultiValue as mv where id=-1 and call.rowid > \" & LASTID & \" and flags&1=1 and address=replace(replace(replace(replace(replace(replace(replace(mv.value,'.',''),'-',''),' ',''),'(',''),')',''),'+1',''),'+','') and mv.record_id=abp.rowid;\"\n\tset rows to paragraphs of (do shell script \"\/usr\/bin\/sqlite3 -batch \\\"\" & CALLDB & \"\\\" \\\"\" & main_query & \"\\\"\")\n\tset found_ids to {}\n\trepeat with i from 1 to (length of rows)\n\t\tset eventInfo to my split(item i of rows, \"|\")\n\t\tset found_ids to found_ids & item 1 of eventInfo\n\tend repeat\n\tset sub_query to \"SELECT rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, address, '', 'outgoing' FROM call WHERE call.rowid > \" & LASTID & \" AND flags&1=1 AND id=-1 AND rowid not in (\" & my join(found_ids, \",\") & \") UNION SELECT rowid, address, strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \",'unixepoch'), strftime('%Y-%m-%d-%H-%M-%S',date\" & tzOffset & \"+duration,'unixepoch'), flags, id, address, '', 'incoming' FROM call WHERE call.rowid > \" & LASTID & \" AND flags&1=0 AND id=-1 AND rowid not in (\" & my join(found_ids, \",\") & \")\"\n\tset rows to rows & paragraphs of (do shell script \"\/usr\/bin\/sqlite3 -batch \\\"\" & CALLDB & \"\\\" \\\"\" & sub_query & \"\\\"\")\n\ttell application \"iCal\"\n\t\tset theCalendar to first calendar whose uid = CALID\n\t\tset now to current date\n\t\ttell theCalendar\n\t\t\trepeat with row in rows\n\t\t\t\tset eventStart to current date\n\t\t\t\tset eventEnd to current date\n\t\t\t\tset eventInfo to my split(row, \"|\")\n\t\t\t\tset eventSummary to item 7 of eventInfo\n\t\t\t\tif item 8 of eventInfo is not \"\" then\n\t\t\t\t\tset eventSummary to eventSummary & \" \" & item 8 of eventInfo\n\t\t\t\tend if\n\t\t\t\tset eventSummary to eventSummary & \" (\" & item 9 of eventInfo & \")\"\n\t\t\t\tset eventURN to \"urn:tel:record:\" & PHONENAME & \":\" & item 1 of eventInfo\n\t\t\t\tset eventStartParts to my split(item 3 of eventInfo, \"-\")\n\t\t\t\tset eventEndParts to my split(item 4 of eventInfo, \"-\")\n\t\t\t\tlog eventStartParts\n\t\t\t\tlog eventEndParts\n\t\t\t\tset year of eventStart to item 1 of eventStartParts\n\t\t\t\tset month of eventStart to item 2 of eventStartParts\n\t\t\t\tset day of eventStart to item 3 of eventStartParts\n\t\t\t\tset hours of eventStart to item 4 of eventStartParts\n\t\t\t\tset minutes of eventStart to item 5 of eventStartParts\n\t\t\t\tset seconds of eventStart to item 6 of eventStartParts\n\t\t\t\tset year of eventEnd to item 1 of eventEndParts\n\t\t\t\tset month of eventEnd to item 2 of eventEndParts\n\t\t\t\tset day of eventEnd to item 3 of eventEndParts\n\t\t\t\tset hours of eventEnd to item 4 of eventEndParts\n\t\t\t\tset minutes of eventEnd to item 5 of eventEndParts\n\t\t\t\tset seconds of eventEnd to item 6 of eventEndParts\n\t\t\t\tmake new event at end of events with properties {summary:eventSummary, location:PHONENAME, start date:eventStart, end date:eventEnd, allday event:false, stamp date:now, url:eventURN}\n\t\t\t\tif item 1 of eventInfo as integer > RET then\n\t\t\t\t\tset RET to item 1 of eventInfo as integer\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend tell\n\tend tell\n\treturn RET\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e395cd463dd615115c5e6466472387a470246299","subject":"do pause\/refresh after go to Record","message":"do pause\/refresh after go to Record\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"47d130a5426dcaf669537ee4c18981bab938effe","subject":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.","message":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.\n","repos":"Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl","old_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000r\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000r\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000e\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000d\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u001d\u0000 \u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000'\u0000(\r\u0000'\u0000\u00012\u0000\u0001\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000#\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0004Z\u0000\u0000\u0000#\u0000]\u0000+\u0000,\r\u0000+\u0000\u0002@\u0000\u0000\u0000#\u0000*\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0005\u0000#\u0000(\u0000\/\r\u0000\/\u0000\u0003I\u0000\u0002\u0000#\u0000(\u00000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\r\u0000,\u0000\u0005Y\u0000\u0000\u0000-\u0000Y\u00001\u00002\u00003\r\u00001\u0000\u0004Z\u0000\u0000\u0000;\u0000T\u00004\u00005\r\u00004\u0000\u0002>\u0001\u0000\u0000;\u0000C\u00006\u00007\r\u00006\u0000\u0002n\u0000\u0000\u0000;\u0000A\u00008\u00009\r\u00008\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npFmt\r\u00009\u0000\u0002n\u0000\u0000\u0000;\u0000?\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000<\u0000?\u0000<\n\u0000\u0004\ncArt\r\u0000<\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00007\u0000\u0001m\u0000\u0000\u0000A\u0000B\n\u0000\u0004\nPICT\r\u00005\u0000\u0001k\u0000\u0000\u0000F\u0000P\u0000=\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000F\u0000N\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000F\u0000L\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000J\u0000L\n\u0000\u0004\npRaw\r\u0000C\u0000\u0002n\u0000\u0000\u0000F\u0000J\u0000D\u0000E\r\u0000D\u0000\u00024\u0000\u0000\u0000G\u0000J\u0000F\n\u0000\u0004\ncArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000E\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000?\u0000\u0002\u0000G\r\u0000G\u0000\u0000S\u0000\u0000\u0000O\u0000P\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00003\u0000\u0003l\u0000\u0005\u00001\u00006\u0000H\r\u0000H\u0000\u0003I\u0000\u0002\u00001\u00006\u0000I\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000I\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000J\r\u0000J\u0000\u0002r\u0000\u0000\u0000^\u0000d\u0000K\u0000L\r\u0000K\u0000\u0001J\u0000\u0000\u0000^\u0000b\u0000M\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000O\u0000\u0002\u0000P\r\u0000P\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000Q\u000f\u0000Q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000m\u0000r\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000s\u0000u\u0000X\r\u0000X\u0000\u0001L\u0000\u0000\u0000s\u0000u\u0000Y\r\u0000Y\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Z\r\u0000Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000[\u0000\\\u0001\u0000\u0000\u0010\u0000[\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\\\u0000\u0007\u0010\u0000]\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000u\u0000`\u0002\u0000`\u0000\u0002\u0000\u0005\u0000a\u0002\u0000a\u0000\u0002\u0000V\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000_\u0000\u0013\u0000Q\u0000\u0012\u0000T\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npFmt\n\u0000\u0004\nPICT\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000v\u0014\u0000g\u0012\u0000_EO*,,EO*,EOEO-EOj\f\u0000\fk\u0003\u001d\u00001\u0017\u0000+kj\f\u0000\fkh\u001c\u0000\u0000\/,\u0001\u001d\u0000\u000f\/,EO\u0016Y\u0000\u0003h[OYY\u0000\u0003hOlvEUW\u0000\fX\u0000\u0010\u0000\u0011a\u0000\u0012EO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000$\u0000%\r\u0000$\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$\u0000(\r\u0000(\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000)\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000%\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000,\u0000-\r\u0000,\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npRaw\r\u0000\/\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000*\u0000-\u00002\n\u0000\u0004\ncArt\r\u00002\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u00006\u0000<\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u00006\u0000:\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000:\u000f\u0000:\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000I\u0000K\u0000A\r\u0000A\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000I\u0002\u0000I\u0000\u0002\u0000\u0005\u0000J\u0002\u0000J\u0000\u0002\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0010\u0000:\u0000\u0012\u0000=\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2bce1f1321af1562d0aa1b4762be8c361ee1cc26","subject":"Capitalize button names and menu items","message":"Capitalize button names and menu items\n\nTo conform with Mac user interface guidelines.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a Text Editor...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"194136855b059207fd33ae937b7d409422187b32","subject":"Added some if\/then logic for colors to use for certain users","message":"Added some if\/then logic for colors to use for certain users\n","repos":"ncuster\/bstick","old_file":"BlinkStickIM.applescript","new_file":"BlinkStickIM.applescript","new_contents":"# This is a very basic state change AppleScript file that will\n# call out to my blinkstick python app to light up the count\n# of unread messages, and eventually will light it up with different\n# colors if the messages originate from certain people.\n\nset redUsers to (system attribute \"RED_USERS\")\nset ledColor to \"blue\"\n\ntell application \"System Events\" to set adiumisrunning to (name of processes) contains \"Adium\"\nif adiumisrunning then\n\ttell application \"Adium\"\n\t\tset tabs to count of chats\n\t\tset unreads to 0\n\t\t#return chat 1\n\t\t\n\t\trepeat with loopi from 1 to tabs\n\t\t\t#set unreads to unreads + (unread message count of chat loopi)\n\t\t\tset localUnreads to (unread message count of chat loopi)\n\t\t\tset unreads to unreads + localUnreads\n\t\t\tset chatUser to id of (chat loopi)\n\t\t\t\n\t\t\tif (localUnreads > 0) and (chatUser is in redUsers) then\n\t\t\t\tlog chatUser & \" was in red_users\"\n\t\t\t\tset ledColor to \"red\"\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\tdo shell script \"~NCUSTER\/ncuster\/scripts\/simpleled.py \" & unreads & \" \" & ledColor\n\tend tell\nelse\n\treturn \"off\"\nend if\n\n#tell application \"Adium\" to get properties\n","old_contents":"# This is a very basic state change AppleScript file that will\n# call out to my blinkstick python app to light up the count\n# of unread messages, and eventually will light it up with different\n# colors if the messages originate from certain people.\n\ntell application \"System Events\" to set adiumisrunning to (name of processes) contains \"Adium\"\nif adiumisrunning then\n\ttell application \"Adium\"\n\t\tset tabs to count of chats\n\t\tset unreads to 0\n\t\t#return chat 1\n\t\trepeat with loopi from 1 to tabs\n\t\t\tset unreads to unreads + (unread message count of chat loopi)\n\t\tend repeat\n\t\t#\t\treturn unreads\n\tend tell\nelse\n\treturn \"off\"\nend if\n\n#tell application \"Adium\" to get properties\n#do shell script \"~NCUSTER\/ncuster\/scripts\/BlinkStickRed.sh \" & unreads\n#display dialog \"my variable: \" & tabs\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"0bdc9fa698b18e29e4e1a0c880fb8be8e8a69301","subject":"Use english syntax","message":"Use english syntax\n","repos":"chainsawsalad\/imessage-liberator,chainsawsalad\/imessage-liberator,chainsawsalad\/imessage-liberator","old_file":"host\/SendImessage.applescript","new_file":"host\/SendImessage.applescript","new_contents":"#! \/usr\/bin\/osascript\non run argv\n tell application \"Messages\"\n send (item 2 of argv) to buddy (item 1 of argv) of (first service whose service type is iMessage)\n end tell\nend run\n","old_contents":"#! \/usr\/bin\/osascript\non run argv\n tell application \"Messages\"\n send (item 2 of argv) to buddy (item 1 of argv) of (service 1 whose service type is iMessage)\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a1a4b282468378bd01f0e65fcb25a9ed1ac976dc","subject":"better dialogs in Loop Script Steps","message":"better dialogs in Loop Script Steps\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"36c34b538edb8a4e8d5eabb83cdac04078676d91","subject":"Add explanation of arguments in AppleScript scripts","message":"Add explanation of arguments in AppleScript scripts\n","repos":"bogem\/nehm","old_file":"lib\/nehm\/applescripts\/add_track_to_playlist.applescript","new_file":"lib\/nehm\/applescripts\/add_track_to_playlist.applescript","new_contents":"on run argv\n\tset posixFile to first item of argv\n\tset playlistName to second item of argv\n\n\ttell application \"iTunes\"\n\t\tset p to posixFile\n\t\tset a to (p as POSIX file)\n\t\tadd a to playlist playlistName\n\tend tell\nend run\n","old_contents":"on run argv\n\ttell application \"iTunes\"\n\t\tset p to first item of argv\n\t\tset a to (p as POSIX file)\n\t\tadd a to playlist (second item of argv)\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5b562505906514f2731d6ce5fa7ee24054abbde0","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bd242a8768b8e2f457af581c782ef8a9f2ba0be7","subject":"fdo#67258 catch error when calling mdfind","message":"fdo#67258 catch error when calling mdfind\n\nThis can be the case when spotlight is disabled. So just ignore any\nerror when trying to locate installed versions and let the user continue\nwith the manual selection instead of aborting.\n\nChange-Id: I2c4e12652b8cb3b43af3ca6d8d553f0558f91858\nReviewed-on: https:\/\/gerrit.libreoffice.org\/5069\nReviewed-by: Fridrich Strba \nTested-by: Fridrich Strba \n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"setup_native\/scripts\/osx_install_languagepack.applescript","new_file":"setup_native\/scripts\/osx_install_languagepack.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mpl-2.0","lang":"AppleScript"} {"commit":"035704cc80fbb7f7c907a4502bd696717f650bbf","subject":"Don't activate","message":"Don't activate\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\t\treturn slide number of thisSlide\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, itemIndex, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item itemIndex\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\non addStyledTextItem(docId, slideIndex, theText, theStyleList, thePosition, theSize, theFont)\n\ttell application \"Keynote\"\n\t\ttell slide slideIndex of document id docId\n\t\t\tset thisTextItem to make new text item with properties {object text:theText}\n\t\t\ttell thisTextItem\n\t\t\t\t-- set type size\n\t\t\t\tset the size of its object text to theSize\n\t\t\t\t-- set typeface\n\t\t\t\tset the font of its object text to theFont\n\t\t\t\t-- adjust its vertical positon\n\t\t\t\tset its position to thePosition\n\t\t\t\t-- style the text\n\t\t\t\trepeat with i from 1 to my min(the length of theStyleList, the length of theText)\n\t\t\t\t\tset thisRGBColorValue to item i of theStyleList\n\t\t\t\t\tset the color of character i of object text to thisRGBColorValue\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addStyledTextItem\n\non min(a, b)\n\tif a < b then\n\t\tset x to a\n\telse\n\t\tset x to b\n\tend if\n\treturn x\nend min\n\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\t\treturn slide number of thisSlide\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, itemIndex, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item itemIndex\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\non addStyledTextItem(docId, slideIndex, theText, theStyleList, thePosition, theSize, theFont)\n\ttell application \"Keynote\"\n\t\ttell slide slideIndex of document id docId\n\t\t\tset thisTextItem to make new text item with properties {object text:theText}\n\t\t\ttell thisTextItem\n\t\t\t\t-- set type size\n\t\t\t\tset the size of its object text to theSize\n\t\t\t\t-- set typeface\n\t\t\t\tset the font of its object text to theFont\n\t\t\t\t-- adjust its vertical positon\n\t\t\t\tset its position to thePosition\n\t\t\t\t-- style the text\n\t\t\t\trepeat with i from 1 to my min(the length of theStyleList, the length of theText)\n\t\t\t\t\tset thisRGBColorValue to item i of theStyleList\n\t\t\t\t\tset the color of character i of object text to thisRGBColorValue\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addStyledTextItem\n\non min(a, b)\n\tif a < b then\n\t\tset x to a\n\telse\n\t\tset x to b\n\tend if\n\treturn x\nend min\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c25cd8f6cbcf1bc607becf517e41f9d693cc02bb","subject":"The created dmg is only a few pixels off the right size now.","message":"The created dmg is only a few pixels off the right size now.\n","repos":"MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian","old_file":"Release\/dmg_perian.scpt","new_file":"Release\/dmg_perian.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003l\u0000\u0003\u0000\u0000\u0000\u0006\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u000e\u000e\u0000\u000e\u0000\u0001\u0000\u000f\u0011\u0000\u000f\u0000\u0018\u0000P\u0000e\u0000r\u0000i\u0000a\u0000n\u0000 \u00001\u0000.\u00000\u0000b\u00001\u0002\u0000\u0000\u0002\u0000\u0000\f\u0000\n\u0000#\u0000\u001d for testing in script editor\u0000\u0002\u0000\u0000\u000e\u0000\u000b\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000:\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\r\u0000\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\u0013\u00006\u0000$\u0000%\r\u0000$\u0000\u0001k\u0000\u0000\u0000\u0019\u00005\u0000&\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e\u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000becvwicnv\r\u0000*\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001d\n\u0000\u0004\npvew\u0002\u0000(\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002r\u0000\u0000\u0000\u001f\u0000$\u0000-\u0000.\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000.\u0000\u00011\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ntbvi\u0002\u0000,\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000%\u0000*\u00001\u00002\r\u00001\u0000\u0001m\u0000\u0000\u0000%\u0000&\n\u0000\b\u000bboovfals\r\u00002\u0000\u00011\u0000\u0000\u0000&\u0000)\n\u0000\u0004\nstvi\u0002\u00000\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u0000+\u00005\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u0000+\u00001\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0013\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0002\u0012\u0002\u0000<\u0000\u0002\u0000=\r\u0000=\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0002\b\u0002\u0000\u0000\r\u00005\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000>\r\u0000>\u0000\u00011\u0000\u0000\u00001\u00004\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\ncwnd\u0002\u0000#\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0002\u00007\u0000<\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000=\u0000F\u0000C\u0000D\r\u0000C\u0000\u0003l\u0001\u0000\u0000=\u0000D\u0000E\r\u0000E\u0000\u0002n\u0000\u0000\u0000=\u0000D\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000@\u0000D\n\u0000\u0004\nicop\r\u0000G\u0000\u00011\u0000\u0000\u0000=\u0000@\n\u0000\u0004\ncwnd\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000B\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002O\u0000\u0000\u0000G\u0000_\u0000J\u0000K\r\u0000J\u0000\u0001k\u0000\u0000\u0000K\u0000^\u0000L\u0002\u0000L\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000K\u0000N\u0003\u0000@\r\u0000P\u0000\u00011\u0000\u0000\u0000N\u0000S\n\u0000\u0004\nlvis\u0002\u0000N\u0000\u0002\u0000Q\r\u0000Q\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u0000U\u0000X\n\u0000\b\u000bearrnarr\r\u0000S\u0000\u00011\u0000\u0000\u0000X\u0000]\n\u0000\u0004\niarr\u0002\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000I\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002r\u0000\u0000\u0000`\u0000n\u0000V\u0000W\r\u0000V\u0000\u00024\u0000\u0000\u0000`\u0000h\u0000X\n\u0000\u0004\nfile\r\u0000X\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0000Y\u000e\u0000Y\u0000\u0001\u0000Z\u0011\u0000Z\u00006\u0000.\u0000b\u0000a\u0000c\u0000k\u0000g\u0000r\u0000o\u0000u\u0000n\u0000d\u0000:\u0000p\u0000e\u0000r\u0000i\u0000a\u0000n\u0000d\u0000m\u0000g\u0000b\u0000g\u0000.\u0000p\u0000n\u0000g\r\u0000W\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000i\u0000m\n\u0000\u0004\nibkg\r\u0000\\\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002r\u0000\u0000\u0000o\u0000\u0000_\u0000`\r\u0000_\u0000\u0001J\u0000\u0000\u0000o\u0000w\u0000a\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000o\u0000r\u0003\u0000<\u0002\u0000c\u0000\u0002\u0000d\r\u0000d\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0003\u0000(\u0002\u0000\u0000\r\u0000`\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000e\u0000f\r\u0000e\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000f\u0000\u00024\u0000\u0000\u0000w\u0000\u0000g\n\u0000\u0004\ncobj\r\u0000g\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000h\u000e\u0000h\u0000\u0001\u0000i\u0011\u0000i\u0000\u001e\u0000P\u0000e\u0000r\u0000i\u0000a\u0000n\u0000.\u0000p\u0000r\u0000e\u0000f\u0000P\u0000a\u0000n\u0000e\u0002\u0000^\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0001\u0000\u0000\u0000l\u0000m\u0001\u0000\u0000\f\u0000l\u00004\u0000. set position of item \"QuickTime\" to {370, 40}\u0000\u0002\u0000\u0000\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000\\\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000o\u0000s\u0000i\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000\"\u0000Q\u0000u\u0000i\u0000c\u0000k\u0000T\u0000i\u0000m\u0000e\u0000\"\u0000 \u0000t\u0000o\u0000 \u0000{\u00003\u00007\u00000\u0000,\u0000 \u00004\u00000\u0000}\u0002\u0000k\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000\u0000\u0000q\u0000r\r\u0000q\u0000\u0001J\u0000\u0000\u0000\u0000\u0000s\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000<\u0002\u0000u\u0000\u0002\u0000v\r\u0000v\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001,\u0002\u0000\u0000\r\u0000r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000x\u0000\u00024\u0000\u0000\u0000\u0000\u0000y\n\u0000\u0004\ncobj\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0000\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0016\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000s\u0000.\u0000t\u0000x\u0000t\u0002\u0000p\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000<\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000R\u0000e\u0000a\u0000d\u0000 \u0000M\u0000e\u0000.\u0000r\u0000t\u0000f\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0014\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\b\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0013\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\b\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwnd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000\u0004\u0000\n\u0000\n\u0000\u0004\ncdis\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\t\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\t\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005give the finder some time to write the .DS_Store file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000j\u0000g\u0000i\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000t\u0000i\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000.\u0000D\u0000S\u0000_\u0000S\u0000t\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000HH+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000s0[\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00000\u0014\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u0002\u0000\u000e\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0011\u0000\u0007*k+\u0000\u0001\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0015\u0000\u0000\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0010\u0000\u0000'\u0000~}|{zyxwvutsrqpon\u0000Ymlkj\u0000hih\u0000zg\u0000fedcba\n\u0000\u0004\ncdis\n\u0000\u0004\nTEXT\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\ncwnd\n~\u0000\b\u000becvwicnv\n}\u0000\u0004\npvew\n|\u0000\u0004\ntbvi\n{\u0000\u0004\nstvi\u0003z\u0000\u0013\u0003y\u0000\u0003x\u0002\u0012\u0003w\u0002\b\u0003v\u0000\u0004\nu\u0000\u0004\npbnd\nt\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \ns\u0000\u0004\nicop\u0003r\u0000@\nq\u0000\u0004\nlvis\np\u0000\b\u000bearrnarr\no\u0000\u0004\niarr\nn\u0000\u0004\nfile\nm\u0000\u0004\nibkg\u0003l\u0000<\u0003k\u0000(\nj\u0000\u0004\ncobj\ni\u0000\u0004\nposn\u0003h\u0001,\u0003g\u0000\nf\u0000\u0004\nreg?\ne\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0003d\u0000\u0014\u0003c\u0002\u000f\u0003b\u0000\u0005\na\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000\u0012\u0000*&\/\u0012\u0000*j\f\u0000\u0003O*,\u0012\u0000\u001e*,FOf*,FOf*,FOv*,FUO*j\f\u0000\u000fO*,a\u0000\u0010,EO\u0012\u0000\u0015a\u0000\u0011*a\u0000\u0012,FOa\u0000\u0013*a\u0000\u0014,FUO*a\u0000\u0015a\u0000\u0016\/a\u0000\u0017,FOa\u0000\u0018a\u0000\u0019lv*a\u0000\u001aa\u0000\u001b\/a\u0000\u001c,FOa\u0000\u0018a\u0000\u001dlv*a\u0000\u001aa\u0000\u001e\/a\u0000\u001c,FOa\u0000\u0018a\u0000\u001flv*a\u0000\u001aa\u0000 \/a\u0000\u001c,FO*a\u0000!fl\f\u0000\"O*,\u0012\u0000\u001da\u0000#a\u0000$v*,FOa\u0000$v*,FUO*a\u0000!fl\f\u0000\"UOa\u0000%j\f\u0000&U\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002l\u0000\u0003\u0000\u0000\u0000\u0006\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000b\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\r\f\u0000\r\u0000\u0012\u0000\fPerian 1.0b1\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\f\u0000\n\u0000#\u0000\u001d for testing in script editor\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0010\r\u0000\u0010\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0001k\u0000\u0000\u0000\r\u0000\u0000\u001c\u0002\u0000\u001c\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002O\u0000\u0000\u0000\u0013\u00006\u0000!\u0000\"\r\u0000!\u0000\u0001k\u0000\u0000\u0000\u0019\u00005\u0000#\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000becvwicnv\r\u0000'\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001d\n\u0000\u0004\npvew\u0002\u0000%\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000\u001f\u0000$\u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000+\u0000\u00011\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ntbvi\u0002\u0000)\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000.\u0000\/\r\u0000.\u0000\u0001m\u0000\u0000\u0000%\u0000&\n\u0000\b\u000bboovfals\r\u0000\/\u0000\u00011\u0000\u0000\u0000&\u0000)\n\u0000\u0004\nstvi\u0002\u0000-\u0000\u0002\u00000\r\u00000\u0000\u0002r\u0000\u0000\u0000+\u00005\u00001\u00002\r\u00001\u0000\u0001J\u0000\u0000\u0000+\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0013\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0002\u00007\u0000\u0002\u00008\u00009\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0003\u0002\u00009\u0000\u0002\u0000:\r\u0000:\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0003\u0002\u0000\u0000\r\u00002\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000;\r\u0000;\u0000\u00011\u0000\u0000\u00001\u00004\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\ncwnd\u0002\u0000 \u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003I\u0000\u0002\u00007\u0000<\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000=\u0000D\u0000@\u0000A\r\u0000@\u0000\u0002l\u0001\u0000\u0000=\u0000B\u0000B\r\u0000B\u0000\u0002n\u0000\u0000\u0000=\u0000B\u0000C\u0000D\r\u0000C\u0000\u0001m\u0000\u0000\u0000@\u0000B\n\u0000\u0004\nicop\r\u0000D\u0000\u00011\u0000\u0000\u0000=\u0000@\n\u0000\u0004\ncwnd\u0001\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000?\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0002O\u0000\u0000\u0000E\u0000]\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000I\u0000\\\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000I\u0000R\u0000L\u0000M\r\u0000L\u0000\u0001m\u0000\u0000\u0000I\u0000L\u0003\u0000@\r\u0000M\u0000\u00011\u0000\u0000\u0000L\u0000Q\n\u0000\u0004\nlvis\u0002\u0000K\u0000\u0002\u0000N\r\u0000N\u0000\u0002r\u0000\u0000\u0000S\u0000\\\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000S\u0000V\n\u0000\b\u000bearrnarr\r\u0000P\u0000\u00011\u0000\u0000\u0000V\u0000[\n\u0000\u0004\niarr\u0002\u0000\u0000\r\u0000H\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000F\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000^\u0000l\u0000S\u0000T\r\u0000S\u0000\u00024\u0000\u0000\u0000^\u0000f\u0000U\n\u0000\u0004\nfile\r\u0000U\u0000\u0001m\u0000\u0000\u0000b\u0000e\u0000V\f\u0000V\u0000!\u0000\u001b.background:periandmgbg.png\u0000\u0002\u0000\u0000\r\u0000T\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u00011\u0000\u0000\u0000g\u0000k\n\u0000\u0004\nibkg\r\u0000X\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000R\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0002r\u0000\u0000\u0000m\u0000\u0000[\u0000\\\r\u0000[\u0000\u0001J\u0000\u0000\u0000m\u0000u\u0000]\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0003\u0000<\u0002\u0000_\u0000\u0002\u0000`\r\u0000`\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0003\u0000(\u0002\u0000\u0000\r\u0000\\\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000a\u0000b\r\u0000a\u0000\u00011\u0000\u0000\u0000}\u0000\n\u0000\u0004\nposn\r\u0000b\u0000\u00024\u0000\u0000\u0000u\u0000}\u0000c\n\u0000\u0004\ncobj\r\u0000c\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0000d\f\u0000d\u0000\u0015\u0000\u000fPerian.prefPane\u0000\u0002\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0001\u0000\u0000\u0000g\u0001\u0000\u0000\f\u0000g\u00004\u0000. set position of item \"QuickTime\" to {370, 40}\u0000\u0002\u0000\u0000\u0002\u0000f\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000\u0000\u0000j\u0000k\r\u0000j\u0000\u0001J\u0000\u0000\u0000\u0000\u0000l\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000<\u0002\u0000n\u0000\u0002\u0000o\r\u0000o\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001,\u0002\u0000\u0000\r\u0000k\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000p\u0000q\r\u0000p\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000q\u0000\u00024\u0000\u0000\u0000\u0000\u0000r\n\u0000\u0004\ncobj\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000s\f\u0000s\u0000\u0011\u0000\u000bChanges.txt\u0000\u0002\u0000\u0000\u0002\u0000i\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002r\u0000\u0000\u0000\u0000\u0000v\u0000w\r\u0000v\u0000\u0001J\u0000\u0000\u0000\u0000\u0000x\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000<\u0002\u0000z\u0000\u0002\u0000{\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000}\u0000\u00024\u0000\u0000\u0000\u0000\u0000~\n\u0000\u0004\ncobj\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0011\u0000\u000bRead Me.rtf\u0000\u0002\u0000\u0000\u0002\u0000u\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0014\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\b\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0013\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0002\b\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwnd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000\u0004\u0000\n\u0000\n\u0000\u0004\ncdis\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0006\u0000\t\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\t\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005give the finder some time to write the .DS_Store file\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000a\u0000\u0000\f\nFinder.app\u0430ascrj\r \u0000j \u0000\u0000\u0000\u0001\u0005\u00010 \u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(i9\u0000\u0005\u0002MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017gH+\u0000\u0000\u0000\u0000\f\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000Cpgp%\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000]\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g\u0105\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\f\u0000\u0000\f\u0000\u0000\f\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u0002\u0000\r\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u0011\u0000\u0007*k+\u0000\u0001\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0012\u0000\u0000\u000b\u0000\u00160\u0000\u0012process_disk_image\u0000\u0000\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\u00180\u0000\nvolumename\u0000\nvolumeName\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0010\u0000\u0000'\u0000~}|{zyxwv\u0000Vutsr\u0000dqp\u0000so\u0000nmlkjih\n\u0000\u0004\ncdis\n\u0000\u0004\nTEXT\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\ncwnd\n\u0000\b\u000becvwicnv\n\u0000\u0004\npvew\n\u0000\u0004\ntbvi\n\u0000\u0004\nstvi\u0003\u0000\u0013\u0003\u0000\u0003\u0003\u0003~\u0000\u0004\n}\u0000\u0004\npbnd\n|\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \n{\u0000\u0004\nicop\u0003z\u0000@\ny\u0000\u0004\nlvis\nx\u0000\b\u000bearrnarr\nw\u0000\u0004\niarr\nv\u0000\u0004\nfile\nu\u0000\u0004\nibkg\u0003t\u0000<\u0003s\u0000(\nr\u0000\u0004\ncobj\nq\u0000\u0004\nposn\u0003p\u0001,\u0003o\u0000\nn\u0000\u0004\nreg?\nm\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0003l\u0000\u0014\u0003k\u0002\u000f\u0003j\u0002\b\u0003i\u0000\u0005\nh\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000\u0012\u0000*&\/\u0012\u0000*j\f\u0000\u0003O*,\u0012\u0000\u001e*,FOf*,FOf*,FOv*,FUO*j\f\u0000\u000eO*,,EO\u0012\u0000\u0015a\u0000\u0010*a\u0000\u0011,FOa\u0000\u0012*a\u0000\u0013,FUO*a\u0000\u0014a\u0000\u0015\/a\u0000\u0016,FOa\u0000\u0017a\u0000\u0018lv*a\u0000\u0019a\u0000\u001a\/a\u0000\u001b,FOa\u0000\u0017a\u0000\u001clv*a\u0000\u0019a\u0000\u001d\/a\u0000\u001b,FOa\u0000\u0017a\u0000\u001elv*a\u0000\u0019a\u0000\u001f\/a\u0000\u001b,FO*a\u0000 fl\f\u0000!O*,\u0012\u0000!a\u0000\"a\u0000#a\u0000$v*,FOa\u0000#a\u0000$v*,FUO*a\u0000 fl\f\u0000!UOa\u0000%j\f\u0000&U\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"4b58866886bd00d0131e4a504a9771855f9714c2","subject":"pettyify actually true","message":"pettyify actually true\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Clipboard FM Objects to XML.applescript","new_file":"Scripts\/fmClip - Clipboard FM Objects to XML.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"fcac41139915301c467bf479f134ac5bcf8ebce9","subject":"cleanup of unused code","message":"cleanup of unused code\n\nRemoved unsused code\n\nChange-Id: I0f50c29e681e72f3cf01a4da5a76782cc65723c6\nSigned-off-by: Falko Zurell <553d907fcdd96929d5363dc3b6e443669c7e54a8@zurell.de>\n","repos":"maxheadroom\/helpers,maxheadroom\/helpers,maxheadroom\/helpers","old_file":"AppleScript\/LogOutlookMetaData.applescript","new_file":"AppleScript\/LogOutlookMetaData.applescript","new_contents":"\n-- Set location of logfile\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n-- a function to append data to the logfile\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\n-- a function to replace characters in a given string\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t-- Count the messages received from Outlook.\n\tset theMessageCount to count theMessages\n\t\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\ttry\n\t\t\t\t\tset theSenderName to address of theSender\n\t\t\t\ton error\n\t\t\t\t\tset theSenderName to \"unresolved Sender Name\"\n\t\t\t\tend try\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tset theSenderAddress to address of theSender\n\t\t\ton error\n\t\t\t\tset theSenderAddress to \"unresolved\"\n\t\t\tend try\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\t\n\t\t\t-- extract CC recipients\n\t\t\tset theCC to cc recipients\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset CCList to CCList & address of recipientEMail as text\n\t\t\t\tset CCList to CCList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- extract the TO recipients\n\t\t\tset theTO to to recipients\n\t\t\tset TOList to \"\"\n\t\t\trepeat with rcp in theTO\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset TOList to TOList & address of recipientEMail as text\n\t\t\t\tset TOList to TOList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & TOList & \"|\" & CCList & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","old_contents":"\n\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n-- This code is triggered if you manually run the script in AppleScript Editor. It retreives any selected messages and then processes them. This is good for testing.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t--(plain text content of (item 1 of theMessages))\n\t--return paragraphs of result\nend tell\n\n-- Count the messages received from Outlook.\nset theMessageCount to count theMessages\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\ttry\n\t\t\t\t\tset theSenderName to address of theSender\n\t\t\t\ton error\n\t\t\t\t\tset theSenderName to \"unresolved Sender Name\"\n\t\t\t\tend try\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tset theSenderAddress to address of theSender\n\t\t\ton error\n\t\t\t\tset theSenderAddress to \"unresolved\"\n\t\t\tend try\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\t\n\t\t\t-- extract CC recipients\n\t\t\tset theCC to cc recipients\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset CCList to CCList & address of recipientEMail as text\n\t\t\t\tset CCList to CCList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- extract the TO recipients\n\t\t\tset theTO to to recipients\n\t\t\tset TOList to \"\"\n\t\t\trepeat with rcp in theTO\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset TOList to TOList & address of recipientEMail as text\n\t\t\t\tset TOList to TOList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & TOList & \"|\" & CCList & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"106ac78f29a0a9ac02911285c47907d67db534eb","subject":"pasteFromClipbaord 1.3","message":"pasteFromClipbaord 1.3\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Menus\/fmGUI_PasteFromClipboard.applescript","new_file":"library\/fmGUI_Menus\/fmGUI_PasteFromClipboard.applescript","new_contents":"-- fmGUI_PasteFromClipboard()\n-- Erik Shagdar, NYHTC\n-- Paste FileMaker object into the current context. Assumes the focus is already set and there is an object in the clipboard\n\n(*\nHISTORY:\n\t1.3 - 2016-10-27 ( eshagdar ): added try block.\n\t1.2 - 2016-10-18 ( eshagdar ): call fmGUI_clickMenuItem handler\n\t1.1 - 2016-09-29 ( eshagdar ): HTC is converting 'Paste' menu item to 'Paste Styled Text'. The default 'Paste' shortcut is pasting plain text. This tries the default 'Paste' command, and then uses 'Paste Styled Text' if needed.\n\t1.0 - 2016-06-28 ( eshagdar ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_clickMenuItem\n*)\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_PasteFromClipboard()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_PasteFromClipboard()\n\t-- version 1.3, Erik Shagdar\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t-- get the menu item\n\t\t\t\ttry\n\t\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste\"\n\t\t\t\ton error\n\t\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste Styled Text\"\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\treturn fmGUI_ClickMenuItem({menuItemRef:pasteMenuItem})\n\t\t\n\ton error errMsg number errNum\n\t\terror \"Couldn't fmGUI_CopySelected - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_PasteFromClipboard\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_clickMenuItem(prefs)\n\ttell helper to fmGUI_clickMenuItem(prefs)\nend fmGUI_clickMenuItem","old_contents":"-- fmGUI_PasteFromClipboard()\n-- Erik Shagdar, NYHTC\n-- Paste FileMaker object into the current context. Assumes the focus is already set and there is an object in the clipboard\n\n(*\nHISTORY:\n\t1.2 - 2016-10-18 ( eshagdar ): call fmGUI_clickMenuItem handler\n\t1.1 - 2016-09-29 ( eshagdar ): HTC is converting 'Paste' menu item to 'Paste Styled Text'. The default 'Paste' shortcut is pasting plain text. This tries the default 'Paste' command, and then uses 'Paste Styled Text' if needed.\n\t1.0 - 2016-06-28 ( eshagdar ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_clickMenuItem\n*)\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_PasteFromClipboard()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_PasteFromClipboard()\n\t-- version 1.2, Erik Shagdar\n\t\n\tfmGUI_AppFrontMost()\n\t\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t-- get the menu item\n\t\t\ttry\n\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste\"\n\t\t\ton error\n\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste Styled Text\"\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\tend tell\n\t\n\t\n\treturn fmGUI_clickMenuItem({menuItemRef:pasteMenuItem})\n\t\nend fmGUI_PasteFromClipboard\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_clickMenuItem(prefs)\n\ttell helper to fmGUI_clickMenuItem(prefs)\nend fmGUI_clickMenuItem","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1ee633a9f5f3897c095c4bceca23a1c807d37742","subject":"Fix: update blueutil version to v ^2","message":"Fix: update blueutil version to v ^2\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/bluetooth_toggle.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/bluetooth_toggle.applescript","new_contents":"-- Symlinked into ~\/Library\/Services\/ dir to be run as an Apple Service\n\n-- Using \"blueutil\" installed at:\nset blueutilpath to \"\/usr\/local\/bin\/blueutil\"\n-- Might work? The blueutil API changed in version 2\nset sb to (do shell script blueutilpath)\nif \"Power: 1\" in sb then\n\tdo shell script blueutilpath & \" -p off\"\n\treturn \"Bluetooth is now off\"\nelse\n\tdo shell script blueutilpath & \" -p on\"\n\treturn \"Bluetooth is now on\"\nend if\n","old_contents":"-- Symlinked into ~\/Library\/Services\/ dir to be run as an Apple Service\n\n-- Using \"blueutil\" installed at:\nset blueutilpath to \"\/usr\/local\/bin\/blueutil\"\n-- Toggle Bluetooth off\nset sb to last word of (do shell script blueutilpath & \" status\")\nif sb is \"on\" then\n\tdo shell script blueutilpath & \" off\"\n\treturn \"Bluetooth is now off\"\nelse\n\tdo shell script blueutilpath & \" on\"\n\treturn \"Bluetooth is now on\"\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0fdcf20540e055ee7d991af04c9ab3a25402954b","subject":"Take disc number into account when sorting songs","message":"Take disc number into account when sorting songs\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-2:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"\"\n\tset xml to xml & \"\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\ttry\n\n\t\tset fileRef to open for access theFile with write permission\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\n\ton error\n\n\t\tclose access fileRef\n\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-2:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\ttry\n\n\t\tset fileRef to open for access theFile with write permission\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\n\ton error\n\n\t\tclose access fileRef\n\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif track number of theSong is songIndex then\n\n\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"26b404339c4c709e3a48953e5581b69def54f9d6","subject":"Delete trailing whitespace added by Script Editor","message":"Delete trailing whitespace added by Script Editor\n\nUntil I find an easy way to make Git do it only for AppleScript source\nfiles, I'll need to remember to run the following command before every\ncommit:\n\n $ LC_ALL=C sed -i '' -E 's\/[[:space:]]*$\/\/' *.applescript\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\n\tif (count of argv) = 0 then return\n\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\n\t\t\t(* == Settings == *)\n\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\n\t\t\t(* == Data Retrieval == *)\n\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\n\t\t\t(* == Controllers == *)\n\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t(* == UI == *)\n\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\n\t\t\t(* == Processing == *)\n\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\n\t\t(* == Setters == *)\n\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\n\t\t(* == Getters == *)\n\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\n\t\t(* == Actions == *)\n\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\n\t\t\t_validate_fields()\n\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\n\t\t\tif _should_create_file then _create_log_file()\n\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\n\t\ttry\n\t\t\tset old_clipboard to the clipboard -- be nice\n\t\tend try\n\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\n\t\t(* == Plist File Methods (delegate) == *)\n\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\n\t\ton init()\n\t\t\tcontinue init()\n\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\n\t\t(* == State Methods == *)\n\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\n\t\t(* == Utility Methods == *)\n\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\n\t\t(* == Unicode Characters for Views == *)\n\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\n\t\t(* == View Components == *)\n\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\n\t\t(* == Methods == *)\n\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\n\t\tproperty _chosen_category : missing value --> string\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\n\t\t(* == Additional methods == *)\n\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\n\t\t(* == PUBLIC == *)\n\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\n\tset os_ver to system version of (system info)\n\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\n\t\tFrom 'man iconv_open':\n\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file as string\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard -- be nice\n\t\tend try\n\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\t\n\tset os_ver to system version of (system info)\n\t\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\t\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file as string\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8108d2326cbb120d26ea79af51aa93de25e324a7","subject":"Restore default cancel buttons so that cmd-. works","message":"Restore default cancel buttons so that cmd-. works\n\nAdding padding to the cancel buttons prevented the standard keyboard\nshortcut from working.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-28\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-28\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"455360fd7afe7423cc93600e8b354b4f185d5cd3","subject":"Added source attribution","message":"Added source attribution\n\nhttps:\/\/discussions.apple.com\/thread\/3172966","repos":"Mausy5043\/OSX-EmptyTrash","old_file":"oldtrash.applescript","new_file":"oldtrash.applescript","new_contents":"-- stolen from: https:\/\/discussions.apple.com\/thread\/3172966\nproperty keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n return (date d) \u2264 (current date) - daysToWait * days\nend checkDate\n","old_contents":"property keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n return (date d) \u2264 (current date) - daysToWait * days\nend checkDate\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3da4ae8cce298ea5459f61c2cd8e06b7439a1063","subject":"Make sure all hidden files are outside the background image","message":"Make sure all hidden files are outside the background image\n\nIf the user enabled Mac OS X to show hidden files then when mounted the\ngenerated DMG package may show some of them within the bounds of the\nbackground image.\n\nThis change makes sure that all items in the DMG package are moved to a\nposition outside the bounds of the background image. The\nPOSITITION_CLAUSE and APPLICATION_CLAUSE that are executed later will\nstill place the app icon and Application correctly.","repos":"andreyvit\/create-dmg,mrpau\/create-dmg,digitalreasoning\/create-dmg,strukturag\/create-dmg,heavilessrose\/create-dmg,andreyvit\/create-dmg,heavilessrose\/create-dmg,mrpau\/create-dmg,heavilessrose\/create-dmg,andrey-str\/create-dmg,digitalreasoning\/create-dmg,andreyvit\/create-dmg,mrpau\/create-dmg,strukturag\/create-dmg,strukturag\/create-dmg,andrey-str\/create-dmg,andrey-str\/create-dmg,digitalreasoning\/create-dmg","old_file":"support\/template.applescript","new_file":"support\/template.applescript","new_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset position of every item to {theBottomRightX + 100, 100}\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9c29d52bd0c27f84251adf023ad80993595be743","subject":"Set the bounds of the disk image volume window. I'm not sure why this was commented out. Not only have I uncommented it, I also changed the value.","message":"Set the bounds of the disk image volume window. I'm not sure why this was commented out. Not only have I uncommented it, I also changed the value.\n","repos":"tectronics\/growl,an0nym0u5\/growl,tectronics\/growl,xhruso00\/growl,morganestes\/morganestes-growl,ylian\/growl,chashion\/growl,ylian\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,nagyistoce\/growl,chashion\/growl,an0nym0u5\/growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,SalrJupiter\/growl,nochkin\/growl,timbck2\/growl,nagyistoce\/growl,nagyistoce\/growl,tectronics\/growl,ylian\/growl,chashion\/growl,tectronics\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,nagyistoce\/growl,xhruso00\/growl,timbck2\/growl,chashion\/growl,an0nym0u5\/growl,ylian\/growl,SalrJupiter\/growl,chashion\/growl,timbck2\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,morganestes\/morganestes-growl,nochkin\/growl,nkhorman\/archive-growl,timbck2\/growl,nochkin\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,nochkin\/growl,ylian\/growl,timbck2\/growl,nkhorman\/archive-growl,xhruso00\/growl,morganestes\/morganestes-growl,tectronics\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,nochkin\/growl,xhruso00\/growl,chashion\/growl,nkhorman\/archive-growl,nochkin\/growl,an0nym0u5\/growl,timbck2\/growl,SalrJupiter\/growl,ylian\/growl,xhruso00\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset bounds to {30, 50, 579, 486}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d78e2a10819dfa9463ca817314e93ed79e7d7749","subject":"[os] chmod +x applescript for closing system preferences","message":"[os] chmod +x applescript for closing system preferences\n","repos":"wingy3181\/dotfiles,wingy3181\/dotfiles,wingy3181\/dotfiles","old_file":"src\/os\/preferences\/macos\/close_system_preferences_panes.applescript","new_file":"src\/os\/preferences\/macos\/close_system_preferences_panes.applescript","new_contents":"#!\/usr\/bin\/osascript\n\ntell application \"System Preferences\" to quit\n","old_contents":"#!\/usr\/bin\/osascript\n\ntell application \"System Preferences\" to quit\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a38c1bf263eb81b13cbf261a1297254295fa1169","subject":"Fixes #6 \u2014 now checks track type with ffprobe before attempting to merge","message":"Fixes #6 \u2014 now checks track type with ffprobe before attempting to merge\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n if not errorHappened then\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- Check that the audio files are aac \/ mp4a\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \\\"\" & (item theIndex of these_files as text) & \"\\\" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set errorHappened to true\n display dialog \"The track \" & (item theIndex of these_files as text) & \" is not an AAC\/MP4 file and cannot not joined.\"\n end try\n if not errorHappened then\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end if\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"13e6daaff29d31e342dae59e00f3a1652245e576","subject":"fix spotify","message":"fix spotify\n","repos":"ankoh\/dotfiles","old_file":"bin\/spotify.scpt","new_file":"bin\/spotify.scpt","new_contents":"#!\/usr\/bin\/osascript\n\ntell application \"Spotify\"\n if it is running then\n if player state is playing then\n set track_name to name of current track\n set artist_name to artist of current track\n\n if artist_name > 0\n # If the track has an artist set and is therefore most likely a song rather than an advert\n \"\u266b \" & artist_name & \" - \" & track_name\n else\n # If the track doesn't have an artist set and is therefore most likely an advert rather than a song\n \"~ \" & track_name\n end if\n end if\n end if\nend tell\n","old_contents":"if application \"Spotify\" is running then\n tell application \"Spotify\"\n if exists current track then\n set theName to the name of the current track\n set theArtist to the artist of the current track\n try\n return \"\u266b \" & theName & \" - \" & theArtist\n on error err\n end try\n end if\n end tell\nend if\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"5c81268cc75c8a4d03d083f72992f85fa1882427","subject":"contrib autostart script changes","message":"contrib autostart script changes\n","repos":"zammad\/zammad,monotek\/zammad,monotek\/zammad,monotek\/zammad,zammad\/zammad,monotek\/zammad,zammad\/zammad,zammad\/zammad,monotek\/zammad,monotek\/zammad,zammad\/zammad,zammad\/zammad","old_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0007\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u00008\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000s\u0000c\u0000h\u0000e\u0000d\u0000u\u0000l\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000-\u0000t\u0002\u0000\u0014\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0018\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\n\u0000\u001f\u0000\"\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\n\u0000\u001f\u0000#\u0000$\r\u0000#\u0000\u0001k\u0000\u0000\u0000\u000e\u0000\u001e\u0000%\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0013\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000'\u0000\u0002\u0000(\r\u0000(\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001e\u0000)\u0000*\r\u0000)\u0000\u0002c\u0000\u0000\u0000\u0014\u0000\u001c\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001a\u0000-\r\u0000-\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\nfvtg\r\u0000\/\u0000\u00024\u0001\u0000\u0000\u0014\u0000\u0018\u00000\n\u0000\u0004\nbrow\r\u00000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\u0004\nctxt\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000$\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u00001\u000f\u00001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\u00008\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002g5\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g'\t\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u00003Helgoland:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000 \u0000%\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000 \u0000%\u00007\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00007\u0000\u0001m\u0000\u0000\u0000 \u0000!\u00008\b\u00008\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000&\u0000\u0000<\r\u0000<\u0000\u0002O\u0000\u0000\u0000&\u0000\u0000=\u0000>\r\u0000=\u0000\u0001k\u0000\u0000\u0000*\u0000\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000*\u0000\/\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u00000\u0000N\u0000D\u0000E\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000D\u0000\u0002b\u0000\u0000\u00000\u0000=\u0000F\u0000G\r\u0000F\u0000\u0002b\u0000\u0000\u00000\u00009\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00000\u00003\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0006\u0000c\u0000d\u0000 \r\u0000I\u0000\u0003l\u0000\u0005\u00003\u00008\u0000L\r\u0000L\u0000\u0002n\u0000\u0000\u00003\u00008\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u00004\u00008\n\u0000\u0004\npsxp\r\u0000N\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000G\u0000\u0001m\u0000\u0000\u00009\u0000<\u0000O\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000\u0004\u0000.\u0000.\u0006\u0000E\u0000\u0003\u0000Q\n\u0000\u0004\nkfil\r\u0000Q\u0000\u0002n\u0000\u0000\u0000@\u0000J\u0000R\u0000S\r\u0000R\u0000\u00011\u0000\u0000\u0000F\u0000J\n\u0000\u0004\ntcnt\r\u0000S\u0000\u0003l\u0001\u0000\u0000@\u0000F\u0000T\r\u0000T\u0000\u00024\u0001\u0000\u0000@\u0000F\u0000U\n\u0000\u0004\ncwin\r\u0000U\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000C\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000Z\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000Z\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0000[\b\u0000[\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0002\u0000U\u0000U\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0005Y\u0000\u0000\u0000U\u0000\u0000_\u0000`\u0000a\r\u0000_\u0000\u0001k\u0000\u0000\u0000c\u0000\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0004Z\u0000\u0000\u0000c\u0000\u0000e\u0000f\r\u0000e\u0000\u0002?\u0000\u0001\u0000c\u0000f\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000h\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\r\u0000f\u0000\u0001k\u0000\u0000\u0000i\u0000\u0000i\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003I\u0000\u0002\u0000i\u0000n\u0000l\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000l\u0000\u0001m\u0000\u0000\u0000i\u0000j\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000k\u0000\u0002\u0000m\r\u0000m\u0000\u0002O\u0000\u0000\u0000o\u0000\u0000n\u0000o\r\u0000n\u0000\u0003I\u0000\u0002\u0000u\u0000\u0000p\u0000q\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000p\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\u0002\u0000t\u0006\u0000q\u0000\u0003\u0000t\n\u0000\u0004\nfaal\r\u0000t\u0000\u0001J\u0000\u0000\u0000{\u0000\u0000u\u0002\u0000u\u0000\u0002\u0000v\r\u0000v\u0000\u0001m\u0000\u0000\u0000{\u0000~\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000o\u0000\u0001m\u0000\u0000\u0000o\u0000r\u0000w\u000f\u0000w\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\u00008\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0014\n;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u0000:Helgoland:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003I\u0000\u0002\u0000\u0000\u0000z\u0000{\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000z\u0000\u0003l\u0000\u0005\u0000\u0000\u0000|\r\u0000|\u0000\u0002n\u0000\u0000\u0000\u0000\u0000}\u0000~\r\u0000}\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000{\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000y\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000a\u0000\u0003I\u0000\u0001\u0000Y\u0000^\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000PU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P5\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000\u0000\u0000W\u0000\u0002\u0000\/Helgoland:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\u0000\u0002\u00004\u0000\u0002\u0000\u0000\u0002\u0000;\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001e\u0000\r\u0000\u0011\u0000\u0015\u0000\u0019\u0000\u001c\u00001\u00008\u0000\u0000J\u0000O\u0000w\u0000r\u0003\u0000\u0005\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\bO*k\/,&EUOj\f\u0000\u000eO\u0012\u0000*j\f\u0000\bOa\u0000\u0010a\u0000\u0011,%a\u0000\u0012%a\u0000\u0013*a\u0000\u0014k\/a\u0000\u0015,l\f\u0000\u0016Oj\f\u0000\u000eO\u0017\u0000Vkj\f\u0000\u0017kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\u000eOa\u0000\u0018\u0012\u0000\u0011a\u0000\u0019a\u0000\u001aa\u0000\u001bkvl\f\u0000\u001cUY\u0000\u0003hOa\u0000\u001d\/a\u0000\u0013*a\u0000\u0014k\/a\u0000\u0015,l\f\u0000\u0016Okj\f\u0000\u000e[OYU\u000f\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0005\u000e\u0000\u0000\u0005\u0000\u0000\r\u0000\u0011\u0000\u0015\u0000\u0019\u0000\u001c\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000m\u0000r\u0000f\u0000l\u0000i\u0000x\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000g\u0000i\u0000t\u0000:\u0000z\u0000a\u0000m\u0000m\u0000a\u0000d\u0000:\u0000c\u0000o\u0000n\u0000t\u0000r\u0000i\u0000b\u0000:\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0007\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u00008\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000s\u0000c\u0000h\u0000e\u0000d\u0000u\u0000l\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000-\u0000t\u0002\u0000\u0014\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0018\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\n\u0000\u001f\u0000\"\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\n\u0000\u001f\u0000#\u0000$\r\u0000#\u0000\u0001k\u0000\u0000\u0000\u000e\u0000\u001e\u0000%\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0013\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000'\u0000\u0002\u0000(\r\u0000(\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001e\u0000)\u0000*\r\u0000)\u0000\u0002c\u0000\u0000\u0000\u0014\u0000\u001c\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001a\u0000-\r\u0000-\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\nfvtg\r\u0000\/\u0000\u00024\u0001\u0000\u0000\u0014\u0000\u0018\u00000\n\u0000\u0004\nbrow\r\u00000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\u0004\nctxt\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000$\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u00001\u000f\u00001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\u00008\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002g5\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g'\t\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u00003Helgoland:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000 \u0000%\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000 \u0000%\u00007\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00007\u0000\u0001m\u0000\u0000\u0000 \u0000!\u00008\b\u00008\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000&\u0000\u0000<\r\u0000<\u0000\u0002O\u0000\u0000\u0000&\u0000\u0000=\u0000>\r\u0000=\u0000\u0001k\u0000\u0000\u0000*\u0000\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000*\u0000\/\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u00000\u0000N\u0000D\u0000E\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000D\u0000\u0002b\u0000\u0000\u00000\u0000=\u0000F\u0000G\r\u0000F\u0000\u0002b\u0000\u0000\u00000\u00009\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00000\u00003\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0006\u0000c\u0000d\u0000 \r\u0000I\u0000\u0003l\u0000\u0005\u00003\u00008\u0000L\r\u0000L\u0000\u0002n\u0000\u0000\u00003\u00008\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u00004\u00008\n\u0000\u0004\npsxp\r\u0000N\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000G\u0000\u0001m\u0000\u0000\u00009\u0000<\u0000O\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000\u0004\u0000.\u0000.\u0006\u0000E\u0000\u0003\u0000Q\n\u0000\u0004\nkfil\r\u0000Q\u0000\u0002n\u0000\u0000\u0000@\u0000J\u0000R\u0000S\r\u0000R\u0000\u00011\u0000\u0000\u0000F\u0000J\n\u0000\u0004\ntcnt\r\u0000S\u0000\u0003l\u0001\u0000\u0000@\u0000F\u0000T\r\u0000T\u0000\u00024\u0001\u0000\u0000@\u0000F\u0000U\n\u0000\u0004\ncwin\r\u0000U\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000C\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000Z\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000Z\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0000[\b\u0000[\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0002\u0000U\u0000U\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0005Y\u0000\u0000\u0000U\u0000\u0000_\u0000`\u0000a\r\u0000_\u0000\u0001k\u0000\u0000\u0000c\u0000\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0004Z\u0000\u0000\u0000c\u0000\u0000e\u0000f\r\u0000e\u0000\u0002?\u0000\u0001\u0000c\u0000f\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000h\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\r\u0000f\u0000\u0001k\u0000\u0000\u0000i\u0000\u0000i\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003I\u0000\u0002\u0000i\u0000n\u0000l\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000l\u0000\u0001m\u0000\u0000\u0000i\u0000j\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000k\u0000\u0002\u0000m\r\u0000m\u0000\u0002O\u0000\u0000\u0000o\u0000\u0000n\u0000o\r\u0000n\u0000\u0003I\u0000\u0002\u0000u\u0000\u0000p\u0000q\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000p\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\u0002\u0000t\u0006\u0000q\u0000\u0003\u0000t\n\u0000\u0004\nfaal\r\u0000t\u0000\u0001J\u0000\u0000\u0000{\u0000\u0000u\u0002\u0000u\u0000\u0002\u0000v\r\u0000v\u0000\u0001m\u0000\u0000\u0000{\u0000~\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000o\u0000\u0001m\u0000\u0000\u0000o\u0000r\u0000w\u000f\u0000w\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\u00008\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0014\n;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u0000:Helgoland:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003I\u0000\u0002\u0000\u0000\u0000z\u0000{\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000z\u0000\u0003l\u0000\u0005\u0000\u0000\u0000|\r\u0000|\u0000\u0002n\u0000\u0000\u0000\u0000\u0000}\u0000~\r\u0000}\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000{\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000y\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000a\u0000\u0003I\u0000\u0001\u0000Y\u0000^\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\tHelgoland\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049bXH+\u0000\u0000\u0000\u0000\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000PU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u049bH\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P5\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000\u0000\u0000W\u0000\u0002\u0000\/Helgoland:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000H\u0000e\u0000l\u0000g\u0000o\u0000l\u0000a\u0000n\u0000d\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\u0000\u0002\u00004\u0000\u0002\u0000\u0000\u0002\u0000;\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001e\u0000\r\u0000\u0011\u0000\u0015\u0000\u0019\u0000\u001c\u00001\u00008\u0000\u0000J\u0000O\u0000w\u0000r\u0003\u0000\u0005\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\bO*k\/,&EUOj\f\u0000\u000eO\u0012\u0000*j\f\u0000\bOa\u0000\u0010a\u0000\u0011,%a\u0000\u0012%a\u0000\u0013*a\u0000\u0014k\/a\u0000\u0015,l\f\u0000\u0016Oj\f\u0000\u000eO\u0017\u0000Vkj\f\u0000\u0017kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\u000eOa\u0000\u0018\u0012\u0000\u0011a\u0000\u0019a\u0000\u001aa\u0000\u001bkvl\f\u0000\u001cUY\u0000\u0003hOa\u0000\u001d\/a\u0000\u0013*a\u0000\u0014k\/a\u0000\u0015,l\f\u0000\u0016Okj\f\u0000\u000e[OYU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"4c61545e24a848def926b16791f321adc9d0b370","subject":"Fix path issues in non-AAC joining","message":"Fix path issues in non-AAC joining\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix, randomPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n property ffmpegmissing : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed. Check the Terminal for error messages and additional information.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Generate the random prefix\n -- via http:\/\/macscripter.net\/viewtopic.php?id=12212\n set randomPrefix to \"\"\n repeat with x from 1 to 6\n set randomChar to ASCII character (random number from 97 to 122)\n set randomPrefix to randomPrefix & randomChar\n end repeat\n set randomPrefix to randomPrefix & \"_\"\n \n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -vn -f mpegts -loglevel fatal -vn \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -vn -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script \"cd \/private\/tmp\/ && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" \" & randomPrefix & \"cat.mp4\"\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n -- Apparently fails if file is accessed too quickly\n -- https:\/\/bugs.launchpad.net\/maxosx\/+bug\/368342\n delay 2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n \ttry\n \t\tprogressField's setStringValue_(\"Waiting ten seconds...\")\n \t\tdelay 9\n \t\tprogressField's setStringValue_(\"Adding TOC...\")\n \t\tdelay 1\n \t\ttell application \"iTunes\"\n \tset lyrics of theAddedTrack to tocText\n \tend tell\n \ton error innererror number innererrornumber\n \t\tset errorHappened to true\n \tdo shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n \tprogressField's setStringValue_(\"\")\n \tset the clipboard to tocText\n \tdisplay dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & innererrornumber & \": \" & innererror & \" The TOC has been copied to the clipboard instead.\"\n \tend try\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script\n\n","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix, randomPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n property ffmpegmissing : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed. Check the Terminal for error messages and additional information.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Generate the random prefix\n -- via http:\/\/macscripter.net\/viewtopic.php?id=12212\n set randomPrefix to \"\"\n repeat with x from 1 to 6\n set randomChar to ASCII character (random number from 97 to 122)\n set randomPrefix to randomPrefix & randomChar\n end repeat\n set randomPrefix to randomPrefix & \"_\"\n \n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -vn -f mpegts -loglevel fatal -vn \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -vn -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp\/\" & randomPrefix & \" && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n -- Apparently fails if file is accessed too quickly\n -- https:\/\/bugs.launchpad.net\/maxosx\/+bug\/368342\n delay 2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n \ttry\n \t\tprogressField's setStringValue_(\"Waiting ten seconds...\")\n \t\tdelay 9\n \t\tprogressField's setStringValue_(\"Adding TOC...\")\n \t\tdelay 1\n \t\ttell application \"iTunes\"\n \tset lyrics of theAddedTrack to tocText\n \tend tell\n \ton error innererror number innererrornumber\n \t\tset errorHappened to true\n \tdo shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n \tprogressField's setStringValue_(\"\")\n \tset the clipboard to tocText\n \tdisplay dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & innererrornumber & \": \" & innererror & \" The TOC has been copied to the clipboard instead.\"\n \tend try\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script\n\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"fb7148e3ca6b3cb22d1a0ed5f220281105a90c4f","subject":"Made Homebrew install more robust \u2014 added brew update, and brew prune (fixes error from old installs)","message":"Made Homebrew install more robust \u2014 added brew update, and brew prune (fixes error from old installs)\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew upgrade;brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"da076f89b13cbbf60f0de02c35960cbb536ec958","subject":"fix(launch_in_iterm): update applescript for iTerm 3 beta","message":"fix(launch_in_iterm): update applescript for iTerm 3 beta\n","repos":"asfaltboy\/Sublime-Test-Plier,asfaltboy\/Sublime-Test-Plier,asfaltboy\/SublimeTestPlier","old_file":"utils\/launch_in_iterm.applescript","new_file":"utils\/launch_in_iterm.applescript","new_contents":"-- Updated launcher for iTerm 3 beta\nset test_cmd to system attribute \"TEST_CMD\"\n\ntell application \"iTerm\"\n activate\n if (count of windows) = 0 then\n set t to (create window with default profile)\n else\n set t to current window\n end if\n tell t\n tell current session\n write text test_cmd\n end tell\n end tell\nend tell\n\n-- legacy iTerm2 code:\n-- set test_cmd to system attribute \"TEST_CMD\"\n \n-- tell application \"iTerm\"\n-- activate\n-- (* set t to (make new terminal) *)\n\n-- -- make a new terminal\n-- -- set myterm to (current terminal)\n-- set myterm to (make new terminal)\n \n-- -- talk to the new terminal\n-- tell myterm\n\n-- -- make a new session\n-- set mysession to launch session \"Default\"\n-- -- set mysession to (make new session at the end of sessions)\n-- -- select mysession\n\n-- -- talk to the session\n-- tell mysession\n\n-- -- execute a command\n-- -- exec command test_cmd\n-- write text test_cmd\n-- end tell -- we are done talking to the session\n-- end tell\n-- end tell","old_contents":"set test_cmd to system attribute \"TEST_CMD\"\n \ntell application \"iTerm\"\n activate\n (* set t to (make new terminal) *)\n\n -- make a new terminal\n -- set myterm to (current terminal)\n set myterm to (make new terminal)\n \n -- talk to the new terminal\n tell myterm\n\n -- make a new session\n set mysession to launch session \"Default\"\n -- set mysession to (make new session at the end of sessions)\n -- select mysession\n\n -- talk to the session\n tell mysession\n\n -- execute a command\n -- exec command test_cmd\n write text test_cmd\n end tell -- we are done talking to the session\n end tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5ad3cd1bf317122f06fc717f026af123e275cce6","subject":"Added ability to update updater script","message":"Added ability to update updater script\n\nMoving the main update checking code to a dedicated script allows us to update everything but the main script, and that is nothing but a stub that launches the updater script.","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e38e88fd40668f3e48b66284d2890c6e825849e6","subject":"Clean up daily sync script","message":"Clean up daily sync script\n","repos":"trevordmiller\/shell-scripts,trevordmiller\/settings,trevordmiller\/shell-scripts,trevordmiller\/settings","old_file":"mac\/script-daily-sync.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/script-daily-sync.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0014\u0000D\u0000a\u0000i\u0000l\u0000y\u0000 \u0000S\u0000y\u0000n\u0000c\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002i\u0000\u0000\u0000\u0007\u0000\n\u0000\\\u0000]\r\u0000\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000.\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000i\u0000j\r\u0000i\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000k\u0000l\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nwkdy\r\u0000l\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000m\r\u0000m\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005today\u0000\u0000\u0002\u0000h\u0000\u0002\u0000n\r\u0000n\u0000\u0004Z\u0000\u0000\u0000\n\u0000.\u0000o\u0000p\u0000q\u0000r\r\u0000o\u0000\u0003l\u0000\u0005\u0000\n\u0000\r\u0000s\r\u0000s\u0000\u0002=\u0000\u0000\u0000\n\u0000\r\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nsun \u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0014\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000q\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000{\r\u0000{\u0000\u0002=\u0000\u0000\u0000\u0017\u0000\u001a\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nsat \u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000~\r\u0000~\u0000\u0001L\u0000\u0000\u0000\u001d\u0000#\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000\"\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000 \u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\r\u0000r\u0000\u0001L\u0000\u0000\u0000&\u0000.\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000-\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004work\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001b\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001c\u0000$\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u001c\u0000\"\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000A\u0000n\u0000k\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000%\u0000+\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000%\u0000+\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000%\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000,\u0000F\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000,\u0000F\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000,\u0000B\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000 \u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000l\u0000u\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000S\u0000e\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000K\u0000a\u0000r\u0000a\u0000b\u0000i\u0000n\u0000e\u0000r\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0000X\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000X\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000G\u0000T\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000J\u0000M\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000~\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000Y\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000o\u0000y\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u0000o\u0000u\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000>\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000o\u0000s\u0000\/\u0000h\u0000e\u0000a\u0000l\u0000t\u0000h\u0002\u0001\u0000\u0000\u0002\u0001\u0003\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000m\u0000y\u0000f\u0000i\u0000t\u0000n\u0000e\u0000s\u0000s\u0000p\u0000a\u0000l\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\b}|\r\u0001\b\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000H\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000r\u0000e\u0000s\u0000c\u0000u\u0000e\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000<\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000a\u0000k\u0000a\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000m\u0000i\u0000n\u0000t\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u0015\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000,\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000e\u0000g\u0000g\u0000h\u0000e\u0000a\u0000d\u0000.\u0000i\u0000o\u0002\u0001\u0019\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000c\u0000o\u0000d\u0000e\u0000w\u0000a\u0000r\u0000s\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u001d\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000$\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000u\u0000f\u0000f\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002\u0001!\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0001m\u0000\u0000\u0000\u0000\u0001&\u000e\u0001&\u0000\u0001\u0001'\u0011\u0001'\u0000T\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000y\u0000o\u0000u\u0000t\u0000u\u0000b\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000f\u0000e\u0000e\u0000d\u0000\/\u0000s\u0000u\u0000b\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0001%\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000f\u0000a\u0000c\u0000e\u0000b\u0000o\u0000o\u0000k\u0000.\u0000c\u0000o\u0000m\u0002\u0001)\u0000\u0002\u0001,{\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001-\u000e\u0001-\u0000\u0001\u0001.\u0011\u0001.\u0000&\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000t\u0000w\u0000i\u0000t\u0000t\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002{\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\t0\u0000\u0005other\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011yx\r\u00011\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0001J\u0000\u0000\u0000\u0000\u00014\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000@\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u00016\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u00006\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u0001:\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001?\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0001>\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0001m\u0000\u0000\u0000\u0000\u0001C\u000e\u0001C\u0000\u0001\u0001D\u0011\u0001D\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000.\u0000e\u0000m\u0000p\u0000d\u0000e\u0000v\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000p\u0000u\u0000l\u0000l\u0000s\u0000?\u0000u\u0000t\u0000f\u00008\u0000=\u0000%\u0000E\u00002\u0000%\u00009\u0000C\u0000%\u00009\u00003\u0000&\u0000q\u0000=\u0000i\u0000s\u0000%\u00003\u0000A\u0000o\u0000p\u0000e\u0000n\u0000+\u0000i\u0000s\u0000%\u00003\u0000A\u0000p\u0000r\u0000+\u0000l\u0000a\u0000b\u0000e\u0000l\u0000%\u00003\u0000A\u0000%\u00002\u00002\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000%\u00002\u00002\u0002\u0001B\u0000\u0002\u0001Ew\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000.\u0000g\u0000e\u0000t\u0000s\u0000e\u0000n\u0000t\u0000r\u0000y\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000-\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000\/\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000w\u0000e\u0000b\u0002w\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004work\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u00010\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Jut\r\u0001J\u0000\u0002r\u0000\u0000\u0000\u0000\u0001K\u0001L\r\u0001K\u0000\u0001J\u0000\u0000\u0000\u0000s\u0002s\u0000\u0000\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0001I\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Oqp\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001Rn\u000bo\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0001R\u0000\u0002\u0001S\u0001T\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0001X\u0000\u0002\u0001Yj\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002j\u0000\u0000\u0002n\u0000\u0000\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001N\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0002\u0000\u0001\u0001\u0001\\gf\r\u0001\\\u0000\u0003X\u0000\u0000\u0000\u0001\u0001\u0001]e\u0001^\r\u0001]\u0000\u0003I\u0000\u0002\u0000\u0000d\u0001_c\nd\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001_\u0000\u0002b\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002c\u0000\u0000\u000be\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0001[\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001g\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001j\u0001k\u0001Z\u0000\u0000\f\u0001j\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Y\u0001o\u0001p\u0001Y\u0000\u0000\f\u0001o\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0001n\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000X\u0001t\u0001u\u0001X\u0000\u0000\f\u0001t\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\n\u0001{TS\r\u0001{\u0000\u0003I\u0000\u0000\u0001\u0002\u0001\nR\u0001|Q\u000bR\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001|\u0000\u0002\u0001}P\r\u0001}\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002P\u0000\u0000\u0002Q\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000L\u0001\u0001\u0001L\u0000\u0000\f\u0001\u0000\u0014\u0000\u000e Turn off WiFi\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001c\u0000 \u0000T\u0000u\u0000r\u0000n\u0000 \u0000o\u0000f\u0000f\u0000 \u0000W\u0000i\u0000F\u0000i\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0012\u0001KJ\r\u0001\u0000\u0003I\u0000\u0002\u0001\u000b\u0001\u0012I\u0001H\nI\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000n\u0000e\u0000t\u0000w\u0000o\u0000r\u0000k\u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000-\u0000s\u0000e\u0000t\u0000a\u0000i\u0000r\u0000p\u0000o\u0000r\u0000t\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000e\u0000n\u00000\u0000 \u0000o\u0000f\u0000f\u0002H\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0013\u0001\u0018\u0001CB\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0013\u0001\u0018A\u0001@\nA\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0014?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u0001\u0000\u0002\u0001>\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0019\u00015\u0001=<\r\u0001\u0000\u0002O\u0000\u0000\u0001\u0019\u00015\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u001f\u00014;\u0001\u0001\n;\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\":\u0003:\u0000\u0012\u0006\u0001\u0000\u00039\u00018\n9\u0000\u0004\nfaal\r\u0001\u0000\u0001J\u0000\u0000\u0001%\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001%\u0001(7\n7\u0000\b\u000beMdsKcmd\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+6\n6\u0000\b\u000beMdsKopt\u0002\u0001\u0000\u0002\u00015\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.4\n4\u0000\b\u000beMdsKctl\u00025\u0000\u0000\u00068\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002>\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00123\u00012\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000110\/.-,\u00013\u0000\u0000\u0010\u0001\u0000\u0010+*)('&%$#\"! \u001f\u001e\u001d\u001c\u000b+\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b*\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000b)\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b'\u0000\b0\u0000\u0004core\u0000\u0000\u000b&\u0000\t0\u0000\u0005other\u0000\u0000\u000b%\u0000\b0\u0000\u0004work\u0000\u0000\u000b$\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b#\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u000b\"\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u00032\u0000\n\u000e\u0001\u0000\u0007\u0010\u001b\u0000(\u001a\u0019\u0001\u0001\u0018\u000b\u001b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001a\u0000\u0002\u0004\u0017\u0001\u0003\u0017\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u0016\n\u0016\u0000\u0004\ndscr\u0002\u0019\u0000\u0000\u0010\u0001\u0000\u0001\u0015\n\u0015\u0000\u0004\ndscr\u0010\u0001\u0000\u0003\u0014\u0013\u0012\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0013\u0000\u0004\nppga\n\u0012\u0000\u0004\nppgc\u0011\u0018\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001\u0000\u0007\u0010\u0011\u0000]\u0010\u000f\u0001\u0001\u000e\u000b\u0011\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000e\u0010\u0000\u0002\u0004\r\u0001\u0003\r\u0000\u0004\u000e\u0001\u0000\u0004\u0000\f\u000b\n\t\u000b\f\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\n\u0000\b0\u0000\u0004work\u0000\u0000\u000b\t\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u000f\u0000\u0000\u0010\u0001\u0000\u0005\b\u0007\u0006\u0005\u0004\u000b\b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0007\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0006\u0000\b0\u0000\u0004work\u0000\u0000\u000b\u0005\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0004\u0000\t0\u0000\u0005today\u0000\u0000\u0010\u0001\u0000\u0004\u0003\u0002\u0001\u0000\n\u0003\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0002\u0000\u0004\nwkdy\n\u0001\u0000\u0004\nsun \n\u0000\u0000\u0004\nsat \u0011\u000e\u0000\/*j\f\u0000\u0000,EO\u0000\u001d\u0000\t%\u000fY\u0000\u0019\u0000\u001d\u0000\u000b%%\u000fY\u0000\n%%%\u000f\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u00015\u0001\u0002\u0001\u0000\u0002\u0000\u0016\u0001\u0002\u0001\u0000\u0002\u0000\u001d\u0001\u0002\u0001\u0000\u0002\u0000Q\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0006\u0001\u0002\u0001\u0000\u0002\u0001\/\u0001\u0002\u0001\u0000\u0002\u0001H\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001Z\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0010\u0001\u0000?\u0000\u001b\u0000V\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u0001b\u0001~\u0001\u0001\n\u0000\u0004\nppgd\n\u0000\u0004\nppgt\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003\u0000\u0004\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0003\u0000\u0006\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncapp\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003\u0000\t\u0003\u0000\u0005\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0003\u0000\u0012\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\b\u000beMdsKopt\n\u0000\b\u000beMdsKctl\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0011\u00016*,FOl*,FO*k+\u0000\u0004OvEOvEOjvE`\u0000\u0010Oa\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017vE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u0000\u001aO\u0017\u0000$_\u0000\u001a[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0000*a\u0000\u001e\/j\f\u0000\u001f[OYOa\u0000 a\u0000!lvEOa\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&a\u0000'a\u0000(a\u0000)a\u0000*a\u0000+vEOa\u0000,a\u0000-a\u0000.a\u0000\/a\u00000a\u00001vE`\u0000\u0010OjvE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u00002O\u0017\u0000#_\u00002[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0001a\u00003%j\f\u00004[OYO*a\u00005k+\u0000\u0004Oa\u00006j\f\u00004Okj\f\u00007Oa\u00008\u0012\u0000\u0017a\u00009a\u0000:a\u0000;a\u0000<a\u0000=mvl\f\u0000>U\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0001\u0001\u0001\u0004\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\t\u000e\u0001\u0000\t\u0000\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0005\u000e\u0001\u0000\u0005\u0000\u00017\u0001;\u0001?\u0001C\u0001F\u000e\u0001\u0000\u0002\u0004\u0003\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\n\u000e\u0001\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0001\u0001\u0001\u0004\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0014\u0000D\u0000a\u0000i\u0000l\u0000y\u0000 \u0000S\u0000y\u0000n\u0000c\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002i\u0000\u0000\u0000\u0007\u0000\n\u0000\\\u0000]\r\u0000\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000.\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000i\u0000j\r\u0000i\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000k\u0000l\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nwkdy\r\u0000l\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000m\r\u0000m\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005today\u0000\u0000\u0002\u0000h\u0000\u0002\u0000n\r\u0000n\u0000\u0004Z\u0000\u0000\u0000\n\u0000.\u0000o\u0000p\u0000q\u0000r\r\u0000o\u0000\u0003l\u0000\u0005\u0000\n\u0000\r\u0000s\r\u0000s\u0000\u0002=\u0000\u0000\u0000\n\u0000\r\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nsun \u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0014\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000q\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000{\r\u0000{\u0000\u0002=\u0000\u0000\u0000\u0017\u0000\u001a\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nsat \u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000~\r\u0000~\u0000\u0001L\u0000\u0000\u0000\u001d\u0000#\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000\"\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000 \u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\r\u0000r\u0000\u0001L\u0000\u0000\u0000&\u0000.\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000-\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004work\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001b\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001c\u0000$\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u001c\u0000\"\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000A\u0000n\u0000k\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000%\u0000+\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000%\u0000+\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000%\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000,\u0000F\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000,\u0000F\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000,\u0000B\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000 \u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000l\u0000u\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000S\u0000e\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000K\u0000a\u0000r\u0000a\u0000b\u0000i\u0000n\u0000e\u0000r\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0000X\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000X\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000G\u0000T\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000J\u0000M\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000~\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000Y\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000o\u0000y\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u0000o\u0000u\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000>\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000o\u0000s\u0000\/\u0000h\u0000e\u0000a\u0000l\u0000t\u0000h\u0002\u0001\u0000\u0000\u0002\u0001\u0003\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000m\u0000y\u0000f\u0000i\u0000t\u0000n\u0000e\u0000s\u0000s\u0000p\u0000a\u0000l\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\b}|\r\u0001\b\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000H\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000r\u0000e\u0000s\u0000c\u0000u\u0000e\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000<\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000a\u0000k\u0000a\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000m\u0000i\u0000n\u0000t\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u0015\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000,\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000e\u0000g\u0000g\u0000h\u0000e\u0000a\u0000d\u0000.\u0000i\u0000o\u0002\u0001\u0019\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000c\u0000o\u0000d\u0000e\u0000w\u0000a\u0000r\u0000s\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u001d\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000$\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000u\u0000f\u0000f\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002\u0001!\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0001m\u0000\u0000\u0000\u0000\u0001&\u000e\u0001&\u0000\u0001\u0001'\u0011\u0001'\u0000T\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000y\u0000o\u0000u\u0000t\u0000u\u0000b\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000f\u0000e\u0000e\u0000d\u0000\/\u0000s\u0000u\u0000b\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0001%\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000f\u0000a\u0000c\u0000e\u0000b\u0000o\u0000o\u0000k\u0000.\u0000c\u0000o\u0000m\u0002\u0001)\u0000\u0002\u0001,{\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001-\u000e\u0001-\u0000\u0001\u0001.\u0011\u0001.\u0000&\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000t\u0000w\u0000i\u0000t\u0000t\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002{\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\t0\u0000\u0005other\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011yx\r\u00011\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0001J\u0000\u0000\u0000\u0000\u00014\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000@\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u00016\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u00006\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u0001:\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001?\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0001>\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0001m\u0000\u0000\u0000\u0000\u0001C\u000e\u0001C\u0000\u0001\u0001D\u0011\u0001D\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000.\u0000e\u0000m\u0000p\u0000d\u0000e\u0000v\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000p\u0000u\u0000l\u0000l\u0000s\u0000?\u0000u\u0000t\u0000f\u00008\u0000=\u0000%\u0000E\u00002\u0000%\u00009\u0000C\u0000%\u00009\u00003\u0000&\u0000q\u0000=\u0000i\u0000s\u0000%\u00003\u0000A\u0000o\u0000p\u0000e\u0000n\u0000+\u0000i\u0000s\u0000%\u00003\u0000A\u0000p\u0000r\u0000+\u0000l\u0000a\u0000b\u0000e\u0000l\u0000%\u00003\u0000A\u0000%\u00002\u00002\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000%\u00002\u00002\u0002\u0001B\u0000\u0002\u0001Ew\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000.\u0000g\u0000e\u0000t\u0000s\u0000e\u0000n\u0000t\u0000r\u0000y\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000-\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000\/\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000w\u0000e\u0000b\u0002w\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004work\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u00010\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Jut\r\u0001J\u0000\u0002r\u0000\u0000\u0000\u0000\u0001K\u0001L\r\u0001K\u0000\u0001J\u0000\u0000\u0000\u0000s\u0002s\u0000\u0000\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0001I\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Oqp\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001Rn\u000bo\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0001R\u0000\u0002\u0001S\u0001T\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0001X\u0000\u0002\u0001Yj\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002j\u0000\u0000\u0002n\u0000\u0000\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001N\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0002\u0000\u0001\u0001\u0001\\gf\r\u0001\\\u0000\u0003X\u0000\u0000\u0000\u0001\u0001\u0001]e\u0001^\r\u0001]\u0000\u0003I\u0000\u0002\u0000\u0000d\u0001_c\nd\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001_\u0000\u0002b\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002c\u0000\u0000\u000be\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0001[\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001g\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001j\u0001k\u0001Z\u0000\u0000\f\u0001j\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Y\u0001o\u0001p\u0001Y\u0000\u0000\f\u0001o\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0001n\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000X\u0001t\u0001u\u0001X\u0000\u0000\f\u0001t\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\n\u0001{TS\r\u0001{\u0000\u0003I\u0000\u0000\u0001\u0002\u0001\nR\u0001|Q\u000bR\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001|\u0000\u0002\u0001}P\r\u0001}\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002P\u0000\u0000\u0002Q\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000L\u0001\u0001\u0001L\u0000\u0000\f\u0001\u0000\u0014\u0000\u000e Turn off WiFi\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001c\u0000 \u0000T\u0000u\u0000r\u0000n\u0000 \u0000o\u0000f\u0000f\u0000 \u0000W\u0000i\u0000F\u0000i\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0012\u0001KJ\r\u0001\u0000\u0003I\u0000\u0002\u0001\u000b\u0001\u0012I\u0001H\nI\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000n\u0000e\u0000t\u0000w\u0000o\u0000r\u0000k\u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000-\u0000s\u0000e\u0000t\u0000a\u0000i\u0000r\u0000p\u0000o\u0000r\u0000t\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000e\u0000n\u00000\u0000 \u0000o\u0000f\u0000f\u0002H\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0013\u0001\u0018\u0001CB\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0013\u0001\u0018A\u0001@\nA\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0014?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u0001\u0000\u0002\u0001>\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0019\u00015\u0001=<\r\u0001\u0000\u0002O\u0000\u0000\u0001\u0019\u00015\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u001f\u00014;\u0001\u0001\n;\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\":\u0003:\u0000\u0012\u0006\u0001\u0000\u00039\u00018\n9\u0000\u0004\nfaal\r\u0001\u0000\u0001J\u0000\u0000\u0001%\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001%\u0001(7\n7\u0000\b\u000beMdsKcmd\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+6\n6\u0000\b\u000beMdsKopt\u0002\u0001\u0000\u0002\u00015\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.4\n4\u0000\b\u000beMdsKctl\u00025\u0000\u0000\u00068\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002>\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00123\u00012\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000110\/.-,\u00013\u0000\u0000\u0010\u0001\u0000\u0010+*)('&%$#\"! \u001f\u001e\u001d\u001c\u000b+\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b*\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000b)\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b'\u0000\b0\u0000\u0004core\u0000\u0000\u000b&\u0000\t0\u0000\u0005other\u0000\u0000\u000b%\u0000\b0\u0000\u0004work\u0000\u0000\u000b$\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b#\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u000b\"\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u00032\u0000\u0006\u000e\u0001\u0000\u0007\u0010\u001b\u0000(\u001a\u0019\u0001\u0001\u0018\u000b\u001b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001a\u0000\u0002\u0004\u0017\u0001\u0003\u0017\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u0016\n\u0016\u0000\u0004\ndscr\u0002\u0019\u0000\u0000\u0010\u0001\u0000\u0001\u0015\n\u0015\u0000\u0004\ndscr\u0010\u0001\u0000\u0003\u0014\u0013\u0012\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0013\u0000\u0004\nppga\n\u0012\u0000\u0004\nppgc\u0011\u0018\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001\u0000\u0007\u0010\u0011\u0000]\u0010\u000f\u0001\u0001\u000e\u000b\u0011\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000e\u0010\u0000\u0002\u0004\r\u0001\u0003\r\u0000\u0004\u000e\u0001\u0000\u0004\u0000\f\u000b\n\t\u000b\f\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\n\u0000\b0\u0000\u0004work\u0000\u0000\u000b\t\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u000f\u0000\u0000\u0010\u0001\u0000\u0005\b\u0007\u0006\u0005\u0004\u000b\b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0007\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0006\u0000\b0\u0000\u0004work\u0000\u0000\u000b\u0005\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0004\u0000\t0\u0000\u0005today\u0000\u0000\u0010\u0001\u0000\u0004\u0003\u0002\u0001\u0000\n\u0003\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0002\u0000\u0004\nwkdy\n\u0001\u0000\u0004\nsun \n\u0000\u0000\u0004\nsat \u0011\u000e\u0000\/*j\f\u0000\u0000,EO\u0000\u001d\u0000\t%\u000fY\u0000\u0019\u0000\u001d\u0000\u000b%%\u000fY\u0000\n%%%\u000f\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u00015\u0001\u0002\u0001\u0000\u0002\u0000\u0016\u0001\u0002\u0001\u0000\u0002\u0000\u001d\u0001\u0002\u0001\u0000\u0002\u0000Q\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0006\u0001\u0002\u0001\u0000\u0002\u0001\/\u0001\u0002\u0001\u0000\u0002\u0001H\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001Z\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0010\u0001\u0000?\u0000\u001b\u0000V\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u0001b\u0001~\u0001\u0001\n\u0000\u0004\nppgd\n\u0000\u0004\nppgt\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003\u0000\u0004\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0003\u0000\u0006\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncapp\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003\u0000\t\u0003\u0000\u0005\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0003\u0000\u0012\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\b\u000beMdsKopt\n\u0000\b\u000beMdsKctl\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0011\u00016*,FOl*,FO*k+\u0000\u0004OvEOvEOjvE`\u0000\u0010Oa\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017vE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u0000\u001aO\u0017\u0000$_\u0000\u001a[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0000*a\u0000\u001e\/j\f\u0000\u001f[OYOa\u0000 a\u0000!lvEOa\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&a\u0000'a\u0000(a\u0000)a\u0000*a\u0000+vEOa\u0000,a\u0000-a\u0000.a\u0000\/a\u00000a\u00001vE`\u0000\u0010OjvE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u00002O\u0017\u0000#_\u00002[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0001a\u00003%j\f\u00004[OYO*a\u00005k+\u0000\u0004Oa\u00006j\f\u00004Okj\f\u00007Oa\u00008\u0012\u0000\u0017a\u00009a\u0000:a\u0000;a\u0000<a\u0000=mvl\f\u0000>U\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0001\u0001\u0001\u0004\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\t\u000e\u0001\u0000\t\u0000\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0005\u000e\u0001\u0000\u0005\u0000\u00017\u0001;\u0001?\u0001C\u0001F\u000e\u0001\u0000\u0002\u0004\u0003\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u000e\u000e\u0001\u0000\u000e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0010\u000e\u0001\u0000\u0010\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"30bb7115563016e288440465a44049b6309c0271","subject":"don't iterate over every doc in app documents","message":"don't iterate over every doc in app documents\n","repos":"jpsim\/DeckRocket,keyeMyria\/DeckRocket","old_file":"OSX\/DeckRocket\/deckrocket.scpt","new_file":"OSX\/DeckRocket\/deckrocket.scpt","new_contents":"#!\/usr\/bin\/osascript\n\non run argv\n\tset idx to item 1 of argv\n if application \"Deckset\" is running\n tell application \"Deckset\"\n tell first item of documents\n set slideIndex to idx\n end tell\n end tell\n end if\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n\non run argv\n\tset idx to item 1 of argv\n if application \"Deckset\" is running\n tell application \"Deckset\"\n repeat with doc in documents\n tell doc\n \tset slideIndex to idx\n end tell\n end repeat\n end tell\n end if\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a249e9637caa7a9c479d05a64ab05f84aa0ab38b","subject":"Remove obsolete fileWrite() handler","message":"Remove obsolete fileWrite() handler\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7778e4ddc79aef8ebc19e89fc4030999e32d08a9","subject":"fixed process_fullAccessToggle bug","message":"fixed process_fullAccessToggle bug\n","repos":"NYHTC\/HTC_sous-dev","old_file":"src\/Scripts\/main.applescript","new_file":"src\/Scripts\/main.applescript","new_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse privSetLib : script \"privSet\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t-- launch htcLib\n\t\tlaunchHtcLib({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell it to activate\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\thtcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"New table\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"New table\" then\n\t\t\tdisplay dialog \"This process is not yet finished\" with title AppletName buttons \"OK\" default button \"OK\"\n\t\t\treturn true\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tfullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open({})\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tfullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tprivSetLib's copyPrivSetToOthers({})\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck({forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit","old_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse privSetLib : script \"privSet\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t-- launch htcLib\n\t\tlaunchHtcLib({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell it to activate\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\thtcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"New table\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"New table\" then\n\t\t\tdisplay dialog \"This process is not yet finished\" with title AppletName buttons \"OK\" default button \"OK\"\n\t\t\treturn true\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then fullAccessToggle({})\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tfullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open({})\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tfullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to fullAccessToggle({ensureMode:\"full\"})\n\t\tprivSetLib's copyPrivSetToOthers({})\n\t\tif modeSwitch of fullAccessToggle then fullAccessToggle({})\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck({forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d9d31c8b122e36157f4db81998dc845a3b91bcaa","subject":"Added Applescript to get current track from iTunes","message":"Added Applescript to get current track from iTunes\n","repos":"jheijmans\/ledtunes","old_file":"CurrentTrack.scpt","new_file":"CurrentTrack.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u001a\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001a\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0019\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npnam\r\u0000\r\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npTrk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\u0002\u0000\t\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0013\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002n\u0000\u0000\u0000\f\u0000\u0011\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\npArt\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\npTrk\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0002\u0000\u000f\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0006\u0000 \u0000-\u0000 \r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000f\u0000\u001b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001N\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000+\/H+\u0000\u0000\u0007Q\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006Q'\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000+\u001f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000br\u0000\u0000\u0000\u0001\u0000\u0004\u0007Q\u0000\u0002\u0000%Macintosh HD:Applications:\u0000iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u001c\u0000\u001d\u0000\u001e\u0000\u001f\u0001\u0000\u0000\u0010\u0000\u001c\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0001\u0000\u0000\u000e\u0000\u001d\u0000\u0007\u0010\u0000 \u0000!\u0000\"\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000 \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0000#\u0002\u0000#\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000!\u0000\u0000\u0010\u0000\"\u0000\u0007\u0000\u001b\u0000\u0019\n\u0000\u0004\npTrk\n\u0000\u0004\npnam\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\n\u0000\u0004\npArt\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0011\u0000\u001b\u0012\u0000\u0017*,,EO*,,EO%%U\u000f\u000e\u0000\u001e\u0000\u0001\u0000$\u0011\u0000$\u0000\u001e\u0000M\u0000a\u0000y\u0000b\u0000e\u0000 \u0000O\u0000n\u0000 \u0000M\u0000o\u0000n\u0000d\u0000a\u0000y\u000e\u0000\u001f\u0000\u0001\u0000%\u0011\u0000%\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000x\u0000i\u0000c\u0000o\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u001a\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001a\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0019\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npnam\r\u0000\r\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npTrk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\u0002\u0000\t\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0013\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002n\u0000\u0000\u0000\f\u0000\u0011\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\npArt\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\npTrk\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0002\u0000\u000f\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0006\u0000 \u0000-\u0000 \r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000f\u0000\u001b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001N\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000+\/H+\u0000\u0000\u0007Q\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006Q'\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000+\u001f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000br\u0000\u0000\u0000\u0001\u0000\u0004\u0007Q\u0000\u0002\u0000%Macintosh HD:Applications:\u0000iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u001c\u0000\u001d\u0000\u001e\u0000\u001f\u0001\u0000\u0000\u0010\u0000\u001c\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0001\u0000\u0000\u000e\u0000\u001d\u0000\u0007\u0010\u0000 \u0000!\u0000\"\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000 \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0000#\u0002\u0000#\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000!\u0000\u0000\u0010\u0000\"\u0000\u0007\u0000\u001b\u0000\u0019\n\u0000\u0004\npTrk\n\u0000\u0004\npnam\u000b\u0000\u00160\u0000\ttrackname\u0000\ttrackName\n\u0000\u0004\npArt\u000b\u0000\u001a0\u0000\u000btrackartist\u0000\u000btrackArtist\u0011\u0000\u001b\u0012\u0000\u0017*,,EO*,,EO%%U\u000f\u000e\u0000\u001e\u0000\u0001\u0000$\u0011\u0000$\u0000\u0016\u0000S\u0000e\u0000v\u0000e\u0000n\u0000 \u0000S\u0000t\u0000a\u0000r\u0000s\u000e\u0000\u001f\u0000\u0001\u0000%\u0011\u0000%\u0000\u0006\u0000A\u0000i\u0000r\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d6f6b9a880b8e49a64031e74998ab4b1b7f5817e","subject":"Newline at end of file.","message":"Newline at end of file.\n","repos":"incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"77adc261b070ce81c99ade972413bdcc94a7eced","subject":"Use Alfred 3 cache folder","message":"Use Alfred 3 cache folder\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\ttry\n\n\t\tset fileRef to open for access theFile with write permission\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\n\ton error\n\n\t\tclose access fileRef\n\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-2:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\ttry\n\n\t\tset fileRef to open for access theFile with write permission\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\n\ton error\n\n\t\tclose access fileRef\n\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1ea0ec81dc1f4ebcd8c9ddac8950336bff8bf1a3","subject":"Fix bug where search would yield duplicate results","message":"Fix bug where search would yield duplicate results\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset searchSongs to {}\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\t\trepeat with searchSong in searchSongs\n\n\t\t\t\t\t\tset duplicateSong to false\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif theSong is searchSong then\n\n\t\t\t\t\t\t\t\tset duplicateSong to true\n\t\t\t\t\t\t\t\texit repeat\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\t\tif duplicateSong is false then\n\n\t\t\t\t\t\t\tcopy searchSong to end of theSongs\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b934284a0632683d63008c2544351e64eb1563ad","subject":"add a dialog on normal run to osx handler","message":"add a dialog on normal run to osx handler\n","repos":"nuclearcoconut42\/niji","old_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.sysodisAaleR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000e\u0000\t\u0000\u0001\u0000\n\u0011\u0000\n\u0000Z\u0000T\u0000h\u0000i\u0000s\u0000 \u0000a\u0000p\u0000p\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\r\u0000\r\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0010\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u0002=\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0014\u0000\u0015\u0001\u0000\u0000\f\u0000\u0014\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0000\u001c\u0002\u0000\u001c\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\f\u0000!\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000!\u0000\u0003\u0000\"\u0000#\n\u0000\u0004\npsof\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0000\u0002\u0000?\u0006\u0000#\u0000\u0003\u0000&\n\u0000\u0004\npsin\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000\u000f\u0000(\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u000f\u0000&\u0000+\u0000,\r\u0000+\u0000\u00037\u0000\u0000\u0000\u0010\u0000&\u0000-\u0000.\n\u0000\u0004\nctxt\r\u0000-\u0000\u0003l\u0000\u0005\u0000\u0014\u0000 \u0000\/\r\u0000\/\u0000\u0002[\u0000\u0000\u0000\u0014\u0000 \u00000\u00001\r\u00000\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\u001e\u00002\r\u00002\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001e\u00003\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u00003\u0000\u0003\u00004\u00005\n\u0000\u0004\npsof\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\npsin\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0003l\u0000\u0005\u0000!\u0000%\u00009\r\u00009\u0000\u0002\\\u0000\u0000\u0000!\u0000%\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000;\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000(\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u0000)\u00008\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u0000)\u00006\u0000@\u0000A\r\u0000@\u0000\u00037\u0000\u0000\u0000*\u00006\u0000B\u0000C\n\u0000\u0004\nctxt\r\u0000B\u0000\u0003l\u0000\u0005\u0000.\u00002\u0000D\r\u0000D\u0000\u0002[\u0000\u0000\u0000.\u00002\u0000E\u0000F\r\u0000E\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000F\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000C\u0000\u0001m\u0000\u0000\u00003\u00005\u0003\r\u0000A\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000=\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u00009\u0000>\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000K\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000\u0002\u0000&\r\u0000J\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ntxdl\r\u0000N\u0000\u00011\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nascr\u0002\u0000H\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0002r\u0000\u0000\u0000?\u0000D\u0000Q\u0000R\r\u0000Q\u0000\u0002n\u0000\u0000\u0000?\u0000B\u0000S\u0000T\r\u0000S\u0000\u00012\u0000\u0000\u0000@\u0000B\n\u0000\u0004\ncitm\r\u0000T\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000P\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0002r\u0000\u0000\u0000E\u0000J\u0000W\u0000X\r\u0000W\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000Y\u000e\u0000Y\u0000\u0001\u0000Z\u0011\u0000Z\u0000\u0000\r\u0000X\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000G\u0000I\n\u0000\u0004\ntxdl\r\u0000\\\u0000\u00011\u0000\u0000\u0000F\u0000G\n\u0000\u0004\nascr\u0002\u0000V\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000K\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0002r\u0000\u0000\u0000K\u0000O\u0000a\u0000b\r\u0000a\u0000\u0001J\u0000\u0000\u0000K\u0000M\u0002\u0000\u0000\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000`\u0000\u0002\u0000c\r\u0000c\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000d\u0000e\u0000f\r\u0000d\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000g\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000^\u0000d\u0000j\u0000k\r\u0000j\u0000\u0002n\u0000\u0000\u0000^\u0000b\u0000l\u0000m\r\u0000l\u0000\u00024\u0000\u0000\u0000_\u0000b\u0000n\n\u0000\u0004\ncobj\r\u0000n\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000e\u0000j\u0000q\u0000r\r\u0000q\u0000\u0001m\u0000\u0000\u0000e\u0000f\u0000s\u000e\u0000s\u0000\u0001\u0000t\u0011\u0000t\u0000\u0002\u0000=\r\u0000r\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000u\u0000v\r\u0000u\u0000\u00011\u0000\u0000\u0000g\u0000i\n\u0000\u0004\ntxdl\r\u0000v\u0000\u00011\u0000\u0000\u0000f\u0000g\n\u0000\u0004\nascr\u0002\u0000p\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0002s\u0000\u0000\u0000k\u0000\u0000y\u0000z\r\u0000y\u0000\u0002n\u0000\u0000\u0000k\u0000n\u0000{\u0000|\r\u0000{\u0000\u00012\u0000\u0000\u0000l\u0000n\n\u0000\u0004\ncitm\r\u0000|\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000z\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000}\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000e\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000f\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0002=\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0002\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0001\u0003\u0001\u0005\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0006\u0001\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0006\u0001\u0006\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u0006\u0001L\u0000\u0000\u0001\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\t\u00014\u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002r\u0000\u0000\u0001\t\u0001\u001c\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0002b\u0000\u0000\u0001\t\u0001\u001a\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0005\u0001\t\u0001\u0016\u0001\b~\r\u0001\b\u0000\u0003I\u0000\u0002\u0001\t\u0001\u0016}\u0001\t\u0001\n\n}\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001\t\u0000\u0001m\u0000\u0000\u0001\t\u0001\f|\n|\u0000\b\u000bafdrtemp\u0006\u0001\n\u0000\u0003{\u0001\u000bz\n{\u0000\u0004\nrtyp\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012y\ny\u0000\u0004\nTEXT\u0006z\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\r\u0001\u0007\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0019\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u000ew\r\u0001\u000e\u0000\u0003I\u0000\u0002\u0001\u001d\u00014v\u0001\u000fu\nv\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u000f\u0000\u0002b\u0000\u0000\u0001\u001d\u00010\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002b\u0000\u0000\u0001\u001d\u0001*\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002b\u0000\u0000\u0001\u001d\u0001&\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0015\u0000\u0003l\u0000\u0005\u0001 \u0001%\u0001\u0018ts\r\u0001\u0018\u0000\u0002n\u0000\u0000\u0001 \u0001%\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u00011\u0000\u0000\u0001!\u0001%r\nr\u0000\u0004\nstrq\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0001 \u0001!q\u000bq\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0001&\u0001)\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0011\u0000\u0002n\u0000\u0000\u0001*\u0001\/\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u00011\u0000\u0000\u0001+\u0001\/p\np\u0000\u0004\npsxp\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0001*\u0001+o\u000bo\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000n\u0001\u001fm\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002m\u0000\u0000\r\u0001\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001 \u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003I\u0000\u0002\u0001<\u0001Ik\u0001#j\nk\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001#\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001&\u0001'\r\u0001&\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001'\u0000\u0001o\u0000\u0000\u0001?\u0001@i\u000bi\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001%\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000)\u0002j\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,h\r\u0001,\u0000\u0001L\u0000\u0000\u0001J\u0001Lg\u0001g\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0002\u0001M\u0001Mfed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0001\u0001M\u0001Mc\u00011\u00012\u0001c\u0000\u0000\f\u00011\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u00010\u0000\u0002\u00014b\r\u00014\u0000\u0003Q\u0000\u0000\u0001M\u0001\u00015\u00016\u00017\r\u00015\u0000\u0001k\u0000\u0000\u0001P\u0001u\u00018\u0002\u00018\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0003I\u0000\u0002\u0001P\u0001ga\u0001;`\na\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001;\u0000\u0002b\u0000\u0000\u0001P\u0001c\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0001P\u0001_\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0001P\u0001Y\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0001P\u0001U\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0001P\u0001S\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001C\u0000\u0001o\u0000\u0000\u0001S\u0001T_\u000b_\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001A\u0000\u0001m\u0000\u0000\u0001U\u0001X\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0002\u0000 \r\u0001?\u0000\u0002n\u0000\u0000\u0001Y\u0001^\u0001H\u0001I\r\u0001H\u0000\u00011\u0000\u0000\u0001Z\u0001^^\n^\u0000\u0004\npsxp\r\u0001I\u0000\u0001o\u0000\u0000\u0001Y\u0001Z]\u000b]\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001=\u0000\u0001m\u0000\u0000\u0001_\u0001b\u0001J\u000e\u0001J\u0000\u0001\u0001K\u0011\u0001K\u0000\u0002\u0000\"\u0002`\u0000\u0000\u0002\u0001:\u0000\u0002\u0001L\\\r\u0001L\u0000\u0003I\u0000\u0002\u0001h\u0001u[\u0001MZ\n[\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001M\u0000\u0002b\u0000\u0000\u0001h\u0001q\u0001N\u0001O\r\u0001N\u0000\u0002b\u0000\u0000\u0001h\u0001m\u0001P\u0001Q\r\u0001P\u0000\u0001m\u0000\u0000\u0001h\u0001k\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001Q\u0000\u0001o\u0000\u0000\u0001k\u0001lY\u000bY\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001O\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000\u0004\u0000\"\u0000.\u0002Z\u0000\u0000\u0002\\\u0000\u0000\r\u00016\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000X\u0001VW\nX\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002W\u0000\u0000\r\u00017\u0000\u0001k\u0000\u0000\u0001}\u0001\u0001W\u0002\u0001W\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003I\u0000\u0002\u0001}\u0001U\u0001ZT\nU\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001Z\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001[\u0001\\\r\u0001[\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001]\u0001^\r\u0001]\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001_\u0001`\r\u0001_\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001a\u0001b\r\u0001a\u0000\u0001m\u0000\u0000\u0001}\u0001\u0001c\u000e\u0001c\u0000\u0001\u0001d\u0011\u0001d\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001b\u0000\u0001o\u0000\u0000\u0001\u0001S\u000bS\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0001\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001^\u0000\u0001o\u0000\u0000\u0001\u0001R\u000bR\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\\\u0000\u0001m\u0000\u0000\u0001\u0001\u0001g\u000e\u0001g\u0000\u0001\u0001h\u0011\u0001h\u0000\u0002\u0000)\u0002T\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001iQ\r\u0001i\u0000\u0001L\u0000\u0000\u0001\u0001P\u0001P\u0000\u0000\u0002Q\u0000\u0000\u0002b\u0000\u0000\u0002\u0000\u0000\u0002\u0001j\u0001k\r\u0001j\u0000\u0002=\u0000\u0003\u0001\u0001\u0001l\u0001m\r\u0001l\u0000\u0001o\u0000\u0000\u0001\u0001O\u000bO\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001n\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001k\u0000\u0002\u0001pN\r\u0001p\u0000\u0001k\u0000\u0000\u0001\u0002-\u0001q\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0001\u0001M\u0001t\u0001u\u0001M\u0000\u0000\f\u0001t\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001y\u0001z\u0001{\r\u0001y\u0000\u0001k\u0000\u0000\u0001\u0001\u0001|\u0002\u0001|\u0000\u0002\u0001}\u0001~\r\u0001}\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001K\u000bK\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001~\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001H\u000bH\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001F\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001E\u000bE\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001D\u000bD\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002F\u0000\u0000\r\u0001z\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000B\u0001A\nB\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002A\u0000\u0000\r\u0001{\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0001?\u0001>\n?\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001=\u000b=\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002>\u0000\u0000\u0002\u0001\u0000\u0002\u0001<\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0001;\u0001;\u0000\u0000\u0002<\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00014\u0001\u0001\u00014\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00013\u000b3\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u00010\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002-\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\r\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0001\/\u0001.\n\/\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u0001-,\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0001\u0001+\n+\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001*\u000b*\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001)\u000b)\u0000\b0\u0000\u0004dest\u0000\u0000\u0002.\u0000\u0000\u0002\u0001\u0000\u0002\u0001(\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0002\r'\u0001&\n'\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0002\t\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0004%\u000b%\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0005\u0002\b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002&\u0000\u0000\u0002(\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000$\u0001#\n$\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002#\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u0015\u0002-\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u0015\u0002*!\u0001 \n!\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002&\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002\"\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002 \u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002\u001c\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0015\u0002\u0018\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0018\u0002\u001b\u001f\u000b\u001f\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002!\u001e\u000b\u001e\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\"\u0002%\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002 \u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001d\r\u0001\u0000\u0001L\u0000\u0000\u0002+\u0002-\u001c\u0001\u001c\u0000\u0000\u0002\u001d\u0000\u0000\u00020\u0000\u0000\u0002N\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00020\u0002=\u001b\u0001\u001a\n\u001b\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00020\u00029\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00020\u00025\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00020\u00023\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u00023\u00024\u0019\u000b\u0019\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u001a\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0018\u0001\u0001\u0001\u0001\u0018\u0000\u0000\u0010\u0001\u0000\u0002\u0017\u0016\n\u0017\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0016\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0015\u0000\u000f\u0014\u0013\u0001\u0001\u0012\n\u0015\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0014\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0013\u0000\u0000\u0010\u0001\u0000\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0011\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0010\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u000f\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u000e\u0000\n0\u0000\u0006params\u0000\u0000\u000b\r\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\f\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\n\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\t\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0007\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0006\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0005\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0004\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0003\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0002\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0001\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0001\u0000D\u0000$\u00006\u0000K\u0000Y\u0000s\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\f\u0001\u0016\u0001\u001b\u0001(\u0001*\u0001D\u0001F\u0001J\u0001R\u0001T\u0001c\u0001e\u0001g\u0001n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\nctxt\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0012\u0002>\u0014\u0000*\f\u0000\u0004EO[\\[Z*\f\u0000\u0004m\u001e\\Zk\u001f2EO[\\[Zk\u001e\\Zi2EO,FO-EO,FOjvEO\u0017\u0000akj\f\u0000\fkh\u001c\u0000\u0006\/EO,FO-E[k\/EQZ[l\/EQZO%a\u0000\u0010%j\f\u0000\u0011EOa\u0000\u0012%a\u0000\u0013%%a\u0000\u0014%j\f\u0000\u0015%EOa\u0000\u0016,F[OYW\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000\u0019%a\u0000\u001a%j\f\u0000\u001bOh\u000fOa\u0000\u001c\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001d,EOa\u0000\u001e,EOa\u0000\u001f,EW\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000 %a\u0000!%j\f\u0000\u001bOh\u000fO\u0014\u00000a\u0000\"a\u0000#a\u0000$l\f\u0000%a\u0000&%EOa\u0000'a\u0000(,%a\u0000)%a\u0000*,%j\f\u0000\u0011W\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000+%a\u0000,%j\f\u0000\u001bOh\u000fO\u0014\u0000*a\u0000-%a\u0000.%a\u0000*,%a\u0000\/%j\f\u0000\u0011Oa\u00000%a\u00001%j\f\u0000\u001bW\u0000\u001dX\u0000\u0017\u0000\u0018a\u00002%a\u00003%%a\u00004%j\f\u0000\u001bOh\u000fY\u0000a\u00005\u0000\u001d\u0000\u0014\u0000\u001ea\u00006,E^\u0000\u0010Oa\u0000\u001e,EOa\u0000\u001f,EW\u0000\u0017X\u0000\u0017\u0000\u0018a\u00007%a\u00008%j\f\u0000\u001bOh\u000fO]\u0000\u0010a\u00009%%a\u0000:%E^\u0000\u0011O\u0014\u0000*a\u0000;a\u0000(,%a\u0000<%]\u0000\u0011%j\f\u0000\u0011Oa\u0000=]\u0000\u0011%a\u0000>%j\f\u0000\u001bW\u0000\u001fX\u0000\u0017\u0000\u0018a\u0000?]\u0000\u0011%a\u0000@%%a\u0000A%j\f\u0000\u001bOh\u000fY\u0000\u000fa\u0000B%a\u0000C%j\f\u0000\u001b\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0001\u0002\u0001\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000\u0002\u0000\t\n\u0000\u0018.sysodisAaleR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0006j\f\u0000\u0001\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001k\u0000\u0000\u0000\u0000\u0002=\u0000\b\u0002\u0000\b\u0000\u0002\u0000\t\u0000\n\r\u0000\t\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f\u0001\u0000\u0000\f\u0000\u000b\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000\f\u0000\u0001\u0000\r\u0011\u0000\r\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000\n\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000\u0011\u0000\u0012\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0000\u0013\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\f\u0000\u0018\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0018\u0000\u0003\u0000\u0019\u0000\u001a\n\u0000\u0004\npsof\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0002\u0000?\u0006\u0000\u001a\u0000\u0003\u0000\u001d\n\u0000\u0004\npsin\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u000f\u0000(\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u000f\u0000&\u0000\"\u0000#\r\u0000\"\u0000\u00037\u0000\u0000\u0000\u0010\u0000&\u0000$\u0000%\n\u0000\u0004\nctxt\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u0014\u0000 \u0000&\r\u0000&\u0000\u0002[\u0000\u0000\u0000\u0014\u0000 \u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\u001e\u0000)\r\u0000)\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001e\u0000*\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000*\u0000\u0003\u0000+\u0000,\n\u0000\u0004\npsof\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000-\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000,\u0000\u0003\u0000\/\n\u0000\u0004\npsin\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0003l\u0000\u0005\u0000!\u0000%\u00000\r\u00000\u0000\u0002\\\u0000\u0000\u0000!\u0000%\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000)\u00008\u00005\u00006\r\u00005\u0000\u0002n\u0000\u0000\u0000)\u00006\u00007\u00008\r\u00007\u0000\u00037\u0000\u0000\u0000*\u00006\u00009\u0000:\n\u0000\u0004\nctxt\r\u00009\u0000\u0003l\u0000\u0005\u0000.\u00002\u0000;\r\u0000;\u0000\u0002[\u0000\u0000\u0000.\u00002\u0000<\u0000=\r\u0000<\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000=\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u00003\u00005\u0003\r\u00008\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u00004\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u00009\u0000>\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0002\u0000&\r\u0000A\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000D\u0000E\r\u0000D\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ntxdl\r\u0000E\u0000\u00011\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nascr\u0002\u0000?\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0002r\u0000\u0000\u0000?\u0000D\u0000H\u0000I\r\u0000H\u0000\u0002n\u0000\u0000\u0000?\u0000B\u0000J\u0000K\r\u0000J\u0000\u00012\u0000\u0000\u0000@\u0000B\n\u0000\u0004\ncitm\r\u0000K\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000G\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002r\u0000\u0000\u0000E\u0000J\u0000N\u0000O\r\u0000N\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0000\r\u0000O\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000R\u0000S\r\u0000R\u0000\u00011\u0000\u0000\u0000G\u0000I\n\u0000\u0004\ntxdl\r\u0000S\u0000\u00011\u0000\u0000\u0000F\u0000G\n\u0000\u0004\nascr\u0002\u0000M\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000K\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0002r\u0000\u0000\u0000K\u0000O\u0000X\u0000Y\r\u0000X\u0000\u0001J\u0000\u0000\u0000K\u0000M\u0002\u0000\u0000\r\u0000Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Z\r\u0000Z\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000[\u0000\\\u0000]\r\u0000[\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000^\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0002r\u0000\u0000\u0000^\u0000d\u0000a\u0000b\r\u0000a\u0000\u0002n\u0000\u0000\u0000^\u0000b\u0000c\u0000d\r\u0000c\u0000\u00024\u0000\u0000\u0000_\u0000b\u0000e\n\u0000\u0004\ncobj\r\u0000e\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000d\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000`\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002r\u0000\u0000\u0000e\u0000j\u0000h\u0000i\r\u0000h\u0000\u0001m\u0000\u0000\u0000e\u0000f\u0000j\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0000\u0002\u0000=\r\u0000i\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000l\u0000m\r\u0000l\u0000\u00011\u0000\u0000\u0000g\u0000i\n\u0000\u0004\ntxdl\r\u0000m\u0000\u00011\u0000\u0000\u0000f\u0000g\n\u0000\u0004\nascr\u0002\u0000g\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002s\u0000\u0000\u0000k\u0000\u0000p\u0000q\r\u0000p\u0000\u0002n\u0000\u0000\u0000k\u0000n\u0000r\u0000s\r\u0000r\u0000\u00012\u0000\u0000\u0000l\u0000n\n\u0000\u0004\ncitm\r\u0000s\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000q\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000t\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000o\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0000\u0000}\u0000~\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000y\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000]\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r\u0000\u0012\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0002=\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0002\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0001\u0003\u0001\u0005\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0006\u0001\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0006\u0001\u0006\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u0006\u0001L\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\t\u00014\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\t\u0001\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001\t\u0001\u001a\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0001\t\u0001\u0016\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\t\u0001\u0016\u0001\u0000\u0001\u0001\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0001\t\u0001\f\n\u0000\b\u000bafdrtemp\u0006\u0001\u0001\u0000\u0003\u0001\u0002\n\u0000\u0004\nrtyp\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\n\u0000\u0004\nTEXT\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0019\u0001\u0003\u000e\u0001\u0003\u0000\u0001\u0001\u0004\u0011\u0001\u0004\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005}\r\u0001\u0005\u0000\u0003I\u0000\u0002\u0001\u001d\u00014|\u0001\u0006{\n|\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0006\u0000\u0002b\u0000\u0000\u0001\u001d\u00010\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002b\u0000\u0000\u0001\u001d\u0001*\u0001\t\u0001\n\r\u0001\t\u0000\u0002b\u0000\u0000\u0001\u001d\u0001&\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\f\u0000\u0003l\u0000\u0005\u0001 \u0001%\u0001\u000fzy\r\u0001\u000f\u0000\u0002n\u0000\u0000\u0001 \u0001%\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u00011\u0000\u0000\u0001!\u0001%x\nx\u0000\u0004\nstrq\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001 \u0001!w\u000bw\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u0001\n\u0000\u0001m\u0000\u0000\u0001&\u0001)\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\b\u0000\u0002n\u0000\u0000\u0001*\u0001\/\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u00011\u0000\u0000\u0001+\u0001\/v\nv\u0000\u0004\npsxp\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001*\u0001+u\u000bu\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002{\u0000\u0000\u0002}\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000t\u0001\u0016s\nt\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002s\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0001<\u0001Iq\u0001\u001ap\nq\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u001f\u000e\u0001\u001f\u0000\u0001\u0001 \u0011\u0001 \u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0001?\u0001@o\u000bo\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001!\u000e\u0001!\u0000\u0001\u0001\"\u0011\u0001\"\u0000\u0002\u0000)\u0002p\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001#n\r\u0001#\u0000\u0001L\u0000\u0000\u0001J\u0001Lm\u0001m\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0001M\u0001Mlkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002\u0001%\u0000\u0002\u0001&\u0001'\r\u0001&\u0000\u0003l\u0000\u0001\u0001M\u0001Mi\u0001(\u0001)\u0001i\u0000\u0000\f\u0001(\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001'\u0000\u0002\u0001+h\r\u0001+\u0000\u0003Q\u0000\u0000\u0001M\u0001\u0001,\u0001-\u0001.\r\u0001,\u0000\u0001k\u0000\u0000\u0001P\u0001u\u0001\/\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0003I\u0000\u0002\u0001P\u0001gg\u00012f\ng\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u00012\u0000\u0002b\u0000\u0000\u0001P\u0001c\u00013\u00014\r\u00013\u0000\u0002b\u0000\u0000\u0001P\u0001_\u00015\u00016\r\u00015\u0000\u0002b\u0000\u0000\u0001P\u0001Y\u00017\u00018\r\u00017\u0000\u0002b\u0000\u0000\u0001P\u0001U\u00019\u0001:\r\u00019\u0000\u0001m\u0000\u0000\u0001P\u0001S\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001:\u0000\u0001o\u0000\u0000\u0001S\u0001Te\u000be\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u00018\u0000\u0001m\u0000\u0000\u0001U\u0001X\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\u0002\u0000 \r\u00016\u0000\u0002n\u0000\u0000\u0001Y\u0001^\u0001?\u0001@\r\u0001?\u0000\u00011\u0000\u0000\u0001Z\u0001^d\nd\u0000\u0004\npsxp\r\u0001@\u0000\u0001o\u0000\u0000\u0001Y\u0001Zc\u000bc\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u00014\u0000\u0001m\u0000\u0000\u0001_\u0001b\u0001A\u000e\u0001A\u0000\u0001\u0001B\u0011\u0001B\u0000\u0002\u0000\"\u0002f\u0000\u0000\u0002\u00011\u0000\u0002\u0001Cb\r\u0001C\u0000\u0003I\u0000\u0002\u0001h\u0001ua\u0001D`\na\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001D\u0000\u0002b\u0000\u0000\u0001h\u0001q\u0001E\u0001F\r\u0001E\u0000\u0002b\u0000\u0000\u0001h\u0001m\u0001G\u0001H\r\u0001G\u0000\u0001m\u0000\u0000\u0001h\u0001k\u0001I\u000e\u0001I\u0000\u0001\u0001J\u0011\u0001J\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001H\u0000\u0001o\u0000\u0000\u0001k\u0001l_\u000b_\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001F\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0001K\u000e\u0001K\u0000\u0001\u0001L\u0011\u0001L\u0000\u0004\u0000\"\u0000.\u0002`\u0000\u0000\u0002b\u0000\u0000\r\u0001-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000^\u0001M]\n^\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002]\u0000\u0000\r\u0001.\u0000\u0001k\u0000\u0000\u0001}\u0001\u0001N\u0002\u0001N\u0000\u0002\u0001O\u0001P\r\u0001O\u0000\u0003I\u0000\u0002\u0001}\u0001[\u0001QZ\n[\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001Q\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001R\u0001S\r\u0001R\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001T\u0001U\r\u0001T\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001V\u0001W\r\u0001V\u0000\u0002b\u0000\u0000\u0001}\u0001\u0001X\u0001Y\r\u0001X\u0000\u0001m\u0000\u0000\u0001}\u0001\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001Y\u0000\u0001o\u0000\u0000\u0001\u0001Y\u000bY\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001W\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\\\u000e\u0001\\\u0000\u0001\u0001]\u0011\u0001]\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001U\u0000\u0001o\u0000\u0000\u0001\u0001X\u000bX\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001S\u0000\u0001m\u0000\u0000\u0001\u0001\u0001^\u000e\u0001^\u0000\u0001\u0001_\u0011\u0001_\u0000\u0002\u0000)\u0002Z\u0000\u0000\u0002\u0001P\u0000\u0002\u0001`W\r\u0001`\u0000\u0001L\u0000\u0000\u0001\u0001V\u0001V\u0000\u0000\u0002W\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002=\u0000\u0003\u0001\u0001\u0001c\u0001d\r\u0001c\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001d\u0000\u0001m\u0000\u0000\u0001\u0001\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001b\u0000\u0002\u0001gT\r\u0001g\u0000\u0001k\u0000\u0000\u0001\u0002-\u0001h\u0002\u0001h\u0000\u0002\u0001i\u0001j\r\u0001i\u0000\u0003l\u0000\u0001\u0001\u0001S\u0001k\u0001l\u0001S\u0000\u0000\f\u0001k\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001l\u0000\u0001\u0001m\u0011\u0001m\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001j\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001p\u0001q\u0001r\r\u0001p\u0000\u0001k\u0000\u0000\u0001\u0001\u0001s\u0002\u0001s\u0000\u0002\u0001t\u0001u\r\u0001t\u0000\u0002r\u0000\u0000\u0001\u0001\u0001v\u0001w\r\u0001v\u0000\u0002n\u0000\u0000\u0001\u0001\u0001x\u0001y\r\u0001x\u0000\u0001o\u0000\u0000\u0001\u0001R\u000bR\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001y\u0000\u0001o\u0000\u0000\u0001\u0001Q\u000bQ\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001u\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0002r\u0000\u0000\u0001\u0001\u0001|\u0001}\r\u0001|\u0000\u0002n\u0000\u0000\u0001\u0001\u0001~\u0001\r\u0001~\u0000\u0001o\u0000\u0000\u0001\u0001O\u000bO\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001N\u000bN\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001{\u0000\u0002\u0001L\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001K\u000bK\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001J\u000bJ\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002L\u0000\u0000\r\u0001q\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000H\u0001G\nH\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002G\u0000\u0000\r\u0001r\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0001E\u0001D\nE\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002D\u0000\u0000\u0002\u0001\u0000\u0002\u0001B\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0001A\u0001A\u0000\u0000\u0002B\u0000\u0000\u0002\u0001o\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u0001:\u0001\u0001\u0001:\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00019\u000b9\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00018\u000b8\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u00016\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002-\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\r\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00015\u00014\n5\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u000132\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0001\u00011\n1\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00010\u000b0\u0000\t0\u0000\u0005_yaml\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\b0\u0000\u0004dest\u0000\u0000\u00024\u0000\u0000\u0002\u0001\u0000\u0002\u0001.\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0002\r-\u0001,\n-\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0002\t\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0004+\u000b+\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0005\u0002\b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002,\u0000\u0000\u0002.\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000*\u0001)\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u0015\u0002-\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u0015\u0002*'\u0001&\n'\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002&\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002\"\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002 \u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0015\u0002\u001c\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0015\u0002\u0018\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0018\u0002\u001b%\u000b%\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002!$\u000b$\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\"\u0002%\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002&\u0000\u0000\u0002\u0001\u0000\u0002\u0001#\r\u0001\u0000\u0001L\u0000\u0000\u0002+\u0002-\"\u0001\"\u0000\u0000\u0002#\u0000\u0000\u00026\u0000\u0000\u0002T\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00020\u0002=!\u0001 \n!\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00020\u00029\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00020\u00025\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00020\u00023\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u00023\u00024\u001f\u000b\u001f\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002 \u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u001e\u0001\u0001\u0001\u001e\u0000\u0000\u0010\u0001\u0000\u0001\u001d\n\u001d\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0001\u0000\u0007\u0010\u001c\u0000\u0006\u001b\u001a\u0001\u0001\u0019\n\u001c\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u001b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u001a\u0000\u0000\u0010\u0001\u0000\u0012\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u000b\u0018\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0017\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0016\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0015\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0014\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0013\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0012\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0011\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0010\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u000f\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u000e\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\r\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\f\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\n\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\t\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0007\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0001\u0000D\u0006\u0000\u001b\u0005\u0004\u0003\u0002\u0000-\u0000B\u0001\u0000\u0000P\u0000j\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\r\u0001\u0012\u0001\u001f\u0001!\u0001;\u0001=\u0001A\u0001I\u0001K\u0001Z\u0001\\\u0001^\u0001e\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\n\u0006\u0000\u0004\npsof\n\u0005\u0000\u0004\npsin\u0003\u0004\u0000\u0004\n\u0003\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0002\u0000\u0004\nctxt\n\u0001\u0000\u0004\nascr\n\u0000\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0019\u0002>\u0014\u0000*\f\u0000\u0004EO[\\[Z*\f\u0000\u0004m\u001e\\Zk\u001f2EO[\\[Zk\u001e\\Zi2EO,FO-EO,FOjvEO\u0017\u0000akj\f\u0000\fkh\u001c\u0000\u0006\/EO,FO-E[k\/EQZ[l\/EQZO%a\u0000\u0010%j\f\u0000\u0011EOa\u0000\u0012%a\u0000\u0013%%a\u0000\u0014%j\f\u0000\u0015%EOa\u0000\u0016,F[OYW\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000\u0019%a\u0000\u001a%j\f\u0000\u001bOh\u000fOa\u0000\u001c\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001d,EOa\u0000\u001e,EOa\u0000\u001f,EW\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000 %a\u0000!%j\f\u0000\u001bOh\u000fO\u0014\u00000a\u0000\"a\u0000#a\u0000$l\f\u0000%a\u0000&%EOa\u0000'a\u0000(,%a\u0000)%a\u0000*,%j\f\u0000\u0011W\u0000\u0017X\u0000\u0017\u0000\u0018a\u0000+%a\u0000,%j\f\u0000\u001bOh\u000fO\u0014\u0000*a\u0000-%a\u0000.%a\u0000*,%a\u0000\/%j\f\u0000\u0011Oa\u00000%a\u00001%j\f\u0000\u001bW\u0000\u001dX\u0000\u0017\u0000\u0018a\u00002%a\u00003%%a\u00004%j\f\u0000\u001bOh\u000fY\u0000a\u00005\u0000\u001d\u0000\u0014\u0000\u001ea\u00006,E^\u0000\u0010Oa\u0000\u001e,EOa\u0000\u001f,EW\u0000\u0017X\u0000\u0017\u0000\u0018a\u00007%a\u00008%j\f\u0000\u001bOh\u000fO]\u0000\u0010a\u00009%%a\u0000:%E^\u0000\u0011O\u0014\u0000*a\u0000;a\u0000(,%a\u0000<%]\u0000\u0011%j\f\u0000\u0011Oa\u0000=]\u0000\u0011%a\u0000>%j\f\u0000\u001bW\u0000\u001fX\u0000\u0017\u0000\u0018a\u0000?]\u0000\u0011%a\u0000@%%a\u0000A%j\f\u0000\u001bOh\u000fY\u0000\u000fa\u0000B%a\u0000C%j\f\u0000\u001b\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bb4651bc1bc8c9e3571ca17fe43e51cf6979e0d2","subject":"Removing update lines from AppleScript","message":"Removing update lines from AppleScript\n\n- Those lines caused #57.\r\n- Those lines appear to do nothing, at least since Mac OS X 10.9.\r\n\r\nFixes #57.","repos":"andreyvit\/create-dmg,andreyvit\/create-dmg,andreyvit\/create-dmg","old_file":"support\/template.applescript","new_file":"support\/template.applescript","new_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\t\tREPOSITION_HIDDEN_FILES_CLAUSE\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\t\tREPOSITION_HIDDEN_FILES_CLAUSE\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2dd417c1bec7abb4228c407b6fac2bd32a90110b","subject":"Switch from XML to JSON for results feedback","message":"Switch from XML to JSON for results feedback\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes XML reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultFeedback(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultFeedback\n\n-- retrieves XML document for Alfred results\non getResultListFeedback()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultFeedback(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"53f5d19e83ca22738df56afe2c4b8183040cfe85","subject":"spaces > tabs","message":"spaces > tabs\n","repos":"keyeMyria\/DeckRocket,jpsim\/DeckRocket","old_file":"OSX\/DeckRocket\/deckrocket.scpt","new_file":"OSX\/DeckRocket\/deckrocket.scpt","new_contents":"#!\/usr\/bin\/osascript\n\non run argv\n set idx to item 1 of argv\n if application \"Deckset\" is running\n tell application \"Deckset\"\n tell first item of documents\n set slideIndex to idx\n end tell\n end tell\n end if\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n\non run argv\n\tset idx to item 1 of argv\n if application \"Deckset\" is running\n tell application \"Deckset\"\n tell first item of documents\n set slideIndex to idx\n end tell\n end tell\n end if\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0efd6d52ba59d8f7cc024ae005d6fabe8680cdbf","subject":"Update for iTunes 10.1.2","message":"Update for iTunes 10.1.2\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_contents":"script remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Find the remote speakers button\n\ton findCorrectButton()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset the_window to (get window \"iTunes\")\n\t\t\t\tset in_buttons to (get buttons of the_window)\n\t\t\t\t\n\t\t\t\trepeat with a_button in in_buttons\n\t\t\t\t\tset the_desc to (get description of a_button)\n\t\t\t\t\tif the_desc contains \"AirPlay\" then\n\t\t\t\t\t\treturn a_button\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\tend tell\n\tend findCorrectButton\n\t\n\ton makeSpeakerWindowShow()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick the_speaker_button\n\t\t\t\tkey code 119 -- Key Code for \"END\"\n\t\t\t\tkey code 76 -- Click \"enter\" for last menu item\n\t\t\t\tdelay 2\n\t\t\tend tell\n\t\tend tell\n\tend makeSpeakerWindowShow\n\t\n\ton setValueOfComputerSpeaker(value_to_set)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\tset the_cbox to (get checkbox 1 of group 1 of row 1 of table 1 of scroll area 1)\n\t\t\t\t\tset the_value to (get value of the_cbox as integer)\n\t\t\t\t\t\n\t\t\t\t\tif the_value is not equal to value_to_set then\n\t\t\t\t\t\tset value of the_cbox to value_to_set\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend setValueOfComputerSpeaker\n\t\n\ton turnOffAllRemoteSpeakers()\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\trepeat with a_row in (get rows of table 1 of scroll area 1)\n\t\t\t\t\t\tset the_desc to (get description of checkbox 1 of group 1 of a_row)\n\t\t\t\t\t\tset the_value to (get value of checkbox 1 of group 1 of a_row as integer)\n\t\t\t\t\t\tif the_desc is not equal to \"Computer\" and the_value is not equal to 0 then\n\t\t\t\t\t\t\tset value of checkbox 1 of group 1 of a_row to 0\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend turnOffAllRemoteSpeakers\n\t\n\ton turnOnGivenSpeakerName(speaker_name)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\trepeat with a_row in (get rows of table 1 of scroll area 1)\n\t\t\t\t\t\tset the_desc to (get description of checkbox 1 of group 1 of a_row)\n\t\t\t\t\t\tset the_value to (get value of checkbox 1 of group 1 of a_row as integer)\n\t\t\t\t\t\tif the_desc is equal to speaker_name and the_value is not equal to 1 then\n\t\t\t\t\t\t\tset value of checkbox 1 of group 1 of a_row to 0\n\t\t\t\t\t\t\tdelay 5\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend turnOnGivenSpeakerName\n\t\n\ton setRemoteSpeakersTo(speaker_name)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\t-- Flip the right checkboxes\n\t\t\t\ttell (get window \"Multiple Speakers\")\n\t\t\t\t\tactivate\n\t\t\t\t\ttell table 1 of scroll area 1\n\t\t\t\t\t\tactivate\n\t\t\t\t\t\t\n\t\t\t\t\t\tset did_activate_correct_speaker to 0\n\t\t\t\t\t\tset computer_speaker to null\n\t\t\t\t\t\t\n\t\t\t\t\t\trepeat with i from 1 to (count of every row)\n\t\t\t\t\t\t\ttell group 1 of row i\n\t\t\t\t\t\t\t\tactivate\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset the_desc to (description of checkbox 1)\n\t\t\t\t\t\t\t\tset the_value to (value of checkbox 1 as integer)\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tif the_desc = \"Computer\" then\n\t\t\t\t\t\t\t\t\tset computer_speaker to (get checkbox 1)\n\t\t\t\t\t\t\t\t\tif the_value = 0 then\n\t\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\telse if the_desc = speaker_name then\n\t\t\t\t\t\t\t\t\tset did_activate_correct_speaker to 1\n\t\t\t\t\t\t\t\t\tif the_value = 0 then\n\t\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\telse if the_value = 1 then\n\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- Turn off the computer speakers\n\t\t\t\t\t\tif did_activate_correct_speaker = 1 then\n\t\t\t\t\t\t\tclick computer_speaker\n\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\non run (argv)\n\ttell application \"iTunes\" to stop\n\tset speaker_name to (get item 1 of argv)\n\t\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setValueOfComputerSpeaker(1)\n\tremoteSpeakerFinder's turnOffAllRemoteSpeakers()\n\t\t\n\tif speaker_name is not equal to \"Computer\" then\n\t\tremoteSpeakerFinder's turnOnGivenSpeakerName(speaker_name)\n\t\tremoteSpeakerFinder's setValueOfComputerSpeaker(0)\n\tend if\n\t\n\tremoteSpeakerFinder's resetWindow()\nend run\n","old_contents":"script remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Find the remote speakers button\n\ton findCorrectButton()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset the_window to (get window \"iTunes\")\n\t\t\t\tset in_buttons to (get buttons of the_window)\n\t\t\t\t\n\t\t\t\trepeat with a_button in in_buttons\n\t\t\t\t\tset the_desc to (get description of a_button)\n\t\t\t\t\tif the_desc contains \"remote speakers\" then\n\t\t\t\t\t\treturn a_button\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\tend tell\n\tend findCorrectButton\n\t\n\ton makeSpeakerWindowShow()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick the_speaker_button\n\t\t\t\tkey code 119 -- Key Code for \"END\"\n\t\t\t\tkey code 76 -- Click \"enter\" for last menu item\n\t\t\t\tdelay 2\n\t\t\tend tell\n\t\tend tell\n\tend makeSpeakerWindowShow\n\t\n\ton setValueOfComputerSpeaker(value_to_set)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\tset the_cbox to (get checkbox 1 of group 1 of row 1 of table 1 of scroll area 1)\n\t\t\t\t\tset the_value to (get value of the_cbox as integer)\n\t\t\t\t\t\n\t\t\t\t\tif the_value is not equal to value_to_set then\n\t\t\t\t\t\tset value of the_cbox to value_to_set\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend setValueOfComputerSpeaker\n\t\n\ton turnOffAllRemoteSpeakers()\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\trepeat with a_row in (get rows of table 1 of scroll area 1)\n\t\t\t\t\t\tset the_desc to (get description of checkbox 1 of group 1 of a_row)\n\t\t\t\t\t\tset the_value to (get value of checkbox 1 of group 1 of a_row as integer)\n\t\t\t\t\t\tif the_desc is not equal to \"Computer\" and the_value is not equal to 0 then\n\t\t\t\t\t\t\tset value of checkbox 1 of group 1 of a_row to 0\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend turnOffAllRemoteSpeakers\n\t\n\ton turnOnGivenSpeakerName(speaker_name)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\ttell window \"Multiple Speakers\"\n\t\t\t\t\tactivate\n\t\t\t\t\t\n\t\t\t\t\trepeat with a_row in (get rows of table 1 of scroll area 1)\n\t\t\t\t\t\tset the_desc to (get description of checkbox 1 of group 1 of a_row)\n\t\t\t\t\t\tset the_value to (get value of checkbox 1 of group 1 of a_row as integer)\n\t\t\t\t\t\tif the_desc is equal to speaker_name and the_value is not equal to 1 then\n\t\t\t\t\t\t\tset value of checkbox 1 of group 1 of a_row to 0\n\t\t\t\t\t\t\tdelay 5\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend turnOnGivenSpeakerName\n\t\n\ton setRemoteSpeakersTo(speaker_name)\n\t\tmakeSpeakerWindowShow()\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\t-- Flip the right checkboxes\n\t\t\t\ttell (get window \"Multiple Speakers\")\n\t\t\t\t\tactivate\n\t\t\t\t\ttell table 1 of scroll area 1\n\t\t\t\t\t\tactivate\n\t\t\t\t\t\t\n\t\t\t\t\t\tset did_activate_correct_speaker to 0\n\t\t\t\t\t\tset computer_speaker to null\n\t\t\t\t\t\t\n\t\t\t\t\t\trepeat with i from 1 to (count of every row)\n\t\t\t\t\t\t\ttell group 1 of row i\n\t\t\t\t\t\t\t\tactivate\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset the_desc to (description of checkbox 1)\n\t\t\t\t\t\t\t\tset the_value to (value of checkbox 1 as integer)\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tif the_desc = \"Computer\" then\n\t\t\t\t\t\t\t\t\tset computer_speaker to (get checkbox 1)\n\t\t\t\t\t\t\t\t\tif the_value = 0 then\n\t\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\telse if the_desc = speaker_name then\n\t\t\t\t\t\t\t\t\tset did_activate_correct_speaker to 1\n\t\t\t\t\t\t\t\t\tif the_value = 0 then\n\t\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\telse if the_value = 1 then\n\t\t\t\t\t\t\t\t\tclick checkbox 1\n\t\t\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- Turn off the computer speakers\n\t\t\t\t\t\tif did_activate_correct_speaker = 1 then\n\t\t\t\t\t\t\tclick computer_speaker\n\t\t\t\t\t\t\tdelay 10\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\ttell application \"iTunes\" to close window \"Multiple Speakers\"\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\non run (argv)\n\ttell application \"iTunes\" to stop\n\tset speaker_name to (get item 1 of argv)\n\t\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setValueOfComputerSpeaker(1)\n\tremoteSpeakerFinder's turnOffAllRemoteSpeakers()\n\t\t\n\tif speaker_name is not equal to \"Computer\" then\n\t\tremoteSpeakerFinder's turnOnGivenSpeakerName(speaker_name)\n\t\tremoteSpeakerFinder's setValueOfComputerSpeaker(0)\n\tend if\n\t\n\tremoteSpeakerFinder's resetWindow()\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d5fe1a633b57a60089a36b414bbbda7058c94c39","subject":"Fixed icon positioning, but it's still not setting height, even with the new setting. If anyone else has luck with this, let me know, I give up on it.","message":"Fixed icon positioning, but it's still not setting height, even with the new setting. If anyone else has luck with this, let me know, I give up on it.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%404219\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {100, 320}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\topen\n\t\t\tset the_window_id to id\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 479, 1500}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\topen\n\t\t\tset the_window_id to id\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 462}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"0dfeb53c383b10b43c2c40b9d9c69e761db91081","subject":"add a summary section","message":"add a summary section\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"b6d70352b6a4b2b82d459406794402b550d83fd0","subject":"Add dialog list option to create a new category","message":"Add dialog list option to create a new category\n\nThis option bypasses the subcategory selection and just presents a blank\nentry field for typing in a new category (usually with subcategories).\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type)\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\t\n\t\t-- :TODO: Add choice to make a new category, bypassing subcategory dialog\n\t\t\n\t\treturn {\"Show full list with subcategories...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b72d9c145d7a733146ee80074386c621af0bb3b3","subject":"typo in fmGUI_ManageLayouts_Layout_CreateOrUpdate","message":"typo in fmGUI_ManageLayouts_Layout_CreateOrUpdate\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjectByCoords(buttonRef)\n\t\t\twindowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tfmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjectByCoords(buttonRef)\n\t\t\twindowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"01411bb835ed80d10b5546f7105ab1529c647b6e","subject":"Close both Vagrants","message":"Close both Vagrants\n","repos":"smathson\/dotfiles","old_file":"applescripts\/halt_vagrant.applescript","new_file":"applescripts\/halt_vagrant.applescript","new_contents":"set close_ubervu_vagrant to \"cd ~\/uberVU\/puppet; vagrant halt -f;\"\nset close_hs_vagrant to \"cd ~\/hootsuite\/dash-board; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_ubervu_vagrant\n\t\twrite text close_hs_vagrant\n\tend tell\nend tell\n","old_contents":"set close_vagrant to \"z puppet; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"03e79121376c1776653bb1a70180cc1f58ef1324","subject":"Change session name to 'rspec'","message":"Change session name to 'rspec'","repos":"chautoni\/tube.vim","old_file":"autoload\/applescript\/iterm.scpt","new_file":"autoload\/applescript\/iterm.scpt","new_contents":"-- execute_iterm.scpt\n-- last change: 19 Jan 2013\n---\n-- this script require an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application \"iTerm\"\n\n try\n set mysession to current session of current terminal\n on error\n set myterm to (make new terminal)\n tell myterm\n launch session \"rspec\"\n set mysession to current session\n end tell\n end try\n\n -- execute the command\n tell mysession\n write text command\n end tell\n\n end tell\n\nend run\n","old_contents":"-- execute_iterm.scpt\n-- last change: 19 Jan 2013\n---\n-- this script require an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n \n tell application \"iTerm\"\n\n try\n set mysession to current session of current terminal\n on error\n set myterm to (make new terminal)\n tell myterm\n launch session \"Default\"\n set mysession to current session\n end tell\n end try\n\n -- execute the command\n tell mysession\n write text command\n end tell\n\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"33c600d81ed29d18634ed92dac0f16d9b5f4def1","subject":"remove unused newline variable","message":"remove unused newline variable\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\tend tell\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","old_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset nl to \"\n\"\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\tend tell\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2aa4fb4e083181d6fe579457cf40a30e0c39ae04","subject":"[#67] updated the Mac packager to latest version","message":"[#67] updated the Mac packager to latest version\n\n\nFormer-commit-id: a1d0217011facbdc5359bce120f3892890f95169","repos":"hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop","old_file":"res\/installers\/osx\/support\/template.applescript","new_file":"res\/installers\/osx\/support\/template.applescript","new_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\t\tREPOSITION_HIDDEN_FILES_CLAUSE\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t-- set position of every item to {theBottomRightX + 100, 100}\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"2b75ad2a237b02ef91a87be8cba5988479f21aed","subject":"Fix centering of button names broken in Mavericks","message":"Fix centering of button names broken in Mavericks\n\nPadding is used to increase the button width in dialogs in order to\nincrease the width of the dialogs themselves (for wider text fields).\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a9ec3c8e94c22bdb296970a7f7a4297a80f02d45","subject":"handle viscosity errors more gracefully","message":"handle viscosity errors more gracefully\n","repos":"kfox\/dotfiles,kfox\/dotfiles,kfox\/dotfiles","old_file":"bin\/viscosity.applescript","new_file":"bin\/viscosity.applescript","new_contents":"#!\/usr\/bin\/osascript\n\ntry\n\ttell application \"Viscosity\"\n\t\tif the state of the first connection is not \"Connected\" then\n\t\t\tconnect the first connection\n\t\t\t\n\t\t\trepeat until state of the first connection is \"Connected\"\n\t\t\t\tdelay 1\n\t\t\tend repeat\n\t\tend if\n\tend tell\non error\n\ttell me to quit\nend try\n\n","old_contents":"#!\/usr\/bin\/osascript\n\ntell application \"Viscosity\"\n if the state of the first connection is not \"Connected\" then\n connect the first connection\n\n repeat until state of the first connection is \"Connected\" \n delay 1\n end repeat\n end if\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cff820163e9ff342a69f3a75c73ba7df15061c7b","subject":"converted to UTF-8","message":"converted to UTF-8\n","repos":"superpixel\/SVGOdrop","old_file":"svgodrop.applescript","new_file":"svgodrop.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"94ca4d4159731c3012c8934e5a1ee5a6658bf09a","subject":"Add numbers to category menu items","message":"Add numbers to category menu items\n\nThe numbers act as keyboard shortcuts for selecting the items.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a03cb6106e723bd397d184fb6df89238350335bc","subject":"Move IO class to constructor. Add NullIO class.","message":"Move IO class to constructor. Add NullIO class.\n\nNullIO inherits from IO and overrides the write and append methods so\nthat they don't write to the file. Instead, they just log some messages.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (_IO's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2c15b15732bd5e64cc2a9fc060e4b17a1d535645","subject":"Fix iconv error when a character can't be converted","message":"Fix iconv error when a character can't be converted\n\nError: iconv: (stdin):1:31: cannot convert\n\nFixed by adding '\/\/IGNORE' to the tocode as in\n'US-ASCII\/\/TRANSLIT\/\/IGNORE'.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (_IO's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (_IO's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"512b1c2664ac94a6957769fa43a6d58a455a0cef","subject":"during uninstallation return to factory-defaults for AnimateWindowZoom and FXDisableFancyWindowTransition","message":"during uninstallation return to factory-defaults for AnimateWindowZoom and FXDisableFancyWindowTransition\n","repos":"binaryage\/totalterminal-installer,binaryage\/totalfinder-installer","old_file":"Uninstall.applescript","new_file":"Uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4f69e90efea508989dfd39d33bb65cb653aefbd7","subject":"Repaired the not equal signs","message":"Repaired the not equal signs\n\nthe \"eachCharNum...45\" and following conditions are supposed to be not equals\r\nApplescript likes the single not equal symbol, which is entered via Option= on the mac","repos":"Joilence\/launchbar,prenagha\/launchbar,prenagha\/launchbar,prenagha\/launchbar","old_file":"MailMate.applescript","new_file":"MailMate.applescript","new_contents":"\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n\tset theTextEnc to \"\"\n\trepeat with eachChar in characters of theText\n\t\tset useChar to eachChar\n\t\tset eachCharNum to ASCII number of eachChar\n\t\tif eachCharNum = 32 or eachCharNum > 127 then\n\t\t\tset useChar to \"%20\"\n\t\telse if (eachCharNum \u2260 42) and (eachCharNum \u2260 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n\t\t\tset firstDig to round (eachCharNum \/ 16) rounding down\n\t\t\tset secondDig to eachCharNum mod 16\n\t\t\tif firstDig > 9 then\n\t\t\t\tset aNum to firstDig + 55\n\t\t\t\tset firstDig to ASCII character aNum\n\t\t\tend if\n\t\t\tif secondDig > 9 then\n\t\t\t\tset aNum to secondDig + 55\n\t\t\t\tset secondDig to ASCII character aNum\n\t\t\tend if\n\t\t\tset numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n\t\t\tset useChar to numHex\n\t\tend if\n\t\tset theTextEnc to theTextEnc & useChar as string\n\tend repeat\n\treturn theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n\tset _to to \"\"\n\trepeat with addr in _emailAddresses\n\t\tset _to to _to & \"&to=\" & urlencode(addr)\n\tend repeat\n\treturn _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n\tset ASTID to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to \"\/\"\n\tset thePath to text item -1 of thePath\n\tset AppleScript's text item delimiters to ASTID\n\treturn thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n\ttry\n\t\tset _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n\t\tset _names to \"\"\n\t\trepeat with _file in _files\n\t\t\tset _filePath to POSIX path of _file\n\t\t\tset _names to _names & \" \" & basename(_filePath)\n\t\t\tset _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n\t\tend repeat\n\t\tset _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\ttell application \"MailMate\" to activate\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n\ttry\n\t\tif txt contains \" http\" then\n\t\t\tset myName to text 1 thru ((offset of \" http\" in txt) - 5) of txt\n\t\t\tset myURL to text ((offset of \" http\" in txt) + 1) thru end of txt\n\t\t\tset mySubj to \"Link: \" & myName\n\t\t\tset myBody to myName & return & myURL & return & return & \"Enjoy\"\n\t\t\tset _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n\t\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\telse\n\t\t\tset _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n\t\t\ttell application \"MailMate\" to open location _mailto\n\t\t\ttell application \"MailMate\" to activate\n\t\tend if\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendText\n","old_contents":"\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n\tset theTextEnc to \"\"\n\trepeat with eachChar in characters of theText\n\t\tset useChar to eachChar\n\t\tset eachCharNum to ASCII number of eachChar\n\t\tif eachCharNum = 32 or eachCharNum > 127 then\n\t\t\tset useChar to \"%20\"\n\t\telse if (eachCharNum 42) and (eachCharNum 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n\t\t\tset firstDig to round (eachCharNum \/ 16) rounding down\n\t\t\tset secondDig to eachCharNum mod 16\n\t\t\tif firstDig > 9 then\n\t\t\t\tset aNum to firstDig + 55\n\t\t\t\tset firstDig to ASCII character aNum\n\t\t\tend if\n\t\t\tif secondDig > 9 then\n\t\t\t\tset aNum to secondDig + 55\n\t\t\t\tset secondDig to ASCII character aNum\n\t\t\tend if\n\t\t\tset numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n\t\t\tset useChar to numHex\n\t\tend if\n\t\tset theTextEnc to theTextEnc & useChar as string\n\tend repeat\n\treturn theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n\tset _to to \"\"\n\trepeat with addr in _emailAddresses\n\t\tset _to to _to & \"&to=\" & urlencode(addr)\n\tend repeat\n\treturn _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n\tset ASTID to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to \"\/\"\n\tset thePath to text item -1 of thePath\n\tset AppleScript's text item delimiters to ASTID\n\treturn thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n\ttry\n\t\tset _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n\t\tset _names to \"\"\n\t\trepeat with _file in _files\n\t\t\tset _filePath to POSIX path of _file\n\t\t\tset _names to _names & \" \" & basename(_filePath)\n\t\t\tset _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n\t\tend repeat\n\t\tset _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\ttell application \"MailMate\" to activate\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n\ttry\n\t\tif txt contains \" http\" then\n\t\t\tset myName to text 1 thru ((offset of \" http\" in txt) - 5) of txt\n\t\t\tset myURL to text ((offset of \" http\" in txt) + 1) thru end of txt\n\t\t\tset mySubj to \"Link: \" & myName\n\t\t\tset myBody to myName & return & myURL & return & return & \"Enjoy\"\n\t\t\tset _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n\t\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\telse\n\t\t\tset _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n\t\t\ttell application \"MailMate\" to open location _mailto\n\t\t\ttell application \"MailMate\" to activate\n\t\tend if\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendText\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"7a5ab9f2d9717cf4a8a856744c5230c8aa1a496c","subject":"Warn about invalid list item selection (hor. rule)","message":"Warn about invalid list item selection (hor. rule)\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat 10 times -- limit loops as a precaution\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\"\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7624fbc0053bb4f97f1af4e4ef0d826b470cf435","subject":"Fix get state for locales that have commas as decimal delimiters","message":"Fix get state for locales that have commas as decimal delimiters\n\nWhen your current set locale uses \",\" as decimal delimiter, AppleScript\nwill automatically use this when you convert the number to a string. This\nwill break the JSON parsing for the callback, as \",\" is invalid when not\nin quotes.\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_state.applescript","new_file":"lib\/scripts\/get_state.applescript","new_contents":"on replace_chars(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\ntell application \"Spotify\"\n -- force string coercion and locale format\n set position to \"\" & player position\n\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n -- replace , with . when locale has , as decimal delimiter\n set cstate to cstate & \",\\\"position\\\": \" & my replace_chars(position, \",\", \".\")\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell\n","old_contents":"tell application \"Spotify\"\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n set cstate to cstate & \",\\\"position\\\": \" & player position\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"78236b4e6971232db0b62e8c17cf8ff9f32a0132","subject":"Perms","message":"Perms\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/clear-notifications.scpt","new_file":"scripts\/clear-notifications.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000o\u0000p\u0000q\u0000r\u0001\u0000\u0000\u0010\u0000o\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u000e\u0000p\u0000\u0007\u0010\u0000s\u0000t\u0000u\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000s\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000v\u0002\u0000v\u0000\u0002\u0000\u0005\u0000w\u0002\u0000w\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000t\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000u\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u000e\u0000q\u0000\u0001\u0014\u0000x\u000e\u0000x\u0000\u0003\u0018\u0000y\u000e\u0000y\u0000\u0003\u0018\u0000z\u000e\u0000z\u0000\u0003\u0018\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000|\u0000}\u000e\u0000|\u0000\u0003\u0018\u0000n\u0000~\n\u0000\u0004\npcap\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\u000e\u0000r\u0000\u0002\u0004\u0000\u0003\u0000\u0002\u000e\u0000\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000A\u0000X\u0000S\u0000c\u0000r\u0000o\u0000l\u0000l\u0000T\u0000o\u0000V\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000A\u0000X\u0000S\u0000h\u0000o\u0000w\u0000M\u0000e\u0000n\u0000u\n\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000o\u0000p\u0000q\u0000r\u0001\u0000\u0000\u0010\u0000o\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u000e\u0000p\u0000\u0007\u0010\u0000s\u0000t\u0000u\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000s\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000v\u0002\u0000v\u0000\u0002\u0000\u0005\u0000w\u0002\u0000w\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000t\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000u\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u000e\u0000q\u0000\u0001\u0014\u0000x\u000e\u0000x\u0000\u0003\u0018\u0000y\u000e\u0000y\u0000\u0003\u0018\u0000z\u000e\u0000z\u0000\u0003\u0018\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000|\u0000}\u000e\u0000|\u0000\u0003\u0018\u0000n\u0000~\n\u0000\u0004\npcap\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\u000e\u0000r\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000A\u0000X\u0000S\u0000c\u0000r\u0000o\u0000l\u0000l\u0000T\u0000o\u0000V\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000~\u000e\u0000\u0000\u0003\u0018\u0000}|\u000e\u0000\u0000\u0003\u0018\u0000{z\u000e\u0000\u0000\u0003\u0018\u0000y\u0000\u000e\u0000\u0000\u0003\u0018\u0000nx\u0000\nx\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\ny\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n{\u0000\u0004\nscra\u0003z\u0000\u0001\n}\u0000\u0004\nuiel\u0003|\u0000\u0001\n\u0000\u0004\nsgrp\u0003~\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000N\u0000a\u0000m\u0000e\u0000:\u0000C\u0000l\u0000o\u0000s\u0000e\u0000\n\u0000T\u0000a\u0000r\u0000g\u0000e\u0000t\u0000:\u00000\u0000x\u00000\u0000\n\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000o\u0000r\u0000:\u0000(\u0000n\u0000u\u0000l\u0000l\u0000)\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000w\u0000\u000e\u0000\u0000\u0003\u0018\u0000vu\u000e\u0000\u0000\u0003\u0018\u0000ts\u000e\u0000\u0000\u0003\u0018\u0000rq\u000e\u0000\u0000\u0003\u0018\u0000p\u0000\u000e\u0000\u0000\u0003\u0018\u0000no\u0000\no\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\np\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\nr\u0000\u0004\nscra\u0003q\u0000\u0001\nt\u0000\u0004\nuiel\u0003s\u0000\u0001\nv\u0000\u0004\nsgrp\u0003u\u0000\u0001\nw\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000N\u0000a\u0000m\u0000e\u0000:\u0000R\u0000e\u0000p\u0000l\u0000y\u0000\n\u0000T\u0000a\u0000r\u0000g\u0000e\u0000t\u0000:\u00000\u0000x\u00000\u0000\n\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000o\u0000r\u0000:\u0000(\u0000n\u0000u\u0000l\u0000l\u0000)\n\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c7f2827b9a9923cf0ce0e07e6762feb40c67941e","subject":"Simplify filterer code so it actually works.","message":"Simplify filterer code so it actually works.\n","repos":"kurtraschke\/htmlbib,kurtraschke\/htmlbib","old_file":"Filterer.applescript","new_file":"Filterer.applescript","new_contents":"on run\n\ttell application \"BibDesk\"\n\t\ttry\n\t\t\tset alertResult to display alert (\"Really remove all linked files and private notes from \" & name of first document as string) & \"?\" buttons {\"Cancel\", \"OK\"} default button \"OK\" cancel button \"Cancel\" as warning\n\t\t\t\n\t\t\tif button returned of alertResult is \"OK\" then\n\t\t\t\tset theDocument to first document\n\t\t\t\t\n\t\t\t\tsave theDocument\n\t\t\t\t\n\t\t\t\tset theFile to (theDocument's file) as alias\n\t\t\t\t\n\t\t\t\ttell application \"Finder\"\n\t\t\t\t\tset theContainer to (container of theFile) as alias\n\t\t\t\t\tset newFile to make new file with properties {container:theFile, name:\"Filtered \" & ((name of theDocument) as string)}\n\t\t\t\tend tell\n\t\t\t\treturn\n\t\t\t\t\n\t\t\t\tsave first document in (newFile as file)\n\t\t\t\trepeat with thePub in first document's publications\n\t\t\t\t\tset thePub's note to my splitNote(thePub's note)\n\t\t\t\t\trepeat with theFile in thePub's linked files\n\t\t\t\t\t\tremove theFile from thePub\n\t\t\t\t\tend repeat\n\t\t\t\tend repeat\n\t\t\t\tsave first document\n\t\t\tend if\n\t\ton error -128\n\t\t\tdisplay dialog \"User cancelled.\"\n\t\tend try\n\tend tell\nend run\n\nto splitNote(theNoteText)\n\ttry\n\t\tset oldDelims to AppleScript's text item delimiters\n\t\tset AppleScript's text item delimiters to {\"---\"}\n\t\t\n\t\tset theParts to every text item of theNoteText\n\t\t\n\t\tif length of theParts is greater than 1 then\n\t\t\tset outText to (text 2 through end) of last item of theParts\n\t\telse\n\t\t\tset outText to \"\"\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\ton error\n\t\tset AppleScript's text item delimiters to oldDelims\n\tend try\n\treturn outText\nend splitNote","old_contents":"on run\n\ttell application \"BibDesk\"\n\t\ttry\n\t\t\tset alertResult to display alert (\"Really remove all linked files and private notes from \" & name of first document as string) & \"?\" buttons {\"Cancel\", \"OK\"} default button \"OK\" cancel button \"Cancel\" as warning\n\t\t\t\n\t\t\tif button returned of alertResult is \"OK\" then\n\t\t\t\tsave first document in \"Filtered \" & (name of first document as string) & \".bib\"\n\t\t\t\trepeat with thePub in first document's publications\n\t\t\t\t\tset thePub's note to my splitNote(thePub's note)\n\t\t\t\t\trepeat with theFile in thePub's linked files\n\t\t\t\t\t\tremove theFile from thePub\n\t\t\t\t\tend repeat\n\t\t\t\tend repeat\n\t\t\t\tsave first document\n\t\t\tend if\n\t\ton error -128\n\t\t\tdisplay dialog \"User cancelled.\"\n\t\tend try\n\tend tell\nend run\n\nto splitNote(theNoteText)\n\ttry\n\t\tset oldDelims to AppleScript's text item delimiters\n\t\tset AppleScript's text item delimiters to {\"---\"}\n\t\t\n\t\tset theParts to every text item of theNoteText\n\t\t\n\t\tif length of theParts is greater than 1 then\n\t\t\tset outText to text 2 through end of last item of theParts\n\t\telse\n\t\t\tset outText to \"\"\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\ton error\n\t\tset AppleScript's text item delimiters to oldDelims\n\tend try\n\treturn outText\nend splitNote","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bdb2282cc2ff0252d33e716ba3bfb2c96be56867","subject":"trailing whitespace","message":"trailing whitespace\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n--\n-- Permission is hereby granted, free of charge,\n-- to any person obtaining a copy of this software\n-- and associated documentation files (the \"Software\"),\n-- to deal in the Software without restriction,\n-- including without limitation the rights to use, copy,\n-- modify, merge, publish, distribute, sublicense,\n-- and\/or sell copies of the Software, and to permit persons\n-- to whom the Software is furnished to do so,\n-- subject to the following conditions:\n--\n-- *******\n-- The above copyright notice and this permission notice\n-- shall be included in ALL copies\n-- or substantial portions of the Software.\n-- *******\n--\n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\t\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\t\t\t\t\/* and dateDue < strftime('%s','now','+7 days') - strftime('%s','2001-01-01'); *\/\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\t\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\t\t\t\t\/* and dateDue < strftime('%s','now','+7 days') - strftime('%s','2001-01-01'); *\/\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"22a2a5f4409f8752cdbc71150942ee46962ef963","subject":"Rewrite log file template header info","message":"Rewrite log file template header info\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7ab138d7dabaccc2fb6d6109fd5c32f41a52841d","subject":"Remove unnecessary settings views calls to model","message":"Remove unnecessary settings views calls to model\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8caa4cba5542dfb477b6fa61daef1d8a63e01b78","subject":"Update the metadata variables from user input","message":"Update the metadata variables from user input\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Log some debugging information\n log (pcatArtist as string)\n log (pcatAlbum as string)\n log (pcatComposer as string)\n log (pcatGenre as string)\n log (pcatDisc as string)\n log (pcatDiscs as string)\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"5656cddc833960047abce618a1f6bf3996ee0ca0","subject":"\tdeleted: GetBearURL.scpt","message":"\tdeleted: GetBearURL.scpt\n","repos":"bblinder\/home-brews,bblinder\/home-brews","old_file":"GetBearURL.scpt","new_file":"GetBearURL.scpt","new_contents":"","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\n\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000f\u0000\n\u0001x\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u001a\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\bBear.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0002\u0000\u0018\/:Applications:Bear.app\/\u0000\u000e\u0000\u0012\u0000\b\u0000B\u0000e\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/Bear.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u000b\u00000\u0000\r\r\u0000\r\u0000\u0002O\u0000\u0000\u0000\u000b\u00000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002O\u0000\u0000\u0000\u000f\u0000\/\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002O\u0000\u0000\u0000\u0016\u0000.\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\u001d\u0000-\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000$\u0000,\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0003I\u0000\u0002\u0000$\u0000,\u0000\u0019\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000\u001a\n\u0000\u0004\nmenI\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\"\u0000C\u0000o\u0000p\u0000y\u0000 \u0000L\u0000i\u0000n\u0000k\u0000 \u0000t\u0000o\u0000 \u0000N\u0000o\u0000t\u0000e\u0002\u0000\u0000\f\u0000\u0017\u0000\"\u0000\u001c or \"Copy Notes Identifier\"\u0000\u0002\u0000\u0000\u000e\u0000\u0018\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u00008\u0000 \u0000o\u0000r\u0000 \u0000\"\u0000C\u0000o\u0000p\u0000y\u0000 \u0000N\u0000o\u0000t\u0000e \u0019\u0000s\u0000 \u0000I\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000\"\r\u0000\u0015\u0000\u0002n\u0000\u0002\u0000\u001d\u0000!\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000\u001e\u0000!\u0000 \n\u0000\u0004\nmenE\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000!\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000\b\u0000N\u0000o\u0000t\u0000e\r\u0000\u001f\u0000\u0000g\u0000\u0000\u0000\u001d\u0000\u001e\r\u0000\u0013\u0000\u0002n\u0000\u0002\u0000\u0016\u0000\u001a\u0000#\u0000$\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000%\n\u0000\u0004\nmbar\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000$\u0000\u0000g\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0011\u0000\u0002n\u0000\u0002\u0000\u000f\u0000\u0013\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0013\u0000(\n\u0000\u0004\npcap\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\b\u0000B\u0000e\u0000a\u0000r\r\u0000'\u0000\u0000g\u0000\u0000\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000+\u000f\u0000+\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0001\u00001\u00006\u0000.\u0000\/\u00000\r\u0000.\u0000\u0003I\u0000\u0002\u00001\u00006\u00001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00001\u0000\u0001m\u0000\u0000\u00001\u00002\u00002\b\u00002\u0000\b?\u0259\u0002\u0000\u0000\f\u0000\/\u0000@\u0000: sometimes the clipboard needs a 1\/5 of second to register\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00003\u0011\u00003\u0000t\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000i\u0000m\u0000e\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000i\u0000p\u0000b\u0000o\u0000a\u0000r\u0000d\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000a\u0000 \u00001\u0000\/\u00005\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0002\u0000-\u0000\u0002\u00004\r\u00004\u0000\u0003l\u0000\u0002\u00007\u0000>\u00005\r\u00005\u0000\u0002r\u0000\u0000\u00007\u0000>\u00006\u00007\r\u00006\u0000\u0003I\u0000\u0002\u00007\u0000<\n\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u00007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthenotelink\u0000\u000btheNoteLink\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u00008\u00009\u0001\u0000\u0000\u0010\u00008\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00009\u0000\u0007\u0010\u0000:\u0000;\u0000<\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000:\u0000\u0001k\u0000\u0000\u0000\u0000\u0000>\u0000=\u0002\u0000=\u0000\u0002\u0000\u0005\u0000>\u0002\u0000>\u0000\u0002\u0000\u000b\u0000?\u0002\u0000?\u0000\u0002\u0000,\u0000@\u0002\u0000@\u0000\u0002\u00004\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000;\u0000\u0000\u0010\u0000<\u0000\u000f\u0000\n\u0000+\u0000)\u0000!\u0000\u001b\u00002\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\npcap\n\u0000\u0004\nmbar\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u000b\u0000\u001a0\u0000\u000bthenotelink\u0000\u000btheNoteLink\u0011\u0000?\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000\"*\/\u0012\u0000\u001a*k\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\nUUUUOj\f\u0000\fO*j\f\u0000\rE\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8b897c863e649375ac758987986b33299870056a","subject":"Reword some text in dialogs and comments","message":"Reword some text in dialogs and comments\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-23\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized web bookmark archive vim:ft=conf:\n# ===========================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each\n# bookmark record consists of a date, label (category), title, URL, and\n# optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new bookmarks.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-03-17\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"40a884f2a35ca89bed99082e30dc3d958091152b","subject":"minor fix","message":"minor fix\n","repos":"appium\/appium-for-mac","old_file":"applescript\/findByName.applescript","new_file":"applescript\/findByName.applescript","new_contents":"on findByName(theElement, theName)\n\tset theTitle to missing value\n\ttell application \"System Events\"\n\t\ttry\n\t\t\tset theTitle to title of theElement\n\t\t\tif theTitle is equal to theName then\n\t\t\t\treturn theElement\n\t\t\tend if\n\t\tend try\n\t\trepeat with e in UI elements of theElement\n\t\t\tset theTitle to my findByName(e, theName)\n\t\t\tif theTitle is not missing value then\n\t\t\t\treturn theTitle\n\t\t\tend if\n\t\tend repeat\n\t\treturn missing value\n\tend tell\nend findByName\n\non run argv\n\ttell application \"System Events\"\n\t\treturn my findByName(process \"Appium\", \"Launch\")\n\tend tell\nend run","old_contents":"on findByName(theElement, theName)\n\tset theTitle to missing value\n\ttell application \"System Events\"\n\t\ttry\n\t\t\tset theTitle to title of theElement\n\t\t\tif theTitle is equal to theName then\n\t\t\t\treturn theElement\n\t\t\tend if\n\t\tend try\n\t\trepeat with e in UI elements of theElement\n\t\t\tset theTitle to my findByName(e, theName)\n\t\t\tif theTitle is not missing value then\n\t\t\t\treturn theTitle\n\t\t\tend if\n\t\tend repeat\n\t\treturn missing value\n\tend tell\nend findByName\n\non run argv\n\ttell application \"System Events\"\n\t\tclick my findByName(process \"Appium\", \"Launch\")\n\tend tell\nend run","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"09980ca9d7f6502d8dcd45743cab36427681bfd6","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9bba1ab3570d13f1240fea4e435a0a01febf1210","subject":"BBEdit SQL query fixer - more for 1.3","message":"BBEdit SQL query fixer - more for 1.3\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\tset regexSearch_ExtraSpacesBeforeSemicolon to \"([^\\r]) +;\"\n\t\n\tset regexReplace_ExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_ExtraSpacesBeforeSemicolon using regexReplace_ExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.3 - 2018-09-04 ( dshockley ): fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2e15be51bdd90fb7003bc42da19454b87c809fcd","subject":"update","message":"update\n","repos":"JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits","old_file":"FetchLyric\/FetchLyric.applescript","new_file":"FetchLyric\/FetchLyric.applescript","new_contents":"-\u0000-\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\n\u0000-\u0000-\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000QS_MR\t-Nvfv\ua068R\u000bN}v^OX[Lk\u034b\fLk\u034b]X[(W\u0006\\_eu\f\/e\u0001cG\u0000r\u0000o\u0000w\u0000l\u0000\u001aw\n\u0000-\u0000-\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\n\u0000-\u0000-\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0000\n\u0000-\u0000-\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0000\n\u0000-\u0000-\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000:\u0000 \u0000\"\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000 \u0000:\u0000 \u0000\"\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000:\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000 \u0000:\u0000 \u0000{\u0000\"\u0000Lk\u034b]X[(W\fe\u0000QS\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS\u0010bR\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS1Y%\u00020\"\u0000,\u0000 \u0000\"\u0000*g\tbLkf\u00020\"\u0000}\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000 \u0000:\u0000 \u00001\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000 \u0000:\u0000 \u00002\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000 \u0000:\u0000 \u00003\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000 \u0000:\u0000 \u00004\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000(\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000)\u0000)\u0000 \u0000>\u0000 \u00000\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000\n\u0000\t\u0000o\u0000n\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000=\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000-\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000 \u0000a\u0000s\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000c\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000n\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000\u001d\\\u054bO(uLkf\u0001\\b\\O:NG\u0000r\u0000o\u0000w\u0000l\u0000V\u0007hQ\u0019\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000{\u0000}\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000\"\u0000\"\u0000,\u0000 \u0000\"\u0000\"\u0000,\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000)\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000k\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u00001\u0000\n\u0000\t\u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000<\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000S\tgS_Lkf-N*gX[(WLk\u034beMb\u001d\\\u054bSLk\u034b\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000&\u0000 \u0000\"\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000>\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000Lk\u034b\u0010bRS\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000e\u0000l\u0000s\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u0000i\u0000 \u0000+\u0000 \u00001\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000 \u0000>\u0000 \u0000k\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000-\u0000-\u0000 \u0000YgG\u0000r\u0000o\u0000w\u0000l\u0000*g\u040fL\u0019R>f:y[\u074bFh\n\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000&\u0000 \u0000\"\u0000Lk\u034bS~_g\u0001\"\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000nx[\"\u0000}\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u00001\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u00001\u0000 \u0000g\u0000i\u0000v\u0000i\u0000n\u0000g\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u00005\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000","old_contents":"-- FetchLyric\n-- DESCRIPTION: \u8ba9iTunes\u5185\u5f53\u524d\u88ab\u9009\u4e2d\u7684\u66f2\u76ee\u81ea\u52a8\u4e0b\u8f7d\u5e76\u4fdd\u5b58\u6b4c\u8bcd\uff0c\u82e5\u6b4c\u8bcd\u5df2\u5b58\u5728\u5c06\u88ab\u5ffd\u7565\uff0c\u652f\u6301Growl\u901a\u77e5\n-- AUTHOR: JinnLynn http::\/\/jeeker.net\n-- LAST UPDATED: 2012-05-04\n-- INTRO PAGE: http:\/\/jeeker.net\/fetch-lyric-for-itunes\/\n-- REF: Martian http:\/\/blog.4321.la\/articles\/2012\/01\/27\/use-applescript-to-set-itunes-lyrics\/\nproperty scriptName : \"FetchLyric\"\nproperty baseURL : \"http:\/\/lyrics.sinaapp.com\/\"\nproperty isGrowlRunning : false\nproperty statusDesc : {\"\u6b4c\u8bcd\u5df2\u5b58\u5728\uff0c\u65e0\u9700\u518d\u83b7\u53d6\u3002\", \"\u6b4c\u8bcd\u83b7\u53d6\u6210\u529f\u3002\", \"\u6b4c\u8bcd\u83b7\u53d6\u5931\u8d25\u3002\", \"\u672a\u9009\u62e9\u6b4c\u66f2\u3002\"}\nproperty STATUS_LYRIC_EXIST : 1\nproperty STATUS_LYRIC_SUCCESS : 2\nproperty STATUS_LYRIC_FAIL : 3\nproperty STATUS_LYRIC_UNSELECTED : 4\n \ntell application \"System Events\"\nset isGrowlRunning to (count of (every process whose bundle identifier is \"com.Growl.GrowlHelperApp\")) > 0\nend tell\n \nscript growl\non growlNotify(artist, title, status)\n if isGrowlRunning = false then return\n tell application id \"com.Growl.GrowlHelperApp\"\n if title = \"\" then set title to \"unknown\"\n set the_title to title\n if artist is not equal to \"\" then set the_title to artist & \" - \" & the_title\n set the_desc to item status of statusDesc\n set the allNotificationsList to {scriptName}\n set the enabledNotificationsList to {scriptName}\n register as application \u00ac\n scriptName all notifications allNotificationsList \u00ac\n default notifications enabledNotificationsList \u00ac\n icon of application \"iTunes\"\n notify with name \u00ac\n scriptName title \u00ac\n the_title description \u00ac\n the_desc application name scriptName\n -- \u5c1d\u8bd5\u4f7f\u7528\u6b4c\u66f2\u5c01\u9762\u4f5c\u4e3aGrowl\u56fe\u6807\u51fa\u9519\n end tell\nend growlNotify\nend script\n \ntell application \"iTunes\"\nif selection is {} then\n tell growl to growlNotify(\"\", \"\", STATUS_LYRIC_UNSELECTED)\n return\nend if\nset k to count (item of selection)\nset i to 1\nrepeat\n set theTrack to (item i of selection)\n set this_artist to (get artist of theTrack)\n set this_title to (get name of theTrack)\n set this_lyric to (get lyrics of theTrack)\n -- set this_artwork to data of artwork 1 of theTrack\n \n set fetch_status to STATUS_LYRIC_FAIL\n \n if length of this_lyric < 1 then\n -- \u53ea\u6709\u5f53\u6b4c\u66f2\u4e2d\u672a\u5b58\u5728\u6b4c\u8bcd\u65f6\u624d\u5c1d\u8bd5\u83b7\u53d6\u6b4c\u8bcd\n set requestData to \"title=\" & this_title & \"&artist=\" & this_artist\n set songLyrics to do shell script \"curl -d '\" & requestData & \"' \" & baseURL\n if length of songLyrics > 1 then\n -- \u6b4c\u8bcd\u6210\u529f\u83b7\u53d6\n set lyrics of theTrack to songLyrics\n set fetch_status to STATUS_LYRIC_SUCCESS\n end if\n else\n set fetch_status to STATUS_LYRIC_EXIST\n end if\n \n tell growl to growlNotify(this_artist, this_title, fetch_status)\n \n set i to i + 1\n if i > k then exit repeat\nend repeat\n-- \u5982\u679cGrowl\u672a\u8fd0\u884c\u5219\u663e\u793a\u5bf9\u8bdd\u6846\nif isGrowlRunning = false then\n display dialog return & \"\u6b4c\u8bcd\u83b7\u53d6\u7ed3\u675f\uff01\" buttons {\"\u786e\u5b9a\"} default button 1 with icon 1 giving up after 5 with title scriptName\nend if\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9d7101c774d71f82da68f2ef91982e9a8f956ebb","subject":"[NEW] --log-command model comment option for when you want to see the executed mogenerator invocation in Console.app.","message":"[NEW] --log-command model comment option for when you want to see the executed mogenerator invocation in Console.app.","repos":"bewebste\/mogenerator,otaran\/mogenerator,Erin-Mounts\/mogenerator,kostiakoval\/mogenerator,mjasa\/mogenerator,skywinder\/mogenerator,iv-mexx\/mogenerator,bgulanowski\/mogenerator,willowtreeapps\/mattgenerator,ef-ctx\/mogenerator,skywinder\/mogenerator,willowtreeapps\/mattgenerator,fizker\/mogenerator,iv-mexx\/mogenerator,VladimirGoncharov\/mogenerator,iv-mexx\/mogenerator,otaran\/mogenerator,bgulanowski\/mogenerator,anton-matosov\/mogenerator,untitledstartup\/mogenerator,casademora\/mogenerator,pronebird\/mogenerator,fizker\/mogenerator,seanm\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,hardikdevios\/mogenerator,pronebird\/mogenerator,iv-mexx\/mogenerator,willowtreeapps\/mattgenerator,seanm\/mogenerator,kostiakoval\/mogenerator,bewebste\/mogenerator,anton-matosov\/mogenerator,pronebird\/mogenerator,anton-matosov\/mogenerator,skywinder\/mogenerator,ef-ctx\/mogenerator,adozenlines\/mogenerator,mjasa\/mogenerator,seanm\/mogenerator,otaran\/mogenerator,rentzsch\/mogenerator,fizker\/mogenerator,casademora\/mogenerator,rentzsch\/mogenerator,ef-ctx\/mogenerator,adozenlines\/mogenerator,Erin-Mounts\/mogenerator,bewebste\/mogenerator,hardikdevios\/mogenerator,rentzsch\/mogenerator,VladimirGoncharov\/mogenerator,VladimirGoncharov\/mogenerator,casademora\/mogenerator,untitledstartup\/mogenerator,Erin-Mounts\/mogenerator,hardikdevios\/mogenerator,bgulanowski\/mogenerator,bewebste\/mogenerator,untitledstartup\/mogenerator,mjasa\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n\nproperty ASDScriptUniqueIdentifier : \"Xmod.applescript\"\n","old_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif (length of the characters of theParagraph) is greater than 2 then\n\t\t\t\t\t\tset theToken to the first character of theParagraph & the second character of theParagraph\n\t\t\t\t\t\tif theToken is \"--\" then\n\t\t\t\t\t\t\tif ((offset of \"--human-dir \" in theParagraph) = 0) and ((offset of \"--machine-dir \" in theParagraph) = 0) and ((offset of \"--output-dir \" in theParagraph) = 0) then\n\t\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n\nproperty ASDScriptUniqueIdentifier : \"Xmod.applescript\"\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f4de3905901eea9e512ab6a3429bdff9ce806a3e","subject":"Fix: Bad log file header can corrupt category lists","message":"Fix: Bad log file header can corrupt category lists\n\nIf there are less than four header delimiters (80 hash characters) the\nscript could end up parsing the web page records as categories, thus\ncorrupting the category lists. This fixes that by ignoring file headers\nthat don't contain exactly four header delimiters.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-01\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror -- bad or missing file header\n\t\t\t\t\tend if\n\t\t\t\ton error -- use default categories\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-01\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f26210bedca6c0696988d55564d89da2a6932fe9","subject":"Fix the Automator action. The ?in bundle with identifier? parameter doesn't exist on my 10.5.5 machine (for some reason, even though the AppleScript Studio Release Notes claim it has since Tiger), which breaks compilation of the action's main script. We don't call the function that uses that phantom parameter, anyway, so I fixed the problem by simply axing the function.","message":"Fix the Automator action. The ?in bundle with identifier? parameter doesn't exist on my 10.5.5 machine (for some reason, even though the AppleScript Studio Release Notes claim it has since Tiger), which breaks compilation of the action's main script. We don't call the function that uses that phantom parameter, anyway, so I fixed the problem by simply axing the function.\n","repos":"timbck2\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,nochkin\/growl,nochkin\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,nochkin\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,CarlosCD\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,ylian\/growl,nagyistoce\/growl,nagyistoce\/growl,nagyistoce\/growl,tectronics\/growl,chashion\/growl,an0nym0u5\/growl,ylian\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,timbck2\/growl,ylian\/growl,Shalaco\/shalzers-growl,tectronics\/growl,nochkin\/growl,nagyistoce\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,timbck2\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,ylian\/growl,timbck2\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,SalrJupiter\/growl,an0nym0u5\/growl,tectronics\/growl,xhruso00\/growl,xhruso00\/growl,tectronics\/growl,tectronics\/growl,nochkin\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,timbck2\/growl,chashion\/growl,chashion\/growl,chashion\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,CarlosCD\/growl,nkhorman\/archive-growl,CarlosCD\/growl,xhruso00\/growl","old_file":"Extras\/GrowlAction\/main.applescript","new_file":"Extras\/GrowlAction\/main.applescript","new_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (|notificationDescription| of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n","old_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (|notificationDescription| of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"913f8dea1b8fc2b131ac03808701f47c5bd80868","subject":"Fix the Automator action. The \u201cin bundle with identifier\u201d parameter doesn't exist on my 10.5.5 machine (for some reason, even though the AppleScript Studio Release Notes claim it has since Tiger), which breaks compilation of the action's main script. We don't call the function that uses that phantom parameter, anyway, so I fixed the problem by simply axing the function.","message":"Fix the Automator action. The \u201cin bundle with identifier\u201d parameter doesn't exist on my 10.5.5 machine (for some reason, even though the AppleScript Studio Release Notes claim it has since Tiger), which breaks compilation of the action's main script. We don't call the function that uses that phantom parameter, anyway, so I fixed the problem by simply axing the function.\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Extras\/GrowlAction\/main.applescript","new_file":"Extras\/GrowlAction\/main.applescript","new_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (|notificationDescription| of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n","old_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (|notificationDescription| of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c0bacff63fd6cf71a64b6d35583ad65d879b785b","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"066cb05f8e7dbbbfc1d91346d12fd995eba973bb","subject":"[TIMOB-11554] wait for Organizer window to open","message":"[TIMOB-11554] wait for Organizer window to open","repos":"KoketsoMabuela92\/titanium_mobile,linearhub\/titanium_mobile,hieupham007\/Titanium_Mobile,indera\/titanium_mobile,peymanmortazavi\/titanium_mobile,csg-coder\/titanium_mobile,indera\/titanium_mobile,falkolab\/titanium_mobile,jvkops\/titanium_mobile,sriks\/titanium_mobile,ashcoding\/titanium_mobile,csg-coder\/titanium_mobile,AngelkPetkov\/titanium_mobile,mano-mykingdom\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,kopiro\/titanium_mobile,ashcoding\/titanium_mobile,linearhub\/titanium_mobile,bright-sparks\/titanium_mobile,AngelkPetkov\/titanium_mobile,FokkeZB\/titanium_mobile,cheekiatng\/titanium_mobile,smit1625\/titanium_mobile,peymanmortazavi\/titanium_mobile,csg-coder\/titanium_mobile,benbahrenburg\/titanium_mobile,jvkops\/titanium_mobile,formalin14\/titanium_mobile,bhatfield\/titanium_mobile,collinprice\/titanium_mobile,KangaCoders\/titanium_mobile,shopmium\/titanium_mobile,linearhub\/titanium_mobile,shopmium\/titanium_mobile,emilyvon\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,emilyvon\/titanium_mobile,bright-sparks\/titanium_mobile,peymanmortazavi\/titanium_mobile,pinnamur\/titanium_mobile,pinnamur\/titanium_mobile,KangaCoders\/titanium_mobile,AngelkPetkov\/titanium_mobile,jhaynie\/titanium_mobile,prop\/titanium_mobile,jvkops\/titanium_mobile,smit1625\/titanium_mobile,perdona\/titanium_mobile,kopiro\/titanium_mobile,rblalock\/titanium_mobile,pinnamur\/titanium_mobile,falkolab\/titanium_mobile,bhatfield\/titanium_mobile,prop\/titanium_mobile,csg-coder\/titanium_mobile,pec1985\/titanium_mobile,collinprice\/titanium_mobile,linearhub\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,kopiro\/titanium_mobile,benbahrenburg\/titanium_mobile,kopiro\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,formalin14\/titanium_mobile,mvitr\/titanium_mobile,linearhub\/titanium_mobile,prop\/titanium_mobile,jhaynie\/titanium_mobile,bright-sparks\/titanium_mobile,emilyvon\/titanium_mobile,rblalock\/titanium_mobile,indera\/titanium_mobile,openbaoz\/titanium_mobile,pinnamur\/titanium_mobile,smit1625\/titanium_mobile,ashcoding\/titanium_mobile,collinprice\/titanium_mobile,hieupham007\/Titanium_Mobile,smit1625\/titanium_mobile,peymanmortazavi\/titanium_mobile,emilyvon\/titanium_mobile,mano-mykingdom\/titanium_mobile,taoger\/titanium_mobile,sriks\/titanium_mobile,cheekiatng\/titanium_mobile,FokkeZB\/titanium_mobile,kopiro\/titanium_mobile,jvkops\/titanium_mobile,peymanmortazavi\/titanium_mobile,openbaoz\/titanium_mobile,indera\/titanium_mobile,ashcoding\/titanium_mobile,falkolab\/titanium_mobile,prop\/titanium_mobile,mano-mykingdom\/titanium_mobile,indera\/titanium_mobile,perdona\/titanium_mobile,mvitr\/titanium_mobile,perdona\/titanium_mobile,ashcoding\/titanium_mobile,openbaoz\/titanium_mobile,csg-coder\/titanium_mobile,shopmium\/titanium_mobile,linearhub\/titanium_mobile,collinprice\/titanium_mobile,mvitr\/titanium_mobile,openbaoz\/titanium_mobile,jhaynie\/titanium_mobile,prop\/titanium_mobile,collinprice\/titanium_mobile,KangaCoders\/titanium_mobile,smit1625\/titanium_mobile,pinnamur\/titanium_mobile,benbahrenburg\/titanium_mobile,linearhub\/titanium_mobile,benbahrenburg\/titanium_mobile,collinprice\/titanium_mobile,emilyvon\/titanium_mobile,jhaynie\/titanium_mobile,mano-mykingdom\/titanium_mobile,peymanmortazavi\/titanium_mobile,emilyvon\/titanium_mobile,taoger\/titanium_mobile,kopiro\/titanium_mobile,rblalock\/titanium_mobile,ashcoding\/titanium_mobile,AngelkPetkov\/titanium_mobile,benbahrenburg\/titanium_mobile,taoger\/titanium_mobile,falkolab\/titanium_mobile,perdona\/titanium_mobile,jvkops\/titanium_mobile,csg-coder\/titanium_mobile,mvitr\/titanium_mobile,pec1985\/titanium_mobile,AngelkPetkov\/titanium_mobile,jhaynie\/titanium_mobile,csg-coder\/titanium_mobile,hieupham007\/Titanium_Mobile,FokkeZB\/titanium_mobile,jhaynie\/titanium_mobile,FokkeZB\/titanium_mobile,pec1985\/titanium_mobile,pinnamur\/titanium_mobile,KangaCoders\/titanium_mobile,pinnamur\/titanium_mobile,sriks\/titanium_mobile,mvitr\/titanium_mobile,FokkeZB\/titanium_mobile,jvkops\/titanium_mobile,pinnamur\/titanium_mobile,shopmium\/titanium_mobile,collinprice\/titanium_mobile,formalin14\/titanium_mobile,rblalock\/titanium_mobile,bhatfield\/titanium_mobile,mano-mykingdom\/titanium_mobile,sriks\/titanium_mobile,benbahrenburg\/titanium_mobile,taoger\/titanium_mobile,KangaCoders\/titanium_mobile,openbaoz\/titanium_mobile,formalin14\/titanium_mobile,falkolab\/titanium_mobile,benbahrenburg\/titanium_mobile,bright-sparks\/titanium_mobile,jhaynie\/titanium_mobile,perdona\/titanium_mobile,peymanmortazavi\/titanium_mobile,ashcoding\/titanium_mobile,pec1985\/titanium_mobile,indera\/titanium_mobile,kopiro\/titanium_mobile,pec1985\/titanium_mobile,KangaCoders\/titanium_mobile,jvkops\/titanium_mobile,bhatfield\/titanium_mobile,smit1625\/titanium_mobile,bhatfield\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,bright-sparks\/titanium_mobile,falkolab\/titanium_mobile,KangaCoders\/titanium_mobile,hieupham007\/Titanium_Mobile,AngelkPetkov\/titanium_mobile,bhatfield\/titanium_mobile,kopiro\/titanium_mobile,taoger\/titanium_mobile,mvitr\/titanium_mobile,formalin14\/titanium_mobile,hieupham007\/Titanium_Mobile,shopmium\/titanium_mobile,cheekiatng\/titanium_mobile,ashcoding\/titanium_mobile,prop\/titanium_mobile,FokkeZB\/titanium_mobile,cheekiatng\/titanium_mobile,falkolab\/titanium_mobile,prop\/titanium_mobile,taoger\/titanium_mobile,KangaCoders\/titanium_mobile,pec1985\/titanium_mobile,mano-mykingdom\/titanium_mobile,AngelkPetkov\/titanium_mobile,mvitr\/titanium_mobile,shopmium\/titanium_mobile,pinnamur\/titanium_mobile,FokkeZB\/titanium_mobile,bright-sparks\/titanium_mobile,openbaoz\/titanium_mobile,cheekiatng\/titanium_mobile,rblalock\/titanium_mobile,formalin14\/titanium_mobile,prop\/titanium_mobile,hieupham007\/Titanium_Mobile,KoketsoMabuela92\/titanium_mobile,rblalock\/titanium_mobile,jvkops\/titanium_mobile,mvitr\/titanium_mobile,cheekiatng\/titanium_mobile,sriks\/titanium_mobile,csg-coder\/titanium_mobile,shopmium\/titanium_mobile,indera\/titanium_mobile,emilyvon\/titanium_mobile,bhatfield\/titanium_mobile,benbahrenburg\/titanium_mobile,AngelkPetkov\/titanium_mobile,rblalock\/titanium_mobile,sriks\/titanium_mobile,linearhub\/titanium_mobile,bhatfield\/titanium_mobile,indera\/titanium_mobile,hieupham007\/Titanium_Mobile,smit1625\/titanium_mobile,perdona\/titanium_mobile,mano-mykingdom\/titanium_mobile,bright-sparks\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,sriks\/titanium_mobile,smit1625\/titanium_mobile,shopmium\/titanium_mobile,pec1985\/titanium_mobile,rblalock\/titanium_mobile,hieupham007\/Titanium_Mobile,formalin14\/titanium_mobile,jhaynie\/titanium_mobile,cheekiatng\/titanium_mobile,FokkeZB\/titanium_mobile,pec1985\/titanium_mobile,bright-sparks\/titanium_mobile,peymanmortazavi\/titanium_mobile,openbaoz\/titanium_mobile,cheekiatng\/titanium_mobile,sriks\/titanium_mobile,openbaoz\/titanium_mobile,taoger\/titanium_mobile,pec1985\/titanium_mobile,mano-mykingdom\/titanium_mobile,formalin14\/titanium_mobile,perdona\/titanium_mobile,perdona\/titanium_mobile,collinprice\/titanium_mobile,emilyvon\/titanium_mobile,taoger\/titanium_mobile,falkolab\/titanium_mobile","old_file":"support\/iphone\/xcode_organizer.scpt","new_file":"support\/iphone\/xcode_organizer.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000T\u0000N\nOpen organizer script. Descended from apple's \"Probe Menu Bar\" sample script\n\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000\n\u0000O\u0000p\u0000e\u0000n\u0000 \u0000o\u0000r\u0000g\u0000a\u0000n\u0000i\u0000z\u0000e\u0000r\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0000 \u0000D\u0000e\u0000s\u0000c\u0000e\u0000n\u0000d\u0000e\u0000d\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000a\u0000p\u0000p\u0000l\u0000e\u0000'\u0000s\u0000 \u0000\"\u0000P\u0000r\u0000o\u0000b\u0000e\u0000 \u0000M\u0000e\u0000n\u0000u\u0000 \u0000B\u0000a\u0000r\u0000\"\u0000 \u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000\u0000\u000f\u0000\u0010\u0000\u0011\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\b\n\u0000\u0004\nuien\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u000b\u0000\u0000\u0012\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0000\u0000\u000b\u0000\u000b\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u00001\u0000+tell application xcode_app_name to activate\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000V\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000x\u0000c\u0000o\u0000d\u0000e\u0000_\u0000a\u0000p\u0000p\u0000_\u0000n\u0000a\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002\u0000\u0014\u0000\u0002\u0000\u0018\r\u0000\u0018\u0000\u0002O\u0000\u0000\u0000\u000b\u0000\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0012\u0000\u0000\u001b\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bboovtrue\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npisf\u0002\u0000\u001d\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000\u0018\u0000\"\u0000\"\u0000#\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0010\u0000utxt\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0000\u0002\u00002\u0006\u0000#\u0000\u0003\u0000&\n\u0000\u0004\nfaal\r\u0000&\u0000\u0001J\u0000\u0000\u0000\u001a\u0000\u001e\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\b\u000beMdsKsft\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000!\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001T\u0000\u0000\u0000#\u0000P\u0000-\r\u0000-\u0000\u0001k\u0000\u0000\u0000(\u0000K\u0000.\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003Q\u0000\u0000\u0000(\u0000E\u00001\u00002\r\u00001\u0000\u0004Z\u0000\u0001\u0000+\u0000<\u00003\u00004\r\u00003\u0000\u0002@\u0000\u0001\u0000+\u00004\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0005\u0000+\u00002\u00007\r\u00007\u0000\u0003I\u0000\u0001\u0000+\u00002\u00008\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00008\u0000\u00012\u0000\u0001\u0000+\u0000.\n\u0000\u0004\ncwin\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00006\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r\u00004\u0000\u0000S\u0000\u0000\u00007\u00008\u0002\u0000\u0000\u0001\u0000\u0000\r\u00002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u00000\u0000\u0002\u00009\r\u00009\u0000\u0003I\u0000\u0002\u0000F\u0000K\u0000:\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000:\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000;\b\u0000;\u0000\b?\u0259\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u0000Q\u0000Y\u0000>\u0000?\r\u0000>\u0000\u00024\u0000\u0000\u0000Q\u0000U\u0000@\n\u0000\u0004\ncwin\r\u0000@\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u0000=\u0000\u0002\u0000A\r\u0000A\u0000\u0004Z\u0000\u0000\u0000Z\u0000\u0000B\u0000C\r\u0000B\u0000\u0002>\u0001\u0000\u0000Z\u0000e\u0000D\u0000E\r\u0000D\u0000\u0003l\u0001\u0000\u0000Z\u0000a\u0000F\r\u0000F\u0000\u0002n\u0000\u0000\u0000Z\u0000a\u0000G\u0000H\r\u0000G\u0000\u00011\u0000\u0000\u0000]\u0000a\n\u0000\u0004\ntitl\r\u0000H\u0000\u0001o\u0000\u0000\u0000Z\u0000]\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0000I\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0000(\u0000O\u0000r\u0000g\u0000a\u0000n\u0000i\u0000z\u0000e\u0000r\u0000 \u0000-\u0000 \u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\r\u0000C\u0000\u0001k\u0000\u0000\u0000h\u0000\u0000K\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003I\u0000\u0002\u0000h\u0000{\u0000N\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000N\u0000\u0002n\u0000\u0000\u0000h\u0000w\u0000O\u0000P\r\u0000O\u0000\u00024\u0000\u0000\u0000p\u0000w\u0000Q\n\u0000\u0004\nbutT\r\u0000Q\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000R\u000e\u0000R\u0000\u0001\u0000S\u0011\u0000S\u0000\u0010\u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\r\u0000P\u0000\u0002n\u0000\u0000\u0000h\u0000p\u0000T\u0000U\r\u0000T\u0000\u00024\u0000\u0000\u0000k\u0000p\u0000V\n\u0000\u0004\ntbar\r\u0000V\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0003\u0000\u0001\r\u0000U\u0000\u0001o\u0000\u0000\u0000h\u0000k\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u0000\u0000\u0002\u0000M\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0002\u0000|\u0000\u0000Y\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000Y\u0000\u0001m\u0000\u0000\u0000|\u0000\u0000Z\b\u0000Z\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000X\u0000\u0002\u0000[\r\u0000[\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\\\u0000]\r\u0000\\\u0000\u00024\u0000\u0000\u0000\u0000\u0000^\n\u0000\u0004\ncwin\r\u0000^\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u000b\u0000\u000f\u0000_\n\u0000\u0004\nprcs\r\u0000_\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000\n\u0000X\u0000c\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0002O\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000d\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00024\u0000\u0000\u0000\u0000\u0000k\n\u0000\u0004\nxppb\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0000\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000H\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000.\u0000u\u0000n\u0000i\u0000v\u0000e\u0000r\u0000s\u0000a\u0000l\u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\r\u0000j\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nxpcp\u0002\u0000h\u0000\u0002\u0000n\r\u0000n\u0000\u0003I\u0000\u0002\u0000\u0000\u0000o\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000o\u0000\u0001m\u0000\u0000\u0000\u0000\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0000U\u0000I\u0000 \u0000e\u0000l\u0000e\u0000m\u0000e\u0000n\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000.\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000\"\u0000E\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000s\u0000s\u0000i\u0000s\u0000t\u0000i\u0000v\u0000e\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0000\u0000r\u000f\u0000r\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sprf\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001~\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002}H+\u0000\u0000\u0000\u0000\u0000\u0016System Preferences.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(?\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00003\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000(\f\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u00001Macintosh HD:Applications:\u0000System Preferences.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/System Preferences.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000s\u000f\u0000s\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002}H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000 PB\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000w\u0000\u0000\u0000v\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000t\r\u0000t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000u\u0000v\u0001\u0000\u0000\u0010\u0000u\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000v\u0000\u0007\u0010\u0000w\u0000x\u0000y\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000z\u0002\u0000z\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000x\u0000\u0000\u0010\u0000y\u0000\u001f\u0000s\u0000`\u0000$\u0000;\u0000I\u0000R\u0000Z\u0000r\u0000l\u0000p\n\u0000\u0004\nuien\n\u0000\u0004\nprcs\n\u0000\u0004\npisf\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKsft\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0010\u0000utxt\n\u0000\u0004\ncwin\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\r0\u0000\torganizer\u0000\u0000\n\u0000\u0004\ntitl\n\u0000\u0004\ntbar\n\u0000\u0004\nbutT\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nxppb\n\u0000\u0004\nxpcp\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0012\u0000*,E\u001d\u0000*\/\u0012\u0000e*,FOlvl\f\u0000\tO\u0017\u0000,hZ\u0014\u0000\u0016*-j\f\u0000\u000bk\u0003\u001d\u0000\u0006\u0016Y\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhOj\f\u0000\u000f[OYO*k\/E`\u0000\u0010O_\u0000\u0010a\u0000\u0011,a\u0000\u0012\u0001\u001d\u0000)_\u0000\u0010a\u0000\u0013k\/a\u0000\u0014a\u0000\u0015\/j\f\u0000\u0016Oa\u0000\u0017j\f\u0000\u000fO*k\/E`\u0000\u0010Y\u0000\u0003hUY\u0000%a\u0000\u0018\u0012\u0000\u001e*j\f\u0000\u0019O*a\u0000\u001aa\u0000\u001b\/*a\u0000\u001c,FOa\u0000\u001dj\f\u0000\u001eUU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000T\u0000N\nOpen organizer script. Descended from apple's \"Probe Menu Bar\" sample script\n\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000\n\u0000O\u0000p\u0000e\u0000n\u0000 \u0000o\u0000r\u0000g\u0000a\u0000n\u0000i\u0000z\u0000e\u0000r\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0000 \u0000D\u0000e\u0000s\u0000c\u0000e\u0000n\u0000d\u0000e\u0000d\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000a\u0000p\u0000p\u0000l\u0000e\u0000'\u0000s\u0000 \u0000\"\u0000P\u0000r\u0000o\u0000b\u0000e\u0000 \u0000M\u0000e\u0000n\u0000u\u0000 \u0000B\u0000a\u0000r\u0000\"\u0000 \u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000\u0000\u000f\u0000\u0010\u0000\u0011\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\b\n\u0000\u0004\nuien\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u000b\u0000[\u0000\u0012\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0000\u0000\u000b\u0000\u000b\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u00001\u0000+tell application xcode_app_name to activate\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000V\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000x\u0000c\u0000o\u0000d\u0000e\u0000_\u0000a\u0000p\u0000p\u0000_\u0000n\u0000a\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002\u0000\u0014\u0000\u0002\u0000\u0018\r\u0000\u0018\u0000\u0002O\u0000\u0000\u0000\u000b\u0000[\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0012\u0000Z\u0000\u001b\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bboovtrue\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npisf\u0002\u0000\u001d\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000\u0018\u0000\"\u0000\"\u0000#\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0010\u0000utxt\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0000\u0002\u00002\u0006\u0000#\u0000\u0003\u0000&\n\u0000\u0004\nfaal\r\u0000&\u0000\u0001J\u0000\u0000\u0000\u001a\u0000\u001e\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\b\u000beMdsKsft\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000!\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000#\u0000(\u0000-\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000-\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000.\b\u0000.\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000)\u0000\/\u00001\u00002\r\u00001\u0000\u00024\u0000\u0000\u0000)\u0000-\u00003\n\u0000\u0004\ncwin\r\u00003\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u00000\u0000\u0002\u00004\r\u00004\u0000\u0004Z\u0000\u0000\u00000\u0000Z\u00005\u00006\r\u00005\u0000\u0002>\u0001\u0000\u00000\u00005\u00007\u00008\r\u00007\u0000\u0003l\u0001\u0000\u00000\u00003\u00009\r\u00009\u0000\u0002n\u0000\u0000\u00000\u00003\u0000:\u0000;\r\u0000:\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\ntitl\r\u0000;\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00008\u0000\u0001m\u0000\u0000\u00003\u00004\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000(\u0000O\u0000r\u0000g\u0000a\u0000n\u0000i\u0000z\u0000e\u0000r\u0000 \u0000-\u0000 \u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\r\u00006\u0000\u0001k\u0000\u0000\u00008\u0000V\u0000>\u0002\u0000>\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0002\u00008\u0000I\u0000A\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000A\u0000\u0002n\u0000\u0000\u00008\u0000E\u0000B\u0000C\r\u0000B\u0000\u00024\u0000\u0000\u0000>\u0000E\u0000D\n\u0000\u0004\nbutT\r\u0000D\u0000\u0001m\u0000\u0000\u0000A\u0000D\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0010\u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\r\u0000C\u0000\u0002n\u0000\u0000\u00008\u0000>\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u00009\u0000>\u0000I\n\u0000\u0004\ntbar\r\u0000I\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003\u0000\u0001\r\u0000H\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0002\u0000J\u0000O\u0000L\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000L\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0000M\b\u0000M\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000N\r\u0000N\u0000\u0002r\u0000\u0000\u0000P\u0000V\u0000O\u0000P\r\u0000O\u0000\u00024\u0000\u0000\u0000P\u0000T\u0000Q\n\u0000\u0004\ncwin\r\u0000Q\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0003\u0000\u0001\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u000b\u0000\u000f\u0000R\n\u0000\u0004\nprcs\r\u0000R\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000S\u000e\u0000S\u0000\u0001\u0000T\u0011\u0000T\u0000\n\u0000X\u0000c\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0002O\u0000\u0000\u0000^\u0000\u0000U\u0000V\r\u0000U\u0000\u0001k\u0000\u0000\u0000d\u0000\u0000W\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003I\u0000\u0002\u0000d\u0000i\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000j\u0000x\u0000\\\u0000]\r\u0000\\\u0000\u00024\u0000\u0000\u0000j\u0000r\u0000^\n\u0000\u0004\nxppb\r\u0000^\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0000_\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u0000H\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000.\u0000u\u0000n\u0000i\u0000v\u0000e\u0000r\u0000s\u0000a\u0000l\u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\r\u0000]\u0000\u00011\u0000\u0000\u0000r\u0000w\n\u0000\u0004\nxpcp\u0002\u0000[\u0000\u0002\u0000a\r\u0000a\u0000\u0003I\u0000\u0002\u0000y\u0000\u0000b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000b\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000\u0000U\u0000I\u0000 \u0000e\u0000l\u0000e\u0000m\u0000e\u0000n\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000.\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000\"\u0000E\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000s\u0000s\u0000i\u0000s\u0000t\u0000i\u0000v\u0000e\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000V\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000e\u000f\u0000e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sprf\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001n\u0000\u0002\u0000\u0001\u0007Mac SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000G5\u0016H+\u0000\u0000\u0000\u0000\u0000j\u0016System Preferences.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00036S\u0007\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000G\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000j\u0000\u0002\u0000,Mac SSD:Applications:\u0000System Preferences.app\u0000\u000e\u0000.\u0000\u0016\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000M\u0000a\u0000c\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000#Applications\/System Preferences.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000f\u000f\u0000f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007Mac SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000G5\u0016H+\u0000\u0000\u0000\u0000\u0000M\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00030\u0007Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000G\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000M\u0000\u0000\u0000G\u0000\u0000\u0000F\u0000\u0002\u00008Mac SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000M\u0000a\u0000c\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000g\r\u0000g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000h\u0000i\u0000j\u0001\u0000\u0000\u0010\u0000h\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\r0\u0000\torganizer\u0000\u0000\u000e\u0000i\u0000\u0007\u0010\u0000k\u0000l\u0000m\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000k\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000n\u0002\u0000n\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000l\u0000\u0000\u0010\u0000m\u0000\u001b\u0000f\u0000S\u0000$\u0000.\u0000<\u0000E\u0000e\u0000_\u0000c\n\u0000\u0004\nuien\n\u0000\u0004\nprcs\n\u0000\u0004\npisf\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKsft\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0010\u0000utxt\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\ncwin\u000b\u0000\r0\u0000\torganizer\u0000\u0000\n\u0000\u0004\ntitl\n\u0000\u0004\ntbar\n\u0000\u0004\nbutT\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nxppb\n\u0000\u0004\nxpcp\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0012\u0000*,E\u001d\u0000U*\/\u0012\u0000Je*,FOlvl\f\u0000\tOj\f\u0000\u000bO*k\/EO,\u0001\u001d\u0000#a\u0000\u0010k\/a\u0000\u0011a\u0000\u0012\/j\f\u0000\u0013Oj\f\u0000\u000bO*k\/EY\u0000\u0003hUY\u0000%a\u0000\u0014\u0012\u0000\u001e*j\f\u0000\u0015O*a\u0000\u0016a\u0000\u0017\/*a\u0000\u0018,FOa\u0000\u0019j\f\u0000\u001aUU\u000f\u000e\u0000j\u0000\u0001\u0014\u0000o\u000e\u0000o\u0000\u0003\u0018\u0000p\u0000q\u000e\u0000p\u0000\u0003\u0018\u0000f\u0000r\n\u0000\u0004\npcap\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\n\u0000X\u0000c\u0000o\u0000d\u0000e\n\u0000\u0004\ncwin\u000e\u0000q\u0000\u0001\u0000t\u0011\u0000t\u0000(\u0000O\u0000r\u0000g\u0000a\u0000n\u0000i\u0000z\u0000e\u0000r\u0000 \u0000-\u0000 \u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"1f58ca688fd098222fd21d951ea7aa15e87cf0ea","subject":"Set terminal font to source code pro.","message":"Set terminal font to source code pro.\n","repos":"adriantrunzo\/dotfiles","old_file":"setup\/set-terminal-theme.applescript","new_file":"setup\/set-terminal-theme.applescript","new_contents":"(* This script is adapted from\n https:\/\/github.com\/mathiasbynens\/dotfiles\/blob\/master\/.macos.\n\n I have mainly added more explicit handling of the path to the custom theme\n file and the ability to set the font. *)\n\ntell application \"Terminal\"\n\n local allOpenedWindows\n local initialOpenedWindows\n local windowID\n\n (* Set the fully qualified path to the .terminal file. We'll need to\n refer to the theme name separately though. *)\n set themeName to \"Solarized Dark\"\n set themePath to (system attribute \"HOME\") & \"\/.config\/themes\/osx-terminal.app-colors-solarized\/\"\n set themeFile to themePath & themeName & \".terminal\"\n\n (* Set our desired font. *)\n set fontName to \"SourceCodePro-Regular\"\n set fontSize to 12\n\n (* Store the IDs of all the open terminal windows. *)\n set initialOpenedWindows to id of every window\n\n (* Open the custom theme so that it gets added to the list of available\n terminal themes. Note: this will open an additional terminal window. *)\n do shell script \"open '\" & themeFile & \"'\"\n\n (* Wait a little bit to ensure that the custom theme is added. *)\n delay 1\n\n (* Modify the custom theme to set our desired font. *)\n set font name of settings set themeName to fontName\n set font size of settings set themeName to fontSize\n\n (* Set the custom theme as the default terminal theme. *)\n set default settings to settings set themeName\n\n (* Get the IDs of all the currently opened terminal windows. *)\n set allOpenedWindows to id of every window\n\n repeat with windowID in allOpenedWindows\n\n (* Close the additional windows that were opened in order to add the\n custom theme to the list of terminal themes. *)\n if initialOpenedWindows does not contain windowID then\n close (every window whose id is windowID)\n\n (* Change the theme for the initial opened terminal windows to remove\n the need to close them in order for the custom theme to be applied. *)\n else\n set current settings of tabs of (every window whose id is windowID) to settings set themeName\n end if\n end repeat\nend tell\n","old_contents":"(* This script is adapted from\n https:\/\/github.com\/mathiasbynens\/dotfiles\/blob\/master\/.macos.\n\n I have mainly added more explicit handling of the path to the custom theme\n file and the ability to set the font. *)\n\ntell application \"Terminal\"\n\n local allOpenedWindows\n local initialOpenedWindows\n local windowID\n\n (* Set the fully qualified path to the .terminal file. We'll need to\n refer to the theme name separately though. *)\n set themeName to \"Solarized Dark\"\n set themePath to (system attribute \"HOME\") & \"\/.config\/themes\/osx-terminal.app-colors-solarized\/\"\n set themeFile to themePath & themeName & \".terminal\"\n\n (* Set our desired font. *)\n set fontName to \"SauceCodePowerline-Medium\"\n set fontSize to 12\n\n (* Store the IDs of all the open terminal windows. *)\n set initialOpenedWindows to id of every window\n\n (* Open the custom theme so that it gets added to the list of available\n terminal themes. Note: this will open an additional terminal window. *)\n do shell script \"open '\" & themeFile & \"'\"\n\n (* Wait a little bit to ensure that the custom theme is added. *)\n delay 1\n\n (* Modify the custom theme to set our desired font. *)\n set font name of settings set themeName to fontName\n set font size of settings set themeName to fontSize\n\n (* Set the custom theme as the default terminal theme. *)\n set default settings to settings set themeName\n\n (* Get the IDs of all the currently opened terminal windows. *)\n set allOpenedWindows to id of every window\n\n repeat with windowID in allOpenedWindows\n\n (* Close the additional windows that were opened in order to add the\n custom theme to the list of terminal themes. *)\n if initialOpenedWindows does not contain windowID then\n close (every window whose id is windowID)\n\n (* Change the theme for the initial opened terminal windows to remove\n the need to close them in order for the custom theme to be applied. *)\n else\n set current settings of tabs of (every window whose id is windowID) to settings set themeName\n end if\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"285dc3ae01f3c7aba05dd03136b0520a227a6964","subject":"Create a new tab when iTerm already has a window, otherwise create a new window","message":"Create a new tab when iTerm already has a window, otherwise create a new window\n","repos":"lexrus\/LTFinderButtons","old_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000H\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000G\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\t\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\nCrwn\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003Q\u0000\u0000\u0000\n\u0000*\u0000\u0014\u0000\u0015\u0000\u0016\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\r\u0000\u001b\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u001a\u0000\u0019\n\u0000\u0018.Itrmntwpnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001a\n\u0000\u0004\nNtwp\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u000e\u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0006\u0000\u0000\r\u0000\u0018\u0000\u0003l\u0001\u0000\u0000\r\u0000\u0010\u0000\u001d\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\r\u0000\u0010\n\u0000\u0004\nCrwn\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0015\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002mg\u0000\u0000\u0002\u0000\u0000\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000#\u0000*\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000#\u0000(\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002O\u0000\u0000\u0000+\u0000A\u0000#\u0000$\r\u0000#\u0000\u0003I\u0000\u0002\u00001\u0000@\u0000%\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000%\u0000\u0003\u0000&\n\u0000\u0004\nText\r\u0000&\u0000\u0002b\u0000\u0000\u00003\u0000<\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u00003\u0000:\u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u00003\u00004\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0006\u0000c\u0000d\u0000 \r\u0000*\u0000\u0002n\u0000\u0000\u00004\u00009\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u00007\u00009\n\u0000\u0004\nstrq\r\u0000.\u0000\u0002n\u0000\u0000\u00004\u00007\u0000\/\u00000\r\u0000\/\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npsxp\r\u00000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000(\u0000\u0001m\u0000\u0000\u0000:\u0000;\u00001\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000\u000e\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0006\u0000\u0000\r\u0000$\u0000\u0003l\u0001\u0000\u0000+\u0000.\u00003\r\u00003\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\nWcsn\r\u00005\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000B\u0000G\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00007\u000f\u00007\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002|H+\u0000\u0000\u0000\u0000\u0000G\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001f5q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\t\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\u0001F\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000G\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\r\u0000:\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000<\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u0000=\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002O\u0000\u0000\u0000\u0000\u0000#\u0000@\u0000A\r\u0000@\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000\"\u0000B\u0000C\u0000D\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0011\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000f\u0000G\r\u0000G\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000f\u0000H\u0000I\r\u0000H\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\r\u0000J\u0000K\r\u0000J\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\ncfol\r\u0000K\u0000\u0003l\u0001\u0000\u0000\u0007\u0000\u000b\u0000L\r\u0000L\u0000\u00024\u0001\u0000\u0000\u0007\u0000\u000b\u0000M\n\u0000\u0004\ncwin\r\u0000M\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000I\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000C\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\"\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0005\u0000\u0019\u0000 \u0000P\r\u0000P\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u0000Q\u0000R\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000bafdmdesk\u0006\u0000R\u0000\u0003\u0000S\n\u0000\u0004\nrtyp\r\u0000S\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000T\u000f\u0000T\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002|H+\u0000\u0000\u0000\u0000\u0000'\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002w\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\t\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000o\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000'\u0000\u0000\u0000&\u0000\u0000\u0000%\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000?\u0000\u0002\u0000U\r\u0000U\u0000\u0003I\u0000\u0000\u0000$\u0000*\u0000V\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000V\u0000\u0002\u0000W\r\u0000W\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000X\u0000Y\u0000Z\u0001\u0000\u0000\u0010\u0000X\u0000\u0002\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000Y\u0000\u0007\u0010\u0000\b\u0000[\u0000\\\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u000e\u0000\u0002\u0004\u0000]\u0003\u0000\u0001\u000e\u0000]\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0010\u0000[\u0000\u0003\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u000b\u0000\u00060\u0000\u0002mg\u0000\u0000\u0010\u0000\\\u0000\u0010\u00007\u0000\u001b\u0000+\u00001\n\u0000\u0004\nCrwn\n\u0000\u0004\nNtwp\n\u0000\u0018.Itrmntwpnull\u0000\u0000\u0000\u0000\u0000obj \u000b\u0000\u00060\u0000\u0002mg\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nWcsn\n\u0000\u0004\nText\n\u0000\u0004\npsxp\n\u0000\u0004\nstrq\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000I\u0012\u0000E*,EO\u0014\u0000\u0013*,\u0012\u0000\t*l\f\u0000\u0004UW\u0000\u000eX\u0000\u0005\u0000\u0006*j\f\u0000\u0007EO,\u0012\u0000\u0011*,,%%l\f\u0000\u000eUO*j\f\u0000\u000fU\u000f\u000e\u0000Z\u0000\u0007\u0010\u0000<\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0000\u0010\u0000_\u0000\u000b\u0000T\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0011\u0000+\u0012\u0000 \u0014\u0000\u000f*k\/,&EW\u0000\u0010X\u0000\u0005\u0000\u0006l\f\u0000\tEUO*k+\u0000\n\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000)\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000(\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\f\u0000\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\f\u0000\"\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003I\u0000\u0002\u0000\u0012\u0000!\u0000\u0018\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0018\u0000\u0003\u0000\u0019\n\u0000\u0004\nText\r\u0000\u0019\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001d\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u001d\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001a\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\nstrq\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npsxp\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0000\u000e\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0006\u0000\u0000\r\u0000\u0017\u0000\u0003l\u0001\u0000\u0000\f\u0000\u000f\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\nWcsn\r\u0000(\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000)\r\u0000)\u0000\u0003I\u0000\u0002\u0000#\u0000(\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000*\u000f\u0000*\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0006\u000e\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004b\u0005nA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0006\u000e\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\r\u0000-\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000.\u0000\/\r\u0000.\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\/\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u00000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000#\u00003\u00004\r\u00003\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000\"\u00005\u00006\u00007\r\u00005\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0011\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000f\u0000:\r\u0000:\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000f\u0000;\u0000<\r\u0000;\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\r\u0000=\u0000>\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\ncfol\r\u0000>\u0000\u0003l\u0001\u0000\u0000\u0007\u0000\u000b\u0000?\r\u0000?\u0000\u00024\u0001\u0000\u0000\u0007\u0000\u000b\u0000@\n\u0000\u0004\ncwin\r\u0000@\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000<\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u00006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\"\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0005\u0000\u0019\u0000 \u0000C\r\u0000C\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u0000D\u0000E\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000D\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000bafdmdesk\u0006\u0000E\u0000\u0003\u0000F\n\u0000\u0004\nrtyp\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000G\u000f\u0000G\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0006\u000e\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006w\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000vn\u0000\u0000\u0000\u0001\u0000\f\u0006\u000e\u0006\u000e\u0006\u000e\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00002\u0000\u0002\u0000H\r\u0000H\u0000\u0003I\u0000\u0000\u0000$\u0000*\u0000I\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000I\u0000\u0002\u0000J\r\u0000J\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000K\u0000L\u0000M\u0000N\u0001\u0000\u0000\u0010\u0000K\u0000\u0004\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u000e\u0000L\u0000\u0007\u0010\u0000\b\u0000O\u0000P\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u000e\u0000\u0002\u0004\u0000Q\u0003\u0000\u0001\u000e\u0000Q\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0010\u0000O\u0000\u0002\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0010\u0000P\u0000\n\u0000*\u0000\u001e\u0000$\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nWcsn\n\u0000\u0004\nText\n\u0000\u0004\npsxp\n\u0000\u0004\nstrq\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000*\u0012\u0000&*j\f\u0000\u0001EO,\u0012\u0000\u0011*,,%%l\f\u0000\bUO*j\f\u0000\tU\u000f\u000e\u0000M\u0000\u0007\u0010\u0000\/\u0000R\u0000S\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000R\u0000\u0000\u0010\u0000S\u0000\u000b\u0000G\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0011\u0000+\u0012\u0000 \u0014\u0000\u000f*k\/,&EW\u0000\u0010X\u0000\u0005\u0000\u0006l\f\u0000\tEUO*k+\u0000\n\u000f\u000f\u0000N\u0001d\ralis\u0000\u0000\u0000\u0000\u0001`\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0006\u0005\tzus_parse\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007[\u056a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007Desktop\u0000\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000[e*\u0000\u0000\u0000\u0001\u0000\f\u0006\u0005\u0000\tCg\u0000\u0002\u0000\u0002\u0000+Macintosh HD:Users:\u0000lex:\u0000Desktop:\u0000zus_parse\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000z\u0000u\u0000s\u0000_\u0000p\u0000a\u0000r\u0000s\u0000e\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001bUsers\/lex\/Desktop\/zus_parse\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\n\u0000\u0000\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5f71fcb34e4eaa8873de38d1d9f4dc90d98db70e","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e40b49b761893c611e685ab2f72a35e04964136b","subject":"Updated load order script","message":"Updated load order script\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"Scripts\/load_order.scpt","new_file":"Scripts\/load_order.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"e2cf111ff2f33cfa14146f93d888922ed9ecdd5a","subject":"Updated Snak AppleScript to behave properly for 0.6","message":"Updated Snak AppleScript to behave properly for 0.6\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401899\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Scripts\/Snak\/Growl.scpt","new_file":"Scripts\/Snak\/Growl.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n!\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000 \u001f\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001e\u0001o\u0001p\u0001q\u0001r\u0001\u001e\u0000\u0000\u0010\u0001o\u0000\u0003\u001d\u001c\u001b\u000b\u001d\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001c\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u001b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001p\u0000\u0007\u0010\u001a\u0000\b\u0019\u0018\u0001s\u0001t\u0017\u000b\u001a\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0010\u0001s\u0000\u0001\u0016\u000b\u0016\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001t\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0015\u0000\u001a\u0014\u0013\u0012\u0000 \u0011\u0010\n\u0015\u0000\u0004\nappl\n\u0014\u0000\u0004\nanot\n\u0013\u0000\u0004\ndnot\n\u0012\u0000\u0004\niapp\u0003\u0011\u0000\b\n\u0010\u0000\u0018.registernull\u0000\u0000null\u0011\u0017\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001q\u0000\u0007\u0010\u000f\u0000)\u000e\r\u0001u\u0001v\f\u000b\u000f\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\u000e\u0000\u0002\u0004\u000b\u0001w\u0003\u000b\u0000\u0005\u000e\u0001w\u0000\u0005\u0000\n\t\b\u0007\u0006\u000b\n\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\t\u0000\n0\u0000\u0006source\u0000\u0000\u000b\b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0006\u0000\r0\u0000\tthestring\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001u\u0000\f\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0005\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0004\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0003\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0001\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001v\u0000\u0019\u0000|\u0001x\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001x\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\f\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001r\u0000\u0007\u0010\u0001'\u0001y\u0001z\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001{\u0003\u0000\u0005\u000e\u0001{\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001y\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001z\u0000\u0012\u0000|\u0001x\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000\f\u0000\u001a\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\f\u0000\u001d\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000 \u0001\u0000\u0000\f\u0000 \u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\f\u0000%\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000$\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000(\u0001\u0000\u0000\f\u0000(\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000'\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000+\u0000,\r\u0000+\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000*\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000\/\u00000\r\u0000\/\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000.\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u00005\u0001\u0000\u0000\f\u00005\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u00004\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u00008\u00009\r\u00008\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u00007\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000>\u0001\u0000\u0000\f\u0000>\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000A\u0001\u0000\u0000\f\u0000A\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000D\u0001\u0000\u0000\f\u0000D\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000C\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000M\u0001\u0000\u0000\f\u0000M\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000L\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000R\u0000S\r\u0000R\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000T\u0000U\r\u0000T\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000V\u0000W\r\u0000V\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000W\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000X\n\u0000\u0004\nprcs\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000U\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000Y\u0000Z\r\u0000Y\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000[\u000f\u0000[\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u000b%\nFinder.app\u0620\u00000\b\u00007\u0010\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u0000\u000b%\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004$Je\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u000b%\u0000\u0000\u000b\u001d\u0000\u0000\u000b\u001c\u0000\u0002\u0000.Panther:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000b\u0001\u0000\u0000\f\u0000b\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000e\u0000f\r\u0000e\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000g\u0000h\r\u0000g\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000j\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000k\n\u0000\u0004\nCONN\r\u0000k\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000f\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000l\u000f\u0000l\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000\u000b&\u0004Snakp\r\u0620\u00000\b\u00007\u0010\u0000r,\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001*\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u000b&\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000btM\u0000\/\u0000\r\u0002?\u0001\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004Snak\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tm\u0000\u0000\u0000\u0001\u0000\b\u0000\u000b&\u0000\u0000\u0004g\u0000\u0002\u0000\u001ePanther:Applications:Snak:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000\u0016Applications\/Snak\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000d\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002l\u0000\u0001\u00003\u00003\u0000s\u0001\u0000\u0000\f\u0000s\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000r\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0001\u00003\u00003\u0000v\u0001\u0000\u0000\f\u0000v\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000u\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000y\u0000z\r\u0000y\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000{\u0000|\r\u0000{\u0000\u0002l\u0000\u0005\u00003\u00006\u0000}\r\u0000}\u0000\u0002>\u0001\u0000\u00003\u00006\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000|\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000z\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003~\u0000\u0000\n~\u0000\u0004\ntitl\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\n0\u0000\u0006source\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006target\u0000\u0000\u0006\u0000\u0000\u0003{\u0000\u0000\n{\u0000\u0004\ndesc\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000z\u000bz\u0000\r0\u0000\tthestring\u0000\u0000\u0006\u0000\u0000\u0003y\u0000x\ny\u0000\u0004\niapp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017\/Applications\/Snak\/Snak\u0000\u0002\u0000\u0000\u0006x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0002L\bnull\u0000\u0000\u0000\u0000\u0000a\u0000\u0013\u0012GrowlHelperApp.app\b\u00007\u0010\u0000\u0000\u0000@\u0000\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u0013B\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013D\u00da\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u00004\u001a\u0000\u0000\u0000\u0001\u0000\u001c\u0000\u0013B\u0000\u0013A\u0000\u0013@\u0000\u00129\u0000\u0001mQ\u0000\u0001mP\u0000\u0000]\u0000\u0002\u0000bPanther:Users:justinb:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000ZUsers\/justinb\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002w\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000ts\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000qp\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002r\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000on\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000m\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000l\nl\u0000\b\u000bboovfals\u0002m\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000kj\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000i\u0000\u0001i\u0000\u0000\f\u0000\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000h\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000g\u0000f\u000bg\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000c\u000bc\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005a\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\r0\u0000\tthestring\u0000\u0000\u0002a\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000?\u0001\u0006\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000_^\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000]\u0001\u000b\u0001]\u0000\u0000\f\u0001\u000b\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u00011\u0000\u0000\u0000\b\u0000\n\\\n\\\u0000\u0004\npnam\r\u0001\u0015\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b[\u0001\u0016\n[\u0000\u0004\nprcs\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007Z\u0003Z\u0000\u0001\r\u0001\u0013\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u00011\u0000\u0000\u0000\f\u0000\u000eY\nY\u0000\u0004\npisf\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011X\nX\u0000\b\u000bboovtrue\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000[\u0002\u0001\r\u0000\u0002\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017VU\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001\u001a\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000=\u0001\u001d\u0001\u001eTS\r\u0001\u001d\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001!R\r\u0001!\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001\"\u0001#\r\u0001\"\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018Q\u000bQ\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001#\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001$\f\u0001$\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001R\u0000\u0000\r\u0001 \u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001%P\r\u0001%\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001eO\u000bO\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001'\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\nN\u0000\b\u000bboovfals\u0001P\u0000\u0000\r\u0001\u001e\u0000\u0002O\u0000\u0000\u0000%\u00009\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0000)\u00008ML\u0001*\nM\u0000\u0018.notifygrnull\u0000\u0000null\u0001L\u0000\u0000\u0006\u0001*\u0000\u0003K\u0001+\u0001,\nK\u0000\u0004\ntitl\r\u0001+\u0000\u0002b\u0000\u0000\u0000+\u00000\u0001-\u0001.\r\u0001-\u0000\u0002b\u0000\u0000\u0000+\u0000.\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000+\u0000,J\u000bJ\u0000\n0\u0000\u0006target\u0000\u0000\r\u00010\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00011\f\u00011\u0000\u0007\u0000\u0001:\u0000\u0002\u0000\u0000\r\u0001.\u0000\u0001o\u0000\u0000\u0000.\u0000\/I\u000bI\u0000\n0\u0000\u0006source\u0000\u0000\u0006\u0001,\u0000\u0003H\u00012\u00013\nH\u0000\u0004\ndesc\r\u00012\u0000\u0001o\u0000\u0000\u00001\u00002G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0006\u00013\u0000\u0003F\u00014E\nF\u0000\u0004\niapp\r\u00014\u0000\u0001m\u0000\u0000\u00003\u00004\u00015\f\u00015\u0000\u000e\u0000\bSnak.app\u0000\u0002\u0000\u0000\u0006E\u0000\u0000\r\u0001)\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u00016D\r\u00016\u0000\u0002l\u0000\u0002\u0000>\u0000>CB\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002D\u0000\u0000\u0002h\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004A\u00017\u00018\u00019\u0001A\u0000\u0000\u0010\u00017\u0000\u0002@?\u000b@\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b?\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u00018\u0000\u0007\u0010>\u0000\b=<\u0001:\u0001;;\u000b>\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e=\u0000\u0002\u0004:\u0001<\u0003:\u0000\u0005\u000e\u0001<\u0000\u0005\u000098765\u000b9\u0000\u00070\u0000\u0003con\u0000\u0000\u000b8\u0000\n0\u0000\u0006source\u0000\u0000\u000b7\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b6\u0000\n0\u0000\u0006target\u0000\u0000\u000b5\u0000\r0\u0000\tthestring\u0000\u0000\u0002<\u0000\u0000\u0010\u0001:\u0000\f43210\/.-,+*)\u000b4\u0000\u00070\u0000\u0003con\u0000\u0000\u000b3\u0000\n0\u0000\u0006source\u0000\u0000\u000b2\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b1\u0000\n0\u0000\u0006target\u0000\u0000\u000b0\u0000\r0\u0000\tthestring\u0000\u0000\u000b\/\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b.\u0000\f0\u0000\bkeywords\u0000\u0000\u000b-\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b,\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b+\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b*\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b)\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001;\u0000\u0016\u0000[('\u0001=&\u0000l%$\u0000#\"! \u001f\u0000\u001e\u0000\u001d\u001c\u0000\u001b\u001a\n(\u0000\u0004\nprcs\n'\u0000\u0004\npnam\u000e\u0001=\u0000\u0000\u0013\n&\u0000\u0004\npisf\n%\u0000\u0004\nCONN\n$\u0000\u0004\nNICK\n#\u0000\u0004\nbool\n\"\u0000\u0004\nleng\n!\u0000\u0004\nkocl\n \u0000\u0004\ncobj\n\u001f\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u001e\u0000\u0004\ntitl\n\u001d\u0000\u0004\ndesc\n\u001c\u0000\u0004\niapp\u0003\u001b\u0000\u0006\n\u001a\u0000\u0018.notifygrnull\u0000\u0000null\u0011;\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000t,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u0000#\u0012\u0000\u001b*a\u0000\u0010%%a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014\f\u0000\u0015UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u00019\u0000\u0007\u0010\u0019\u0000\u0018\u0017\u0001>\u0001?\u0016\u000b\u0019\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0018\u0000\u0002\u0004\u0015\u0001@\u0003\u0015\u0000\u0005\u000e\u0001@\u0000\u0005\u0000\u0014\u0013\u0012\u0011\u0010\u000b\u0014\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0013\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0012\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0011\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0010\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0017\u0000\u0000\u0010\u0001>\u0000\u0007\u000f\u000e\r\f\u000b\n\t\u000b\u000f\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u000e\u0000\n0\u0000\u0006source\u0000\u0000\u000b\r\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\f\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\n\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\t\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001?\u0000\u000f\u0000[\b\u0007\u0001=\u0006\u0001$\u0005\u0000\u0004\u00011\u0003\u0002\u00015\u0001\u0000\n\b\u0000\u0004\nprcs\n\u0007\u0000\u0004\npnam\n\u0006\u0000\u0004\npisf\n\u0005\u0000\u0004\nbool\n\u0004\u0000\u0004\ntitl\n\u0003\u0000\u0004\ndesc\n\u0002\u0000\u0004\niapp\u0003\u0001\u0000\u0006\n\u0000\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0016\u0000@\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\u0019\u0012\u0000\u0011*%%\f\u0000\u000eUY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e33f82284f6d4740d517ad38c162de971f99a918","subject":"fix a typo in uninstaller message","message":"fix a typo in uninstaller message\n","repos":"binaryage\/totalfinder-installer","old_file":"Uninstall.applescript","new_file":"Uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher.com not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"055efb05f3055972864c2a378d54185c186e0908","subject":"Solving issue #6. Some minor improvements.","message":"Solving issue #6. Some minor improvements.\n\nThe volume is now being correctly restored when an ad was the last\nthing played by Spotify.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign the result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\n-- Repeat this entire block every .3 seconds. As set at the end.\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying()) then -- Is Spotify running? Is it playing?\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ton error errorNumber\n\t\t\t\t\t\t\t\t-- Checking if Spotify returns \"Cant get current track.\" error. It's being thrown when there's no track after an ad.\n\t\t\t\t\t\t\t\t-- Happens when an ad has played after the last song on the playlist.\n\t\t\t\t\t\t\t\tif (errorNumber = -1728) then\n\t\t\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then -- Check if current track is not an advertisement.\n\t\t\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend if\n\tend try\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level it was before muting.\n\t\t\tset sound volume to volume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(trackPopularity, trackDuration)\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal allLoginItems\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif appName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal posixAppPath\n\ttry\n\t\t-- Get the POSIX (Portable Operating System Interface) path of inputted appPath.\n\t\tset posixAppPath to POSIX path of alias appPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","old_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign the result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\n-- Repeat this entire block every .3 seconds. As set at the end.\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying()) then -- Is Spotify running? Is it playing?\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\tend try\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration) = false) then -- Check if current track is not an advertisement.\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend if\n\tend try\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level it was before muting.\n\t\t\tset sound volume to volume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(trackPopularity, trackDuration)\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal allLoginItems\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif appName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal posixAppPath\n\ttry\n\t\t-- Get the POSIX (Portable Operating System Interface) path of inputted appPath.\n\t\tset posixAppPath to POSIX path of alias appPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"35dbee29edc0d4cd81bdc555b7863d9a9cbf9765","subject":"Don't show bogus out-of-memory error when no artwork is available","message":"Don't show bogus out-of-memory error when no artwork is available\n","repos":"nagyistoce\/growl,ylian\/growl,Shalaco\/shalzers-growl,nochkin\/growl,xhruso00\/growl,tectronics\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,nochkin\/growl,an0nym0u5\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,CarlosCD\/growl,chashion\/growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,xhruso00\/growl,nagyistoce\/growl,xhruso00\/growl,tectronics\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,nochkin\/growl,nochkin\/growl,ylian\/growl,tectronics\/growl,SalrJupiter\/growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,xhruso00\/growl,CarlosCD\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,timbck2\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,chashion\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,an0nym0u5\/growl,xhruso00\/growl,nagyistoce\/growl,xhruso00\/growl,timbck2\/growl,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,an0nym0u5\/growl,tectronics\/growl,morganestes\/morganestes-growl,ylian\/growl,tectronics\/growl,chashion\/growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,timbck2\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,chashion\/growl,nkhorman\/archive-growl,nochkin\/growl,nkhorman\/archive-growl,ylian\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,chashion\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl","old_file":"Examples\/GrowlTunes\/Scripts\/getArtwork.scpt","new_file":"Examples\/GrowlTunes\/Scripts\/getArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000!\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000!\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000 \u0000\u0007\u0000\b\u0000\t\r\u0000\u0007\u0000\u0002@\u0000\u0000\u0000\u0004\u0000\u000e\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\f\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npKnd\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u00024\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\n\u0000\u0004\ncArt\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npTrk\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0000\r\u0000\b\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u001b\u0000\u0011\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0011\u0000\u001a\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\npPCT\r\u0000\u0013\u0000\u0002n\u0000\u0000\u0000\u0011\u0000\u0017\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0016\n\u0000\u0004\ncArt\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0014\n\u0000\u0004\npTrk\u0002\u0000\u0000\r\u0000\t\u0000\u0001L\u0000\u0000\u0000\u001e\u0000 \u0000\u0017\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nnull\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0018\u000f\u0000\u0018\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0000\u00000\b\u00007\u00100 \u0000@\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u000b\u000e(\u0007 P\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0005Shire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016O\u000fH+\u0000\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u037cG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0016O\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0018\u0000\u0002\u0000\u001dShire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000S\u0000h\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0019\u0000\u001a\u0001\u0000\u0000\u0010\u0000\u0019\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u001a\u0000\u0007\u0010\u0000\u001b\u0000\u001c\u0000\u001d\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000!\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001c\u0000\u0000\u0010\u0000\u001d\u0000\u0006\u0000\u0018\n\u0000\u0004\npTrk\n\u0000\u0004\ncArt\n\u0000\u0004\npKnd\n\u0000\u0004\npPCT\n\u0000\u0004\nnull\u0011\u0000\"\u0012\u0000\u001e*,k\/,j\u0003\u001d\u0000\u000f*,k\/,E\u000fY\u0000\u0004\u000fU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000f\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001L\u0000\u0000\u0000\u0004\u0000\u000e\u0000\u0007\r\u0000\u0007\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\r\u0000\b\u0000\t\r\u0000\b\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npPCT\r\u0000\t\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\n\u0000\u000b\r\u0000\n\u0000\u00024\u0000\u0000\u0000\u0007\u0000\n\u0000\f\n\u0000\u0004\ncArt\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\r\u0000\u000b\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npTrk\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000f\u0000\r\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0004\niTunes.app\u0000\u0000P\u00000\u0000\u0000\u0000\u0000@\u0001\u0010\u00000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00007h(.\u0004\u303fhook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FwH+\u0000\u0000\u0000\u0000\u0004\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@T\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000F\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0004\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u000e\u0000\u000f\u0001\u0000\u0000\u0010\u0000\u000e\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u000f\u0000\u0007\u0010\u0000\u0010\u0000\u0011\u0000\u0012\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0013\u0002\u0000\u0013\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0011\u0000\u0000\u0010\u0000\u0012\u0000\u0004\u0000\r\n\u0000\u0004\npTrk\n\u0000\u0004\ncArt\n\u0000\u0004\npPCT\u0011\u0000\u0010\u0012\u0000\f*,k\/,E\u000fU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d3515b5dfc2ab34db4f9db4e554951d214123b8a","subject":"added Escape text for use as FM Calc","message":"added Escape text for use as FM Calc\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.7, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.7 - 2019-03-12 ( eshagdar ): debugMode should be set to false by default. Users can overwrite it if they need to turn it on.\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.7, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.7 - 2019-03-12 ( eshagdar ): debugMode should be set to false by false. Users can overwrite it if they need to turn it on.\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9da6f2fe6e6562bae4cc99de5a6dad09be1c591f","subject":"Simplify return statements in sorting function","message":"Simplify return statements in sorting function\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tif length of theSongs is not greater than 1 then\n\t\t\treturn theSongs\n\t\tend if\n\n\t\tset trackCount to track count of (item 1 of theSongs)\n\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\tif trackCount is 0 or discCount is 0 then\n\t\t\treturn theSongs\n\t\tend if\n\n\t\tset theSongsSorted to {} as list\n\n\t\trepeat with discIndex from 1 to discCount\n\n\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\tif (disc number of theSong is discIndex or (disc number of theSong is 0 and discIndex is 1)) and track number of theSong is songIndex then\n\n\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\tend if\n\n\t\t\t\tend repeat\n\n\t\t\tend repeat\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is not greater than 1 then\n\t\t\treturn theSongsSorted\n\t\tend if\n\n\t\tset trackCount to track count of (item 1 of theSongs)\n\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\tif trackCount is 0 or discCount is 0 then\n\t\t\treturn theSongsSorted\n\t\tend if\n\n\t\tset theSongsSorted to {} as list\n\n\t\trepeat with discIndex from 1 to discCount\n\n\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\tif (disc number of theSong is discIndex or (disc number of theSong is 0 and discIndex is 1)) and track number of theSong is songIndex then\n\n\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\tend if\n\n\t\t\t\tend repeat\n\n\t\t\tend repeat\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2966fe759b00e94ac690059e67c99f1f1789cf1e","subject":"Remove script needed by old Xcode","message":"Remove script needed by old Xcode\n","repos":"drptbl\/Illuminator,drptbl\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,drptbl\/Illuminator,paypal\/Illuminator,paypal\/Illuminator,drptbl\/Illuminator","old_file":"scripts\/choose_sim_device.scpt","new_file":"scripts\/choose_sim_device.scpt","new_contents":"","old_contents":"#!\/usr\/bin\/env osascript\n\n(*\n\nUpdates by Ian Katz for environment variable support (switching Xcodes)\n\nBased on:\n\nCopyright (c) 2012 Jonathan Penn (http:\/\/cocoamanifest.net\/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nChooses a device type from the iPhone Simulator using menu\nselection events.\n\nTo use, make sure this file is executable, then run from the terminal:\n\n bin\/choose_sim_device \"iPad (Retina)\"\n\nOriginally, I tried to do this by editing the Preference file for the\nsimulator, and it worked under Xcode 4.3, but now it ignores those changes\noften enough that I chose to use this menu-selection route.\n\n*)\n\non run argv\n set simType to item 1 of argv\n set iosVersion to item 2 of argv\n set developerDir to item 3 of argv\n\n set my_executable to developerDir & \"\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\"\n\n activate application my_executable\n tell application \"System Events\"\n tell process \"iOS Simulator\"\n\n -- TODO: need to fall back for iOS simulator 6 which does not nest its menus\n \n tell menu bar 1\n tell menu bar item \"Hardware\" -- Hardware menu bar item\n tell menu 1 -- Hardware menu\n\n -- determine if we are on version 6 of the sim by trying to find the version menu item\n try\n tell menu item \"Version\"\n click\n end tell\n set simVersion to 6\n on error errMsg\n set simVersion to 7\n end try\n --tell app \"System Events\" to display dialog simVersion\n\n\n if simVersion equals 6 then\n -- VERSION 6 INSTRUCTIONS\n -- HACKS for backwards compatibility, since Apple isn't into that\n if simType equals \"iPhone Retina (3.5-inch)\" then set simType to \"iPhone (Retina 3.5-inch)\"\n if simType equals \"iPhone Retina (4-inch)\" then set simType to \"iPhone (Retina 4-inch)\"\n if iosVersion equals \"iOS 6.0\" then set iosVersion to \"6.0 (10A403)\"\n if iosVersion equals \"iOS 6.1\" then set iosVersion to \"6.1 (10B141)\"\n click menu item simType of menu 1 of menu item \"Device\"\n click menu item iosVersion of menu 1 of menu item \"Version\"\n\n else\n\n -- VERSION 7 INSTRUCTIONS\n tell menu item \"Device\" -- Device menu item\n tell menu 1 -- Device sub menu\n\n tell menu item simType\n try\n -- If this has a submenu, then find the iOS version.\n set iosVersions to value of attribute \"AXTitle\" of every menu item of menu simType\n repeat with iosVersionMenu in iosVersions\n if iosVersionMenu contains iosVersion then\n -- iOS Version\n click menu item iosVersionMenu of menu simType\n exit repeat\n else\n\n end if\n end repeat\n on error errMsg\n -- If this is not a submenu, then just click.\n click\n end try\n end tell\n end tell\n end tell\n\n end if -- version 6\/7\n\n end tell\n end tell\n end tell\n end tell\n end tell\n\n -- Need to show the simulator again after changing device,\n -- or else the simulator be hidden when launched by instruments\n -- for some odd reason.\n tell application \"System Events\"\n set visible of process \"iOS Simulator\" to true\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"f65edaa1dcc322463fec9f13ddc672b024d1c365","subject":"JasonLeyba: Uncomment line from last commit.","message":"JasonLeyba: Uncomment line from last commit.\n\n\ngit-svn-id: 4179480af2c2519a5eb5e1e9b541cbdf5cf27696@16479 07704840-8298-11de-bf8c-fd130f914ac9\n","repos":"winhamwr\/selenium,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","old_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\n-- tell application \"Safari\" to quit\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"1e396c7e0088540e21474cb0615fe6039f93c8e3","subject":"prettifyXML 1.6 - skip layout objects, stick with tidy after all (not xmllint)","message":"prettifyXML 1.6 - skip layout objects, stick with tidy after all (not xmllint)\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): prettify using xmllint instead of tidy. Do NOT prettify layout objects even if specified since they are already quasi-formatted. \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using xmllint *)\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | xmllint --format -\"\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b5d3b2b746d2c58082108a3082fcd425b5d0e59e","subject":"JasonLeyba: Uncomment line from last commit.","message":"JasonLeyba: Uncomment line from last commit.\n\n\ngit-svn-id: aa1aa1384423cb28c2b1e29129bb3a91de1d9196@16479 07704840-8298-11de-bf8c-fd130f914ac9\n","repos":"yumingjuan\/selenium,jmt4\/Selenium2,jmt4\/Selenium2,yumingjuan\/selenium,yumingjuan\/selenium,jmt4\/Selenium2,jmt4\/Selenium2,jmt4\/Selenium2,yumingjuan\/selenium,jmt4\/Selenium2,jmt4\/Selenium2,yumingjuan\/selenium,jmt4\/Selenium2,yumingjuan\/selenium,yumingjuan\/selenium,jmt4\/Selenium2,yumingjuan\/selenium,yumingjuan\/selenium","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","old_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\n-- tell application \"Safari\" to quit\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"9a8739087010687b52bbbcb65d3c63944973699e","subject":"Improve message","message":"Improve message\n","repos":"int128\/osx-go-to-bed","old_file":"org.hidetake.osx-go-to-bed.applescript","new_file":"org.hidetake.osx-go-to-bed.applescript","new_contents":"#!\/usr\/bin\/osascript\n\nset awakeTime to date \"8:00:00\"\n\nset {hours: remainHours, minutes: remainMinutes} to (date \"0:0\") + (awakeTime - (current date))\nset messageTitle to \"Remaining \" & remainHours & \" hours \" & remainMinutes & \" minutes\"\nset messageDescription to \"now \" & time string of (current date)\n\ndisplay notification messageDescription with title messageTitle\n","old_contents":"#!\/usr\/bin\/osascript\n\nset awake_time to date \"08:00:00\"\nset title_head to \"Remaining\"\nset description to \"You can sleep only\"\n\nset remain_time to date \"0:0\" + (awake_time - current date)\ndisplay notification description with title title_head & \" \" & time string of remain_time\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"32d2efb1fe855aa1b4003713a8ae9fd2b09c6f4e","subject":"add pause\/refresh to Record Loop","message":"add pause\/refresh to Record Loop\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"f1f26a784aa41da91240b4f36879b96c6905fe21","subject":"Update call_with_finder_selection.applescript","message":"Update call_with_finder_selection.applescript","repos":"deanishe\/alfred-similar-image-search","old_file":"src\/call_with_finder_selection.applescript","new_file":"src\/call_with_finder_selection.applescript","new_contents":"(*\n\tGet images in Finder selection, then call the workflow again with\n\tthe first selected image.\n\n\tIf no images are selected, return an error message, which\n\tcan be passed to a Post Notification action.\n*)\n\n-- The filetypes understood by Google Image Search\nset imageExtensions to {\"jpg\", \"jpeg\", \"bmp\", \"gif\", \"png\"}\n\n-- Return list of files selected in Finder whose extensions are\n-- in imageExtensions\non selectedImages()\n\tset theImages to {}\n\ttell application \"Finder\"\n\t\tset theSelection to the selection\n\t\tif (the count of theSelection) is greater than 0 then\n\t\t\trepeat with theFile in theSelection\n\t\t\t\tif the name extension of theFile is in my imageExtensions then\n\t\t\t\t\tset the end of theImages to (theFile as alias)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\t\tlog ((the count of theImages) as text) & \" image(s) selected\"\n\tend tell\n\treturn theImages\nend selectedImages\n\nset theImages to my selectedImages()\nif (count of theImages) is greater than 0 then\n\tset theImage to item 1 of theImages\n\tset thePath to POSIX path of theImage\n\n\t-- Use the workflow's own external trigger\n\ttell application \"Alfred 4\" to run trigger \"Find Similar Images\" in workflow \"net.deanishe.alfred-google-similar-images\" with argument thePath\nelse\n\treturn \"No images selected\"\nend if\n","old_contents":"(*\n\tGet images in Finder selection, then call the workflow again with\n\tthe first selected image.\n\n\tIf no images are selected, return an error message, which\n\tcan be passed to a Post Notification action.\n*)\n\n-- The filetypes understood by Google Image Search\nset imageExtensions to {\"jpg\", \"jpeg\", \"bmp\", \"gif\", \"png\"}\n\n-- Return list of files selected in Finder whose extensions are\n-- in imageExtensions\non selectedImages()\n\tset theImages to {}\n\ttell application \"Finder\"\n\t\tset theSelection to the selection\n\t\tif (the count of theSelection) is greater than 0 then\n\t\t\trepeat with theFile in theSelection\n\t\t\t\tif the name extension of theFile is in my imageExtensions then\n\t\t\t\t\tset the end of theImages to (theFile as alias)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\t\tlog ((the count of theImages) as text) & \" image(s) selected\"\n\tend tell\n\treturn theImages\nend selectedImages\n\nset theImages to my selectedImages()\nif (count of theImages) is greater than 0 then\n\tset theImage to item 1 of theImages\n\tset thePath to POSIX path of theImage\n\n\t-- Use the workflow's own external trigger\n\ttell application \"Alfred 3\" to run trigger \"Find Similar Images\" in workflow \"net.deanishe.alfred-google-similar-images\" with argument thePath\nelse\n\treturn \"No images selected\"\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bb35dbd2d99fe689fc919fe9eca0ab9037d5af9a","subject":"Delete open_services.scpt","message":"Delete open_services.scpt","repos":"dillo\/dotfiles","old_file":"open_services.scpt","new_file":"open_services.scpt","new_contents":"","old_contents":"tell application \"iTerm\"\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"brew update\"\n\n -- set term1 to 0\n -- repeat until (term1 = 1)\n -- if (text of current session contains \"Updated\") then\n -- set term1 to 1\n -- end if\n -- delay 4.0\n -- end repeat\n\n write text \"pgrep -f [n]ginx | xargs sudo kill\"\n delay 4.0\n write text \"sudo nginx\"\n\n write text \"ulimit -n 10000\"\n write text \"pgrep -f [r]iak | xargs sudo kill\"\n delay 4.0\n write text \"riak start\"\n\n write text \"pgrep -f [m]ysql | xargs sudo kill\"\n delay 4.0\n write text \"mysql.server start\"\n\n write text \"lsof -ti tcp:25672 | xargs kill\"\n delay 4.0\n write text \"rabbitmq-server -detached\"\n\n write text \"cd ~\/source\/steve; bundle exec bin\/steve_worker.rb stop\"\n delay 4.0\n write text \"osascript -e quit app Genymotion\"\n write text \"open -a Genymotion\"\n end tell\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9310 | xargs kill\"\n write text \"cd ~\/source\/confusion\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec puma -p9310\"\n set name to \"confusion\"\n end tell\n\n set term1 to 0\n repeat until (term1 = 1)\n if (text of current session contains \"Listening\") then\n set term1 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:3000 | xargs kill\"\n write text \"cd ~\/source\/zutron\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec rake db:migrate; bundle exec rails s -p3000\"\n set name to \"zutron\"\n end tell\n\n set term2 to 0\n repeat until (term2 = 1)\n if (text of current session contains \"Listening\") then\n set term2 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9293 | xargs kill\"\n write text \"cd ~\/source\/metasaurus\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec puma -p9293\"\n set name to \"meta\"\n end tell\n\n set term3 to 0\n repeat until (term3 = 1)\n if (text of current session contains \"Listening\") then\n set term3 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9294 | xargs kill\"\n write text \"cd ~\/source\/leads\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec puma -p9294\"\n set name to \"leads\"\n end tell\n\n set term4 to 0\n repeat until (term4 = 1)\n if (text of current session contains \"Listening\") then\n set term4 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9295 | xargs kill\"\n write text \"cd ~\/source\/m.apartmentguide\/; git checkout dev; git stash; git pull --rebase; bundle install; webpack; bundle exec rake confusion:migrate; npm install; bundle exec puma -p9295\"\n set name to \"mdotAg\"\n end tell\n\n set term5 to 0\n repeat until (term5 = 1)\n if (text of current session contains \"Listening\") then\n set term5 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:4567 | xargs kill\"\n write text \"cd ~\/source\/onesearch\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec puma -p4567\"\n set name to \"onesearch\"\n end tell\n\n set term6 to 0\n repeat until (term6 = 1)\n if (text of current session contains \"Listening\") then\n set term6 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9301 | xargs kill\"\n write text \"cd ~\/source\/ag_mobile_api\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec rake confusion:migrate; bundle exec puma -p9301\"\n set name to \"Ag mAPI\"\n end tell\n\n set term7 to 0\n repeat until (term7 = 1)\n if (text of current session contains \"Listening\") then\n set term7 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9303 | xargs kill\"\n write text \"cd ~\/source\/mobile_api\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec rake confusion:migrate; bundle exec puma -p9303\"\n set name to \"Native mAPI\"\n end tell\n\n set term7 to 0\n repeat until (term7 = 1)\n if (text of current session contains \"Listening\") then\n set term7 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:3030 | xargs kill\"\n write text \"cd ~\/source\/visits\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec rake db:migrate; bundle exec rails s -p3030\"\n set name to \"visits\"\n end tell\n\n set term8 to 0\n repeat until (term8 = 1)\n if (text of current session contains \"Listening\") then\n set term8 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"lsof -ti tcp:9400 | xargs kill\"\n write text \"cd ~\/source\/steve\/; git checkout dev; git stash; git pull --rebase; bundle install; bundle exec rake db:migrate; bundle exec rails s -p9400\"\n set name to \"steve\"\n end tell\n\n set term9 to 0\n repeat until (term9 = 1)\n if (text of current session contains \"Listening\") then\n set term9 to 1\n end if\n delay 1.0\n end repeat\n end tell\n\n make new terminal\n\n tell the current terminal\n activate current session\n launch session \"FooLegit\"\n tell the last session\n write text \"cd ~\/source\/steve\/; bundle exec bin\/steve_worker.rb start\"\n set name to \"steve-worker\"\n end tell\n end tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f4c685ff94399b08fa0bc18fac998dac330995fe","subject":"Tweaking pdf script","message":"Tweaking pdf script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nmonitoring-deployments-in-seed\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nmonitoring-deployments-in-seed\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fe5d7c99a2c3280f665d030d1b58e9d1c724f6da","subject":"Add newline in list_of_playlists","message":"Add newline in list_of_playlists\n","repos":"bogem\/nehm","old_file":"lib\/nehm\/applescripts\/list_of_playlists.applescript","new_file":"lib\/nehm\/applescripts\/list_of_playlists.applescript","new_contents":"tell application \"iTunes\"\n get name of playlists\nend tell\n","old_contents":"tell application \"iTunes\"\n get name of playlists\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1dfea1be9a8217c5d9439f7209ea2df28a7b6ed8","subject":"Whitespace fix. Using tabs (size 4) in .applescript files to be compatible with Script Editor","message":"Whitespace fix. Using tabs (size 4) in .applescript files to be compatible with Script Editor\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- set the chosenTheme to themeName\n\n\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset thisDocument to \u00ac\n\t\t\tmake new document with properties \u00ac\n\t\t\t\t{document theme:theme (themeName as string)}\n\t\t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n","old_contents":"on newPresentation(themeName)\n tell application \"Keynote\"\n \tactivate\n \t-- set the chosenTheme to themeName\n\n\n \tset targetWidth to 1024 -- 1440 <-- higher resolution\n \tset targetHeight to 768 -- 1080 <-- higher resolution\n\n \tset thisDocument to \u00ac\n \t\tmake new document with properties \u00ac\n {document theme:theme (themeName as string)}\n \t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n return name of thisDocument\n end tell\nend newPresentation\n\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n end tell\nend finalize\n\non themeMasters(docname)\n -- tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n return names\n end tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n FIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n \ttell document named docname\n \t\ttell the current slide\n\t\t\t\n \t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n \t\t\tset thisPlaceholderImageItem to image 1\n \t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n set macPath to POSIX file filepath as Unicode text\n \t\t\tset file name of thisPlaceholderImageItem to \u00ac\n \t\t\t\talias macPath\n\t\t\t\n \t\tend tell\n \tend tell\n end tell\nend addImage\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"11d24dcf3915915b41dd055caa5cc997a1849fc6","subject":"errors are reported back to applescript","message":"errors are reported back to applescript\n","repos":"binaryage\/totalfinder-installer,binaryage\/totalterminal-installer","old_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"tell application \"Finder\"\n\tdelay 1 -- this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors \n\ttry\n\t\tevent BATFinit\n\ton error msg number num\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & msg & \" (\" & (num as text) & \")\" & \" \n\nYou may visit \nhttp:\/\/getsatisfaction.com\/binaryage \nto get support on this issue.\" with icon 0\n\tend try\nend tell","old_contents":"tell application \"Finder\"\n\tdelay 1 -- this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors \n\ttry\n\t\tevent BATFinit\n\ton error msg number num\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & msg & \" ( \" & (num as text) & \")\" & \" \n\nTotalFinder.app is expected to be located in \\\"\/Applications\\\" folder\n\t\t\nPlease check output in Console.app.\n\nYou may also visit \nhttp:\/\/getsatisfaction.com\/binaryage \nto get support on this issue.\" with icon 0\n\tend try\nend tell","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f638a87baa4b991f0ef733b1d0cd7c1ac0b9fcad","subject":"finally works again, but creates the folder in the directory root","message":"finally works again, but creates the folder in the directory root\n","repos":"azizshamim\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_git_root_dir> <path_to_keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_presentation>\nproperty thumbSize : 480\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set repoPath to item 1 of argv\n set keynoteName to item 2 of argv\n set thumbnailDir to keynoteName\n if thumbnailDir ends with \".key\" then set thumbnailDir to text 1 thru -5 of thumbnailDir\n\n set keynoteFile to (POSIX file keynoteName) as alias\n set keynoteFullName to repoPath & \"\/\" & keynoteName\n set documentPath to posix file (POSIX path of (do shell script \"dirname \" & quoted form of keynoteFullName)) as alias\n\n tell application \"Finder\"\n if not (exists folder thumbnailDir of folder documentPath)\n make new folder at folder documentPath with properties {name:thumbnailDir}\n end if\n set the targetFolder to folder thumbnailDir of folder documentPath\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open keynoteFile\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n-- close front document without saving\n end tell\nend run\n","old_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_root_dir> <path_to_keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_root_dir>\/<thumbnailDir>\/<presentation>\nproperty thumbSize : 480\nproperty thumbnailDir: \"keynotes\"\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set gitRoot to item 1 of argv\n set tmpFile to item 2 of argv\n set documentName to item 2 of argv\n if documentName ends with \".key\" then set documentName to text 1 thru -5 of documentName\n\n set gitRoot to posix file (POSIX path of (gitRoot as text) & \"\/\" & thumbnailDir) as alias\n set tmpFile to (POSIX file tmpFile) as alias\n\n tell application \"Finder\"\n if not (exists folder documentName of folder gitRoot)\n make new folder at gitRoot with properties {name:documentName}\n end if\n set the targetFolder to folder documentName of folder gitRoot\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open tmpFile\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"685dfdb02c2bb346add415262dd5dd31c16774d6","subject":"Remove obsolete applescripts.","message":"Remove obsolete applescripts.\n","repos":"tsnow\/dotfiles,tsnow\/dotfiles,tsnow\/dotfiles","old_file":"applescripts\/new-todo-from-mail.applescript","new_file":"applescripts\/new-todo-from-mail.applescript","new_contents":"","old_contents":"using terms from application \"Mail\"\n on perform mail action with messages newMessages\n set theSelectedMessages to selection\n set the selected_message to item 1 of the theSelectedMessages\n set message_id to the message id of the selected_message\n set message_url to \"message:%3C\" & message_id & \"%3E\"\n set TheSubject to the subject of the selected_message\n set theBody to \"From: \" & the sender of the selected_message \u00ac\n & linefeed & message_url\n tell application \"Things\"\n show quick entry panel with properties {name:TheSubject, notes:theBody}\n end tell\n end perform mail action with messages\nend using terms from\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"47e8de02dbe03c1438d11fae8f74558fa2123b5d","subject":"Replace home path in log file path with tilde","message":"Replace home path in log file path with tilde\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9e1abf944e0430b09e1e2fbc4ad450d412bc2a66","subject":"Make sure first bookmark record begins with delimiter","message":"Make sure first bookmark record begins with delimiter\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e866d8e1cf220f51469dbb52679e8931d69d0bcc","subject":"Use new iTerm applescript","message":"Use new iTerm applescript\n","repos":"alisnic\/tube.vim","old_file":"tube\/autoload\/tube\/applescript\/iterm.applescript","new_file":"tube\/autoload\/tube\/applescript\/iterm.applescript","new_contents":"-- iterm.applescript\n---\n-- this script requires an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application iTerm2\n tell current session of first window\n write text command\n end tell\n end tell\nend run\n","old_contents":"-- iterm.applescript\n---\n-- this script requires an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application \"iTerm\"\n\n try\n set mysession to current session of current terminal\n on error\n set myterm to (make new terminal)\n tell myterm\n launch session \"Default\"\n set mysession to current session\n end tell\n end try\n\n tell mysession\n write text command\n end tell\n\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ce2d601d2b9e5efafdc3afce6fabbeaf2bd2e534","subject":"Update applescript","message":"Update applescript\n","repos":"alisnic\/tube.vim","old_file":"autoload\/tube\/applescript\/iterm.applescript","new_file":"autoload\/tube\/applescript\/iterm.applescript","new_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application iTerm2\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","old_contents":"-- iterm.applescript\n---\n-- this script requires an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application \"iTerm\"\n\n try\n set mysession to current session of current terminal\n on error\n set myterm to (make new terminal)\n tell myterm\n launch session \"Default\"\n set mysession to current session\n end tell\n end try\n\n tell mysession\n write text command\n end tell\n\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"20a25737b8860bbf050257e64b4885cf9175fa75","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"global num_servers\nset num_servers to 10\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf >\/dev\/null 2>&1 || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\tmy server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n","old_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\t-- my server_format_ebs_mag_mount_dev_prepare_dirs()\n\t-- my server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"d4fd6fccbeacd51be63c844b88c362034c04e4d0","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"-- 2 machines per experiment\nglobal num_experiments\nset num_experiments to 15\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_experiments * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf >\/dev\/null 2>&1 || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\tmy server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n","old_contents":"global num_servers\nset num_servers to 10\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf >\/dev\/null 2>&1 || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\tmy server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"bef22a8743b249a2c66e50049324982a6caddf14","subject":"Fix bug where some non-Apple Music songs were missing artwork","message":"Fix bug where some non-Apple Music songs were missing artwork\n\nThe original algorithm assumed that the file extension of every artwork\nimage was always jpeg. However, some songs (which I did not download\nfrom Apple Music, coincidentally) happened to have png artwork, and so\nthe algorithm would fail to return the correct artwork path for those\nsongs.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1.jpeg\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"698772ca16b63f60ff287df21abeb88f15b2afe4","subject":"Fix mismatched handler end tag","message":"Fix mismatched handler end tag\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1.jpeg\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1.jpeg\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getNativeCachedArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c01e12bb3bd74ab1a86cd428ea9eb35415c67c75","subject":"Fix bug where disc number-less songs would be excluded","message":"Fix bug where disc number-less songs would be excluded\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif (disc number of theSong is discIndex or (disc number of theSong is 0 and discIndex is 1)) and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"06159f194f8906b1b24c77c3218a6658996a9180","subject":"main script - remove process, wrap processes with toggling into full-access mode if needed.","message":"main script - remove process, wrap processes with toggling into full-access mode if needed.\n","repos":"NYHTC\/HTC_sous-dev","old_file":"src\/Scripts\/main.applescript","new_file":"src\/Scripts\/main.applescript","new_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-11-08 ( eshagdar ): renamed script library 'database' to 'fmDatabase'.\n\t2017-11-02 ( eshagdar ): pass prefs thru to sub-handlers. enabled new table process. added 'database' script library\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty appPath : \"\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\nproperty newTableAndFields : \"NewTable.xml\"\nproperty fmObjTrans : \"\"\n\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse fmSecurity : script \"fmSecurity\"\nuse fmDatabase : script \"fmDatabase\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-11-08 ( eshagdar ): no need to activate. the show error handler already does it.\n\t-- 2017-11-01 ( eshagdar ): don't bother showing error stack if user canceled\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t\n\t\t-- get app path\n\t\ttell application \"Finder\" to set appPath to (path to me) as string\n\t\t\n\t\t\n\t\t-- init dependencies\n\t\tlaunchHtcLib({})\n\t\tinitFmObjTrans({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\tif errNum is not -128 then htcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non initFmObjTrans(prefs)\n\t-- init fmObjectTranslator\n\t\n\t-- 2017-11-02 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset defaultPrefs to {}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tset appPath to path to me as string\n\t\tend tell\n\t\tset fmObjPath to appPath & \"Contents:Resources:Scripts:fmObjectTranslator.applescript\"\n\t\tset fmObjTrans to run script (alias fmObjPath)\n\t\t--tell fmObjTransScript to set fmObjTrans to fmObjectTranslator_Instantiate({})\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to initFmObjTrans - \" & errMsg number errNum\n\tend try\nend initFmObjTrans\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-11-20 ( eshagdar ): rename 'Table Copy Security' to 'Table Duplicate Security'\n\t-- 2017-11-02 ( eshagdar ): enabled create table process\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"Table Create\", \n\t\t\t\"Table Duplicate Security\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Create\" then\n\t\t\treturn process_TableNew({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Duplicate Security\" then\n\t\t\treturn process_TableSecurityDuplicate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tset processResult to fmGUI_Menu_OpenDB(prefs)\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(prefs & fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmSecurity's copyPrivSetToOthers(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_TableNew(prefs)\n\t-- create a new table\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's newTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_NewTable - \" & errMsg number errNum\n\tend try\nend process_TableNew\n\n\n\non process_TableSecurityDuplicate(prefs)\n\t-- copy privSet access settings from one table into another.\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's copyPrivSetSettingsForOneTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_TableSecurityDuplicate - \" & errMsg number errNum\n\tend try\nend process_TableSecurityDuplicate\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck(prefs & {forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit\n","old_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-11-08 ( eshagdar ): renamed script library 'database' to 'fmDatabase'.\n\t2017-11-02 ( eshagdar ): pass prefs thru to sub-handlers. enabled new table process. added 'database' script library\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty appPath : \"\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\nproperty newTableAndFields : \"NewTable.xml\"\nproperty fmObjTrans : \"\"\n\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse fmSecurity : script \"fmSecurity\"\nuse fmDatabase : script \"fmDatabase\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-11-08 ( eshagdar ): no need to activate. the show error handler already does it.\n\t-- 2017-11-01 ( eshagdar ): don't bother showing error stack if user canceled\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t\n\t\t-- get app path\n\t\ttell application \"Finder\" to set appPath to (path to me) as string\n\t\t\n\t\t\n\t\t-- init dependencies\n\t\tlaunchHtcLib({})\n\t\tinitFmObjTrans({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\tif errNum is not -128 then htcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non initFmObjTrans(prefs)\n\t-- init fmObjectTranslator\n\t\n\t-- 2017-11-02 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset defaultPrefs to {}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tset appPath to path to me as string\n\t\tend tell\n\t\tset fmObjPath to appPath & \"Contents:Resources:Scripts:fmObjectTranslator.applescript\"\n\t\tset fmObjTrans to run script (alias fmObjPath)\n\t\t--tell fmObjTransScript to set fmObjTrans to fmObjectTranslator_Instantiate({})\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to initFmObjTrans - \" & errMsg number errNum\n\tend try\nend initFmObjTrans\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-11-02 ( eshagdar ): enabled create table process\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"Table Create\", \n\t\t\t\"Table Copy Security\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Create\" then\n\t\t\treturn process_TableNew({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Copy Security\" then\n\t\t\treturn process_TableSecurityCopy({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_Menu_OpenDB(prefs)\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(prefs & fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tfmSecurity's copyPrivSetToOthers(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_TableNew(prefs)\n\t-- create a new table\n\t\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\treturn fmDatabase's newTable(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_NewTable - \" & errMsg number errNum\n\tend try\nend process_TableNew\n\n\n\non process_TableSecurityCopy(prefs)\n\t-- copy privSet access settings from one table into another.\n\t\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\treturn fmDatabase's copyPrivSetSettingsForOneTable(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_TableSecurityCopy - \" & errMsg number errNum\n\tend try\nend process_TableSecurityCopy\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck(prefs & {forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d63b1f75ef971489a00339f4ec8af0e4f3113bad","subject":"use Rakudo in applescript too","message":"use Rakudo in applescript too\n","repos":"stmuk\/star,rakudo\/star","old_file":"ports\/darwin_dmg\/adjust_installation_window.scpt","new_file":"ports\/darwin_dmg\/adjust_installation_window.scpt","new_contents":"tell application \"Finder\"\n tell disk \"Rakudo\"\n open\n\n set top_left_X to 100\n set top_left_Y to 100\n set bottom_right_X to 600\n set bottom_right_Y to 500\n\n tell container window\n set current view to icon view\n set toolbar visible to false\n set statusbar visible to false\n set bounds to { top_left_X, top_left_Y, bottom_right_X, bottom_right_Y }\n end tell\n\n make new alias file at container window to POSIX file \"\/Applications\" with properties { name:\"Applications\" }\n\n set opts to the icon view options of container window\n tell opts\n set icon size to 128\n set text size to 16\n set arrangement to not arranged\n end tell\n\n set position of item \"Rakudo\" to {120, 74}\n set position of item \"Applications\" to {360, 74}\n set position of item \"HOW_TO_INSTALL.txt\" to {120, 264}\n\n delay 5\n close\n delay 5\n open\n delay 5\n\n end tell\nend tell\n","old_contents":"tell application \"Finder\"\n tell disk \"Rakudo_Star\"\n open\n\n set top_left_X to 100\n set top_left_Y to 100\n set bottom_right_X to 600\n set bottom_right_Y to 500\n\n tell container window\n set current view to icon view\n set toolbar visible to false\n set statusbar visible to false\n set bounds to { top_left_X, top_left_Y, bottom_right_X, bottom_right_Y }\n end tell\n\n make new alias file at container window to POSIX file \"\/Applications\" with properties { name:\"Applications\" }\n\n set opts to the icon view options of container window\n tell opts\n set icon size to 128\n set text size to 16\n set arrangement to not arranged\n end tell\n\n set position of item \"Rakudo_Star\" to {120, 74}\n set position of item \"Applications\" to {360, 74}\n set position of item \"HOW_TO_INSTALL.txt\" to {120, 264}\n\n delay 5\n close\n delay 5\n open\n delay 5\n\n end tell\nend tell\n","returncode":0,"stderr":"","license":"artistic-2.0","lang":"AppleScript"} {"commit":"bb1f289638bfe60cb9186d571be3619dd900dc2d","subject":"save security dialog window name changed in fm16.","message":"save security dialog window name changed in fm16.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageSecurity\/fmGUI_ManageSecurity_Save.applescript","new_file":"library\/fmGUI_ManageSecurity\/fmGUI_ManageSecurity_Save.applescript","new_contents":"-- fmGUI_ManageSecurity_Save({fullAccessAccountName:null, fullAccessPassword:null})\n-- Daniel A. Shockley, NYHTC\n-- Close ( and save ) Manage Security\n\n\n(*\nHISTORY:\n\t1.5.1 - 2017-10-23 ( eshagdar ): FM16 renamed auth window name, so windw test is 'begins with' instead of 'is'\n\t1.5 - 2017-10-19 ( eshagdar ): sub-handlers: button clicks, window checks, authentication.\n\t1.4.2 - 2017-08-09 ( eshagdar ): instead of waiting for a set amount of time, wait until the frontmost window is not manage security ( it will either be the confirm full access window, or finished saving ).\n\t1.4.1 - 2017-08-07 ( eshagdar ): added windowWaitUntil handler to execute sample code\n\t1.4 - 2017-07-14 ( eshagdar ): renamed params: fullAccount -> fullAccessAccountName and fullPassword -> fullAccessPassword. wait until windows are gone.\n\t1.3 - 2016-07-20 ( eshagdar ): converted params from list to record\n\t1.2 - parameter as 'prefs' list for now, instead of two parameters.\n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_AuthenticateDialog\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\twindowWaitUntil*)\n\n\non run\n\tfmGUI_ManageSecurity_Save({fullAccessAccountName:\"admin\", fullAccessPassword:\"\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageSecurity_Save(prefs)\n\t--version 1.5.1\n\t\n\tset defaulPrefs to {fullAccessAccountName:null, fullAccessPassword:null}\n\tset prefs to prefs & defaulPrefs\n\t\n\tset authWindowName to \"Confirm Full access\"\n\tset securityWindowName to \"Manage Security for\"\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t-- save security changes\n\t\tfmGUI_ObjectClick_OkButton({})\n\t\t\n\t\t\n\t\t-- confirm with full access account\n\t\tif fmGUI_NameOfFrontmostWindow() begins with authWindowName then fmGUI_AuthenticateDialog({accountName:fullAccessAccountName of prefs, pwd:fullAccessPassword of prefs, windowname:authWindowName})\n\t\t\n\t\t\n\t\t-- wait until window is gone\n\t\twindowWaitUntil({whichWindow:\"front\", windowNameTest:\"does not start with\", windowname:securityWindowName})\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"Couldn't save Manage Security - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageSecurity_Save\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_AuthenticateDialog(prefs)\n\ttell application \"htcLib\" to fmGUI_AuthenticateDialog(prefs)\nend fmGUI_AuthenticateDialog\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n","old_contents":"-- fmGUI_ManageSecurity_Save({fullAccessAccountName:null, fullAccessPassword:null})\n-- Daniel A. Shockley, NYHTC\n-- Close ( and save ) Manage Security\n\n\n(*\nHISTORY:\n\t1.5 - 2017-10-19 ( eshagdar ): sub-handlers: button clicks, window checks, authentication.\n\t1.4.2 - 2017-08-09 ( eshagdar ): instead of waiting for a set amount of time, wait until the frontmost window is not manage security ( it will either be the confirm full access window, or finished saving ).\n\t1.4.1 - 2017-08-07 ( eshagdar ): added windowWaitUntil handler to execute sample code\n\t1.4 - 2017-07-14 ( eshagdar ): renamed params: fullAccount -> fullAccessAccountName and fullPassword -> fullAccessPassword. wait until windows are gone.\n\t1.3 - 2016-07-20 ( eshagdar ): converted params from list to record\n\t1.2 - parameter as 'prefs' list for now, instead of two parameters.\n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_AuthenticateDialog\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\twindowWaitUntil*)\n\n\non run\n\tfmGUI_ManageSecurity_Save({fullAccessAccountName:\"admin\", fullAccessPassword:\"\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageSecurity_Save(prefs)\n\t--version 1.5\n\t\n\tset defaulPrefs to {fullAccessAccountName:null, fullAccessPassword:null}\n\tset prefs to prefs & defaulPrefs\n\t\n\tset authWindowName to \"Confirm Full access Login\"\n\tset securityWindowName to \"Manage Security for\"\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t-- save security changes\n\t\tfmGUI_ObjectClick_OkButton({})\n\t\t\n\t\t\n\t\t-- confirm with full access account\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to authWindowName then fmGUI_AuthenticateDialog({accountName:fullAccessAccountName of prefs, pwd:fullAccessPassword of prefs, windowname:authWindowName})\n\t\t\n\t\t\n\t\t-- wait until window is gone\n\t\twindowWaitUntil({whichWindow:\"front\", windowNameTest:\"does not start with\", windowname:securityWindowName})\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"Couldn't save Manage Security - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageSecurity_Save\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_AuthenticateDialog(prefs)\n\ttell application \"htcLib\" to fmGUI_AuthenticateDialog(prefs)\nend fmGUI_AuthenticateDialog\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4e6290d02aee52f26da5eba8f472e9dbdb3b8838","subject":"Fixing the icon positioning. Due to the height limitations of the release script, specifically that the Finder is so frustratingly buggy with this that it causes multiple projects to have to hack around it, we need a new solution for this. AAARRGGGHHH!!!","message":"Fixing the icon positioning. Due to the height limitations of the release script, specifically that the Finder is so frustratingly buggy with this that it causes multiple projects to have to hack around it, we need a new solution for this. AAARRGGGHHH!!!\n","repos":"doshinirav\/doshinirav-myversion,timbck2\/growl,timbck2\/growl,SalrJupiter\/growl,tectronics\/growl,nagyistoce\/growl,nkhorman\/archive-growl,chashion\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,nochkin\/growl,chashion\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,tectronics\/growl,morganestes\/morganestes-growl,ylian\/growl,tectronics\/growl,morganestes\/morganestes-growl,ylian\/growl,tectronics\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,nochkin\/growl,chashion\/growl,ylian\/growl,Shalaco\/shalzers-growl,chashion\/growl,timbck2\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,CarlosCD\/growl,xhruso00\/growl,ylian\/growl,xhruso00\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,xhruso00\/growl,nochkin\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,CarlosCD\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,xhruso00\/growl,timbck2\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,nagyistoce\/growl,nagyistoce\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nochkin\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,xhruso00\/growl,chashion\/growl,timbck2\/growl,SalrJupiter\/growl,CarlosCD\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 600}\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 350}\n\t\t\tset the bounds to {30, 50, 579, 350}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"508f3e47784d0ab21311979cf289af47bad360c7","subject":"Fixed the window AppleScript. Apparently you can only set the bounds of a plain old window, not a container window. Go figure.","message":"Fixed the window AppleScript. Apparently you can only set the bounds of a plain old window, not a container window. Go figure.\n","repos":"tectronics\/growl,CarlosCD\/growl,CarlosCD\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,nkhorman\/archive-growl,CarlosCD\/growl,timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,timbck2\/growl,an0nym0u5\/growl,nagyistoce\/growl,nkhorman\/archive-growl,nagyistoce\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,nochkin\/growl,ylian\/growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,an0nym0u5\/growl,SalrJupiter\/growl,chashion\/growl,timbck2\/growl,xhruso00\/growl,nochkin\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,SalrJupiter\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,xhruso00\/growl,morganestes\/morganestes-growl,ylian\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,xhruso00\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,timbck2\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,nochkin\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nochkin\/growl,SalrJupiter\/growl,ylian\/growl,nkhorman\/archive-growl,tectronics\/growl,ylian\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,an0nym0u5\/growl,an0nym0u5\/growl,tectronics\/growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,nochkin\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,chashion\/growl,ylian\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,xhruso00\/growl,chashion\/growl,nkhorman\/archive-growl,tectronics\/growl,SalrJupiter\/growl,chashion\/growl,nochkin\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\tset the_window_id to id of container window\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 900}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 600}\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ea669ec05acefdcf0dbea434b2bca592770ab445","subject":"Correctly find Grove Salad","message":"Correctly find Grove Salad\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Find the remote speakers button\n\ton findCorrectButton()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset in_buttons to (get buttons of window 1)\n\t\t\t\t\n\t\t\t\trepeat with a_button in in_buttons\n\t\t\t\t\tset the_desc to (get description of a_button)\n\t\t\t\t\tif the_desc contains \"remote speakers\" then\n\t\t\t\t\t\treturn a_button\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t-- Still can't find the damn button\n\t\t\t\t-- return (get button 8 of window 1)\n\t\t\tend tell\n\t\tend tell\n\tend findCorrectButton\n\t\n\ton setRemoteSpeakersTo(item_index)\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick the_speaker_button\n\t\t\t\tkey code 115 -- Home Key (first speaker in list)\n\t\t\t\t\n\t\t\t\trepeat item_index times\n\t\t\t\t\tkey code 125 -- Down Arrow\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\tkey code 36 -- Return Key\n\t\t\t\t\n\t\t\t\t-- Wait for iTunes to connect to the speakers\n\t\t\t\tdelay 5\n\t\t\tend tell\n\t\tend tell\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\n-- When called from Launchbar with a string value.\non handle_string(s)\n\ttell application \"iTunes\" to stop\n\tremoteSpeakerFinder's prepareWindow()\n\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\n\ttell application \"System Events\"\n\t\tset the_desc to (get description of the_speaker_button)\n\tend tell\n\n\tif the_desc is not equal to \"remote speakers\" then\n\t\t-- Don't bother switching if it's already on \"Computer\"\n\t\tremoteSpeakerFinder's setRemoteSpeakersTo(s)\n\tend if\n\t\n\tremoteSpeakerFinder's resetWindow()\n\tset volume 1\n\t\n\ttell application \"iTunes\"\n\t\tset the_track to (get the first item of (get every URL track whose name starts with \"Groove Salad\"))\n\t\tplay the_track\n\tend tell\nend handle_string\n\non run\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(2)\n\tremoteSpeakerFinder's resetWindow()\nend run\n","old_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Find the remote speakers button\n\ton findCorrectButton()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset in_buttons to (get buttons of window 1)\n\t\t\t\t\n\t\t\t\trepeat with a_button in in_buttons\n\t\t\t\t\tset the_desc to (get description of a_button)\n\t\t\t\t\tif the_desc contains \"remote speakers\" then\n\t\t\t\t\t\treturn a_button\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t-- Still can't find the damn button\n\t\t\t\t-- return (get button 8 of window 1)\n\t\t\tend tell\n\t\tend tell\n\tend findCorrectButton\n\t\n\ton setRemoteSpeakersTo(item_index)\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick the_speaker_button\n\t\t\t\tkey code 115 -- Home Key (first speaker in list)\n\t\t\t\t\n\t\t\t\trepeat item_index times\n\t\t\t\t\tkey code 125 -- Down Arrow\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\tkey code 36 -- Return Key\n\t\t\t\t\n\t\t\t\t-- Wait for iTunes to connect to the speakers\n\t\t\t\tdelay 5\n\t\t\tend tell\n\t\tend tell\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\n-- When called from Launchbar with a string value.\non handle_string(s)\n\ttell application \"iTunes\" to stop\n\tremoteSpeakerFinder's prepareWindow()\n\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\n\ttell application \"System Events\"\n\t\tset the_desc to (get description of the_speaker_button)\n\tend tell\n\n\tif the_desc is not equal to \"remote speakers\" then\n\t\t-- Don't bother switching if it's already on \"Computer\"\n\t\tremoteSpeakerFinder's setRemoteSpeakersTo(s)\n\tend if\n\t\n\tremoteSpeakerFinder's resetWindow()\n\tset volume 1\n\t\n\ttell application \"iTunes\"\n\t\tset the_track to (get the first item of (get every track where database ID is 24778))\n\t\tplay the_track\n\tend tell\nend handle_string\n\non run\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(2)\n\tremoteSpeakerFinder's resetWindow()\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"812686ec472c66fae8bfb0f7477aac302cca27af","subject":"BBEdit Upgrade Query - disabled potentially dangerous convert-to-List code","message":"BBEdit Upgrade Query - disabled potentially dangerous convert-to-List code\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.7 - 2019-04-25 ( dshockley ): Added error-trapping and handling. The param for the handler is now named prefs instead of accidentally being an empty list. Disabled potentially-problematic \"convert to using List for query whitespace formatting\" code! \n\t1.6 - 2019-04-17 ( dshockley ): Added ExecuteOLD2. Added SemicolonPilcrowLine. \n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format(prefs)\n\t\n\ttry\n\t\t\n\t\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\t\n\t\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\t\n\t\t\n\t\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\t\n\t\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\t\n\t\t\n\t\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\t\n\t\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\t\n\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\t\n\t\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\t\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\t\n\t\t\n\t\t\n\t\t-- LITERAL SECTION:\n\t\t\n\t\tset literalSearch_SpacesToTabs to \" \"\n\t\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\t\n\t\tset literalSearch_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\t\n\t\tset literalSearch_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; Char ( 9 ); \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; Char ( 9 ) ; Char ( 13 ) )\"\n\t\t\n\t\t\n\t\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\t\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\t\n\t\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\t\n\t\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\t\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-- FINAL CLEANUP REGEX:\n\t\t\n\t\tset regexSearch_SemicolonPilcrowLine to \"^\\\\t+; [ \\\\t]*\\\\r\"\n\t\tset regexReplace_SemicolonPilcrowLine to \"\"\n\t\t\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tactivate\n\t\t\tdelay 0.1 -- make sure script has time to start??\n\t\t\t\n\t\t\ttell window 1\n\t\t\t\t\n\t\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace literalSearch_ExecuteOLD1 using literalReplace_ExecuteOLD1 options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_ExecuteOLD2 using literalReplace_ExecuteOLD2 options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(* DISABLED, SINCE IT CAN MANGLE INTERNAL 'IF' blocks:\n\t\t\t\tEXAMPLE (the IF line SQL_Where gets put as the ELSE, instead of staying with \" AND \"!!!!): \n\t; sqlQuery = \n\t\t\"SELECT \" \n\t\t\t\t& SQL_Field ( LR_LOCAL_REPORT::aLR__PrimaryKey ) \n\t\t\t\t\n\t\t\t& \" FROM \" \n\t\t\t\t& SQL_Table ( LR_LOCAL_REPORT::zAuto1 ) \n\t\t\t\n\t\t\t& \" WHERE \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_UID ; \"=\" ; UID ) \n\t\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_LocalKey ; \"=\" ; localKey ) \n\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateReportFor_Month1st ; \">=\" ; dateMonthFor ) \n\t\t\t\t\t\t\n\t\t\t& If ( not IsEmpty ( dateAcctPeriod )\n\t\t\t\t; \" AND \" \n\t\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateAccountingPeriod_Month1st ; \">=\" ; dateAcctPeriod ) \n\t\t\t\t)\n\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\t\n\t\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\t\n\t\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\t\n\t\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\t\n\t\t\t\tend try\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace regexSearch_SemicolonPilcrowLine using regexReplace_SemicolonPilcrowLine options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\ton error errMsg number errNum\n\t\ttell application \"BBEdit\" to display dialog \"Upgrade SQL Query: ERROR: \" & errMsg & \" - number: \" & errNum\n\tend try\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.7 - 2019-04-25 ( dshockley ): Added error-trapping and handling. The param for the handler is now named prefs instead of accidentally being an empty list.\n\t1.6 - 2019-04-17 ( dshockley ): Added ExecuteOLD2. Added SemicolonPilcrowLine. \n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format(prefs)\n\t\n\ttry\n\t\t\n\t\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\t\n\t\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\t\n\t\t\n\t\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\t\n\t\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\t\n\t\t\n\t\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\t\n\t\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\t\n\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\t\n\t\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\t\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\t\n\t\t\n\t\t\n\t\t-- LITERAL SECTION:\n\t\t\n\t\tset literalSearch_SpacesToTabs to \" \"\n\t\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\t\n\t\tset literalSearch_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\t\n\t\tset literalSearch_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; Char ( 9 ); \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; Char ( 9 ) ; Char ( 13 ) )\"\n\t\t\n\t\t\n\t\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\t\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\t\n\t\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\t\n\t\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\t\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-- FINAL CLEANUP REGEX:\n\t\t\n\t\tset regexSearch_SemicolonPilcrowLine to \"^\\\\t+; [ \\\\t]*\\\\r\"\n\t\tset regexReplace_SemicolonPilcrowLine to \"\"\n\t\t\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tactivate\n\t\t\tdelay 0.1 -- make sure script has time to start??\n\t\t\t\n\t\t\ttell window 1\n\t\t\t\t\n\t\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace literalSearch_ExecuteOLD1 using literalReplace_ExecuteOLD1 options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_ExecuteOLD2 using literalReplace_ExecuteOLD2 options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\t\n\t\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\t\n\t\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\t\n\t\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\t\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace regexSearch_SemicolonPilcrowLine using regexReplace_SemicolonPilcrowLine options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\ton error errMsg number errNum\n\t\ttell application \"BBEdit\" to display dialog \"Upgrade SQL Query: ERROR: \" & errMsg & \" - number: \" & errNum\n\tend try\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5da81e3579f253cd934359af68ab7bb64e32b766","subject":"- from Br'fin, patch #642397: Applescript:Fix to handle spaces in path This patch fixes bochs.applescript to handle a case where there are spaces in the current path.","message":"- from Br'fin, patch #642397: Applescript:Fix to handle spaces in path\n This patch fixes bochs.applescript to handle a case where there are\n spaces in the current path.\n","repos":"dbrashear\/bochs,dariaphoebe\/bochs,dariaphoebe\/bochs,dbrashear\/bochs,dbrashear\/bochs,dbrashear\/bochs,dariaphoebe\/bochs,dariaphoebe\/bochs,dariaphoebe\/bochs,dbrashear\/bochs","old_file":"build\/macosx\/bochs.applescript","new_file":"build\/macosx\/bochs.applescript","new_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\n\nset script_name to name of (info for (path to me))\nset script_path to POSIX path of (path to me)\n\n-- replace target string using delimiters\nset AppleScript's text item delimiters to the script_name\nset the text_item_list to every text item of the script_path\nset AppleScript's text item delimiters to \"\"\nset the script_path to the text_item_list as string\n\ntell application \"Terminal\"\n\tactivate\n\tdo script \"cd \\\"\" & script_path & \"\\\";\" & bochs_path\n\t-- Wait for Terminal to change the name first, then change it to ours\n\tdelay 1\n\tset AppleScript's text item delimiters to \"\/\"\n\tset the text_item_list to every text item of the script_path\n\tset AppleScript's text item delimiters to \"\"\n\tset next_to_last to ((count of text_item_list) - 1)\n\tset the folder_name to item next_to_last of text_item_list\n\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\nend tell\n","old_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\n\nset script_name to name of (info for (path to me))\nset script_path to POSIX path of (path to me)\n\n-- replace target string using delimiters\nset AppleScript's text item delimiters to the script_name\nset the text_item_list to every text item of the script_path\nset AppleScript's text item delimiters to \"\"\nset the script_path to the text_item_list as string\n\ntell application \"Terminal\"\n\tactivate\n\tdo script \"cd \" & script_path & \";\" & bochs_path\n\t-- Wait for Terminal to change the name first, then change it to ours\n\tdelay 1\n\tset AppleScript's text item delimiters to \"\/\"\n\tset the text_item_list to every text item of the script_path\n\tset AppleScript's text item delimiters to \"\"\n\tset next_to_last to ((count of text_item_list) - 1)\n\tset the folder_name to item next_to_last of text_item_list\n\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\nend tell\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"f281cd4c23df9ae81a082ca4d2f873d33dd5ce38","subject":"updated iCal AppleScript - better event searching, and warning about missing repeat events","message":"updated iCal AppleScript - better event searching, and warning about missing repeat events\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401353\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u0002L\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000O\u0012GrowlHelperApp.appL\u00007\u0010\u0000\u0000\u0000@\u0000p\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u0000\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000O\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000)\u0000\u0000\u0000\u0001\u0000\u001c\u0000O\u0000O\u0000O\u0000\u0003+m\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000bWideBoy:Users:diggory:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000ZUsers\/diggory\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000l\u0000m\r\u0000l\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u0000=\u0000|\u0000p\r\u0000p\u0000\u0002r\u0000\u0000\u0000=\u0000|\u0000q\u0000r\r\u0000q\u0000\u0002c\u0000\u0000\u0000=\u0000x\u0000s\u0000t\r\u0000s\u0000\u0002l\u0000\u0005\u0000=\u0000t\u0000u\r\u0000u\u0000\u0002b\u0000\u0000\u0000=\u0000t\u0000v\u0000w\r\u0000v\u0000\u0002b\u0000\u0000\u0000=\u0000p\u0000x\u0000y\r\u0000x\u0000\u0002b\u0000\u0000\u0000=\u0000l\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000=\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000=\u0000`\u0000~\u0000\r\u0000~\u0000\u0002b\u0000\u0000\u0000=\u0000X\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000T\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000L\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000H\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000G\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000L\u0000S\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000S\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000L\u0000O\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000X\u0000_\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000[\u0000_\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000[\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000`\u0000c\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000{\u0000\u0002n\u0000\u0000\u0000d\u0000k\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000g\u0000k\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000d\u0000g\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000y\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0000\f\u0000\u0000\u0012\u0000\f 12:00:00 am\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000t\u0000w\n\u0000\u0004\nTEXT\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000}\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000}\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0012\u0000\f 11:59:59 pm\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwres\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0001\u0002\u0002&\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0002!\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001#\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0017\u0001\u001f\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0001\u001a\u0001\u001f\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u001a\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001$\u0001$\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001$\u0002!\u0000\u0001\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001*\u0002 \u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002r\u0000\u0000\u0001*\u00013\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u00012\u0000\u0000\u0001*\u0001\/\n\u0000\u0004\nwrev\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0002\u0001\u0003\u0000\u0002\u0001\u0006\r\u0001\u0006\u0000\u0005Y\u0000\u0000\u00014\u0002 \u0001\u0007\u0001\b\u0001\t~\r\u0001\u0007\u0000\u0001k\u0000\u0000\u0001I\u0002\u001b\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0001I\u0001U\u0001\r\u0001\u000e\r\u0001\r\u0000\u0002n\u0000\u0000\u0001I\u0001Q\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u00024\u0000\u0000\u0001L\u0001Q}\u0001\u0011\n}\u0000\u0004\ncobj\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001O\u0001P|\u000b|\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001I\u0001L{\u000b{\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0001\f\u0000\u0002\u0001\u0012y\r\u0001\u0012\u0000\u0002O\u0000\u0000\u0001V\u0002\u001b\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001k\u0000\u0000\u0001\\\u0002\u001a\u0001\u0015\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\u0002\u0001\\\u0001\\xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0001\u0001\\\u0001\\v\u0001\u001a\u0001v\u0000\u0000\f\u0001\u001a\u0000$\u0000\u001e\tCatch events that start today\u0000\u0002\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\\\u0001a\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0001\\\u0001]u\nu\u0000\b\u000bboovfals\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0001\u001c\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0004Z\u0000\u0000\u0001b\u0001\u0001!\u0001\"sr\r\u0001!\u0000\u0002F\u0000\u0000\u0001b\u0001{\u0001#\u0001$\r\u0001#\u0000\u0002l\u0000\u0005\u0001b\u0001k\u0001%q\r\u0001%\u0000\u0002?\u0000\u0000\u0001b\u0001k\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0001b\u0001gp\np\u0000\u0004\nwr1s\r\u0001'\u0000\u0001o\u0000\u0000\u0001g\u0001jo\u000bo\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001q\u0000\u0000\r\u0001$\u0000\u0002l\u0000\u0005\u0001n\u0001w\u0001(n\r\u0001(\u0000\u0002A\u0000\u0000\u0001n\u0001w\u0001)\u0001*\r\u0001)\u0000\u00011\u0000\u0000\u0001n\u0001sm\nm\u0000\u0004\nwr1s\r\u0001*\u0000\u0001o\u0000\u0000\u0001s\u0001vl\u000bl\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001n\u0000\u0000\r\u0001\"\u0000\u0002r\u0000\u0000\u0001~\u0001\u0001+\u0001,\r\u0001+\u0000\u0001m\u0000\u0000\u0001~\u0001k\nk\u0000\b\u000bboovtrue\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002s\u0000\u0000\u0001r\u0000\u0000\u0002\u0001 \u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002l\u0000\u0002\u0001\u0001ih\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0001\u0001\u0001g\u00011\u0001g\u0000\u0000\f\u00011\u0000F\u0000@\tCatch events that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u00010\u0000\u0002\u00012\u00013\r\u00012\u0000\u0004Z\u0000\u0000\u0001\u0001\u00014\u00015fe\r\u00014\u0000\u0002F\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002l\u0000\u0005\u0001\u0001\u00018d\r\u00018\u0000\u0002?\u0000\u0000\u0001\u0001\u00019\u0001:\r\u00019\u0000\u00011\u0000\u0000\u0001\u0001c\nc\u0000\u0004\nwr5s\r\u0001:\u0000\u0001o\u0000\u0000\u0001\u0001b\u000bb\u0000\u00070\u0000\u0003now\u0000\u0000\u0001d\u0000\u0000\r\u00017\u0000\u0002l\u0000\u0005\u0001\u0001\u0001;a\r\u0001;\u0000\u0002A\u0000\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u00011\u0000\u0000\u0001\u0001`\n`\u0000\u0004\nwr1s\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001a\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001>\u0001?\r\u0001>\u0000\u0001m\u0000\u0000\u0001\u0001^\n^\u0000\b\u000bboovtrue\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002f\u0000\u0000\u0001e\u0000\u0000\u0002\u00013\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\u0002\u0001\u0001\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0002l\u0000\u0002\u0001\u0001ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001C\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0004Z\u0000\u0000\u0001\u0002\u0018\u0001F\u0001GXW\r\u0001F\u0000\u0002l\u0000\u0005\u0001\u0001\u0001HV\r\u0001H\u0000\u0002=\u0000\u0003\u0001\u0001\u0001I\u0001J\r\u0001I\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\r\u0001J\u0000\u0001m\u0000\u0000\u0001\u0001T\nT\u0000\b\u000bboovtrue\u0001V\u0000\u0000\r\u0001G\u0000\u0001k\u0000\u0000\u0001\u0002\u0014\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001S\u0001NR\nS\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001N\u0000\u0002l\u0000\u0005\u0001\u0001\u0001OQ\r\u0001O\u0000\u0001m\u0000\u0000\u0001\u0001\u0001P\f\u0001P\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001Q\u0000\u0000\u0002R\u0000\u0000\u0002\u0001M\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002r\u0000\u0000\u0001\u0001\u0001S\u0001T\r\u0001S\u0000\u00011\u0000\u0000\u0001\u0001P\nP\u0000\u0004\nwr1s\r\u0001T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002r\u0000\u0000\u0001\u0001\u0001W\u0001X\r\u0001W\u0000\u0002n\u0000\u0000\u0001\u0001\u0001Y\u0001Z\r\u0001Y\u0000\u00011\u0000\u0000\u0001\u0001N\nN\u0000\u0004\ntstr\r\u0001Z\u0000\u0001o\u0000\u0000\u0001\u0001M\u000bM\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0001X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0001V\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0002r\u0000\u0000\u0001\u0001\u0001]\u0001^\r\u0001]\u0000\u0002c\u0000\u0000\u0001\u0001\u0001_\u0001`\r\u0001_\u0000\u0001K\u0000\u0000\u0001\u0001\u0001a\u0006\u0001a\u0000\u0003K\u0001b\u0001c\u000bK\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001b\u0000\u0002n\u0000\u0000\u0001\u0001\u0001d\u0001e\r\u0001d\u0000\u00011\u0000\u0000\u0001\u0001J\nJ\u0000\u0004\nwr11\r\u0001e\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001c\u0000\u0003H\u0001f\u0001g\u000bH\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001f\u0000\u0002n\u0000\u0000\u0001\u0001\u0001h\u0001i\r\u0001h\u0000\u00011\u0000\u0000\u0001\u0001G\nG\u0000\u0004\nwr12\r\u0001i\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001g\u0000\u0003E\u0001jD\u000bE\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001j\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006D\u0000\u0000\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0001B\nB\u0000\u0004\nreco\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0001\\\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002r\u0000\u0000\u0001\u0002\b\u0001m\u0001n\r\u0001m\u0000\u0002c\u0000\u0000\u0001\u0002\u0004\u0001o\u0001p\r\u0001o\u0000\u0001J\u0000\u0000\u0001\u0002\u0000\u0001q\u0002\u0001q\u0000\u0002\u0001r@\r\u0001r\u0000\u0001o\u0000\u0000\u0001\u0001?\u000b?\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002@\u0000\u0000\r\u0001p\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0003>\n>\u0000\u0004\nlist\r\u0001n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0001l\u0000\u0002\u0001s<\r\u0001s\u0000\u0002r\u0000\u0000\u0002\t\u0002\u0014\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0002\t\u0002\u0010\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0002\t\u0002\f;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001w\u0000\u0001o\u0000\u0000\u0002\f\u0002\u000f:\u000b:\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0001u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002<\u0000\u0000\u0002X\u0000\u0000\u0001W\u0000\u0000\u0002\u0001E\u0000\u0002\u0001x\u0001y\r\u0001x\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001987\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z6\r\u0001z\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001954\u00015\u0000\u0000\u00014\u0000\u0000\u00026\u0000\u0000\r\u0001\u0014\u0000\u0001o\u0000\u0000\u0001V\u0001Y3\u000b3\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002y\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\b\u0000\u0001m\u0000\u0000\u00017\u000182\u00032\u0000\u0001\r\u0001\t\u0000\u0002n\u0000\u0000\u00018\u0001D\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001?\u0001C1\n1\u0000\u0004\nnmbr\r\u0001|\u0000\u0002n\u0001\u0000\u00018\u0001?\u0001}\u0001~\r\u0001}\u0000\u00012\u0000\u0001\u0001;\u0001?0\n0\u0000\u0004\ncobj\r\u0001~\u0000\u0001o\u0000\u0000\u00018\u0001;\/\u000b\/\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0001~\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001$\u0001'.\u000b.\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006-\u0003-\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\u0012\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0011,\n,\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0001\u0006\u0001\r\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0001\t\u0001\r+\n+\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0006\u0001\t*\u000b*\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002')(\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002''&\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0001\u0002'\u0002'%\u0001\u0001%\u0000\u0000\f\u0001\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u0002'\u0002\u0001$\u0001\u0001#\r\u0001\u0000\u0001k\u0000\u0000\u0002<\u0002\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002<\u0002H\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002<\u0002D\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0002?\u0002D\"\u0001\n\"\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002C!\u000b!\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002<\u0002? \u000b \u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002I\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002L\u0002c\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0005\u0002L\u0002_\u0001\u001e\r\u0001\u0000\u0002b\u0000\u0000\u0002L\u0002_\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002L\u0002W\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002L\u0002S\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002O\u0002S\u001d\u000b\u001d\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001\u0000\u0001o\u0000\u0000\u0002L\u0002O\u001c\u000b\u001c\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001m\u0000\u0000\u0002S\u0002V\u0001\f\u0001\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002W\u0002^\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002Z\u0002^\u001b\u000b\u001b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002W\u0002Z\u001a\u000b\u001a\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001\u001e\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0017\u0016\n\u0018\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0017\u0000\u0000\u0002\u0016\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002k\u0002z\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002k\u0002v\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002k\u0002n\u0001\f\u0001\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002n\u0002u\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002q\u0002u\u0015\u000b\u0015\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002n\u0002q\u0014\u000b\u0014\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002{\u0002{\u0012\u0011\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002{\u0002\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002~\u0002\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002~\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u0010\u000b\u0010\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001\u0000\u0001o\u0000\u0000\u0002~\u0002\u000f\u000b\u000f\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\r\f\u000b\n\r\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\f\u0000\u0000\u0002\u000b\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\t\b\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0002O\u0000\u0001\u0002\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0006\r\u0001\u0000\u0003I\u0000\u0002\u0002\u0002\u0005\u0004\u0001\n\u0005\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0004\u0000\u0000\u0006\u0001\u0000\u0003\u0003\u0001\u0001\n\u0003\u0000\u0004\nname\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0002\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001\u0002\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\u0001\n\u0001\u0000\u0004\ntitl\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\ndesc\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nappl\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0001\u0006\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0000P\u0002\u0007\u0000\u0000\u000b$\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002*\u0002+\u0003\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002+\u00027\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00022\u00026\n\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0002+\u00022\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0002.\u00022\n\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002+\u0002.\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001#\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000f\u0001\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0003^\biCal.app`\u00000L\u00007\u0010\u0590\u00000\u0000p\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u05b0\u0000wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\u0003^\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0014\u001e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0006\u000e\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0003^\u0000\u0002\u0000\u001dWideBoy:Applications:iCal.app\u0000\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001\u0002\u0001\u0000\u0002\u0000.\u0001\u0002\u0001\u0000\u0002\u0000i\u0001\u0002\u0001\u0000\u0002\u0000n\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\u0010\u0001\u0000S\u0000P\u0000B\u0000D\u0000I\u0000O\u0000X\u0000\\\u0000`\u0000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001P\u0001\u0001\u0001\u0001\u0001\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u0000\u0004\nappl\n\u0000\u0004\nanot\n\u0000\u0004\ndnot\n\u0000\u0004\niapp\u0003\u0000\b\n\u0000\u0018.registernull\u0000\u0000null\n\u0000\u0004\nname\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0018.notifygrnull\u0000\u0000null\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0000\u0004\nwkdy\n\u0000\u0004\nmnth\n\u0000\u0004\nday \n\u0000\u0004\nyear\n\u0000\u0004\nTEXT\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\n\u0000\u0004\nldt \u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0000\u0004\nwres\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\n\u0000\u0004\nlist\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\n\u0000\u0004\nwrev\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\n\u0000\u0004\nwr1s\n\u0000\u0004\nbool\n\u0000\u0004\nwr5s\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\n\u0000\u0004\ntstr\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0000\u0004\nwr11\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0000\u0004\nwr12\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0000\u0006\n\u0000\u0004\nreco\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011\u0002\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015Oa\u0000\u0016_\u0000\u0015a\u0000\u0017,%a\u0000\u0018%_\u0000\u0015a\u0000\u0019,%a\u0000\u001a%_\u0000\u0015a\u0000\u001b,%a\u0000\u001c%_\u0000\u0015a\u0000\u001d,%a\u0000\u001e%a\u0000\u001f%a\u0000 &E`\u0000!O*a\u0000\"_\u0000!\/E`\u0000#O_\u0000#j\f\u0000$Oa\u0000%_\u0000\u0015a\u0000\u0017,%a\u0000&%_\u0000\u0015a\u0000\u0019,%a\u0000'%_\u0000\u0015a\u0000\u001b,%a\u0000(%_\u0000\u0015a\u0000\u001d,%a\u0000)%a\u0000*%a\u0000 &E`\u0000+O*a\u0000\"_\u0000+\/E`\u0000,O_\u0000,j\f\u0000$Oa\u0000-\u0012\u0001*a\u0000.-E`\u0000\/Ojva\u00000&E`\u00001O\u0017\u0001#k_\u0000\/a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u0000\/a\u00002\/E`\u00004O_\u00004\u0012\u0000*a\u00005-E`\u00006O\u0017\u0000k_\u00006a\u00002-a\u00003,Ekh\u001c\u0000\u0001_\u00006a\u00002\/E`\u00007O_\u00007\u0012\u0000fE`\u00008O*a\u00009,_\u0000#\u0002\t\u0000\u000f*a\u00009,_\u0000,\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO*a\u0000;,_\u0000\u0015\u0002\t\u0000\u000f*a\u00009,_\u0000#\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO_\u00008e\u0000\u001d\u0000ca\u0000<j\f\u0000$O*a\u00009,E`\u0000=O_\u0000=a\u0000>,E`\u0000?Oa\u0000@_\u00007a\u0000A,a\u0000B_\u00007a\u0000C,a\u0000D_\u0000?a\u0000E\u000ea\u0000F&E`\u0000GO_\u0000Gkva\u00000&E`\u0000HO_\u00001_\u0000H%E`\u00001Y\u0000\u0003hOPU[OY(U[OYO\u0017\u0000k_\u00001a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u00001a\u00002\/E`\u0000IO\u0014\u0000\u001c_\u0000Ia\u0000@,a\u0000J%_\u0000Ia\u0000D,%E`\u0000KW\u0000\u0016X\u0000L\u0000Ma\u0000N_\u0000Ia\u0000D,%E`\u0000KO\u0014\u0000\u0010_\u0000Ia\u0000B,E`\u0000OW\u0000\u000eX\u0000L\u0000Ma\u0000PE`\u0000OO\u0012\u0000\u0019*a\u0000Q_\u0000Ka\u0000\u0010_\u0000Oa\u0000R\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u0002\b\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000O\u0015\u0012GrowlHelperApp.appL\u00007\u0010\u0000p\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000O\u0015\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u001a{&\u0747\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005build\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000&\u0747\u0000\u0000\u0000\u0001\u0000\u0018\u0000O\u0015\u0000N>\u0000\u0004\/\u0000\u0004\/\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000DWideBoy:Users:diggory:Code:OpenSource:growl:build:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000<Users\/diggory\/Code\/OpenSource\/growl\/build\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000+\u0000%Gathering today's events from iCal...\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\f\u0000m\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u00003\u0001\u0000p\r\u0000p\u0000\u0002O\u0000\u0000\u00003\u0001\u0000q\u0000r\r\u0000q\u0000\u0001k\u0000\u0000\u00009\u0001\u0000s\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002r\u0000\u0000\u00009\u0000B\u0000v\u0000w\r\u0000v\u0000\u0003I\u0000\u0002\u00009\u0000>\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0002\u0000u\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000C\u0000L\u0000z\u0000{\r\u0000z\u0000\u00012\u0000\u0000\u0000C\u0000H\n\u0000\u0004\nwres\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0002\u0000y\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002r\u0000\u0000\u0000M\u0000W\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000M\u0000S\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000M\u0000O\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000X\u0001\u0018\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000m\u0001\u0013\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000m\u0000y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000m\u0000u\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000p\u0000u\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000p\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000z\u0000z\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000z\u0001\u0013\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\u0012\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\r\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\r\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\f\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\f\u0000\u0000\r\u0000\u0000\u0002A\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\b\u0000\u0000\r\u0000\u0000\u0002?\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d\tThis checking is pretty bad \u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000B\u0000< events today that have already elapsed are not included.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e\tlog (\"CURRENT EVENT!\")\t\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000z\u0000}\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0003\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0000\\\u0000h\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000c\u0000g\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000\\\u0000c\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000_\u0000c~\n~\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_}\u000b}\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u0019\u0001\u0019|{\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u0019\u0001\u0019zy\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001\u0019\u0001\u0019x\u0000\u0001x\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0001\u0019\u0001\u0000w\u0000\u0000v\r\u0000\u0000\u0001k\u0000\u0000\u0001.\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001.\u0001:\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001.\u00016\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00011\u00016u\u0000\nu\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u00014\u00015t\u000bt\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001.\u00011s\u000bs\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001;\u0001X\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001>\u0001I\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001>\u0001E\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001Eq\u000bq\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0001>\u0001Ap\u000bp\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000nml\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001m\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001Q\u0001X\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0001Q\u0001T\u0001\u0004\f\u0001\u0004\u0000\u0010\u0000\nno summary\u0000\u0002\u0000\u0000\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0002l\u0000\u0002\u0001Y\u0001Yji\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003Q\u0000\u0000\u0001Y\u0001v\u0001\t\u0001\n\u0001\u000b\r\u0001\t\u0000\u0002r\u0000\u0000\u0001\\\u0001g\u0001\f\u0001\r\r\u0001\f\u0000\u0002n\u0000\u0000\u0001\\\u0001c\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0001_\u0001ch\u000bh\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0001\\\u0001_g\u000bg\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000edc\ne\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001d\u0000\u0000\u0002c\u0000\u0000\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0001o\u0001v\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001\u0012\f\u0001\u0012\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001\b\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002l\u0000\u0002\u0001w\u0001wa`\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015_\r\u0001\u0015\u0000\u0002O\u0000\u0001\u0001w\u0001\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\t\u0001{\u0001\u0001\u0018^\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0001{\u0001]\\\u0001\u0019\n]\u0000\u0018.notifygrnull\u0000\u0000null\u0001\\\u0000\u0000\u0006\u0001\u0019\u0000\u0003[\u0001\u001a\u0001\u001b\n[\u0000\u0004\nname\r\u0001\u001a\u0000\u0002l\u0000\t\u0001}\u0001\u0001\u001cZ\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001}\u0001\u0001\u001d\f\u0001\u001d\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001Z\u0000\u0000\u0006\u0001\u001b\u0000\u0003Y\u0001\u001e\u0001\u001f\nY\u0000\u0004\ntitl\r\u0001\u001e\u0000\u0002l\u0000\t\u0001\u0001\u0001 X\r\u0001 \u0000\u0001o\u0000\u0000\u0001\u0001W\u000bW\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001X\u0000\u0000\u0006\u0001\u001f\u0000\u0003V\u0001!\u0001\"\nV\u0000\u0004\ndesc\r\u0001!\u0000\u0002l\u0000\t\u0001\u0001\u0001#U\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0001T\u000bT\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001U\u0000\u0000\u0006\u0001\"\u0000\u0003S\u0001$R\nS\u0000\u0004\nappl\r\u0001$\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006R\u0000\u0000\u0001^\u0000\u0000\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0001w\u0001x\u0000P\u0002_\u0000\u0000\u000bw\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001dQ\u0003Q\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0001\u001d\u0001)\u0001&\u0001'\r\u0001&\u0000\u0001m\u0000\u0000\u0001$\u0001(P\nP\u0000\u0004\nnmbr\r\u0001'\u0000\u0002n\u0001\u0000\u0001\u001d\u0001$\u0001(\u0001)\r\u0001(\u0000\u00012\u0000\u0001\u0001 \u0001$O\nO\u0000\u0004\ncobj\r\u0001)\u0000\u0001o\u0000\u0000\u0001\u001d\u0001 N\u000bN\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0002l\u0000\u0002\u0001\u0001ML\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002l\u0000\u0002\u0001\u0001KJ\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0002l\u0000\u0001\u0001\u0001I\u00010\u0001I\u0000\u0000\f\u00010\u0000#\u0000\u001d\texplain if there aren't any:\u0000\u0002\u0000\u0000\u0002\u0001\/\u0000\u0002\u00011\u00012\r\u00011\u0000\u0002l\u0000\u0002\u0001\u0001HG\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0004Z\u0000\u0000\u0001\u0001\u00015\u00016FE\r\u00015\u0000\u0002=\u0000\u0000\u0001\u0001\u00017\u00018\r\u00017\u0000\u0002l\u0000\u0005\u0001\u0001\u00019D\r\u00019\u0000\u0002n\u0000\u0000\u0001\u0001\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0001C\nC\u0000\u0004\nnmbr\r\u0001;\u0000\u0002n\u0001\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u00012\u0000\u0001\u0001\u0001B\nB\u0000\u0004\ncobj\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001D\u0000\u0000\r\u00018\u0000\u0001m\u0000\u0000\u0001\u0001@\u0003@\u0000\u0000\r\u00016\u0000\u0001k\u0000\u0000\u0001\u0001\u0001>\u0002\u0001>\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0002O\u0000\u0001\u0001\u0001\u0001A\u0001B\r\u0001A\u0000\u0002l\u0000\t\u0001\u0001\u0001C?\r\u0001C\u0000\u0003I\u0000\u0002\u0001\u0001>=\u0001D\n>\u0000\u0018.notifygrnull\u0000\u0000null\u0001=\u0000\u0000\u0006\u0001D\u0000\u0003<\u0001E\u0001F\n<\u0000\u0004\nname\r\u0001E\u0000\u0002l\u0000\t\u0001\u0001\u0001G;\r\u0001G\u0000\u0001m\u0000\u0000\u0001\u0001\u0001H\f\u0001H\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001;\u0000\u0000\u0006\u0001F\u0000\u0003:\u0001I\u0001J\n:\u0000\u0004\ntitl\r\u0001I\u0000\u0002l\u0000\t\u0001\u0001\u0001K9\r\u0001K\u0000\u0001m\u0000\u0000\u0001\u0001\u0001L\f\u0001L\u0000\u000f\u0000\tNo Events\u0000\u0002\u0000\u0000\u00019\u0000\u0000\u0006\u0001J\u0000\u00038\u0001M\u0001N\n8\u0000\u0004\ndesc\r\u0001M\u0000\u0002l\u0000\t\u0001\u0001\u0001O7\r\u0001O\u0000\u0001m\u0000\u0000\u0001\u0001\u0001P\f\u0001P\u0000>\u00008There are no events in iCal today - go outside and play!\u0000\u0002\u0000\u0000\u00017\u0000\u0000\u0006\u0001N\u0000\u00036\u0001Q5\n6\u0000\u0004\nappl\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001R\f\u0001R\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u00065\u0000\u0000\u0001?\u0000\u0000\r\u0001B\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002\u0001@\u0000\u0002\u0001S4\r\u0001S\u0000\u0002l\u0000\u0002\u0001\u000132\u00013\u0000\u0000\u00012\u0000\u0000\u00024\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u0001T1\r\u0001T\u0000\u0002l\u0000\u0002\u0001\u00010\/\u00010\u0000\u0000\u0001\/\u0000\u0000\u00021\u0000\u0000\r\u0000r\u0000\u0001m\u0000\u0000\u00003\u00006\u0001U\u000f\u0001U\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0003^\biCal.appP\u0000\u0000\u0000P\u00000\u0000\u0000\u0000\u0000`\u0005U\u00000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000e\u0002(-l\u0000\u0000wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\u0003^\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0014\u001e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0006\u000e\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0003^\u0000\u0002\u0000\u001dWideBoy:Applications:iCal.app\u0000\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000.-\u0001.\u0000\u0000\u0001-\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X,\r\u0001X\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000+*\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002,\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003)\u0001Y\u0001Z\u0001)\u0000\u0000\u0010\u0001Y\u0000\u0001(\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001Z\u0000\u0007\u0010'\u0001[&%\u0001\\\u0001]$\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001[\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001^\u0002\u0001^\u0000\u0002\u0000.\u0001_\u0002\u0001_\u0000\u0002\u0000n#\u0002#\u0000\u0000\u0001&\u0000\u0000\u0002%\u0000\u0000\u0010\u0001\\\u0000\u0002\"!\u000b\"\u0000\u00050\u0000\u0001i\u0000\u0000\u000b!\u0000\u00060\u0000\u0002ii\u0000\u0000\u0010\u0001]\u00008\u0000P\u0000B\u0000D \u001f\u0000I\u001e\u001d\u001c\u0000O\u001b\u001a\u0019\u0000X\u0018\u0000\\\u0017\u0000`\u0000b\u0016\u0001U\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0000\u0001\u0004\u0001\u0012\u0001\u001d\u0001%\u0001H\u0001L\u0001P\u0001R\u000b \u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u001f\u0000\u0004\nappl\n\u001e\u0000\u0004\nanot\n\u001d\u0000\u0004\ndnot\n\u001c\u0000\u0004\niapp\u0003\u001b\u0000\b\n\u001a\u0000\u0018.registernull\u0000\u0000null\n\u0019\u0000\u0004\nname\n\u0018\u0000\u0004\ntitl\n\u0017\u0000\u0004\ndesc\n\u0016\u0000\u0018.notifygrnull\u0000\u0000null\n\u0015\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0014\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0013\u0000\u0004\nwres\u000b\u0012\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\n\u0011\u0000\u0004\nlist\u000b\u0010\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u000f\u0000\u0004\ncobj\n\u000e\u0000\u0004\nnmbr\u000b\r\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\n\f\u0000\u0004\nwrev\u000b\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u000b\n\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\n\t\u0000\u0004\nwr1s\n\b\u0000\u0004\nwr5s\u000b\u0007\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0006\u0000\u0004\nwr11\u000b\u0005\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0004\u0000\u0004\nwr12\u0003\u0003\u0000\u0004\n\u0002\u0000\u0004\nreco\u000b\u0001\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011$\u0001\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UOa\u0000\u0014\u0012\u0001*j\f\u0000\u0015E`\u0000\u0016O*a\u0000\u0017-E`\u0000\u0018Ojva\u0000\u0019&E`\u0000\u001aO\u0017\u0000k_\u0000\u0018a\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0000_\u0000\u0018a\u0000\u001b\/E`\u0000\u001dO_\u0000\u001d\u0012\u0000*a\u0000\u001e-E`\u0000\u001fO\u0017\u0000k_\u0000\u001fa\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0001_\u0000\u001fa\u0000\u001b\/E`\u0000 O_\u0000 \u0012\u0000\\*a\u0000!,_\u0000\u0016\u0004\u001d\u0000O*a\u0000\",_\u0000\u0016\u0002\u001d\u0000?a\u0000#_\u0000 a\u0000$,a\u0000%_\u0000 a\u0000&,a\u0000'\u000ea\u0000(&E`\u0000)O_\u0000)kva\u0000\u0019&E`\u0000*O_\u0000\u001a_\u0000*%E`\u0000\u001aY\u0000\u0003hY\u0000\u0003hU[OYU[OYTO\u0017\u0000~k_\u0000\u001aa\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0000_\u0000\u001aa\u0000\u001b\/E`\u0000+O\u0014\u0000\u0010_\u0000+a\u0000#,E`\u0000,W\u0000\u000eX\u0000-\u0000.a\u0000\/E`\u0000,O\u0014\u0000\u0010_\u0000+a\u0000%,E`\u00000W\u0000\u000eX\u0000-\u0000.a\u00001E`\u00000O\u0012\u0000\u0019*a\u00002_\u0000,a\u0000\u0010_\u00000a\u00003\f\u0000\u0013U[OYO_\u0000\u001aa\u0000\u001b-a\u0000\u001c,j\u0000\u001d\u0000#\u0012\u0000\u0019*a\u00004a\u00005a\u0000\u0010a\u00006a\u00007\f\u0000\u0013UOPY\u0000\u0003hOPU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f1d7c0ef1e00234860adcca72689550d05ef2ab2","subject":"Added document name to _xml.applescript","message":"Added document name to _xml.applescript","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/skim\/_xml.applescript","new_file":"io.dimitris.scriptbar\/scripts\/skim\/_xml.applescript","new_contents":"tell application \"Skim\"\n\tactivate\n\tset xml to \"<document name=\" & quote & name of document 1 & quote & \">\" & return\n\tset lastPage to count pages of document 1\n\tset firstPage to 1\n\t\n\trepeat with currentPage from firstPage to lastPage\n\t\tset pageNotes to notes of page currentPage of document 1\n\t\t\n\t\tset xml to xml & tab & \"<page number=\" & quote & currentPage & quote & \">\" & return\n\t\t\n\t\trepeat with pageNote in pageNotes\n\t\t\tset xml to xml & tab & tab & \"<note type=\" & quote & (get type of pageNote) & quote & \">\" & return\n\t\t\tset noteText to (get text of pageNote)\n\t\t\tset xml to xml & tab & tab & tab & \"<text><![CDATA[\" & noteText & \"]]><\/text>\" & return\n\t\t\tset noteBounds to get bounds for pageNote\n\t\t\t\n\t\t\tset pageHeight to get item 3 of (get bounds for (page currentPage of document 1))\n\t\t\tset x to item 1 of noteBounds\n\t\t\tset y to item 4 of noteBounds\n\t\t\tset width to (item 3 of noteBounds) - x\n\t\t\tset height to (item 2 of noteBounds) - y\n\t\t\tset y to pageHeight - y\n\t\t\t\n\t\t\tset xml to xml & tab & tab & tab & \"<bounds \" & \"x=\" & quote & x & quote & \" y=\" & quote & y & quote & \" width=\" & quote & width & quote & \" height=\" & quote & height & quote & \"\/>\" & return\n\t\t\t\n\t\t\tset noteColor to get color of pageNote\n\t\t\tset cRed to item 1 of noteColor\n\t\t\tset cGreen to item 2 of noteColor\n\t\t\tset cBlue to item 3 of noteColor\n\t\t\tset cAlpha to item 4 of noteColor\n\t\t\t\n\t\t\tset xml to xml & tab & tab & tab & \"<color \" & \"red=\" & quote & cRed & quote & \" green=\" & quote & cGreen & quote & \" blue=\" & quote & cBlue & quote & \" alpha=\" & quote & cAlpha & quote & \"\/>\" & return\n\t\t\t\n\t\t\tset xml to xml & tab & tab & \"<\/note>\" & return\n\t\tend repeat\n\t\t\n\t\tset xml to xml & tab & \"<\/page>\" & return\n\t\t\n\tend repeat\n\t\n\tset xml to xml & \"<\/document>\"\n\treturn xml\n\t\nend tell","old_contents":"tell application \"Skim\"\n\tactivate\n\tset xml to \"<document>\" & return\n\tset lastPage to count pages of document 1\n\tset firstPage to 1\n\t\n\trepeat with currentPage from firstPage to lastPage\n\t\tset pageNotes to notes of page currentPage of document 1\n\t\t\n\t\tset xml to xml & tab & \"<page number=\" & quote & currentPage & quote & \">\" & return\n\t\t\n\t\trepeat with pageNote in pageNotes\n\t\t\tset xml to xml & tab & tab & \"<note type=\" & quote & (get type of pageNote) & quote & \">\" & return\n\t\t\tset noteText to (get text of pageNote)\n\t\t\tset xml to xml & tab & tab & tab & \"<text><![CDATA[\" & noteText & \"]]><\/text>\" & return\n\t\t\tset noteBounds to get bounds for pageNote\n\t\t\t\n\t\t\tset pageHeight to get item 3 of (get bounds for (page currentPage of document 1))\n\t\t\tset x to item 1 of noteBounds\n\t\t\tset y to item 4 of noteBounds\n\t\t\tset width to (item 3 of noteBounds) - x\n\t\t\tset height to (item 2 of noteBounds) - y\n\t\t\tset y to pageHeight - y\n\t\t\t\n\t\t\tset xml to xml & tab & tab & tab & \"<bounds \" & \"x=\" & quote & x & quote & \" y=\" & quote & y & quote & \" width=\" & quote & width & quote & \" height=\" & quote & height & quote & \"\/>\" & return\n\t\t\t\n\t\t\tset noteColor to get color of pageNote\n\t\t\tset cRed to item 1 of noteColor\n\t\t\tset cGreen to item 2 of noteColor\n\t\t\tset cBlue to item 3 of noteColor\n\t\t\tset cAlpha to item 4 of noteColor\n\t\t\t\n\t\t\tset xml to xml & tab & tab & tab & \"<color \" & \"red=\" & quote & cRed & quote & \" green=\" & quote & cGreen & quote & \" blue=\" & quote & cBlue & quote & \" alpha=\" & quote & cAlpha & quote & \"\/>\" & return\n\t\t\t\n\t\t\tset xml to xml & tab & tab & \"<\/note>\" & return\n\t\tend repeat\n\t\t\n\t\tset xml to xml & tab & \"<\/page>\" & return\n\t\t\n\tend repeat\n\t\n\tset xml to xml & \"<\/document>\"\n\treturn xml\n\t\nend tell","returncode":0,"stderr":"","license":"epl-1.0","lang":"AppleScript"} {"commit":"ffeece1eb5445a75d34edf403f0268d86334516c","subject":"make the injector script more robust => repeat injection trials to overcome -609 errors","message":"make the injector script more robust => repeat injection trials to overcome -609 errors\n","repos":"binaryage\/totalfinder-installer","old_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"set lastErrMsg to \"Unable to inject TotalFinder\"\nset lastErrCode to -1\nset failed to yes\nset nextDelay to 1\n\ntell application \"Finder\"\n\tset startTime to current date\n\n\t-- under some conditions like system startup the system may be busy delivering apple events\n\t-- in this case we may get random \"Connection is Invalid -609\" AppleScript errors\n\t-- solution: we try it multiple times\n\trepeat\n\t\t-- increase the delay between individual trials\n\t\tlog \"delay \" & (nextDelay as text) & \"...\"\n\t\tdelay nextDelay\n\t\tset nextDelay to nextDelay + 1\n\t\t\n\t\t-- try injection\n\t\ttry\n\t\t\tevent BATFinit\n\t\t\tset failed to no\n\t\t\texit repeat\n\t\ton error msg number code\n\t\t\tlog \"error: \" & msg & \"(\" & (code as text) & \")\"\n\t\t\tset lastErrMsg to msg\n\t\t\tset lastErrCode to code\n\t\tend try\n\t\t\n\t\t-- make sure we don't repeat this forever, two minutes should be enough\n\t\tif (current date) - startTime is greater than (2 * 60) then exit repeat\n\t\t\n\tend repeat\n\t\n\tif failed is yes then\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & lastErrMsg & \" (\" & (lastErrCode as text) & \")\" & \" \n\nPlease email support@binaryage.com to get support on this issue.\" with icon 0 giving up after 30\n\tend if\n\t\nend tell","old_contents":"tell application \"Finder\"\n\tdelay 3 -- this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors \n\ttry\n\t\tevent BATFinit\n\ton error msg number num\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & msg & \" (\" & (num as text) & \")\" & \" \n\nYou may visit \nhttp:\/\/getsatisfaction.com\/binaryage \nto get support on this issue.\" with icon 0\n\tend try\nend tell","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"35a60a6df5004737af8387ca69d829d86d35366e","subject":"Don\u2019t set a label for our items in the mac installer","message":"Don\u2019t set a label for our items in the mac installer\n","repos":"gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm","old_file":"indra\/newview\/installers\/darwin\/installer-dmg.applescript","new_file":"indra\/newview\/installers\/darwin\/installer-dmg.applescript","new_contents":"-- This Applescript sets up the installer disk image: size, background image,\n-- icon view, background image, icon positioning.\n-- Usage: osascript installer-dmg.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\n\t\t\tset theXOrigin to 400\n\t\t\tset theYOrigin to 100\n\t\t\tset theWidth to 500\n\t\t\tset theHeight to 600\n\t\t\tset iconSize to 100\n\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\n\t\t\t\tset file_list to every file\n\t\t\t\trepeat with i in file_list\n\t\t\t\t\tif the name of i is \"Applications\" then\n\t\t\t\t\t\tset the position of i to {345, 125}\n\t\t\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\t\t\tset the position of i to {145, 125}\n\t\t\t\t\telse if the name of i is \"LGPL License.txt\" then\n\t\t\t\t\t\tset the position of i to {145, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\telse if the name of i is \"Vivox Acceptable Use Policy.txt\" then\n\t\t\t\t\t\tset the position of i to {345, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t-- This close-open hack is nessesary to save positions on 10.6 Snow Leopard\n\t\t\tclose\n\t\t\topen\n\t\t\tend tell\n\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to iconSize\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\n\t\t\tset background picture of opts to file \"background.png\"\n\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\tdelay 1\n\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"-- This Applescript sets up the installer disk image: size, background image,\n-- icon view, background image, icon positioning.\n-- Usage: osascript installer-dmg.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\n\t\t\tset theXOrigin to 400\n\t\t\tset theYOrigin to 100\n\t\t\tset theWidth to 500\n\t\t\tset theHeight to 600\n\t\t\tset iconSize to 100\n\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\n\t\t\t\tset file_list to every file\n\t\t\t\trepeat with i in file_list\n\t\t\t\t\tif the name of i is \"Applications\" then\n\t\t\t\t\t\tset the position of i to {345, 125}\n\t\t\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\t\t\tset the position of i to {145, 125}\n\t\t\t\t\telse if the name of i is \"LGPL License.txt\" then\n\t\t\t\t\t\tset the position of i to {145, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\telse if the name of i is \"Vivox Acceptable Use Policy.txt\" then\n\t\t\t\t\t\tset the position of i to {345, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change the 7 to change the color: 0 is no label, then red,\n\t\t\t\t\t-- orange, yellow, green, blue, purple, or gray.\n\t\t\t\t\tset the label index of i to 7\n\t\t\t\tend repeat\n\t\t\t-- This close-open hack is nessesary to save positions on 10.6 Snow Leopard\n\t\t\tclose\n\t\t\topen\n\t\t\tend tell\n\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to iconSize\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\n\t\t\tset background picture of opts to file \"background.png\"\n\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\tdelay 1\n\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"4ec89f05be8499a75b7ff4ae9cf2218ec38ce12e","subject":"INTEGRATION: CWS aquabundle (1.2.30); FILE MERGED 2007\/05\/24 20:53:41 obr 1.2.30.1: #i73693# moved office directory structure up in the Mac OS X bundle and renamed program to MacOS","message":"INTEGRATION: CWS aquabundle (1.2.30); FILE MERGED\n2007\/05\/24 20:53:41 obr 1.2.30.1: #i73693# moved office directory structure up in the Mac OS X bundle and renamed program to MacOS\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/main.applescript","new_file":"instsetoo_native\/macosx\/application\/main.applescript","new_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n *\n * $Revision: 1.4 $\n *\n * last change: $Author: ihi $ $Date: 2007-06-05 11:52:25 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\treturn (((path to me) as string) & \"Contents:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"MacOS:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\t\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\"\n\t\tif the button returned of the result is \"Quit\" then\n\t\t\tquit\n\t\telse\n\t\t\t-- if more info is chosen, then open a help web page\n\t\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t\t-- cannot continue, so quit the script\n\t\t\treturn \"error\"\n\t\tend if\n\t\t\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","old_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n *\n * $Revision: 1.3 $\n *\n * last change: $Author: kz $ $Date: 2007-05-10 09:15:16 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\t-- return (((path to applications folder from system domain) as string) & \"OpenOffice %PRODUCTVERSION.app:\" & \"Contents:MacOS:\")\n\treturn (((path to me) as string) & \"Contents:MacOS:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"program:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\t\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\"\n\t\tif the button returned of the result is \"Quit\" then\n\t\t\tquit\n\t\telse\n\t\t\t-- if more info is chosen, then open a help web page\n\t\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t\t-- cannot continue, so quit the script\n\t\t\treturn \"error\"\n\t\tend if\n\t\t\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"b5bcf18a0645c8b3692b6737420165e5f124685c","subject":"initial commit","message":"initial commit\n","repos":"DanShockley\/FmClipTools","old_file":"Clipboard - Replace String in FileMaker Objects.applescript","new_file":"Clipboard - Replace String in FileMaker Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"436ce9d891dc52d6865d2e84a76f085ce66d5101","subject":"Clean up devtools mac script logic","message":"Clean up devtools mac script logic\n","repos":"trevordmiller\/shell-scripts,trevordmiller\/shell-scripts,trevordmiller\/settings,trevordmiller\/settings","old_file":"mac\/script-domo.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/script-domo.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\b\u0000D\u0000o\u0000m\u0000o\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u001d\u0000d\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000g\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000f\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u0002\u0000j\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000n\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000s\u000e\u0000s\u0000\u0001\u0000t\u0011\u0000t\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000r\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000v\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000D\u0000a\u0000s\u0000h\u0002\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000 \u0000A\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000 \u0000A\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00002\u0000<\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u00002\u00008\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000B\u0000Q\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000B\u0000Q\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000B\u0000M\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000B\u0000E\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000*\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000h\u0000o\u0000s\u0000t\u0000:\u00003\u00000\u00000\u00000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000R\u0000t\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000R\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000f\u0000o\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000f\u0000k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002\u0000\u0000\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000u\u0000}\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000u\u0000}\u0000\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000-\u0000' Open terminal\/editor window arrangment\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000N\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\/\u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000a\u0000r\u0000r\u0000a\u0000n\u0000g\u0000m\u0000e\u0000n\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000~\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000r\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nfaal\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKsft\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002_Q\u0240\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000~\u0003~\u0000\u0012\u0006\u0000\u0000\u0003}\u0000|\n}\u0000\u0004\nfaal\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000z\nz\u0000\b\u000beMdsKopt\u0002\u0001\u0001\u0000\u0002\u0001\u0002y\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0000\u0000x\nx\u0000\b\u000beMdsKctl\u0002y\u0000\u0000\u0006|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0003\u000f\u0001\u0003\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000wvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000t\u0001\b\u0001\t\u0001t\u0000\u0000\f\u0001\b\u0000!\u0000\u001b Fullscreen terminal\/editor\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u00006\u0000 \u0000F\u0000u\u0000l\u0000l\u0000s\u0000c\u0000r\u0000e\u0000e\u0000n\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\/\u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rsr\r\u0001\r\u0000\u0003I\u0000\u0002\u0000\u0000q\u0001\u000ep\nq\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000\u0001\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0011nm\r\u0001\u0011\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003I\u0000\u0002\u0000\u0000lkj\nl\u0000\u0018.miscactvnull\u0000\u0000null\u0001k\u0000\u0000\u0002j\u0000\u0000\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\u000f\u0001\u0014\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002_Q\u0240\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0017ih\r\u0001\u0017\u0000\u0002O\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0000g\u0001\u001a\u0001\u001b\ng\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000f\u0003f\u0000$\u0006\u0001\u001b\u0000\u0003e\u0001\u001cd\ne\u0000\u0004\nfaal\r\u0001\u001c\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u001ec\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000b\nb\u0000\b\u000beMdsKcmd\u0002c\u0000\u0000\u0006d\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001f\u000f\u0001\u001f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u0001$\u0001%\u0001^\u0000\u0000\f\u0001$\u0000\u0015\u0000\u000f Open Dev Tools\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000\u001e\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000D\u0000e\u0000v\u0000 \u0000T\u0000o\u0000o\u0000l\u0000s\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003l\u0000\u0002\u0000\u0000\u0001)]\\\r\u0001)\u0000\u0003I\u0000\u0002\u0000\u0000[\u0001*Z\n[\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001*\u0000\u0001m\u0000\u0000\u0000\u0000Y\u0003Y\u0000\u0001\u0002Z\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0001(\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0001-XW\r\u0001-\u0000\u0002O\u0000\u0001\u0000\u0001\n\u0001.\u0001\/\r\u0001.\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\tVUT\nV\u0000\u0018.miscactvnull\u0000\u0000null\u0001U\u0000\u0000\u0002T\u0000\u0000\r\u0001\/\u0000\u0001m\u0000\u0000\u0000\u0001\u0001\u00010\u000f\u00010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rimZ\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001h\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\u0011Google Chrome.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0006\\\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\\k\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000,Macintosh HD:Applications:\u0000Google Chrome.app\u0000\u000e\u0000$\u0000\u0011\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001eApplications\/Google Chrome.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\u0001,\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0013\u00013SR\r\u00013\u0000\u0002r\u0000\u0000\u0001\u000b\u0001\u0013\u00014\u00015\r\u00014\u0000\u0001J\u0000\u0000\u0001\u000b\u0001\u000f\u00016\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\fQ\u0003Q\u0000\u0001\u0002\u00018\u0000\u0002\u00019P\r\u00019\u0000\u0001m\u0000\u0000\u0001\f\u0001\rO\u0003O\u0000\u0003\u0002P\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\u001c0\u0000\fdevtoolstabs\u0000\fdevToolsTabs\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u00012\u0000\u0002\u0001:M\r\u0001:\u0000\u0003l\u0000\u0002\u0001\u0014\u0001Z\u0001;LK\r\u0001;\u0000\u0003X\u0000\u0000\u0001\u0014\u0001Z\u0001<J\u0001=\r\u0001<\u0000\u0001k\u0000\u0000\u0001(\u0001U\u0001>\u0002\u0001>\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0002O\u0000\u0001\u0001(\u0001;\u0001A\u0001B\r\u0001A\u0000\u0002r\u0000\u0000\u0001.\u0001:\u0001C\u0001D\r\u0001C\u0000\u0001o\u0000\u0000\u0001.\u0001\/I\u000bI\u0000\u001a0\u0000\u000bdevtoolstab\u0000\u000bdevToolsTab\r\u0001D\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0001E\u0001F\r\u0001E\u0000\u00011\u0000\u0000\u00015\u00019H\nH\u0000\u0004\nacTI\r\u0001F\u0000\u00024\u0000\u0001\u0001\/\u00015G\u0001G\nG\u0000\u0004\ncwin\r\u0001G\u0000\u0001m\u0000\u0000\u00013\u00014F\u0003F\u0000\u0001\r\u0001B\u0000\u0001m\u0000\u0000\u0001(\u0001+\u0001H\u000f\u0001H\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rimZ\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001h\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\u0011Google Chrome.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0006\\\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\\k\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000,Macintosh HD:Applications:\u0000Google Chrome.app\u0000\u000e\u0000$\u0000\u0011\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001eApplications\/Google Chrome.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001@\u0000\u0002\u0001IE\r\u0001I\u0000\u0002O\u0000\u0000\u0001<\u0001U\u0001J\u0001K\r\u0001J\u0000\u0003I\u0000\u0002\u0001B\u0001TD\u0001L\u0001M\nD\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0001L\u0000\u0001m\u0000\u0000\u0001B\u0001E\u0001N\u000e\u0001N\u0000\u0001\u0001O\u0011\u0001O\u0000\u0002\u0000i\u0006\u0001M\u0000\u0003C\u0001PB\nC\u0000\u0004\nfaal\r\u0001P\u0000\u0001J\u0000\u0000\u0001H\u0001P\u0001Q\u0002\u0001Q\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0001m\u0000\u0000\u0001H\u0001KA\nA\u0000\b\u000beMdsKcmd\u0002\u0001S\u0000\u0002\u0001T@\r\u0001T\u0000\u0001m\u0000\u0000\u0001K\u0001N?\n?\u0000\b\u000beMdsKopt\u0002@\u0000\u0000\u0006B\u0000\u0000\r\u0001K\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001U\u000f\u0001U\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002E\u0000\u0000\u000bJ\u0000\u001a0\u0000\u000bdevtoolstab\u0000\u000bdevToolsTab\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u001a>\u000b>\u0000\u001c0\u0000\fdevtoolstabs\u0000\fdevToolsTabs\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002M\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005=\u0001V<\u0001W\u0001X\u0001=\u0000\u0000\u0010\u0001V\u0000\u0003;:9\u000b;\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b:\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n9\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003<\u0000\u0000\u000e\u0001W\u0000\u0007\u00108\u0000(76\u0001Y\u0001Z5\u000b8\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e7\u0000\u0002\u00044\u0001[\u00034\u0000\u0001\u000e\u0001[\u0000\u0001\u00003\n3\u0000\u0004\ndscr\u00026\u0000\u0000\u0010\u0001Y\u0000\u00012\n2\u0000\u0004\ndscr\u0010\u0001Z\u0000\u000310\/\n1\u0000\u0018.sysodelanull\u0000\u0000nmbr\n0\u0000\u0004\nppga\n\/\u0000\u0004\nppgc\u00115\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001X\u0000\u0007\u0010.\u0001\\-,\u0001]\u0001^+\n.\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\\\u0000\u0001k\u0000\u0000\u0000\u0000\u0001Z\u0001_\u0002\u0001_\u0000\u0002\u0000\u0016\u0001`\u0002\u0001`\u0000\u0002\u0000\u001d\u0001a\u0002\u0001a\u0000\u0002\u0000Q\u0001b\u0002\u0001b\u0000\u0002\u0000_\u0001c\u0002\u0001c\u0000\u0002\u0000\u0001d\u0002\u0001d\u0000\u0002\u0000\u0001e\u0002\u0001e\u0000\u0002\u0000\u0001f\u0002\u0001f\u0000\u0002\u0000\u0001g\u0002\u0001g\u0000\u0002\u0000\u0001h\u0002\u0001h\u0000\u0002\u0000\u0001i\u0002\u0001i\u0000\u0002\u0000\u0001j\u0002\u0001j\u0000\u0002\u0000\u0001k\u0002\u0001k\u0000\u0002\u0001\u000b\u0001l\u0002\u0001l\u0000\u0002\u0001\u000f\u0001m\u0002\u0001m\u0000\u0002\u0001\u0015\u0001n\u0002\u0001n\u0000\u0002\u0001'\u0001o\u0002\u0001o\u0000\u0002\u0001+\u0001p\u0002\u0001p\u0000\u0002\u00011\u0001q\u0002\u0001q\u0000\u0002\u0001:*\u0002*\u0000\u0000\u0001-\u0000\u0000\u0002,\u0000\u0000\u0010\u0001]\u0000\u0003)('\u000b)\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b(\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u000b'\u0000\u001a0\u0000\u000bdevtoolstab\u0000\u000bdevToolsTab\u0010\u0001^\u0000.\u0000\u001b&%\u0000V$\u0000g\u0000k\u0000o\u0000s\u0000w\u0000{\u0000\u0000#\"! \u001f\u001e\u001d\u0000\u0000\u0000\u001c\u0000\u001b\u0000\u001a\u0000\u0019\u0000\u0000\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u00010\u000f\u000e\r\u0001N\n&\u0000\u0004\nppgd\n%\u0000\u0004\nppgt\u000b$\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003#\u0000\b\u000b\"\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n!\u0000\u0004\nkocl\n \u0000\u0004\ncobj\n\u001f\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u001e\u0000\u0004\ncapp\n\u001d\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u001c\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u001b\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u001a\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0019\u0000\u0018.miscactvnull\u0000\u0000null\n\u0018\u0000\u0004\nfaal\n\u0017\u0000\b\u000beMdsKcmd\n\u0016\u0000\b\u000beMdsKsft\n\u0015\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u0003\u0014\u0000\u0012\n\u0013\u0000\b\u000beMdsKopt\n\u0012\u0000\b\u000beMdsKctl\n\u0011\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0003\u0010\u0000$\u000b\u000f\u0000\u001c0\u0000\fdevtoolstabs\u0000\fdevToolsTabs\n\u000e\u0000\u0004\ncwin\n\r\u0000\u0004\nacTI\u0011+\u0001[*,FOl*,FO*k+\u0000\u0004OvEO\u0017\u0000 [a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000*a\u0000\u0012\/j\f\u0000\u0013[OYOa\u0000\u0014a\u0000\u0015a\u0000\u0016mvE`\u0000\u0017O\u0017\u0000!_\u0000\u0017[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0001a\u0000\u0018%j\f\u0000\u0019[OYO*a\u0000\u001ak+\u0000\u0004Okj\f\u0000\u001bOa\u0000\u001c\u0012\u0000!*j\f\u0000\u001dOa\u0000\u001e\u0012\u0000\u0014a\u0000\u001fa\u0000 a\u0000!a\u0000\"lvl\f\u0000#UUOkj\f\u0000\u001bOa\u0000\u001e\u0012\u0000\u0017a\u0000$a\u0000 a\u0000!a\u0000%a\u0000&mvl\f\u0000'UOkj\f\u0000\u001bOa\u0000\u001c\u0012\u0000\u0007*j\f\u0000\u001dUOa\u0000\u001e\u0012\u0000\u0011a\u0000(a\u0000 a\u0000!kvl\f\u0000'UOkj\f\u0000\u001bOa\u0000)\u0012\u0000\u0007*j\f\u0000\u001dUOkmlvE`\u0000*O\u0017\u0000E_\u0000*[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0002a\u0000)\u0012\u0000\u000e*a\u0000+k\/a\u0000,,FUOa\u0000\u001e\u0012\u0000\u0014a\u0000-a\u0000 a\u0000!a\u0000%lvl\f\u0000#U[OY\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\b\u0000D\u0000o\u0000m\u0000o\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u001d\u0000d\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000g\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000f\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u0002\u0000j\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000n\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000s\u000e\u0000s\u0000\u0001\u0000t\u0011\u0000t\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000r\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000v\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000D\u0000a\u0000s\u0000h\u0002\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000 \u0000A\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000 \u0000A\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00002\u0000<\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u00002\u00008\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000B\u0000Q\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000B\u0000Q\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000B\u0000M\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000B\u0000E\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000*\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000h\u0000o\u0000s\u0000t\u0000:\u00003\u00000\u00000\u00000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000R\u0000t\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000R\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000f\u0000o\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000f\u0000k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002\u0000\u0000\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000u\u0000}\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000u\u0000}\u0000\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000-\u0000' Open terminal\/editor window arrangment\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000N\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\/\u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000a\u0000r\u0000r\u0000a\u0000n\u0000g\u0000m\u0000e\u0000n\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000~\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000r\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nfaal\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKsft\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002_Q\u0240\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000~\u0003~\u0000\u0012\u0006\u0000\u0000\u0003}\u0000|\n}\u0000\u0004\nfaal\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000z\nz\u0000\b\u000beMdsKopt\u0002\u0001\u0001\u0000\u0002\u0001\u0002y\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0000\u0000x\nx\u0000\b\u000beMdsKctl\u0002y\u0000\u0000\u0006|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0003\u000f\u0001\u0003\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000wvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000t\u0001\b\u0001\t\u0001t\u0000\u0000\f\u0001\b\u0000!\u0000\u001b Fullscreen terminal\/editor\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u00006\u0000 \u0000F\u0000u\u0000l\u0000l\u0000s\u0000c\u0000r\u0000e\u0000e\u0000n\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\/\u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rsr\r\u0001\r\u0000\u0003I\u0000\u0002\u0000\u0000q\u0001\u000ep\nq\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000\u0001\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0011nm\r\u0001\u0011\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003I\u0000\u0002\u0000\u0000lkj\nl\u0000\u0018.miscactvnull\u0000\u0000null\u0001k\u0000\u0000\u0002j\u0000\u0000\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\u000f\u0001\u0014\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002_Q\u0240\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0017ih\r\u0001\u0017\u0000\u0002O\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0000g\u0001\u001a\u0001\u001b\ng\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000f\u0003f\u0000$\u0006\u0001\u001b\u0000\u0003e\u0001\u001cd\ne\u0000\u0004\nfaal\r\u0001\u001c\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u001ec\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000b\nb\u0000\b\u000beMdsKcmd\u0002c\u0000\u0000\u0006d\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001f\u000f\u0001\u001f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u0001$\u0001%\u0001^\u0000\u0000\f\u0001$\u0000\u0015\u0000\u000f Open Dev Tools\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000\u001e\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000D\u0000e\u0000v\u0000 \u0000T\u0000o\u0000o\u0000l\u0000s\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003l\u0000\u0002\u0000\u0000\u0001)]\\\r\u0001)\u0000\u0003I\u0000\u0002\u0000\u0000[\u0001*Z\n[\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001*\u0000\u0001m\u0000\u0000\u0000\u0000Y\u0003Y\u0000\u0001\u0002Z\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0001(\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0001-XW\r\u0001-\u0000\u0002O\u0000\u0001\u0000\u0001\n\u0001.\u0001\/\r\u0001.\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\tVUT\nV\u0000\u0018.miscactvnull\u0000\u0000null\u0001U\u0000\u0000\u0002T\u0000\u0000\r\u0001\/\u0000\u0001m\u0000\u0000\u0000\u0001\u0001\u00010\u000f\u00010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rimZ\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001h\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\u0011Google Chrome.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0006\\\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\\k\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000,Macintosh HD:Applications:\u0000Google Chrome.app\u0000\u000e\u0000$\u0000\u0011\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001eApplications\/Google Chrome.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\u0001,\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u001e\u00013SR\r\u00013\u0000\u0002O\u0000\u0001\u0001\u000b\u0001\u001e\u00014\u00015\r\u00014\u0000\u0002r\u0000\u0000\u0001\u0011\u0001\u001d\u00016\u00017\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0011\u0001\u0012Q\u0003Q\u0000\u0003\r\u00017\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00018\u00019\r\u00018\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001cP\nP\u0000\u0004\nacTI\r\u00019\u0000\u00024\u0000\u0001\u0001\u0012\u0001\u0018O\u0001:\nO\u0000\u0004\ncwin\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0017N\u0003N\u0000\u0001\r\u00015\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u0001;\u000f\u0001;\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rimZ\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001h\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000Zj\u0011Google Chrome.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0006\\\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\\k\u0000\u0000\u0000\u0001\u0000\u0004\u0000Zj\u0000\u0002\u0000,Macintosh HD:Applications:\u0000Google Chrome.app\u0000\u000e\u0000$\u0000\u0011\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001eApplications\/Google Chrome.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u00012\u0000\u0002\u0001<M\r\u0001<\u0000\u0003l\u0000\u0002\u0001\u001f\u00018\u0001=LK\r\u0001=\u0000\u0002O\u0000\u0000\u0001\u001f\u00018\u0001>\u0001?\r\u0001>\u0000\u0003I\u0000\u0002\u0001%\u00017J\u0001@\u0001A\nJ\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0001@\u0000\u0001m\u0000\u0000\u0001%\u0001(\u0001B\u000e\u0001B\u0000\u0001\u0001C\u0011\u0001C\u0000\u0002\u0000i\u0006\u0001A\u0000\u0003I\u0001DH\nI\u0000\u0004\nfaal\r\u0001D\u0000\u0001J\u0000\u0000\u0001+\u00013\u0001E\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0001+\u0001.G\nG\u0000\b\u000beMdsKcmd\u0002\u0001G\u0000\u0002\u0001HF\r\u0001H\u0000\u0001m\u0000\u0000\u0001.\u00011E\nE\u0000\b\u000beMdsKopt\u0002F\u0000\u0000\u0006H\u0000\u0000\r\u0001?\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"\u0001I\u000f\u0001I\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002M\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\bD\u0001JC\u0001K\u0001L\u0001M\u0001NB\u0001D\u0000\u0000\u0010\u0001J\u0000\u0006A@?>=<\u000bA\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b@\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n?\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b>\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u000b=\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001<\u0000\u0000\u0003C\u0000\f\u000e\u0001K\u0000\u0007\u0010;\u0000(:9\u0001O\u0001P8\u000b;\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e:\u0000\u0002\u00047\u0001Q\u00037\u0000\u0001\u000e\u0001Q\u0000\u0001\u00006\n6\u0000\u0004\ndscr\u00029\u0000\u0000\u0010\u0001O\u0000\u00015\n5\u0000\u0004\ndscr\u0010\u0001P\u0000\u0003432\n4\u0000\u0018.sysodelanull\u0000\u0000nmbr\n3\u0000\u0004\nppga\n2\u0000\u0004\nppgc\u00118\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001L\u0000\u0007\u00101\u0001R0\/\u0001S\u0001T.\n1\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001R\u0000\u0001k\u0000\u0000\u0000\u0000\u00018\u0001U\u0002\u0001U\u0000\u0002\u0000\u0016\u0001V\u0002\u0001V\u0000\u0002\u0000\u001d\u0001W\u0002\u0001W\u0000\u0002\u0000Q\u0001X\u0002\u0001X\u0000\u0002\u0000_\u0001Y\u0002\u0001Y\u0000\u0002\u0000\u0001Z\u0002\u0001Z\u0000\u0002\u0000\u0001[\u0002\u0001[\u0000\u0002\u0000\u0001\\\u0002\u0001\\\u0000\u0002\u0000\u0001]\u0002\u0001]\u0000\u0002\u0000\u0001^\u0002\u0001^\u0000\u0002\u0000\u0001_\u0002\u0001_\u0000\u0002\u0000\u0001`\u0002\u0001`\u0000\u0002\u0000\u0001a\u0002\u0001a\u0000\u0002\u0001\u000b\u0001b\u0002\u0001b\u0000\u0002\u0001\u000f\u0001c\u0002\u0001c\u0000\u0002\u0001\u0015\u0001d\u0002\u0001d\u0000\u0002\u0001'\u0001e\u0002\u0001e\u0000\u0002\u0001+\u0001f\u0002\u0001f\u0000\u0002\u00011\u0001g\u0002\u0001g\u0000\u0002\u0001<-\u0002-\u0000\u0000\u00010\u0000\u0000\u0002\/\u0000\u0000\u0010\u0001S\u0000\u0002,+\u000b,\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b+\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0010\u0001T\u0000-\u0000\u001b*)\u0000V(\u0000g\u0000k\u0000o\u0000s\u0000w\u0000{\u0000\u0000'&%$#\"!\u0000\u0000\u0000 \u0000\u001f\u0000\u001e\u0000\u001d\u0000\u0000\u001c\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u00010\u0013\u0012\u0001B\n*\u0000\u0004\nppgd\n)\u0000\u0004\nppgt\u000b(\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003'\u0000\b\u000b&\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n%\u0000\u0004\nkocl\n$\u0000\u0004\ncobj\n#\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\"\u0000\u0004\ncapp\n!\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b \u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u001f\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u001e\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u001d\u0000\u0018.miscactvnull\u0000\u0000null\n\u001c\u0000\u0004\nfaal\n\u001b\u0000\b\u000beMdsKcmd\n\u001a\u0000\b\u000beMdsKsft\n\u0019\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u0003\u0018\u0000\u0012\n\u0017\u0000\b\u000beMdsKopt\n\u0016\u0000\b\u000beMdsKctl\n\u0015\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0003\u0014\u0000$\n\u0013\u0000\u0004\ncwin\n\u0012\u0000\u0004\nacTI\u0011.\u00019*,FOl*,FO*k+\u0000\u0004OvEO\u0017\u0000 [a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000*a\u0000\u0012\/j\f\u0000\u0013[OYOa\u0000\u0014a\u0000\u0015a\u0000\u0016mvE`\u0000\u0017O\u0017\u0000!_\u0000\u0017[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0001a\u0000\u0018%j\f\u0000\u0019[OYO*a\u0000\u001ak+\u0000\u0004Okj\f\u0000\u001bOa\u0000\u001c\u0012\u0000!*j\f\u0000\u001dOa\u0000\u001e\u0012\u0000\u0014a\u0000\u001fa\u0000 a\u0000!a\u0000\"lvl\f\u0000#UUOkj\f\u0000\u001bOa\u0000\u001e\u0012\u0000\u0017a\u0000$a\u0000 a\u0000!a\u0000%a\u0000&mvl\f\u0000'UOkj\f\u0000\u001bOa\u0000\u001c\u0012\u0000\u0007*j\f\u0000\u001dUOa\u0000\u001e\u0012\u0000\u0011a\u0000(a\u0000 a\u0000!kvl\f\u0000'UOkj\f\u0000\u001bOa\u0000)\u0012\u0000\u0007*j\f\u0000\u001dUOa\u0000)\u0012\u0000\u000em*a\u0000*k\/a\u0000+,FUOa\u0000\u001e\u0012\u0000\u0014a\u0000,a\u0000 a\u0000!a\u0000%lvl\f\u0000#U\u000f\u000e\u0001M\u0000\u0002\u0004\u0011\u0001h\u0003\u0011\u0000\b\u000e\u0001h\u0000\b\u0000\u0000g\u0000k\u0000o\u0000s\u0000w\u0000{\u0000\u0000\u000e\u0001N\u0000\u0002\u0004\u0010\u0001i\u0003\u0010\u0000\u0003\u000e\u0001i\u0000\u0003\u0000\u0000\u0000\u0000\u0001B\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"73948b5b949d597b3e9fbcf531547239b1090d45","subject":"minor formatting","message":"minor formatting\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"56f1069b73f9074b934b403c8068dde1b5efe282","subject":"Update openQnA.scpt","message":"Update openQnA.scpt","repos":"jgstew\/tools,jgstew\/tools,jgstew\/tools,jgstew\/tools","old_file":"AppleScript\/openQnA.scpt","new_file":"AppleScript\/openQnA.scpt","new_contents":"-- http:\/\/www-01.ibm.com\/support\/docview.wss?uid=swg21506026\n-- https:\/\/github.com\/jgstew\/tools\/blob\/master\/bash\/openQnA.sh\n-- http:\/\/alvinalexander.com\/blog\/post\/mac-os-x\/applescript-use-comments\ntell application \"Terminal\"\n\tif not (exists window 1) then reopen\n\tactivate\n\tdo script \"\/Library\/BESAgent\/BESAgent.app\/Contents\/MacOS\/QnA -showtypes\" in window 1\nend tell\n\n-- http:\/\/stackoverflow.com\/questions\/5288161\/converting-to-one-line-applescript\n-- osascript -e 'tell application \"Terminal\"' -e 'if not (exists window 1) then reopen' -e 'activate' -e 'do script \"\/Library\/BESAgent\/BESAgent.app\/Contents\/MacOS\/QnA -showtypes\" in window 1' -e 'end tell'\n","old_contents":"-- http:\/\/www-01.ibm.com\/support\/docview.wss?uid=swg21506026\n-- https:\/\/github.com\/jgstew\/tools\/blob\/master\/bash\/openQnA.sh\n-- http:\/\/alvinalexander.com\/blog\/post\/mac-os-x\/applescript-use-comments\ntell application \"Terminal\"\n\tif not (exists window 1) then reopen\n\tactivate\n\tdo script \"\/Library\/BESAgent\/BESAgent.app\/Contents\/MacOS\/QnA -showtypes\" in window 1\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e05c2c648a2b215c84cd1832023d8368bb31349c","subject":"increase delay before injection from 1s to 3s this could help some slower systems during system startup","message":"increase delay before injection from 1s to 3s\nthis could help some slower systems during system startup\n","repos":"binaryage\/totalfinder-installer","old_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"TotalFinder.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"tell application \"Finder\"\n\tdelay 3 -- this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors \n\ttry\n\t\tevent BATFinit\n\ton error msg number num\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & msg & \" (\" & (num as text) & \")\" & \" \n\nYou may visit \nhttp:\/\/getsatisfaction.com\/binaryage \nto get support on this issue.\" with icon 0\n\tend try\nend tell","old_contents":"tell application \"Finder\"\n\tdelay 1 -- this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors \n\ttry\n\t\tevent BATFinit\n\ton error msg number num\n\t\tdisplay dialog \"\nUnable to launch TotalFinder.\n\t\t\n\" & msg & \" (\" & (num as text) & \")\" & \" \n\nYou may visit \nhttp:\/\/getsatisfaction.com\/binaryage \nto get support on this issue.\" with icon 0\n\tend try\nend tell","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"22d7bb2e0854dbe8d30e154e7dde063299f4b9a6","subject":"updated inspector close handler","message":"updated inspector close handler\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_FMATools\/fmGUI_Inspector_Close.applescript","new_file":"library\/fmGUI_FMATools\/fmGUI_Inspector_Close.applescript","new_contents":"-- fmGUI_Inspector_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes FileMaker's Inspector window\n\n\n(*\nHISTORY:\n\t1.2 - 2016-09-16 ( eshagdar ): wait until the window no longer exists.\n\t1.1 - 2016-08-29 ( eshagdar ): return a result. added documentation.\n\t1.0 - 201x-xx-xx ( dshockley ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_Inspector_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Inspector_Close()\n\t-- version 1.2\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t-- try the click twice in case the first only brings window to front.\n\t\t\ttry\n\t\t\t\tset index of (first window whose name is \"Inspector\") to 1\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"Inspector\")\n\t\t\tend try\n\t\t\t\n\t\t\t--wait until the window no longer exists ( or we time out )\n\t\t\trepeat 20 times\n\t\t\t\ttry\n\t\t\t\t\tget first window whose name is \"Inspector\"\n\t\t\t\ton error\n\t\t\t\t\texit repeat\n\t\t\t\tend try\n\t\t\t\tdelay 0.5\n\t\t\tend repeat\n\t\t\t\n\t\t\treturn true\n\t\tend tell\n\tend tell\nend fmGUI_Inspector_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","old_contents":"-- fmGUI_Inspector_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes FileMaker's Inspector window\n\n\n(*\nHISTORY:\n\t1.1 - 2016-08-29 ( eshagdar ): return a result. added documentation.\n\t1.0 - 201x-xx-xx ( dshockley ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_Inspector_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Inspector_Close()\n\t-- version 1.1\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t-- try the click twice in case the first only brings window to front.\n\t\t\ttry\n\t\t\t\tset index of (first window whose name is \"Inspector\") to 1\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"Inspector\")\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"Inspector\")\n\t\t\tend try\n\t\t\treturn true\n\t\tend tell\n\tend tell\nend fmGUI_Inspector_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e906626e362edae2089fc965813966d1c75d48c6","subject":"Run mac script","message":"Run mac script\n","repos":"trevordmiller\/shell-scripts,trevordmiller\/settings,trevordmiller\/shell-scripts,trevordmiller\/settings","old_file":"mac\/script-daily-sync.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/script-daily-sync.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0014\u0000D\u0000a\u0000i\u0000l\u0000y\u0000 \u0000S\u0000y\u0000n\u0000c\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002i\u0000\u0000\u0000\u0007\u0000\n\u0000\\\u0000]\r\u0000\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000.\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000i\u0000j\r\u0000i\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000k\u0000l\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nwkdy\r\u0000l\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000m\r\u0000m\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005today\u0000\u0000\u0002\u0000h\u0000\u0002\u0000n\r\u0000n\u0000\u0004Z\u0000\u0000\u0000\n\u0000.\u0000o\u0000p\u0000q\u0000r\r\u0000o\u0000\u0003l\u0000\u0005\u0000\n\u0000\r\u0000s\r\u0000s\u0000\u0002=\u0000\u0000\u0000\n\u0000\r\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nsun \u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0014\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000q\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000{\r\u0000{\u0000\u0002=\u0000\u0000\u0000\u0017\u0000\u001a\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nsat \u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000~\r\u0000~\u0000\u0001L\u0000\u0000\u0000\u001d\u0000#\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000\"\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000 \u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\r\u0000r\u0000\u0001L\u0000\u0000\u0000&\u0000.\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000-\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004work\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001b\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001c\u0000$\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u001c\u0000\"\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000A\u0000n\u0000k\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000%\u0000+\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000%\u0000+\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000%\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000,\u0000F\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000,\u0000F\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000,\u0000B\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000 \u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000l\u0000u\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000S\u0000e\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000K\u0000a\u0000r\u0000a\u0000b\u0000i\u0000n\u0000e\u0000r\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0000X\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000X\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000G\u0000T\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000J\u0000M\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000~\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000Y\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000o\u0000y\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u0000o\u0000u\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000>\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000o\u0000s\u0000\/\u0000h\u0000e\u0000a\u0000l\u0000t\u0000h\u0002\u0001\u0000\u0000\u0002\u0001\u0003\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000m\u0000y\u0000f\u0000i\u0000t\u0000n\u0000e\u0000s\u0000s\u0000p\u0000a\u0000l\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\b}|\r\u0001\b\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000H\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000r\u0000e\u0000s\u0000c\u0000u\u0000e\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000<\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000a\u0000k\u0000a\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000m\u0000i\u0000n\u0000t\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u0015\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000,\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000e\u0000g\u0000g\u0000h\u0000e\u0000a\u0000d\u0000.\u0000i\u0000o\u0002\u0001\u0019\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000c\u0000o\u0000d\u0000e\u0000w\u0000a\u0000r\u0000s\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u001d\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000$\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000u\u0000f\u0000f\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002\u0001!\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0001m\u0000\u0000\u0000\u0000\u0001&\u000e\u0001&\u0000\u0001\u0001'\u0011\u0001'\u0000T\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000y\u0000o\u0000u\u0000t\u0000u\u0000b\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000f\u0000e\u0000e\u0000d\u0000\/\u0000s\u0000u\u0000b\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0001%\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000f\u0000a\u0000c\u0000e\u0000b\u0000o\u0000o\u0000k\u0000.\u0000c\u0000o\u0000m\u0002\u0001)\u0000\u0002\u0001,{\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001-\u000e\u0001-\u0000\u0001\u0001.\u0011\u0001.\u0000&\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000t\u0000w\u0000i\u0000t\u0000t\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002{\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\t0\u0000\u0005other\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011yx\r\u00011\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0001J\u0000\u0000\u0000\u0000\u00014\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000@\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u00016\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u00006\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u0001:\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001?\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0001>\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0001m\u0000\u0000\u0000\u0000\u0001C\u000e\u0001C\u0000\u0001\u0001D\u0011\u0001D\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000.\u0000e\u0000m\u0000p\u0000d\u0000e\u0000v\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000p\u0000u\u0000l\u0000l\u0000s\u0000?\u0000u\u0000t\u0000f\u00008\u0000=\u0000%\u0000E\u00002\u0000%\u00009\u0000C\u0000%\u00009\u00003\u0000&\u0000q\u0000=\u0000i\u0000s\u0000%\u00003\u0000A\u0000o\u0000p\u0000e\u0000n\u0000+\u0000i\u0000s\u0000%\u00003\u0000A\u0000p\u0000r\u0000+\u0000l\u0000a\u0000b\u0000e\u0000l\u0000%\u00003\u0000A\u0000%\u00002\u00002\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000%\u00002\u00002\u0002\u0001B\u0000\u0002\u0001Ew\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000.\u0000g\u0000e\u0000t\u0000s\u0000e\u0000n\u0000t\u0000r\u0000y\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000-\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000\/\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000w\u0000e\u0000b\u0002w\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004work\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u00010\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Jut\r\u0001J\u0000\u0002r\u0000\u0000\u0000\u0000\u0001K\u0001L\r\u0001K\u0000\u0001J\u0000\u0000\u0000\u0000s\u0002s\u0000\u0000\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0001I\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Oqp\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001Rn\u000bo\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0001R\u0000\u0002\u0001S\u0001T\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0001X\u0000\u0002\u0001Yj\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002j\u0000\u0000\u0002n\u0000\u0000\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001N\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0002\u0000\u0001\u0001\u0001\\gf\r\u0001\\\u0000\u0003X\u0000\u0000\u0000\u0001\u0001\u0001]e\u0001^\r\u0001]\u0000\u0003I\u0000\u0002\u0000\u0000d\u0001_c\nd\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001_\u0000\u0002b\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002c\u0000\u0000\u000be\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0001[\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001g\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001j\u0001k\u0001Z\u0000\u0000\f\u0001j\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Y\u0001o\u0001p\u0001Y\u0000\u0000\f\u0001o\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0001n\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000X\u0001t\u0001u\u0001X\u0000\u0000\f\u0001t\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\n\u0001{TS\r\u0001{\u0000\u0003I\u0000\u0000\u0001\u0002\u0001\nR\u0001|Q\u000bR\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001|\u0000\u0002\u0001}P\r\u0001}\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002P\u0000\u0000\u0002Q\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000L\u0001\u0001\u0001L\u0000\u0000\f\u0001\u0000\u0014\u0000\u000e Turn off WiFi\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001c\u0000 \u0000T\u0000u\u0000r\u0000n\u0000 \u0000o\u0000f\u0000f\u0000 \u0000W\u0000i\u0000F\u0000i\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0012\u0001KJ\r\u0001\u0000\u0003I\u0000\u0002\u0001\u000b\u0001\u0012I\u0001H\nI\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000n\u0000e\u0000t\u0000w\u0000o\u0000r\u0000k\u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000-\u0000s\u0000e\u0000t\u0000a\u0000i\u0000r\u0000p\u0000o\u0000r\u0000t\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000e\u0000n\u00000\u0000 \u0000o\u0000f\u0000f\u0002H\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0013\u0001\u0018\u0001CB\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0013\u0001\u0018A\u0001@\nA\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0014?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u0001\u0000\u0002\u0001>\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0019\u00015\u0001=<\r\u0001\u0000\u0002O\u0000\u0000\u0001\u0019\u00015\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u001f\u00014;\u0001\u0001\n;\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\":\u0003:\u0000\u0012\u0006\u0001\u0000\u00039\u00018\n9\u0000\u0004\nfaal\r\u0001\u0000\u0001J\u0000\u0000\u0001%\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001%\u0001(7\n7\u0000\b\u000beMdsKcmd\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+6\n6\u0000\b\u000beMdsKopt\u0002\u0001\u0000\u0002\u00015\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.4\n4\u0000\b\u000beMdsKctl\u00025\u0000\u0000\u00068\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002>\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00123\u00012\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000110\/.-,\u00013\u0000\u0000\u0010\u0001\u0000\u0010+*)('&%$#\"! \u001f\u001e\u001d\u001c\u000b+\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b*\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000b)\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b'\u0000\b0\u0000\u0004core\u0000\u0000\u000b&\u0000\t0\u0000\u0005other\u0000\u0000\u000b%\u0000\b0\u0000\u0004work\u0000\u0000\u000b$\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b#\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u000b\"\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u00032\u0000\u0004\u000e\u0001\u0000\u0007\u0010\u001b\u0000(\u001a\u0019\u0001\u0001\u0018\u000b\u001b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001a\u0000\u0002\u0004\u0017\u0001\u0003\u0017\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u0016\n\u0016\u0000\u0004\ndscr\u0002\u0019\u0000\u0000\u0010\u0001\u0000\u0001\u0015\n\u0015\u0000\u0004\ndscr\u0010\u0001\u0000\u0003\u0014\u0013\u0012\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0013\u0000\u0004\nppga\n\u0012\u0000\u0004\nppgc\u0011\u0018\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001\u0000\u0007\u0010\u0011\u0000]\u0010\u000f\u0001\u0001\u000e\u000b\u0011\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000e\u0010\u0000\u0002\u0004\r\u0001\u0003\r\u0000\u0004\u000e\u0001\u0000\u0004\u0000\f\u000b\n\t\u000b\f\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\n\u0000\b0\u0000\u0004work\u0000\u0000\u000b\t\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u000f\u0000\u0000\u0010\u0001\u0000\u0005\b\u0007\u0006\u0005\u0004\u000b\b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0007\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0006\u0000\b0\u0000\u0004work\u0000\u0000\u000b\u0005\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0004\u0000\t0\u0000\u0005today\u0000\u0000\u0010\u0001\u0000\u0004\u0003\u0002\u0001\u0000\n\u0003\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0002\u0000\u0004\nwkdy\n\u0001\u0000\u0004\nsun \n\u0000\u0000\u0004\nsat \u0011\u000e\u0000\/*j\f\u0000\u0000,EO\u0000\u001d\u0000\t%\u000fY\u0000\u0019\u0000\u001d\u0000\u000b%%\u000fY\u0000\n%%%\u000f\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u00015\u0001\u0002\u0001\u0000\u0002\u0000\u0016\u0001\u0002\u0001\u0000\u0002\u0000\u001d\u0001\u0002\u0001\u0000\u0002\u0000Q\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0006\u0001\u0002\u0001\u0000\u0002\u0001\/\u0001\u0002\u0001\u0000\u0002\u0001H\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001Z\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0010\u0001\u0000?\u0000\u001b\u0000V\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u0001b\u0001~\u0001\u0001\n\u0000\u0004\nppgd\n\u0000\u0004\nppgt\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003\u0000\u0004\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0003\u0000\u0006\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncapp\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003\u0000\t\u0003\u0000\u0005\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0003\u0000\u0012\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\b\u000beMdsKopt\n\u0000\b\u000beMdsKctl\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0011\u00016*,FOl*,FO*k+\u0000\u0004OvEOvEOjvE`\u0000\u0010Oa\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017vE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u0000\u001aO\u0017\u0000$_\u0000\u001a[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0000*a\u0000\u001e\/j\f\u0000\u001f[OYOa\u0000 a\u0000!lvEOa\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&a\u0000'a\u0000(a\u0000)a\u0000*a\u0000+vEOa\u0000,a\u0000-a\u0000.a\u0000\/a\u00000a\u00001vE`\u0000\u0010OjvE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u00002O\u0017\u0000#_\u00002[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0001a\u00003%j\f\u00004[OYO*a\u00005k+\u0000\u0004Oa\u00006j\f\u00004Okj\f\u00007Oa\u00008\u0012\u0000\u0017a\u00009a\u0000:a\u0000;a\u0000<a\u0000=mvl\f\u0000>U\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0001\u0001\u0001\u0004\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\t\u000e\u0001\u0000\t\u0000\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0005\u000e\u0001\u0000\u0005\u0000\u00017\u0001;\u0001?\u0001C\u0001F\u000e\u0001\u0000\u0002\u0004\u0003\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u000e\u000e\u0001\u0000\u000e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u000b\u000e\u0001\u0000\u000b\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0014\u0000D\u0000a\u0000i\u0000l\u0000y\u0000 \u0000S\u0000y\u0000n\u0000c\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0002\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\f\u0000\u0006 START\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000S\u0000T\u0000A\u0000R\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000S\u0000t\u0000a\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002i\u0000\u0000\u0000\u0007\u0000\n\u0000\\\u0000]\r\u0000\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000.\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000i\u0000j\r\u0000i\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000k\u0000l\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nwkdy\r\u0000l\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000m\r\u0000m\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005today\u0000\u0000\u0002\u0000h\u0000\u0002\u0000n\r\u0000n\u0000\u0004Z\u0000\u0000\u0000\n\u0000.\u0000o\u0000p\u0000q\u0000r\r\u0000o\u0000\u0003l\u0000\u0005\u0000\n\u0000\r\u0000s\r\u0000s\u0000\u0002=\u0000\u0000\u0000\n\u0000\r\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nsun \u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0014\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000q\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000{\r\u0000{\u0000\u0002=\u0000\u0000\u0000\u0017\u0000\u001a\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\t0\u0000\u0005today\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nsat \u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000~\r\u0000~\u0000\u0001L\u0000\u0000\u0000\u001d\u0000#\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000\"\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001d\u0000 \u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\r\u0000r\u0000\u0001L\u0000\u0000\u0000&\u0000.\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000-\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\b0\u0000\u0004core\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\t0\u0000\u0005other\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004work\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011 Open native apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000n\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001b\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001c\u0000$\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u001c\u0000\"\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000A\u0000n\u0000k\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000%\u0000+\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000%\u0000+\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000%\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000,\u0000F\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000,\u0000F\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000,\u0000B\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000 \u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000l\u0000u\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000S\u0000e\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000K\u0000a\u0000r\u0000a\u0000b\u0000i\u0000n\u0000e\u0000r\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0000X\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000X\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000G\u0000T\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000J\u0000M\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000~\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000Y\u0000~\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000o\u0000y\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u00024\u0000\u0000\u0000o\u0000u\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Open web apps\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000 \u0000a\u0000p\u0000p\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000>\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000o\u0000s\u0000\/\u0000h\u0000e\u0000a\u0000l\u0000t\u0000h\u0002\u0001\u0000\u0000\u0002\u0001\u0003\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000m\u0000y\u0000f\u0000i\u0000t\u0000n\u0000e\u0000s\u0000s\u0000p\u0000a\u0000l\u0000.\u0000c\u0000o\u0000m\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\b0\u0000\u0004core\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\b}|\r\u0001\b\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000H\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000r\u0000e\u0000s\u0000c\u0000u\u0000e\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000<\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000a\u0000k\u0000a\u0000t\u0000i\u0000m\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000a\u0000s\u0000h\u0000b\u0000o\u0000a\u0000r\u0000d\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000m\u0000i\u0000n\u0000t\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u0015\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000,\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000e\u0000g\u0000g\u0000h\u0000e\u0000a\u0000d\u0000.\u0000i\u0000o\u0002\u0001\u0019\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u00000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000c\u0000o\u0000d\u0000e\u0000w\u0000a\u0000r\u0000s\u0000.\u0000c\u0000o\u0000m\u0002\u0001\u001d\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000$\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000u\u0000f\u0000f\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002\u0001!\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0001m\u0000\u0000\u0000\u0000\u0001&\u000e\u0001&\u0000\u0001\u0001'\u0011\u0001'\u0000T\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000y\u0000o\u0000u\u0000t\u0000u\u0000b\u0000e\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000f\u0000e\u0000e\u0000d\u0000\/\u0000s\u0000u\u0000b\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0001%\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000(\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000f\u0000a\u0000c\u0000e\u0000b\u0000o\u0000o\u0000k\u0000.\u0000c\u0000o\u0000m\u0002\u0001)\u0000\u0002\u0001,{\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001-\u000e\u0001-\u0000\u0001\u0001.\u0011\u0001.\u0000&\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000t\u0000w\u0000i\u0000t\u0000t\u0000e\u0000r\u0000.\u0000c\u0000o\u0000m\u0002{\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\t0\u0000\u0005other\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011yx\r\u00011\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0001J\u0000\u0000\u0000\u0000\u00014\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000@\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000e\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u00016\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u00006\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000i\u0000n\u0000b\u0000o\u0000x\u0002\u0001:\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001?\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000.\u0000o\u0000k\u0000t\u0000a\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000h\u0000o\u0000m\u0000e\u0000\/\u0000j\u0000i\u0000r\u0000a\u0000_\u0000o\u0000n\u0000p\u0000r\u0000e\u0000m\u0000\/\u00000\u0000o\u0000a\u00001\u0000m\u0000o\u0000e\u00001\u0000d\u00000\u0000j\u0000o\u0000a\u0000W\u0000P\u00004\u0000P\u00000\u0000x\u00007\u0000\/\u00003\u00005\u00004\u00009\u0002\u0001>\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0001m\u0000\u0000\u0000\u0000\u0001C\u000e\u0001C\u0000\u0001\u0001D\u0011\u0001D\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000.\u0000e\u0000m\u0000p\u0000d\u0000e\u0000v\u0000.\u0000d\u0000o\u0000m\u0000o\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000p\u0000u\u0000l\u0000l\u0000s\u0000?\u0000u\u0000t\u0000f\u00008\u0000=\u0000%\u0000E\u00002\u0000%\u00009\u0000C\u0000%\u00009\u00003\u0000&\u0000q\u0000=\u0000i\u0000s\u0000%\u00003\u0000A\u0000o\u0000p\u0000e\u0000n\u0000+\u0000i\u0000s\u0000%\u00003\u0000A\u0000p\u0000r\u0000+\u0000l\u0000a\u0000b\u0000e\u0000l\u0000%\u00003\u0000A\u0000%\u00002\u00002\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000%\u00002\u00002\u0002\u0001B\u0000\u0002\u0001Ew\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000.\u0000g\u0000e\u0000t\u0000s\u0000e\u0000n\u0000t\u0000r\u0000y\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000d\u0000o\u0000m\u0000o\u0000-\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000-\u0000w\u0000e\u0000b\u0000\/\u0000m\u0000o\u0000b\u0000i\u0000l\u0000e\u0000w\u0000e\u0000b\u0002w\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004work\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u00010\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Jut\r\u0001J\u0000\u0002r\u0000\u0000\u0000\u0000\u0001K\u0001L\r\u0001K\u0000\u0001J\u0000\u0000\u0000\u0000s\u0002s\u0000\u0000\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u000e0\u0000\nbackground\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0001I\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0000\u0001Oqp\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001Rn\u000bo\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u0002\u0001R\u0000\u0002\u0001S\u0001T\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\b0\u0000\u0004core\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\t0\u0000\u0005other\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\b0\u0000\u0004work\u0000\u0000\u0002\u0001X\u0000\u0002\u0001Yj\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002j\u0000\u0000\u0002n\u0000\u0000\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001N\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0002\u0000\u0001\u0001\u0001\\gf\r\u0001\\\u0000\u0003X\u0000\u0000\u0000\u0001\u0001\u0001]e\u0001^\r\u0001]\u0000\u0003I\u0000\u0002\u0000\u0000d\u0001_c\nd\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001_\u0000\u0002b\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0002c\u0000\u0000\u000be\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0001[\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001g\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001j\u0001k\u0001Z\u0000\u0000\f\u0001j\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Y\u0001o\u0001p\u0001Y\u0000\u0000\f\u0001o\u0000\u0010\u0000\n CONFIGURE\u0000\u0002\u0000\u0000\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000\u0014\u0000 \u0000C\u0000O\u0000N\u0000F\u0000I\u0000G\u0000U\u0000R\u0000E\u0002\u0001n\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000X\u0001t\u0001u\u0001X\u0000\u0000\f\u0001t\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\n\u0001{TS\r\u0001{\u0000\u0003I\u0000\u0000\u0001\u0002\u0001\nR\u0001|Q\u000bR\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001|\u0000\u0002\u0001}P\r\u0001}\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000(\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0002P\u0000\u0000\u0002Q\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000L\u0001\u0001\u0001L\u0000\u0000\f\u0001\u0000\u0014\u0000\u000e Turn off WiFi\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001c\u0000 \u0000T\u0000u\u0000r\u0000n\u0000 \u0000o\u0000f\u0000f\u0000 \u0000W\u0000i\u0000F\u0000i\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0012\u0001KJ\r\u0001\u0000\u0003I\u0000\u0002\u0001\u000b\u0001\u0012I\u0001H\nI\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000n\u0000e\u0000t\u0000w\u0000o\u0000r\u0000k\u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000-\u0000s\u0000e\u0000t\u0000a\u0000i\u0000r\u0000p\u0000o\u0000r\u0000t\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000e\u0000n\u00000\u0000 \u0000o\u0000f\u0000f\u0002H\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013 Run window manager\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000 \u0000R\u0000u\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0013\u0001\u0018\u0001CB\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0013\u0001\u0018A\u0001@\nA\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0014?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u0001\u0000\u0002\u0001>\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0019\u00015\u0001=<\r\u0001\u0000\u0002O\u0000\u0000\u0001\u0019\u00015\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u001f\u00014;\u0001\u0001\n;\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\":\u0003:\u0000\u0012\u0006\u0001\u0000\u00039\u00018\n9\u0000\u0004\nfaal\r\u0001\u0000\u0001J\u0000\u0000\u0001%\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001%\u0001(7\n7\u0000\b\u000beMdsKcmd\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+6\n6\u0000\b\u000beMdsKopt\u0002\u0001\u0000\u0002\u00015\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.4\n4\u0000\b\u000beMdsKctl\u00025\u0000\u0000\u00068\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002>\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00123\u00012\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000110\/.-,\u00013\u0000\u0000\u0010\u0001\u0000\u0010+*)('&%$#\"! \u001f\u001e\u001d\u001c\u000b+\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b*\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000b)\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b'\u0000\b0\u0000\u0004core\u0000\u0000\u000b&\u0000\t0\u0000\u0005other\u0000\u0000\u000b%\u0000\b0\u0000\u0004work\u0000\u0000\u000b$\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b#\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\u000b\"\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u00032\u0000\u0002\u000e\u0001\u0000\u0007\u0010\u001b\u0000(\u001a\u0019\u0001\u0001\u0018\u000b\u001b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001a\u0000\u0002\u0004\u0017\u0001\u0003\u0017\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u0016\n\u0016\u0000\u0004\ndscr\u0002\u0019\u0000\u0000\u0010\u0001\u0000\u0001\u0015\n\u0015\u0000\u0004\ndscr\u0010\u0001\u0000\u0003\u0014\u0013\u0012\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0013\u0000\u0004\nppga\n\u0012\u0000\u0004\nppgc\u0011\u0018\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001\u0000\u0007\u0010\u0011\u0000]\u0010\u000f\u0001\u0001\u000e\u000b\u0011\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000e\u0010\u0000\u0002\u0004\r\u0001\u0003\r\u0000\u0004\u000e\u0001\u0000\u0004\u0000\f\u000b\n\t\u000b\f\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\n\u0000\b0\u0000\u0004work\u0000\u0000\u000b\t\u0000\u000e0\u0000\nbackground\u0000\u0000\u0002\u000f\u0000\u0000\u0010\u0001\u0000\u0005\b\u0007\u0006\u0005\u0004\u000b\b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0007\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0006\u0000\b0\u0000\u0004work\u0000\u0000\u000b\u0005\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0004\u0000\t0\u0000\u0005today\u0000\u0000\u0010\u0001\u0000\u0004\u0003\u0002\u0001\u0000\n\u0003\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0002\u0000\u0004\nwkdy\n\u0001\u0000\u0004\nsun \n\u0000\u0000\u0004\nsat \u0011\u000e\u0000\/*j\f\u0000\u0000,EO\u0000\u001d\u0000\t%\u000fY\u0000\u0019\u0000\u001d\u0000\u000b%%\u000fY\u0000\n%%%\u000f\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u00015\u0001\u0002\u0001\u0000\u0002\u0000\u0016\u0001\u0002\u0001\u0000\u0002\u0000\u001d\u0001\u0002\u0001\u0000\u0002\u0000Q\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0006\u0001\u0002\u0001\u0000\u0002\u0001\/\u0001\u0002\u0001\u0000\u0002\u0001H\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001Z\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00160\u0000\tnativeapp\u0000\tnativeApp\u000b\u0000\u00100\u0000\u0006webapp\u0000\u0006webApp\u0010\u0001\u0000?\u0000\u001b\u0000V\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u0001b\u0001~\u0001\u0001\n\u0000\u0004\nppgd\n\u0000\u0004\nppgt\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0003\u0000\u0004\u000b\u0000\b0\u0000\u0004core\u0000\u0000\u000b\u0000\t0\u0000\u0005other\u0000\u0000\u000b\u0000\b0\u0000\u0004work\u0000\u0000\u0003\u0000\u0006\u000b\u0000\u000e0\u0000\nbackground\u0000\u0000\u000b\u0000\u001c0\u0000\fgettodayapps\u0000\fgetTodayApps\u000b\u0000\u00180\u0000\nnativeapps\u0000\nnativeApps\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncapp\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003\u0000\t\u0003\u0000\u0005\u000b\u0000\u00120\u0000\u0007webapps\u0000\u0007webApps\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0003\u0000\u0012\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\b\u000beMdsKopt\n\u0000\b\u000beMdsKctl\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u0011\u00016*,FOl*,FO*k+\u0000\u0004OvEOvEOjvE`\u0000\u0010Oa\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017vE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u0000\u001aO\u0017\u0000$_\u0000\u001a[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0000*a\u0000\u001e\/j\f\u0000\u001f[OYOa\u0000 a\u0000!lvEOa\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&a\u0000'a\u0000(a\u0000)a\u0000*a\u0000+vEOa\u0000,a\u0000-a\u0000.a\u0000\/a\u00000a\u00001vE`\u0000\u0010OjvE`\u0000\u0018O*_\u0000\u0010_\u0000\u0018+\u0000\u0019E`\u00002O\u0017\u0000#_\u00002[a\u0000\u001ba\u0000\u001cl\f\u0000\u001dkh\u001b\u0000\u0001a\u00003%j\f\u00004[OYO*a\u00005k+\u0000\u0004Oa\u00006j\f\u00004Okj\f\u00007Oa\u00008\u0012\u0000\u0017a\u00009a\u0000:a\u0000;a\u0000<a\u0000=mvl\f\u0000>U\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0001\u0001\u0001\u0004\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\t\u000e\u0001\u0000\t\u0000\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0005\u000e\u0001\u0000\u0005\u0000\u00017\u0001;\u0001?\u0001C\u0001F\u000e\u0001\u0000\u0002\u0004\u0003\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u000e\u000e\u0001\u0000\u000e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0010\u000e\u0001\u0000\u0010\u0000\u0001\u0001\u0001\u0004\u0001\u000e\u0001\u0012\u0001\u0016\u0001\u001a\u0001\u001e\u0001\"\u0001&\u0001*\u0001-\u00017\u0001;\u0001?\u0001C\u0001F\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f6e2e1ac5ecf94757a3cc6f341b656344715d31f","subject":"add ability to test uris","message":"add ability to test uris\n","repos":"nuclearcoconut42\/niji","old_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u000e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\"\u0000\u000e\r\u0000\u000e\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\"\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\n\u0000\u001d\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\u0000\u0015\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000<\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000.\u0006\u0000\u0015\u0000\u0003\u0000\u0018\n\u0000\u0004\ndtxt\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000 \n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\r\u0000#\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000&\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000*\u0000\/\u00000\u00001\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u00004\u00005\r\u00004\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u00006\u00007\n\u0000\u0004\nctxt\r\u00006\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u00008\r\u00008\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000<\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000<\u0000\u0003\u0000=\u0000>\n\u0000\u0004\npsof\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\npsin\r\u0000A\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u00007\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u00000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000\"\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000E\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000E\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000H\r\u0000H\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000+\u00004\u0000M\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000M\u0000\u0003\u0000N\u0000O\n\u0000\u0004\npsof\r\u0000N\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000?\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\npsin\r\u0000R\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000J\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u00007\u0000I\u0000U\u0000V\r\u0000U\u0000\u0002A\u0000\u0001\u00007\u0000:\u0000W\u0000X\r\u0000W\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000X\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\r\u0000V\u0000\u0001k\u0000\u0000\u0000=\u0000E\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000\\\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\\\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0001L\u0000\u0000\u0000C\u0000E\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000J\u0000Y\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000J\u0000W\u0000d\u0000e\r\u0000d\u0000\u00037\u0001\u0000\u0000K\u0000W\u0000f\u0000g\n\u0000\u0004\nctxt\r\u0000f\u0000\u0001m\u0000\u0000\u0000O\u0000Q\u0003\u0000\u0001\r\u0000g\u0000\u0003l\u0000\u0005\u0000R\u0000V\u0000h\r\u0000h\u0000\u0002\\\u0000\u0000\u0000R\u0000V\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000a\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000Z\u0000w\u0000m\u0000n\u0000o\r\u0000m\u0000\u0002r\u0000\u0000\u0000]\u0000l\u0000p\u0000q\r\u0000p\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000r\u0000s\r\u0000r\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000t\u0000u\n\u0000\u0004\nctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000b\u0000f\u0000v\r\u0000v\u0000\u0002[\u0000\u0000\u0000b\u0000f\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000x\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000g\u0000i\u0003\r\u0000s\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0002r\u0000\u0000\u0000t\u0000w\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000l\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002r\u0000\u0000\u0000x\u0000}\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000&\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000z\u0000|\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000y\u0000z\n\u0000\u0004\nascr\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000=\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\t\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0001\u0001\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0001\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\n\u0001\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000e\u0001\u0010\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\r\u0001\u000e\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0012\u0001\u0012|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u0012\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013z\u000bz\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001a\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001a\u0001\u001ay\u0000\u0000\u0001y\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u001a\u0001L\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001d\u00014\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002r\u0000\u0000\u0001\u001d\u0001$\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0002n\u0000\u0000\u0001\u001d\u0001\"\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"x\u000bx\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001ew\u000bw\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002r\u0000\u0000\u0001%\u0001,\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0000\u0001%\u0001*\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001&\u0001*u\u000bu\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\f\u0000\u0001o\u0000\u0000\u0001%\u0001&t\u000bt\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\rr\r\u0001\r\u0000\u0002r\u0000\u0000\u0001-\u00014\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001-\u00012\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001.\u00012q\u000bq\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001-\u0001.p\u000bp\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000n\u0001\u0012m\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001\u0013\u0002\u0001\u0013\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001<\u0001Ik\u0001\u0016j\nk\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0001?\u0001@i\u000bi\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0002\u0000)\u0002j\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001fh\r\u0001\u001f\u0000\u0001L\u0000\u0000\u0001J\u0001Lg\u0001g\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0001M\u0001Mfed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0001M\u0001Mc\u0001$\u0001%\u0001c\u0000\u0000\f\u0001$\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003Q\u0000\u0000\u0001M\u0001\u0001)\u0001*\u0001+\r\u0001)\u0000\u0001k\u0000\u0000\u0001P\u0001\u0001,\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002r\u0000\u0000\u0001P\u0001e\u0001\/\u00010\r\u0001\/\u0000\u0002b\u0000\u0000\u0001P\u0001a\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0005\u0001P\u0001]\u00013ba\r\u00013\u0000\u0003I\u0000\u0002\u0001P\u0001]`\u00014\u00015\n`\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00014\u0000\u0001m\u0000\u0000\u0001P\u0001S_\n_\u0000\b\u000bafdrtemp\u0006\u00015\u0000\u0003^\u00016]\n^\u0000\u0004\nrtyp\r\u00016\u0000\u0001m\u0000\u0000\u0001V\u0001Y\\\n\\\u0000\u0004\nTEXT\u0006]\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u00012\u0000\u0001m\u0000\u0000\u0001]\u0001`\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001.\u0000\u0002\u00019Z\r\u00019\u0000\u0003I\u0000\u0002\u0001f\u0001Y\u0001:X\nY\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001:\u0000\u0002b\u0000\u0000\u0001f\u0001{\u0001;\u0001<\r\u0001;\u0000\u0002b\u0000\u0000\u0001f\u0001s\u0001=\u0001>\r\u0001=\u0000\u0002b\u0000\u0000\u0001f\u0001o\u0001?\u0001@\r\u0001?\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0001A\u000e\u0001A\u0000\u0001\u0001B\u0011\u0001B\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001@\u0000\u0003l\u0000\u0005\u0001i\u0001n\u0001CWV\r\u0001C\u0000\u0002n\u0000\u0000\u0001i\u0001n\u0001D\u0001E\r\u0001D\u0000\u00011\u0000\u0000\u0001j\u0001nU\nU\u0000\u0004\nstrq\r\u0001E\u0000\u0001o\u0000\u0000\u0001i\u0001jT\u000bT\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0001>\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0006\u0000 \u0000>\u0000 \r\u0001<\u0000\u0002n\u0000\u0000\u0001s\u0001z\u0001H\u0001I\r\u0001H\u0000\u00011\u0000\u0000\u0001v\u0001zS\nS\u0000\u0004\npsxp\r\u0001I\u0000\u0001o\u0000\u0000\u0001s\u0001vR\u000bR\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002X\u0000\u0000\u0002Z\u0000\u0000\r\u0001*\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000Q\u0001JP\nQ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002P\u0000\u0000\r\u0001+\u0000\u0001k\u0000\u0000\u0001\u0001\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001N\u0001NM\nN\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001N\u0000\u0002b\u0000\u0000\u0001\u0001\u0001O\u0001P\r\u0001O\u0000\u0002b\u0000\u0000\u0001\u0001\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001R\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001P\u0000\u0001m\u0000\u0000\u0001\u0001\u0001U\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0002\u0000)\u0002M\u0000\u0000\u0002\u0001M\u0000\u0002\u0001WK\r\u0001W\u0000\u0001L\u0000\u0000\u0001\u0001J\u0001J\u0000\u0000\u0002K\u0000\u0000\u0002\u0001(\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\u0001IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0001\u0001\u0001F\u0001\\\u0001]\u0001F\u0000\u0000\f\u0001\\\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001[\u0000\u0002\u0001_E\r\u0001_\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001`\u0001a\u0001b\r\u0001`\u0000\u0001k\u0000\u0000\u0001\u0001\u0001c\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001fC\nD\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001g\u0001h\r\u0001g\u0000\u0002b\u0000\u0000\u0001\u0001\u0001i\u0001j\r\u0001i\u0000\u0002b\u0000\u0000\u0001\u0001\u0001k\u0001l\r\u0001k\u0000\u0002b\u0000\u0000\u0001\u0001\u0001m\u0001n\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001o\u000e\u0001o\u0000\u0001\u0001p\u0011\u0001p\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001n\u0000\u0001o\u0000\u0000\u0001\u0001B\u000bB\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0001\u0001q\u000e\u0001q\u0000\u0001\u0001r\u0011\u0001r\u0000\u0002\u0000 \r\u0001j\u0000\u0002n\u0000\u0000\u0001\u0001\u0001s\u0001t\r\u0001s\u0000\u00011\u0000\u0000\u0001\u0001A\nA\u0000\u0004\npsxp\r\u0001t\u0000\u0001o\u0000\u0000\u0001\u0001@\u000b@\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001h\u0000\u0001m\u0000\u0000\u0001\u0001\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0002\u0000\"\u0002C\u0000\u0000\u0002\u0001e\u0000\u0002\u0001w?\r\u0001w\u0000\u0003I\u0000\u0002\u0001\u0001>\u0001x=\n>\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001x\u0000\u0002b\u0000\u0000\u0001\u0001\u0001y\u0001z\r\u0001y\u0000\u0002b\u0000\u0000\u0001\u0001\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001\u0001\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001|\u0000\u0001o\u0000\u0000\u0001\u0001<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001z\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002=\u0000\u0000\u0002?\u0000\u0000\r\u0001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000;\u0001:\n;\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002:\u0000\u0000\r\u0001b\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00018\u00017\n8\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00015\u000b5\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00027\u0000\u0000\u0002\u0001\u0000\u0002\u00014\r\u0001\u0000\u0001L\u0000\u0000\u0001\u00013\u00013\u0000\u0000\u00024\u0000\u0000\u0002E\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001\u0000\u0002\u00011\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00010\u0001\u0001\u00010\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002\u001f\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001.\u000b.\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001+\u000b+\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001)\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0000\u0002\u0007\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0000\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0005(\u000b(\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001'\u000b'\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000%\u0001$\n%\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002$\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u000f\u0002\u001f\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u000f\u0002\u001c\"\u0001!\n\"\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0018\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0014\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u000f\u0002\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0012\u0002\u0013 \u000b \u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0001L\u0000\u0000\u0002\u001d\u0002\u001f\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002 \u0002 \u0017\u0001\u0001\u0001\u0017\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002 \u00021\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002-\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002)\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002'\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002#\u0016\u000b\u0016\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002#\u0002&\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0002'\u0002(\u0015\u000b\u0015\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002)\u0002,\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0013\r\u0001\u0000\u0003Q\u0000\u0000\u00022\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u00025\u0002Z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00025\u0002J\u0012\u0001\u0011\n\u0012\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002F\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002B\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002>\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u00028\u0002=\u0001\u0010\u000f\r\u0001\u0000\u0002n\u0000\u0000\u00028\u0002=\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00029\u0002=\u000e\n\u000e\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u00028\u00029\r\u000b\r\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002>\u0002A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002E\f\u000b\f\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0011\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0003I\u0000\u0002\u0002K\u0002Z\n\u0001\t\n\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002V\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002R\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002N\u0002Q\b\u000b\b\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002R\u0002U\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002\t\u0000\u0000\u0002\u000b\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0006\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002b\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003I\u0000\u0002\u0002b\u0002w\u0004\u0002\u0001\u0003\n\u0004\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u0001\u0000\u0002b\u0000\u0000\u0002b\u0002s\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0002b\u0002o\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0002b\u0002m\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0002b\u0002i\u0002\b\u0002\t\r\u0002\b\u0000\u0001m\u0000\u0000\u0002b\u0002e\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\t\u0000\u0001o\u0000\u0000\u0002e\u0002h\u0002\u000b\u0002\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0007\u0000\u0001m\u0000\u0000\u0002i\u0002l\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0002\u0005\u0000\u0001o\u0000\u0000\u0002m\u0002n\u0001\u000b\u0001\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0002\u0003\u0000\u0001m\u0000\u0000\u0002o\u0002r\u0002\u000e\u000e\u0002\u000e\u0000\u0001\u0002\u000f\u0011\u0002\u000f\u0000\u0002\u0000)\u0002\u0003\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0002\u0010\u0000\r\u0002\u0010\u0000\u0001L\u0000\u0000\u0002x\u0002z\u0001\u0000\u0000\u0002\u0000\u0000\u0000\u0002\u0013\u0000\u0000\u00021\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002}\u0002\u0002\u0011\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u0011\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0002}\u0002\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0002\u0015\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0002\u0002\u0002\u0018\u000e\u0002\u0018\u0000\u0001\u0002\u0019\u0011\u0002\u0019\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002{\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0002\u001a\u0002\u001b\u0002\u001c\u0002\u001d\u0001\u0000\u0000\u0010\u0002\u001a\u0000\u0004\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u000e\u0002\u001b\u0000\u0007\u0010\u0000%\u0002\u001e\u0002\u001f\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001e\u0000\u0013\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002\u001f\u0000G\u0000?\u0000F\u0000P\u0000]\u0000{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001b\u0001\u001d\u00017\u0001A\u0001F\u0001S\u0001U\u0001o\u0001q\u0001u\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u000e\u0002\u0016\u0002\u0018\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\u000fX\u0000\u0006\u0000\u0007j\f\u0000\tOh\u000fO*\f\u0000\u0005EOl\u0004\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0003hO[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000ukj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0014X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002\u001c\u0000\u0007\u0010\u0002 \u0002!\u0002\"\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002 \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"\u0002#\u0002\u0002#\u0000\u0002\u0000\u0005\u0002$\u0002\u0002$\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002!\u0000\u0000\u0010\u0002\"\u0000\b\u0000\n\u0000\u0016\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u0011\u0000#EO\u0017\u0000\u001dhe\u0019l\f\u0000\u0004O,EOj\f\u0000\u0007[OY\u000f\u000e\u0002\u001d\u0000\u0001\u0002%\u0011\u0002%\u00006\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000y\u0000?\u0000c\u0000m\u0000d\u0000=\u0000h\u0000i\u0000&\u0000n\u0000a\u0000m\u0000e\u0000=\u0000h\u0000o\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.sysodisAaleR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000e\u0000\t\u0000\u0001\u0000\n\u0011\u0000\n\u0000Z\u0000T\u0000h\u0000i\u0000s\u0000 \u0000a\u0000p\u0000p\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\r\u0000\r\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0010\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0014\u0000\u0015\u0001\u0000\u0000\f\u0000\u0014\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000'\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u0000 \u0000!\n\u0000\u0004\nctxt\r\u0000 \u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u0000\"\r\u0000\"\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000%\r\u0000%\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000&\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000&\u0000\u0003\u0000'\u0000(\n\u0000\u0004\npsof\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000(\u0000\u0003\u0000+\n\u0000\u0004\npsin\r\u0000+\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001b\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000,\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000,\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000-\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000(\u00003\u00001\u00002\r\u00001\u0000\u0003I\u0000\u0002\u0000(\u00001\u00003\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u00003\u0000\u0003\u00004\u00005\n\u0000\u0004\npsof\r\u00004\u0000\u0001m\u0000\u0000\u0000*\u0000+\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0002\u0000?\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\npsin\r\u00008\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u00000\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0004Z\u0000\u0000\u00004\u0000F\u0000;\u0000<\r\u0000;\u0000\u0002A\u0000\u0001\u00004\u00007\u0000=\u0000>\r\u0000=\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000>\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0002\r\u0000<\u0000\u0001k\u0000\u0000\u0000:\u0000B\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000:\u0000?\u0000B\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000B\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000E\r\u0000E\u0000\u0001L\u0000\u0000\u0000@\u0000B\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0002r\u0000\u0000\u0000G\u0000V\u0000H\u0000I\r\u0000H\u0000\u0002n\u0000\u0000\u0000G\u0000T\u0000J\u0000K\r\u0000J\u0000\u00037\u0001\u0000\u0000H\u0000T\u0000L\u0000M\n\u0000\u0004\nctxt\r\u0000L\u0000\u0001m\u0000\u0000\u0000L\u0000N\u0003\u0000\u0001\r\u0000M\u0000\u0003l\u0000\u0005\u0000O\u0000S\u0000N\r\u0000N\u0000\u0002\\\u0000\u0000\u0000O\u0000S\u0000O\u0000P\r\u0000O\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000P\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000G\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003Q\u0000\u0000\u0000W\u0000t\u0000S\u0000T\u0000U\r\u0000S\u0000\u0002r\u0000\u0000\u0000Z\u0000i\u0000V\u0000W\r\u0000V\u0000\u0002n\u0000\u0000\u0000Z\u0000g\u0000X\u0000Y\r\u0000X\u0000\u00037\u0001\u0000\u0000[\u0000g\u0000Z\u0000[\n\u0000\u0004\nctxt\r\u0000Z\u0000\u0003l\u0000\u0005\u0000_\u0000c\u0000\\\r\u0000\\\u0000\u0002[\u0000\u0000\u0000_\u0000c\u0000]\u0000^\r\u0000]\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000^\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000[\u0000\u0001m\u0000\u0000\u0000d\u0000f\u0003\r\u0000Y\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000T\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000U\u0000\u0002r\u0000\u0000\u0000q\u0000t\u0000_\u0000`\r\u0000_\u0000\u0001m\u0000\u0000\u0000q\u0000r\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000\u0000\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000R\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002r\u0000\u0000\u0000u\u0000z\u0000e\u0000f\r\u0000e\u0000\u0001m\u0000\u0000\u0000u\u0000v\u0000g\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000\u0002\u0000&\r\u0000f\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000w\u0000y\n\u0000\u0004\ntxdl\r\u0000j\u0000\u00011\u0000\u0000\u0000v\u0000w\n\u0000\u0004\nascr\u0002\u0000d\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002r\u0000\u0000\u0000{\u0000\u0000m\u0000n\r\u0000m\u0000\u0002n\u0000\u0000\u0000{\u0000\u0000o\u0000p\r\u0000o\u0000\u00012\u0000\u0000\u0000|\u0000\n\u0000\u0004\ncitm\r\u0000p\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000l\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0000\u0000s\u0000t\r\u0000s\u0000\u0001m\u0000\u0000\u0000\u0000\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u0002\u0000=\r\u0000t\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000r\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002r\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0005Y\u0000\u0000\u0000\u0001\u0006\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0007\u0001\u000e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0007\u0001\n\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000b\u0001\r\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\n\u0001\u000b\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u000f\u0001\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u000f\u0001\u000f\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u000f\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u000f\u0001\u0014\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0013\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0017\u0001\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u0017\u0001I\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001a\u00011\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u001a\u0001!\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u001a\u0001\u001f\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001f\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\"\u0001)\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\"\u0001'\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001#\u0001'\u000b\u0000\b0\u0000\u0004name\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\"\u0001#\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001*\u00011\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001*\u0001\/\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001+\u0001\/\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001*\u0001+\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000}\u0000|\n}\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002|\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u00019\u0001I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00019\u0001Fz\u0000y\nz\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u00019\u0001B\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00019\u0001>\u0000\u0001\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00019\u0001<\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001<\u0001=x\u000bx\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001>\u0001A\u0001\u0003\u000e\u0001\u0003\u0000\u0001\u0001\u0004\u0011\u0001\u0004\u0000\u0002\u0000)\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005w\r\u0001\u0005\u0000\u0001L\u0000\u0000\u0001G\u0001Iv\u0001v\u0000\u0000\u0002w\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0001J\u0001Juts\u0001u\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0003l\u0000\u0001\u0001J\u0001Jr\u0001\n\u0001\u000b\u0001r\u0000\u0000\f\u0001\n\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0001\u000b\u0000\u0001\u0001\f\u0011\u0001\f\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001\t\u0000\u0002\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003Q\u0000\u0000\u0001J\u0001\u0001\u000f\u0001\u0010\u0001\u0011\r\u0001\u000f\u0000\u0001k\u0000\u0000\u0001M\u0001|\u0001\u0012\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002r\u0000\u0000\u0001M\u0001b\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0002b\u0000\u0000\u0001M\u0001^\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0003l\u0000\u0005\u0001M\u0001Z\u0001\u0019qp\r\u0001\u0019\u0000\u0003I\u0000\u0002\u0001M\u0001Zo\u0001\u001a\u0001\u001b\no\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0001M\u0001Pn\nn\u0000\b\u000bafdrtemp\u0006\u0001\u001b\u0000\u0003m\u0001\u001cl\nm\u0000\u0004\nrtyp\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001S\u0001Vk\nk\u0000\u0004\nTEXT\u0006l\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0001Z\u0001]\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u001fi\r\u0001\u001f\u0000\u0003I\u0000\u0002\u0001c\u0001|h\u0001 g\nh\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001 \u0000\u0002b\u0000\u0000\u0001c\u0001x\u0001!\u0001\"\r\u0001!\u0000\u0002b\u0000\u0000\u0001c\u0001p\u0001#\u0001$\r\u0001#\u0000\u0002b\u0000\u0000\u0001c\u0001l\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0001c\u0001f\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001&\u0000\u0003l\u0000\u0005\u0001f\u0001k\u0001)fe\r\u0001)\u0000\u0002n\u0000\u0000\u0001f\u0001k\u0001*\u0001+\r\u0001*\u0000\u00011\u0000\u0000\u0001g\u0001kd\nd\u0000\u0004\nstrq\r\u0001+\u0000\u0001o\u0000\u0000\u0001f\u0001gc\u000bc\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\r\u0001$\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\"\u0000\u0002n\u0000\u0000\u0001p\u0001w\u0001.\u0001\/\r\u0001.\u0000\u00011\u0000\u0000\u0001s\u0001wb\nb\u0000\u0004\npsxp\r\u0001\/\u0000\u0001o\u0000\u0000\u0001p\u0001sa\u000ba\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002g\u0000\u0000\u0002i\u0000\u0000\r\u0001\u0010\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000`\u00010_\n`\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002_\u0000\u0000\r\u0001\u0011\u0000\u0001k\u0000\u0000\u0001\u0001\u00011\u0002\u00011\u0000\u0002\u00012\u00013\r\u00012\u0000\u0003I\u0000\u0002\u0001\u0001]\u00014\\\n]\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u00014\u0000\u0002b\u0000\u0000\u0001\u0001\u00015\u00016\r\u00015\u0000\u0002b\u0000\u0000\u0001\u0001\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0001\u0001\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0001[\u000b[\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0001\u0001;\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u0000\u0002\u0000)\u0002\\\u0000\u0000\u0002\u00013\u0000\u0002\u0001=Z\r\u0001=\u0000\u0001L\u0000\u0000\u0001\u0001Y\u0001Y\u0000\u0000\u0002Z\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0001\u0001XWV\u0001X\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002\u0001?\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0003l\u0000\u0001\u0001\u0001U\u0001B\u0001C\u0001U\u0000\u0000\f\u0001B\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001C\u0000\u0001\u0001D\u0011\u0001D\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001A\u0000\u0002\u0001ET\r\u0001E\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001F\u0001G\u0001H\r\u0001F\u0000\u0001k\u0000\u0000\u0001\u0001\u0001I\u0002\u0001I\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0003I\u0000\u0002\u0001\u0001S\u0001LR\nS\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001L\u0000\u0002b\u0000\u0000\u0001\u0001\u0001M\u0001N\r\u0001M\u0000\u0002b\u0000\u0000\u0001\u0001\u0001O\u0001P\r\u0001O\u0000\u0002b\u0000\u0000\u0001\u0001\u0001Q\u0001R\r\u0001Q\u0000\u0002b\u0000\u0000\u0001\u0001\u0001S\u0001T\r\u0001S\u0000\u0001m\u0000\u0000\u0001\u0001\u0001U\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001T\u0000\u0001o\u0000\u0000\u0001\u0001Q\u000bQ\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001R\u0000\u0001m\u0000\u0000\u0001\u0001\u0001W\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0000\u0002\u0000 \r\u0001P\u0000\u0002n\u0000\u0000\u0001\u0001\u0001Y\u0001Z\r\u0001Y\u0000\u00011\u0000\u0000\u0001\u0001P\nP\u0000\u0004\npsxp\r\u0001Z\u0000\u0001o\u0000\u0000\u0001\u0001O\u000bO\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001N\u0000\u0001m\u0000\u0000\u0001\u0001\u0001[\u000e\u0001[\u0000\u0001\u0001\\\u0011\u0001\\\u0000\u0002\u0000\"\u0002R\u0000\u0000\u0002\u0001K\u0000\u0002\u0001]N\r\u0001]\u0000\u0003I\u0000\u0002\u0001\u0001M\u0001^L\nM\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001^\u0000\u0002b\u0000\u0000\u0001\u0001\u0001_\u0001`\r\u0001_\u0000\u0002b\u0000\u0000\u0001\u0001\u0001a\u0001b\r\u0001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0001c\u000e\u0001c\u0000\u0001\u0001d\u0011\u0001d\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001b\u0000\u0001o\u0000\u0000\u0001\u0001K\u000bK\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0001\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\u0004\u0000\"\u0000.\u0002L\u0000\u0000\u0002N\u0000\u0000\r\u0001G\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000J\u0001gI\nJ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002I\u0000\u0000\r\u0001H\u0000\u0001k\u0000\u0000\u0001\u0001\u0001h\u0002\u0001h\u0000\u0002\u0001i\u0001j\r\u0001i\u0000\u0003I\u0000\u0002\u0001\u0001G\u0001kF\nG\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001k\u0000\u0002b\u0000\u0000\u0001\u0001\u0001l\u0001m\r\u0001l\u0000\u0002b\u0000\u0000\u0001\u0001\u0001n\u0001o\r\u0001n\u0000\u0002b\u0000\u0000\u0001\u0001\u0001p\u0001q\r\u0001p\u0000\u0002b\u0000\u0000\u0001\u0001\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u0001\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001s\u0000\u0001o\u0000\u0000\u0001\u0001E\u000bE\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001v\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001o\u0000\u0001o\u0000\u0000\u0001\u0001D\u000bD\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001x\u000e\u0001x\u0000\u0001\u0001y\u0011\u0001y\u0000\u0002\u0000)\u0002F\u0000\u0000\u0002\u0001j\u0000\u0002\u0001zC\r\u0001z\u0000\u0001L\u0000\u0000\u0001\u0001B\u0001B\u0000\u0000\u0002C\u0000\u0000\u0002T\u0000\u0000\u0002\u0000\u0000\u0002\u0001{\u0001|\r\u0001{\u0000\u0002=\u0000\u0003\u0001\u0001\u0001}\u0001~\r\u0001}\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001~\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001|\u0000\u0002\u0001@\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002w\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u0001?\u0001\u0001\u0001?\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002\u001c\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0004\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001=\u000b=\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001;\u000b;\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001:\u000b:\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u00018\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0002\u0004\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0002\u00027\u000b7\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\t0\u0000\u0005_yaml\u0000\u0000\u00028\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00004\u00013\n4\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u00070\u0000\u0003msg\u0000\u0000\u00023\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\f\u0002\u001c\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\f\u0002\u00191\u00010\n1\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\f\u0002\u0015\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\f\u0002\u0011\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\f\u0002\u000f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u000f\u0002\u0010\/\u000b\/\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0011\u0002\u0014\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00020\u0000\u0000\u0002\u0001\u0000\u0002\u0001.\r\u0001\u0000\u0001L\u0000\u0000\u0002\u001a\u0002\u001c-\u0001-\u0000\u0000\u0002.\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002\u001d\u0002\u001d,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002\u001d\u0002\u001d)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002\u001d\u0002\u001d&\u0001\u0001\u0001&\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002\u001d\u0002.\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u001d\u0002*\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u001d\u0002&\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u001d\u0002$\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u001d\u0002 %\u000b%\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002 \u0002#\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0002$\u0002%$\u000b$\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002&\u0002)\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\"\r\u0001\u0000\u0003Q\u0000\u0000\u0002\/\u0002w\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u00022\u0002W\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00022\u0002G!\u0001 \n!\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00022\u0002C\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00022\u0002?\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00022\u0002;\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00022\u00025\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u00025\u0002:\u0001\u001f\u001e\r\u0001\u0000\u0002n\u0000\u0000\u00025\u0002:\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00026\u0002:\u001d\n\u001d\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u00025\u00026\u001c\u000b\u001c\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002;\u0002>\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002?\u0002B\u001b\u000b\u001b\u0000\b0\u0000\u0004dest\u0000\u0000\u0002 \u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001a\r\u0001\u0000\u0003I\u0000\u0002\u0002H\u0002W\u0019\u0001\u0018\n\u0019\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002H\u0002S\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002H\u0002O\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002H\u0002K\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002K\u0002N\u0017\u000b\u0017\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002O\u0002R\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002\u0018\u0000\u0000\u0002\u001a\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0001\u0015\n\u0016\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0015\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002_\u0002w\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002_\u0002t\u0013\u0001\u0012\n\u0013\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002_\u0002p\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002_\u0002l\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002_\u0002j\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002_\u0002f\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002_\u0002b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002b\u0002e\u0011\u000b\u0011\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002f\u0002i\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002j\u0002k\u0010\u000b\u0010\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002l\u0002o\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002\u0012\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000f\r\u0001\u0000\u0001L\u0000\u0000\u0002u\u0002w\u000e\u0001\u000e\u0000\u0000\u0002\u000f\u0000\u0000\u0002\"\u0000\u0000\u0002@\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002z\u0002\r\u0001\f\n\r\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002z\u0002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002z\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002z\u0002}\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002}\u0002~\u000b\u000b\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\f\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\n\u0002\u0000\u0002\u0001\u0002\u0002\u0001\n\u0000\u0000\u0010\u0002\u0000\u0000\u0002\t\b\n\t\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\b\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002\u0001\u0000\u0007\u0010\u0007\u0000\u000f\u0006\u0005\u0002\u0003\u0002\u0004\u0004\n\u0007\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0006\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0005\u0000\u0000\u0010\u0002\u0003\u0000\u0013\u0003\u0002\u0001\u0000\u000b\u0003\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0002\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0001\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002\u0004\u0000G\u0000)\u0000-\u00006\u0000C\u0000a\u0000g\u0000u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0003\u0001\u001d\u0001'\u0001,\u00019\u0001;\u0001U\u0001W\u0001[\u0001c\u0001e\u0001t\u0001v\u0001x\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0004\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\fX\u0000\u0006\u0000\u0007j\f\u0000\tO*\f\u0000\u0005EOl\u0004\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0003hO[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000ukj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0014X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002\u0002\u0000\u0007\u0010\u0002\u0005\u0002\u0006\u0002\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0002\b\u0002\u0002\b\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0006\u0000\u0000\u0010\u0002\u0007\u0000\u0002\u0000\t\n\u0000\u0018.sysodisAaleR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0006j\f\u0000\u0001\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"187860b6fce26d09de5fe8359b2a67c36d20c0c6","subject":"Much more robust check for dependencies. Fixes #4","message":"Much more robust check for dependencies. Fixes #4\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n \n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"2b6069f41f0ecc505e5690153cc990ae6d7de5ad","subject":"Change script for rspec command only","message":"Change script for rspec command only\n","repos":"chautoni\/tube.vim","old_file":"autoload\/applescript\/iterm.scpt","new_file":"autoload\/applescript\/iterm.scpt","new_contents":"-- execute_iterm.scpt\n-- last change: 19 Jan 2013\n---\n-- this script require an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n tell application \"iTerm\"\n repeat with _terminal in terminals\n repeat with _session in (every session of _terminal whose name contains \"rspec\")\n tell the _session\n write text command\n end tell\n end repeat\n end repeat\n end tell\nend run\n","old_contents":"-- execute_iterm.scpt\n-- last change: 19 Jan 2013\n---\n-- this script require an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application \"iTerm\"\n\n try\n set mysession to current session of current terminal\n on error\n set myterm to (make new terminal)\n tell myterm\n launch session \"rspec\"\n set mysession to current session\n end tell\n end try\n\n -- execute the command\n tell mysession\n write text command\n end tell\n\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8f2332575d7ad2fb3d9abf60b175de69488cf946","subject":"Offer an option to run under iTerm if it's installed","message":"Offer an option to run under iTerm if it's installed\n","repos":"lakwarus\/c5-osx-installer,yut148\/osx-installer,boot2docker\/osx-installer,boot2docker\/osx-installer,cgvarela\/osx-installer,yut148\/osx-installer,cgvarela\/osx-installer,lakwarus\/c5-osx-installer,JoeWoo\/osx-installer,JoeWoo\/osx-installer","old_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0004\u0000!\u0000\f\r\u0000\f\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000!\u0000\r\u0000\u000e\u0000\u000f\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0016\u0000\u0010\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0012\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001e\u0000\u0000\u0000\u000b\u0000\u0011\u0000\u0015\r\u0000\u0015\u0000\u00035\u0000\u0000\u0000\u000b\u0000\u0011\u0000\u0016\n\u0000\u0004\nappf\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000*\u0000c\u0000o\u0000m\u0000.\u0000g\u0000o\u0000o\u0000g\u0000l\u0000e\u0000c\u0000o\u0000d\u0000e\u0000.\u0000i\u0000t\u0000e\u0000r\u0000m\u00002\n\u0000\b\u000bkfrmID \r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0019\u000f\u0000\u0019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u0000\u0000\u00000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\t\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\\\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00000\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u001a\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovtrue\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\u0002\u0000\u0000\r\u0000\u000e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u0002r\u0000\u0000\u0000\u001e\u0000!\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\b\u000bboovfals\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\"\u0000\u0000#\r\u0000#\u0000\u0004Z\u0000\u0000\u0000\"\u0000\u0000$\u0000%\u0000&\r\u0000$\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\r\u0000%\u0000\u0001k\u0000\u0000\u0000&\u0000\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000&\u00001\u0000*\u0000+\r\u0000*\u0000\u0002b\u0000\u0000\u0000&\u0000\/\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0005\u0000&\u0000-\u0000.\r\u0000.\u0000\u0002c\u0000\u0000\u0000&\u0000-\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0005\u0000&\u0000+\u00001\r\u00001\u0000\u0003I\u0000\u0002\u0000&\u0000+\u00002\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u0001m\u0000\u0000\u0000&\u0000'\n\u0000\b\u000bafdrcusr\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000-\u0000\u0001m\u0000\u0000\u0000-\u0000.\u00003\u000e\u00003\u0000\u0001\u00004\u0011\u00004\u0000:\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000:\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\u0002\u0000)\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002h\u0000\u0000\u00002\u00009\u00007\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\r\u00007\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u00008\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000:\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003Q\u0000\u0000\u0000:\u0000\u0000?\u0000@\u0000A\r\u0000?\u0000\u0001k\u0000\u0000\u0000=\u0000M\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002c\u0000\u0000\u0000=\u0000@\u0000E\u0000F\r\u0000E\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\r\u0000F\u0000\u0001m\u0000\u0000\u0000>\u0000?\n\u0000\u0004\nalis\u0002\u0000D\u0000\u0002\u0000G\r\u0000G\u0000\u0002r\u0000\u0000\u0000A\u0000M\u0000H\u0000I\r\u0000H\u0000\u0003I\u0000\u0002\u0000A\u0000K\u0000J\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000J\u0000\u00024\u0000\u0000\u0000A\u0000G\u0000K\n\u0000\u0004\nfile\r\u0000K\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\u0002\u0000\u0000\r\u0000I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u0002\u0000\u0000\r\u0000@\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001k\u0000\u0000\u0000U\u0000\u0000L\u0002\u0000L\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000w\u0000O\u0000P\r\u0000O\u0000\u0003l\u0001\u0000\u0000U\u0000q\u0000Q\r\u0000Q\u0000\u0002n\u0000\u0000\u0000U\u0000q\u0000R\u0000S\r\u0000R\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nbhit\r\u0000S\u0000\u0003l\u0000\u0005\u0000U\u0000m\u0000T\r\u0000T\u0000\u0003I\u0000\u0002\u0000U\u0000m\u0000U\u0000V\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000U\u0000\u0001m\u0000\u0000\u0000U\u0000X\u0000W\u000e\u0000W\u0000\u0001\u0000X\u0011\u0000X\u00000\u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000w\u0000i\u0000t\u0000h &\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\nbtns\r\u0000Y\u0000\u0001J\u0000\u0000\u0000[\u0000c\u0000[\u0002\u0000[\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000]\u0000\u0002\u0000`\r\u0000`\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u0002\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000c\n\u0000\u0004\ndflt\r\u0000c\u0000\u0001m\u0000\u0000\u0000f\u0000g\u0003\u0000\u0001\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000P\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000d\u0000e\r\u0000d\u0000\u0001o\u0000\u0000\u0000r\u0000v\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\r\u0000e\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u0002\u0000N\u0000\u0002\u0000f\r\u0000f\u0000\u0003I\u0000\u0002\u0000x\u0000\u0000g\u0000h\n\u0000\u0018.sysostornull\u0000\u0000scpt\r\u0000g\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u0006\u0000h\u0000\u0003\u0000i\u0000j\n\u0000\u0004\nfpth\r\u0000i\u0000\u00024\u0000\u0000\u0000|\u0000\u0000k\n\u0000\u0004\nfile\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\u0006\u0000j\u0000\u0003\u0000l\n\u0000\u0004\nsavo\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000>\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000\u0000\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0005\u0000\u0000\u0000s\r\u0000s\u0000\u0002n\u0000\u0000\u0000\u0000\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\u0002\u0000p\u0000\u0002\u0000v\r\u0000v\u0000\u0002r\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0005\u0000\u0000\u0000y\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0000\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0000*\u0000 \u0000T\u0000o\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000p\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000d\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000|\u0002\u0000|\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntdct\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000b\u0000a\u0000s\u0000h\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0004\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0005\u0001\u0012\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000^\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000D\u0000Y\u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0000 \u0000;\u0000 \u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001\u000b\u0001\u000e\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0013\u0001 \u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001c\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001!\u0001.\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0001!\u0001$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001'\u0001*\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\/\u0001@\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0001\/\u00016\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\/\u00012\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00012\u00015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000\u0000\u0003~\u0000}\n~\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u00019\u0001<|\u000b|\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001A\u0001R{\u0000\u0000\n{\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0001A\u0001H\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001Dz\u000bz\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001D\u0001G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000\u0000\u0003y\u0000x\ny\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001K\u0001Nw\u000bw\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006x\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001S\u0001`v\u0000\u0000\nv\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000\u0000\u0003u\u0000t\nu\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001Y\u0001\\s\u000bs\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006t\u0000\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0004Z\u0000\u0000\u0001a\u0001\u0000\u0000qp\r\u0000\u0000\u0002?\u0000\u0000\u0001a\u0001j\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001a\u0001h\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001d\u0001ho\no\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0001a\u0001dn\u000bn\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\r\u0000\u0000\u0001m\u0000\u0000\u0001h\u0001im\u0003m\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001m\u0001l\u0000\u0000\nl\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0001m\u0001|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000e\u0000c\u0000h\u0000o\u0000 \u0000-\u0000e\u0000 \r\u0000\u0000\u0002n\u0000\u0000\u0001p\u0001{\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001w\u0001{k\nk\u0000\u0004\nstrq\r\u0000\u0000\u0003l\u0000\u0005\u0001p\u0001w\u0000ji\r\u0000\u0000\u0002c\u0000\u0000\u0001p\u0001w\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001p\u0001sh\u000bh\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\r\u0000\u0000\u0001m\u0000\u0000\u0001s\u0001vg\ng\u0000\u0004\nTEXT\u0001j\u0000\u0000\u0001i\u0000\u0000\u0006\u0000\u0000\u0003f\u0000e\nf\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001d\u000bd\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006e\u0000\u0000\u0002q\u0000\u0000\u0001p\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u0000\u0000\u0000N\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000!\u0002\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0002\u001f\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000N\u0000\u0000\u0000M\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000cba\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000`\r\u0001\u0000\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\u0001_^\r\u0001\u0001\u0000\u0004Z\u0000\u0000\u0001\u0002\u0001\u0002\u0001\u0003]\\\r\u0001\u0002\u0000\u0002=\u0000\u0001\u0001\u0001\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0001\u0001[\u000b[\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\r\u0001\u0003\u0000\u0002O\u0000\u0000\u0001\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003I\u0000\u0002\u0001\u0001ZYX\nZ\u0000\u0018.miscactvnull\u0000\u0000null\u0001Y\u0000\u0000\u0002X\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\r\u0001\u000e\r\u0001\r\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0011WV\r\u0001\u0011\u0000\u0003I\u0000\u0002\u0001\u0001UT\u0001\u0012\nU\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001T\u0000\u0000\u0006\u0001\u0012\u0000\u0003S\u0001\u0013R\nS\u0000\u0004\nkocl\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0001\u0001Q\nQ\u0000\u0004\nPtrm\u0006R\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0001\u000e\u0000\u0002\u0001\u0014O\r\u0001\u0014\u0000\u0002O\u0000\u0000\u0001\u0002\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u001cNM\r\u0001\u001c\u0000\u0003I\u0000\u0002\u0001\u0001LK\u0001\u001d\nL\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001K\u0000\u0000\u0006\u0001\u001d\u0000\u0003J\u0001\u001e\u0001\u001f\nJ\u0000\u0004\nkocl\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0001\u0001I\nI\u0000\u0004\nPssn\u0006\u0001\u001f\u0000\u0003H\u0001 G\nH\u0000\u0004\ninsh\r\u0001 \u0000\u0003l\u0001\u0000\u0001\u0001\u0001!FE\r\u0001!\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\"\u0001#\r\u0001\"\u0000\u0000;\u0000\u0000\u0001\u0001\r\u0001#\u0000\u00012\u0000\u0001\u0001\u0001D\nD\u0000\u0004\nPssn\u0001F\u0000\u0000\u0001E\u0000\u0000\u0006G\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\r\u0001\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00180\u0000\nnewsession\u0000\nnewSession\u0002\u0001\u0019\u0000\u0002\u0001$B\r\u0001$\u0000\u0002O\u0000\u0000\u0001\u0002\u0001%\u0001&\r\u0001%\u0000\u0001k\u0000\u0000\u0001\u0002\u0001'\u0002\u0001'\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0002r\u0000\u0000\u0001\u0001\u0001*\u0001+\r\u0001*\u0000\u0001m\u0000\u0000\u0001\u0001\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0001+\u0000\u00011\u0000\u0000\u0001\u0001A\nA\u0000\u0004\npnam\u0002\u0001)\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0002r\u0000\u0000\u0001\u0001\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0001\u0001\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u001e\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00140\u0000\blocalbin\u0000\blocalBin\u0002\u0001\/\u0000\u0002\u00014\u00015\r\u00014\u0000\u0002r\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002b\u0000\u0000\u0001\u0001\u00018\u00019\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0001?\u000b?\u0000\u00140\u0000\blocalbin\u0000\blocalBin\r\u00019\u0000\u0001m\u0000\u0000\u0001\u0001\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u0000\u0016\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u00015\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0002r\u0000\u0000\u0001\u0002\u0006\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0001\u0002\u0002\u0001@\u0001A\r\u0001@\u0000\u0001o\u0000\u0000\u0001\u0001=\u000b=\u0000\u00140\u0000\blocalbin\u0000\blocalBin\r\u0001A\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0001B\u000e\u0001B\u0000\u0001\u0001C\u0011\u0001C\u0000\f\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\u00050\u0000\u0001d\u0000\u0000\u0002\u0001=\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0003I\u0000\u0002\u0002\u0007\u0002\u0012;:\u0001F\n;\u0000\u0018.ITRMExecnull\u0000\u0000\u0000\u0010\u0000obj \u0001:\u0000\u0000\u0006\u0001F\u0000\u00039\u0001G8\n9\u0000\u0004\nCmnd\r\u0001G\u0000\u0001m\u0000\u0000\u0002\u000b\u0002\u000e\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\u000e\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u00068\u0000\u0000\u0002\u0001E\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0003I\u0000\u0002\u0002\u0013\u0002\u001e76\u0001L\n7\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u00016\u0000\u0000\u0006\u0001L\u0000\u00035\u0001M4\n5\u0000\u0004\niTxt\r\u0001M\u0000\u0001m\u0000\u0000\u0002\u0017\u0002\u001a\u0001N\u000e\u0001N\u0000\u0001\u0001O\u0011\u0001O\u0000^\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000D\u0000Y\u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0000 \u0000;\u0000 \u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u00064\u0000\u0000\u0002\u0001K\u0000\u0002\u0001P\u0001Q\r\u0001P\u0000\u0003I\u0000\u0002\u0002\u001f\u0002*32\u0001R\n3\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u00012\u0000\u0000\u0006\u0001R\u0000\u00031\u0001S0\n1\u0000\u0004\niTxt\r\u0001S\u0000\u0001m\u0000\u0000\u0002#\u0002&\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u00060\u0000\u0000\u0002\u0001Q\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0003I\u0000\u0002\u0002+\u00026\/.\u0001X\n\/\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001.\u0000\u0000\u0006\u0001X\u0000\u0003-\u0001Y,\n-\u0000\u0004\niTxt\r\u0001Y\u0000\u0001m\u0000\u0000\u0002\/\u00022\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006,\u0000\u0000\u0002\u0001W\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003I\u0000\u0002\u00027\u0002F+*\u0001^\n+\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001*\u0000\u0000\u0006\u0001^\u0000\u0003)\u0001_(\n)\u0000\u0004\niTxt\r\u0001_\u0000\u0002b\u0000\u0000\u0002;\u0002B\u0001`\u0001a\r\u0001`\u0000\u0001o\u0000\u0000\u0002;\u0002>'\u000b'\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0001a\u0000\u0001m\u0000\u0000\u0002>\u0002A\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\n\u0000 \u0000i\u0000n\u0000i\u0000t\u0006(\u0000\u0000\u0002\u0001]\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0002G\u0002^&%\u0001f\n&\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001%\u0000\u0000\u0006\u0001f\u0000\u0003$\u0001g#\n$\u0000\u0004\niTxt\r\u0001g\u0000\u0002b\u0000\u0000\u0002K\u0002Z\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0002K\u0002V\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0002K\u0002R\u0001l\u0001m\r\u0001l\u0000\u0001o\u0000\u0000\u0002K\u0002N\"\u000b\"\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0001m\u0000\u0001m\u0000\u0000\u0002N\u0002Q\u0001n\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000D\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\r\u0001k\u0000\u0001o\u0000\u0000\u0002R\u0002U!\u000b!\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0001i\u0000\u0001m\u0000\u0000\u0002V\u0002Y\u0001p\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000*\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006#\u0000\u0000\u0002\u0001e\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003I\u0000\u0002\u0002_\u0002n \u001f\u0001t\n \u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u001f\u0000\u0000\u0006\u0001t\u0000\u0003\u001e\u0001u\u001d\n\u001e\u0000\u0004\niTxt\r\u0001u\u0000\u0002b\u0000\u0000\u0002c\u0002j\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0002c\u0002f\u001c\u000b\u001c\u0000\u00050\u0000\u0001d\u0000\u0000\r\u0001w\u0000\u0001m\u0000\u0000\u0002f\u0002i\u0001x\u000e\u0001x\u0000\u0001\u0001y\u0011\u0001y\u0000\u0010\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u001d\u0000\u0000\u0002\u0001s\u0000\u0002\u0001z\u001b\r\u0001z\u0000\u0004Z\u0000\u0000\u0002o\u0002\u0001{\u0001|\u001a\u0019\r\u0001{\u0000\u0002?\u0000\u0000\u0002o\u0002x\u0001}\u0001~\r\u0001}\u0000\u0002n\u0000\u0000\u0002o\u0002v\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0002r\u0002v\u0018\n\u0018\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0002o\u0002r\u0017\u000b\u0017\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\r\u0001~\u0000\u0001m\u0000\u0000\u0002v\u0002w\u0016\u0003\u0016\u0000\u0000\r\u0001|\u0000\u0003I\u0000\u0002\u0002{\u0002\u0015\u0014\u0001\n\u0015\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0014\u0000\u0000\u0006\u0001\u0000\u0003\u0013\u0001\u0012\n\u0013\u0000\u0004\niTxt\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000e\u0000c\u0000h\u0000o\u0000 \u0000-\u0000e\u0000 \r\u0001\u0000\u0002n\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0002\u0002\u0011\n\u0011\u0000\u0004\nstrq\r\u0001\u0000\u0003l\u0000\u0005\u0002\u0002\u0001\u0010\u000f\r\u0001\u0000\u0002c\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000e\u000b\u000e\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\r\n\r\u0000\u0004\nTEXT\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0006\u0012\u0000\u0000\u0002\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u001b\u0000\u0000\r\u0001&\u0000\u0001o\u0000\u0000\u0001\u0001\f\u000b\f\u0000\u00180\u0000\nnewsession\u0000\nnewSession\u0002B\u0000\u0000\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u000b\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002O\u0000\u0000\r\u0001\t\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u0000\u0000\u0000M\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u057b~\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000n\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000M\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002]\u0000\u0000\u0001\\\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002`\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\n\u0001\u0001\t\u0001\u0001\u0000z\u0001\u0001\u00012\u0001\u0001\b\u0007\u0006\u0005\u0004\u0003\u0001\n\u0000\u0000\u0010\u0001\u0000\u0010\u0002\u0001\u0000\n\u0002\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0001\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\u000b\u0000\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\u000b\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u00180\u0000\nnewsession\u0000\nnewSession\u000b\u0000\u00140\u0000\blocalbin\u0000\blocalBin\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u000b\u0000\u00050\u0000\u0001d\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001\u0002\u0001\u0000\u0002\u0000\u0005\u0001\u0002\u0001\u0000\u0002\u0000\n\u0001\u0002\u0001\u0000\u0002\u0000!\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0001\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u0010\u0001\u0000U\u0000\u0019\u0000\u0017\u00003\u00007\u0001\u0000W\u0000^\u0000a\u0000z\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0001,\u00012\u0001:\u0001B\u0001H\u0001N\u0001T\u0001Z\u0001b\u0001n\u0001p\u0001x\u0001\u000b\u0000 0\u0000\u000eiterminstalled\u0000\u000eiTermInstalled\n\u0000\u0004\nappf\n\u0000\b\u000bkfrmID \u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdrcusr\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nctxt\u000b\u0000\"0\u0000\u000fpreferencespath\u0000\u000fpreferencesPath\u000b\u0000&0\u0000\u0011preferencesscript\u0000\u0011preferencesScript\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.ascrinit****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0002\u0001\u0000\u0002\u00007\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0001\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\u0010\u0001\u0000\u0002\u00009\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\u0011\u0000\u0003\u000f\n\u0000\u0004\nalis\n\u0000\u0004\nfile\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\u000b\u0000\u001a0\u0000\u000bterminalapp\u0000\u000bterminalApp\n\u0000\u0004\nfpth\n\u0000\u0004\nsavo\n\u0000\u0018.sysostornull\u0000\u0000scpt\u000b\u0000 0\u0000\u000eterminalappmsg\u0000\u000eterminalAppMsg\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\n\u0000\u0004\ntitl\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nleng\n\u0000\u0004\nTEXT\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\nPtrm\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\nPssn\n\u0000\u0004\ninsh\u000b\u0000\u00180\u0000\nnewsession\u0000\nnewSession\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\blocalbin\u0000\blocalBin\u000b\u0000\u00050\u0000\u0001d\u0000\u0000\n\u0000\u0004\nCmnd\n\u0000\u0018.ITRMExecnull\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\niTxt\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0002fEO\u0014\u0000\u0014\u0012\u0000\b*0EUOeEW\u0000\nX\u0000\u0005\u0000\u0006fEO\u001d\u0000}j\f\u0000\b&%EOK\u0000\u000eSO\u0014\u0000\u0015&O*a\u0000\u0010\/j\f\u0000\u0011EW\u0000>X\u0000\u0005\u0000\u0006a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015lva\u0000\u0016ka\u0000\u0017\f\u0000\u0018a\u0000\u0019,a\u0000\u001a,FOa\u0000\u001b*a\u0000\u0010\/a\u0000\u001cea\u0000\u0017\f\u0000\u001dOa\u0000\u001a,E`\u0000\u001aOa\u0000\u001eE`\u0000\u001fY\u0000\u0011a\u0000 E`\u0000\u001aOa\u0000!E`\u0000\u001fO_\u0000\u001aa\u0000\"\u0000\u001d\u0000a\u0000#\u0012\u0000*j\f\u0000$E`\u0000%Oa\u0000&E`\u0000'Oe_\u0000%a\u0000(,FOa\u0000)E`\u0000*Oa\u0000+a\u0000,_\u0000%l\f\u0000$O_\u0000'_\u0000%a\u0000-,FO*j\f\u0000.Oa\u0000\/a\u0000,_\u0000%l\f\u0000$Oa\u00000a\u0000,_\u0000%l\f\u0000$Oa\u00001a\u0000,_\u0000%l\f\u0000$O_\u0000*a\u00002%a\u0000,_\u0000%l\f\u0000$O_\u0000*a\u00003%a\u0000,_\u0000%l\f\u0000$Oa\u00004a\u0000,_\u0000%l\f\u0000$O_\u0000\u001fa\u00005,j\u0002\u001d\u0000\u001ea\u00006_\u0000\u001fa\u00007&a\u00008,%a\u0000,_\u0000%l\f\u0000$Y\u0000\u0003hUY\u0000\u0003hO_\u0000\u001aa\u00009\u0000\u001d\u0001\u0004a\u0000:\u0012\u0000*j\f\u0000.O*a\u0000;a\u0000<l\f\u0000=E`\u0000%O_\u0000%\u0012\u0000*a\u0000;a\u0000>a\u0000?*a\u0000>-6a\u0000\u0017\f\u0000=E`\u0000@O_\u0000@\u0012\u0000a\u0000A*a\u0000B,FOa\u0000CE`\u0000DO_\u0000Da\u0000E%E`\u0000*O_\u0000Da\u0000F%E`\u0000GO*a\u0000Ha\u0000Il\f\u0000JO*a\u0000Ka\u0000Ll\f\u0000MO*a\u0000Ka\u0000Nl\f\u0000MO*a\u0000Ka\u0000Ol\f\u0000MO*a\u0000K_\u0000*a\u0000P%l\f\u0000MO*a\u0000K_\u0000*a\u0000Q%_\u0000*%a\u0000R%l\f\u0000MO*a\u0000K_\u0000Ga\u0000S%l\f\u0000MO_\u0000\u001fa\u00005,j\u0002\u001d\u0000\u001c*a\u0000Ka\u0000T_\u0000\u001fa\u00007&a\u00008,%l\f\u0000MY\u0000\u0003hUUUY\u0000\u0003h\u000f\n\t\u0000\b\u000bboovtrue\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000n\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000a\u0000r\u0000t\u0000i\u0000o\u0000m\u0000:\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000:\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u000e\u0001\u0000\u0001\u0014\u0001\u000e\u0001\u0000\u0003\u0018\u0001\n\u0000\u0004\nPtrm\u0003\u0000\u0003\u000e\u0001\u0000\u0001\u0014\u0001\u000e\u0001\u0000\u0003\u0018\u0001\u000e\u0001\u0000\u0003\u0018\u0001\n\u0000\u0004\nPtrm\u0003\u0000\u0003\n\u0000\u0004\nPssn\u0003\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000f\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000e\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\t\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\r\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0014\n\u0000\u0004\ntdct\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0013\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003I\u0000\u0002\u0000\u001a\u0000!\u0000 \u0000!\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\b\u0000b\u0000a\u0000s\u0000h\u0006\u0000!\u0000\u0003\u0000$\n\u0000\u0004\nkfil\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\"\u0000'\u0000'\u0000(\r\u0000'\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\ntitl\r\u0000*\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000&\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000(\u0000-\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000.\u00005\u0000\/\u00000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\/\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00001\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000^\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000D\u0000Y\u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0000 \u0000;\u0000 \u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0006\u00000\u0000\u0003\u00003\n\u0000\u0004\nkfil\r\u00003\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000.\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u00006\u0000=\u00006\u00007\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00006\u0000\u0001m\u0000\u0000\u00006\u00007\u00008\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u00007\u0000\u0003\u0000:\n\u0000\u0004\nkfil\r\u0000:\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u00005\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000>\u0000E\u0000=\u0000>\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000=\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\nkfil\r\u0000A\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000<\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u0000F\u0000O\u0000D\u0000E\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000D\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000F\u0000G\r\u0000F\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000G\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000E\u0000\u0003\u0000J\n\u0000\u0004\nkfil\r\u0000J\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000C\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000P\u0000[\u0000M\u0000N\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000M\u0000\u0002b\u0000\u0000\u0000P\u0000U\u0000O\u0000P\r\u0000O\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000P\u0000\u0001m\u0000\u0000\u0000Q\u0000T\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000N\u0000\u0003\u0000S\n\u0000\u0004\nkfil\r\u0000S\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000L\u0000\u0002\u0000T\r\u0000T\u0000\u0003I\u0000\u0002\u0000\\\u0000e\u0000U\u0000V\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000U\u0000\u0001m\u0000\u0000\u0000\\\u0000_\u0000W\u000e\u0000W\u0000\u0001\u0000X\u0011\u0000X\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000V\u0000\u0003\u0000Y\n\u0000\u0004\nkfil\r\u0000Y\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000Z\u000f\u0000Z\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0006OSX-OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000yH+\u0000\u0000\u0000\u0000\u0000P\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(?u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000y`\b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000P\u0000\u0000\u0000O\u0000\u0002\u0000,OSX-OS:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000O\u0000S\u0000X\u0000-\u0000O\u0000S\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000[\u0000\\\u0001\u0000\u0000\u0010\u0000[\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\\\u0000\u0007\u0010\u0000]\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000f\u0000`\u0002\u0000`\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0000\u0010\u0000_\u0000\u0012\u0000Z\u0000\u0010\u0000\u001c\u0000\"\u00001\u00008\u0000?\u0000H\u0000Q\u0000W\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\n\u0000\u0004\ntitl\n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000g\u0012\u0000c*j\f\u0000\u0001EOEOe,FOEOl\f\u0000\u0001O,FO*j\f\u0000\u000bOl\f\u0000\u0001Ol\f\u0000\u0001Ol\f\u0000\u0001O%l\f\u0000\u0001Oa\u0000\u0010%l\f\u0000\u0001Oa\u0000\u0011l\f\u0000\u0001U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"53b35b4188770e165970d35b9f93392b603f5652","subject":"unset DYLD_LIBRARY_PATH settings, they seem to cause virtualbox to break (b2d-cli#148)","message":"unset DYLD_LIBRARY_PATH settings, they seem to cause virtualbox to break (b2d-cli#148)\n","repos":"lakwarus\/c5-osx-installer,yut148\/osx-installer,JoeWoo\/osx-installer,boot2docker\/osx-installer,cgvarela\/osx-installer,cgvarela\/osx-installer,yut148\/osx-installer,boot2docker\/osx-installer,lakwarus\/c5-osx-installer,JoeWoo\/osx-installer","old_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000f\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000e\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\t\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\r\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0014\n\u0000\u0004\ntdct\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0013\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003I\u0000\u0002\u0000\u001a\u0000!\u0000 \u0000!\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\b\u0000b\u0000a\u0000s\u0000h\u0006\u0000!\u0000\u0003\u0000$\n\u0000\u0004\nkfil\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\"\u0000'\u0000'\u0000(\r\u0000'\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\ntitl\r\u0000*\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000&\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000(\u0000-\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000.\u00005\u0000\/\u00000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\/\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00001\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000^\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000D\u0000Y\u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0000 \u0000;\u0000 \u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0006\u00000\u0000\u0003\u00003\n\u0000\u0004\nkfil\r\u00003\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000.\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u00006\u0000=\u00006\u00007\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00006\u0000\u0001m\u0000\u0000\u00006\u00007\u00008\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u00007\u0000\u0003\u0000:\n\u0000\u0004\nkfil\r\u0000:\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u00005\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000>\u0000E\u0000=\u0000>\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000=\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\nkfil\r\u0000A\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000<\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u0000F\u0000O\u0000D\u0000E\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000D\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000F\u0000G\r\u0000F\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000G\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000E\u0000\u0003\u0000J\n\u0000\u0004\nkfil\r\u0000J\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000C\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000P\u0000[\u0000M\u0000N\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000M\u0000\u0002b\u0000\u0000\u0000P\u0000U\u0000O\u0000P\r\u0000O\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000P\u0000\u0001m\u0000\u0000\u0000Q\u0000T\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000N\u0000\u0003\u0000S\n\u0000\u0004\nkfil\r\u0000S\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000L\u0000\u0002\u0000T\r\u0000T\u0000\u0003I\u0000\u0002\u0000\\\u0000e\u0000U\u0000V\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000U\u0000\u0001m\u0000\u0000\u0000\\\u0000_\u0000W\u000e\u0000W\u0000\u0001\u0000X\u0011\u0000X\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000V\u0000\u0003\u0000Y\n\u0000\u0004\nkfil\r\u0000Y\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000Z\u000f\u0000Z\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0006OSX-OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000yH+\u0000\u0000\u0000\u0000\u0000P\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(?u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000y`\b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000P\u0000\u0000\u0000O\u0000\u0002\u0000,OSX-OS:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000O\u0000S\u0000X\u0000-\u0000O\u0000S\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000[\u0000\\\u0001\u0000\u0000\u0010\u0000[\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\\\u0000\u0007\u0010\u0000]\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000f\u0000`\u0002\u0000`\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0000\u0010\u0000_\u0000\u0012\u0000Z\u0000\u0010\u0000\u001c\u0000\"\u00001\u00008\u0000?\u0000H\u0000Q\u0000W\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\n\u0000\u0004\ntitl\n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000g\u0012\u0000c*j\f\u0000\u0001EOEOe,FOEOl\f\u0000\u0001O,FO*j\f\u0000\u000bOl\f\u0000\u0001Ol\f\u0000\u0001Ol\f\u0000\u0001O%l\f\u0000\u0001Oa\u0000\u0010%l\f\u0000\u0001Oa\u0000\u0011l\f\u0000\u0001U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\\\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000[\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\t\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\r\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0014\n\u0000\u0004\ntdct\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0013\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003I\u0000\u0002\u0000\u001a\u0000!\u0000 \u0000!\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\b\u0000b\u0000a\u0000s\u0000h\u0006\u0000!\u0000\u0003\u0000$\n\u0000\u0004\nkfil\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\"\u0000'\u0000'\u0000(\r\u0000'\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\ntitl\r\u0000*\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000&\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000(\u0000-\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000.\u00005\u0000\/\u00000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\/\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00001\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u00000\u0000\u0003\u00003\n\u0000\u0004\nkfil\r\u00003\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000.\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u00006\u0000=\u00006\u00007\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00006\u0000\u0001m\u0000\u0000\u00006\u00007\u00008\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u00007\u0000\u0003\u0000:\n\u0000\u0004\nkfil\r\u0000:\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u00005\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000>\u0000G\u0000=\u0000>\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000=\u0000\u0002b\u0000\u0000\u0000>\u0000A\u0000?\u0000@\r\u0000?\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000@\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0000A\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000>\u0000\u0003\u0000C\n\u0000\u0004\nkfil\r\u0000C\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000<\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000H\u0000Q\u0000F\u0000G\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000F\u0000\u0002b\u0000\u0000\u0000H\u0000K\u0000H\u0000I\r\u0000H\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000I\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000G\u0000\u0003\u0000L\n\u0000\u0004\nkfil\r\u0000L\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000E\u0000\u0002\u0000M\r\u0000M\u0000\u0003I\u0000\u0002\u0000R\u0000[\u0000N\u0000O\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000N\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\nkfil\r\u0000R\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000S\u000f\u0000S\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0006OSX-OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000xH+\u0000\u0000\u0000\u0000\u0000P\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(>e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000y`\b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000P\u0000\u0000\u0000O\u0000\u0002\u0000,OSX-OS:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000O\u0000S\u0000X\u0000-\u0000O\u0000S\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000T\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000U\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\\\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0000\u0010\u0000X\u0000\u0011\u0000S\u0000\u0010\u0000\u001c\u0000\"\u00001\u00008\u0000A\u0000J\u0000P\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\n\u0000\u0004\ntitl\n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000]\u0012\u0000Y*j\f\u0000\u0001EOEOe,FOEOl\f\u0000\u0001O,FO*j\f\u0000\u000bOl\f\u0000\u0001Ol\f\u0000\u0001O%l\f\u0000\u0001O%l\f\u0000\u0001Oa\u0000\u0010l\f\u0000\u0001U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"fdec0bd6131607774b9e40e1b04e826765b1c7bf","subject":"Upd Chrome opening script","message":"Upd Chrome opening script\n","repos":"not-bad-react\/not-bad-react-starter","old_file":"tools\/openBrowser\/openChrome.applescript","new_file":"tools\/openBrowser\/openChrome.applescript","new_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\nproperty targetTab: null\nproperty targetTabIndex: -1\nproperty targetWindow: null\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- 1: Looking for tab running debugger\n -- then, Reload debugging tab if found\n -- then return\n set found to my lookupTabWithUrl(theURL)\n if found then\n set targetWindow's active tab index to targetTabIndex\n tell targetTab to reload\n tell targetWindow to activate\n set index of targetWindow to 1\n return\n end if\n\n -- 2: Looking for Empty tab\n -- In case debugging tab was not found\n -- We try to find an empty tab instead\n set found to my lookupTabWithUrl(\"chrome:\/\/newtab\/\")\n if found then\n set targetWindow's active tab index to targetTabIndex\n set URL of targetTab to theURL\n tell targetWindow to activate\n return\n end if\n\n -- 3: Create new tab\n -- both debugging and empty tab were not found\n -- make a new tab with url\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end tell\nend run\n\n-- Function:\n-- Lookup tab with given url\n-- if found, store tab, index, and window in properties\n-- (properties were declared on top of file)\non lookupTabWithUrl(lookupUrl)\n tell application \"Chrome\"\n -- Find a tab with the given url\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if (theTab's URL as string) contains lookupUrl then\n -- assign tab, tab index, and window to properties\n set targetTab to theTab\n set targetTabIndex to theTabIndex\n set targetWindow to theWindow\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n end tell\n return found\nend lookupTabWithUrl\n","old_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\n\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9a37e7746b51117fc4474ab67c0c5efa0ca19421","subject":"hard code spotlight button due to localization problems","message":"hard code spotlight button due to localization problems\n","repos":"onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,dreki\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,dreki\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions,Kapeli\/PopClip-Extensions","old_file":"source\/Spotlight\/Spotlight.applescript","new_file":"source\/Spotlight\/Spotlight.applescript","new_contents":"tell application \"System Events\"\n\ttell process \"SystemUIServer\"\n\t\ttry\n\t\t\t--\t\t\trepeat with menuBarNum from (count of menu bars) to 0 by -1\n\t\t\t--\t\t\t\trepeat with theItem in (menu bar items of (item menuBarNum of menu bars))\n\t\t\tset theItem to menu bar item 1 of menu bar 2\n\t\t\tif (description of theItem) contains \"spotlight\" then\n\t\t\t\t-- we found it\n\t\t\t\tif (selected of theItem) is false then\n\t\t\t\t\tclick theItem\n\t\t\t\tend if\n\t\t\t\tkeystroke \"{popclip text}\"\n\t\t\t\terror\n\t\t\tend if\n\t\t\t--\t\t\t\tend repeat\n\t\t\t--\t\t\tend repeat\n\t\ton error theError\n\t\tend try\n\tend tell\nend tell","old_contents":"tell application \"System Events\"\n\ttell process \"SystemUIServer\"\n\t\t-- find the spotlight menu item. count backwards because it's usually in the second one. \n\t\ttry\n\t\t\trepeat with menuBarNum from (count of menu bars) to 0 by -1\n\t\t\t\trepeat with theItem in (menu bar items of (item menuBarNum of menu bars))\n\t\t\t\t\tif (description of theItem) contains \"spotlight\" then\n\t\t\t\t\t\t-- we found it\n\t\t\t\t\t\tif (selected of theItem) is false then\n\t\t\t\t\t\t\tclick theItem\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tkeystroke \"{popclip text}\"\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\ton error theError\n\t\tend try\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4ac715f51fd4fbb9d74d88228127779d4c3b1528","subject":"Reference playlist object when finding first song","message":"Reference playlist object when finding first song\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"filters\/playplaylist.applescript","new_file":"filters\/playplaylist.applescript","new_contents":"-- playplaylist filter --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"iTunes\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\ttry\n\t\t\t\tset theSong to (first track in thePlaylist whose kind contains (songDescriptor of config))\n\t\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"track\", \"tracks\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\t\taddResult({uid:(\"playlist-\" & playlistId) as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\t\t\ton error number -1728\n\t\t\tend try\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\non run query\n\tset config to loadConfig()\n\tgetPlaylistResultListFeedback(query as text)\nend run\n","old_contents":"-- playplaylist filter --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"iTunes\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\ttry\n\t\t\t\tset theSong to (first track in playlist playlistName whose kind contains (songDescriptor of config))\n\t\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"track\", \"tracks\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\t\taddResult({uid:(\"playlist-\" & playlistId) as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\t\t\ton error number -1728\n\t\t\tend try\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\non run query\n\tset config to loadConfig()\n\tgetPlaylistResultListFeedback(query as text)\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"14287fe21accb190ab5b4981ea3d52b480ff3e00","subject":"Formatting tweak","message":"Formatting tweak\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n try\n repeat with theIndex in the_index\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n try\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n \n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n try\n repeat with theIndex in the_index\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n try\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"abf78aefb0e57c7fc50194bc0e5b219c6bff32db","subject":"Fix error when encountering non-music playlists","message":"Fix error when encountering non-music playlists\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"filters\/playplaylist.applescript","new_file":"filters\/playplaylist.applescript","new_contents":"-- playplaylist filter --\n\non loadConfig()\n\n\tdo shell script \".\/compile-config.sh\"\n\tset config to load script alias ((path to library folder from user domain as text) & \"Caches:com.runningwithcrayons.Alfred-3:Workflow Data:com.calebevans.playsong:config.scpt\")\n\treturn config\n\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"iTunes\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get user playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get user playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get user playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\ttry\n\t\t\t\tset theSong to (first track in user playlist playlistName whose kind contains (songDescriptor of config))\n\t\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"track\", \"tracks\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\t\taddResult({uid:(\"playlist-\" & playlistId) as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\t\t\ton error number -1728\n\t\t\tend try\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\nset config to loadConfig()\ngetPlaylistResultListFeedback(\"{query}\")\n","old_contents":"-- playplaylist filter --\n\non loadConfig()\n\n\tdo shell script \".\/compile-config.sh\"\n\tset config to load script alias ((path to library folder from user domain as text) & \"Caches:com.runningwithcrayons.Alfred-3:Workflow Data:com.calebevans.playsong:config.scpt\")\n\treturn config\n\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"iTunes\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get user playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get user playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get user playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\tset theSong to (first track in user playlist playlistName whose kind contains (songDescriptor of config))\n\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"song\", \"songs\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\taddResult({uid:(\"playlist-\" & playlistId) as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\nset config to loadConfig()\ngetPlaylistResultListFeedback(\"{query}\")\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"59ed62e154b3445b7bdbfa06fb6d983ae64a7ef6","subject":"kext removed even when not loaded","message":"kext removed even when not loaded\n","repos":"kawauso\/Soundflower-2x4,kawauso\/Soundflower-2x4","old_file":"Installer\/Uninstaller.applescript","new_file":"Installer\/Uninstaller.applescript","new_contents":"set kext to \"\/Library\/Extensions\/Soundflower.kext\"\ntry\n\ttell application \"System Events\"\n\t\tif not (exists file kext) then\n\t\t\terror kext & \" not found.\"\n\t\tend if\n\tend tell\n\ttry\n\t\tdo shell script \"\/sbin\/kextunload \" & kext with administrator privileges\n\tend try\n\tdo shell script \"\/bin\/rm -rf \" & kext with administrator privileges\n\tdisplay dialog \"Successfully uninstalled.\"\non error errMsg number errNum\n\tdisplay dialog errMsg\nend try\n","old_contents":"set kext to \"\/Library\/Extensions\/Soundflower.kext\"\ntry\n\ttell application \"System Events\"\n\t\tif not exists file kext then\n\t\t\terror kext & \" not found.\"\n\t\tend if\n\tend tell\n\tdo shell script \"\/sbin\/kextunload \" & kext with administrator privileges\n\tdo shell script \"\/bin\/rm -rf \" & kext with administrator privileges\n\tdisplay dialog \"Successfully uninstalled.\"\non error errMsg number errNum\n\tdisplay dialog errMsg\nend try\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e48fd9cf6cc7ceba954a64ecebc7d9eae378b05d","subject":"Update iTerm script to fix time issue","message":"Update iTerm script to fix time issue\n","repos":"keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles","old_file":"scripts\/itermcolors.applescript","new_file":"scripts\/itermcolors.applescript","new_contents":"set h to hours of (current date)\nif (h > 7) and (h < 19) then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tset t to current terminal\n\ttell t\n\t\tset s to current session\n\t\ttell s\n\t\t\tif tint is \"light\" then\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\telse\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\nreturn\n","old_contents":"set dateFormat to \"%H\"\nset hour to do shell script \"date +\" & (quoted form of dateFormat)\n\nif hour > 7 and hour < 19 then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tset t to current terminal\n\ttell t\n\t\tset s to current session\n\t\ttell s\n\t\t\tif tint is equal to \"light\" then\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\telse\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\nreturn\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d6f1fc2135f0ab3371e31b001b0290e5e597f101","subject":"corrected timings for changing dir in existing session","message":"corrected timings for changing dir in existing session\n","repos":"ramiroaraujo\/alfred-tmux-workflow","old_file":"workflow\/open_tmux_session.scpt","new_file":"workflow\/open_tmux_session.scpt","new_contents":"on run command\n\tset options to my split(command as string, \"|\")\n\tset iterm_running to (item 1 of options) as integer\n\tset session_name to item 2 of options\n\tset change_dir to (item 3 of options) as integer\n\n\n\ttell application \"iTerm\"\n\t\tactivate\n\t\tset termCount to count of terminals\n\t\t\n\t\tif termCount is 0 then\n\t\t\tset _term to (make new terminal)\n\t\telse\n\t\t\tif iterm_running > 0 then\n\t\t\t\tset _term to the first terminal\n\t\t\t\ttell i term application \"System Events\" to keystroke \"t\" using command down\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttry\n\t\t\tset _session to current session of current terminal\n\t\ton error\n\t\t\ttell _term\n\t\t\t\tlaunch session \"Default\"\n\t\t\t\tset _session to current session\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\ttell _session\n\t\t if session_name is not \"\" then\n write text \"tmux attach -t \\\"\" & session_name & \"\\\"\"\n\t\t\t\tdelay 1\n\t\t end if\n\t\t\tif change_dir > 0 then\n\t\t\t\ttell i term application \"Path Finder\"\n\t\t\t\t\tset target_path to \"\\\"\" & (the POSIX path of the target of the front finder window) & \"\\\"\"\n\t\t\t\t\tset change_dir_command to \"cd \" & target_path\n\t\t\t\tend tell\n\t\t\t\twrite text change_dir_command\n\t\t\t\twrite text \"clear\"\n\t\t\tend if\n\t\tend tell\n\tend tell\nend run\n\non split(str, delimiter)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delimiter\n\tset theArray to every text item of str\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn theArray\nend split","old_contents":"on run command\n\tset options to my split(command as string, \"|\")\n\tset iterm_running to (item 1 of options) as integer\n\tset session_name to item 2 of options\n\tset change_dir to (item 3 of options) as integer\n\n\n\ttell application \"iTerm\"\n\t\tactivate\n\t\tset termCount to count of terminals\n\t\t\n\t\tif termCount is 0 then\n\t\t\tset _term to (make new terminal)\n\t\telse\n\t\t\tif iterm_running > 0 then\n\t\t\t\tset _term to the first terminal\n\t\t\t\ttell i term application \"System Events\" to tell process \"Terminal.app\" to keystroke \"t\" using command down\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttry\n\t\t\tset _session to current session of current terminal\n\t\ton error\n\t\t\ttell _term\n\t\t\t\tlaunch session \"Default\"\n\t\t\t\tset _session to current session\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\ttell _session\n\t\t if session_name is not \"\" then\n write text \"tmux attach -t \\\"\" & session_name & \"\\\"\"\n\t\t end if\n\t\t\tif change_dir > 0 then\n\t\t\t\ttell i term application \"Path Finder\"\n\t\t\t\t\tset target_path to \"\\\"\" & (the POSIX path of the target of the front finder window) & \"\\\"\"\n\t\t\t\t\tset change_dir_command to \"cd \" & target_path\n\t\t\t\tend tell\n\t\t\t\tdelay 0.1\n\t\t\t\twrite text change_dir_command\n\t\t\t\twrite text \"clear\"\n\t\t\tend if\n\t\tend tell\n\tend tell\nend run\n\non split(str, delimiter)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delimiter\n\tset theArray to every text item of str\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn theArray\nend split","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5e13947759396ce9144edaadf8ea3fdae79a60f2","subject":"Now handles quotation marks in most fields (Fixes #13)","message":"Now handles quotation marks in most fields (Fixes #13)\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"2e010b7521313caf48b9fd8e0507642ea6b5df65","subject":"actually go to Tables tab","message":"actually go to Tables tab\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_TableListFocus.applescript","new_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_TableListFocus.applescript","new_contents":"-- fmGUI_ManageDb_TableListFocus({})\n-- NYHTC\n-- Focus in the list of tables in the \"Tables\" tab of Manage Database\n\n\n(*\nHISTORY:\n\t1.2 - 2020-05-20 ( dshockley ): Actually go to Tables, not Fields. \n\t1.1 - [unknown changes]\n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_ManageDb_GoToTab_Fields\n*)\n\n\non run\n\tfmGUI_ManageDb_TableListFocus({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_TableListFocus(prefs)\n\t-- version 1.2\n\t\n\ttry\n\t\tfmGUI_ManageDb_GoToTab_Tables({})\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset focused of (table 1 of scroll area 1 of tab group 1 of window 1) to true\n\t\t\t\treturn true\n\t\t\tend tell\n\t\tend tell\n\t\t\n\ton error errMsg number errNum\n\t\terror \"Couldn't focus on Table list - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_TableListFocus\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_ManageDb_GoToTab_Tables(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_GoToTab_Tables(prefs)\nend fmGUI_ManageDb_GoToTab_Tables\n","old_contents":"-- fmGUI_ManageDb_TableListFocus({})\n-- NYHTC\n-- Focus in the list of fields in the \"Fields\" tab of Manage Database\n\n\n(*\nHISTORY:\n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_ManageDb_GoToTab_Fields\n*)\n\n\non run\n\tfmGUI_ManageDb_TableListFocus({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_TableListFocus(prefs)\n\t-- version 1.1\n\t\n\ttry\n\t\tfmGUI_ManageDb_GoToTab_Tables({})\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset focused of (table 1 of scroll area 1 of tab group 1 of window 1) to true\n\t\t\t\treturn true\n\t\t\tend tell\n\t\tend tell\n\t\t\n\ton error errMsg number errNum\n\t\terror \"Couldn't focus on Field list - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_TableListFocus\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_ManageDb_GoToTab_Fields(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_GoToTab_Fields(prefs)\nend fmGUI_ManageDb_GoToTab_Fields\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"98a67dc06297e0d37dcbe278b5e78faa0550ac97","subject":"Remove unnecessary Firefox compilation requirement","message":"Remove unnecessary Firefox compilation requirement\n\nThe 'using terms from application' line was unnecessary because the code\nin the block was just using a call from the Standard Suite, not a\nFirefox suite (which doesn't exist). So it wasn't required for compiling\nor running.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\" -- so it won't be required to run\/compile\n\t\t\ttell application this_app\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6b45734e77bfacc2fe739d7ddc1e218e3db61448","subject":"Run mac script","message":"Run mac script\n","repos":"trevordmiller\/settings,trevordmiller\/settings,trevordmiller\/shell-scripts,trevordmiller\/shell-scripts","old_file":"mac\/script-quit-all.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/script-quit-all.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000l\u0000l\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0003\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\u000b\u0000\u0005 QUIT\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\n\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000Q\u0000u\u0000i\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000!\u0000\u001b Close running applications\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00006\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002O\u0000\u0001\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovtrue\r\u0000e\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000f\r\u0000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\u0000h\r\u0000g\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\npvis\r\u0000h\u0000\u00012\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000i\u000f\u0000i\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000&\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000m\u0000n\r\u0000m\u0000\u0001J\u0000\u0000\u0000 \u0000$\u0000o\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000q\u0000\u0002\u0000t\r\u0000t\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000'\u0000\u0000y\r\u0000y\u0000\u0003Q\u0000\u0000\u0000'\u0000\u0000z\u0000{\u0000|\r\u0000z\u0000\u0001k\u0000\u0000\u0000*\u0000}\u0000}\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002O\u0000\u0000\u0000*\u0000?\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000.\u0000>\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000.\u0000<\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000.\u00003\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000.\u00003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0000\u0000.\u00001\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00004\u0000;\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npvis\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000:\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000@\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000x\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000U\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000R\u0000U\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000Q\u0000R\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Z\u0000x\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0000Z\u0000`\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000Z\u0000_\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000[\u0000^\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000c\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000s\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000c\u0000k\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0005\u0000D\u0000L\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000D\u0000L\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000K\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000D\u0000G\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000E\u0000G\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000{\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000n\u0000 \u0000a\u0000p\u0000p\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000!\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000k\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 Kill running processes\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000K\u0000i\u0000l\u0000l\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000n\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000p\u0000h\u0000a\u0000n\u0000t\u0000o\u0000m\u0000j\u0000s\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000k\u0000i\u0000l\u0000l\u0000a\u0000l\u0000l\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u0002\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000~\u0000\u0000\u0001~\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0000\u0000\u0001}\u0000\u0000\f\u0000\u0000\f\u0000\u0006 EJECT\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000E\u0000J\u0000E\u0000C\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000xw\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000v\u0000u\u000bv\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000t\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002t\u0000\u0000\u0002u\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p\u0000\u0000\u0001p\u0000\u0000\f\u0000\u0000\u001f\u0000\u0019 Eject plugged-in devices\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000 \u0000p\u0000l\u0000u\u0000g\u0000g\u0000e\u0000d\u0000-\u0000i\u0000n\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0000on\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\n\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000m\u0001\u0000l\nm\u0000\u0018.fndrejctnull\u0000\u0000obj \r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0001\u0001kj\r\u0001\u0001\u0000\u00012\u0000\u0001\u0000\u0000i\ni\u0000\u0004\ncdis\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000f\u0001\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000hgf\nh\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001g\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\ne\u0001\u0003\u0001\u0004\ne\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u0005dc\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000H\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000j\u0000e\u0000c\u0000t\u0000e\u0000d\u0000!\u0001d\u0000\u0000\u0001c\u0000\u0000\u0006\u0001\u0004\u0000\u0003b\u0001\b\u0001\t\nb\u0000\u0004\nbtns\r\u0001\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000ba\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0004\u0000O\u0000k\u0002a\u0000\u0000\u0006\u0001\t\u0000\u0003`\u0001\u000e_\n`\u0000\u0004\ndisp\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004^\n^\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006_\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W\u0001\u0015\u0001\u0016\u0001W\u0000\u0000\f\u0001\u0015\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u0014\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000V\u0001\u001a\u0001\u001b\u0001V\u0000\u0000\f\u0001\u001a\u0000\f\u0000\u0006 CLEAN\u0000\u0002\u0000\u0000\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\f\u0000 \u0000C\u0000L\u0000E\u0000A\u0000N\u0002\u0001\u0019\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000U\u0001\u001f\u0001 \u0001U\u0000\u0000\f\u0001\u001f\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u001e\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0013\u0001&QP\r\u0001&\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0013O\u0001'N\u000bO\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001'\u0000\u0002\u0001(M\r\u0001(\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001)\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000(\u0000C\u0000l\u0000e\u0000a\u0000n\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0002M\u0000\u0000\u0002N\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001%\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I\u0001\/\u00010\u0001I\u0000\u0000\f\u0001\/\u0000\u0012\u0000\f Empty trash\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0002\u0001\u0014\u0001\"\u00014HG\r\u00014\u0000\u0002O\u0000\u0000\u0001\u0014\u0001\"\u00015\u00016\r\u00015\u0000\u0003I\u0000\u0002\u0001\u0018\u0001!F\u00017E\nF\u0000\u0018.fndremptnull\u0000\u0000obj \r\u00017\u0000\u0003l\u0001\u0000\u0001\u0018\u0001\u001d\u00018DC\r\u00018\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001dB\nB\u0000\u0004\ntrsh\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002E\u0000\u0000\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u00019\u000f\u00019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00013\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001;\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000>\u0001>\u0001?\u0001>\u0000\u0000\f\u0001>\u0000*\u0000$ Delete contents of Downloads folder\u0000\u0002\u0000\u0000\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000H\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000c\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0001=\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0001#\u0001*\u0001C=<\r\u0001C\u0000\u0003I\u0000\u0002\u0001#\u0001*;\u0001D:\n;\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001D\u0000\u0001m\u0000\u0000\u0001#\u0001&\u0001E\u000e\u0001E\u0000\u0001\u0001F\u0011\u0001F\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000\/\u0000*\u0002:\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001B\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001H\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00006\u0001K\u0001L\u00016\u0000\u0000\f\u0001K\u0000,\u0000& Delete all extra node_modules folders\u0000\u0002\u0000\u0000\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000L\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0002\u0001J\u0000\u0002\u0001N5\r\u0001N\u0000\u0003l\u0000\u0002\u0001+\u00012\u0001O43\r\u0001O\u0000\u0003I\u0000\u0002\u0001+\u000122\u0001P1\n2\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001P\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0001Q\u000e\u0001Q\u0000\u0001\u0001R\u0011\u0001R\u0000\u0000f\u0000i\u0000n\u0000d\u0000 \u0000~\u0000\/\u0000'\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0000'\u0000 \u0000-\u0000n\u0000a\u0000m\u0000e\u0000 \u0000'\u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000'\u0000 \u0000-\u0000t\u0000y\u0000p\u0000e\u0000 \u0000d\u0000 \u0000-\u0000e\u0000x\u0000e\u0000c\u0000 \u0000r\u0000m\u0000 \u0000-\u0000r\u0000 \u0000'\u0000{\u0000}\u0000'\u0000 \u0000'\u0000;\u0000'\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u00021\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u000e0\u0001S\/\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y.-,+*\u00010\u0000\u0000\u0010\u0001S\u0000\f)('&%$#\"! \u001f\u001e\u000b)\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b(\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b&\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b%\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b$\u0000\u00100\u0000\fthis_process\u0000\u0000\u000b#\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0003\/\u0000-\u000e\u0001T\u0000\u0007\u0010\u001d\u0000(\u001c\u001b\u0001Z\u0001[\u001a\u000b\u001d\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001c\u0000\u0002\u0004\u0019\u0001\\\u0003\u0019\u0000\u0001\u000e\u0001\\\u0000\u0001\u0000\u0018\n\u0018\u0000\u0004\ndscr\u0002\u001b\u0000\u0000\u0010\u0001Z\u0000\u0001\u0017\n\u0017\u0000\u0004\ndscr\u0010\u0001[\u0000\u0003\u0016\u0015\u0014\n\u0016\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0015\u0000\u0004\nppga\n\u0014\u0000\u0004\nppgc\u0011\u001a\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001U\u0000\u0007\u0010\u0013\u0001]\u0012\u0011\u0001^\u0001_\u0010\n\u0013\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001]\u0000\u0001k\u0000\u0000\u0000\u0000\u00012\u0001`\u0002\u0001`\u0000\u0002\u0000\u0016\u0001a\u0002\u0001a\u0000\u0002\u0000\u001d\u0001b\u0002\u0001b\u0000\u0002\u0000Q\u0001c\u0002\u0001c\u0000\u0002\u0000_\u0001d\u0002\u0001d\u0000\u0002\u0000j\u0001e\u0002\u0001e\u0000\u0002\u0000w\u0001f\u0002\u0001f\u0000\u0002\u0000\u0001g\u0002\u0001g\u0000\u0002\u0000\u0001h\u0002\u0001h\u0000\u0002\u0000\u0001i\u0002\u0001i\u0000\u0002\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001$\u0001k\u0002\u0001k\u0000\u0002\u00012\u0001l\u0002\u0001l\u0000\u0002\u0001A\u0001m\u0002\u0001m\u0000\u0002\u0001N\u000f\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\u0010\u0001^\u0000\u0002\u000e\r\u000b\u000e\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\r\u0000\u000b0\u0000\u0007process\u0000\u0000\u0010\u0001_\u0000\/\u0000\u001b\f\u000b\u0000V\n\u0000i\t\b\u0000r\u0000u\u0007\u0000\u0006\u0001n\u0005\u0004\u0003\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\f\u0001)\u0001E\u0001Q\n\f\u0000\u0004\nppgd\n\u000b\u0000\u0004\nppgt\u000b\n\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n\t\u0000\u0004\nprcs\n\b\u0000\u0004\npvis\u000b\u0007\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0006\u0000\u0004\npnam\u000e\u0001n\u0000\u0000\u0013\u000b\u0005\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0004\u0000\u0004\ncobj\n\u0003\u0000\u0004\nnmbr\u000b\u0002\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0001\u0000\u0004\ncapp\n\u0000\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\ncdis\n\u0000\u0018.fndrejctnull\u0000\u0000obj \n\u0000\u0004\ntrsh\n\u0000\u0018.fndremptnull\u0000\u0000obj \u0011\u0010\u00013*,FOm*,FO*k+\u0000\u0004O\u0012\u0000\te*-,FUOlvEO\u0014\u0000X\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u0000<k-a\u0000\u0010,Ekh\u001c\u0000\u0000\/E`\u0000\u0011O_\u0000\u0011\b\u000b\u001d\u0000\u0016*a\u0000\u0012_\u0000\u0011\/\u0012\u0000\u0007*j\f\u0000\u0013UY\u0000\u0003h[OYW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cOa\u0000\u001da\u0000\u001elvE`\u0000\u001fO\u0017\u0000%_\u0000\u001f[a\u0000 l\f\u0000!kh\u001b\u0000\u0001a\u0000\"%a\u0000#%j\f\u0000$[OYO*a\u0000%k+\u0000\u0004O\u0014\u0000\u0013\u0012\u0000\u000b*a\u0000&-j\f\u0000'UW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000(a\u0000\u0017a\u0000)kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cO*a\u0000*k+\u0000\u0004O\u0012\u0000\u000b*a\u0000+,j\f\u0000,UOa\u0000-j\f\u0000$Oa\u0000.j\f\u0000$\u000f\u000e\u0001V\u0000\u0002\u0004\u0001o\u0003\u0000\u0002\u000e\u0001o\u0000\u0002\u0000\u0000r\u0000u\u000e\u0001W\u0000\u0002\u0004\u0001p\u0003\u0000\f\u000e\u0001p\u0000\f\u0000\u0001q\u0001r\u0001s\u0001t\u0001u\u0001v\u0001w\u0001x\u0001y\u0001z\u0001{\u0001X\u000e\u0001q\u0000\u0001\u0001|\u0011\u0001|\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0001r\u0000\u0001\u0001}\u0011\u0001}\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u000e\u0001s\u0000\u0001\u0001~\u0011\u0001~\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u000e\u0001t\u0000\u0001\u0001\u0011\u0001\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u000e\u0001u\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u000e\u0001v\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0001w\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0001x\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000M\u0000a\u0000i\u0000l\u000e\u0001y\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000D\u0000a\u0000s\u0000h\u000e\u0001z\u0000\u0001\u0001\u0011\u0001\u0000 \u0000A\u0000c\u0000t\u0000i\u0000v\u0000i\u0000t\u0000y\u0000 \u0000M\u0000o\u0000n\u0000i\u0000t\u0000o\u0000r\u000e\u0001{\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000k\u0000i\u0000t\u0000c\u0000h\u000e\u0001X\u0000\u0001\u0001\u0011\u0001\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u000e\u0001Y\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000l\u0000l\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0003\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\u000b\u0000\u0005 QUIT\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\n\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000Q\u0000u\u0000i\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000!\u0000\u001b Close running applications\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00006\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002O\u0000\u0001\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovtrue\r\u0000e\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000f\r\u0000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\u0000h\r\u0000g\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\npvis\r\u0000h\u0000\u00012\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000i\u000f\u0000i\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000&\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000m\u0000n\r\u0000m\u0000\u0001J\u0000\u0000\u0000 \u0000$\u0000o\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000q\u0000\u0002\u0000t\r\u0000t\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000'\u0000\u0000y\r\u0000y\u0000\u0003Q\u0000\u0000\u0000'\u0000\u0000z\u0000{\u0000|\r\u0000z\u0000\u0001k\u0000\u0000\u0000*\u0000}\u0000}\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002O\u0000\u0000\u0000*\u0000?\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000.\u0000>\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000.\u0000<\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000.\u00003\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000.\u00003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0000\u0000.\u00001\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00004\u0000;\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npvis\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000:\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000@\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000x\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000U\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000R\u0000U\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000Q\u0000R\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Z\u0000x\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0000Z\u0000`\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000Z\u0000_\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000[\u0000^\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000c\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000s\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000c\u0000k\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0005\u0000D\u0000L\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000D\u0000L\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000K\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000D\u0000G\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000E\u0000G\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000{\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000n\u0000 \u0000a\u0000p\u0000p\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000!\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000k\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 Kill running processes\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000K\u0000i\u0000l\u0000l\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000n\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000p\u0000h\u0000a\u0000n\u0000t\u0000o\u0000m\u0000j\u0000s\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000k\u0000i\u0000l\u0000l\u0000a\u0000l\u0000l\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u0002\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000~\u0000\u0000\u0001~\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0000\u0000\u0001}\u0000\u0000\f\u0000\u0000\f\u0000\u0006 EJECT\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000E\u0000J\u0000E\u0000C\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000xw\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000v\u0000u\u000bv\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000t\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002t\u0000\u0000\u0002u\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p\u0000\u0000\u0001p\u0000\u0000\f\u0000\u0000\u001f\u0000\u0019 Eject plugged-in devices\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000 \u0000p\u0000l\u0000u\u0000g\u0000g\u0000e\u0000d\u0000-\u0000i\u0000n\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0000on\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\n\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000m\u0001\u0000l\nm\u0000\u0018.fndrejctnull\u0000\u0000obj \r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0001\u0001kj\r\u0001\u0001\u0000\u00012\u0000\u0001\u0000\u0000i\ni\u0000\u0004\ncdis\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000f\u0001\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000hgf\nh\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001g\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\ne\u0001\u0003\u0001\u0004\ne\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u0005dc\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000H\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000j\u0000e\u0000c\u0000t\u0000e\u0000d\u0000!\u0001d\u0000\u0000\u0001c\u0000\u0000\u0006\u0001\u0004\u0000\u0003b\u0001\b\u0001\t\nb\u0000\u0004\nbtns\r\u0001\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000ba\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0004\u0000O\u0000k\u0002a\u0000\u0000\u0006\u0001\t\u0000\u0003`\u0001\u000e_\n`\u0000\u0004\ndisp\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004^\n^\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006_\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W\u0001\u0015\u0001\u0016\u0001W\u0000\u0000\f\u0001\u0015\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u0014\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000V\u0001\u001a\u0001\u001b\u0001V\u0000\u0000\f\u0001\u001a\u0000\f\u0000\u0006 CLEAN\u0000\u0002\u0000\u0000\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\f\u0000 \u0000C\u0000L\u0000E\u0000A\u0000N\u0002\u0001\u0019\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000U\u0001\u001f\u0001 \u0001U\u0000\u0000\f\u0001\u001f\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u001e\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0013\u0001&QP\r\u0001&\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0013O\u0001'N\u000bO\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001'\u0000\u0002\u0001(M\r\u0001(\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001)\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000(\u0000C\u0000l\u0000e\u0000a\u0000n\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0002M\u0000\u0000\u0002N\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001%\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I\u0001\/\u00010\u0001I\u0000\u0000\f\u0001\/\u0000\u0012\u0000\f Empty trash\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0002\u0001\u0014\u0001\"\u00014HG\r\u00014\u0000\u0002O\u0000\u0000\u0001\u0014\u0001\"\u00015\u00016\r\u00015\u0000\u0003I\u0000\u0002\u0001\u0018\u0001!F\u00017E\nF\u0000\u0018.fndremptnull\u0000\u0000obj \r\u00017\u0000\u0003l\u0001\u0000\u0001\u0018\u0001\u001d\u00018DC\r\u00018\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001dB\nB\u0000\u0004\ntrsh\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002E\u0000\u0000\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u00019\u000f\u00019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00013\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001;\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000>\u0001>\u0001?\u0001>\u0000\u0000\f\u0001>\u0000*\u0000$ Delete contents of Downloads folder\u0000\u0002\u0000\u0000\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000H\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000c\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0001=\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0001#\u0001*\u0001C=<\r\u0001C\u0000\u0003I\u0000\u0002\u0001#\u0001*;\u0001D:\n;\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001D\u0000\u0001m\u0000\u0000\u0001#\u0001&\u0001E\u000e\u0001E\u0000\u0001\u0001F\u0011\u0001F\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000\/\u0000*\u0002:\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001B\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001H\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00006\u0001K\u0001L\u00016\u0000\u0000\f\u0001K\u0000,\u0000& Delete all extra node_modules folders\u0000\u0002\u0000\u0000\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000L\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0002\u0001J\u0000\u0002\u0001N5\r\u0001N\u0000\u0003l\u0000\u0002\u0001+\u00012\u0001O43\r\u0001O\u0000\u0003I\u0000\u0002\u0001+\u000122\u0001P1\n2\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001P\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0001Q\u000e\u0001Q\u0000\u0001\u0001R\u0011\u0001R\u0000\u0000f\u0000i\u0000n\u0000d\u0000 \u0000~\u0000\/\u0000'\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0000'\u0000 \u0000-\u0000n\u0000a\u0000m\u0000e\u0000 \u0000'\u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000'\u0000 \u0000-\u0000t\u0000y\u0000p\u0000e\u0000 \u0000d\u0000 \u0000-\u0000e\u0000x\u0000e\u0000c\u0000 \u0000r\u0000m\u0000 \u0000-\u0000r\u0000 \u0000'\u0000{\u0000}\u0000'\u0000 \u0000'\u0000;\u0000'\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u00021\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u000e0\u0001S\/\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y.-,+*\u00010\u0000\u0000\u0010\u0001S\u0000\f)('&%$#\"! \u001f\u001e\u000b)\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b(\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b&\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b%\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b$\u0000\u00100\u0000\fthis_process\u0000\u0000\u000b#\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0003\/\u0000*\u000e\u0001T\u0000\u0007\u0010\u001d\u0000(\u001c\u001b\u0001Z\u0001[\u001a\u000b\u001d\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001c\u0000\u0002\u0004\u0019\u0001\\\u0003\u0019\u0000\u0001\u000e\u0001\\\u0000\u0001\u0000\u0018\n\u0018\u0000\u0004\ndscr\u0002\u001b\u0000\u0000\u0010\u0001Z\u0000\u0001\u0017\n\u0017\u0000\u0004\ndscr\u0010\u0001[\u0000\u0003\u0016\u0015\u0014\n\u0016\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0015\u0000\u0004\nppga\n\u0014\u0000\u0004\nppgc\u0011\u001a\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001U\u0000\u0007\u0010\u0013\u0001]\u0012\u0011\u0001^\u0001_\u0010\n\u0013\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001]\u0000\u0001k\u0000\u0000\u0000\u0000\u00012\u0001`\u0002\u0001`\u0000\u0002\u0000\u0016\u0001a\u0002\u0001a\u0000\u0002\u0000\u001d\u0001b\u0002\u0001b\u0000\u0002\u0000Q\u0001c\u0002\u0001c\u0000\u0002\u0000_\u0001d\u0002\u0001d\u0000\u0002\u0000j\u0001e\u0002\u0001e\u0000\u0002\u0000w\u0001f\u0002\u0001f\u0000\u0002\u0000\u0001g\u0002\u0001g\u0000\u0002\u0000\u0001h\u0002\u0001h\u0000\u0002\u0000\u0001i\u0002\u0001i\u0000\u0002\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001$\u0001k\u0002\u0001k\u0000\u0002\u00012\u0001l\u0002\u0001l\u0000\u0002\u0001A\u0001m\u0002\u0001m\u0000\u0002\u0001N\u000f\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\u0010\u0001^\u0000\u0002\u000e\r\u000b\u000e\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\r\u0000\u000b0\u0000\u0007process\u0000\u0000\u0010\u0001_\u0000\/\u0000\u001b\f\u000b\u0000V\n\u0000i\t\b\u0000r\u0000u\u0007\u0000\u0006\u0001n\u0005\u0004\u0003\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\f\u0001)\u0001E\u0001Q\n\f\u0000\u0004\nppgd\n\u000b\u0000\u0004\nppgt\u000b\n\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n\t\u0000\u0004\nprcs\n\b\u0000\u0004\npvis\u000b\u0007\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0006\u0000\u0004\npnam\u000e\u0001n\u0000\u0000\u0013\u000b\u0005\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0004\u0000\u0004\ncobj\n\u0003\u0000\u0004\nnmbr\u000b\u0002\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0001\u0000\u0004\ncapp\n\u0000\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\ncdis\n\u0000\u0018.fndrejctnull\u0000\u0000obj \n\u0000\u0004\ntrsh\n\u0000\u0018.fndremptnull\u0000\u0000obj \u0011\u0010\u00013*,FOm*,FO*k+\u0000\u0004O\u0012\u0000\te*-,FUOlvEO\u0014\u0000X\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u0000<k-a\u0000\u0010,Ekh\u001c\u0000\u0000\/E`\u0000\u0011O_\u0000\u0011\b\u000b\u001d\u0000\u0016*a\u0000\u0012_\u0000\u0011\/\u0012\u0000\u0007*j\f\u0000\u0013UY\u0000\u0003h[OYW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cOa\u0000\u001da\u0000\u001elvE`\u0000\u001fO\u0017\u0000%_\u0000\u001f[a\u0000 l\f\u0000!kh\u001b\u0000\u0001a\u0000\"%a\u0000#%j\f\u0000$[OYO*a\u0000%k+\u0000\u0004O\u0014\u0000\u0013\u0012\u0000\u000b*a\u0000&-j\f\u0000'UW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000(a\u0000\u0017a\u0000)kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cO*a\u0000*k+\u0000\u0004O\u0012\u0000\u000b*a\u0000+,j\f\u0000,UOa\u0000-j\f\u0000$Oa\u0000.j\f\u0000$\u000f\u000e\u0001V\u0000\u0002\u0004\u0001o\u0003\u0000\u0002\u000e\u0001o\u0000\u0002\u0000\u0000r\u0000u\u000e\u0001W\u0000\u0002\u0004\u0001p\u0003\u0000\u0004\u000e\u0001p\u0000\u0004\u0000\u0001q\u0001r\u0001s\u0001X\u000e\u0001q\u0000\u0001\u0001t\u0011\u0001t\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0001r\u0000\u0001\u0001u\u0011\u0001u\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0001s\u0000\u0001\u0001v\u0011\u0001v\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u000e\u0001X\u0000\u0001\u0001w\u0011\u0001w\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u000e\u0001Y\u0000\u0002\u0004\u0001x\u0003\u0000\u0002\u000e\u0001x\u0000\u0002\u0000\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"505a0489cbfbacc752a19b4be4d04a9e986994ce","subject":"add all tasks to stats","message":"add all tasks to stats\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"7851f3db16f26c60711c1fe5ddb54ddf94f125de","subject":"More robust \u2014 just update the package lists (don't upgrade everything, esp. if packages are already installed).","message":"More robust \u2014 just update the package lists (don't upgrade everything, esp. if packages are already installed).\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew upgrade;brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"34498fede24093621fd5a110a148fdd91976a178","subject":"Add choice to go back to previous list dialog","message":"Add choice to go back to previous list dialog\n\nThe subcategory list dialog and the full category list dialog each now\nhave an option to return to the previously displayed list dialog.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset prompt_count to 1 -- increment with every dialog or list prompt\nset prompt_total to 4 -- increment if the subcategory list is displayed\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non choose_category(cur_list, cur_list_type)\n\tlog \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\tlog \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type)\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- :TODO: Customize dialog message\n\t-- :TODO: Customize dialog title with dialog number\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\tlog \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\tlog \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\tlog \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\tlog \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tlog \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\t\n\t\t-- :TODO: Add choice to make a new category\n\t\t\n\t\treturn {\"Show full list with subcategories...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-19\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt_all to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt_all to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt_all & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt_all to do shell script s without altering line endings\n--return cat_txt_all -- :DEBUG:\n-- Coerce the lines into a list:\nset cat_list_all to paragraphs of cat_txt_all\nif cat_list_all's last item is \"\" then set cat_list_all to cat_list_all's items 1 thru -2\n--return cat_list_all -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & cat_txt_all & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset cat_txt_top to do shell script s without altering line endings\n--return cat_txt_top -- :DEBUG:\n-- Coerce the lines into a list:\nset cat_list_top to paragraphs of cat_txt_top\nif cat_list_top's last item is \"\" then set cat_list_top to cat_list_top's items 1 thru -2\n--return cat_list_top -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset prompt_count to 1 -- increment with every dialog or list prompt\nset prompt_total to 4 -- increment if the subcategory list is displayed\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select an existing top-level category\nset extra_items to {\"Show full list with subcategories...\", multiply_text(uRule, 20)}\nset cat_choice to choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\nset prompt_count to prompt_count + 1\n--return cat_choice\n\n--if cat_choice is false then return false\nif cat_choice is false then -- skip the subcategory list\n\tset cat_choice to \"Please enter a category...\"\nelse\n\tset prompt_threshold to 1\n\tif cat_choice as text is extra_items's first item then\n\t\tset cat_list_sub to cat_list_all\n\telse\n\t\tset extra_items to {\"Show full list of existing categories...\", multiply_text(uRule, 35)}\n\t\t--set cat_list_sub to {}\n\t\tcopy extra_items to cat_list_sub -- use 'copy' instead of 'set' for separate lists\n\t\t-- Account for extra menu items:\n\t\tset prompt_threshold to prompt_threshold + (count of extra_items)\n\t\t-- Build subcategory list:\n\t\trepeat with this_cat in cat_list_all\n\t\t\tif (this_cat as text) is (cat_choice as text) \n\t\t\t\tor (this_cat as text) starts with (cat_choice & \":\") then\n\t\t\t\tset end of cat_list_sub to this_cat as text\n\t\t\tend if\n\t\tend repeat\n\tend if\n\t--return cat_list_sub\n\t\n\t-- Only show a subcategory list if there is more than one item:\n\tif (count of cat_list_sub) is greater than prompt_threshold then\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\t\tset prompt_count to prompt_count + 1\n\t\tset prompt_total to prompt_total + 1\n\tend if\nend if\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\n\t--log \"[debug] in choose_top_category()\"\n\tset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\tset cat_choice to choose from list extra_items & cat_list_top with title t with prompt m OK button name \"Next...\"\n\t-- If the list separator was selected instead of a list item, then recursively prompt again:\n\tif cat_choice as text is extra_items's last item then\n\t\tset cat_choice to choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\n\tend if\n\treturn cat_choice\nend choose_top_category\n\non choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\t--log \"[debug] in choose_subcategory()\"\n\t\n\t-- Select an existing category\n\tset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t--set cat_choice to choose from list cat_list_all with title t with prompt m OK button name \"Next...\"\n\tset cat_choice to choose from list cat_list_sub with title t with prompt m OK button name \"Next...\"\n\t--if cat_choice is false then return false\n\tif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\t\n\tif cat_choice as text is extra_items's last item then\n\t\t--log \"[debug] choose_subcategory(): choice is extra_items's last item\"\n\t\t-- If list separator was selected instead of a list item, then recursively prompt again:\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\telse if cat_choice as text is extra_items's first item then\n\t\t--log \"[debug] choose_subcategory(): choice is extra_items's first item\"\n\t\t-- If full list was selected, then recursively prompt using that list (note that the full list is used for both list arguments):\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_all, extra_items, prompt_count, prompt_total)\n\tend if\n\treturn cat_choice\nend choose_subcategory\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"da6f742cdf9d345cf699279bcd138ea533548221","subject":"Fix recall script to set background more reliably","message":"Fix recall script to set background more reliably\n","repos":"mk12\/scripts,mk12\/scripts,mk12\/scripts,mk12\/scripts","old_file":"recall.applescript","new_file":"recall.applescript","new_contents":"#!\/usr\/bin\/env osascript\n\nset journal to \"~\/ia\/Journal\/Journal.md\"\ntell application \"Terminal\"\n\tset lineCount to (do shell script \"wc -l < \" & journal) as integer\n\tset randomLine to (random number from 1 to lineCount) as integer\n\tactivate\n\tdo script \"vim -c ':Goyo' -c ':set bg=light' \" & journal & \":\" & randomLine\n\tset current settings of first window to settings set \"Solarized Light\"\n\ttell application \"System Events\" to keystroke \"f\" using {command down, control down}\nend tell\n","old_contents":"#!\/usr\/bin\/env osascript\n\nset journal to \"~\/ia\/Journal\/Journal.md\"\ntell application \"Terminal\"\n\tset lineCount to (do shell script \"wc -l < \" & journal) as integer\n\tset randomLine to (random number from 1 to lineCount) as integer\n\tactivate\n\tdo script \"vim -c ':call ToggleBackground()' -c ':Goyo' -c '\" & randomLine & \"' \" & journal\n\ttell application \"System Events\" to keystroke \"f\" using {command down, control down}\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a4385fe3c6a96d8ff33e6c11c60f50cc7c4b9c55","subject":"Aflred checkin","message":"Aflred checkin\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u001a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000E\u0000d\u0000i\u0000t\u0000o\u0000r\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000D\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000a\u0000r\u0000y &\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"54fd72486a414cd105d6654e7a8e73bd01fde75a","subject":"align the Keynote (5) scripting to the PowerPoint variants","message":"align the Keynote (5) scripting to the PowerPoint variants\n","repos":"rse\/slideshow,rse\/slideshow","old_file":"connector-osx-kn.scpt","new_file":"connector-osx-kn.scpt","new_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-kn.js\n-- Purpose: connector engine for Apple Keynote 5 under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non knGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Keynote\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Keynote\"\n if playing then\n set state to \"viewing\"\n else if (get count of slides of front document) > 0 then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend knGetState\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n if playing then\n return (get slide number of current slide of front document)\n else\n return (get slide number of current slide of front document)\n end if\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to knGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to knGetCurSlide()\n set slides to knGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if knGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n set thePresentation to front document\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to (title of theSlide) as string\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to (notes of theSlide) as string\n set theNote to (my filterText(theNote, my asciiCharset()))\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to knGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Keynote\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Keynote\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Keynote\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n close front document\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Keynote\"\n start from (slide 1 of front document)\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n stop slideshow (slideshow 1)\n end tell\n else if command is \"PAUSE\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"RESUME\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item 1 of slides of slideshow 1)\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (get count of slides of slideshow 1) of slides of slideshow 1)\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (arg as integer) of slides of slideshow 1)\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show previous\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show next\n end tell\n end if\n return \"{ \\\"result\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"PAUSE\" \u00ac\n or cmd is \"RESUME\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","old_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-keynote.js\n-- Purpose: connector engine for Apple Keynote under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non offsetOf(theString, subString)\n if theString does not contain subString then\n return 0\n end if\n set stringCharacterCount to (get count of characters in theString)\n set substringCharacterCount to (get count of characters in subString)\n set lastCharacter to (stringCharacterCount - substringCharacterCount + 1)\n repeat with n from 1 to lastCharacter\n set m to (n + substringCharacterCount) - 1\n set currentSubstring to (get characters n thru m of theString) as string\n if currentSubstring is subString then\n return n\n end if\n end repeat\n return 0\nend offsetOf\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n return (get slide number of current slide of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- get Apple Keynote current slide\non knGetSlideInfo()\n try\n tell application \"Keynote\"\n set thePresentation to front document\n set slideCount to (get count of slides of thePresentation)\n set slideInfo to \"[ \"\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n set theNote to \"\"\n repeat with theChars in (presenter notes of theSlide)\n set theText to (\"\" & (theChars as string) & \"\")\n set offStart to my offsetOf(theText, \"TK<\")\n if offStart is not 0 then\n set offStart to (offStart + 3)\n set tmp to (get characters offStart thru ((get count of characters in theText)) of theText) as string\n set offEnd to my offsetOf(tmp, \">\")\n if offEnd is not 0 and offENd is not 1 then\n set theNote to (get characters offStart thru (offStart + (offEnd - 1) - 1) of theText) as string\n exit repeat\n end if\n end if\n end repeat\n if slideInfo is \"[ \" then\n set slideInfo to (slideInfo & \"\\\"\" & theNote & \"\\\"\")\n else\n set slideInfo to (slideInfo & \", \\\"\" & theNote & \"\\\"\")\n end if\n end repeat\n set slideInfo to (slideInfo & \" ]\")\n return slideInfo\n end tell\n on error errMsg\n return \"[]\"\n end try\nend knGetSlideInfo\n\n-- get Apple Keynote slide titles\non knGetSlideTitles()\n -- try\n tell application \"Keynote\"\n set thePresentation to front document\n set slideCount to (get count of slides of thePresentation)\n set slideTitles to \"[ \"\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n set theTitle to object text of default title item of theSlide\n if slideTitles is \"[ \" then\n set slideTitles to (slideTitles & \"\\\"\" & theTitle & \"\\\"\")\n else\n set slideTitles to (slideTitles & \", \\\"\" & theTitle & \"\\\"\")\n end if\n end repeat\n set slideTitles to (slideTitles & \" ]\")\n return slideTitles\n end tell\n -- on error errMsg\n return 0\n -- end try\nend knGetCurSlide\n\n-- control slide show\non knSlideShowControl(command, arg)\n tell application \"Keynote\"\n if command is \"START\" then\n start (front document) from (slide 1 of front document)\n else if command is \"NEXT\" then\n show next\n else if command is \"GOTO\" then\n show slide (arg as integer) of front document\n else if command is \"PREV\" then\n show previous\n else if command is \"STOP\" then\n stop front document\n end if\n end tell\nend knSlideShowControl\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n if cmd is \"STAT\" then\n set curSlide to knGetCurSlide()\n set maxSlide to knGetMaxSlide()\n set output to (\"{ \\\"curSlide\\\": \" & curSlide & \", \\\"maxSlide\\\": \" & maxSlide & \" }\")\n else if cmd is \"INFO\" then\n set slideInfo to knGetSlideInfo()\n set output to (\"{ \\\"slideInfo\\\": \" & slideInfo & \" }\")\n else if cmd is \"TITLES\" then\n set theTitles to knGetSlideTitles()\n set output to (\"{ \\\"titles\\\": \" & theTitles & \" }\")\n else if cmd is \"START\" or cmd is \"NEXT\" or cmd is \"GOTO\" or cmd is \"PREV\" or cmd is \"STOP\" then\n my knSlideShowControl(cmd, arg)\n set output to \"{}\"\n end if\n copy output to stdout\nend run\n\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"77d69cb4ba40a92646584137acded2cb0f0752a2","subject":"revert reminders change","message":"revert reminders change\n","repos":"dreki\/PopClip-Extensions,a-b\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,dreki\/PopClip-Extensions,Kapeli\/PopClip-Extensions,onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,onecrayon\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,bopo\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,Kapeli\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,onecrayon\/PopClip-Extensions,onecrayon\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,a-b\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,bopo\/PopClip-Extensions,dreki\/PopClip-Extensions,a-b\/PopClip-Extensions","old_file":"source\/Reminders\/RemindersNewItem.applescript","new_file":"source\/Reminders\/RemindersNewItem.applescript","new_contents":"tell application \"Reminders\"\n\tactivate\n\tset theAccount to name of first account\n\ttell account theAccount\n\t\tset theList to name of first list\n\t\tset myReminder to (make new reminder at list theList with properties {name:\"{popclip text}\"})\n\tend tell\nend tell","old_contents":"on sortList(unsortedList)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to (ASCII character 10)\n\tset sortedList to paragraphs of (do shell script \"echo \" & quoted form of (unsortedList as string) & \"| sort -d -f\")\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn sortedList\nend sortList\n\n-- sort the list\ntell application \"Reminders\"\n\tactivate\n\tget the name of every account\n\tset theAccount to name of first account\n\ttell account theAccount\n\t\tset allLists to the name of every list\n\tend tell\nend tell\nset sortedList to sortList(allLists)\nset theList to first item of sortedList\n\ntell application \"Reminders\"\n\ttell account theAccount to set myReminder to (make new reminder at list theList with properties {name:\"{popclip text}\"})\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"67c9d9ac1d71e941e422f7ca8c16d2e1da6074d2","subject":"Modified the poll script to work with iTunes 4.7 and tracks that don't have artwork.","message":"Modified the poll script to work with iTunes 4.7 and tracks that don't have artwork.\n","repos":"nkhorman\/archive-growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,tectronics\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,morganestes\/morganestes-growl,chashion\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,ylian\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,nagyistoce\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,nkhorman\/archive-growl,nochkin\/growl,CarlosCD\/growl,an0nym0u5\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,SalrJupiter\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,morganestes\/morganestes-growl,ylian\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,nochkin\/growl,chashion\/growl,CarlosCD\/growl,chashion\/growl,an0nym0u5\/growl,ylian\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,tectronics\/growl,chashion\/growl,timbck2\/growl,SalrJupiter\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,an0nym0u5\/growl,tectronics\/growl,xhruso00\/growl,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,ylian\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,ylian\/growl,SalrJupiter\/growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,xhruso00\/growl,nochkin\/growl,xhruso00\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,tectronics\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl","old_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000p\u0000[\u0000\\\r\u0000[\u0000\u0003I\u0000\u0001\u0000g\u0000n\u0000]\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000]\u0000\u0001m\u0000\u0000\u0000g\u0000j\n\u0000\u0004\ncArt\u0002\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0003\u0000\u0001\r\u0000Z\u0000\u0002r\u0000\u0000\u0000s\u0000\u0000^\u0000_\r\u0000^\u0000\u0002n\u0000\u0000\u0000s\u0000}\u0000`\u0000a\r\u0000`\u0000\u00011\u0000\u0000\u0000y\u0000}\n\u0000\u0004\npPCT\r\u0000a\u0000\u0002n\u0000\u0000\u0000s\u0000y\u0000b\u0000c\r\u0000b\u0000\u00024\u0000\u0000\u0000t\u0000y\u0000d\n\u0000\u0004\ncArt\r\u0000d\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0003\u0000\u0001\r\u0000c\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000e\r\u0000e\u0000\u0002r\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000h\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000x\u0000\u0002\u0000y\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000{\u0000\u0002\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0004\niTunes.app\u00000L\u00007\u0010 \u0000\u000f\u0004\u0000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u00054(K @\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FwH+\u0000\u0000\u0000\u0000\u0004\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@T\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000F\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0004\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012~}|\u0000\u0000{z\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n~\u0000\u0004\npPCT\u0003}\u0000\t\n|\u0000\b\u000bePlSkPSp\u0001{\u0000\u0000\u0002z\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001aj\f\u0000\u001bk\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u000e\u0000\u0000\u0002\u0004y\u0000\u0003y\u0000\t\u000e\u0000\u0000\t\u0000x\u0000\u0000\u0000\u0000wvu\u0000\u0003x\u0001H\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000R\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000D\u0000r\u0000i\u0000n\u0000k\u0000i\u0000n\u0000g\u0000 \u0000S\u0000o\u0000n\u0000g\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u00003\u0000:\u00003\u00002\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\nw\u0000\b\u000bboovfals\u0003v\u0000<\nu\u0000\u0004\nnull\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000P\u0000a\u0000r\u0000t\u0000y\u0000 \u0000S\u0000h\u0000u\u0000f\u0000f\u0000l\u0000e\n\u0000\b\u000bePlSkPSP\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0004\u0019\u0000tsr\u000e\u0000\u0000\u0004\u0019\u0000qpo\u000e\u0000\u0000\u0004\u0019\u0000nml\nn\u0000\u0004\ncSrc\u0003m\u0000#\nl\u0000\b\u000bkfrmID \nq\u0000\u0004\ncUsP\u0003p\fE\no\u0000\b\u000bkfrmID \nt\u0000\u0004\ncFlT\u0003s4.\nr\u0000\b\u000bkfrmID \u0003\u0001H\n\u0000\b\u000bboovfals\u0003\u0000<\n\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000s\u0000[\u0000\\\r\u0000[\u0000\u0002n\u0000\u0000\u0000g\u0000q\u0000]\u0000^\r\u0000]\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\npKnd\r\u0000^\u0000\u0002n\u0000\u0000\u0000g\u0000m\u0000_\u0000`\r\u0000_\u0000\u00024\u0000\u0000\u0000h\u0000m\u0000a\n\u0000\u0004\ncArt\r\u0000a\u0000\u0001m\u0000\u0000\u0000k\u0000l\u0003\u0000\u0001\r\u0000`\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000\\\u0000\u0001m\u0000\u0000\u0000q\u0000r\u0003\u0000\u0000\r\u0000Z\u0000\u0002r\u0000\u0000\u0000v\u0000\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000v\u0000\u0000d\u0000e\r\u0000d\u0000\u00011\u0000\u0000\u0000|\u0000\n\u0000\u0004\npPCT\r\u0000e\u0000\u0002n\u0000\u0000\u0000v\u0000|\u0000f\u0000g\r\u0000f\u0000\u00024\u0000\u0000\u0000w\u0000|\u0000h\n\u0000\u0004\ncArt\r\u0000h\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u0000\u0001\r\u0000g\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000i\r\u0000i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000j\u0000k\r\u0000j\u0000\u0001J\u0000\u0000\u0000\u0000\u0000l\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000z\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0018\niTunes.app\u00000\b\u00007\u0010 \u0000\u000f\u0018\u0000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u000b(\u0007 @\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0005Shire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016O\u000fH+\u0000\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u037cG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0016O\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0018\u0000\u0002\u0000\u001dShire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000S\u0000h\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0004\npKnd\n\u0000\u0004\npPCT\u0003\u0000\t\n\u0000\b\u000bePlSkPSp\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001ak\/a\u0000\u001b,j\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"35d5b511f82fc5c5a6a078e17e2bf6a552486c3d","subject":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.","message":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.\n","repos":"nochkin\/growl,morganestes\/morganestes-growl,timbck2\/growl,nochkin\/growl,tectronics\/growl,ylian\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,chashion\/growl,timbck2\/growl,an0nym0u5\/growl,ylian\/growl,timbck2\/growl,nkhorman\/archive-growl,xhruso00\/growl,nkhorman\/archive-growl,ylian\/growl,nochkin\/growl,nochkin\/growl,xhruso00\/growl,SalrJupiter\/growl,chashion\/growl,nagyistoce\/growl,chashion\/growl,an0nym0u5\/growl,nagyistoce\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,xhruso00\/growl,tectronics\/growl,nagyistoce\/growl,tectronics\/growl,tectronics\/growl,nkhorman\/archive-growl,nagyistoce\/growl,ylian\/growl,tectronics\/growl,chashion\/growl,timbck2\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,xhruso00\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,chashion\/growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,timbck2\/growl,an0nym0u5\/growl,xhruso00\/growl,SalrJupiter\/growl,ylian\/growl,chashion\/growl,nochkin\/growl,nagyistoce\/growl,ylian\/growl","old_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000r\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000r\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000e\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000d\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u001d\u0000 \u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000'\u0000(\r\u0000'\u0000\u00012\u0000\u0001\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000#\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0004Z\u0000\u0000\u0000#\u0000]\u0000+\u0000,\r\u0000+\u0000\u0002@\u0000\u0000\u0000#\u0000*\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0005\u0000#\u0000(\u0000\/\r\u0000\/\u0000\u0003I\u0000\u0002\u0000#\u0000(\u00000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\r\u0000,\u0000\u0005Y\u0000\u0000\u0000-\u0000Y\u00001\u00002\u00003\r\u00001\u0000\u0004Z\u0000\u0000\u0000;\u0000T\u00004\u00005\r\u00004\u0000\u0002>\u0001\u0000\u0000;\u0000C\u00006\u00007\r\u00006\u0000\u0002n\u0000\u0000\u0000;\u0000A\u00008\u00009\r\u00008\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npFmt\r\u00009\u0000\u0002n\u0000\u0000\u0000;\u0000?\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000<\u0000?\u0000<\n\u0000\u0004\ncArt\r\u0000<\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00007\u0000\u0001m\u0000\u0000\u0000A\u0000B\n\u0000\u0004\nPICT\r\u00005\u0000\u0001k\u0000\u0000\u0000F\u0000P\u0000=\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000F\u0000N\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000F\u0000L\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000J\u0000L\n\u0000\u0004\npRaw\r\u0000C\u0000\u0002n\u0000\u0000\u0000F\u0000J\u0000D\u0000E\r\u0000D\u0000\u00024\u0000\u0000\u0000G\u0000J\u0000F\n\u0000\u0004\ncArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000E\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000?\u0000\u0002\u0000G\r\u0000G\u0000\u0000S\u0000\u0000\u0000O\u0000P\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00003\u0000\u0003l\u0000\u0005\u00001\u00006\u0000H\r\u0000H\u0000\u0003I\u0000\u0002\u00001\u00006\u0000I\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000I\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000J\r\u0000J\u0000\u0002r\u0000\u0000\u0000^\u0000d\u0000K\u0000L\r\u0000K\u0000\u0001J\u0000\u0000\u0000^\u0000b\u0000M\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000O\u0000\u0002\u0000P\r\u0000P\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000Q\u000f\u0000Q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000m\u0000r\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000s\u0000u\u0000X\r\u0000X\u0000\u0001L\u0000\u0000\u0000s\u0000u\u0000Y\r\u0000Y\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Z\r\u0000Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000[\u0000\\\u0001\u0000\u0000\u0010\u0000[\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\\\u0000\u0007\u0010\u0000]\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000u\u0000`\u0002\u0000`\u0000\u0002\u0000\u0005\u0000a\u0002\u0000a\u0000\u0002\u0000V\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000_\u0000\u0013\u0000Q\u0000\u0012\u0000T\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npFmt\n\u0000\u0004\nPICT\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000v\u0014\u0000g\u0012\u0000_EO*,,EO*,EOEO-EOj\f\u0000\fk\u0003\u001d\u00001\u0017\u0000+kj\f\u0000\fkh\u001c\u0000\u0000\/,\u0001\u001d\u0000\u000f\/,EO\u0016Y\u0000\u0003h[OYY\u0000\u0003hOlvEUW\u0000\fX\u0000\u0010\u0000\u0011a\u0000\u0012EO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000$\u0000%\r\u0000$\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$\u0000(\r\u0000(\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000)\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000%\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000,\u0000-\r\u0000,\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npRaw\r\u0000\/\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000*\u0000-\u00002\n\u0000\u0004\ncArt\r\u00002\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u00006\u0000<\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u00006\u0000:\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000:\u000f\u0000:\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000I\u0000K\u0000A\r\u0000A\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000I\u0002\u0000I\u0000\u0002\u0000\u0005\u0000J\u0002\u0000J\u0000\u0002\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0010\u0000:\u0000\u0012\u0000=\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"473db99e22d3da493651691865d9ed716d6858a4","subject":"small optimization","message":"small optimization","repos":"seanm\/mogenerator,bgulanowski\/mogenerator,anton-matosov\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,seanm\/mogenerator,hardikdevios\/mogenerator,pronebird\/mogenerator,kostiakoval\/mogenerator,willowtreeapps\/mattgenerator,seanm\/mogenerator,untitledstartup\/mogenerator,Erin-Mounts\/mogenerator,bewebste\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,mjasa\/mogenerator,pronebird\/mogenerator,kostiakoval\/mogenerator,pronebird\/mogenerator,Erin-Mounts\/mogenerator,willowtreeapps\/mattgenerator,casademora\/mogenerator,otaran\/mogenerator,bgulanowski\/mogenerator,ef-ctx\/mogenerator,bewebste\/mogenerator,Erin-Mounts\/mogenerator,otaran\/mogenerator,VladimirGoncharov\/mogenerator,untitledstartup\/mogenerator,fizker\/mogenerator,kostiakoval\/mogenerator,skywinder\/mogenerator,VladimirGoncharov\/mogenerator,skywinder\/mogenerator,VladimirGoncharov\/mogenerator,casademora\/mogenerator,rentzsch\/mogenerator,fizker\/mogenerator,skywinder\/mogenerator,hardikdevios\/mogenerator,anton-matosov\/mogenerator,bgulanowski\/mogenerator,adozenlines\/mogenerator,anton-matosov\/mogenerator,rentzsch\/mogenerator,fizker\/mogenerator,mjasa\/mogenerator,iv-mexx\/mogenerator,iv-mexx\/mogenerator,adozenlines\/mogenerator,bewebste\/mogenerator,untitledstartup\/mogenerator,casademora\/mogenerator,bewebste\/mogenerator,willowtreeapps\/mattgenerator,adozenlines\/mogenerator,ef-ctx\/mogenerator,iv-mexx\/mogenerator,ef-ctx\/mogenerator,mjasa\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\" and comments contains \"xmod\"\n\t\trepeat with modelItr in modelList\n\t\t\tmy updateModel(_project, modelItr, comments of modelItr)\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","old_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\tmy updateModel(_projet, modelItr, theComments)\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4f3a6101b7abad5e9052acaea45efb35ff1b21d2","subject":"Update Scripts\/reset-simulator.applescript","message":"Update Scripts\/reset-simulator.applescript\n\nadd ending new line","repos":"blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant","old_file":"Scripts\/reset-simulator.applescript","new_file":"Scripts\/reset-simulator.applescript","new_contents":"tell application \"iPhone Simulator\"\n\tactivate\nend tell\n\ntell application \"System Events\"\n\ttell process \"iPhone Simulator\"\n\t\ttell menu bar 1\n\t\t\ttell menu bar item \"iOs Simulator\"\n\t\t\t\ttell menu \"iOs Simulator\"\n\t\t\t\t\tclick menu item \"Reset Content and Settings\u2026\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\ttell window 1\n\t\t\tclick button \"Reset\"\n\t\tend tell\n\tend tell\nend tell\n","old_contents":"tell application \"iPhone Simulator\"\n\tactivate\nend tell\n\ntell application \"System Events\"\n\ttell process \"iPhone Simulator\"\n\t\ttell menu bar 1\n\t\t\ttell menu bar item \"iOs Simulator\"\n\t\t\t\ttell menu \"iOs Simulator\"\n\t\t\t\t\tclick menu item \"Reset Content and Settings\u2026\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\ttell window 1\n\t\t\tclick button \"Reset\"\n\t\tend tell\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a4a75d63dfb60cbcb9568081cf922b90651d1a38","subject":"Break up slide creation","message":"Break up slide creation\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d819af650c875a12a0954023c8faff95c3c5f275","subject":"minimal change to BBEdit script","message":"minimal change to BBEdit script\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) \\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) \\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+)\\\\) \n[\\\\t ]*& \\\" = \\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\tend tell\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tTextWrangler_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non TextWrangler_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) \\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) \\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+)\\\\) \n[\\\\t ]*& \\\" = \\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\tend tell\nend TextWrangler_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"41efd2dba35da1645d68e1c597e9ae84cc2a5a20","subject":"Source files don't need to be executable.","message":"Source files don't need to be executable.\n","repos":"SalrJupiter\/growl,xhruso00\/growl,CarlosCD\/growl,tectronics\/growl,chashion\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,CarlosCD\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nochkin\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,xhruso00\/growl,chashion\/growl,morganestes\/morganestes-growl,chashion\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,xhruso00\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,nochkin\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nagyistoce\/growl,nochkin\/growl,chashion\/growl,SalrJupiter\/growl,tectronics\/growl,an0nym0u5\/growl,nochkin\/growl,Shalaco\/shalzers-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,nkhorman\/archive-growl,tectronics\/growl,tectronics\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,an0nym0u5\/growl,ylian\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,timbck2\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,CarlosCD\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,ylian\/growl,nagyistoce\/growl,timbck2\/growl,ylian\/growl,morganestes\/morganestes-growl,timbck2\/growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,timbck2\/growl,an0nym0u5\/growl,xhruso00\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl","old_file":"Extras\/GrowlAction\/main.applescript","new_file":"Extras\/GrowlAction\/main.applescript","new_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (description of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","old_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (description of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"03476f629ed575808c641045b0609f9c6378ff0a","subject":"JasonLeyba: Make reinstall.scpt system language independent.","message":"JasonLeyba: Make reinstall.scpt system language independent.\n\ngit-svn-id: 4179480af2c2519a5eb5e1e9b541cbdf5cf27696@16964 07704840-8298-11de-bf8c-fd130f914ac9\n","repos":"winhamwr\/selenium,winhamwr\/selenium,virajs\/selenium-1,virajs\/selenium-1,virajs\/selenium-1,virajs\/selenium-1,winhamwr\/selenium,virajs\/selenium-1,virajs\/selenium-1,virajs\/selenium-1,winhamwr\/selenium,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium,winhamwr\/selenium,virajs\/selenium-1,winhamwr\/selenium","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t\t\"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\t-- tell menu \"Develop\"\n\t\t\ttell menu bar item 8\n\t\t\t\ttell menu 1\n\t\t\t\t\t-- click menu item \"Show Extension Builder\"\n\t\t\t\t\tclick menu item 7\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tdelay 0.2\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\t-- tell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\ttell UI element 1 of scroll area 1 of window 1\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\t-- click button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\tclick button 1 of UI element 4\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t\t& \"\\\"\" & return & return \u00ac\n\t\t\t\t\t& \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","old_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"f9a5fa0ba965cc190521f5b14d4c099214974001","subject":"saving state before removing tmpFolder from PreCleanup and BuildDiskImage.","message":"saving state before removing tmpFolder from PreCleanup and BuildDiskImage.\n\ngit-svn-id: c87f87383e9e570476b37173748f840982b11a31@232 a0cc1e66-070c-0410-9f8a-b213d8d4c38a\n","repos":"joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters","old_file":"fxscriptcompiler\/FXScript Disk Image Creator.applescript","new_file":"fxscriptcompiler\/FXScript Disk Image Creator.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"2d6265587a15c77e8f1b626f8dbb47268056fd63","subject":"upgrade ResetSafari.scpt","message":"upgrade ResetSafari.scpt\n","repos":"RandyMcMillan\/GoogleHacks,RandyMcMillan\/GoogleHacks,RandyMcMillan\/GoogleHacks,RandyMcMillan\/GoogleHacks","old_file":"osx\/GoogleHacks\/GoogleHacks\/ResetSafari.scpt","new_file":"osx\/GoogleHacks\/GoogleHacks\/ResetSafari.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u000f\u0000\ton run {}\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0012\u0000o\u0000n\u0000 \u0000r\u0000u\u0000n\u0000 \u0000{\u0000}\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000)\u0000#https:\/\/gist.github.com\/3807895.git\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000F\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000s\u0000t\u0000.\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u00003\u00008\u00000\u00007\u00008\u00009\u00005\u0000.\u0000g\u0000i\u0000t\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0011\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0014\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0004\u0000$\u0000\u001a\r\u0000\u001a\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000$\u0000\u001b\u0000\u001c\u0000\u001d\r\u0000\u001b\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\n\u0000\u001e\u000b\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u0002\u0000\u001e\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001e\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u0000#\u0000$\r\u0000#\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\b\u000bboovtrue\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007started\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000\u000f\u0000\t Quit App\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0012\u0000 \u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000p\u0000p\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0002O\u0000\u0001\u0000\u0011\u0000\u001e\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000,\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015\u0000-\n\u0000\u0004\ncapp\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000!\u0000$\u0000.\u0000\/\r\u0000.\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\b\u000bboovfals\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007started\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000-\u0000'tell application \"Terminal\" to activate\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000N\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 \u0000t\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000%\u0000*\u0000=\r\u0000=\u0000\u0003I\u0000\u0002\u0000%\u0000*\u0000>\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000>\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000r\u0000m\u0000v\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000 \u0000~\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000-\u0000`\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000Y\u0000%\u0000m\u0000%\u0000d\u0000%\u0000H\u0000%\u0000M\u0000%\u0000S\u0000`\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000+\u00000\u0000C\r\u0000C\u0000\u0003I\u0000\u0002\u0000+\u00000\u0000D\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000D\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000P\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u00001\u00006\u0000I\r\u0000I\u0000\u0003I\u0000\u0002\u00001\u00006\u0000J\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000J\u0000\u0001m\u0000\u0000\u00001\u00002\u0000K\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000N\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000M\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0002\u00007\u0000<\u0000O\r\u0000O\u0000\u0003I\u0000\u0002\u00007\u0000<\u0000P\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000P\u0000\u0001m\u0000\u0000\u00007\u00008\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000P\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0002\u0000=\u0000B\u0000U\r\u0000U\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000V\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000V\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000W\u000e\u0000W\u0000\u0001\u0000X\u0011\u0000X\u0000l\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000P\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003l\u0000\u0002\u0000C\u0000H\u0000[\r\u0000[\u0000\u0003I\u0000\u0002\u0000C\u0000H\u0000\\\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\\\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\\\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0000.\u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0000c\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000I\u0000N\u0000a\r\u0000a\u0000\u0003I\u0000\u0002\u0000I\u0000N\u0000b\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000b\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000f\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0002\u0000O\u0000T\u0000g\r\u0000g\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000h\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000h\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0000i\u000e\u0000i\u0000\u0001\u0000j\u0011\u0000j\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000L\u0000S\u0000S\u0000h\u0000a\u0000r\u0000e\u0000d\u0000F\u0000i\u0000l\u0000e\u0000L\u0000i\u0000s\u0000t\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0002\u0000U\u0000Z\u0000m\r\u0000m\u0000\u0003I\u0000\u0002\u0000U\u0000Z\u0000n\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000n\u0000\u0001m\u0000\u0000\u0000U\u0000V\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000n\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000R\u0000S\u0000S\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000l\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0002\u0000[\u0000b\u0000s\r\u0000s\u0000\u0003I\u0000\u0002\u0000[\u0000b\u0000t\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000t\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000f\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000r\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000c\u0000j\u0000y\r\u0000y\u0000\u0003I\u0000\u0002\u0000c\u0000j\u0000z\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000z\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000t\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0002\u0000k\u0000r\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000k\u0000r\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000|\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000H\u0000o\u0000s\u0000t\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000s\u0000z\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000s\u0000z\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000P\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000{\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000{\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000@\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000u\u0000b\u0000S\u0000u\u0000b\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000h\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000L\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000H\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0000I\u0000n\u0000d\u0000e\u0000x\u0000.\u0000s\u0000k\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000L\u0000o\u0000c\u0000a\u0000l\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000.\u0000d\u0000b\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000W\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000\\\u0000 \u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000^\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000M\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000H\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000t\u0000a\u0000t\u0000e\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000s\u0000a\u0000v\u0000e\u0000d\u0000S\u0000t\u0000a\u0000t\u0000e\u0000\/\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000~\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000}|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000{\u000b{\u0000\u000b0\u0000\u0007started\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000zyx\nz\u0000\u0018.miscactvnull\u0000\u0000null\u0001y\u0000\u0000\u0002x\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000w\u0000\nw\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000v\u000bv\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002}\u0000\u0000\u0001|\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000uts\u0001u\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000r\u0000q\u000br\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u0002\u0000\u0000\u0002\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002p\u0000\u0000\u0002q\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0000nm\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0007\u0000\tl\nl\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007k\nk\u0000\u0004\nprcs\u0001n\u0000\u0000\u0001m\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\t\u0000\nj\u000bj\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u03d3,XH+\u0000\u0000\u0001L\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001Q27\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u03d3d\u0000\u0000\u0000\u0011\u0000\b\u0000\u00002w\u0000\u0000\u0000\u0001\u0000\f\u0001L\u0001L\u0001L\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000b\u0000\u0000\u0001b\u0000\u0000\f\u0000\u0000\r\u0000\u0007end run\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000e\u0000n\u0000d\u0000 \u0000r\u0000u\u0000n\u0002c\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004a\u0000\u0000\u0000\u0001a\u0000\u0000\u0010\u0000\u0000\u0002`_\u000b`\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\n_\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010^\u0000]\\\u0000\u0000[\u000b^\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u000e]\u0000\u0002\u0004Z\u0000\u0003Z\u0000\u0001\u000e\u0000\u0000\u0001\u0000Y\u000bY\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\\\u0000\u0000\u0010\u0000\u0000\u0001X\u000bX\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0010\u0000\u0000\u0003\u0000WV\nW\u0000\u0004\nprcs\nV\u0000\u0004\npnam\u0011[\u0000\r\u0012\u0000\t*-,\bU\u000f\u000e\u0000\u0000\u0007\u0010U\u0000TS\u0000\u0000R\nU\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u0000\u0002\u0000;\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000\u0000\u0002\u0000G\u0000\u0002\u0000\u0000\u0002\u0000M\u0000\u0002\u0000\u0000\u0002\u0000S\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000_\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\u0002\u0000k\u0000\u0002\u0000\u0000\u0002\u0000q\u0000\u0002\u0000\u0000\u0002\u0000w\u0000\u0002\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0000\u0001\u0002\u0002\u0001\u0002\u0000\u0002\u0000Q\u0002Q\u0000\u0000\u0001T\u0000\u0000\u0002S\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001e\u0000\u0014PONML\u0000?K\u0000E\u0000K\u0000Q\u0000W\u0000]\u0000c\u0000i\u0000o\u0000u\u0000{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u000bP\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000bO\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u000bN\u0000\u000b0\u0000\u0007started\u0000\u0000\nM\u0000\u0004\ncapp\nL\u0000\u0018.aevtquitnull\u0000\u0000null\nK\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\nJ\u0000\u0018.miscactvnull\u0000\u0000null\u0011R\u0000EO*k+\u0000\u0002\u001d\u0000\u0016eEO*\/\u0012\u0000\u0007*j\f\u0000\u0005UY\u0000\u0005fEOj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oa\u0000\u0010j\f\u0000\u0007Oa\u0000\u0011j\f\u0000\u0007Oa\u0000\u0012j\f\u0000\u0007Oa\u0000\u0013j\f\u0000\u0007Oa\u0000\u0014j\f\u0000\u0007Oa\u0000\u0015j\f\u0000\u0007Oa\u0000\u0016j\f\u0000\u0007Oa\u0000\u0017j\f\u0000\u0007Oa\u0000\u0018j\f\u0000\u0007Oa\u0000\u0019j\f\u0000\u0007Oa\u0000\u001aj\f\u0000\u0007Oa\u0000\u001bj\f\u0000\u0007Oa\u0000\u001cj\f\u0000\u0007O\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u001dUY\u0000\u0003h\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u000f\u0000\ton run {}\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0012\u0000o\u0000n\u0000 \u0000r\u0000u\u0000n\u0000 \u0000{\u0000}\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u000e\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0002\u0000\u0004\u0000$\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000$\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0018\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\n\u0000\u001b\u000b\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u0002\u0000\u001b\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001e\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\b\u000bboovtrue\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007started\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011\u0000$\u0000%\u0001\u0000\u0000\f\u0000$\u0000\u000f\u0000\t Quit App\u0000\u0002\u0000\u0000\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\u0012\u0000 \u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000p\u0000p\u0002\u0000#\u0000\u0002\u0000'\r\u0000'\u0000\u0002O\u0000\u0001\u0000\u0011\u0000\u001e\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015\u0000*\n\u0000\u0004\ncapp\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000!\u0000$\u0000+\u0000,\r\u0000+\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\b\u000bboovfals\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007started\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00003\u00004\u0001\u0000\u0000\f\u00003\u0000-\u0000'tell application \"Terminal\" to activate\u0000\u0002\u0000\u0000\u000e\u00004\u0000\u0001\u00005\u0011\u00005\u0000N\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 \u0000t\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002\u00002\u0000\u0002\u00006\u00007\r\u00006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00007\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000%\u0000*\u0000:\r\u0000:\u0000\u0003I\u0000\u0002\u0000%\u0000*\u0000;\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000;\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000r\u0000m\u0000v\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000 \u0000~\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000-\u0000`\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000Y\u0000%\u0000m\u0000%\u0000d\u0000%\u0000H\u0000%\u0000M\u0000%\u0000S\u0000`\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000+\u00000\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000+\u00000\u0000A\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000A\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000P\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0002\u00001\u00006\u0000F\r\u0000F\u0000\u0003I\u0000\u0002\u00001\u00006\u0000G\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000G\u0000\u0001m\u0000\u0000\u00001\u00002\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000N\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000M\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000E\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0002\u00007\u0000<\u0000L\r\u0000L\u0000\u0003I\u0000\u0002\u00007\u0000<\u0000M\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000M\u0000\u0001m\u0000\u0000\u00007\u00008\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000P\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000K\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0000\u0002\u0000=\u0000B\u0000R\r\u0000R\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000S\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000S\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000l\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000P\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000C\u0000H\u0000X\r\u0000X\u0000\u0003I\u0000\u0002\u0000C\u0000H\u0000Y\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000Y\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\\\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0000.\u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0000c\u0000o\u0000o\u0000k\u0000i\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0002\u0000I\u0000N\u0000^\r\u0000^\u0000\u0003I\u0000\u0002\u0000I\u0000N\u0000_\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000_\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000f\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000O\u0000T\u0000d\r\u0000d\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000e\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000e\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000L\u0000S\u0000S\u0000h\u0000a\u0000r\u0000e\u0000d\u0000F\u0000i\u0000l\u0000e\u0000L\u0000i\u0000s\u0000t\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000U\u0000Z\u0000j\r\u0000j\u0000\u0003I\u0000\u0002\u0000U\u0000Z\u0000k\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000k\u0000\u0001m\u0000\u0000\u0000U\u0000V\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000n\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000R\u0000S\u0000S\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0003l\u0000\u0002\u0000[\u0000b\u0000p\r\u0000p\u0000\u0003I\u0000\u0002\u0000[\u0000b\u0000q\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000q\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000f\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0003l\u0000\u0002\u0000c\u0000j\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000c\u0000j\u0000w\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000w\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0000x\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000t\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0002\u0000k\u0000r\u0000|\r\u0000|\u0000\u0003I\u0000\u0002\u0000k\u0000r\u0000}\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000}\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000|\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000H\u0000o\u0000s\u0000t\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000{\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000s\u0000z\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000s\u0000z\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000P\u0000l\u0000u\u0000g\u0000i\u0000n\u0000P\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000{\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000{\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000@\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000P\u0000u\u0000b\u0000S\u0000u\u0000b\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000h\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000L\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000H\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0000I\u0000n\u0000d\u0000e\u0000x\u0000.\u0000s\u0000k\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000L\u0000o\u0000c\u0000a\u0000l\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000r\u0000m\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000.\u0000d\u0000b\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000W\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000\\\u0000 \u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000^\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000M\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000\/\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\/\u0000H\u0000i\u0000s\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000r\u0000m\u0000 \u0000-\u0000R\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000t\u0000a\u0000t\u0000e\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000s\u0000a\u0000v\u0000e\u0000d\u0000S\u0000t\u0000a\u0000t\u0000e\u0000\/\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000}|\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000{z\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\u000b0\u0000\u0007started\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000xwv\nx\u0000\u0018.miscactvnull\u0000\u0000null\u0001w\u0000\u0000\u0002v\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000u\u0000\nu\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000t\u000bt\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002{\u0000\u0000\u0001z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000p\u0000o\u000bp\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002n\u0000\u0000\u0002o\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0000lk\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0007\u0000\tj\nj\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007i\ni\u0000\u0004\nprcs\u0001l\u0000\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\t\u0000\nh\u000bh\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u03d3,XH+\u0000\u0000\u0001L\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001Q27\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u03d3d\u0000\u0000\u0000\u0011\u0000\b\u0000\u00002w\u0000\u0000\u0000\u0001\u0000\f\u0001L\u0001L\u0001L\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000a\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000`\u0000\u0000\u0001`\u0000\u0000\f\u0000\u0000\r\u0000\u0007end run\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000e\u0000n\u0000d\u0000 \u0000r\u0000u\u0000n\u0002a\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006_\u0000\u0000\u0000\u0000\u0011^\u0001_\u0000\u0000\u0010\u0000\u0000\u0004]\\[Z\u000b]\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\n\\\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b[\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000bZ\u0000\u000b0\u0000\u0007started\u0000\u0000\u000e\u0000\u0000\u0007\u0010Y\u0000XW\u0000\u0000V\u000bY\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u000eX\u0000\u0002\u0004U\u0000\u0003U\u0000\u0001\u000e\u0000\u0000\u0001\u0000T\u000bT\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002W\u0000\u0000\u0010\u0000\u0000\u0001S\u000bS\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0010\u0000\u0000\u0003\u0000RQ\nR\u0000\u0004\nprcs\nQ\u0000\u0004\npnam\u0011V\u0000\r\u0012\u0000\t*-,\bU\u000f\u000e\u0000\u0000\u0007\u0010P\u0000ON\u0000\u0000M\nP\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0000\u0002\u00008\u0000\u0002\u0000\u0000\u0002\u0000>\u0000\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000\u0000\u0002\u0000J\u0000\u0002\u0000\u0000\u0002\u0000P\u0000\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000\u0000\u0002\u0000b\u0000\u0002\u0000\u0000\u0002\u0000h\u0000\u0002\u0000\u0000\u0002\u0000n\u0000\u0002\u0000\u0000\u0002\u0000t\u0000\u0002\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000L\u0002L\u0000\u0000\u0001O\u0000\u0000\u0002N\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001e\u0000\u0011KJIHG\u0000<F\u0000B\u0000H\u0000N\u0000T\u0000Z\u0000`\u0000f\u0000l\u0000r\u0000x\u0000~\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000E\u000bK\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000bJ\u0000\u001c0\u0000\fappisrunning\u0000\fappIsRunning\u000bI\u0000\u000b0\u0000\u0007started\u0000\u0000\nH\u0000\u0004\ncapp\nG\u0000\u0018.aevtquitnull\u0000\u0000null\nF\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\nE\u0000\u0018.miscactvnull\u0000\u0000null\u0011M\u0000EO*k+\u0000\u0002\u001d\u0000\u0016eEO*\/\u0012\u0000\u0007*j\f\u0000\u0005UY\u0000\u0005fEOj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oj\f\u0000\u0007Oa\u0000\u0010j\f\u0000\u0007Oa\u0000\u0011j\f\u0000\u0007Oa\u0000\u0012j\f\u0000\u0007Oa\u0000\u0013j\f\u0000\u0007Oa\u0000\u0014j\f\u0000\u0007Oa\u0000\u0015j\f\u0000\u0007Oa\u0000\u0016j\f\u0000\u0007Oa\u0000\u0017j\f\u0000\u0007Oa\u0000\u0018j\f\u0000\u0007Oa\u0000\u0019j\f\u0000\u0007Oa\u0000\u001aj\f\u0000\u0007Oa\u0000\u001bj\f\u0000\u0007Oa\u0000\u001cj\f\u0000\u0007O\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u001dUY\u0000\u0003h\u000f\n^\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4023af0fb67c3d596793d9efbf04237e5ce3e3fd","subject":"Delete Shutdown.applescript","message":"Delete Shutdown.applescript","repos":"chrisiona\/OSX-Actions","old_file":"Shutdown.applescript","new_file":"Shutdown.applescript","new_contents":"","old_contents":"tell application \"Finder\"\n\tshutdown\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1d980b2de1b3033d16646236581f903b79f134a6","subject":"ScriptEditor messed with the line endings :\/","message":"ScriptEditor messed with the line endings :\/\n","repos":"rmehner\/workflow","old_file":"skype-to-online.applescript","new_file":"skype-to-online.applescript","new_contents":"tell application \"System Events\" to set SkypeIsRunning to (count of (every process whose name is \"Skype\")) > 0\nif SkypeIsRunning then\n tell application \"Skype\"\n send command \"SET USERSTATUS ONLINE\" script name \"SETSKYPESTATUSTOONLINE\"\n end tell\nend if\n","old_contents":"tell application \"System Events\" to set SkypeIsRunning to (count of (every process whose name is \"Skype\")) > 0\rif SkypeIsRunning then\r tell application \"Skype\"\r send command \"SET USERSTATUS ONLINE\" script name \"SETSKYPESTATUSTOONLINE\"\r end tell\rend if\r","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d59e7a4ef959bf74ea1bd1e383d1847b4aa4fd57","subject":"Only use sample labels for blank files","message":"Only use sample labels for blank files\n\nThe unwanted behavior of also using sample labels whenever there was a\nproblem reading the file header was introduced in:\n\n 2013-02-25 Fix: Missing log file header causes error\n\nThe sample labels should not be used if they are missing from the file\nheader or if the header is missing or corrupt because the user could\nhave intentionally deleted them.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-01\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror -- bad or missing file header\n\t\t\t\t\tend if\n\t\t\t\ton error -- use default categories\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"998d4948da1aeda0c35826e714b1d2affe88cc48","subject":"removed non-printing characters","message":"removed non-printing characters\n","repos":"charlax\/OmnigraffleScripts","old_file":"ResetPrototype\/ResetPrototype.applescript","new_file":"ResetPrototype\/ResetPrototype.applescript","new_contents":"-- ResetPrototype\n--\n-- Copyright (c) 2011, Charles-Axel Dein\n-- All rights reserved.\n-- \n-- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n-- \n-- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n-- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-- Some configurable Settings\nproperty settingsFirstScreenName : \"First screen\" -- case insensitive \nproperty settingsFirstScreenPrefix : \"1\"\nproperty settingsAlwaysVisibleLayerPrefix : \"*\"\n-- End\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\t\n\tset canvasCount to count of canvases of theDocument\n\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset layerCount to count of layers of theCanvas\n\t\tset couldBeShownLayersCount to 0\n\t\tset firstScreenIsPresent to False\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset layerName to name of theLayer as string\n\t\t\t\n\t\t\t-- non-printable layers should be hidden\n\t\t\tif theLayer is not prints then\n\n\t\t\t\tset visible of theLayer to False\n\n\t\t\t-- shared layers should always be shown\n\t\t\telse if class of theLayer is shared layer \u00ac\n\t\t\t\tor (character 1 of layerName is settingsAlwaysVisibleLayerPrefix) \u00ac\n\t\t\t\tthen\n\n\t\t\t\tset visible of theLayer to True\n\n\t\t\t-- first screen should be shown\n\t\t\telse if (character 1 of layerName is settingsFirstScreenPrefix) \u00ac\n\t\t\t\tor (layerName is settingsFirstScreenName) then\n\n\t\t\t\tset visible of theLayer to True\n\t\t\t\tset firstScreenIsPresent to True\n\n\t\t\t-- all remaining layers should be hidden\n\t\t\telse\n\n\t\t\t\tset couldBeShownLayersCount to couldBeShownLayersCount + 1\n\t\t\t\tset couldBeShownLayer to theLayer\n\n\t\t\t\tset visible of theLayer to False\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t-- if there's only one layer that could be shown, then we show it\n\t\tif (couldBeShownLayersCount = 1) and (firstScreenIsPresent is False) then\n\t\t\tset visible of couldBeShownLayer to True\n\t\tend if\n\tend repeat\nend tell\n","old_contents":"-- ResetPrototype\n--\n-- Copyright (c) 2011, Charles-Axel Dein\n-- All rights reserved.\n-- \n-- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n-- \n-- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n-- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-- tested with OmniGraffle 5.3 and Mac OS 10.6.8\n\n-- Some configurable Settings\nproperty settingsFirstScreenName : \"First screen\" -- case insensitive \nproperty settingsFirstScreenPrefix : \"1\"\nproperty settingsAlwaysVisibleLayerPrefix : \"*\"\n-- End\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\t\n\tset canvasCount to count of canvases of theDocument\n\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset layerCount to count of layers of theCanvas\n\t\tset couldBeShownLayersCount to 0\n\t\tset firstScreenIsPresent to False\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset layerName to name of theLayer as string\n\t\t\t\n\t\t\t-- non-printable layers should be hidden\n\t\t\tif theLayer is not prints then\n\n\t\t\t\tset visible of theLayer to False\n\n\t\t\t-- shared layers should always be shown\n\t\t\telse if class of theLayer is shared layer \n\t\t\t\tor (character 1 of layerName is settingsAlwaysVisibleLayerPrefix) \n\t\t\t\tthen\n\n\t\t\t\tset visible of theLayer to True\n\n\t\t\t-- first screen should be shown\n\t\t\telse if (character 1 of layerName is settingsFirstScreenPrefix) \n\t\t\t\tor (layerName is settingsFirstScreenName) then\n\n\t\t\t\tset visible of theLayer to True\n\t\t\t\tset firstScreenIsPresent to True\n\n\t\t\t-- all remaining layers should be hidden\n\t\t\telse\n\n\t\t\t\tset couldBeShownLayersCount to couldBeShownLayersCount + 1\n\t\t\t\tset couldBeShownLayer to theLayer\n\n\t\t\t\tset visible of theLayer to False\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t-- if there's only one layer that could be shown, then we show it\n\t\tif (couldBeShownLayersCount = 1) and (firstScreenIsPresent is False) then\n\t\t\tset visible of couldBeShownLayer to True\n\t\tend if\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"e5e5ac8dc1f34c0e3409f4e3740a033c9880025d","subject":"Fixed syntax","message":"Fixed syntax\n","repos":"z-------------\/Androo","old_file":"applescript\/androo.scpt","new_file":"applescript\/androo.scpt","new_contents":"set phrases to {\"Were you born in a barn?\", \"Get some work done\", \"Useless scrub\", \"Stop jacking off\", \"I'll bust your chops\", \"Are you born in a water park?\", \"Stop fapping around\", \"Are you born in a barn?\", \"Later, shizlord\", \"Oy!\", \"You should know when to give up.\"}\nset dialogs to {\"WERE U BORN IN A BARN???\", \"GET SUM WERK DUN\", \"Useless scrub...\", \"Stop jacking off\", \"I'LL BUST YOUR CHOPS\", \"R U BORN IN A WATER PARK??\", \"Stop fapping around\", \"R U BORN IN A BARN???\", \"LATER, SHIZLORD\", \"OI!!\", \"U shuld know when 2 give up...\"}\nset actions to {\"*snaps fingers*\", \"*shakes head*\", \"UGHHHHHHH SCRUB\", \"BURRRRPPP\", \"And stop fapping around\"}\n\nrepeat\n set rnd_num to random number from 1 to length of phrases\n set front_app to (path to frontmost application as Unicode text)\n set act_num to random number from 1 to length of actions\n say (item rnd_num of phrases)\n tell application front_app\n display dialog (item rnd_num of dialogs) with title (item act_num of actions)\n end tell\n delay (random number from 2 to 3)\nend repeat\n","old_contents":"set phrases to {\"Were you born in a barn?\", \"Get some work done\", \"Useless scrub\", \"Stop jacking off\", \"I'll bust your chops\", \"Are you born in a water park?\", \"Stop fapping around\", \"Are you born in a barn?\", \"Later, shizlord\", \"Oy!\", \"You should know when to give up.\"}\nset dialogs to {\"WERE U BORN IN A BARN???\", \"GET SUM WERK DUN\", \"Useless scrub...\", \"Stop jacking off\", \"I'LL BUST YOUR CHOPS\", \"R U BORN IN A WATER PARK??\", \"Stop fapping around\", \"R U BORN IN A BARN???\", \"LATER, SHIZLORD\", \"OI!!\", \"U shuld know when 2 give up...}\nset actions to {\"*snaps fingers*\", \"*shakes head*\", \"UGHHHHHHH SCRUB\", \"BURRRRPPP\", \"And stop fapping around\"}\n\nrepeat\n set rnd_num to random number from 1 to length of phrases\n set front_app to (path to frontmost application as Unicode text)\n set act_num to random number from 1 to length of actions\n say (item rnd_num of phrases)\n tell application front_app\n display dialog (item rnd_num of dialogs) with title (item act_num of actions) with icon path to resource \"applet.icns\" in bundle (path to me)\n end tell\n delay (random number from 2 to 3)\nend repeat\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6968f1694181681f5520551bf214152ca4b88cff","subject":"Add space between quantity number and quantity name","message":"Add space between quantity number and quantity name\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a526121713ce92c3fdb8d6bd135d52d1a4e8faac","subject":"Skip subcategory listing if selection has none","message":"Skip subcategory listing if selection has none\n\nIf the selected top-level category doesn't have any subcategories, then\nskip the subcategory listing and go straight to the next dialog for\nediting the selection.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-21\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property uBullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property uBullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property uBullet : \"\"\n--property uBullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property uBullet : data utxt2043 as Unicode text -- HYPHEN BULLET\nproperty uBullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n--property uBack : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\nproperty uBack : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Get the info so far:\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Update the info:\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list with subcategories\", \n\t\t\t\" \" & uBullet & \" Create a new category...\", \n\t\t\tmultiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list of categories...\", \n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-21\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property uBullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property uBullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property uBullet : \"\"\n--property uBullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property uBullet : data utxt2043 as Unicode text -- HYPHEN BULLET\nproperty uBullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n--property uBack : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\nproperty uBack : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Get the info so far:\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Update the info:\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list with subcategories\", \n\t\t\t\" \" & uBullet & \" Create a new category...\", \n\t\t\tmultiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list of categories...\", \n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"16d62735bb938e5431cda56df9e27a5fc58127fe","subject":"Alfred checkin","message":"Alfred checkin\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u000e\u0000)\u0000\u0003\u0018\u0000*\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000(\u0000\u0001\u0000,\u0011\u0000,\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u0000-\u0011\u0000-\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u0000.\u0011\u0000.\u0000\"\u0000R\u0000e\u0000s\u0000i\u0000z\u0000e\u0000 \u0000S\u0000p\u0000l\u0000i\u0000t\u0000 \u0000P\u0000a\u0000n\u0000e\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000\/\u0011\u0000\/\u0000\"\u0000R\u0000e\u0000s\u0000i\u0000z\u0000e\u0000 \u0000S\u0000p\u0000l\u0000i\u0000t\u0000 \u0000P\u0000a\u0000n\u0000e\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00000\u0011\u00000\u0000\u001e\u0000M\u0000o\u0000v\u0000e\u0000 \u0000D\u0000i\u0000v\u0000i\u0000d\u0000e\u0000r\u0000 \u0000U\u0000p\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00001\u0011\u00001\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"5b5cb6170ae5aea5cf184ca884865ea70c631085","subject":"Was saved as run-only (no read); fixed.","message":"Was saved as run-only (no read); fixed.\n","repos":"jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles","old_file":"bin\/osx\/pause.scpt","new_file":"bin\/osx\/pause.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\r\u0000\u0007 iTunes\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u000e\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000'\u0000\f\r\u0000\f\u0000\u0002O\u0000\u0001\u0000\u0000\u0000'\u0000\r\u0000\u000e\r\u0000\r\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000&\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002>\u0001\u0000\u0000\u0004\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u0010\u0000\u0013\r\u0000\u0013\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0010\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007\n\u0000\u0004\npcap\r\u0000\u0015\u0000\u0002=\u0000\u0003\u0000\b\u0000\u000f\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npnam\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\f\u0000\u000e\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0012\u0000\u0001J\u0000\u0000\u0000\u0010\u0000\u0012\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\"\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002O\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u001a\u0000\u001f\n\u0000\u0018.hookPausnull\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000!\u000f\u0000!\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002T\u011aq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u011a\u0002\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\r\u0000\"\u0000\u0003l\u0000\u0002\u0000!\u0000!\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000#\u000f\u0000#\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000t\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000(\u0000)\u0001\u0000\u0000\f\u0000(\u0000\u0010\u0000\n Quicktime\u0000\u0002\u0000\u0000\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\u0014\u0000 \u0000Q\u0000u\u0000i\u0000c\u0000k\u0000t\u0000i\u0000m\u0000e\u0002\u0000'\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000(\u0000O\u0000-\r\u0000-\u0000\u0002O\u0000\u0001\u0000(\u0000O\u0000.\u0000\/\r\u0000.\u0000\u0004Z\u0000\u0000\u0000,\u0000N\u00000\u00001\r\u00000\u0000\u0002>\u0001\u0000\u0000,\u0000;\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0005\u0000,\u00008\u00004\r\u00004\u0000\u00026\u0001\u0000\u0000,\u00008\u00005\u00006\r\u00005\u0000\u00012\u0000\u0001\u0000,\u0000\/\n\u0000\u0004\npcap\r\u00006\u0000\u0002=\u0000\u0003\u00000\u00007\u00007\u00008\r\u00007\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u00008\u0000\u0001m\u0000\u0000\u00004\u00006\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000 \u0000Q\u0000u\u0000i\u0000c\u0000k\u0000t\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\r\u00003\u0000\u0001J\u0000\u0000\u00008\u0000:\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000>\u0000J\u0000;\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002O\u0000\u0000\u0000>\u0000H\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000B\u0000G\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0000B\u000f\u0000B\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TVOD\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u0014QuickTime Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000+\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000W\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000.Macintosh HD:Applications:QuickTime Player.app\u0000\u000e\u0000*\u0000\u0014\u0000Q\u0000u\u0000i\u0000c\u0000k\u0000T\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000!Applications\/QuickTime Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000?\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\/\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000D\u000f\u0000D\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000t\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0000J\u0001\u0000\u0000\f\u0000I\u0000\u0011\u0000\u000b DVD Player\u0000\u0002\u0000\u0000\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0016\u0000 \u0000D\u0000V\u0000D\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0002\u0000H\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000P\u0000w\u0000N\r\u0000N\u0000\u0002O\u0000\u0001\u0000P\u0000w\u0000O\u0000P\r\u0000O\u0000\u0004Z\u0000\u0000\u0000T\u0000v\u0000Q\u0000R\r\u0000Q\u0000\u0002>\u0001\u0000\u0000T\u0000c\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0005\u0000T\u0000`\u0000U\r\u0000U\u0000\u00026\u0001\u0000\u0000T\u0000`\u0000V\u0000W\r\u0000V\u0000\u00012\u0000\u0001\u0000T\u0000W\n\u0000\u0004\npcap\r\u0000W\u0000\u0002=\u0000\u0003\u0000X\u0000_\u0000X\u0000Y\r\u0000X\u0000\u00011\u0000\u0000\u0000Y\u0000[\n\u0000\u0004\npnam\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\\\u0000^\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0014\u0000D\u0000V\u0000D\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000T\u0000\u0001J\u0000\u0000\u0000`\u0000b\u0002\u0000\u0000\r\u0000R\u0000\u0001k\u0000\u0000\u0000f\u0000r\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000f\u0000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0002O\u0000\u0000\u0000f\u0000p\u0000a\u0000b\r\u0000a\u0000\u0003I\u0000\u0002\u0000j\u0000o\n\u0000\u0018.dvdxevpslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000b\u0000\u0001m\u0000\u0000\u0000f\u0000g\u0000c\u000f\u0000c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cfbs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u000eDVD Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002>\u00cfb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00cf4\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000(Macintosh HD:Applications:DVD Player.app\u0000\u000e\u0000\u001e\u0000\u000e\u0000D\u0000V\u0000D\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001bApplications\/DVD Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000`\u0000\u0002\u0000d\r\u0000d\u0000\u0003l\u0000\u0002\u0000q\u0000q\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000P\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0000e\u000f\u0000e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000t\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u0000\n\u0000\u0004 VLC\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\b\u0000 \u0000V\u0000L\u0000C\u0002\u0000i\u0000\u0002\u0000m\r\u0000m\u0000\u0003l\u0000\u0002\u0000x\u0000\u0000n\r\u0000n\u0000\u0002O\u0000\u0001\u0000x\u0000\u0000o\u0000p\r\u0000o\u0000\u0004Z\u0000\u0000\u0000|\u0000\u0000q\u0000r\r\u0000q\u0000\u0002>\u0001\u0000\u0000|\u0000\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0005\u0000|\u0000\u0000u\r\u0000u\u0000\u00026\u0001\u0000\u0000|\u0000\u0000v\u0000w\r\u0000v\u0000\u00012\u0000\u0001\u0000|\u0000\n\u0000\u0004\npcap\r\u0000w\u0000\u0002=\u0000\u0003\u0000\u0000\u0000x\u0000y\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0000\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0006\u0000V\u0000L\u0000C\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000t\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000r\u0000\u0001k\u0000\u0000\u0000\u0000\u0000|\u0002\u0000|\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.VLC#VLC1null\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000A\u0000;VLC has no 'pause', so this acts as a play\/pause toggle. :(\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000v\u0000V\u0000L\u0000C\u0000 \u0000h\u0000a\u0000s\u0000 \u0000n\u0000o\u0000 \u0000'\u0000p\u0000a\u0000u\u0000s\u0000e\u0000'\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000a\u0000c\u0000t\u0000s\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000p\u0000l\u0000a\u0000y\u0000\/\u0000p\u0000a\u0000u\u0000s\u0000e\u0000 \u0000t\u0000o\u0000g\u0000g\u0000l\u0000e\u0000.\u0000 \u0000:\u0000(\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000VLC#\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u0007VLC.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f9k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u000092\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000!Macintosh HD:Applications:VLC.app\u0000\u0000\u000e\u0000\u0010\u0000\u0007\u0000V\u0000L\u0000C\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0014Applications\/VLC.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000t\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\n\u0000\u0002\u0000\u0000\u0002\u0000+\u0000\u0002\u0000\u0000\u0002\u0000L\u0000\u0002\u0000\u0000\u0002\u0000m\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u0010\u0000#\u0000\u0000\u0018\u0000!\u00009\u0000B\u0000Z\u0000c\u0000z\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0000\u0013\n\u0000\u0004\npnam\n\u0000\u0018.hookPausnull\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.dvdxevpslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0018.VLC#VLC1null\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\u0006UOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\tUOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\fUOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\u000fUOPY\u0000\u0003hU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0001\u0000\u0000\u000f\u0010\u0000\u0002\u0000\u0003\u0000\u0003\u0000\u0004\u0001\u0000\u0000\u0010\u0000\u0003\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0004\u0000\u0007\u0010\u0000\u0005\u0000\u0006\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0005\u0000\u0000\u0010\u0000\u0006\u0000\u0010\u0000\u0007\u0000\b\u0000\t\u0000\n\u0000\u000b\u0000\f\u0000\r\u0000\u000e\u0000\u000f\u0000\u0010\u000f\u0000\u0007\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000t\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n\u0000\u0004\npcap\u000e\u0000\b\u0000\u0000\u0013\n\u0000\u0004\npnam\u000e\u0000\t\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u000f\u0000\n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002T\u011aq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u011a\u0002\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n\u0000\u0018.hookPausnull\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u000e\u0000\u000b\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000 \u0000Q\u0000u\u0000i\u0000c\u0000k\u0000t\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u000f\u0000\f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TVOD\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u0014QuickTime Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000+\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000W\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000.Macintosh HD:Applications:QuickTime Player.app\u0000\u000e\u0000*\u0000\u0014\u0000Q\u0000u\u0000i\u0000c\u0000k\u0000T\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000!Applications\/QuickTime Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000obj \u000e\u0000\r\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0014\u0000D\u0000V\u0000D\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u000f\u0000\u000e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cfbs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u000eDVD Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002>\u00cfb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00cf4\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000(Macintosh HD:Applications:DVD Player.app\u0000\u000e\u0000\u001e\u0000\u000e\u0000D\u0000V\u0000D\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001bApplications\/DVD Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n\u0000\u0018.dvdxevpslong\u0000\u0000\u0000\u0000\u0000null\u000e\u0000\u000f\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0006\u0000V\u0000L\u0000C\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000VLC#\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0000\u0000\u0007VLC.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f9k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u000092\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000!Macintosh HD:Applications:VLC.app\u0000\u0000\u000e\u0000\u0010\u0000\u0007\u0000V\u0000L\u0000C\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0014Applications\/VLC.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n\u0000\u0018.VLC#VLC1null\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\u0006UOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\tUOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\fUOPY\u0000\u0003hUO\u0012\u0000$*-[,\\Z81jv\u0001\u001d\u0000\u0011\u0012\u0000\u0007*j\f\u0000\u000fUOPY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"abce35bcb0c4f5e8c6c3ec013ad48278a74f9ce4","subject":"Use tr instead of sed to squeeze multiple spaces","message":"Use tr instead of sed to squeeze multiple spaces\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-23\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized web bookmark archive vim:ft=conf:\n# ===========================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each\n# bookmark record consists of a date, label (category), title, URL, and\n# optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new bookmarks.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-23\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized web bookmark archive vim:ft=conf:\n# ===========================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each\n# bookmark record consists of a date, label (category), title, URL, and\n# optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new bookmarks.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4ab80b05a936f698d6867280f59962034752466c","subject":"Skip category list dialogs if < 2 categories","message":"Skip category list dialogs if < 2 categories\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"42bbe3c1239f65922f3b6f622cd36f641a7a12f1","subject":"minor format change","message":"minor format change\n","repos":"NYHTC\/applescript-fm-helper","old_file":"main_helper.applescript","new_file":"main_helper.applescript","new_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a folder of compiled .scpt files, then builds the htcLib app to reference those compiled scripts.\n\n\n(* HISTORY:\n\t2019-12-11 ( dshockley, eshagdar ): Removed shouldBuildAPP - if some handler changes, we MUST build the app, so no point in asking. Removed unneeded properties from the app build, as well as other unneeded code\/comments. \n\t2019-12-10 ( dshockley ): Changed to COMPILE each handler, then also compile htcLib into the same folder. Only compile handler if the version changes. Also, only compile app if some change was made to handler calls. \n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\nproperty debugMode : true\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\n\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty compiledFolderName : \"CompiledHandlers\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\t\n\t-- now, despite possibly expecting to build app, do NOT actually finalize that if no changes made:\n\tset appChangesMade to false -- this will be changed to TRUE if any changes are made to handler names and\/or params\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t-- substrings for parsing sub-handler code:\n\tset subStr_handlerProperties to \"property debugMode: false\" & LF & \"property ScriptName: \\\"\" & appName & \"\\\"\" & LF\n\tset subStr_beforeHandlerName to LF & \"on \"\n\tset subStr_beforeHandlerParams to \"(\"\n\tset subStr_endPrefixHandler to LF & \"end \"\n\t\n\tset subStr_templateHandlerWrapperCode to \n\t\t\"\ttell application \\\"Finder\\\" to set handlerPath to \" & \n\t\t\"((container of (path to me)) as text) & \\\"###HANDLER_NAME###\\\" & \\\".scpt\\\"\" & LF & \n\t\t\"\ttell (load script alias handlerPath) to return ###HANDLER_CALL###\"\n\t\n\tset subStr_special_clickAtCoords_InternalCode_InsertAfter to (ASCII character 9) & \"try\" & LF\n\tset subStr_special_clickAtCoords_InternalCode_ToAdd to \n\t\t\"tell application \\\"Finder\\\" to set clickCommandPosix to POSIX path of (((container of container of (path to me)) as string) & \\\"vendor:cliclick:cliclick\\\")\" & LF\n\tset subStr_beforeHandlerVersion to \"-- version \"\n\tset subStr_afterHandlerVersion to return\n\t\n\tset subStr_beforeCompiledHandlerName to return & \"on \"\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathLibrary to pathRoot & folderName_library\n\tset pathCompiledFolder to pathRoot & compiledFolderName & \":\"\n\tset pathApp to pathCompiledFolder & appName & appExtension\n\t\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\t\n\t\n\t-- loop over each sub-directory, compiling each handler and adding to htcLib APP code:\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- reset variables for one file:\n\t\t\t\tset existingVersion to \"\"\n\t\t\t\tset existingHandlerCall to \"\"\n\t\t\t\tset shouldCompileHandler to true\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset compiledFileName to replaceSimple({oneFileName, \".applescript\", \".scpt\"})\n\t\t\t\t\tset pathCompiled to (pathCompiledFolder & compiledFileName)\n\t\t\t\t\t\n\t\t\t\t\ttry\n\t\t\t\t\t\tset existingCompiledCode to (do shell script \"osadecompile \" & POSIX path of pathCompiled)\n\t\t\t\t\t\tset existingVersion to getTextBetween({existingCompiledCode, subStr_beforeHandlerVersion, subStr_afterHandlerVersion})\n\t\t\t\t\t\tset existingHandlerCall to getTextBetween({existingCompiledCode, subStr_beforeCompiledHandlerName, return})\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset codeOneHandler to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset codeOneHandler to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerCall to getTextBetween({codeOneHandler, subStr_beforeHandlerName, LF})\n\t\t\t\t\tif handlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\tset handlerName to getTextBefore(handlerCall, \"(\")\n\t\t\t\t\telse\n\t\t\t\t\t\tset handlerName to handlerCall\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerVersion to getTextBetween({codeOneHandler, subStr_beforeHandlerVersion, LF})\n\t\t\t\t\t\n\t\t\t\t\tif handlerName is \"clickAtCoords\" then\n\t\t\t\t\t\t-- SPECIAL MODIFICATION to bring a \"property\" into the actual handler code. \n\t\t\t\t\t\tset codeOneHandler to my replaceSimple({codeOneHandler, subStr_special_clickAtCoords_InternalCode_InsertAfter, subStr_special_clickAtCoords_InternalCode_InsertAfter & subStr_special_clickAtCoords_InternalCode_ToAdd})\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- COMPARE existing (previously-compiled) version and handlerCall with NEW:\n\t\t\t\t\t-- if no existing or different, then DO need to re-compile app\n\t\t\t\t\tif (existingHandlerCall is equal to handlerCall) and (existingVersion is equal to handlerVersion) then\n\t\t\t\t\t\t-- do NOT need to compile, and no \"change\" (for this ONE handler!) to the app.\n\t\t\t\t\t\tset shouldCompileHandler to false\n\t\t\t\t\telse if (existingHandlerCall is equal to handlerCall) then\n\t\t\t\t\t\t-- do NOT need to re-compile the app due to THIS ONE handler (might need for some other).\n\t\t\t\t\telse\n\t\t\t\t\t\t-- the handlerCall was different, so THIS handler requires an app re-compile:\n\t\t\t\t\t\tset appChangesMade to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- APPEND TO APP: now append to htcLib APP code:\n\t\t\t\t\t-- do this EVEN if the handler itself doesn't need to be re-compiled.\n\t\t\t\t\tset handlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", handlerName}), \"###HANDLER_CALL###\", handlerCall})\n\t\t\t\t\tset codeHandlerWrapper to subStr_beforeHandlerName & handlerCall & LF & handlerInternalCode & subStr_endPrefixHandler & handlerName & LF\n\t\t\t\t\t\n\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\tset tempCode to tempCode & codeHandlerWrapper\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif shouldCompileHandler then\n\t\t\t\t\t\t-- SUBHANDLERS: process each sub-handler this handler depends upon:\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeSubHandlers to getTextAfter(oneFileRawCode, codeEnd)\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- trim the Handler code now (NOT above, since it needs the leading linefeed before the handler call):\t\t\t\n\t\t\t\t\t\tset codeOneHandler to trimWhitespace(codeOneHandler)\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeHandlerWithNewSubCalls to subStr_handlerProperties & codeOneHandler\n\t\t\t\t\t\trepeat while codeSubHandlers contains subStr_beforeHandlerName\n\t\t\t\t\t\t\tset skipThisSubhandler to false\n\t\t\t\t\t\t\tset oneSubhandlerCall to getTextBetween({codeSubHandlers, subStr_beforeHandlerName, LF})\n\t\t\t\t\t\t\tif oneSubhandlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\t\t\tset oneSubhandlerName to getTextBefore(oneSubhandlerCall, \"(\")\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset oneSubhandlerName to oneSubhandlerCall\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif oneSubhandlerName is \"coerceToString\" then\n\t\t\t\t\t\t\t\tif codeOneHandler does not contain \"coerceToString\" then\n\t\t\t\t\t\t\t\t\t-- the coerceToString was NOT used in the main handler, so we don't actually NEED it:\n\t\t\t\t\t\t\t\t\t-- so SKIP this:\n\t\t\t\t\t\t\t\t\tset skipThisSubhandler to true\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif not skipThisSubhandler then\n\t\t\t\t\t\t\t\t-- we DO need this subhandler, so reformat it:\n\t\t\t\t\t\t\t\tset subHandlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", oneSubhandlerName}), \"###HANDLER_CALL###\", oneSubhandlerCall})\n\t\t\t\t\t\t\t\tset oneSubHandlerCode to subStr_beforeHandlerName & oneSubhandlerCall & LF & subHandlerInternalCode & subStr_endPrefixHandler & oneSubhandlerName & LF\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset codeHandlerWithNewSubCalls to codeHandlerWithNewSubCalls & LF & oneSubHandlerCode\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset codeSubHandlers to getTextAfter(codeSubHandlers, subStr_endPrefixHandler & oneSubhandlerName)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- write the modified code into a temporary file:\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\tend try\n\t\t\t\t\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\t\t\t\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t\t\t\t\twrite codeHandlerWithNewSubCalls to fileRef\n\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- COMPILE the temporary file to the desired destination:\n\t\t\t\t\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathCompiled & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\tif appChangesMade then\n\t\t-- prepend code with documentation\n\t\tset docCode to \"-- main script\"\n\t\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\t\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" after making changes in any .applescript file and after each git pull. That script will determine which functions need to be recompiled, as well as whether this app needs to be recompiled.\"\n\t\tset docCode to docCode & LF\n\t\t\n\t\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\t\n\t\t\n\t\t\n\t\ttry\n\t\t\tclose access fileRef\n\t\tend try\n\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\twrite tempCode to fileRef\n\t\tclose access fileRef\n\t\t\n\t\t\n\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\t\tdo shell script \"pwd\"\n\t\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\t\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\t\n\t\t\n\t\tset appExists to false\n\t\ttell application \"Finder\"\n\t\t\tif exists pathApp then set appExists to true\n\t\tend tell\n\t\t\n\t\t\n\t\t--quit the pre-existing app\n\t\tif appExists then\n\t\t\ttell application appName to quit\n\t\tend if\n\t\t\n\t\t-- remove pre-existing app file\n\t\ttell application \"Finder\"\n\t\t\tif appExists then delete file pathApp\n\t\tend tell\n\t\t\n\t\t-- now make it into an app\n\t\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\t\n\t\tif showDialogs then\n\t\t\ttell it to activate\n\t\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\t\n\t\t\t\n\t\t\t-- navigate to security preference pane\n\t\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Preferences\" to activate\n\t\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- unlock if needed\n\t\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the \" & appName & \" checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tset visible to false\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttell me to activate\n\t\t\t\tdisplay dialog appName & \" is ready\" buttons \"OK\" default button \"OK\"\n\t\t\tend if\n\t\t\treturn true\n\t\telse\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\tend if -- should build APP.\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n\n\n\n\non getTextAfter(sourceTEXT, afterThis)\n\t-- version 1.2\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {afterThis}}\n\t\t\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\t-- the split-string didn't appear at all\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the resultAsList to text items 2 thru -1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to {afterThis}\n\t\tset finalResult to resultAsList as string\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextAfter\n\non getTextBefore(sourceTEXT, stopHere)\n\t-- version 1.1\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, stopHere}\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the finalResult to text item 1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextBefore\n\n\non replaceSimple(prefs)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {considerCase:true}\n\t\n\tif class of prefs is list then\n\t\tif (count of prefs) is greater than 3 then\n\t\t\t-- get any parameters after the initial 3\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\telse\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\tend if\n\t\t\n\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\n\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\n\tend if\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\t\n\tset considerCase to considerCase of prefs\n\tset sourceTEXT to sourceTEXT of prefs\n\tset oldChars to oldChars of prefs\n\tset newChars to newChars of prefs\n\t\n\tset sourceTEXT to sourceTEXT as string\n\t\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to the oldChars\n\tif considerCase then\n\t\tconsidering case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend considering\n\telse\n\t\tignoring case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend ignoring\n\tend if\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newText\n\t\nend replaceSimple\n","old_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a folder of compiled .scpt files, then builds the htcLib app to reference those compiled scripts.\n\n\n(* HISTORY:\n\t2019-12-11 ( dshockley, eshagdar ): Removed shouldBuildAPP - if some handler changes, we MUST build the app, so no point in asking. Removed unneeded properties from the app build, as well as other unneeded code\/comments. \n\t2019-12-10 ( dshockley ): Changed to COMPILE each handler, then also compile htcLib into the same folder. Only compile handler if the version changes. Also, only compile app if some change was made to handler calls. \n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\nproperty debugMode : true\n\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\n\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty compiledFolderName : \"CompiledHandlers\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\t\n\t-- now, despite possibly expecting to build app, do NOT actually finalize that if no changes made:\n\tset appChangesMade to false -- this will be changed to TRUE if any changes are made to handler names and\/or params\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t-- substrings for parsing sub-handler code:\n\tset subStr_handlerProperties to \"property debugMode: false\" & LF & \"property ScriptName: \\\"\" & appName & \"\\\"\" & LF\n\tset subStr_beforeHandlerName to LF & \"on \"\n\tset subStr_beforeHandlerParams to \"(\"\n\tset subStr_endPrefixHandler to LF & \"end \"\n\t\n\tset subStr_templateHandlerWrapperCode to \n\t\t\"\ttell application \\\"Finder\\\" to set handlerPath to \" & \n\t\t\"((container of (path to me)) as text) & \\\"###HANDLER_NAME###\\\" & \\\".scpt\\\"\" & LF & \n\t\t\"\ttell (load script alias handlerPath) to return ###HANDLER_CALL###\"\n\t\n\tset subStr_special_clickAtCoords_InternalCode_InsertAfter to (ASCII character 9) & \"try\" & LF\n\tset subStr_special_clickAtCoords_InternalCode_ToAdd to \n\t\t\"tell application \\\"Finder\\\" to set clickCommandPosix to POSIX path of (((container of container of (path to me)) as string) & \\\"vendor:cliclick:cliclick\\\")\" & LF\n\tset subStr_beforeHandlerVersion to \"-- version \"\n\tset subStr_afterHandlerVersion to return\n\t\n\tset subStr_beforeCompiledHandlerName to return & \"on \"\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathLibrary to pathRoot & folderName_library\n\tset pathCompiledFolder to pathRoot & compiledFolderName & \":\"\n\tset pathApp to pathCompiledFolder & appName & appExtension\n\t\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\t\n\t\n\t-- loop over each sub-directory, compiling each handler and adding to htcLib APP code:\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- reset variables for one file:\n\t\t\t\tset existingVersion to \"\"\n\t\t\t\tset existingHandlerCall to \"\"\n\t\t\t\tset shouldCompileHandler to true\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset compiledFileName to replaceSimple({oneFileName, \".applescript\", \".scpt\"})\n\t\t\t\t\tset pathCompiled to (pathCompiledFolder & compiledFileName)\n\t\t\t\t\t\n\t\t\t\t\ttry\n\t\t\t\t\t\tset existingCompiledCode to (do shell script \"osadecompile \" & POSIX path of pathCompiled)\n\t\t\t\t\t\tset existingVersion to getTextBetween({existingCompiledCode, subStr_beforeHandlerVersion, subStr_afterHandlerVersion})\n\t\t\t\t\t\tset existingHandlerCall to getTextBetween({existingCompiledCode, subStr_beforeCompiledHandlerName, return})\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset codeOneHandler to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset codeOneHandler to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerCall to getTextBetween({codeOneHandler, subStr_beforeHandlerName, LF})\n\t\t\t\t\tif handlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\tset handlerName to getTextBefore(handlerCall, \"(\")\n\t\t\t\t\telse\n\t\t\t\t\t\tset handlerName to handlerCall\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerVersion to getTextBetween({codeOneHandler, subStr_beforeHandlerVersion, LF})\n\t\t\t\t\t\n\t\t\t\t\tif handlerName is \"clickAtCoords\" then\n\t\t\t\t\t\t-- SPECIAL MODIFICATION to bring a \"property\" into the actual handler code. \n\t\t\t\t\t\tset codeOneHandler to my replaceSimple({codeOneHandler, subStr_special_clickAtCoords_InternalCode_InsertAfter, subStr_special_clickAtCoords_InternalCode_InsertAfter & subStr_special_clickAtCoords_InternalCode_ToAdd})\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- COMPARE existing (previously-compiled) version and handlerCall with NEW:\n\t\t\t\t\t-- if no existing or different, then DO need to re-compile app\n\t\t\t\t\tif (existingHandlerCall is equal to handlerCall) and (existingVersion is equal to handlerVersion) then\n\t\t\t\t\t\t-- do NOT need to compile, and no \"change\" (for this ONE handler!) to the app.\n\t\t\t\t\t\tset shouldCompileHandler to false\n\t\t\t\t\telse if (existingHandlerCall is equal to handlerCall) then\n\t\t\t\t\t\t-- do NOT need to re-compile the app due to THIS ONE handler (might need for some other).\n\t\t\t\t\telse\n\t\t\t\t\t\t-- the handlerCall was different, so THIS handler requires an app re-compile:\n\t\t\t\t\t\tset appChangesMade to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- APPEND TO APP: now append to htcLib APP code:\n\t\t\t\t\t-- do this EVEN if the handler itself doesn't need to be re-compiled.\n\t\t\t\t\tset handlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", handlerName}), \"###HANDLER_CALL###\", handlerCall})\n\t\t\t\t\tset codeHandlerWrapper to subStr_beforeHandlerName & handlerCall & LF & handlerInternalCode & subStr_endPrefixHandler & handlerName & LF\n\t\t\t\t\t\n\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\tset tempCode to tempCode & codeHandlerWrapper\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif shouldCompileHandler then\n\t\t\t\t\t\t-- SUBHANDLERS: process each sub-handler this handler depends upon:\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeSubHandlers to getTextAfter(oneFileRawCode, codeEnd)\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- trim the Handler code now (NOT above, since it needs the leading linefeed before the handler call):\t\t\t\n\t\t\t\t\t\tset codeOneHandler to trimWhitespace(codeOneHandler)\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeHandlerWithNewSubCalls to subStr_handlerProperties & codeOneHandler\n\t\t\t\t\t\trepeat while codeSubHandlers contains subStr_beforeHandlerName\n\t\t\t\t\t\t\tset skipThisSubhandler to false\n\t\t\t\t\t\t\tset oneSubhandlerCall to getTextBetween({codeSubHandlers, subStr_beforeHandlerName, LF})\n\t\t\t\t\t\t\tif oneSubhandlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\t\t\tset oneSubhandlerName to getTextBefore(oneSubhandlerCall, \"(\")\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset oneSubhandlerName to oneSubhandlerCall\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif oneSubhandlerName is \"coerceToString\" then\n\t\t\t\t\t\t\t\tif codeOneHandler does not contain \"coerceToString\" then\n\t\t\t\t\t\t\t\t\t-- the coerceToString was NOT used in the main handler, so we don't actually NEED it:\n\t\t\t\t\t\t\t\t\t-- so SKIP this:\n\t\t\t\t\t\t\t\t\tset skipThisSubhandler to true\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif not skipThisSubhandler then\n\t\t\t\t\t\t\t\t-- we DO need this subhandler, so reformat it:\n\t\t\t\t\t\t\t\tset subHandlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", oneSubhandlerName}), \"###HANDLER_CALL###\", oneSubhandlerCall})\n\t\t\t\t\t\t\t\tset oneSubHandlerCode to subStr_beforeHandlerName & oneSubhandlerCall & LF & subHandlerInternalCode & subStr_endPrefixHandler & oneSubhandlerName & LF\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset codeHandlerWithNewSubCalls to codeHandlerWithNewSubCalls & LF & oneSubHandlerCode\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset codeSubHandlers to getTextAfter(codeSubHandlers, subStr_endPrefixHandler & oneSubhandlerName)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- write the modified code into a temporary file:\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\tend try\n\t\t\t\t\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\t\t\t\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t\t\t\t\twrite codeHandlerWithNewSubCalls to fileRef\n\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- COMPILE the temporary file to the desired destination:\n\t\t\t\t\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathCompiled & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\tif appChangesMade then\n\t\t-- prepend code with documentation\n\t\tset docCode to \"-- main script\"\n\t\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\t\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" after making changes in any .applescript file and after each git pull. That script will determine which functions need to be recompiled, as well as whether this app needs to be recompiled.\"\n\t\tset docCode to docCode & LF\n\t\t\n\t\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\t\n\t\t\n\t\t\n\t\ttry\n\t\t\tclose access fileRef\n\t\tend try\n\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\twrite tempCode to fileRef\n\t\tclose access fileRef\n\t\t\n\t\t\n\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\t\tdo shell script \"pwd\"\n\t\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\t\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\t\n\t\t\n\t\tset appExists to false\n\t\ttell application \"Finder\"\n\t\t\tif exists pathApp then set appExists to true\n\t\tend tell\n\t\t\n\t\t\n\t\t--quit the pre-existing app\n\t\tif appExists then\n\t\t\ttell application appName to quit\n\t\tend if\n\t\t\n\t\t-- remove pre-existing app file\n\t\ttell application \"Finder\"\n\t\t\tif appExists then delete file pathApp\n\t\tend tell\n\t\t\n\t\t-- now make it into an app\n\t\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\t\n\t\tif showDialogs then\n\t\t\ttell it to activate\n\t\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\t\n\t\t\t\n\t\t\t-- navigate to security preference pane\n\t\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Preferences\" to activate\n\t\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- unlock if needed\n\t\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the \" & appName & \" checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tset visible to false\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttell me to activate\n\t\t\t\tdisplay dialog appName & \" is ready\" buttons \"OK\" default button \"OK\"\n\t\t\tend if\n\t\t\treturn true\n\t\telse\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\tend if -- should build APP.\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n\n\n\n\non getTextAfter(sourceTEXT, afterThis)\n\t-- version 1.2\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {afterThis}}\n\t\t\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\t-- the split-string didn't appear at all\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the resultAsList to text items 2 thru -1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to {afterThis}\n\t\tset finalResult to resultAsList as string\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextAfter\n\non getTextBefore(sourceTEXT, stopHere)\n\t-- version 1.1\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, stopHere}\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the finalResult to text item 1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextBefore\n\n\non replaceSimple(prefs)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {considerCase:true}\n\t\n\tif class of prefs is list then\n\t\tif (count of prefs) is greater than 3 then\n\t\t\t-- get any parameters after the initial 3\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\telse\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\tend if\n\t\t\n\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\n\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\n\tend if\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\t\n\tset considerCase to considerCase of prefs\n\tset sourceTEXT to sourceTEXT of prefs\n\tset oldChars to oldChars of prefs\n\tset newChars to newChars of prefs\n\t\n\tset sourceTEXT to sourceTEXT as string\n\t\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to the oldChars\n\tif considerCase then\n\t\tconsidering case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend considering\n\telse\n\t\tignoring case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend ignoring\n\tend if\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newText\n\t\nend replaceSimple\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fb866820515a66d7f1b26d184282d92d15e2a6c1","subject":"Add custom list dialog titles and messages","message":"Add custom list dialog titles and messages\n\nThis restores previous behavior that was broken with the recent list\ndialog modifications (splitting the dialogs into top categories,\nsubcategories and all categories instead of just the one full category\nlist).\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type)\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\t\n\t\t-- :TODO: Add choice to make a new category, bypassing subcategory dialog\n\t\t\n\t\treturn {\"Show full list with subcategories...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset prompt_count to 1 -- increment with every dialog or list prompt\nset prompt_total to 4 -- increment if the subcategory list is displayed\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non choose_category(cur_list, cur_list_type)\n\tlog \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\tlog \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type)\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- :TODO: Customize dialog message\n\t-- :TODO: Customize dialog title with dialog number\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\tlog \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\tlog \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\tlog \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\tlog \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tlog \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\t\n\t\t-- :TODO: Add choice to make a new category\n\t\t\n\t\treturn {\"Show full list with subcategories...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8ba76a639aa30676c26ff9413c4e67b6be3c8b23","subject":"Add browser name to page title dialog","message":"Add browser name to page title dialog\n\nAlso remove the redundant title from the prompt text. It's only needed\nin the input text field.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"23a947f3b4b168c6cf4c1c0cbc9be8f980605e27","subject":"Not equal spell out","message":"Not equal spell out\n\nBetter yet just spell it out, avoids Github encoding issue","repos":"prenagha\/launchbar,Joilence\/launchbar,prenagha\/launchbar,prenagha\/launchbar","old_file":"MailMate.applescript","new_file":"MailMate.applescript","new_contents":"\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n\tset theTextEnc to \"\"\n\trepeat with eachChar in characters of theText\n\t\tset useChar to eachChar\n\t\tset eachCharNum to ASCII number of eachChar\n\t\tif eachCharNum = 32 or eachCharNum > 127 then\n\t\t\tset useChar to \"%20\"\n\t\telse if (eachCharNum is not equal to 42) and (eachCharNum is not equal to 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n\t\t\tset firstDig to round (eachCharNum \/ 16) rounding down\n\t\t\tset secondDig to eachCharNum mod 16\n\t\t\tif firstDig > 9 then\n\t\t\t\tset aNum to firstDig + 55\n\t\t\t\tset firstDig to ASCII character aNum\n\t\t\tend if\n\t\t\tif secondDig > 9 then\n\t\t\t\tset aNum to secondDig + 55\n\t\t\t\tset secondDig to ASCII character aNum\n\t\t\tend if\n\t\t\tset numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n\t\t\tset useChar to numHex\n\t\tend if\n\t\tset theTextEnc to theTextEnc & useChar as string\n\tend repeat\n\treturn theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n\tset _to to \"\"\n\trepeat with addr in _emailAddresses\n\t\tset _to to _to & \"&to=\" & urlencode(addr)\n\tend repeat\n\treturn _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n\tset ASTID to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to \"\/\"\n\tset thePath to text item -1 of thePath\n\tset AppleScript's text item delimiters to ASTID\n\treturn thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n\ttry\n\t\tset _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n\t\tset _names to \"\"\n\t\trepeat with _file in _files\n\t\t\tset _filePath to POSIX path of _file\n\t\t\tset _names to _names & \" \" & basename(_filePath)\n\t\t\tset _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n\t\tend repeat\n\t\tset _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\ttell application \"MailMate\" to activate\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n\ttry\n\t\tif txt contains \" http\" then\n\t\t\tset myName to text 1 thru ((offset of \" http\" in txt) - 5) of txt\n\t\t\tset myURL to text ((offset of \" http\" in txt) + 1) thru end of txt\n\t\t\tset mySubj to \"Link: \" & myName\n\t\t\tset myBody to myName & return & myURL & return & return & \"Enjoy\"\n\t\t\tset _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n\t\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\telse\n\t\t\tset _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n\t\t\ttell application \"MailMate\" to open location _mailto\n\t\t\ttell application \"MailMate\" to activate\n\t\tend if\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendText\n","old_contents":"\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n\tset theTextEnc to \"\"\n\trepeat with eachChar in characters of theText\n\t\tset useChar to eachChar\n\t\tset eachCharNum to ASCII number of eachChar\n\t\tif eachCharNum = 32 or eachCharNum > 127 then\n\t\t\tset useChar to \"%20\"\n\t\telse if (eachCharNum \u2260 42) and (eachCharNum \u2260 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n\t\t\tset firstDig to round (eachCharNum \/ 16) rounding down\n\t\t\tset secondDig to eachCharNum mod 16\n\t\t\tif firstDig > 9 then\n\t\t\t\tset aNum to firstDig + 55\n\t\t\t\tset firstDig to ASCII character aNum\n\t\t\tend if\n\t\t\tif secondDig > 9 then\n\t\t\t\tset aNum to secondDig + 55\n\t\t\t\tset secondDig to ASCII character aNum\n\t\t\tend if\n\t\t\tset numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n\t\t\tset useChar to numHex\n\t\tend if\n\t\tset theTextEnc to theTextEnc & useChar as string\n\tend repeat\n\treturn theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n\tset _to to \"\"\n\trepeat with addr in _emailAddresses\n\t\tset _to to _to & \"&to=\" & urlencode(addr)\n\tend repeat\n\treturn _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n\tset ASTID to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to \"\/\"\n\tset thePath to text item -1 of thePath\n\tset AppleScript's text item delimiters to ASTID\n\treturn thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n\ttry\n\t\tset _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n\t\tset _names to \"\"\n\t\trepeat with _file in _files\n\t\t\tset _filePath to POSIX path of _file\n\t\t\tset _names to _names & \" \" & basename(_filePath)\n\t\t\tset _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n\t\tend repeat\n\t\tset _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\ttell application \"MailMate\" to activate\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n\ttry\n\t\tif txt contains \" http\" then\n\t\t\tset myName to text 1 thru ((offset of \" http\" in txt) - 5) of txt\n\t\t\tset myURL to text ((offset of \" http\" in txt) + 1) thru end of txt\n\t\t\tset mySubj to \"Link: \" & myName\n\t\t\tset myBody to myName & return & myURL & return & return & \"Enjoy\"\n\t\t\tset _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n\t\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\telse\n\t\t\tset _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n\t\t\ttell application \"MailMate\" to open location _mailto\n\t\t\ttell application \"MailMate\" to activate\n\t\tend if\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendText\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"0c1abeaa20a9d1a1ce66e54bee2e8b56cd1b293c","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 170\n\tset y_gtPs to y_gtTask + 80\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : true\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 170\n\tset y_gtPs to y_gtTask + 80\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d5b6247558ce7864fab93b4596dadab9f1e21100","subject":"Minor comment tweaks","message":"Minor comment tweaks\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d101e7a458b83e7313db262e175b0aa4c9927d6b","subject":"Add URL for script website to file template","message":"Add URL for script website to file template\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ecfb8173ff3b330921c1bb7f2340b1a907a06736","subject":"adding indentation to prettify using 4 spaces","message":"adding indentation to prettify using 4 spaces\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.9, Daniel A. Shockley\n\t\t-- 3.9.9 - 2018-10-25 ( dshockley\/eshagdar ): added tab-size 4 to the tidy prettify options. Tidy CANNOT output tabs. \n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.8, Daniel A. Shockley\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat and not shouldPrettify then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"38b705ff57db1e5d8a81719aba33d56b231ffb52","subject":"iterm-desktop-dev - open only 2 columns","message":"iterm-desktop-dev - open only 2 columns\n","repos":"vitalybe\/radio-stream,vitalybe\/radio-stream,vitalybe\/radio-stream,vitalybe\/radio-stream,vitalybe\/radio-stream,vitalybe\/radio-stream","old_file":"www\/iterm-desktop-dev.applescript","new_file":"www\/iterm-desktop-dev.applescript","new_contents":"tell application \"iTerm\"\n\ttell first window\n\t\tset newTab to (create tab with default profile)\n\t\ttell newTab\n\t\t\tset row1_col1 to (item 1 of sessions)\n\n\t\t\t-- creating columns\n\t\t\ttell row1_col1\n\t\t\t\tset row1_col2 to (split vertically with same profile)\n\t\t\tend tell\n\t\t\t\n\t\t\t-- running commands\n\t\t\ttell row1_col1 to write text \"npm run server-desktop-dev\"\n\t\t\ttell row1_col1 to set name to \"MusicStream - Server\"\n\t\t\ttell row1_col2 to write text \"npm run start-desktop-dev\"\n\t\t\ttell row1_col2 to set name to \"MusicStream - Client\"\n\t\t\t\n\t\tend tell\n\tend tell\nend tell","old_contents":"tell application \"iTerm\"\n\ttell first window\n\t\tset newTab to (create tab with default profile)\n\t\ttell newTab\n\t\t\t-- creating rows\n\t\t\ttell current session\n\t\t\t\tsplit horizontally with same profile\n\t\t\tend tell\n\t\t\t\n\t\t\tset row1_col1 to (item 1 of sessions)\n\t\t\tset row2_col1 to (item 2 of sessions)\n\t\t\t\n\t\t\t-- creating columns\n\t\t\ttell row1_col1\n\t\t\t\tset row1_col2 to (split vertically with same profile)\n\t\t\tend tell\n\t\t\t\n\t\t\t-- running commands\n\t\t\ttell row1_col1 to write text \"npm run server-desktop-dev\"\n\t\t\ttell row1_col1 to set name to \"MusicStream - Server\"\n\t\t\ttell row1_col2 to write text \"npm run start-desktop-dev\"\n\t\t\ttell row1_col2 to set name to \"MusicStream - Client\"\n\t\t\t\n\t\t\ttell row2_col1 to set name to \"MusicStream - Terminal\"\n\t\t\t\n\t\tend tell\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"be432b7e1afa47c978d34b97440ce894967c2dc0","subject":"Tweak run applescript","message":"Tweak run applescript\n","repos":"vba-blocks\/vba-blocks,vba-blocks\/vba-blocks,vba-blocks\/vba-blocks","old_file":"installer\/vba-blocks.applescript","new_file":"installer\/vba-blocks.applescript","new_contents":"tell application \"Terminal\"\n\tactivate\n\tdo script (\"vba-blocks help\")\nend tell\n","old_contents":"tell application \"Terminal\"\n activate\n set currentTab to do script (\"vba-blocks help\")\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"056e7b6f9a011faf90812539192449f6aee182cb","subject":"moveForMon.applescript, from darwin11","message":"moveForMon.applescript, from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_devel to debug_devel of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 105\n\tset y_gtTask to y_gtGcal + 180\n\tset y_gtPs to y_gtTask + 90\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX\n\tset dPosY_R to dPosY\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\tlog ledge & y_gtCal\n\t\t\tlog ledge & y_gtGcal\n\t\t\tlog ledge & y_gtTask\n\t\t\tlog ledge & y_gtPs\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({all:false})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_devel} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_devel to debug_devel of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 105\n\tset y_gtTask to y_gtGcal + 180\n\tset y_gtPs to y_gtTask + 90\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX\n\tset dPosY_R to dPosY\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\tlog ledge & y_gtCal\n\t\t\tlog ledge & y_gtGcal\n\t\t\tlog ledge & y_gtTask\n\t\t\tlog ledge & y_gtPs\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({all:false})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"49f23c9646bbc9a8f955ba4cb5f1c036d641e065","subject":"Add UTC unix epoch as \"time\" as string","message":"Add UTC unix epoch as \"time\" as string\n\notherwise it converts to a real since AppleScript's integer\nis seemingly narrow...\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n--\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n--\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreply's setkv(\"time\", (do shell script \"date -u +%s\"))\nreturn reply's toJson()\n","old_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n--\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n--\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"acd14a991c20c2c565c684fe6f747ae55bf35dfd","subject":"shell script should not executed inside tell application block","message":"shell script should not executed inside tell application block\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportAllLayers\/ExportAllLayers.applescript","new_file":"ExportAllLayers\/ExportAllLayers.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n\ttry\n\t\talias FileOrFolderToCheckString\n\t\treturn true\n\ton error\n\t\treturn false\n\tend try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theDocument to front document\n\tset _path to path of theDocument\n\t\n\tset area type of current export settings to current canvas\n\tset draws background of current export settings to false\n\tset include border of current export settings to false\n\t\n\t\n\t-- Get filename without extension\n\ttell application \"Finder\"\n\t\tset {theFilename, _extension, _ishidden} to the \n\t\t\t{displayed name, name extension, extension hidden} \n\t\t\t\tof ((the _path as POSIX file) as alias)\n\tend tell\n\tif (_extension missing value) then\n\t\tset theFilename to texts 1 thru -((length of _extension) + 2) of theFilename\n\tend if\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- Create folder if does not exist, remove it otherwise\n\t-- Shell script should not be executed inside tell application block\n\ttell me\n\t\tif file_exists(export_folder) of me then\n\t\t\ttry\n\t\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\t\ton error errText number errNum\n\t\t\t\tif (errNum is equal to -128) then\n\t\t\t\t\treturn\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\t-- Delete the folder\n\t\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\t\t\t\n\t\telse\n\t\t\t-- Create the folder\n\t\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\tend if\n\tend tell\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset canvasNumber to 1\n\trepeat with theCanvas in every canvas of theDocument\n\t\t-- Activate the canvas\n\t\tset canvas of front window to theCanvas\n\t\tset canvas_name to name of theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- Prepare filename\n\t\tset canvasFilename to \"\"\n\t\tset canvasFilename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset canvasFilename to canvasNumber & \"- \"\n\t\tend if\n\t\tset canvasFilename to canvasFilename & canvas_name\n\t\t\n\t\t-- Hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t-- Export each layer\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvasFilename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset exportFilename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in file exportFilename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset canvasNumber to canvasNumber + 1\n\t\t\n\tend repeat\nend tell\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\tset canvas_filename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset canvas_filename to canvasNumber & \"- \"\n\t\tend if\n\t\tset canvas_filename to canvas_filename & canvas_name\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_filename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"073aefcb2bde7a522bc3094a12097fe163ea6413","subject":"delete old file","message":"delete old file\n","repos":"rcmdnk\/AppleScript","old_file":"wsOld.applescript","new_file":"wsOld.applescript","new_contents":"","old_contents":"set menuheight to 22\nset dockheight to 60\nset geekToolWidth to 180\n\nset leftmargin to 10\nset rightmargin to 10\nset topmargin to 10\nset bottommargin to 10\n\n--*get screen size\ntell application \"Finder\"\n\tset displayBounds to bounds of window of desktop\n\tset dle to item 1 of displayBounds\n\tset dte to item 2 of displayBounds\n\tset dre to item 3 of displayBounds\n\tset dbe to item 4 of displayBounds\nend tell\n\n--*get dock's height (assume dock is on the bottom) and GeekTool's width\ntell application \"System Events\"\n\ttell process \"Dock\"\n\t\tset dPos to position of list 1\n\t\tset dPosY to item 2 of dPos\n\t\tset dockheight to dbe - dPosY\n\tend tell\n\t\n\ttell process \"GeekTool\"\n\t\tset topWindow to window 1\n\t\tset gtSize to size of topWindow\n\t\tset geekToolWidth to item 1 of gtSize\n\t\tset geekToolWidth to geekToolWidth + 10 -- additional margin\n\tend tell\nend tell\n\ntell application \"System Events\"\n\tset pList to name of every process whose frontmost is true\n\tset appName to item 1 of pList\n\t\n\ttell process appName\n\t\ttry\n\t\t\tset topWindow to item 1 of (every window whose focused is true)\n\t\ton error\n\t\t\tset topWindow to window 1\n\t\tend try\n\t\tset winPos to position of topWindow\n\t\tset wle to item 1 of winPos\n\t\tset wpos to {0, 0}\n\t\tset wsize to {0, 0}\n\t\tif dle < 0 then\n\t\t\tif wle < 0 then\n\t\t\t\tset wpos to {dle + leftmargin, topmargin}\n\t\t\t\tset wsize to {0 - dle - leftmargin - rightmargin - geekToolWidth, dbe - topmargin - bottommargin}\n\t\t\telse\n\t\t\t\tset wpos to {0 + leftmargin, topmargin + menuheight}\n\t\t\t\tset wsize to {dre - leftmargin - rightmargin, dbe - menuheight - topmargin - bottommargin - dockheight}\n\t\t\tend if\n\t\telse\n\t\t\tset wpos to {0 + leftmargin, topmargin + menuheight}\n\t\t\tset wsize to {dre - leftmargin - rightmargin - geekToolWidth, dbe - menuheight - topmargin - bottommargin - dockheight}\n\t\tend if\n\t\t\n\t\ttell topWindow\n\t\t\tset position to wpos\n\t\t\tset size to wsize\n\t\tend tell\n\tend tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ae2d8b28dc344068a0eb9bf5cef2f3c05415e8eb","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f615024ad6efef9c6dc158669989e8ee7997c4da","subject":"Rename some category menu items","message":"Rename some category menu items\n\nUpdated names:\n\n\tShow All Categories...\n\tNew Category...\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"76987de8d2d2cf7a592cc0908d16b8d667416e12","subject":"Add Quit item to choose file menu","message":"Add Quit item to choose file menu\n\nSince the cancel button has been repurposed as a back button.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"811b7f834ad9a744065207f2eb2eda0a3a14a4b3","subject":"Validate the dialog list types (for typos)","message":"Validate the dialog list types (for typos)\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat 10 times -- limit loops as a precaution\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\"\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat 10 times -- limit loops as a precaution\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\"\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"3a58557c1262f691a0019299e89884c24c779481","subject":"fix for issue #28, switch to bash before executing script","message":"fix for issue #28, switch to bash before executing script\n","repos":"JoeWoo\/osx-installer,boot2docker\/osx-installer,JoeWoo\/osx-installer,yut148\/osx-installer,yut148\/osx-installer,boot2docker\/osx-installer,lakwarus\/c5-osx-installer,cgvarela\/osx-installer,lakwarus\/c5-osx-installer,cgvarela\/osx-installer","old_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mpkg\/boot2docker.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\\\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000[\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0006\u0000\n\u0000\n\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u0000} TODO: test if ~\/.boot2docker\/boot2docker.iso exists, and if not, copy it from the install (need to ship it in the installer)\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0000 \u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000 \u0000i\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000(\u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000s\u0000h\u0000i\u0000p\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000)\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\u0014\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\b\u000bboovtrue\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\ntdct\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u001a\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u001c\u0000!\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000#\u0000$\r\u0000#\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ntitl\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000 \u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\"\u0000%\u0000'\u0000(\r\u0000'\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000&\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000-\u0000.\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000-\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000b\u0000a\u0000s\u0000h\u0006\u0000.\u0000\u0003\u00001\n\u0000\u0004\nkfil\r\u00001\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000,\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000.\u00005\u00004\u00005\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00004\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\nkfil\r\u00008\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u00006\u0000=\u0000;\u0000<\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000;\u0000\u0001m\u0000\u0000\u00006\u00007\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u0000<\u0000\u0003\u0000?\n\u0000\u0004\nkfil\r\u0000?\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000>\u0000G\u0000B\u0000C\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000B\u0000\u0002b\u0000\u0000\u0000>\u0000A\u0000D\u0000E\r\u0000D\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000C\u0000\u0003\u0000H\n\u0000\u0004\nkfil\r\u0000H\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003I\u0000\u0002\u0000H\u0000Q\u0000K\u0000L\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000K\u0000\u0002b\u0000\u0000\u0000H\u0000K\u0000M\u0000N\r\u0000M\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000O\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000L\u0000\u0003\u0000Q\n\u0000\u0004\nkfil\r\u0000Q\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\r\u0000R\u0000\u0003I\u0000\u0002\u0000R\u0000[\u0000S\u0000T\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000S\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000U\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000T\u0000\u0003\u0000W\n\u0000\u0004\nkfil\r\u0000W\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000X\u000f\u0000X\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u0000+\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011_?O\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0000+\u0000*\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000Y\u0000Z\u0001\u0000\u0000\u0010\u0000Y\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000Z\u0000\u0007\u0010\u0000[\u0000\\\u0000]\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000[\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\\\u0000^\u0002\u0000^\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\\\u0000\u0000\u0010\u0000]\u0000\u0011\u0000X\u0000\u0017\u0000)\u0000\/\u00006\u0000=\u0000F\u0000O\u0000U\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\n\u0000\u0004\ntitl\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\u0011\u0000]\u0012\u0000Y*j\f\u0000\u0001O*j\f\u0000\u0002EOEOe,FO,FOEOl\f\u0000\u0002Ol\f\u0000\u0002Ol\f\u0000\u0002O%l\f\u0000\u0002O%l\f\u0000\u0002Oa\u0000\u0010l\f\u0000\u0002U\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000R\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000R\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000Q\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0006\u0000\n\u0000\n\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u0000} TODO: test if ~\/.boot2docker\/boot2docker.iso exists, and if not, copy it from the install (need to ship it in the installer)\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0000 \u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000 \u0000i\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000(\u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000s\u0000h\u0000i\u0000p\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000)\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000&\u0000B\u0000o\u0000o\u0000t\u00002\u0000D\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000O\u0000S\u0000X\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\u0002\u0000\u0014\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\b\u000bboovtrue\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\ntdct\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u001a\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u001c\u0000!\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000#\u0000$\r\u0000#\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ntitl\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000 \u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\"\u0000%\u0000'\u0000(\r\u0000'\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u00004\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\u0002\u0000&\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000-\u0000.\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000-\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000.\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0006\u0000.\u0000\u0003\u00001\n\u0000\u0004\nkfil\r\u00001\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000,\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000.\u00005\u00004\u00005\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00004\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000i\u0000f\u0000 \u0000[\u0000 \u0000!\u0000 \u0000-\u0000f\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000p\u0000 \u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000s\u0000h\u0000a\u0000r\u0000e\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000.\u0000i\u0000s\u0000o\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000\/\u0000 \u0000;\u0000 \u0000f\u0000i\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\nkfil\r\u00008\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000;\u0000<\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000;\u0000\u0002b\u0000\u0000\u00006\u00009\u0000=\u0000>\r\u0000=\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000>\u0000\u0001m\u0000\u0000\u00007\u00008\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\f\u0000 \u0000i\u0000n\u0000i\u0000t\u0000 \u0006\u0000<\u0000\u0003\u0000A\n\u0000\u0004\nkfil\r\u0000A\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u0000@\u0000I\u0000D\u0000E\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000D\u0000\u0002b\u0000\u0000\u0000@\u0000C\u0000F\u0000G\r\u0000F\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\r\u0000G\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\u0000 \u0000u\u0000p\u0000 \u0000&\u0000&\u0000 \u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000D\u0000O\u0000C\u0000K\u0000E\u0000R\u0000_\u0000H\u0000O\u0000S\u0000T\u0000=\u0000t\u0000c\u0000p\u0000:\u0000\/\u0000\/\u0000$\u0000(\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000b\u0000o\u0000o\u0000t\u00002\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000i\u0000p\u0000 \u00002\u0000>\u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000)\u0000:\u00002\u00003\u00007\u00005\u0006\u0000E\u0000\u0003\u0000J\n\u0000\u0004\nkfil\r\u0000J\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000C\u0000\u0002\u0000K\r\u0000K\u0000\u0003I\u0000\u0002\u0000J\u0000Q\u0000L\u0000M\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000L\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\u001c\u0000d\u0000o\u0000c\u0000k\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0006\u0000M\u0000\u0003\u0000P\n\u0000\u0004\nkfil\r\u0000P\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000Q\u000f\u0000Q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0006OSX-OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000xH+\u0000\u0000\u0000\u0000\u0000P\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(>e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000y`\b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000P\u0000\u0000\u0000O\u0000\u0002\u0000,OSX-OS:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000O\u0000S\u0000X\u0000-\u0000O\u0000S\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000R\u0000S\u0001\u0000\u0000\u0010\u0000R\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000S\u0000\u0007\u0010\u0000T\u0000U\u0000V\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000T\u0000\u0001k\u0000\u0000\u0000\u0000\u0000R\u0000W\u0002\u0000W\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000U\u0000\u0000\u0010\u0000V\u0000\u0010\u0000Q\u0000\u0017\u0000)\u0000\/\u00006\u0000?\u0000H\u0000N\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u000b\u0000\u001a0\u0000\u000bwindowtitle\u0000\u000bwindowTitle\n\u0000\u0004\ntdct\n\u0000\u0004\ntitl\u000b\u0000\u00070\u0000\u0003b2d\u0000\u0000\n\u0000\u0004\nkfil\u0011\u0000S\u0012\u0000O*j\f\u0000\u0001O*j\f\u0000\u0002EOEOe,FO,FOEOl\f\u0000\u0002Ol\f\u0000\u0002O%l\f\u0000\u0002O%l\f\u0000\u0002Ol\f\u0000\u0002U\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"bc67f9f6c78b64c0508310cf4de86284113ea150","subject":"windowSize.applescript, from darwin11","message":"windowSize.applescript, from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"windowSize.applescript","new_file":"windowSize.applescript","new_contents":"property DEBUG_LEVEL : 1\n\nproperty DEF_LEFT_MARGIN : 10\nproperty DEF_RIGHT_MARGIN : 10\nproperty DEF_TOP_MARGIN : 10\nproperty DEF_BOTTOM_MARGIN : 10\n\nproperty GEEKTOOL_WINDOW : 1\nproperty GEEKTOOL_MARGIN : 10\n\n-- Window size main function\non windowSize(pars)\n\t-- Debug mode\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"debug mode = \" & DEBUG_LEVEL\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & DEBUG_LEVEL\n\t\tend if\n\tend if\n\t\n\t-- Set Parameters\n\tset {xsize, ysize, xpos, ypos, leftmargin, rightmargin, topmargin, bottommargin, appName, windowNumber, monPosX, monPosY, resize} to {1, 1, 0, 0, DEF_LEFT_MARGIN, DEF_RIGHT_MARGIN, DEF_TOP_MARGIN, DEF_BOTTOM_MARGIN, \"\", \"\", \"\", \"\", 1}\n\ttry\n\t\tset xsize to xsize of pars\n\tend try\n\ttry\n\t\tset ysize to ysize of pars\n\tend try\n\ttry\n\t\tset xpos to xpos of pars\n\tend try\n\ttry\n\t\tset ypos to ypos of pars\n\tend try\n\ttry\n\t\tset leftmargin to leftmargin of pars\n\tend try\n\ttry\n\t\tset rightmargin to rightmargin of pars\n\tend try\n\ttry\n\t\tset topmargin to topmargin of pars\n\tend try\n\ttry\n\t\tset bottommargin to bottommargin of pars\n\tend try\n\ttry\n\t\tset appName to appName of pars\n\tend try\n\ttry\n\t\tset windowNumber to windowNumber of pars\n\tend try\n\ttry\n\t\tset monPosX to monPosX of pars\n\tend try\n\ttry\n\t\tset monPosY to monPosY of pars\n\tend try\n\ttry\n\t\tset resize to resize of pars\n\tend try\n\t\n\t-- Get application name and window number, if appName is \"\", if windowNumber is not set, set 1\n\tif appName is \"\" then\n\t\ttell application \"System Events\"\n\t\t\tset pList to name of every process whose frontmost is true\n\t\t\tset appName to item 1 of pList\n\t\tend tell\n\tend if\n\tif windowNumber is \"\" then\n\t\tset windowNumber to 1\n\tend if\n\t\n\t\n\t\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \")\"\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \")\"\n\t\tend if\n\tend if\n\t\n\t-- First, move monitoring applications to correct places, if available\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset scriptPath to (path to me)'s folder as text\n\t\tend tell\n\t\tset moveForMonScpt to scriptPath & \"moveForMon.scpt\"\n\t\tset moveForMon to load script file moveForMonScpt\n\t\tmoveForMon's moveForMon(false)\n\tend try\n\t\n\t-- Get window position\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\tset winPos to position of topWindow\n\t\t\tset winSize to size of topWindow\n\t\t\tset winPosX to item 1 of winPos\n\t\t\tset winPosY to item 2 of winPos\n\t\t\tset winSizeX to item 1 of winSize\n\t\t\tset winSizeY to item 2 of winSize\n\t\t\tset winPosRT to {winPosX + winSizeX, winPosY}\n\t\t\tset winPosLB to {winPosX, winPosY + winSizeY}\n\t\t\tset winPosRB to {winPosX + winSizeX, winPosY + winSizeY}\n\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\tlog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\tlog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\tdisplay dialog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\t\tdisplay dialog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\tend tell\n\t\n\t-- Get screen (display) size\n\tif monPosX is not \"\" and monPosY is not \"\" then\n\t\tset svs to getVisibleFrame(monPosX, monPosY)\n\t\tset dPosX to item 1 of svs\n\telse\n\t\ttry\n\t\t\tset svs to getVisibleFrame(item 1 of winPos, item 2 of winPos)\n\t\t\tset dPosX to item 1 of svs\n\t\t\t\n\t\ton error\n\t\t\ttry\n\t\t\t\tset svs to getVisibleFrame(item 1 of winPosRT, item 2 of winPosRT)\n\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\t\n\t\t\ton error\n\t\t\t\ttry\n\t\t\t\t\tset svs to getVisibleFrame(item 1 of winPosLB, item 2 of winPosLB)\n\t\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\t\t\n\t\t\t\ton error\n\t\t\t\t\tset svs to getVisibleFrame(item 1 of winPosRB, item 2 of winPosRB)\n\t\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\tend try\n\t\t\tend try\n\t\tend try\n\tend if\n\t\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tend if\n\tend if\n\t\n\t-- Get GeekTool's position\n\t--tell application \"System Events\"\n\t--\ttry\n\t--\t\ttell process \"GeekTool\"\n\t--\t\t\tset topWindow to window GEEKTOOL_WINDOW\n\t--\t\t\tset gtPos to position of topWindow\n\t--\t\tend tell\n\t--\t\tset gtflag to 1\n\t--\ton error\n\t--\t\tset gtflag to 0\n\t--\tend try\n\t--end tell\n\t\n\t-- Check if the window and GeekTool are in same screen\n\t--if gtflag is 1 then\n\t--\tset gtsvs to getVisibleFrame(item 1 of gtPos, item 2 of gtPos)\n\t--\tset gtdPosX to item 1 of gtsvs\n\t--\tset gtdPosY to item 2 of gtsvs\n\t--\tif dPosX is gtdPosX and dPosY is gtdPosY then\n\t--\t\ttry\n\t--\t\t\tset gtSize to size of topWindow\n\t--\t\t\tset geekToolWidth to item 1 of gtSize\n\t--\t\t\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t--\t\ton error\n\t--\t\t\tset geekToolWidth to 0\n\t--\t\tend try\n\t--\telse\n\t--\t\tset geekToolWidth to 0\n\t--\tend if\n\tif item 1 of winPos < 0 then\n\t\tset geekToolWidth to 160\n\t\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\telse\n\t\tset geekToolWidth to 0\n\tend if\n\t\n\t-- Subtract geekToolWidth from display width\n\tset dWidth to dWidth - geekToolWidth\n\t\n\t-- Resize\/move\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\t-- Set screen size w\/o margins\n\t\t\t--set useSize to {dWidth - leftmargin - rightmargin, dHeight - topmargin - bottommargin}\n\t\t\t--if DEBUG_LEVEL > 0 then\n\t\t\t--\tlog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tif DEBUG_LEVEL > 1 then\n\t\t\t--\t\tdisplay dialog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tend if\n\t\t\t--end if\n\t\t\t-- No margin w\/o edges of screen\n\t\t\t--set wpos to {dPosX + leftmargin + xpos * (item 1 of useSize), dPosY + topmargin + ypos * (item 2 of useSize)}\n\t\t\t--set wsize to {xsize * (item 1 of useSize), ysize * (item 2 of useSize)}\n\t\t\t\n\t\t\t-- Set margin in any place\n\t\t\tset wpos to {dPosX + leftmargin + xpos * dWidth, dPosY + topmargin + ypos * dHeight}\n\t\t\tset wsize to {xsize * dWidth - leftmargin - rightmargin, ysize * dHeight - topmargin - bottommargin}\n\t\t\t\n\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\tlog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\tlog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\tdisplay dialog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tdisplay dialog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\t\ttell topWindow\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties before= \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\t\tset winSize to size\n\t\t\t\tif item 1 of winSize > dWidth or item 2 of winSize > dHeight then\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"Curent size is larger than window size!\"\n\t\t\t\t\tend if\n\t\t\t\t\tset position to {dPosX - ((item 1 of wpos) + (item 1 of wsize) - dWidth), dPosY - ((item 2 of wpos) + (item 2 of wsize) - dHeight)}\n\t\t\t\telse if (item 1 of wpos) + (item 1 of winSize) > dWidth or (item 2 of wpos) + (item 2 of winSize) > dHeight then\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"Curent size is larger than window-windowpos!\"\n\t\t\t\t\tend if\n\t\t\t\t\tset position to {dPosX, dPosY}\n\t\t\t\telse\n\t\t\t\t\tset position to wpos\n\t\t\t\tend if\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties after position change= \"\n\t\t\t\t\tlog properties\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"set size\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tif resize is 1 then\n\t\t\t\t\tset size to wsize\n\t\t\t\tend if\n\t\t\t\t-- This shows an error for iTerm!\n\t\t\t\t-- maybe properties is changed when set size\u2026???\n\t\t\t\t--if DEBUG_LEVEL > 0 then\n\t\t\t\t--\tlog \"preoperties after resize= \"\n\t\t\t\t--\tproperties\n\t\t\t\t--\tif DEBUG_LEVEL > 1 then\n\t\t\t\t--\t\tdisplay dialog \"set final position\"\n\t\t\t\t--\tend if\n\t\t\t\t--end if\n\t\t\t\t\n\t\t\t\t--end tell\n\t\t\t\t--try\n\t\t\t\t--\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\t\t--on error\n\t\t\t\t--\tset topWindow to window windowNumber\n\t\t\t\t--end try\n\t\t\t\t--tell topWindow\n\t\t\t\t\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties after resize= \"\n\t\t\t\t\tlog properties\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"set final position to (\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tset position to wpos\n\t\t\t\t\n\t\t\t\tif DEBUG_LEVEL > 2 then\n\t\t\t\t\tlog \"properties after = \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\tend tell\nend windowSize\n\n-- Function to get visible frame (w\/o menu bar, dock)\non getVisibleFrame(x, y)\n\tset cocoaScript to \"require 'osx\/cocoa'; \nx = (ARGV[1].to_i);\ny = (ARGV[2].to_i);\n\nmf = OSX::NSScreen.mainScreen().frame();\nmX = mf.origin.x\nmY = mf.origin.y\nmW = mf.size.width\nmH = mf.size.height\nsc = OSX::NSScreen.screens;\npoint = OSX::NSMakePoint(x, -y + mY + mH);\nvf = 0\nfor i in 0..sc.count()-1\n\tf = sc[i].frame();\n\tif( OSX:: NSMouseInRect(point,f,0) )\n\t\tvf = sc[i].visibleFrame();\n\t\tbreak;\n\tend\nend\n\nif vf == 0\nexit 0;\nend\n\nvX = vf.origin.x\nvY = vf.origin.y\nvW = vf.size.width\nvH = vf.size.height\n\nprint (vX);\nprint '\n';\nprint (-vY - vH + mH - mY);\nprint '\n';\nprint vW;\nprint '\n';\nprint vH;\n\"\n\t\n\tset ret to do shell script \"\/usr\/bin\/ruby -e \" & quoted form of cocoaScript & \" '' \" & \" \" & x & \" \" & y\n\tif ret is \"\" then\n\t\t--display dialog \"missing value\"\n\t\treturn 0\n\tend if\n\treturn {(paragraph 1 of ret) as number, (paragraph 2 of ret) as number, (paragraph 3 of ret) as number, (paragraph 4 of ret) as number}\nend getVisibleFrame\n","old_contents":"property DEBUG_LEVEL : 1\n\nproperty DEF_LEFT_MARGIN : 10\nproperty DEF_RIGHT_MARGIN : 10\nproperty DEF_TOP_MARGIN : 10\nproperty DEF_BOTTOM_MARGIN : 10\n\nproperty GEEKTOOL_WINDOW : 1\nproperty GEEKTOOL_MARGIN : 10\n\n-- window size main function\non windowSize(pars)\n\t-- debug mode\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"debug mode = \" & DEBUG_LEVEL\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & DEBUG_LEVEL\n\t\tend if\n\tend if\n\t\n\t-- set Parameters\n\tset {xsize, ysize, xpos, ypos, leftmargin, rightmargin, topmargin, bottommargin, appName, windowNumber, monPosX, monPosY, resize} to {1, 1, 0, 0, DEF_LEFT_MARGIN, DEF_RIGHT_MARGIN, DEF_TOP_MARGIN, DEF_BOTTOM_MARGIN, \"\", \"\", \"\", \"\", 1}\n\ttry\n\t\tset xsize to xsize of pars\n\tend try\n\ttry\n\t\tset ysize to ysize of pars\n\tend try\n\ttry\n\t\tset xpos to xpos of pars\n\tend try\n\ttry\n\t\tset ypos to ypos of pars\n\tend try\n\ttry\n\t\tset leftmargin to leftmargin of pars\n\tend try\n\ttry\n\t\tset rightmargin to rightmargin of pars\n\tend try\n\ttry\n\t\tset topmargin to topmargin of pars\n\tend try\n\ttry\n\t\tset bottommargin to bottommargin of pars\n\tend try\n\ttry\n\t\tset appName to appName of pars\n\tend try\n\ttry\n\t\tset windowNumber to windowNumber of pars\n\tend try\n\ttry\n\t\tset monPosX to monPosX of pars\n\tend try\n\ttry\n\t\tset monPosY to monPosY of pars\n\tend try\n\ttry\n\t\tset resize to resize of pars\n\tend try\n\t\n\t-- get application name and window number, if appName is \"\", if windowNumber is not set, set 1\n\tif appName is \"\" then\n\t\ttell application \"System Events\"\n\t\t\tset pList to name of every process whose frontmost is true\n\t\t\tset appName to item 1 of pList\n\t\tend tell\n\tend if\n\tif windowNumber is \"\" then\n\t\tset windowNumber to 1\n\tend if\n\t\n\t\n\t\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \")\"\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \")\"\n\t\tend if\n\tend if\n\t\n\t-- first, move monitoring applications to correct places, if available\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset scriptPath to (path to me)'s folder as text\n\t\tend tell\n\t\tset moveForMonScpt to scriptPath & \"moveForMon.scpt\"\n\t\tset moveForMon to load script file moveForMonScpt\n\t\tmoveForMon's moveForMon(false)\n\tend try\n\t\n\t-- get window position\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\tset winPos to position of topWindow\n\t\t\tset winSize to size of topWindow\n\t\t\tset winPosX to item 1 of winPos\n\t\t\tset winPosY to item 2 of winPos\n\t\t\tset winSizeX to item 1 of winSize\n\t\t\tset winSizeY to item 2 of winSize\n\t\t\tset winPosRT to {winPosX + winSizeX, winPosY}\n\t\t\tset winPosLB to {winPosX, winPosY + winSizeY}\n\t\t\tset winPosRB to {winPosX + winSizeX, winPosY + winSizeY}\n\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\tlog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\tlog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\tdisplay dialog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\t\tdisplay dialog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\tend tell\n\t\n\t-- get screen (display) size\n\tif monPosX is not \"\" and monPosY is not \"\" then\n\t\tset svs to getVisibleFrame(monPosX, monPosY)\n\t\tset dPosX to item 1 of svs\n\telse\n\t\ttry\n\t\t\tset svs to getVisibleFrame(item 1 of winPos, item 2 of winPos)\n\t\t\tset dPosX to item 1 of svs\n\t\t\t\n\t\ton error\n\t\t\ttry\n\t\t\t\tset svs to getVisibleFrame(item 1 of winPosRT, item 2 of winPosRT)\n\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\t\n\t\t\ton error\n\t\t\t\ttry\n\t\t\t\t\tset svs to getVisibleFrame(item 1 of winPosLB, item 2 of winPosLB)\n\t\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\t\t\n\t\t\t\ton error\n\t\t\t\t\tset svs to getVisibleFrame(item 1 of winPosRB, item 2 of winPosRB)\n\t\t\t\t\tset dPosX to item 1 of svs\n\t\t\t\tend try\n\t\t\tend try\n\t\tend try\n\tend if\n\t\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tend if\n\tend if\n\t\n\t-- get GeekTool's position\n\ttell application \"System Events\"\n\t\ttry\n\t\t\ttell process \"GeekTool\"\n\t\t\t\tset topWindow to window GEEKTOOL_WINDOW\n\t\t\t\tset gtPos to position of topWindow\n\t\t\tend tell\n\t\t\tset gtflag to 1\n\t\ton error\n\t\t\tset gtflag to 0\n\t\tend try\n\tend tell\n\t\n\t-- check if the window and GeekTool are in same screen\n\tif gtflag is 1 then\n\t\tset gtsvs to getVisibleFrame(item 1 of gtPos, item 2 of gtPos)\n\t\tset gtdPosX to item 1 of gtsvs\n\t\tset gtdPosY to item 2 of gtsvs\n\t\tif dPosX is gtdPosX and dPosY is gtdPosY then\n\t\t\ttry\n\t\t\t\tset gtSize to size of topWindow\n\t\t\t\tset geekToolWidth to item 1 of gtSize\n\t\t\t\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t\t\ton error\n\t\t\t\tset geekToolWidth to 0\n\t\t\tend try\n\t\telse\n\t\t\tset geekToolWidth to 0\n\t\tend if\n\telse\n\t\tset geekToolWidth to 0\n\tend if\n\t\n\t-- subtract geekToolWidth from display width\n\tset dWidth to dWidth - geekToolWidth\n\t\n\t-- resize\/move\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\t-- set screen size w\/o margins\n\t\t\t--set useSize to {dWidth - leftmargin - rightmargin, dHeight - topmargin - bottommargin}\n\t\t\t--if DEBUG_LEVEL > 0 then\n\t\t\t--\tlog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tif DEBUG_LEVEL > 1 then\n\t\t\t--\t\tdisplay dialog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tend if\n\t\t\t--end if\n\t\t\t-- no margin w\/o edges of screen\n\t\t\t--set wpos to {dPosX + leftmargin + xpos * (item 1 of useSize), dPosY + topmargin + ypos * (item 2 of useSize)}\n\t\t\t--set wsize to {xsize * (item 1 of useSize), ysize * (item 2 of useSize)}\n\t\t\t\n\t\t\t-- set margin in any place\n\t\t\tset wpos to {dPosX + leftmargin + xpos * dWidth, dPosY + topmargin + ypos * dHeight}\n\t\t\tset wsize to {xsize * dWidth - leftmargin - rightmargin, ysize * dHeight - topmargin - bottommargin}\n\t\t\t\n\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\tlog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\tlog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\tdisplay dialog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tdisplay dialog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\t\ttell topWindow\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties before= \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\t\tset winSize to size\n\t\t\t\tif item 1 of winSize > dWidth or item 2 of winSize > dHeight then\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"Curent size is larger than window size!\"\n\t\t\t\t\tend if\n\t\t\t\t\tset position to {dPosX - ((item 1 of wpos) + (item 1 of wsize) - dWidth), dPosY - ((item 2 of wpos) + (item 2 of wsize) - dHeight)}\n\t\t\t\telse if (item 1 of wpos) + (item 1 of winSize) > dWidth or (item 2 of wpos) + (item 2 of winSize) > dHeight then\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"Curent size is larger than window-windowpos!\"\n\t\t\t\t\tend if\n\t\t\t\t\tset position to {dPosX, dPosY}\n\t\t\t\telse\n\t\t\t\t\tset position to wpos\n\t\t\t\tend if\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties after position change= \"\n\t\t\t\t\tlog properties\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"set size\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tif resize is 1 then\n\t\t\t\t\tset size to wsize\n\t\t\t\tend if\n\t\t\t\t-- this shows an error for iTerm!\n\t\t\t\t-- maybe properties is changed when set size\u2026???\n\t\t\t\t--if DEBUG_LEVEL > 0 then\n\t\t\t\t--\tlog \"preoperties after resize= \"\n\t\t\t\t--\tproperties\n\t\t\t\t--\tif DEBUG_LEVEL > 1 then\n\t\t\t\t--\t\tdisplay dialog \"set final position\"\n\t\t\t\t--\tend if\n\t\t\t\t--end if\n\t\t\t\t\n\t\t\t\t--end tell\n\t\t\t\t--try\n\t\t\t\t--\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\t\t--on error\n\t\t\t\t--\tset topWindow to window windowNumber\n\t\t\t\t--end try\n\t\t\t\t--tell topWindow\n\t\t\t\t\n\t\t\t\tif DEBUG_LEVEL > 0 then\n\t\t\t\t\tlog \"preoperties after resize= \"\n\t\t\t\t\tlog properties\n\t\t\t\t\tif DEBUG_LEVEL > 1 then\n\t\t\t\t\t\tdisplay dialog \"set final position to (\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tset position to wpos\n\t\t\t\t\n\t\t\t\tif DEBUG_LEVEL > 2 then\n\t\t\t\t\tlog \"properties after = \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\tend tell\nend windowSize\n\n-- function to get visible frame (w\/o menu bar, dock)\non getVisibleFrame(x, y)\n\tset cocoaScript to \"require 'osx\/cocoa'; \nx = (ARGV[1].to_i);\ny = (ARGV[2].to_i);\n\nmf = OSX::NSScreen.mainScreen().frame();\nmX = mf.origin.x\nmY = mf.origin.y\nmW = mf.size.width\nmH = mf.size.height\nsc = OSX::NSScreen.screens;\npoint = OSX::NSMakePoint(x, -y + mY + mH);\nvf = 0\nfor i in 0..sc.count()-1\n\tf = sc[i].frame();\n\tif( OSX:: NSMouseInRect(point,f,0) )\n\t\tvf = sc[i].visibleFrame();\n\t\tbreak;\n\tend\nend\n\nif vf == 0\nexit 0;\nend\n\nvX = vf.origin.x\nvY = vf.origin.y\nvW = vf.size.width\nvH = vf.size.height\n\nprint (vX);\nprint '\n';\nprint (-vY - vH + mH - mY);\nprint '\n';\nprint vW;\nprint '\n';\nprint vH;\n\"\n\t\n\tset ret to do shell script \"\/usr\/bin\/ruby -e \" & quoted form of cocoaScript & \" '' \" & \" \" & x & \" \" & y\n\tif ret is \"\" then\n\t\t--display dialog \"missing value\"\n\t\treturn 0\n\tend if\n\treturn {(paragraph 1 of ret) as number, (paragraph 2 of ret) as number, (paragraph 3 of ret) as number, (paragraph 4 of ret) as number}\nend getVisibleFrame\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b89681bef2e492bccb9502079e042ff495b40c39","subject":"tdf#90298 rescan for bundled extensions when installing Mac langpack","message":"tdf#90298 rescan for bundled extensions when installing Mac langpack\n\nLO only scans for new extensions when the folder's timestamp is newer\nthan a timestamp file in the user's profile. When installing a\nlanguagepack, the folder is set to the build-time of the package. touch\nthe dir to set it to install time and thus allow LO to pick up newly\ninstalled dictionaries and thesaurus\/hyphenation data.\n\nChange-Id: I888f830d2325774cd98e3624c19d2be19d4d6db2\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"setup_native\/scripts\/osx_install_languagepack.applescript","new_file":"setup_native\/scripts\/osx_install_languagepack.applescript","new_contents":"(*\n\n This file is part of the LibreOffice project.\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n\n This file incorporates work covered by the following license notice:\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements. See the NOTICE file distributed\n with this work for additional information regarding copyright\n ownership. The ASF licenses this file to you under the Apache\n License, Version 2.0 (the \"License\"); you may not use this file\n except in compliance with the License. You may obtain a copy of\n the License at http:\/\/www.apache.org\/licenses\/LICENSE-2.0 .\n\nThis script is meant to\n\t1) Identify installed instances of the product\n\t2) check whether the user has write-access (and if not\n\task for authentification)\n\t3) install the shipped tarball\n*)\n\n-- strings for localisations - to be meant to be replaced\n-- by a makefile or similar\nset OKLabel to \"[OKLabel]\"\nset InstallLabel to \"[InstallLabel]\"\nset AbortLabel to \"[AbortLabel]\"\nset intro to \"[IntroText1]\n\n[IntroText2]\n\n[IntroText3]\"\nset chooseMyOwn to \"[ChooseMyOwnText]\"\nset listPrompt to \"[ListPromptText]\"\nset chooseManual to \"[ChooseManualText]\"\nset listOKLabel to \"[ListOKLabelText]\"\nset listCancelLabel to \"[ListCancelLabel]\"\nset appInvalid to \"[AppInvalidText1]\n\n[AppInvalidText2]\" -- string will begin with the chosen application's name\nset startInstall to \"[StartInstallText1]\n\n[StartInstallText2]\"\nset IdentifyQ to \"[IdentifyQText]\n\n[IdentifyQText2]\"\nset IdentifyYES to \"[IdentifyYES]\"\nset IdentifyNO to \"[IdentifyNO]\"\nset installFailed to \"[InstallFailedText]\"\nset installComplete to \"[InstallCompleteText]\n\n[InstallCompleteText2]\"\n\nset sourcedir to (do shell script \"dirname \" & quoted form of POSIX path of (path to of me))\n\nactivate\ndisplay dialog intro buttons {AbortLabel, InstallLabel} default button 2\n\nif (button returned of result) is AbortLabel then\n\treturn 2\nend if\n\nset found_ooos_all to \"\"\n-- command might return an error if spotlight is disabled completely\ntry\n\tset found_ooos_all to (do shell script \"mdfind \\\"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLAPPPRODUCTNAME].app'\\\"\")\nend try\nset found_ooos_all to found_ooos_all & \"\n\" & chooseMyOwn\n\nset found_ooos_all_paragraphs to paragraphs in found_ooos_all\n\nset found_ooos to {}\nrepeat with currentApp in found_ooos_all_paragraphs\n\tif currentApp does not start with \"\/Volumes\" then\n\t\tcopy currentApp to the end of found_ooos\n\tend if\nend repeat\n\n-- repeat with oneApp in found_ooos\n-- display dialog oneApp\n-- end repeat\n\n-- the choice returned is of type \"list\"\n-- Show selection dialog only if more than one or no product was found\n-- The first item is an empty string, if no app was found and no app started with \"\/Volumes\"\n-- The first item is chooseMyOwn, if no app was found and at least one app started with \"\/Volumes\"\nif (get first item of found_ooos as string) is \"\" then\n set the choice to (choose from list found_ooos default items (get second item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nelse if (get first item of found_ooos as string) is chooseMyOwn then\n set the choice to (choose from list found_ooos default items (get first item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nelse if (get second item of found_ooos as string) is chooseMyOwn then\n -- set choice to found installation\n -- set the choice to (get first paragraph of found_ooos)\n set the choice to (get first item of found_ooos)\nelse \n set the choice to (choose from list found_ooos default items (get first item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nend if\t\n\n-- now only check whether the path is really from [PRODUCTNAME]\ntry\n\tdo shell script \"grep '<string>[PRODUCTNAME] [PRODUCTVERSION]' \" & quoted form of (choice as string) & \"\/Contents\/Info.plist\"\non error\n\tdisplay dialog (choice as string) & appInvalid buttons {InstallLabel} default button 1 with icon 0\n\treturn 3 --wrong target-directory\nend try\n\n(*\ndisplay dialog startInstall buttons {AbortLabel, InstallLabel} default button 2\n\nif (button returned of result) is AbortLabel then\n\treturn 2\nend if\n*)\n\n-- touch extensions folder to have LO register bundled dictionaries\nset tarCommand to \"\/usr\/bin\/tar -C \" & quoted form of (choice as string) & \" -xjf \" & quoted form of sourcedir & \"\/tarball.tar.bz2 && touch \" & quoted form of (choice as string) & \"\/Contents\/Resources\/extensions\"\ntry\n\tdo shell script tarCommand\n\t\non error errMSG number errNUM\n\tdisplay dialog IdentifyQ buttons {IdentifyYES, IdentifyNO} with icon 2\n\tif (button returned of result) is IdentifyYES then\n\t\ttry\n\t\t\tdo shell script tarCommand with administrator privileges\n\t\ton error errMSG number errNUM\n\t\t\tdisplay dialog installFailed buttons {OKLabel} default button 1 with icon 0\n\t\t\t-- -60005 username\/password wrong\n\t\t\t-- -128 aborted by user\n\t\t\t-- 2 error from tar - tarball not found (easy to test)\n\t\t\treturn errNUM\n\t\tend try\n\telse\n\t\treturn 2 -- aborted by user\n\tend if\nend try\n\ndisplay dialog installComplete buttons {OKLabel} default button 1\n","old_contents":"(*\n\n This file is part of the LibreOffice project.\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n\n This file incorporates work covered by the following license notice:\n\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements. See the NOTICE file distributed\n with this work for additional information regarding copyright\n ownership. The ASF licenses this file to you under the Apache\n License, Version 2.0 (the \"License\"); you may not use this file\n except in compliance with the License. You may obtain a copy of\n the License at http:\/\/www.apache.org\/licenses\/LICENSE-2.0 .\n\nThis script is meant to\n\t1) Identify installed instances of the product\n\t2) check whether the user has write-access (and if not\n\task for authentification)\n\t3) install the shipped tarball\n*)\n\n-- strings for localisations - to be meant to be replaced\n-- by a makefile or similar\nset OKLabel to \"[OKLabel]\"\nset InstallLabel to \"[InstallLabel]\"\nset AbortLabel to \"[AbortLabel]\"\nset intro to \"[IntroText1]\n\n[IntroText2]\n\n[IntroText3]\"\nset chooseMyOwn to \"[ChooseMyOwnText]\"\nset listPrompt to \"[ListPromptText]\"\nset chooseManual to \"[ChooseManualText]\"\nset listOKLabel to \"[ListOKLabelText]\"\nset listCancelLabel to \"[ListCancelLabel]\"\nset appInvalid to \"[AppInvalidText1]\n\n[AppInvalidText2]\" -- string will begin with the chosen application's name\nset startInstall to \"[StartInstallText1]\n\n[StartInstallText2]\"\nset IdentifyQ to \"[IdentifyQText]\n\n[IdentifyQText2]\"\nset IdentifyYES to \"[IdentifyYES]\"\nset IdentifyNO to \"[IdentifyNO]\"\nset installFailed to \"[InstallFailedText]\"\nset installComplete to \"[InstallCompleteText]\n\n[InstallCompleteText2]\"\n\nset sourcedir to (do shell script \"dirname \" & quoted form of POSIX path of (path to of me))\n\nactivate\ndisplay dialog intro buttons {AbortLabel, InstallLabel} default button 2\n\nif (button returned of result) is AbortLabel then\n\treturn 2\nend if\n\nset found_ooos_all to \"\"\n-- command might return an error if spotlight is disabled completely\ntry\n\tset found_ooos_all to (do shell script \"mdfind \\\"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLAPPPRODUCTNAME].app'\\\"\")\nend try\nset found_ooos_all to found_ooos_all & \"\n\" & chooseMyOwn\n\nset found_ooos_all_paragraphs to paragraphs in found_ooos_all\n\nset found_ooos to {}\nrepeat with currentApp in found_ooos_all_paragraphs\n\tif currentApp does not start with \"\/Volumes\" then\n\t\tcopy currentApp to the end of found_ooos\n\tend if\nend repeat\n\n-- repeat with oneApp in found_ooos\n-- display dialog oneApp\n-- end repeat\n\n-- the choice returned is of type \"list\"\n-- Show selection dialog only if more than one or no product was found\n-- The first item is an empty string, if no app was found and no app started with \"\/Volumes\"\n-- The first item is chooseMyOwn, if no app was found and at least one app started with \"\/Volumes\"\nif (get first item of found_ooos as string) is \"\" then\n set the choice to (choose from list found_ooos default items (get second item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nelse if (get first item of found_ooos as string) is chooseMyOwn then\n set the choice to (choose from list found_ooos default items (get first item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nelse if (get second item of found_ooos as string) is chooseMyOwn then\n -- set choice to found installation\n -- set the choice to (get first paragraph of found_ooos)\n set the choice to (get first item of found_ooos)\nelse \n set the choice to (choose from list found_ooos default items (get first item of found_ooos) with prompt listPrompt OK button name listOKLabel cancel button name listCancelLabel)\n if choice is false then\n\t -- do nothing, the user cancelled the installation\n \treturn 2 --aborted by user\n else if (choice as string) is chooseMyOwn then\n\t -- yeah, one needs to use \"choose file\", otherwise\n\t -- the user would not be able to select the .app\n\t set the choice to POSIX path of (choose file with prompt chooseManual of type \"com.apple.application-bundle\" without showing package contents and invisibles)\n end if\nend if\t\n\n-- now only check whether the path is really from [PRODUCTNAME]\ntry\n\tdo shell script \"grep '<string>[PRODUCTNAME] [PRODUCTVERSION]' \" & quoted form of (choice as string) & \"\/Contents\/Info.plist\"\non error\n\tdisplay dialog (choice as string) & appInvalid buttons {InstallLabel} default button 1 with icon 0\n\treturn 3 --wrong target-directory\nend try\n\n(*\ndisplay dialog startInstall buttons {AbortLabel, InstallLabel} default button 2\n\nif (button returned of result) is AbortLabel then\n\treturn 2\nend if\n*)\n\nset tarCommand to \"\/usr\/bin\/tar -C \" & quoted form of (choice as string) & \" -xjf \" & quoted form of sourcedir & \"\/tarball.tar.bz2\"\ntry\n\tdo shell script tarCommand\n\t\non error errMSG number errNUM\n\tdisplay dialog IdentifyQ buttons {IdentifyYES, IdentifyNO} with icon 2\n\tif (button returned of result) is IdentifyYES then\n\t\ttry\n\t\t\tdo shell script tarCommand with administrator privileges\n\t\ton error errMSG number errNUM\n\t\t\tdisplay dialog installFailed buttons {OKLabel} default button 1 with icon 0\n\t\t\t-- -60005 username\/password wrong\n\t\t\t-- -128 aborted by user\n\t\t\t-- 2 error from tar - tarball not found (easy to test)\n\t\t\treturn errNUM\n\t\tend try\n\telse\n\t\treturn 2 -- aborted by user\n\tend if\nend try\n\ndisplay dialog installComplete buttons {OKLabel} default button 1\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"0f6090c80ad0645b7eab9990d82a96810f8c8080","subject":"Updated BBEdit script to reflect latest changes.","message":"Updated BBEdit script to reflect latest changes.\n\nSent in by Andreas Schneider.\n","repos":"bitwiseman\/js-beautify,foreni-packages\/js-beautify,J2TeaM\/js-beautify,beautify-web\/js-beautify,BobJavascript\/js-beautify,aecepoglu\/js-beautify,glennimoss\/js-beautify,timothyeburke\/js-beautify,foreni-packages\/js-beautify,jaichandra\/js-beautify,Infocatcher\/js-beautify,melck\/js-beautify,goelmo\/js-beautify,gujiman\/js-beautify,wodim\/js-beautify,AmesianX\/js-beautify,evocateur\/js-beautify,ephox-luke\/js-beautify,tmarchant\/js-beautify,foreni-packages\/js-beautify,FezVrasta\/js-beautify,J2TeaM\/js-beautify,Coburn37\/js-beautify,olsonpm\/js-beautify,BobJavascript\/js-beautify,bitwiseman\/js-beautify,timothyeburke\/js-beautify,odetinin\/Pretty-Code,goelmo\/js-beautify,glennimoss\/js-beautify,wodim\/js-beautify,jaichandra\/js-beautify,ephox-luke\/js-beautify,aecepoglu\/js-beautify,olsonpm\/js-beautify,jaichandra\/js-beautify,blackmiaool\/js-beautify,gujiman\/js-beautify,gujiman\/js-beautify,beautify-web\/js-beautify,AmesianX\/js-beautify,dinesh-it\/js-beautify-old,mmsqe\/js-beautify,BobJavascript\/js-beautify,timothyeburke\/js-beautify,mmsqe\/js-beautify,goelmo\/js-beautify,mmsqe\/js-beautify,evocateur\/js-beautify,glennimoss\/js-beautify,bitwiseman\/js-beautify,eric6356\/js-beautify,aecepoglu\/js-beautify,dinesh-it\/js-beautify-old,eric6356\/js-beautify,AmesianX\/js-beautify,blackmiaool\/js-beautify,amacdougall\/js-beautify,Coburn37\/js-beautify,beautify-web\/js-beautify,evocateur\/js-beautify,beautify-web\/js-beautify,wodim\/js-beautify,melck\/js-beautify,eric6356\/js-beautify,olsonpm\/js-beautify,Infocatcher\/js-beautify,Coburn37\/js-beautify,odetinin\/Pretty-Code,amacdougall\/js-beautify,blackmiaool\/js-beautify,AmesianX\/js-beautify,J2TeaM\/js-beautify,timothyeburke\/js-beautify,olsonpm\/js-beautify,ddunlop\/js-beautify-node,dinesh-it\/js-beautify-old,tmarchant\/js-beautify,melck\/js-beautify,ephox-luke\/js-beautify,foreni-packages\/js-beautify,melck\/js-beautify,gujiman\/js-beautify,BobJavascript\/js-beautify,wodim\/js-beautify,mmsqe\/js-beautify,Infocatcher\/js-beautify,aecepoglu\/js-beautify,Infocatcher\/js-beautify,glennimoss\/js-beautify,goelmo\/js-beautify,tmarchant\/js-beautify,amacdougall\/js-beautify,odetinin\/Pretty-Code,FezVrasta\/js-beautify,Coburn37\/js-beautify,bitwiseman\/js-beautify,FezVrasta\/js-beautify,ephox-luke\/js-beautify,tmarchant\/js-beautify,jaichandra\/js-beautify,J2TeaM\/js-beautify,blackmiaool\/js-beautify,eric6356\/js-beautify,amacdougall\/js-beautify","old_file":"bbedit\/jsBeautify_BBED.scpt","new_file":"bbedit\/jsBeautify_BBED.scpt","new_contents":"\/* 20090220, as\n\nthe javascript functions are from:\n\n JS Beautifier\n---------------\n\n\n Written by Einar Lielmanis, <einars@gmail.com>\n http:\/\/jsbeautifier.org\/\n\n Originally converted to javascript by Vital, <vital76@gmail.com>\n\n You are free to use this in any way you want, in case you find this useful or working for you.\n\n Usage:\n js_beautify(js_source_text);\n js_beautify(js_source_text, options);\n\n The options are:\n indent_size (default 4) \u2014 indentation size,\n indent_char (default space) \u2014 character to indent with,\n preserve_newlines (default true) \u2014 whether existing line breaks should be preserved,\n indent_level (default 0) \u2014 initial indentation level, you probably won't need this ever,\n\n e.g\n\n js_beautify(js_source_text, {indent_size: 1, indent_char: '\\t'});\n\n\n*\/\n\n\nvar sourceWindow, sourceText, beautifiedText, SelectionFlag\nBBEdit = MacOS.appBySignature(\"R*ch\");\nBBEdit._strict = false;\n\ntry {\n sourceWindow = BBEdit.window[1];\n sourceText = sourceWindow.selection.contents;\n SelectionFlag = true;\n if (sourceText == \"\") {\n sourceText = sourceWindow.text;\n SelectionFlag = false;\n }\n if (sourceText != \"\") {\n beautifiedText = js_beautify(sourceText, {indent_size: 4, indent_char: ' ', indent_level: 0}); \n if (SelectionFlag) {\n sourceWindow.selection.contents = beautifiedText;\n } else {\n sourceWindow.text = beautifiedText;\n }\n }\n} catch(what) {\n Core.message(what.toString())\n}\n\nfunction js_beautify(js_source_text, options) {\n var input, output, token_text, last_type, last_text, last_word, current_mode, modes, indent_string;\n var whitespace, wordchar, punct, parser_pos, line_starters, in_case;\n var prefix, token_type, do_block_just_closed, var_line, var_line_tainted, if_line_flag;\n var indent_level;\n var options = options || {};\n var opt_indent_size = options['indent_size'] || 4;\n var opt_indent_char = options['indent_char'] || ' ';\n var opt_preserve_newlines = typeof options['preserve_newlines'] === 'undefined' ? true: options['preserve_newlines'];\n var opt_indent_level = options['indent_level'] || 0; \/\/ starting indentation\n function trim_output() {\n while (output.length && (output[output.length - 1] === ' ' || output[output.length - 1] === indent_string)) {\n output.pop();\n }\n }\n function print_newline(ignore_repeated) {\n ignore_repeated = typeof ignore_repeated === 'undefined' ? true: ignore_repeated;\n if_line_flag = false;\n trim_output();\n if (!output.length) {\n return; \/\/ no newline on start of file\n }\n if (output[output.length - 1] !== \"\\n\" || !ignore_repeated) {\n output.push(\"\\n\");\n }\n for (var i = 0; i < indent_level; i++) {\n output.push(indent_string);\n }\n }\n function print_space() {\n var last_output = output.length ? output[output.length - 1] : ' ';\n if (last_output !== ' ' && last_output !== '\\n' && last_output !== indent_string) { \/\/ prevent occassional duplicate space\n output.push(' ');\n }\n }\n function print_token() {\n output.push(token_text);\n }\n function indent() {\n indent_level++;\n }\n function unindent() {\n if (indent_level) {\n indent_level--;\n }\n }\n function remove_indent() {\n if (output.length && output[output.length - 1] === indent_string) {\n output.pop();\n }\n }\n function set_mode(mode) {\n modes.push(current_mode);\n current_mode = mode;\n }\n function restore_mode() {\n do_block_just_closed = current_mode === 'DO_BLOCK';\n current_mode = modes.pop();\n }\n function in_array(what, arr) {\n for (var i = 0; i < arr.length; i++) {\n if (arr[i] === what) {\n return true;\n }\n }\n return false;\n }\n function get_next_token() {\n var n_newlines = 0;\n var c = '';\n do {\n if (parser_pos >= input.length) {\n return ['', 'TK_EOF'];\n }\n c = input.charAt(parser_pos);\n parser_pos += 1;\n if (c === \"\\n\") {\n n_newlines += 1;\n }\n } while ( in_array ( c , whitespace ));\n var wanted_newline = false;\n if (opt_preserve_newlines) {\n if (n_newlines > 1) {\n for (var i = 0; i < 2; i++) {\n print_newline(i === 0);\n }\n }\n wanted_newline = (n_newlines === 1);\n }\n if (in_array(c, wordchar)) {\n if (parser_pos < input.length) {\n while (in_array(input.charAt(parser_pos), wordchar)) {\n c += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos === input.length) {\n break;\n }\n }\n } \/\/ small and surprisingly unugly hack for 1E-10 representation\n if (parser_pos !== input.length && c.match(\/^[0-9]+[Ee]$\/) && input.charAt(parser_pos) === '-') {\n parser_pos += 1;\n var t = get_next_token(parser_pos);\n c += '-' + t[0];\n return [c, 'TK_WORD'];\n }\n if (c === 'in') { \/\/ hack for 'in' operator\n return [c, 'TK_OPERATOR'];\n }\n if (wanted_newline && last_type !== 'TK_OPERATOR' && !if_line_flag) {\n print_newline();\n }\n return [c, 'TK_WORD'];\n }\n if (c === '(' || c === '[') {\n return [c, 'TK_START_EXPR'];\n }\n if (c === ')' || c === ']') {\n return [c, 'TK_END_EXPR'];\n }\n if (c === '{') {\n return [c, 'TK_START_BLOCK'];\n }\n if (c === '}') {\n return [c, 'TK_END_BLOCK'];\n }\n if (c === ';') {\n return [c, 'TK_SEMICOLON'];\n }\n if (c === '\/') {\n var comment = ''; \/\/ peek for comment \/* ... *\/\n if (input.charAt(parser_pos) === '*') {\n parser_pos += 1;\n if (parser_pos < input.length) {\n while (! (input.charAt(parser_pos) === '*' && input.charAt(parser_pos + 1) && input.charAt(parser_pos + 1) === '\/') && parser_pos < input.length) {\n comment += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n }\n parser_pos += 2;\n return ['\/*' + comment + '*\/', 'TK_BLOCK_COMMENT'];\n } \/\/ peek for comment \/\/ ...\n if (input.charAt(parser_pos) === '\/') {\n comment = c;\n while (input.charAt(parser_pos) !== \"\\x0d\" && input.charAt(parser_pos) !== \"\\x0a\") {\n comment += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n parser_pos += 1;\n if (wanted_newline) {\n print_newline();\n }\n return [comment, 'TK_COMMENT'];\n }\n }\n if (c === \"'\" || \/\/ string\n c === '\"' || \/\/ string\n (c === '\/' && ((last_type === 'TK_WORD' && last_text === 'return') || (last_type === 'TK_START_EXPR' || last_type === 'TK_END_BLOCK' || last_type === 'TK_OPERATOR' || last_type === 'TK_EOF' || last_type === 'TK_SEMICOLON')))) { \/\/ regexp\n var sep = c;\n var esc = false;\n var resulting_string = '';\n if (parser_pos < input.length) {\n while (esc || input.charAt(parser_pos) !== sep) {\n resulting_string += input.charAt(parser_pos);\n if (!esc) {\n esc = input.charAt(parser_pos) === '\\\\';\n } else {\n esc = false;\n }\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n }\n parser_pos += 1;\n resulting_string = sep + resulting_string + sep;\n if (sep == '\/') { \/\/ regexps may have modifiers \/regexp\/MOD , so fetch those, too\n while (parser_pos < input.length && in_array(input.charAt(parser_pos), wordchar)) {\n resulting_string += input.charAt(parser_pos);\n parser_pos += 1;\n }\n }\n return [resulting_string, 'TK_STRING'];\n }\n if (in_array(c, punct)) {\n while (parser_pos < input.length && in_array(c + input.charAt(parser_pos), punct)) {\n c += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n return [c, 'TK_OPERATOR'];\n }\n return [c, 'TK_UNKNOWN'];\n } \/\/----------------------------------\n indent_string = '';\n while (opt_indent_size--) {\n indent_string += opt_indent_char;\n }\n indent_level = opt_indent_level;\n input = js_source_text;\n last_word = ''; \/\/ last 'TK_WORD' passed\n last_type = 'TK_START_EXPR'; \/\/ last token type\n last_text = ''; \/\/ last token text\n output = [];\n do_block_just_closed = false;\n var_line = false; \/\/ currently drawing var .... ;\n var_line_tainted = false; \/\/ false: var a = 5; true: var a = 5, b = 6\n whitespace = \"\\n\\r\\t \".split('');\n wordchar = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$'.split('');\n punct = '+ - * \/ % & ++ -- = += -= *= \/= %= == === != !== > < >= <= >> << >>> >>>= >>= <<= && &= | || ! !! , : ? ^ ^= |= ::'.split(' '); \/\/ words which should always start on new line.\n line_starters = 'continue,try,throw,return,var,if,switch,case,default,for,while,break,function'.split(','); \/\/ states showing if we are currently in expression (i.e. \"if\" case) - 'EXPRESSION', or in usual block (like, procedure), 'BLOCK'.\n \/\/ some formatting depends on that.\n current_mode = 'BLOCK';\n modes = [current_mode];\n parser_pos = 0;\n in_case = false; \/\/ flag for parser that case\/default has been processed, and next colon needs special attention\n while (true) {\n var t = get_next_token(parser_pos);\n token_text = t[0];\n token_type = t[1];\n if (token_type === 'TK_EOF') {\n break;\n }\n switch (token_type) {\n case 'TK_START_EXPR':\n var_line = false;\n set_mode('EXPRESSION');\n if (last_text === ';') {\n print_newline();\n } else if (last_type === 'TK_END_EXPR' || last_type === 'TK_START_EXPR') { \/\/ do nothing on (( and )( and ][ and ]( ..\n } else if (last_type !== 'TK_WORD' && last_type !== 'TK_OPERATOR') {\n print_space();\n } else if (in_array(last_word, line_starters) && last_word !== 'function') {\n print_space();\n }\n print_token();\n break;\n case 'TK_END_EXPR':\n print_token();\n restore_mode();\n break;\n case 'TK_START_BLOCK':\n if (last_word === 'do') {\n set_mode('DO_BLOCK');\n } else {\n set_mode('BLOCK');\n }\n if (last_type !== 'TK_OPERATOR' && last_type !== 'TK_START_EXPR') {\n if (last_type === 'TK_START_BLOCK') {\n print_newline();\n } else {\n print_space();\n }\n }\n print_token();\n indent();\n break;\n case 'TK_END_BLOCK':\n if (last_type === 'TK_START_BLOCK') { \/\/ nothing\n trim_output();\n unindent();\n } else {\n unindent();\n print_newline();\n }\n print_token();\n restore_mode();\n break;\n case 'TK_WORD':\n if (do_block_just_closed) {\n print_space();\n print_token();\n print_space();\n break;\n }\n if (token_text === 'case' || token_text === 'default') {\n if (last_text === ':') { \/\/ switch cases following one another\n remove_indent();\n } else { \/\/ case statement starts in the same line where switch\n unindent();\n print_newline();\n indent();\n }\n print_token();\n in_case = true;\n break;\n }\n prefix = 'NONE';\n if (last_type === 'TK_END_BLOCK') {\n if (!in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {\n prefix = 'NEWLINE';\n } else {\n prefix = 'SPACE';\n print_space();\n }\n } else if (last_type === 'TK_SEMICOLON' && (current_mode === 'BLOCK' || current_mode === 'DO_BLOCK')) {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_SEMICOLON' && current_mode === 'EXPRESSION') {\n prefix = 'SPACE';\n } else if (last_type === 'TK_STRING') {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_WORD') {\n prefix = 'SPACE';\n } else if (last_type === 'TK_START_BLOCK') {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_END_EXPR') {\n print_space();\n prefix = 'NEWLINE';\n }\n if (last_type !== 'TK_END_BLOCK' && in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {\n print_newline();\n } else if (in_array(token_text, line_starters) || prefix === 'NEWLINE') {\n if (last_text === 'else') { \/\/ no need to force newline on else break\n print_space();\n } else if ((last_type === 'TK_START_EXPR' || last_text === '=') && token_text === 'function') { \/\/ no need to force newline on 'function': (function\n \/\/ DONOTHING\n } else if (last_type === 'TK_WORD' && (last_text === 'return' || last_text === 'throw')) { \/\/ no newline between 'return nnn'\n print_space();\n } else if (last_type !== 'TK_END_EXPR') {\n if ((last_type !== 'TK_START_EXPR' || token_text !== 'var') && last_text !== ':') { \/\/ no need to force newline on 'var': for (var x = 0...)\n if (token_text === 'if' && last_type === 'TK_WORD' && last_word === 'else') { \/\/ no newline for } else if {\n print_space();\n } else {\n print_newline();\n }\n }\n } else {\n if (in_array(token_text, line_starters) && last_text !== ')') {\n print_newline();\n }\n }\n } else if (prefix === 'SPACE') {\n print_space();\n }\n print_token();\n last_word = token_text;\n if (token_text === 'var') {\n var_line = true;\n var_line_tainted = false;\n }\n if (token_text === 'if' || token_text === 'else') {\n if_line_flag = true;\n }\n break;\n case 'TK_SEMICOLON':\n print_token();\n var_line = false;\n break;\n case 'TK_STRING':\n if (last_type === 'TK_START_BLOCK' || last_type === 'TK_END_BLOCK' || last_type == 'TK_SEMICOLON') {\n print_newline();\n } else if (last_type === 'TK_WORD') {\n print_space();\n }\n print_token();\n break;\n case 'TK_OPERATOR':\n var start_delim = true;\n var end_delim = true;\n if (var_line && token_text !== ',') {\n var_line_tainted = true;\n if (token_text === ':') {\n var_line = false;\n }\n }\n if (var_line && token_text === ',' && current_mode === 'EXPRESSION') { \/\/ do not break on comma, for(var a = 1, b = 2)\n var_line_tainted = false;\n }\n if (token_text === ':' && in_case) {\n print_token(); \/\/ colon really asks for separate treatment\n print_newline();\n break;\n }\n if (token_text === '::') { \/\/ no spaces around exotic namespacing syntax operator\n print_token();\n break;\n }\n in_case = false;\n if (token_text === ',') {\n if (var_line) {\n if (var_line_tainted) {\n print_token();\n print_newline();\n var_line_tainted = false;\n } else {\n print_token();\n print_space();\n }\n } else if (last_type === 'TK_END_BLOCK') {\n print_token();\n print_newline();\n } else {\n if (current_mode === 'BLOCK') {\n print_token();\n print_newline();\n } else { \/\/ EXPR od DO_BLOCK\n print_token();\n print_space();\n }\n }\n break;\n } else if (token_text === '--' || token_text === '++') { \/\/ unary operators special case\n if (last_text === ';') { \/\/ space for (;; ++i)\n start_delim = true;\n end_delim = false;\n } else {\n start_delim = false;\n end_delim = false;\n }\n } else if (token_text === '!' && last_type === 'TK_START_EXPR') { \/\/ special case handling: if (!a)\n start_delim = false;\n end_delim = false;\n } else if (last_type === 'TK_OPERATOR') {\n start_delim = false;\n end_delim = false;\n } else if (last_type === 'TK_END_EXPR') {\n start_delim = true;\n end_delim = true;\n } else if (token_text === '.') { \/\/ decimal digits or object.property\n start_delim = false;\n end_delim = false;\n } else if (token_text === ':') { \/\/ zz: xx\n \/\/ can't differentiate ternary op, so for now it's a ? b: c; without space before colon\n if (last_text.match(\/^\\d+$\/)) { \/\/ a little help for ternary a ? 1 : 0;\n start_delim = true;\n } else {\n start_delim = false;\n }\n }\n if (start_delim) {\n print_space();\n }\n print_token();\n if (end_delim) {\n print_space();\n }\n break;\n case 'TK_BLOCK_COMMENT':\n print_newline();\n print_token();\n print_newline();\n break;\n case 'TK_COMMENT':\n \/\/ print_newline();\n print_space();\n print_token();\n print_newline();\n break;\n case 'TK_UNKNOWN':\n print_token();\n break;\n }\n last_type = token_type;\n last_text = token_text;\n }\n return output.join('');\n}MARK1.00\u001f\u0000\u0002\u0000ANYAJscr\u0000\u0001\u0000\f\u07ad","old_contents":"\/* 20090214, as\n\nthe javascript functions are from:\n\n JS Beautifier\n---------------\n $Date$\n $Revision$\n\n\n Written by Einars Lielmanis, <einars@gmail.com>\n http:\/\/elfz.laacz.lv\/beautify\/\n\n Originally converted to javascript by Vital, <vital76@gmail.com>\n http:\/\/my.opera.com\/Vital\/blog\/2007\/11\/21\/javascript-beautify-on-javascript-translated\n\n\n You are free to use this in any way you want, in case you find this useful or working for you.\n\n Usage:\n js_beautify(js_source_text);\n js_beautify(js_source_text, options);\n\n The options are:\n indent_size (default 4) \u201a\u00c4\u00ee indentation size,\n indent_char (default space) \u201a\u00c4\u00ee character to indent with,\n preserve_newlines (default true) \u201a\u00c4\u00ee whether existing line breaks should be preserved,\n indent_level (default 0) \u201a\u00c4\u00ee initial indentation level, you probably won't need this ever,\n\n e.g\n\n js_beautify(js_source_text, {indent_size: 1, indent_char: '\\t'});\n\n\n*\/\n\nvar sourceWindow, sourceText, beautifiedText, SelectionFlag\nBBEdit = MacOS.appBySignature(\"R*ch\");\nBBEdit._strict = false;\n\ntry {\n sourceWindow = BBEdit.window[1];\n sourceText = sourceWindow.selection.contents;\n SelectionFlag = true;\n if (sourceText == \"\") {\n sourceText = sourceWindow.text;\n SelectionFlag = false;\n }\n if (sourceText != \"\") {\n beautifiedText = js_beautify(sourceText, {indent_size: 4, indent_char: ' ', indent_level: 0}); \n if (SelectionFlag) {\n sourceWindow.selection.contents = beautifiedText;\n } else {\n sourceWindow.text = beautifiedText;\n }\n }\n} catch(what) {\n Core.message(what.toString())\n}\n\nfunction js_beautify(js_source_text, options)\n{\n\n var input, output, token_text, last_type, last_text, last_word, current_mode, modes, indent_string;\n var whitespace, wordchar, punct, parser_pos, line_starters, in_case;\n var prefix, token_type, do_block_just_closed, var_line, var_line_tainted, if_line_flag;\n var indent_level;\n\n\n var options = options || {};\n var opt_indent_size = options['indent_size'] || 4;\n var opt_indent_char = options['indent_char'] || ' ';\n var opt_preserve_newlines =\n typeof options['preserve_newlines'] === 'undefined' ? true : options['preserve_newlines'];\n var opt_indent_level = options['indent_level'] || 0; \/\/ starting indentation\n\n\n function trim_output()\n {\n while (output.length && (output[output.length - 1] === ' ' || output[output.length - 1] === indent_string)) {\n output.pop();\n }\n }\n\n function print_newline(ignore_repeated)\n {\n\n ignore_repeated = typeof ignore_repeated === 'undefined' ? true: ignore_repeated;\n\n if_line_flag = false;\n trim_output();\n\n if (!output.length) {\n return; \/\/ no newline on start of file\n }\n\n if (output[output.length - 1] !== \"\\n\" || !ignore_repeated) {\n output.push(\"\\n\");\n }\n for (var i = 0; i < indent_level; i++) {\n output.push(indent_string);\n }\n }\n\n\n\n function print_space()\n {\n var last_output = output.length ? output[output.length - 1] : ' ';\n if (last_output !== ' ' && last_output !== '\\n' && last_output !== indent_string) { \/\/ prevent occassional duplicate space\n output.push(' ');\n }\n }\n\n\n function print_token()\n {\n output.push(token_text);\n }\n\n function indent()\n {\n indent_level++;\n }\n\n\n function unindent()\n {\n if (indent_level) {\n indent_level--;\n }\n }\n\n\n function remove_indent()\n {\n if (output.length && output[output.length - 1] === indent_string) {\n output.pop();\n }\n }\n\n\n function set_mode(mode)\n {\n modes.push(current_mode);\n current_mode = mode;\n }\n\n\n function restore_mode()\n {\n do_block_just_closed = current_mode === 'DO_BLOCK';\n current_mode = modes.pop();\n }\n\n\n function in_array(what, arr)\n {\n for (var i = 0; i < arr.length; i++)\n {\n if (arr[i] === what) {\n return true;\n }\n }\n return false;\n }\n\n\n\n function get_next_token()\n {\n var n_newlines = 0;\n var c = '';\n\n do {\n if (parser_pos >= input.length) {\n return ['', 'TK_EOF'];\n }\n c = input.charAt(parser_pos);\n\n parser_pos += 1;\n if (c === \"\\n\") {\n n_newlines += 1;\n }\n }\n while (in_array(c, whitespace));\n\n var wanted_newline = false;\n\n if (opt_preserve_newlines) {\n if (n_newlines > 1) {\n for (var i = 0; i < 2; i++) {\n print_newline(i === 0);\n }\n }\n wanted_newline = (n_newlines === 1);\n }\n\n\n if (in_array(c, wordchar)) {\n if (parser_pos < input.length) {\n while (in_array(input.charAt(parser_pos), wordchar)) {\n c += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos === input.length) {\n break;\n }\n }\n }\n\n \/\/ small and surprisingly unugly hack for 1E-10 representation\n if (parser_pos !== input.length && c.match(\/^[0-9]+[Ee]$\/) && input.charAt(parser_pos) === '-') {\n parser_pos += 1;\n\n var t = get_next_token(parser_pos);\n c += '-' + t[0];\n return [c, 'TK_WORD'];\n }\n\n if (c === 'in') { \/\/ hack for 'in' operator\n return [c, 'TK_OPERATOR'];\n }\n if (wanted_newline && last_type !== 'TK_OPERATOR' && !if_line_flag) {\n print_newline();\n }\n return [c, 'TK_WORD'];\n }\n\n if (c === '(' || c === '[') {\n return [c, 'TK_START_EXPR'];\n }\n\n if (c === ')' || c === ']') {\n return [c, 'TK_END_EXPR'];\n }\n\n if (c === '{') {\n return [c, 'TK_START_BLOCK'];\n }\n\n if (c === '}') {\n return [c, 'TK_END_BLOCK'];\n }\n\n if (c === ';') {\n return [c, 'TK_SEMICOLON'];\n }\n\n if (c === '\/') {\n var comment = '';\n \/\/ peek for comment \/* ... *\/\n if (input.charAt(parser_pos) === '*') {\n parser_pos += 1;\n if (parser_pos < input.length) {\n while (! (input.charAt(parser_pos) === '*' && input.charAt(parser_pos + 1) && input.charAt(parser_pos + 1) === '\/') && parser_pos < input.length) {\n comment += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n }\n parser_pos += 2;\n return ['\/*' + comment + '*\/', 'TK_BLOCK_COMMENT'];\n }\n \/\/ peek for comment \/\/ ...\n if (input.charAt(parser_pos) === '\/') {\n comment = c;\n while (input.charAt(parser_pos) !== \"\\x0d\" && input.charAt(parser_pos) !== \"\\x0a\") {\n comment += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n parser_pos += 1;\n if (wanted_newline) {\n print_newline();\n }\n return [comment, 'TK_COMMENT'];\n }\n\n }\n\n if (c === \"'\" || \/\/ string\n c === '\"' || \/\/ string\n (c === '\/' &&\n ((last_type === 'TK_WORD' && last_text === 'return') || (last_type === 'TK_START_EXPR' || last_type === 'TK_END_BLOCK' || last_type === 'TK_OPERATOR' || last_type === 'TK_EOF' || last_type === 'TK_SEMICOLON')))) { \/\/ regexp\n var sep = c;\n var esc = false;\n var resulting_string = '';\n\n if (parser_pos < input.length) {\n\n while (esc || input.charAt(parser_pos) !== sep) {\n resulting_string += input.charAt(parser_pos);\n if (!esc) {\n esc = input.charAt(parser_pos) === '\\\\';\n } else {\n esc = false;\n }\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n\n }\n\n parser_pos += 1;\n\n resulting_string = sep + resulting_string + sep;\n\n if (sep == '\/') {\n \/\/ regexps may have modifiers \/regexp\/MOD , so fetch those, too\n while (parser_pos < input.length && in_array(input.charAt(parser_pos), wordchar)) {\n resulting_string += input.charAt(parser_pos);\n parser_pos += 1;\n }\n }\n return [resulting_string, 'TK_STRING'];\n }\n\n if (in_array(c, punct)) {\n while (parser_pos < input.length && in_array(c + input.charAt(parser_pos), punct)) {\n c += input.charAt(parser_pos);\n parser_pos += 1;\n if (parser_pos >= input.length) {\n break;\n }\n }\n return [c, 'TK_OPERATOR'];\n }\n\n return [c, 'TK_UNKNOWN'];\n }\n\n\n \/\/----------------------------------\n\n indent_string = '';\n while (opt_indent_size--) {\n indent_string += opt_indent_char;\n }\n\n indent_level = opt_indent_level;\n\n input = js_source_text;\n\n last_word = ''; \/\/ last 'TK_WORD' passed\n last_type = 'TK_START_EXPR'; \/\/ last token type\n last_text = ''; \/\/ last token text\n output = [];\n\n do_block_just_closed = false;\n var_line = false; \/\/ currently drawing var .... ;\n var_line_tainted = false; \/\/ false: var a = 5; true: var a = 5, b = 6\n\n whitespace = \"\\n\\r\\t \".split('');\n wordchar = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$'.split('');\n punct = '+ - * \/ % & ++ -- = += -= *= \/= %= == === != !== > < >= <= >> << >>> >>>= >>= <<= && &= | || ! !! , : ? ^ ^= |= ::'.split(' ');\n\n \/\/ words which should always start on new line.\n line_starters = 'continue,try,throw,return,var,if,switch,case,default,for,while,break,function'.split(',');\n\n \/\/ states showing if we are currently in expression (i.e. \"if\" case) - 'EXPRESSION', or in usual block (like, procedure), 'BLOCK'.\n \/\/ some formatting depends on that.\n current_mode = 'BLOCK';\n modes = [current_mode];\n\n parser_pos = 0;\n in_case = false; \/\/ flag for parser that case\/default has been processed, and next colon needs special attention\n while (true) {\n var t = get_next_token(parser_pos);\n token_text = t[0];\n token_type = t[1];\n if (token_type === 'TK_EOF') {\n break;\n }\n\n switch (token_type) {\n\n case 'TK_START_EXPR':\n var_line = false;\n set_mode('EXPRESSION');\n if (last_text === ';') {\n print_newline();\n } else if (last_type === 'TK_END_EXPR' || last_type === 'TK_START_EXPR') {\n \/\/ do nothing on (( and )( and ][ and ]( ..\n } else if (last_type !== 'TK_WORD' && last_type !== 'TK_OPERATOR') {\n print_space();\n } else if (in_array(last_word, line_starters) && last_word !== 'function') {\n print_space();\n }\n print_token();\n break;\n\n case 'TK_END_EXPR':\n print_token();\n restore_mode();\n break;\n\n case 'TK_START_BLOCK':\n\n if (last_word === 'do') {\n set_mode('DO_BLOCK');\n } else {\n set_mode('BLOCK');\n }\n if (last_type !== 'TK_OPERATOR' && last_type !== 'TK_START_EXPR') {\n if (last_type === 'TK_START_BLOCK') {\n print_newline();\n } else {\n print_space();\n }\n }\n print_token();\n indent();\n break;\n\n case 'TK_END_BLOCK':\n if (last_type === 'TK_START_BLOCK') {\n \/\/ nothing\n trim_output();\n unindent();\n } else {\n unindent();\n print_newline();\n }\n print_token();\n restore_mode();\n break;\n\n case 'TK_WORD':\n\n if (do_block_just_closed) {\n print_space();\n print_token();\n print_space();\n break;\n }\n\n if (token_text === 'case' || token_text === 'default') {\n if (last_text === ':') {\n \/\/ switch cases following one another\n remove_indent();\n } else {\n \/\/ case statement starts in the same line where switch\n unindent();\n print_newline();\n indent();\n }\n print_token();\n in_case = true;\n break;\n }\n\n prefix = 'NONE';\n if (last_type === 'TK_END_BLOCK') {\n if (!in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {\n prefix = 'NEWLINE';\n } else {\n prefix = 'SPACE';\n print_space();\n }\n } else if (last_type === 'TK_SEMICOLON' && (current_mode === 'BLOCK' || current_mode === 'DO_BLOCK')) {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_SEMICOLON' && current_mode === 'EXPRESSION') {\n prefix = 'SPACE';\n } else if (last_type === 'TK_STRING') {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_WORD') {\n prefix = 'SPACE';\n } else if (last_type === 'TK_START_BLOCK') {\n prefix = 'NEWLINE';\n } else if (last_type === 'TK_END_EXPR') {\n print_space();\n prefix = 'NEWLINE';\n }\n\n if (last_type !== 'TK_END_BLOCK' && in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {\n print_newline();\n } else if (in_array(token_text, line_starters) || prefix === 'NEWLINE') {\n if (last_text === 'else') {\n \/\/ no need to force newline on else break\n print_space();\n } else if ((last_type === 'TK_START_EXPR' || last_text === '=') && token_text === 'function') {\n \/\/ no need to force newline on 'function': (function\n \/\/ DONOTHING\n } else if (last_type === 'TK_WORD' && (last_text === 'return' || last_text === 'throw')) {\n \/\/ no newline between 'return nnn'\n print_space();\n } else if (last_type !== 'TK_END_EXPR') {\n if ((last_type !== 'TK_START_EXPR' || token_text !== 'var') && last_text !== ':') {\n \/\/ no need to force newline on 'var': for (var x = 0...)\n if (token_text === 'if' && last_type === 'TK_WORD' && last_word === 'else') {\n \/\/ no newline for } else if {\n print_space();\n } else {\n print_newline();\n }\n }\n } else {\n if (in_array(token_text, line_starters) && last_text !== ')') {\n print_newline();\n }\n }\n } else if (prefix === 'SPACE') {\n print_space();\n }\n print_token();\n last_word = token_text;\n\n if (token_text === 'var') {\n var_line = true;\n var_line_tainted = false;\n }\n\n if (token_text === 'if' || token_text === 'else') {\n if_line_flag = true;\n }\n\n break;\n\n case 'TK_SEMICOLON':\n\n print_token();\n var_line = false;\n break;\n\n case 'TK_STRING':\n\n if (last_type === 'TK_START_BLOCK' || last_type === 'TK_END_BLOCK' || last_type == 'TK_SEMICOLON') {\n print_newline();\n } else if (last_type === 'TK_WORD') {\n print_space();\n }\n print_token();\n break;\n\n case 'TK_OPERATOR':\n\n var start_delim = true;\n var end_delim = true;\n if (var_line && token_text !== ',') {\n var_line_tainted = true;\n if (token_text === ':') {\n var_line = false;\n }\n }\n\n if (token_text === ':' && in_case) {\n print_token(); \/\/ colon really asks for separate treatment\n print_newline();\n break;\n }\n\n if (token_text === '::') {\n \/\/ no spaces around exotic namespacing syntax operator\n print_token();\n break;\n }\n\n in_case = false;\n\n if (token_text === ',') {\n if (var_line) {\n if (var_line_tainted) {\n print_token();\n print_newline();\n var_line_tainted = false;\n } else {\n print_token();\n print_space();\n }\n } else if (last_type === 'TK_END_BLOCK') {\n print_token();\n print_newline();\n } else {\n if (current_mode === 'BLOCK') {\n print_token();\n print_newline();\n } else {\n \/\/ EXPR od DO_BLOCK\n print_token();\n print_space();\n }\n }\n break;\n } else if (token_text === '--' || token_text === '++') { \/\/ unary operators special case\n if (last_text === ';') {\n \/\/ space for (;; ++i)\n start_delim = true;\n end_delim = false;\n } else {\n start_delim = false;\n end_delim = false;\n }\n } else if (token_text === '!' && last_type === 'TK_START_EXPR') {\n \/\/ special case handling: if (!a)\n start_delim = false;\n end_delim = false;\n } else if (last_type === 'TK_OPERATOR') {\n start_delim = false;\n end_delim = false;\n } else if (last_type === 'TK_END_EXPR') {\n start_delim = true;\n end_delim = true;\n } else if (token_text === '.') {\n \/\/ decimal digits or object.property\n start_delim = false;\n end_delim = false;\n\n } else if (token_text === ':') {\n \/\/ zz: xx\n \/\/ can't differentiate ternary op, so for now it's a ? b: c; without space before colon\n if (last_text.match(\/^\\d+$\/)) {\n \/\/ a little help for ternary a ? 1 : 0;\n start_delim = true;\n } else {\n start_delim = false;\n }\n }\n if (start_delim) {\n print_space();\n }\n\n print_token();\n\n if (end_delim) {\n print_space();\n }\n break;\n\n case 'TK_BLOCK_COMMENT':\n\n print_newline();\n print_token();\n print_newline();\n break;\n\n case 'TK_COMMENT':\n\n \/\/ print_newline();\n print_space();\n print_token();\n print_newline();\n break;\n\n case 'TK_UNKNOWN':\n print_token();\n break;\n }\n\n last_type = token_type;\n last_text = token_text;\n }\n\n return output.join('');\n\n}MARK1.00\u001f\u0000\u0000\u0000ANYAJscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ea71ca4ae15b51b6651c32e67b3ffe63828d1f70","subject":"prettifyXML 1.6 - skip layout objects, use xmllint instead of tidy","message":"prettifyXML 1.6 - skip layout objects, use xmllint instead of tidy\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using xmllint *)\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | xmllint --format -\"\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.5, Daniel A. Shockley\n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.5, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\tset tidyShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\tset prettyXML to do shell script tidyShellCommand\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e3623cfcf28cb4794cd6b27f6c44d9faaa0b644f","subject":"fixed typo in comment","message":"fixed typo in comment\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/displayFileMakerWindow.applescript","new_file":"library\/fmGUI_Database\/displayFileMakerWindow.applescript","new_contents":"-- displayFileMakerWindow({windowName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.8 - 2020-05-20 ( dshockley ): fixed name in 1st comment line. \n\t1.7 - 2018-09-20 ( eshagdar ): FM17 has only 1 version, so no need to specify by name\/bundle\n\t1.6 - get list of window names of open files from the menu instead of asking FM for document names.\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_ClickMenuItem\n\tgetTextBefore\n\tgetTextBetween\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerWindow_TEST\"\n\non run\n\tdisplayFileMakerWindow({windowName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerWindow(prefs)\n\t-- version 1.7\n\t\n\ttry\n\t\tset defaultPrefs to {windowName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset windowName to windowName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset windowMenu to menu 1 of menu bar item \"Window\" of menu bar 1\n\t\t\t\tset hiddenWindowMenu to menu 1 of menu item \"Show Window\" of windowMenu\n\t\t\t\tset windowMenuItems to name of menu items of windowMenu\n\t\t\t\tset windowToShow to name of menu items of hiddenWindowMenu\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t\n\t\tset windowList to {}\n\t\tset docNameList to items 11 thru -1 of (windowMenuItems & windowToShow)\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t\n\t\t\t-- get JUST the name of the file\n\t\t\tif oneDocName begins with \"(\" then\n\t\t\t\tset windowName to getTextBetween({sourceTEXT:oneDocName, beforeText:\"(\", afterText:\")\"})\n\t\t\telse if oneDocName ends with \")\" then\n\t\t\t\tset windowName to getTextBefore(oneDocName, \" (\")\n\t\t\telse\n\t\t\t\tset windowName to oneDocName\n\t\t\tend if\n\t\t\t--log oneDocName\n\t\t\t\n\t\t\t\n\t\t\t--loop through available document and bring the specified to the front\n\t\t\tignoring case\n\t\t\t\tif windowName is equal to (windowName as string) then\n\t\t\t\t\tif oneDocName is in windowMenuItems then\n\t\t\t\t\t\t-- window exists\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tset menuItemRef to menu item oneDocName of windowMenu\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\telse\n\t\t\t\t\t\t-- hidden file\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tset menuItemRef to menu item oneDocName of hiddenWindowMenu\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\t\tfmGUI_ClickMenuItem({menuItemRef:menuItemRef})\n\t\t\t\t\treturn true\n\t\t\t\tend if\n\t\t\tend ignoring\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerWindow - \" & errMsg number errNum\n\tend try\nend displayFileMakerWindow\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_ClickMenuItem(prefs)\n\ttell application \"htcLib\" to fmGUI_ClickMenuItem({menuItemRef:my coerceToString(menuItemRef of prefs)} & prefs)\nend fmGUI_ClickMenuItem\n\non getTextBefore(sourceTEXT, stopHere)\n\ttell application \"htcLib\" to getTextBefore(sourceTEXT, stopHere)\nend getTextBefore\n\non getTextBetween(prefs)\n\ttell application \"htcLib\" to getTextBetween(prefs)\nend getTextBetween\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceTEXT:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","old_contents":"-- displayFileMakerDatabase({windowName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.7 - 2018-09-20 ( eshagdar ): FM17 has only 1 version, so no need to specify by name\/bundle\n\t1.6 - get list of window names of open files from the menu instead of asking FM for document names.\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_ClickMenuItem\n\tgetTextBefore\n\tgetTextBetween\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerWindow_TEST\"\n\non run\n\tdisplayFileMakerWindow({windowName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerWindow(prefs)\n\t-- version 1.7\n\t\n\ttry\n\t\tset defaultPrefs to {windowName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset windowName to windowName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset windowMenu to menu 1 of menu bar item \"Window\" of menu bar 1\n\t\t\t\tset hiddenWindowMenu to menu 1 of menu item \"Show Window\" of windowMenu\n\t\t\t\tset windowMenuItems to name of menu items of windowMenu\n\t\t\t\tset windowToShow to name of menu items of hiddenWindowMenu\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t\n\t\tset windowList to {}\n\t\tset docNameList to items 11 thru -1 of (windowMenuItems & windowToShow)\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t\n\t\t\t-- get JUST the name of the file\n\t\t\tif oneDocName begins with \"(\" then\n\t\t\t\tset windowName to getTextBetween({sourceTEXT:oneDocName, beforeText:\"(\", afterText:\")\"})\n\t\t\telse if oneDocName ends with \")\" then\n\t\t\t\tset windowName to getTextBefore(oneDocName, \" (\")\n\t\t\telse\n\t\t\t\tset windowName to oneDocName\n\t\t\tend if\n\t\t\t--log oneDocName\n\t\t\t\n\t\t\t\n\t\t\t--loop through available document and bring the specified to the front\n\t\t\tignoring case\n\t\t\t\tif windowName is equal to (windowName as string) then\n\t\t\t\t\tif oneDocName is in windowMenuItems then\n\t\t\t\t\t\t-- window exists\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tset menuItemRef to menu item oneDocName of windowMenu\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\telse\n\t\t\t\t\t\t-- hidden file\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tset menuItemRef to menu item oneDocName of hiddenWindowMenu\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\t\tfmGUI_ClickMenuItem({menuItemRef:menuItemRef})\n\t\t\t\t\treturn true\n\t\t\t\tend if\n\t\t\tend ignoring\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerWindow - \" & errMsg number errNum\n\tend try\nend displayFileMakerWindow\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_ClickMenuItem(prefs)\n\ttell application \"htcLib\" to fmGUI_ClickMenuItem({menuItemRef:my coerceToString(menuItemRef of prefs)} & prefs)\nend fmGUI_ClickMenuItem\n\non getTextBefore(sourceTEXT, stopHere)\n\ttell application \"htcLib\" to getTextBefore(sourceTEXT, stopHere)\nend getTextBefore\n\non getTextBetween(prefs)\n\ttell application \"htcLib\" to getTextBetween(prefs)\nend getTextBetween\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceTEXT:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7d46cd001ac3f6246977d133b10e392028cd997e","subject":"Sleep when waiting for the new target sheet to appear","message":"Sleep when waiting for the new target sheet to appear\n","repos":"briancroom\/cedar,tjarratt\/cedar,briancroom\/cedar,pivotal\/cedar,briancroom\/cedar,idoru\/cedar,irfanah\/cedar,pivotal\/cedar,irfanah\/cedar,hsienchiaolee\/cedar,briancroom\/cedar,jeffh\/cedar,tjarratt\/cedar,jeffh\/cedar,idoru\/cedar,pivotal\/cedar,pivotal\/cedar,jeffh\/cedar,tjarratt\/cedar,hsienchiaolee\/cedar,irfanah\/cedar,irfanah\/cedar,idoru\/cedar,briancroom\/cedar,tjarratt\/cedar,jeffh\/cedar,hsienchiaolee\/cedar,idoru\/cedar,pivotal\/cedar,jeffh\/cedar,tjarratt\/cedar,idoru\/cedar,hsienchiaolee\/cedar","old_file":"features\/support\/scripts\/add_target.applescript","new_file":"features\/support\/scripts\/add_target.applescript","new_contents":"on focusElementNamed(title_name, element_search_space)\n tell application \"System Events\" to tell application process \"Xcode\"\n set elements to entire contents of element_search_space\n repeat with element in elements\n if title of element is title_name then\n set element's focused to true\n exit repeat\n end if\n end repeat\n end tell\nend focusedElementNamed\n\non run argv\n set template_category_name to item 1 of argv\n set template_name to item 2 of argv\n\n repeat until application \"Xcode\" is running\n end repeat\n\n tell application \"Xcode\"\n activate\n end tell\n\n tell application \"System Events\" to tell application process \"Xcode\"\n -- find the window and save it for future use\n set projectWindow to \"UNKNOWN\"\n repeat\n repeat with theWindow in windows\n if title of theWindow contains \"template-project\" then\n set projectWindow to theWindow\n end if\n end repeat\n\n if projectWindow is not \"UNKNOWN\" then\n exit repeat\n end if\n end repeat\n\n -- Wait for Xcode to finish loading the project\n repeat until exists group 2 of projectWindow\n end repeat\n repeat until (value of static text 1 of group 2 of projectWindow) contains \"template-project: Ready\"\n end repeat\n\n -- creating a new target\n keystroke \"?\" using command down\n delay 1\n keystroke \"new target\"\n delay 5\n key code 125\n delay 1\n keystroke return\n delay 1\n\n -- pick the template from the sheet\n repeat until sheet 1 of projectWindow\n end repeat\n\n repeat until (exists sheet 1 of projectWindow)\n end repeat\n repeat until (exists scroll area 1 of sheet 1 of projectWindow)\n end repeat\n\n set focused of scroll area 1 of sheet 1 of projectWindow to true\n keystroke template_category_name\n delay 2\n keystroke \"Cedar\"\n click UI element template_name of group 1 of scroll area 1 of group 1 of sheet 1 of projectWindow\n click UI element \"Next\" of sheet 1 of projectWindow\n delay 1\n\n -- fill out the form of the template\n set form to group 1 of sheet 1 of projectWindow\n\n keystroke \"Specs\"\n keystroke tab\n keystroke \"Pivotal\"\n keystroke tab\n keystroke \"com.pivotallabs.cedar\"\n keystroke tab\n\n if exists text field \"Test Scheme\" of form\n -- change focus to element labeled 'Test Scheme'\n -- reminder : non-textfield controls can optionally receive focus on OS X\n my focusElementNamed(\"Test Scheme\", form)\n keystroke \"template-project\"\n delay 1\n end if\n\n click UI element \"Finish\" of sheet 1 of projectWindow\n delay 2\n\n -- Xcode 6: check box to allow bundles to run app code. Not accessible to templates\n keystroke \"O\" using command down\n repeat until exists window \"Open Quickly\"\n end repeat\n\n keystroke \"template-project.xcodeproj\"\n delay 5\n keystroke return\n\n repeat while exists window \"Open Quickly\"\n end repeat\n delay 1\n\n set contentPane to group 2 of splitter group 1 of group 1 of projectWindow\n set specsTarget to row 5 of outline 1 of scroll area 1 of splitter group 1 of group 1 of splitter group 1 of contentPane\n select specsTarget\n\n set checkboxContainer to scroll area 2 of splitter group 1 of group 1 of splitter group 1 of contentPane\n if exists checkbox \"Allow testing Host Application APIs\" of checkboxContainer then\n click checkbox \"Allow testing Host Application APIs\" of checkboxContainer\n delay 1\n end if\n end tell\n\n tell application \"Xcode\"\n quit\n end tell\nend run\n","old_contents":"on focusElementNamed(title_name, element_search_space)\n tell application \"System Events\" to tell application process \"Xcode\"\n set elements to entire contents of element_search_space\n repeat with element in elements\n if title of element is title_name then\n set element's focused to true\n exit repeat\n end if\n end repeat\n end tell\nend focusedElementNamed\n\non run argv\n set template_category_name to item 1 of argv\n set template_name to item 2 of argv\n\n repeat until application \"Xcode\" is running\n end repeat\n\n tell application \"Xcode\"\n activate\n end tell\n\n tell application \"System Events\" to tell application process \"Xcode\"\n -- find the window and save it for future use\n set projectWindow to \"UNKNOWN\"\n repeat\n repeat with theWindow in windows\n if title of theWindow contains \"template-project\" then\n set projectWindow to theWindow\n end if\n end repeat\n\n if projectWindow is not \"UNKNOWN\" then\n exit repeat\n end if\n end repeat\n\n -- Wait for Xcode to finish loading the project\n repeat until exists group 2 of projectWindow\n end repeat\n repeat until (value of static text 1 of group 2 of projectWindow) contains \"template-project: Ready\"\n end repeat\n\n -- creating a new target\n keystroke \"?\" using command down\n delay 1\n keystroke \"new target\"\n delay 5\n key code 125\n delay 1\n keystroke return\n\n -- pick the template from the sheet\n repeat until sheet 1 of projectWindow\n end repeat\n\n repeat until (exists sheet 1 of projectWindow)\n end repeat\n repeat until (exists scroll area 1 of sheet 1 of projectWindow)\n end repeat\n\n set focused of scroll area 1 of sheet 1 of projectWindow to true\n keystroke template_category_name\n delay 2\n keystroke \"Cedar\"\n click UI element template_name of group 1 of scroll area 1 of group 1 of sheet 1 of projectWindow\n click UI element \"Next\" of sheet 1 of projectWindow\n delay 1\n\n -- fill out the form of the template\n set form to group 1 of sheet 1 of projectWindow\n\n keystroke \"Specs\"\n keystroke tab\n keystroke \"Pivotal\"\n keystroke tab\n keystroke \"com.pivotallabs.cedar\"\n keystroke tab\n\n if exists text field \"Test Scheme\" of form\n -- change focus to element labeled 'Test Scheme'\n -- reminder : non-textfield controls can optionally receive focus on OS X\n my focusElementNamed(\"Test Scheme\", form)\n keystroke \"template-project\"\n delay 1\n end if\n\n click UI element \"Finish\" of sheet 1 of projectWindow\n delay 2\n\n -- Xcode 6: check box to allow bundles to run app code. Not accessible to templates\n keystroke \"O\" using command down\n repeat until exists window \"Open Quickly\"\n end repeat\n\n keystroke \"template-project.xcodeproj\"\n delay 5\n keystroke return\n\n repeat while exists window \"Open Quickly\"\n end repeat\n delay 1\n\n set contentPane to group 2 of splitter group 1 of group 1 of projectWindow\n set specsTarget to row 5 of outline 1 of scroll area 1 of splitter group 1 of group 1 of splitter group 1 of contentPane\n select specsTarget\n\n set checkboxContainer to scroll area 2 of splitter group 1 of group 1 of splitter group 1 of contentPane\n if exists checkbox \"Allow testing Host Application APIs\" of checkboxContainer then\n click checkbox \"Allow testing Host Application APIs\" of checkboxContainer\n delay 1\n end if\n end tell\n\n tell application \"Xcode\"\n quit\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2cb8e3ce4a0acfaa08f7db839931ec1c88c68870","subject":"Tidied the display implementation","message":"Tidied the display implementation\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_titles\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_files to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n repeat with theItem in these_titles\n say theItem\n end repeat\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_titles\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_files to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set these_titles to these_titles as string\n set AppleScript's text item delimiters to \"\"\n trackTable's setStringValue_(these_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n repeat with theItem in these_titles\n say theItem\n end repeat\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"fb7eb172817b1bee7e4a5448b4250aa2b5cdeb8a","subject":"[CHANGE] Xmo'd: change file ordering to human.m, human.h, machine.m, machine.h (from human.h, human.m, machine.h, machine.m).","message":"[CHANGE] Xmo'd: change file ordering to human.m, human.h, machine.m, machine.h (from human.h, human.m, machine.h, machine.m).\n","repos":"mjasa\/mogenerator,rentzsch\/mogenerator,fizker\/mogenerator,bewebste\/mogenerator,anton-matosov\/mogenerator,iv-mexx\/mogenerator,fizker\/mogenerator,ef-ctx\/mogenerator,skywinder\/mogenerator,ef-ctx\/mogenerator,seanm\/mogenerator,hardikdevios\/mogenerator,casademora\/mogenerator,willowtreeapps\/mattgenerator,rentzsch\/mogenerator,skywinder\/mogenerator,VladimirGoncharov\/mogenerator,Erin-Mounts\/mogenerator,bewebste\/mogenerator,casademora\/mogenerator,skywinder\/mogenerator,Erin-Mounts\/mogenerator,otaran\/mogenerator,seanm\/mogenerator,kostiakoval\/mogenerator,rentzsch\/mogenerator,pronebird\/mogenerator,bgulanowski\/mogenerator,VladimirGoncharov\/mogenerator,bgulanowski\/mogenerator,iv-mexx\/mogenerator,bewebste\/mogenerator,fizker\/mogenerator,pronebird\/mogenerator,iv-mexx\/mogenerator,otaran\/mogenerator,casademora\/mogenerator,seanm\/mogenerator,adozenlines\/mogenerator,VladimirGoncharov\/mogenerator,mjasa\/mogenerator,adozenlines\/mogenerator,pronebird\/mogenerator,bewebste\/mogenerator,hardikdevios\/mogenerator,anton-matosov\/mogenerator,untitledstartup\/mogenerator,untitledstartup\/mogenerator,ef-ctx\/mogenerator,Erin-Mounts\/mogenerator,untitledstartup\/mogenerator,anton-matosov\/mogenerator,kostiakoval\/mogenerator,mjasa\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,adozenlines\/mogenerator,willowtreeapps\/mattgenerator,kostiakoval\/mogenerator,willowtreeapps\/mattgenerator,bgulanowski\/mogenerator,hardikdevios\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelIt in modelList\n\t\t\tif comments of modelIt contains \"xmod\" then\n\t\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\n\t\t\t\t\ttell group of modelIt\n\t\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file modelSrcDir as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\trepeat with pathIt in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetIt to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetIt\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetIt in (every target of _project)\n\t\t\trepeat with buildFileIt in build files of targetIt\n\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {(targetIt as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non modelSrcDirPath(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\tset modelFileName to name of modelFileAlias\n\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\n\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\n\tend tell\n\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\nend modelSrcDirPath\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","old_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelIt in modelList\n\t\t\tif comments of modelIt contains \"xmod\" then\n\t\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\n\t\t\t\t\ttell group of modelIt\n\t\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file modelSrcDir as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanHeaderFileList & humanSourceFileList & machineHeaderFileList & machineSourceFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\trepeat with pathIt in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetIt to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetIt\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetIt in (every target of _project)\n\t\t\trepeat with buildFileIt in build files of targetIt\n\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {(targetIt as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non modelSrcDirPath(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\tset modelFileName to name of modelFileAlias\n\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\n\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\n\tend tell\n\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\nend modelSrcDirPath\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a9b7fa5c5a21ba521770a49c6447d9609179213f","subject":"I did not change this file ?? But somehow it showed up in my changelist.","message":"I did not change this file ?? But somehow it showed up in my changelist.\n","repos":"alb3rtuk\/scripts,alb3rtuk\/scripts,alb3rtuk\/scripts","old_file":"osa\/close-all-windows.scpt","new_file":"osa\/close-all-windows.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\f\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovtrue\r\u0000\u000b\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npvis\r\u0000\u000e\u0000\u00012\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000f\u0000\u000f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003jX\u001b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000X\r\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0002\u0000\r\u0000\u0013\u0000\u0012\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0013\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001J\u0000\u0000\u0000\r\u0000\u0011\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0017\u0000\u0002\u0000\u001a\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u001d\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000v\u0000\u001e\r\u0000\u001e\u0000\u0003Q\u0000\u0000\u0000\u0014\u0000v\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\u0017\u0000m\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\u0017\u0000,\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u001b\u0000+\u0000&\u0000'\r\u0000&\u0000\u00026\u0001\u0000\u0000\u001b\u0000)\u0000(\u0000)\r\u0000(\u0000\u0003l\u0001\u0000\u0000\u001b\u0000 \u0000*\r\u0000*\u0000\u0002n\u0000\u0000\u0000\u001b\u0000 \u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\npnam\r\u0000,\u0000\u00012\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000)\u0000\u0002=\u0000\u0003\u0000!\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000\"\u0000$\n\u0000\u0004\npvis\r\u0000.\u0000\u0001m\u0000\u0000\u0000%\u0000'\n\u0000\b\u000bboovtrue\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000\/\u000f\u0000\/\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%xa6\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000#\u0000\u0002\u00000\u00001\r\u00000\u0000\u0005Y\u0000\u0000\u0000-\u0000`\u00002\u00003\u00004\r\u00002\u0000\u0001k\u0000\u0000\u0000<\u0000[\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000<\u0000B\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000<\n\u0000\u0004\ncobj\r\u0000<\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0003l\u0001\u0000\u0000<\u0000=\u0000=\r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u00007\u0000\u0002\u0000>\r\u0000>\u0000\u0004Z\u0000\u0000\u0000C\u0000[\u0000?\u0000@\r\u0000?\u0000\u0001H\u0000\u0000\u0000C\u0000G\u0000A\r\u0000A\u0000\u0002E\u0000\u0001\u0000C\u0000F\u0000B\u0000C\r\u0000B\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000@\u0000\u0002O\u0000\u0000\u0000J\u0000W\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000Q\u0000V\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000E\u0000\u00024\u0000\u0000\u0000J\u0000N\u0000F\n\u0000\u0004\ncapp\r\u0000F\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00003\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00004\u0000\u0003l\u0000\u0005\u00001\u00007\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00001\u00007\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nnmbr\r\u0000I\u0000\u0002n\u0001\u0000\u00001\u00004\u0000J\u0000K\r\u0000J\u0000\u00012\u0000\u0001\u00002\u00004\n\u0000\u0004\ncobj\r\u0000K\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u0000L\r\u0000L\u0000\u0002O\u0000\u0001\u0000a\u0000m\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000O\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000O\u0000\u00012\u0000\u0000\u0000e\u0000h\n\u0000\u0004\ncwin\u0002\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0000P\u000f\u0000P\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%xa6\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000Q\u0000R\u0000S\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000Q\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u000e\u0000R\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0005\u0000Z\u0002\u0000Z\u0000\u0002\u0000\u0010\u0000[\u0002\u0000[\u0000\u0002\u0000\u001d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000X\u0000\u0012\u0000\u000f\u0000\u0018\u0000\u001b\u0000\/\u0000\\\n\u0000\u0004\nprcs\n\u0000\u0004\npvis\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0000\u0004\npnam\u000e\u0000\\\u0000\u0000\u0013\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000w\u0012\u0000\te*-,FUOlvEO\u0014\u0000[\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u00002k-,Ekh\u001c\u0000\u0000\/EO\b\u000b\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u000eUY\u0000\u0003h[OYO\u0012\u0000\t*-j\f\u0000\u000eUW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e\u0000S\u0000\u0002\u0004\u0000]\u0003\u0000\u0002\u000e\u0000]\u0000\u0002\u0000\u0000\u0018\u0000\u001b\u000e\u0000T\u0000\u0002\u0004\u0000^\u0003\u0000\r\u000e\u0000^\u0000\r\u0000\u0000_\u0000`\u0000a\u0000b\u0000c\u0000d\u0000e\u0000f\u0000g\u0000h\u0000i\u0000j\u0000U\u000e\u0000_\u0000\u0001\u0000k\u0011\u0000k\u0000\b\u0000M\u0000a\u0000i\u0000l\u000e\u0000`\u0000\u0001\u0000l\u0011\u0000l\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u000e\u0000a\u0000\u0001\u0000m\u0011\u0000m\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0000b\u0000\u0001\u0000n\u0011\u0000n\u0000\u0010\u0000p\u0000h\u0000p\u0000s\u0000t\u0000o\u0000r\u0000m\u000e\u0000c\u0000\u0001\u0000o\u0011\u0000o\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u000e\u0000d\u0000\u0001\u0000p\u0011\u0000p\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0000e\u0000\u0001\u0000q\u0011\u0000q\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0000f\u0000\u0001\u0000r\u0011\u0000r\u0000\n\u0000S\u0000k\u0000y\u0000p\u0000e\u000e\u0000g\u0000\u0001\u0000s\u0011\u0000s\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u000e\u0000h\u0000\u0001\u0000t\u0011\u0000t\u0000\u0014\u0000B\u0000i\u0000t\u0000T\u0000o\u0000r\u0000r\u0000e\u0000n\u0000t\u000e\u0000i\u0000\u0001\u0000u\u0011\u0000u\u0000 \u0000A\u0000c\u0000t\u0000i\u0000v\u0000i\u0000t\u0000y\u0000 \u0000M\u0000o\u0000n\u0000i\u0000t\u0000o\u0000r\u000e\u0000j\u0000\u0001\u0000v\u0011\u0000v\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u000e\u0000U\u0000\u0001\u0000w\u0011\u0000w\u0000\u0006\u0000V\u0000L\u0000Cascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\f\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovtrue\r\u0000\u000b\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npvis\r\u0000\u000e\u0000\u00012\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000f\u0000\u000f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003jX\u001b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000X\r\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0002\u0000\r\u0000\u0013\u0000\u0012\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0013\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001J\u0000\u0000\u0000\r\u0000\u0011\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0017\u0000\u0002\u0000\u001a\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u001d\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000v\u0000\u001e\r\u0000\u001e\u0000\u0003Q\u0000\u0000\u0000\u0014\u0000v\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\u0017\u0000m\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\u0017\u0000,\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u001b\u0000+\u0000&\u0000'\r\u0000&\u0000\u00026\u0001\u0000\u0000\u001b\u0000)\u0000(\u0000)\r\u0000(\u0000\u0003l\u0001\u0000\u0000\u001b\u0000 \u0000*\r\u0000*\u0000\u0002n\u0000\u0000\u0000\u001b\u0000 \u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\npnam\r\u0000,\u0000\u00012\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000)\u0000\u0002=\u0000\u0003\u0000!\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000\"\u0000$\n\u0000\u0004\npvis\r\u0000.\u0000\u0001m\u0000\u0000\u0000%\u0000'\n\u0000\b\u000bboovtrue\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000\/\u000f\u0000\/\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%xa6\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000#\u0000\u0002\u00000\u00001\r\u00000\u0000\u0005Y\u0000\u0000\u0000-\u0000`\u00002\u00003\u00004\r\u00002\u0000\u0001k\u0000\u0000\u0000<\u0000[\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000<\u0000B\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000<\n\u0000\u0004\ncobj\r\u0000<\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0003l\u0001\u0000\u0000<\u0000=\u0000=\r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u00007\u0000\u0002\u0000>\r\u0000>\u0000\u0004Z\u0000\u0000\u0000C\u0000[\u0000?\u0000@\r\u0000?\u0000\u0001H\u0000\u0000\u0000C\u0000G\u0000A\r\u0000A\u0000\u0002E\u0000\u0001\u0000C\u0000F\u0000B\u0000C\r\u0000B\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000@\u0000\u0002O\u0000\u0000\u0000J\u0000W\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000Q\u0000V\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000E\u0000\u00024\u0000\u0000\u0000J\u0000N\u0000F\n\u0000\u0004\ncapp\r\u0000F\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00003\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00004\u0000\u0003l\u0000\u0005\u00001\u00007\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00001\u00007\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nnmbr\r\u0000I\u0000\u0002n\u0001\u0000\u00001\u00004\u0000J\u0000K\r\u0000J\u0000\u00012\u0000\u0001\u00002\u00004\n\u0000\u0004\ncobj\r\u0000K\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u0000L\r\u0000L\u0000\u0002O\u0000\u0001\u0000a\u0000m\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000O\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000O\u0000\u00012\u0000\u0000\u0000e\u0000h\n\u0000\u0004\ncwin\u0002\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0000P\u000f\u0000P\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%xa6\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000Q\u0000R\u0000S\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000Q\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u000e\u0000R\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0005\u0000Z\u0002\u0000Z\u0000\u0002\u0000\u0010\u0000[\u0002\u0000[\u0000\u0002\u0000\u001d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000X\u0000\u0012\u0000\u000f\u0000\u0018\u0000\u001b\u0000\/\u0000\\\n\u0000\u0004\nprcs\n\u0000\u0004\npvis\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0000\u0004\npnam\u000e\u0000\\\u0000\u0000\u0013\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000w\u0012\u0000\te*-,FUOlvEO\u0014\u0000[\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u00002k-,Ekh\u001c\u0000\u0000\/EO\b\u000b\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u000eUY\u0000\u0003h[OYO\u0012\u0000\t*-j\f\u0000\u000eUW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e\u0000S\u0000\u0002\u0004\u0000]\u0003\u0000\u0002\u000e\u0000]\u0000\u0002\u0000\u0000\u0018\u0000\u001b\u000e\u0000T\u0000\u0002\u0004\u0000^\u0003\u0000\r\u000e\u0000^\u0000\r\u0000\u0000_\u0000U\u0000`\u0000a\u0000b\u0000c\u0000d\u0000e\u0000f\u0000g\u0000h\u0000i\u0000j\u000e\u0000_\u0000\u0001\u0000k\u0011\u0000k\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0000U\u0000\u0001\u0000l\u0011\u0000l\u0000\u0010\u0000C\u0000h\u0000o\u0000c\u0000o\u0000l\u0000a\u0000t\u000e\u0000`\u0000\u0001\u0000m\u0011\u0000m\u0000\u0014\u0000S\u0000e\u0000q\u0000u\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u000e\u0000a\u0000\u0001\u0000n\u0011\u0000n\u0000\u0010\u0000p\u0000h\u0000p\u0000s\u0000t\u0000o\u0000r\u0000m\u000e\u0000b\u0000\u0001\u0000o\u0011\u0000o\u0000\u0010\u0000r\u0000u\u0000b\u0000y\u0000m\u0000i\u0000n\u0000e\u000e\u0000c\u0000\u0001\u0000p\u0011\u0000p\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0000d\u0000\u0001\u0000q\u0011\u0000q\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u000e\u0000e\u0000\u0001\u0000r\u0011\u0000r\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0000f\u0000\u0001\u0000s\u0011\u0000s\u0000\n\u0000S\u0000k\u0000y\u0000p\u0000e\u000e\u0000g\u0000\u0001\u0000t\u0011\u0000t\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u000e\u0000h\u0000\u0001\u0000u\u0011\u0000u\u0000\u000e\u0000f\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u000e\u0000i\u0000\u0001\u0000v\u0011\u0000v\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u000e\u0000j\u0000\u0001\u0000w\u0011\u0000w\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c1881db27e08aaef4b2824f96719c128ceac1f19","subject":"Windows","message":"Windows\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-1440x900.scpt","new_file":"scripts\/arrange-windows-for-1440x900.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000L\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000L\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000M\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000M\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000O\u0000S\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000W\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000bU\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u000eSR\r\u0001\u000e\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000fP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u000f\u0002\u0001\u0018\u0000\u0002\u0001\u0019N\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0001\u0002N\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001aL\r\u0001\u001a\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001b\u0002\u0001\u001b\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000K\u0003K\u0002\u0002\u0001\u001d\u0000\u0002\u0001\u001eJ\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000I\u0003I\u0001\u0002J\u0000\u0000\u0002L\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u001fH\r\u0001\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001 GF\r\u0001 \u0000\u0003I\u0000\u0000\u0000\u0000E\u0001!D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000e\u0001$\u0000\u0001\u0001%\u0011\u0001%\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001#\u0000\u0002\u0001&\u0001'\r\u0001&\u0000\u0001J\u0000\u0000\u0000\u0000\u0001(\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001m\u0000\u0000\u0000\u0000C\u0003C\u0000\u000f\u0002\u0001*\u0000\u0002\u0001+B\r\u0001+\u0000\u0001m\u0000\u0000\u0000\u0000A\u0003A\u0000(\u0002B\u0000\u0000\u0002\u0001'\u0000\u0002\u0001,@\r\u0001,\u0000\u0001J\u0000\u0000\u0000\u0000\u0001-\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0001m\u0000\u0000\u0000\u0000?\u0003?\u0002?\u0002\u0001\/\u0000\u0002\u00010>\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000=\u0003=\u0003Q\u0002>\u0000\u0000\u0002@\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002H\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006<\u00011\u00012\u00013\u00014\u00015\u0001<\u0000\u0000\u0010\u00011\u0000\u0004;:98\u000b;\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n:\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b9\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b8\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u00012\u0000\u0007\u00107\u0000\b65\u00016\u000174\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e6\u0000\u0002\u00043\u00018\u00033\u0000\u0003\u000e\u00018\u0000\u0003\u0000210\u000b2\u0000\f0\u0000\bapp_name\u0000\u0000\u000b1\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b0\u0000\f0\u0000\bwin_size\u0000\u0000\u00025\u0000\u0000\u0010\u00016\u0000\u0003\/.-\u000b\/\u0000\f0\u0000\bapp_name\u0000\u0000\u000b.\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b-\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u00017\u0000\b,+\u0000=*)('&\n,\u0000\u0004\ncapp\n+\u0000\u0004\nprun\n*\u0000\u0004\nprcs\n)\u0000\u0004\ncobj\n(\u0000\u0004\ncwin\n'\u0000\u0004\nposn\n&\u0000\u0004\nptsz\u00114\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u00013\u0000\u0007\u0010%\u00019$#\u0001:\u0001;\"\n%\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000@\u0001=\u0002\u0001=\u0000\u0002\u0000I\u0001>\u0002\u0001>\u0000\u0002\u0000T\u0001?\u0002\u0001?\u0000\u0002\u0000_\u0001@\u0002\u0001@\u0000\u0002\u0000j\u0001A\u0002\u0001A\u0000\u0002\u0000u\u0001B\u0002\u0001B\u0000\u0002\u0000\u0001C\u0002\u0001C\u0000\u0002\u0000\u0001D\u0002\u0001D\u0000\u0002\u0000\u0001E\u0002\u0001E\u0000\u0002\u0000\u0001F\u0002\u0001F\u0000\u0002\u0000\u0001G\u0002\u0001G\u0000\u0002\u0000\u0001H\u0002\u0001H\u0000\u0002\u0000\u0001I\u0002\u0001I\u0000\u0002\u0000\u0001J\u0002\u0001J\u0000\u0002\u0000\u0001K\u0002\u0001K\u0000\u0002\u0000\u0001L\u0002\u0001L\u0000\u0002\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001\u0001\u0001N\u0002\u0001N\u0000\u0002\u0001\f\u0001O\u0002\u0001O\u0000\u0002\u0001\u001f!\u0002!\u0000\u0000\u0001$\u0000\u0000\u0002#\u0000\u0000\u0010\u0001:\u0000\u0000\u0010\u0001;\u0000\u001d \u001f\u001e\u001d\u001c\u001b\u0000Z\u001a\u0000e\u0000p\u0000{\u0000\u0000\u0000\u0000\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u0001\u0012\u0018\u0017\u0016\u0001$\u0003 \u0000\u000f\u0003\u001f\u0000(\u000b\u001e\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\u001d\u0005\u0003\u001c\u0003Q\u000b\u001b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u001a\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0019\u0002?\u0003\u0018\u0001\u0003\u0017\u0002\u0003\u0016\u0001\u0011\"\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017m+\u0000\u0007O*a\u0000\u0018a\u0000\u0019lva\u0000\u001aa\u0000\u001blvm+\u0000\u0007O*a\u0000\u001clvlvm+\u0000\u0007\u000f\u000e\u00014\u0000\u0002\u0004\u0015\u0001P\u0003\u0015\u0000\u0002\u000e\u0001P\u0000\u0002\u0000\u0014\u0013\u0003\u0014\u0000\u000f\u0003\u0013\u0000(\u000e\u00015\u0000\u0002\u0004\u0012\u0001Q\u0003\u0012\u0000\u0002\u000e\u0001Q\u0000\u0002\u0000\u0011\u0010\u0003\u0011\u0005\u0003\u0010\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000L\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000L\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000M\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000M\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000O\u0000S\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000W\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000bU\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u000eSR\r\u0001\u000e\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000fP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u000f\u0002\u0001\u0018\u0000\u0002\u0001\u0019N\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0001\u0002N\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001aL\r\u0001\u001a\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001b\u0002\u0001\u001b\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000K\u0003K\u0002\u0002\u0001\u001d\u0000\u0002\u0001\u001eJ\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000I\u0003I\u0001\u0002J\u0000\u0000\u0002L\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u001fH\r\u0001\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001 GF\r\u0001 \u0000\u0003I\u0000\u0000\u0000\u0000E\u0001!D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000e\u0001$\u0000\u0001\u0001%\u0011\u0001%\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001#\u0000\u0002\u0001&\u0001'\r\u0001&\u0000\u0001J\u0000\u0000\u0000\u0000\u0001(\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001m\u0000\u0000\u0000\u0000C\u0003C\u0000\u000f\u0002\u0001*\u0000\u0002\u0001+B\r\u0001+\u0000\u0001m\u0000\u0000\u0000\u0000A\u0003A\u0000(\u0002B\u0000\u0000\u0002\u0001'\u0000\u0002\u0001,@\r\u0001,\u0000\u0001J\u0000\u0000\u0000\u0000\u0001-\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0001m\u0000\u0000\u0000\u0000?\u0003?\u0002?\u0002\u0001\/\u0000\u0002\u00010>\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000=\u0003=\u0003Q\u0002>\u0000\u0000\u0002@\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002H\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006<\u00011\u00012\u00013\u00014\u00015\u0001<\u0000\u0000\u0010\u00011\u0000\u0004;:98\u000b;\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n:\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b9\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b8\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u00012\u0000\u0007\u00107\u0000\b65\u00016\u000174\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e6\u0000\u0002\u00043\u00018\u00033\u0000\u0003\u000e\u00018\u0000\u0003\u0000210\u000b2\u0000\f0\u0000\bapp_name\u0000\u0000\u000b1\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b0\u0000\f0\u0000\bwin_size\u0000\u0000\u00025\u0000\u0000\u0010\u00016\u0000\u0003\/.-\u000b\/\u0000\f0\u0000\bapp_name\u0000\u0000\u000b.\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b-\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u00017\u0000\b,+\u0000=*)('&\n,\u0000\u0004\ncapp\n+\u0000\u0004\nprun\n*\u0000\u0004\nprcs\n)\u0000\u0004\ncobj\n(\u0000\u0004\ncwin\n'\u0000\u0004\nposn\n&\u0000\u0004\nptsz\u00114\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u00013\u0000\u0007\u0010%\u00019$#\u0001:\u0001;\"\n%\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000@\u0001=\u0002\u0001=\u0000\u0002\u0000I\u0001>\u0002\u0001>\u0000\u0002\u0000T\u0001?\u0002\u0001?\u0000\u0002\u0000_\u0001@\u0002\u0001@\u0000\u0002\u0000j\u0001A\u0002\u0001A\u0000\u0002\u0000u\u0001B\u0002\u0001B\u0000\u0002\u0000\u0001C\u0002\u0001C\u0000\u0002\u0000\u0001D\u0002\u0001D\u0000\u0002\u0000\u0001E\u0002\u0001E\u0000\u0002\u0000\u0001F\u0002\u0001F\u0000\u0002\u0000\u0001G\u0002\u0001G\u0000\u0002\u0000\u0001H\u0002\u0001H\u0000\u0002\u0000\u0001I\u0002\u0001I\u0000\u0002\u0000\u0001J\u0002\u0001J\u0000\u0002\u0000\u0001K\u0002\u0001K\u0000\u0002\u0000\u0001L\u0002\u0001L\u0000\u0002\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001\u0001\u0001N\u0002\u0001N\u0000\u0002\u0001\f\u0001O\u0002\u0001O\u0000\u0002\u0001\u001f!\u0002!\u0000\u0000\u0001$\u0000\u0000\u0002#\u0000\u0000\u0010\u0001:\u0000\u0000\u0010\u0001;\u0000\u001d \u001f\u001e\u001d\u001c\u001b\u0000Z\u001a\u0000e\u0000p\u0000{\u0000\u0000\u0000\u0000\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u0001\u0012\u0018\u0017\u0016\u0001$\u0003 \u0000\u000f\u0003\u001f\u0000(\u000b\u001e\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\u001d\u0005\u0003\u001c\u0003Q\u000b\u001b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u001a\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0019\u0002?\u0003\u0018\u0001\u0003\u0017\u0002\u0003\u0016\u0001\u0011\"\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017m+\u0000\u0007O*a\u0000\u0018a\u0000\u0019lva\u0000\u001aa\u0000\u001blvm+\u0000\u0007O*a\u0000\u001clvlvm+\u0000\u0007\u000f\u000e\u00014\u0000\u0002\u0004\u0015\u0001P\u0003\u0015\u0000\u0002\u000e\u0001P\u0000\u0002\u0000\u0014\u0013\u0003\u0014\u0000\u000f\u0003\u0013\u0000(\u000e\u00015\u0000\u0002\u0004\u0012\u0001Q\u0003\u0012\u0000\u0002\u000e\u0001Q\u0000\u0002\u0000\u0011\u0010\u0003\u0011\u0005\u0003\u0010\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f057989121a8e2fdb173dacb76b60b9b3c2772d3","subject":"Update openQnA.scpt","message":"Update openQnA.scpt","repos":"jgstew\/tools,jgstew\/tools,jgstew\/tools,jgstew\/tools","old_file":"AppleScript\/openQnA.scpt","new_file":"AppleScript\/openQnA.scpt","new_contents":"-- http:\/\/www-01.ibm.com\/support\/docview.wss?uid=swg21506026\n-- https:\/\/github.com\/jgstew\/tools\/blob\/master\/bash\/openQnA.sh\n-- http:\/\/alvinalexander.com\/blog\/post\/mac-os-x\/applescript-use-comments\ntell application \"Terminal\"\n\tif not (exists window 1) then reopen\n\tactivate\n\tdo script \"\/Library\/BESAgent\/BESAgent.app\/Contents\/MacOS\/QnA -showtypes\" in window 1\nend tell\n","old_contents":"tell application \"Terminal\"\n\tif not (exists window 1) then reopen\n\tactivate\n\tdo script \"\/Library\/BESAgent\/BESAgent.app\/Contents\/MacOS\/QnA -showtypes\" in window 1\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a5ec07ebeb796e4d0a8c6ba1e6f653f20820ea56","subject":"Fix simulator script","message":"Fix simulator script\n","repos":"keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles","old_file":"scripts\/resetsimulator.applescript","new_file":"scripts\/resetsimulator.applescript","new_contents":"tell application \"System Events\" to tell process \"Simulator\"\n\tactivate\n\tset frontmost to true\n\tclick menu item \"Reset Content and Settings\" of menu 0 of menu bar item \"Simulator\" of menu bar 1\n delay 0.1\n tell application \"System Events\" to key code 36\n\t-- click button \"Reset\" of window \"\"\n return\nend tell\n","old_contents":"tell application \"System Events\" to tell process \"iOS Simulator\"\n\tactivate\n\tset frontmost to true\n\tclick menu item \"Reset Content and Settings\" of menu 0 of menu bar item \"iOS Simulator\" of menu bar 1\n delay 0.1\n tell application \"System Events\" to key code 36\n\t-- click button \"Reset\" of window \"\"\n return\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b14b563abf63764488e4dab83bc8d6088c8cb6dc","subject":"Fix potential text delimiter bug","message":"Fix potential text delimiter bug\n","repos":"tangledhelix\/focusatwill-in-google-chrome,tangledhelix\/focusatwill-in-google-chrome","old_file":"alfred_script.applescript","new_file":"alfred_script.applescript","new_contents":"on alfred_script(q)\n\n set AppleScript's text item delimiters to {\" \"}\n\n tell application \"Google Chrome\"\n \n if q is \"\" or q is \"p\" or q is \"pp\" or q is \"play\" or q is \"pause\" then\n set buttonClass to \"play\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else if q is \"next\" or q is \"skip\" or q is \"n\" then\n set buttonClass to \"next\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else\n set argList to every text item of q\n if item 1 of argList is \"genre\" then\n set execCode to \"$('li.genre a')[\" & item 2 of argList & \"].click();\"\n end if\n end if\n \n set seenPlayerTab to 0\n \n set thisWindowIndex to 1\n repeat with thisWindow in windows\n \n set thisTabIndex to 1\n repeat with thisTab in tabs of thisWindow\n \n if URL of thisTab starts with \"https:\/\/www.focusatwill.com\/\" then\n set seenPlayerTab to 1\n exit repeat\n end if\n \n set thisTabIndex to thisTabIndex + 1\n \n end repeat\n \n if seenPlayerTab is greater than 0 then\n tell tab thisTabIndex of window thisWindowIndex\n execute javascript execCode\n end tell\n exit repeat\n end if\n \n set thisWindowIndex to thisWindowIndex + 1\n \n end repeat\n \n if seenPlayerTab is 0 then\n set newTab to make new tab at end of tabs of window 1\n set URL of newTab to \"https:\/\/www.focusatwill.com\/music\/#player\"\n delay 5\n tell newTab\n execute javascript execCode\n end tell\n end if\n \n end tell\nend alfred_script\n","old_contents":"on alfred_script(q)\n \n tell application \"Google Chrome\"\n \n if q is \"\" or q is \"p\" or q is \"pp\" or q is \"play\" or q is \"pause\" then\n set buttonClass to \"play\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else if q is \"next\" or q is \"skip\" or q is \"n\" then\n set buttonClass to \"next\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else\n set argList to every text item of q\n if item 1 of argList is \"genre\" then\n set execCode to \"$('li.genre a')[\" & item 2 of argList & \"].click();\"\n end if\n end if\n \n set seenPlayerTab to 0\n \n set thisWindowIndex to 1\n repeat with thisWindow in windows\n \n set thisTabIndex to 1\n repeat with thisTab in tabs of thisWindow\n \n if URL of thisTab starts with \"https:\/\/www.focusatwill.com\/\" then\n set seenPlayerTab to 1\n exit repeat\n end if\n \n set thisTabIndex to thisTabIndex + 1\n \n end repeat\n \n if seenPlayerTab is greater than 0 then\n tell tab thisTabIndex of window thisWindowIndex\n execute javascript execCode\n end tell\n exit repeat\n end if\n \n set thisWindowIndex to thisWindowIndex + 1\n \n end repeat\n \n if seenPlayerTab is 0 then\n set newTab to make new tab at end of tabs of window 1\n set URL of newTab to \"https:\/\/www.focusatwill.com\/music\/#player\"\n delay 5\n tell newTab\n execute javascript execCode\n end tell\n end if\n \n end tell\nend alfred_script\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"93db092c03980b587e6b2b8e4df15352b83d5134","subject":"Add myGetRemote","message":"Add myGetRemote\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\" \"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.origin.url\")\nopen location myUrl\nend myOpenGitHub\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6dcc626d17571f6f56ef38b14a594b376c9ea395","subject":"Set the bounds of the disk image volume window. I'm not sure why this was commented out. Not only have I uncommented it, I also changed the value.","message":"Set the bounds of the disk image volume window. I'm not sure why this was commented out. Not only have I uncommented it, I also changed the value.\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset bounds to {30, 50, 579, 486}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b7ee1c5622c637681081add5a2c8b3e17e4bf09c","subject":"Update pictureit.scpt","message":"Update pictureit.scpt\n\nBest to put click in \/usr\/local\/bin","repos":"scarrico\/BayAreaFresh,scarrico\/BayAreaFresh,scarrico\/BayAreaFresh","old_file":"automation\/mac\/pictureit.scpt","new_file":"automation\/mac\/pictureit.scpt","new_contents":"#\n# This script outlines the basic funcationality needed to build\n# an automatic scraper or other chrome automation function. It solves\n# several annoying problems with automator and appleScript and should save\n# people a bunch of time. It does not catch errors or implement other \n# bulletproofing.\n# \n# It uses google.com for illustration. \n# Operations: \n# Open chrome window of a certain size at position 0,0\n# Type something in \n# Click somewhere on the screen\n# Screen shot just the window\n\nset screenWidth to 1200\nset screenHeight to 1440\n\ntell application \"Google Chrome\"\n\tactivate\n\tset w to make new window with properties {bounds:{0, 0, screenWidth, screenHeight}}\n\tdelay (random number from 0.2304 to 2.8472)\n\topen location \"http:\/\/google.com\"\n\tdelay (random number from 1.2304 to 2.8472)\n\ttell application \"System Events\" to keystroke \"test\"\n\tdelay (random number from 0.335 to 1.534)\n\t\n\ttell application \"System Events\" to keystroke return\n\tdelay (random number from 0.335 to 1.534)\n\t\n\trepeat 5 times\n\t\ttell application \"System Events\" to keystroke tab\n\t\tdelay (random number from 0.335 to 1.534)\n\tend repeat\nend tell\ndo shell script \"\/usr\/local\/bin\/click -x 0 -y 0\"\nset fileName to do shell script \"date \\\"+Screen Shot %Y-%m-%d at %H.%M.%S.png\\\"\"\ntell application \"System Events\" to set thePath to POSIX path of desktop folder\ndo shell script \"screencapture -o -R0,0,1200,1400 -x -T 1 \" & \"\\\"\" & thePath & \"\/\" & fileName & \"\\\"\"\n\n\t\n","old_contents":"#\n# This script outlines the basic funcationality needed to build\n# an automatic scraper or other chrome automation function. It solves\n# several annoying problems with automator and appleScript and should save\n# people a bunch of time. It does not catch errors or implement other \n# bulletproofing.\n# \n# It uses google.com for illustration. \n# Operations: \n# Open chrome window of a certain size at position 0,0\n# Type something in \n# Click somewhere on the screen\n# Screen shot just the window\n\nset screenWidth to 1200\nset screenHeight to 1440\n\ntell application \"Google Chrome\"\n\tactivate\n\tset w to make new window with properties {bounds:{0, 0, screenWidth, screenHeight}}\n\tdelay (random number from 0.2304 to 2.8472)\n\topen location \"http:\/\/google.com\"\n\tdelay (random number from 1.2304 to 2.8472)\n\ttell application \"System Events\" to keystroke \"test\"\n\tdelay (random number from 0.335 to 1.534)\n\t\n\ttell application \"System Events\" to keystroke return\n\tdelay (random number from 0.335 to 1.534)\n\t\n\trepeat 5 times\n\t\ttell application \"System Events\" to keystroke tab\n\t\tdelay (random number from 0.335 to 1.534)\n\tend repeat\nend tell\ndo shell script \"\/usr\/bin\/click -x 0 -y 0\"\nset fileName to do shell script \"date \\\"+Screen Shot %Y-%m-%d at %H.%M.%S.png\\\"\"\ntell application \"System Events\" to set thePath to POSIX path of desktop folder\ndo shell script \"screencapture -o -R0,0,1200,1400 -x -T 1 \" & \"\\\"\" & thePath & \"\/\" & fileName & \"\\\"\"\n\n\t\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"10c38c48db33e5fdff4e5d3a68b0a80cd2552922","subject":"bug fix in Loop Script Steps","message":"bug fix in Loop Script Steps\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"2aea8f53e2d5fcb927a9707cb173ec5dcdee47a5","subject":"[#67] updated the Mac packager to latest version","message":"[#67] updated the Mac packager to latest version\n","repos":"hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop,hermwong\/phonegap-app-desktop","old_file":"res\/installers\/osx\/support\/template.applescript","new_file":"res\/installers\/osx\/support\/template.applescript","new_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\t\tREPOSITION_HIDDEN_FILES_CLAUSE\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t-- set position of every item to {theBottomRightX + 100, 100}\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"25008a4a9280262d1130610c4512da587f8ce5b8","subject":"cordova\/lib\/start-emulator - ask for \"Access for assistive devices\" GUI scripting permission","message":"cordova\/lib\/start-emulator - ask for \"Access for assistive devices\" GUI scripting permission\n","repos":"i-miss-you\/cordova-ios,lvrookie\/cordova-ios,apache\/cordova-ios,ephemer\/cordova-ios,damoncoo\/cordova-ios,apache\/cordova-ios,ludei\/cordova-ios,masakura\/cordova-ios,adobe-marketing-cloud-mobile\/aemm-ios,Tomikes\/cordova-ios,matrosovN\/cordova-ios,juliascript\/cordova-ios,hgl888\/cordova-ios,binki\/cordova-ios,Newstex\/cordova-ios,adobe-marketing-cloud-mobile\/aemm-ios,theaccordance\/cordova-ios,juliascript\/cordova-ios,i-miss-you\/cordova-ios,codepython\/cordova-ios,beedesk\/cordova-ios,dpogue\/cordova-ios,SyedMdKamruzzaman\/cordova-ios,codepython\/cordova-ios,goff-marocchi\/cordova-ios,sportstech\/cordova-ios,coderReview\/cordova-ios,1yvT0s\/cordova-ios,honger05\/cordova-ios,beedesk\/cordova-ios,dpogue\/cordova-ios,csantanapr\/cordova-ios,coderReview\/cordova-ios,codepython\/cordova-ios,LonnyGomes\/cordova-ios,coderReview\/cordova-ios,fly19890211\/cordova-ios,revolunet\/cordova-ios,ipmobiletech\/cordova-ios,liubiqu\/cordova-ios,fly19890211\/cordova-ios,revolunet\/cordova-ios,xurigan\/cordova-ios,Newstex\/cordova-ios,Tomikes\/cordova-ios,ludei\/cordova-ios,SyedMdKamruzzaman\/cordova-ios,EddyVerbruggen\/cordova-ios,pengleelove\/cordova-ios,adobe-marketing-cloud-mobile\/aemm-ios,binki\/cordova-ios,matrosovN\/cordova-ios,shazron\/cordova-ios,damoncoo\/cordova-ios,EddyVerbruggen\/cordova-ios,beedesk\/cordova-ios,i-miss-you\/cordova-ios,shazron\/cordova-ios,damoncoo\/cordova-ios,coderReview\/cordova-ios,xurigan\/cordova-ios,pengleelove\/cordova-ios,xurigan\/cordova-ios,SyedMdKamruzzaman\/cordova-ios,ludei\/cordova-ios,juliascript\/cordova-ios,ludei\/cordova-ios,shazron\/cordova-ios,pengleelove\/cordova-ios,dpogue\/cordova-ios,1yvT0s\/cordova-ios,pengleelove\/cordova-ios,matrosovN\/cordova-ios,i-miss-you\/cordova-ios,theaccordance\/cordova-ios,ipmobiletech\/cordova-ios,sportstech\/cordova-ios,purplecabbage\/cordova-ios,masakura\/cordova-ios,tripodsan\/cordova-ios,binki\/cordova-ios,juliascript\/cordova-ios,Icenium\/cordova-ios,liubiqu\/cordova-ios,Newstex\/cordova-ios,honger05\/cordova-ios,codepython\/cordova-ios,zhuli8com\/cordova-ios,theaccordance\/cordova-ios,dpogue\/cordova-ios,apache\/cordova-ios,ipmobiletech\/cordova-ios,masakura\/cordova-ios,LonnyGomes\/cordova-ios,goff-marocchi\/cordova-ios,goff-marocchi\/cordova-ios,xandroidx\/cordova-ios,masakura\/cordova-ios,honger05\/cordova-ios,i-miss-you\/cordova-ios,apache\/cordova-ios,sportstech\/cordova-ios,Icenium\/cordova-ios,adobe-marketing-cloud-mobile\/aemm-ios,shazron\/cordova-ios,Tomikes\/cordova-ios,xandroidx\/cordova-ios,sportstech\/cordova-ios,SidneyS\/cordova-ios,Tomikes\/cordova-ios,theaccordance\/cordova-ios,Newstex\/cordova-ios,fly19890211\/cordova-ios,honger05\/cordova-ios,ephemer\/cordova-ios,purplecabbage\/cordova-ios,xandroidx\/cordova-ios,EddyVerbruggen\/cordova-ios,matrosovN\/cordova-ios,SidneyS\/cordova-ios,xandroidx\/cordova-ios,corimf\/cordova-ios,liubiqu\/cordova-ios,purplecabbage\/cordova-ios,csantanapr\/cordova-ios,apache\/cordova-ios,goff-marocchi\/cordova-ios,zhuli8com\/cordova-ios,lvrookie\/cordova-ios,hgl888\/cordova-ios,liubiqu\/cordova-ios,binki\/cordova-ios,ludei\/cordova-ios,hgl888\/cordova-ios,tripodsan\/cordova-ios,xandroidx\/cordova-ios,juliascript\/cordova-ios,shazron\/cordova-ios,SyedMdKamruzzaman\/cordova-ios,EddyVerbruggen\/cordova-ios,LonnyGomes\/cordova-ios,Icenium\/cordova-ios,goff-marocchi\/cordova-ios,zhuli8com\/cordova-ios,codepython\/cordova-ios,Tomikes\/cordova-ios,Icenium\/cordova-ios,purplecabbage\/cordova-ios,dpogue\/cordova-ios,revolunet\/cordova-ios,corimf\/cordova-ios,csantanapr\/cordova-ios,apache\/cordova-ios,fly19890211\/cordova-ios,beedesk\/cordova-ios,Newstex\/cordova-ios,revolunet\/cordova-ios,1yvT0s\/cordova-ios,hgl888\/cordova-ios,zhuli8com\/cordova-ios,xurigan\/cordova-ios,fly19890211\/cordova-ios,corimf\/cordova-ios,ephemer\/cordova-ios,zhuli8com\/cordova-ios,ipmobiletech\/cordova-ios,LonnyGomes\/cordova-ios,beedesk\/cordova-ios,SidneyS\/cordova-ios,SidneyS\/cordova-ios,tripodsan\/cordova-ios,corimf\/cordova-ios,sportstech\/cordova-ios,pengleelove\/cordova-ios,ipmobiletech\/cordova-ios,liubiqu\/cordova-ios,purplecabbage\/cordova-ios,masakura\/cordova-ios,1yvT0s\/cordova-ios,dpogue\/cordova-ios,SyedMdKamruzzaman\/cordova-ios,binki\/cordova-ios,ephemer\/cordova-ios,hgl888\/cordova-ios,xurigan\/cordova-ios,csantanapr\/cordova-ios,lvrookie\/cordova-ios,theaccordance\/cordova-ios,apache\/cordova-ios,purplecabbage\/cordova-ios,juliascript\/cordova-ios,csantanapr\/cordova-ios,matrosovN\/cordova-ios,SidneyS\/cordova-ios,EddyVerbruggen\/cordova-ios,damoncoo\/cordova-ios,corimf\/cordova-ios,damoncoo\/cordova-ios,shazron\/cordova-ios,ephemer\/cordova-ios,sportstech\/cordova-ios,lvrookie\/cordova-ios,1yvT0s\/cordova-ios,lvrookie\/cordova-ios,LonnyGomes\/cordova-ios,adobe-marketing-cloud-mobile\/aemm-ios,coderReview\/cordova-ios,revolunet\/cordova-ios,matrosovN\/cordova-ios,tripodsan\/cordova-ios,honger05\/cordova-ios,tripodsan\/cordova-ios","old_file":"bin\/templates\/project\/cordova\/lib\/sim.applescript","new_file":"bin\/templates\/project\/cordova\/lib\/sim.applescript","new_contents":"tell application \"System Events\"\n\tset UI elements enabled to true\nend tell\n\ntell application \"iPhone Simulator\"\n activate\nend tell\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n click menu item \"$DEVICE_NAME\" of menu 1 of menu item \"Device\" of menu 1 of menu bar item \"Hardware\" of menu bar 1\n click menu item \"Home\" of menu 1 of menu bar item \"Hardware\" of menu bar 1\n end tell\nend tell\n","old_contents":"tell application \"iPhone Simulator\"\n activate\nend tell\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n click menu item \"$DEVICE_NAME\" of menu 1 of menu item \"Device\" of menu 1 of menu bar item \"Hardware\" of menu bar 1\n click menu item \"Home\" of menu 1 of menu bar item \"Hardware\" of menu bar 1\n end tell\nend tell\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"f95250dff6f284d7b0871150d88bab23efa9a1e5","subject":"Line-wrap and format long notes","message":"Line-wrap and format long notes\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"526857f6d11c109f48af13324827245c220b147a","subject":"Fix: Root category list dialog sometimes skipped","message":"Fix: Root category list dialog sometimes skipped\n\nIf a subcategory only had one item, the root category controller would\nbe removed from the controller history when skipping to the edit\ncategory dialog even if the root category list had more than one item.\nThis could happen if there were multiple root categories, but one was\nselected that had less than two subcategories. It was a simple one-line\nfix, but easy to miss.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"aca26bf1a96b26d52a6dd8fc482d0ab5ea9400ed","subject":"update to use notification center instead of growl","message":"update to use notification center instead of growl\n","repos":"atsuya\/google-music-control","old_file":"chrome\/lib\/controller.scpt","new_file":"chrome\/lib\/controller.scpt","new_contents":"on control(keyCode)\n set code to \"var keyCode = \" & keyCode & \";\n var event = document.createEvent('Events');\n event.initEvent('keydown', true, true);\n event.keyCode = keyCode;\n event.which = keyCode;\n\n document.dispatchEvent(event);\n \"\n\n set targetTab to activeTab() of me\n executeJavaScript(targetTab, code) of me\nend control\n\non notifyCurrentSong()\n set targetTab to activeTab() of me\n\n set songCode to \"document.querySelector('#playerSongTitle').innerHTML\"\n set song to executeJavaScript(targetTab, songCode) of me\n\n set artistCode to \"document.querySelector('.player-artist-album-wrapper').innerText\"\n set artist to executeJavaScript(targetTab, artistCode) of me\n\n notify(song, artist) of me\nend notifyCurrentSong\n\non notify(name, message)\n display notification message with title name\nend notify\n\non activeTab()\n set targetTab to null\n\n tell application \"Google Chrome\"\n repeat with theWindow in every window\n repeat with theTab in every tab of theWindow\n if theTab's title ends with \"- Google Play Music\" then\n set targetTab to theTab\n exit repeat\n end if\n end repeat\n end repeat\n end tell\n\n return targetTab\nend activeTab\n\non executeJavaScript(activeTab, code)\n set result to null\n\n tell application \"Google Chrome\"\n set result to execute activeTab javascript code\n end tell\n\n return result\nend executeJavaScript\n","old_contents":"on control(keyCode)\n set code to \"var keyCode = \" & keyCode & \";\n var event = document.createEvent('Events');\n event.initEvent('keydown', true, true);\n event.keyCode = keyCode;\n event.which = keyCode;\n\n document.dispatchEvent(event);\n \"\n\n set targetTab to activeTab() of me\n executeJavaScript(targetTab, code) of me\nend control\n\non notifyCurrentSong()\n set targetTab to activeTab() of me\n\n set songCode to \"document.querySelector('.playerSongTitle .fade-out-content').innerHTML\"\n set song to executeJavaScript(targetTab, songCode) of me\n\n set artistCode to \"document.querySelector('.playerArtist .fade-out-content').innerHTML\"\n set artist to executeJavaScript(targetTab, artistCode) of me\n\n notify(song, artist) of me\nend notifyCurrentSong\n\non notify(name, message)\n set command to \"\/usr\/local\/bin\/growlnotify -n \" & quoted form of name & \" -m \" & quoted form of message\n do shell script command\nend notify\n\non activeTab()\n set targetTab to null\n\n tell application \"Google Chrome\"\n repeat with theWindow in every window\n repeat with theTab in every tab of theWindow\n if theTab's title ends with \"- Google Play Music\" then\n set targetTab to theTab\n exit repeat\n end if\n end repeat\n end repeat\n end tell\n\n return targetTab\nend activeTab\n\non executeJavaScript(activeTab, code)\n set result to null\n\n tell application \"Google Chrome\"\n set result to execute activeTab javascript code\n end tell\n\n return result\nend executeJavaScript\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4c6235ca33932483dd913b7b2abec1b0279b82b1","subject":"Update inbox applescript","message":"Update inbox applescript\n","repos":"persquare\/TextTasks.tmbundle","old_file":"Support\/inbox.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Support\/inbox.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0014\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\n\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\n\u0000\u0014\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0016\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000t\u0000a\u0000s\u0000k\u0000:\u0002\u0000\u0016\u0000\u0002\u0000\u0019\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000\u001a\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0002n\u0000\u0001\u0000\r\u0000\u0014\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0014\u0000\u001f\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000#\u000e\u0000#\u0000\u0001\u0000$\u0011\u0000$\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0000f\u0000\u0000\u0000\r\u0000\u000e\u0002\u0000\u0000\r\u0000\f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000)\u0000*\r\u0000)\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000+\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002\u0000\u0000\r\u0000*\u0000\u0003X\u0000\u0000\u0000\u0000\u0000H\u0000,\u0000-\r\u0000,\u0000\u0001k\u0000\u0000\u0000\u0010\u0000C\u0000.\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0017\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0015\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nstrq\r\u00004\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013\u00005\u00006\r\u00005\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npsxp\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u00000\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002r\u0000\u0000\u0000\u0018\u0000!\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001f\u0000;\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000;\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\u0000<\u0000=\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000\u0012\u0000b\u0000a\u0000s\u0000e\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u0000\u0000\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilename\u0000\u0000\u0002\u00008\u0000\u0002\u0000@\r\u0000@\u0000\u0003Q\u0000\u0000\u0000\"\u0000C\u0000A\u0000B\r\u0000A\u0000\u0001k\u0000\u0000\u0000%\u0000:\u0000C\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002r\u0000\u0000\u0000%\u00002\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0001\u0000%\u00000\u0000H\u0000I\r\u0000H\u0000\u0003I\u0000\u0000\u0000&\u00000\u0000J\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000M\u0000N\r\u0000M\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000 \u0000T\u0000a\u0000s\u0000k\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \r\u0000P\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bfilename\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0000S\u000e\u0000S\u0000\u0001\u0000T\u0011\u0000T\u0000\u0002\u0000:\u0002\u0000L\u0000\u0002\u0000U\r\u0000U\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bfilename\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0000f\u0000\u0000\u0000%\u0000&\r\u0000G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000E\u0000\u0002\u0000V\r\u0000V\u0000\u0002n\u0000\u0001\u00003\u0000:\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u00004\u0000:\u0000Y\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0000f\u0000\u0000\u00003\u00004\u0002\u0000\u0000\r\u0000B\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002\u0000(\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000a\u0000b\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000c\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000e\u0000\u0002\u0000f\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000g\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000j\u0000k\r\u0000j\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000l\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000m\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000N\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000s\u0000 \u0000r\u0000e\u0000a\u0000d\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000_\u0000c\u0000m\u0000d\u0002\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tinbox_cmd\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0004Z\u0000\u0000\u0000\b\u0000\u0019\u0000q\u0000r\u0000s\r\u0000q\u0000\u0002=\u0000\u0003\u0000\b\u0000\u000b\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u0000\r\u0000r\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0011\u0000x\u0000y\r\u0000x\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0000\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\u0002\u0000\u0000\r\u0000s\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0019\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000f\u0000i\u0000l\u0000e\u0000:\u0000\/\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\u0002\u0000p\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001f\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001d\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\r0\u0000\tinbox_cmd\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000`\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0010\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0010\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\n\u0000\u0000\u0000\u0001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndtxt\r\u0000\u0000\u0003l\u0000\n\u0000\u0002\u0000\u0003\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0003l\u0000\n\u0000\u0004\u0000\u0005\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0003l\u0000\n\u0000\u0006\u0000\n\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\n\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndflt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\n\u0000\u0004\nttxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0019\u0000\u001b\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b~}\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u000e\u0000\u0000\u0007\u0010|\u0000\n{z\u0000\u0000y\n|\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001{\u0000\u0000\u0002z\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\b\u0000\u0017\u0000\u001axw\u0000#vut\u000bx\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000bw\u0000\r0\u0000\ttask_text\u0000\u0000\u000bv\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0001u\u0000\u0000\u0002t\u0000\u0000\u0011y\u0000\u001e\u0014\u0000\u0016)l+\u0000\u0002EO)l+\u0000\u0005W\u0000\bX\u0000\u0006\u0000\u0007h\u000f\u000e\u0000\u0000\u0007\u0010s\u0000*rq\u0000\u0000p\ns\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000br\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002q\u0000\u0000\u0010\u0000\u0000\u0005onmlk\u000bo\u0000\u00110\u0000\rdropped_files\u0000\u0000\u000bn\u0000\r0\u0000\tfile_path\u0000\u0000\u000bm\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u000bl\u0000\f0\u0000\bfilename\u0000\u0000\u000bk\u0000\r0\u0000\ttask_text\u0000\u0000\u0010\u0000\u0000\rjihgf\u0000>e\u0000Q\u0000Sdcba\nj\u0000\u0004\nkocl\ni\u0000\u0004\ncobj\nh\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\ng\u0000\u0004\npsxp\nf\u0000\u0004\nstrq\ne\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000bd\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000bc\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0001b\u0000\u0000\u0002a\u0000\u0000\u0011p\u0000I\u0017\u0000G[l\f\u0000\u0002kh\u001b\u0000\u0001,,EO%j\f\u0000\u0006EO\u0014\u0000\u001a)%%l+\u0000\tEO)l+\u0000\nW\u0000\bX\u0000\u000b\u0000\fh[OY\u000f\u000e\u0000\u0000\u0007\u0010`\u0000b_^\u0000\u0000]\u000b`\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u000e_\u0000\u0002\u0004\\\u0000\u0003\\\u0000\u0002\u000e\u0000\u0000\u0002\u0000[Z\u000b[\u0000\r0\u0000\ttask_text\u0000\u0000\u000bZ\u0000\r0\u0000\tfile_path\u0000\u0000\u0002^\u0000\u0000\u0010\u0000\u0000\u0005YXWVU\u000bY\u0000\r0\u0000\ttask_text\u0000\u0000\u000bX\u0000\r0\u0000\tfile_path\u0000\u0000\u000bW\u0000\r0\u0000\tinbox_cmd\u0000\u0000\u000bV\u0000\f0\u0000\bfile_ref\u0000\u0000\u000bU\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0010\u0000\u0000\u0006\u0000mT\u0000v\u0000z\u0000\u0000\nT\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011]\u0000,j\f\u0000\u0001EO\u0000\u001d\u0000\bEY\u0000\u0007%EO%%%EOOj\f\u0000\u0001\u000f\u000e\u0000\u0000\u0007\u0010S\u0000RQ\u0000\u0000P\u000bS\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000eR\u0000\u0002\u0004O\u0000\u0003O\u0000\u0002\u000e\u0000\u0000\u0002\u0000NM\u000bN\u0000\t0\u0000\u0005title\u0000\u0000\u000bM\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0002Q\u0000\u0000\u0010\u0000\u0000\u0004LKJI\u000bL\u0000\t0\u0000\u0005title\u0000\u0000\u000bK\u0000\u00100\u0000\fdefault_text\u0000\u0000\u000bJ\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\u000bI\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0010\u0000\u0000\nHGF\u0000\u0000E\u0000DCB\nH\u0000\u0004\ndtxt\nG\u0000\u0004\ndisp\nF\u0000\u0004\nbtns\nE\u0000\u0004\ndflt\u0003D\u0000\b\nC\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\nB\u0000\u0004\nttxt\u0011P\u0000\u001cklv\f\u0000\bEO,EO\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000f\u0000o\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0014\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\n\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\n\u0000\u0014\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0016\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000t\u0000a\u0000s\u0000k\u0000:\u0002\u0000\u0016\u0000\u0002\u0000\u0019\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000\u001a\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0002n\u0000\u0001\u0000\r\u0000\u0014\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0014\u0000\u001f\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000#\u000e\u0000#\u0000\u0001\u0000$\u0011\u0000$\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0000f\u0000\u0000\u0000\r\u0000\u000e\u0002\u0000\u0000\r\u0000\f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000)\u0000*\r\u0000)\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000+\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002\u0000\u0000\r\u0000*\u0000\u0003X\u0000\u0000\u0000\u0000\u0000H\u0000,\u0000-\r\u0000,\u0000\u0001k\u0000\u0000\u0000\u0010\u0000C\u0000.\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0017\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0015\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nstrq\r\u00004\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013\u00005\u00006\r\u00005\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npsxp\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u00000\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002r\u0000\u0000\u0000\u0018\u0000!\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001f\u0000;\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000;\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\u0000<\u0000=\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000\u0012\u0000b\u0000a\u0000s\u0000e\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u0000\u0000\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilename\u0000\u0000\u0002\u00008\u0000\u0002\u0000@\r\u0000@\u0000\u0003Q\u0000\u0000\u0000\"\u0000C\u0000A\u0000B\r\u0000A\u0000\u0001k\u0000\u0000\u0000%\u0000:\u0000C\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002r\u0000\u0000\u0000%\u00002\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0001\u0000%\u00000\u0000H\u0000I\r\u0000H\u0000\u0003I\u0000\u0000\u0000&\u00000\u0000J\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002b\u0000\u0000\u0000&\u0000+\u0000M\u0000N\r\u0000M\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000 \u0000T\u0000a\u0000s\u0000k\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \r\u0000P\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bfilename\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0000S\u000e\u0000S\u0000\u0001\u0000T\u0011\u0000T\u0000\u0002\u0000:\u0002\u0000L\u0000\u0002\u0000U\r\u0000U\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bfilename\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0000f\u0000\u0000\u0000%\u0000&\r\u0000G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000E\u0000\u0002\u0000V\r\u0000V\u0000\u0002n\u0000\u0001\u00003\u0000:\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u00004\u0000:\u0000Y\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0000f\u0000\u0000\u00003\u00004\u0002\u0000\u0000\r\u0000B\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002\u0000(\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000a\u0000b\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000c\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0002\u0000e\u0000\u0002\u0000f\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000g\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000j\u0000k\r\u0000j\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000l\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000m\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000N\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000s\u0000 \u0000r\u0000e\u0000a\u0000d\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000_\u0000c\u0000m\u0000d\u0002\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tinbox_cmd\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0004Z\u0000\u0000\u0000\b\u0000\u0019\u0000q\u0000r\u0000s\r\u0000q\u0000\u0002=\u0000\u0003\u0000\b\u0000\u000b\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u0000\r\u0000r\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0011\u0000x\u0000y\r\u0000x\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0000\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\u0002\u0000\u0000\r\u0000s\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0019\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000f\u0000i\u0000l\u0000e\u0000:\u0000\/\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\r0\u0000\tfile_path\u0000\u0000\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\u0002\u0000p\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001f\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001d\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\r0\u0000\tinbox_cmd\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\f0\u0000\bfile_ref\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000`\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0010\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0010\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\n\u0000\u0000\u0000\u0001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndtxt\r\u0000\u0000\u0003l\u0000\n\u0000\u0002\u0000\u0003\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0003l\u0000\n\u0000\u0004\u0000\u0005\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0003l\u0000\n\u0000\u0006\u0000\n\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\n\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndflt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\n\u0000\u0004\nttxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0019\u0000\u001b\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b~}\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u000b\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000b\u0000\r0\u0000\ttask_text\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u000e\u0000\u0000\u0007\u0010|\u0000\n{z\u0000\u0000y\n|\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001{\u0000\u0000\u0002z\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\b\u0000\u0017\u0000\u001axw\u0000#vut\u000bx\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000bw\u0000\r0\u0000\ttask_text\u0000\u0000\u000bv\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0001u\u0000\u0000\u0002t\u0000\u0000\u0011y\u0000\u001e\u0014\u0000\u0016)l+\u0000\u0002EO)l+\u0000\u0005W\u0000\bX\u0000\u0006\u0000\u0007h\u000f\u000e\u0000\u0000\u0007\u0010s\u0000*rq\u0000\u0000p\ns\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000br\u0000\u00110\u0000\rdropped_files\u0000\u0000\u0002q\u0000\u0000\u0010\u0000\u0000\u0005onmlk\u000bo\u0000\u00110\u0000\rdropped_files\u0000\u0000\u000bn\u0000\r0\u0000\tfile_path\u0000\u0000\u000bm\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u000bl\u0000\f0\u0000\bfilename\u0000\u0000\u000bk\u0000\r0\u0000\ttask_text\u0000\u0000\u0010\u0000\u0000\rjihgf\u0000>e\u0000Q\u0000Sdcba\nj\u0000\u0004\nkocl\ni\u0000\u0004\ncobj\nh\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\ng\u0000\u0004\npsxp\nf\u0000\u0004\nstrq\ne\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000bd\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000bc\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u0001b\u0000\u0000\u0002a\u0000\u0000\u0011p\u0000I\u0017\u0000G[l\f\u0000\u0002kh\u001b\u0000\u0001,,EO%j\f\u0000\u0006EO\u0014\u0000\u001a)%%l+\u0000\tEO)l+\u0000\nW\u0000\bX\u0000\u000b\u0000\fh[OY\u000f\u000e\u0000\u0000\u0007\u0010`\u0000b_^\u0000\u0000]\u000b`\u0000\"0\u0000\u000faddentrytoinbox\u0000\u000faddEntryToInbox\u000e_\u0000\u0002\u0004\\\u0000\u0003\\\u0000\u0002\u000e\u0000\u0000\u0002\u0000[Z\u000b[\u0000\r0\u0000\ttask_text\u0000\u0000\u000bZ\u0000\r0\u0000\tfile_path\u0000\u0000\u0002^\u0000\u0000\u0010\u0000\u0000\u0005YXWVU\u000bY\u0000\r0\u0000\ttask_text\u0000\u0000\u000bX\u0000\r0\u0000\tfile_path\u0000\u0000\u000bW\u0000\r0\u0000\tinbox_cmd\u0000\u0000\u000bV\u0000\f0\u0000\bfile_ref\u0000\u0000\u000bU\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0010\u0000\u0000\u0006\u0000mT\u0000v\u0000z\u0000\u0000\nT\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011]\u0000,j\f\u0000\u0001EO\u0000\u001d\u0000\bEY\u0000\u0007%EO%%%EOOj\f\u0000\u0001\u000f\u000e\u0000\u0000\u0007\u0010S\u0000RQ\u0000\u0000P\u000bS\u0000\u001a0\u0000\u000binputdialog\u0000\u000binputDialog\u000eR\u0000\u0002\u0004O\u0000\u0003O\u0000\u0002\u000e\u0000\u0000\u0002\u0000NM\u000bN\u0000\t0\u0000\u0005title\u0000\u0000\u000bM\u0000\u00100\u0000\fdefault_text\u0000\u0000\u0002Q\u0000\u0000\u0010\u0000\u0000\u0004LKJI\u000bL\u0000\t0\u0000\u0005title\u0000\u0000\u000bK\u0000\u00100\u0000\fdefault_text\u0000\u0000\u000bJ\u0000\u00160\u0000\tthedialog\u0000\ttheDialog\u000bI\u0000\u000e0\u0000\ntext_typed\u0000\u0000\u0010\u0000\u0000\nHGF\u0000\u0000E\u0000DCB\nH\u0000\u0004\ndtxt\nG\u0000\u0004\ndisp\nF\u0000\u0004\nbtns\nE\u0000\u0004\ndflt\u0003D\u0000\b\nC\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\nB\u0000\u0004\nttxt\u0011P\u0000\u001cklv\f\u0000\bEO,EO\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000F\u0000o\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"951295fa5d690d49392a667c4032424bebeea419","subject":"Went back to just toggling DnD","message":"Went back to just toggling DnD\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/ToggleDND.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/ToggleDND.applescript","new_contents":"on run {arg}\n\t-- TOGGLE Do Not Disturb Off\n\t-- NEEDS keyboard shortcut: http:\/\/apple.stackexchange.com\/a\/145491\n\tignoring application responses\n\t\ttell application \"System Events\" to keystroke \"D\" using {command down, shift down, option down, control down}\n\tend ignoring\n\n\t-- if (arg is \"on\") then\n\t-- \t-- Turn Do Not Disturb On\n\t-- \tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturb -boolean true\"\n\t-- \tset theDate to quoted form of (do shell script \"date -u +\\\"%Y-%m-%d %H:%M:%S +0000\\\"\")\n\t-- \tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturbDate -date \" & theDate\n\t-- \tdo shell script \"killall NotificationCenter\"\n\n\t-- else\n\t-- \t-- TOGGLE Do Not Disturb Off\n\t-- \t-- NEEDS keyboard shortcut: http:\/\/apple.stackexchange.com\/a\/145491\n\t-- \tignoring application responses\n\t-- \t\ttell application \"System Events\" to keystroke \"D\" using {command down, shift down, option down, control down}\n\t-- \tend ignoring\n\n\t-- \t-- Turn Do Not Disturb Off\n\t-- \tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturb -boolean false\"\n\t-- \ttry\n\t-- \t\tdo shell script \"defaults -currentHost delete ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturbDate\"\n\t-- \tend try\n\t-- \tdo shell script \"killall NotificationCenter\"\n\t-- end if\nend run\n","old_contents":"on run {arg}\n\tif (arg is \"on\") then\n\t\t-- Turn Do Not Disturb On\n\t\tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturb -boolean true\"\n\t\tset theDate to quoted form of (do shell script \"date -u +\\\"%Y-%m-%d %H:%M:%S +0000\\\"\")\n\t\tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturbDate -date \" & theDate\n\t\tdo shell script \"killall NotificationCenter\"\n\telse\n\t-- TOGGLE Do Not Disturb Off\n\t-- NEEDS keyboard shortcut: http:\/\/apple.stackexchange.com\/a\/145491\n\tignoring application responses\n\t\ttell application \"System Events\" to keystroke \"D\" using {command down, shift down, option down, control down}\n\tend ignoring\n\t-- \t-- Turn Do Not Disturb Off\n\t-- \tdo shell script \"defaults -currentHost write ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturb -boolean false\"\n\t-- \ttry\n\t-- \t\tdo shell script \"defaults -currentHost delete ~\/Library\/Preferences\/ByHost\/com.apple.notificationcenterui doNotDisturbDate\"\n\t-- \tend try\n\t-- \tdo shell script \"killall NotificationCenter\"\n\tend if\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2acd1660d3e1ec495c1526a09bd1a48f770b24dd","subject":"Loop through all windows in iTerm and all sessions in windows This fixes the issue where when multiple iTerm windows are opened quickly only the front one gets the correct color scheme This also allows the use of `colorize` to correct all open iTerm window's colors to be fixed","message":"Loop through all windows in iTerm and all sessions in windows\nThis fixes the issue where when multiple iTerm windows\nare opened quickly only the front one gets the correct color scheme\nThis also allows the use of `colorize` to correct all open iTerm\nwindow's colors to be fixed\n","repos":"keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles","old_file":"scripts\/itermcolors.applescript","new_file":"scripts\/itermcolors.applescript","new_contents":"set h to hours of (current date)\nif (h > 7) and (h < 19) then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tactivate\n\tset t to current terminal\n\ttry\n\t\tget t\n\ton error\n\t\tset t to (make new terminal)\n\tend try\n\t\n\trepeat with t in terminals\n\t\ttell t\n\t\t\trepeat with s in sessions\n\t\t\t\ttry\n\t\t\t\t\tget s\n\t\t\t\ton error\n\t\t\t\t\tset s to launch session \"Default Session\"\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttell s\n\t\t\t\t\tif tint is \"light\" then\n\t\t\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\t\t\telse\n\t\t\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend tell\n\tend repeat\nend tell\n\nreturn\n","old_contents":"set h to hours of (current date)\nif (h > 7) and (h < 19) then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tactivate\n\tset t to current terminal\n\ttry\n\t\tget t\n\ton error\n\t\tset t to (make new terminal)\n\tend try\n\t\n\ttell t\n\t\tset s to current session\n\t\ttry\n\t\t\tget s\n\t\ton error\n\t\t\tset s to launch session \"Default Session\"\n\t\tend try\n\t\t\n\t\ttell s\n\t\t\tif tint is \"light\" then\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\telse\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\nreturn\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8389c9ac56eb09dfa2270602ac6cbb4c4426ab69","subject":"multiple buttons in fmClip - Button Info from Clipboard","message":"multiple buttons in fmClip - Button Info from Clipboard\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"1caf6ef7b727809234076f3b6c83d84bf341ef93","subject":"Remove unused osx_install_patch.applescript","message":"Remove unused osx_install_patch.applescript\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"setup_native\/scripts\/osx_install_patch.applescript","new_file":"setup_native\/scripts\/osx_install_patch.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mpl-2.0","lang":"AppleScript"} {"commit":"8a4dfd9992b2ede26ebb2d875b895007cc59277d","subject":"mail mate debug","message":"mail mate debug\n","repos":"marcomasser\/launchbar-prenagha,Joilence\/launchbar,prenagha\/launchbar,prenagha\/launchbar,marcomasser\/launchbar-prenagha,mlinzner\/LaunchBar-Actions-Padraic,mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar","old_file":"MailMate.scpt","new_file":"MailMate.scpt","new_contents":"\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n\tset theTextEnc to \"\"\n\trepeat with eachChar in characters of theText\n\t\tset useChar to eachChar\n\t\tset eachCharNum to ASCII number of eachChar\n\t\tif eachCharNum = 32 or eachCharNum > 127 then\n\t\t\tset useChar to \"%20\"\n\t\telse if (eachCharNum \u2260 42) and (eachCharNum \u2260 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n\t\t\tset firstDig to round (eachCharNum \/ 16) rounding down\n\t\t\tset secondDig to eachCharNum mod 16\n\t\t\tif firstDig > 9 then\n\t\t\t\tset aNum to firstDig + 55\n\t\t\t\tset firstDig to ASCII character aNum\n\t\t\tend if\n\t\t\tif secondDig > 9 then\n\t\t\t\tset aNum to secondDig + 55\n\t\t\t\tset secondDig to ASCII character aNum\n\t\t\tend if\n\t\t\tset numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n\t\t\tset useChar to numHex\n\t\tend if\n\t\tset theTextEnc to theTextEnc & useChar as string\n\tend repeat\n\treturn theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n\tset _to to \"\"\n\trepeat with addr in _emailAddresses\n\t\tset _to to _to & \"&to=\" & urlencode(addr)\n\tend repeat\n\treturn _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n\tset ASTID to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to \"\/\"\n\tset thePath to text item -1 of thePath\n\tset AppleScript's text item delimiters to ASTID\n\treturn thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n dlog(\"in sendFiles \" & _files)\n\ttry\n\t\tset _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n\t\tset _names to \"\"\n\t\trepeat with _file in _files\n\t\t\tset _filePath to POSIX path of _file\n\t\t\tset _names to _names & \" \" & basename(_filePath)\n\t\t\tset _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n\t\tend repeat\n\t\tset _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\ttell application \"MailMate\" to activate\n\ton error error_message number error_number\n\t\tset msg to \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n\t\tdlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n dlog(\"in sendText\")\n\ttry\n\t\tif txt starts with \"\u27a4\" then\n\t\t\tset myName to text 2 thru ((offset of \"\u2b05\ufe0e\" in txt) - 1) of txt\n\t\t\tset myURL to text ((offset of \"\u2b05\ufe0e\" in txt) + 1) thru end of txt\n\t\t\tset mySubj to \"Link: \" & myName\n\t\t\tset myBody to myName & return & myURL & return & return & \"Enjoy,\" & return & \"P\"\n\t\t\tset _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n\t\t\ttell application \"MailMate\" to open location _mailto with trust\n\t\telse\n\t\t\tset _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n\t\t\ttell application \"MailMate\" to open location _mailto\n\t\tend if\n\ton error error_message number error_number\n\t set msg to \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n\t dlog(msg)\n\t\tdisplay dialog msg\n\tend try\nend sendText\n","old_contents":"\non dlog(myObj)\n set txt to quoted form of (myObj as string)\n log txt\n do shell script \"logger -t 'LaunchBar.MailMate' \" & txt\nend dlog\n\non urlencode(theText)\n set theTextEnc to \"\"\n repeat with eachChar in characters of theText\n set useChar to eachChar\n set eachCharNum to ASCII number of eachChar\n if eachCharNum = 32 or eachCharNum > 127 then\n set useChar to \"%20\"\n else if (eachCharNum \u2260 42) and (eachCharNum \u2260 95) and (eachCharNum < 45 or eachCharNum > 46) and (eachCharNum < 48 or eachCharNum > 57) and (eachCharNum < 65 or eachCharNum > 90) and (eachCharNum < 97 or eachCharNum > 122) then\n set firstDig to round (eachCharNum \/ 16) rounding down\n set secondDig to eachCharNum mod 16\n if firstDig > 9 then\n set aNum to firstDig + 55\n set firstDig to ASCII character aNum\n end if\n if secondDig > 9 then\n set aNum to secondDig + 55\n set secondDig to ASCII character aNum\n end if\n set numHex to (\"%\" & (firstDig as string) & (secondDig as string)) as string\n set useChar to numHex\n end if\n set theTextEnc to theTextEnc & useChar as string\n end repeat\n return theTextEnc\nend urlencode\n\non makeTo(_emailAddresses)\n set _to to \"\"\n repeat with addr in _emailAddresses\n set _to to _to & \"&to=\" & urlencode(addr)\n end repeat\n return _to\nend makeTo\n\non basename(thePath) -- Requires POSIX path\n set ASTID to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\/\"\n set thePath to text item -1 of thePath\n set AppleScript's text item delimiters to ASTID\n return thePath\nend basename\n\non sendFiles(_files, _emailAddresses)\n try\n set _mailto to \"mailto:?send-now=no\" & makeTo(_emailAddresses)\n set _names to \"\"\n repeat with _file in _files\n set _filePath to POSIX path of _file\n set _names to _names & \" \" & basename(_filePath)\n set _mailto to _mailto & \"&attachment-url=file:\/\/\" & urlencode(_filePath)\n end repeat\n set _mailto to _mailto & \"&subject=File:\" & urlencode(_names) & \"&body=\" & urlencode(\"File attached\")\n tell application \"MailMate\" to open location _mailto with trust\n tell application \"MailMate\" to activate\n on error error_message number error_number\n display dialog \"LaunchBar.MailMate.sendFiles ERROR: \" & error_message & \" #\" & error_number\n end try\nend sendFiles\n\non sendText(txt, _emailAddresses)\n try\n if txt starts with \"\u27a4\" then\n set myName to text 2 thru ((offset of \"\u2b05\ufe0e\" in txt) - 1) of txt\n set myURL to text ((offset of \"\u2b05\ufe0e\" in txt) + 1) thru end of txt\n set mySubj to \"Link: \" & myName\n set myBody to myName & return & myURL & return & return & \"Enjoy,\" & return & \"P\"\n set _mailto to \"mailto:?send-now=yes&subject=\" & urlencode(mySubj) & makeTo(_emailAddresses) & \"&body=\" & urlencode(myBody)\n tell application \"MailMate\" to open location _mailto with trust\n else\n set _mailto to \"mailto:?send-now=no&\" & makeTo(_emailAddresses) & \"&body=\" & urlencode(txt)\n tell application \"MailMate\" to open location _mailto\n end if\n on error error_message number error_number\n display dialog \"LaunchBar.MailMate.sendText ERROR: \" & error_message & \" #\" & error_number\n end try\nend sendText\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"f72de2864df9244ff151895fd2a775dc18085bf6","subject":"Be pedantic and hide the file extensions for the license in the dmg","message":"Be pedantic and hide the file extensions for the license in the dmg\n","repos":"gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm","old_file":"indra\/newview\/installers\/darwin\/installer-dmg.applescript","new_file":"indra\/newview\/installers\/darwin\/installer-dmg.applescript","new_contents":"-- This Applescript sets up the installer disk image: size, background image,\n-- icon view, background image, icon positioning.\n-- Usage: osascript installer-dmg.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\n\t\t\tset theXOrigin to 400\n\t\t\tset theYOrigin to 100\n\t\t\tset theWidth to 500\n\t\t\tset theHeight to 600\n\t\t\tset iconSize to 100\n\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\n\t\t\t\tset file_list to every file\n\t\t\t\trepeat with i in file_list\n\t\t\t\t\tif the name of i is \"Applications\" then\n\t\t\t\t\t\tset the position of i to {345, 125}\n\t\t\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\t\t\tset the position of i to {145, 125}\n\t\t\t\t\telse if the name of i is \"LGPL License.txt\" then\n\t\t\t\t\t\tset the position of i to {145, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\telse if the name of i is \"Vivox Acceptable Use Policy.txt\" then\n\t\t\t\t\t\tset the position of i to {345, 225}\n\t\t\t\t\t\tset the extension hidden of i to true\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change the 7 to change the color: 0 is no label, then red,\n\t\t\t\t\t-- orange, yellow, green, blue, purple, or gray.\n\t\t\t\t\tset the label index of i to 7\n\t\t\t\tend repeat\n\t\t\t-- This close-open hack is nessesary to save positions on 10.6 Snow Leopard\n\t\t\tclose\n\t\t\topen\n\t\t\tend tell\n\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to iconSize\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\n\t\t\tset background picture of opts to file \"background.png\"\n\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\tdelay 1\n\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"-- This Applescript sets up the installer disk image: size, background image,\n-- icon view, background image, icon positioning.\n-- Usage: osascript installer-dmg.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\n\t\t\tset theXOrigin to 400\n\t\t\tset theYOrigin to 100\n\t\t\tset theWidth to 500\n\t\t\tset theHeight to 600\n\t\t\tset iconSize to 100\n\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\n\t\t\t\tset file_list to every file\n\t\t\t\trepeat with i in file_list\n\t\t\t\t\tif the name of i is \"Applications\" then\n\t\t\t\t\t\tset the position of i to {345, 125}\n\t\t\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\t\t\tset the position of i to {145, 125}\n\t\t\t\t\telse if the name of i is \"LGPL License.txt\" then\n\t\t\t\t\t\tset the position of i to {145, 225}\n\t\t\t\t\telse if the name of i is \"Vivox Acceptable Use Policy.txt\" then\n\t\t\t\t\t\tset the position of i to {345, 225}\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change the 7 to change the color: 0 is no label, then red,\n\t\t\t\t\t-- orange, yellow, green, blue, purple, or gray.\n\t\t\t\t\tset the label index of i to 7\n\t\t\t\tend repeat\n\t\t\t-- This close-open hack is nessesary to save positions on 10.6 Snow Leopard\n\t\t\tclose\n\t\t\topen\n\t\t\tend tell\n\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to iconSize\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\n\t\t\tset background picture of opts to file \"background.png\"\n\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\tdelay 1\n\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\n\t\t\tupdate without registering applications\n\t\tend tell\n\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"6eab96d6a890e9d35ef454f7ce8a2a0a9873845c","subject":"[NEW] Finder 10.5 and Xcode 2.5 compatibility tweaks. Hopefully this doesn't break 10.4 and 2.4.","message":"[NEW] Finder 10.5 and Xcode 2.5 compatibility tweaks. Hopefully this doesn't break 10.4 and 2.4.\n","repos":"VladimirGoncharov\/mogenerator,anton-matosov\/mogenerator,adozenlines\/mogenerator,untitledstartup\/mogenerator,Erin-Mounts\/mogenerator,ef-ctx\/mogenerator,bgulanowski\/mogenerator,seanm\/mogenerator,willowtreeapps\/mattgenerator,pronebird\/mogenerator,rentzsch\/mogenerator,ef-ctx\/mogenerator,hardikdevios\/mogenerator,otaran\/mogenerator,mjasa\/mogenerator,fizker\/mogenerator,mjasa\/mogenerator,bewebste\/mogenerator,casademora\/mogenerator,mjasa\/mogenerator,seanm\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,seanm\/mogenerator,skywinder\/mogenerator,bewebste\/mogenerator,bgulanowski\/mogenerator,casademora\/mogenerator,willowtreeapps\/mattgenerator,bewebste\/mogenerator,Erin-Mounts\/mogenerator,ef-ctx\/mogenerator,kostiakoval\/mogenerator,untitledstartup\/mogenerator,adozenlines\/mogenerator,fizker\/mogenerator,fizker\/mogenerator,VladimirGoncharov\/mogenerator,bgulanowski\/mogenerator,adozenlines\/mogenerator,kostiakoval\/mogenerator,casademora\/mogenerator,VladimirGoncharov\/mogenerator,otaran\/mogenerator,anton-matosov\/mogenerator,pronebird\/mogenerator,iv-mexx\/mogenerator,pronebird\/mogenerator,Erin-Mounts\/mogenerator,willowtreeapps\/mattgenerator,iv-mexx\/mogenerator,anton-matosov\/mogenerator,hardikdevios\/mogenerator,iv-mexx\/mogenerator,otaran\/mogenerator,untitledstartup\/mogenerator,skywinder\/mogenerator,skywinder\/mogenerator,rentzsch\/mogenerator,iv-mexx\/mogenerator,kostiakoval\/mogenerator,bewebste\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\tmy updateProjectXmod(project of active project document)\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelIt in modelList\n\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\n\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\n\t\t\t\n\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\n\t\t\t\ttell group of modelIt\n\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\n\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\n\t\t\t--\tMeat.\n\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\n\t\t\t\n\t\t\t--\tBuild a list of resulting source files.\n\t\t\ttell application \"System Events\"\n\t\t\t\tset humanFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\tset machineFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\tset fileList to humanFileList & machineFileList\n\t\t\t\tset pathList to {}\n\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\t\t\n\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\trepeat with pathIt in pathList\n\t\t\t\ttell modelSrcGroup\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\n\t\t\t\t\trepeat with targetIt in targetList\n\t\t\t\t\t\tadd modelSrcFileRef to (targetIt as anything)\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModelXmod(_project, _modelFilePath)\n\ttell application \"Xcode\"\n\tend tell\nend updateModelXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetIt in (every target of _project)\n\t\t\trepeat with buildFileIt in build files of targetIt\n\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {(targetIt as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non modelSrcDirPath(modelFilePath)\n\tset modelFilePath to POSIX file modelFilePath\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of (modelFilePath as file)\n\t\tset modelFileName to name of (modelFilePath as file)\n\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\n\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\n\tend tell\n\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\nend modelSrcDirPath\n","old_contents":"tell application \"Xcode\"\r\tif not (exists active project document) then \r\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\r\tmy updateProjectXmod(project of active project document)\rend tell\r\ron updateProjectXmod(_project)\r\ttell application \"Xcode\"\r\t\t-- Iterate over every .xcdatamodel in the project.\r\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\r\t\trepeat with modelIt in modelList\r\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\r\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\r\t\t\t\r\t\t\t-- Create the .xcdatamodel related source group if necessary.\r\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\r\t\t\t\ttell group of modelIt\r\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\r\t\t\t\tend tell\r\t\t\tend if\r\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\r\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\r\t\t\t\r\t\t\t--\tMeat.\r\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\r\t\t\t\r\t\t\t--\tBuild a list of resulting source files.\r\t\t\ttell application \"System Events\"\r\t\t\t\tset humanFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\r\t\t\t\tset machineFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\r\t\t\t\tset fileList to humanFileList & machineFileList\r\t\t\t\tset pathList to {}\r\t\t\t\trepeat with fileItem in fileList\r\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\r\t\t\t\tend repeat\r\t\t\tend tell\r\t\t\t\r\t\t\t--\tAdd the source files to the model's source group and the model's targets.\r\t\t\trepeat with pathIt in pathList\r\t\t\t\ttell modelSrcGroup\r\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\r\t\t\t\t\trepeat with targetIt in targetList\r\t\t\t\t\t\tadd modelSrcFileRef to (targetIt as anything)\r\t\t\t\t\tend repeat\r\t\t\t\tend tell\r\t\t\tend repeat\r\t\tend repeat\r\tend tell\rend updateProjectXmod\r\ron updateModelXmod(_project, _modelFilePath)\r\ttell application \"Xcode\"\r\tend tell\rend updateModelXmod\r\ron everyTargetWithBuildFilePath(_project, _buildFilePath)\r\tset theResult to {}\r\ttell application \"Xcode\"\r\t\trepeat with targetIt in (every target of _project)\r\t\t\trepeat with buildFileIt in build files of targetIt\r\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {targetIt}\r\t\t\tend repeat\r\t\tend repeat\r\tend tell\r\treturn theResult\rend everyTargetWithBuildFilePath\r\ron modelSrcDirPath(modelFilePath)\r\tset modelFilePath to POSIX file modelFilePath\r\ttell application \"Finder\"\r\t\tset modelFileFolder to folder of modelFilePath\r\t\tset modelFileName to name of modelFilePath\r\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\r\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\r\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\r\t\tend if\r\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\r\tend tell\r\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\rend modelSrcDirPath","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bede2e5bf3c7a1b2bbd7251f072a0ae7ec5f8e99","subject":"Changes the togglevpn.applescript file, so that activating it while in the process of connecting, cancels the connection","message":"Changes the togglevpn.applescript file, so that activating it while in the process of connecting, cancels the connection\n","repos":"rkalis\/dotfiles,rkalis\/dotfiles","old_file":"hammerspoon\/togglevpn.applescript","new_file":"hammerspoon\/togglevpn.applescript","new_contents":"tell application \"Viscosity\"\n if the state of the first connection is not \"Disconnected\" then\n disconnect the first connection\n else\n connect the first connection\n end if\nend tell\n","old_contents":"tell application \"Viscosity\"\n if the state of the first connection is \"Connected\" then\n disconnect the first connection\n else\n connect the first connection\n end if\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fdddc5619a19f01ca8c57710886369cc5c603836","subject":"try 2nd time to click-and-wait for popup menu setting","message":"try 2nd time to click-and-wait for popup menu setting\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t2020-05-21 ( dshockley ): Try a 2nd time to click-and-wait for the menu to appear. \n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 2020-05-21-1231\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tdelay 0.3 -- short delay to make sure click can happen:\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- wait to see if menu becomes available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif not (exists (menu 1 of objRef)) then\n\t\t\t\t\t-- SECOND attempt to click-then-wait for menu to be available, but give up sooner:\n\t\t\t\t\t\n\t\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\t\n\t\t\t\t\t--wait until menu is available\n\t\t\t\t\trepeat 20 times\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tend try\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_Popup_SelectByCommand ( value _\" & selectCommand & \"_ '\" & objValue & \"' in popup ) - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","old_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 1.4.1\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\tset calcBoxWindowName to \"Specify Calculation\"\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t--wait until menu is available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_Popup_SelectByCommand ( value _\" & selectCommand & \"_ '\" & objValue & \"' in popup ) - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"330494b6b28e28be3daae9ea8cc644507c20af1d","subject":"Remove sorting algo in favor of current sort order","message":"Remove sorting algo in favor of current sort order\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tif length of theSongs is not greater than 1 then\n\t\t\treturn theSongs\n\t\tend if\n\n\t\tset trackCount to track count of (item 1 of theSongs)\n\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\tif trackCount is 0 or discCount is 0 then\n\t\t\treturn theSongs\n\t\tend if\n\n\t\tset theSongsSorted to {} as list\n\n\t\trepeat with discIndex from 1 to discCount\n\n\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\tif (disc number of theSong is discIndex or (disc number of theSong is 0 and discIndex is 1)) and track number of theSong is songIndex then\n\n\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\tend if\n\n\t\t\t\tend repeat\n\n\t\t\tend repeat\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f4df021ff0c4c39d028d488de883bdbbb60396de","subject":"Rewrite openDictionary.applescript","message":"Rewrite openDictionary.applescript\n\nAvoid calling Finder for Sandbox.\n","repos":"eric-seekas\/CotEditor,uchuugaka\/CotEditor,onevcat\/CotEditor,uchuugaka\/CotEditor,eric-seekas\/CotEditor,angi2\/CotEditor,uchuugaka\/CotEditor,uchuugaka\/CotEditor,eric-seekas\/CotEditor,angi2\/CotEditor,uchuugaka\/CotEditor,uchuugaka\/CotEditor,yangchenghu\/CotEditor,eric-seekas\/CotEditor,yangchenghu\/CotEditor,eric-seekas\/CotEditor,eric-seekas\/CotEditor,eric-seekas\/CotEditor,onevcat\/CotEditor,uchuugaka\/CotEditor,angi2\/CotEditor,angi2\/CotEditor,angi2\/CotEditor,onevcat\/CotEditor,uchuugaka\/CotEditor,yangchenghu\/CotEditor,yangchenghu\/CotEditor,eric-seekas\/CotEditor,angi2\/CotEditor,angi2\/CotEditor,yangchenghu\/CotEditor","old_file":"CotEditor\/InternalScript\/openDictionary.applescript","new_file":"CotEditor\/InternalScript\/openDictionary.applescript","new_contents":"(*\n ==============================================================================\n openDictionary.applescript\n \n CotEditor\n http:\/\/coteditor.com\n \n Created on 2014-12-02 by 1024jp\n ------------------------------------------------------------------------------\n \n \u00a9 2014 1024jp\n \n This program is free software; you can redistribute it and\/or modify it under\n the terms of the GNU General Public License as published by the Free Software\n Foundation; either version 2 of the License, or (at your option) any later\n version.\n \n This program is distributed in the hope that it will be useful, but WITHOUT\n ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n \n You should have received a copy of the GNU General Public License along with\n this program; if not, write to the Free Software Foundation, Inc., 59 Temple\n Place - Suite 330, Boston, MA 02111-1307, USA.\n \n ==============================================================================\n *)\n \nset theApp to frontmost application\nset scriptEditor to application id \"com.apple.ScriptEditor2\"\n \nignoring application responses\n tell scriptEditor to open (path to theApp)\nend ignoring\n","old_contents":"(*\n\u3053\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306f\u3001\u4e0b\u8a18\u306e\u30bd\u30fc\u30b9\u3092\u53c2\u8003\u306b\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\nhttp:\/\/piza.2ch.net\/log2\/mac\/kako\/957\/957215209.html\n*)\ntell application \"Finder\"\n\tset the script_editor to application file id \"ToyS\"\n\tset file_path to path to frontmost application\n\tignoring application responses\n\t\topen file_path using script_editor\n\tend ignoring\nend tell\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"d693a7e4c015f79909af94f0d027b404cbda2ad3","subject":"Scripts update","message":"Scripts update\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-1440x900.scpt","new_file":"scripts\/arrange-windows-for-1440x900.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000L\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000L\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000M\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000M\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000O\u0000S\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000W\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000bU\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u000eSR\r\u0001\u000e\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000fP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0011\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u000f\u0002\u0001\u0018\u0000\u0002\u0001\u0019N\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0001\u0002N\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001aL\r\u0001\u001a\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001b\u0002\u0001\u001b\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000K\u0003K\u0002\u0002\u0001\u001d\u0000\u0002\u0001\u001eJ\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000I\u0003I\u0001\u0002J\u0000\u0000\u0002L\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u001fH\r\u0001\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0001 GF\r\u0001 \u0000\u0003I\u0000\u0000\u0000\u0000E\u0001!D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000e\u0001$\u0000\u0001\u0001%\u0011\u0001%\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001#\u0000\u0002\u0001&\u0001'\r\u0001&\u0000\u0001J\u0000\u0000\u0000\u0000\u0001(\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001m\u0000\u0000\u0000\u0000C\u0003C\u0000\u000f\u0002\u0001*\u0000\u0002\u0001+B\r\u0001+\u0000\u0001m\u0000\u0000\u0000\u0000A\u0003A\u0000(\u0002B\u0000\u0000\u0002\u0001'\u0000\u0002\u0001,@\r\u0001,\u0000\u0001J\u0000\u0000\u0000\u0000\u0001-\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0001m\u0000\u0000\u0000\u0000?\u0003?\u0002?\u0002\u0001\/\u0000\u0002\u00010>\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000=\u0003=\u0003Q\u0002>\u0000\u0000\u0002@\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002H\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006<\u00011\u00012\u00013\u00014\u00015\u0001<\u0000\u0000\u0010\u00011\u0000\u0004;:98\u000b;\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n:\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b9\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b8\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u00012\u0000\u0007\u00107\u0000\b65\u00016\u000174\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e6\u0000\u0002\u00043\u00018\u00033\u0000\u0003\u000e\u00018\u0000\u0003\u0000210\u000b2\u0000\f0\u0000\bapp_name\u0000\u0000\u000b1\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b0\u0000\f0\u0000\bwin_size\u0000\u0000\u00025\u0000\u0000\u0010\u00016\u0000\u0003\/.-\u000b\/\u0000\f0\u0000\bapp_name\u0000\u0000\u000b.\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b-\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u00017\u0000\b,+\u0000=*)('&\n,\u0000\u0004\ncapp\n+\u0000\u0004\nprun\n*\u0000\u0004\nprcs\n)\u0000\u0004\ncobj\n(\u0000\u0004\ncwin\n'\u0000\u0004\nposn\n&\u0000\u0004\nptsz\u00114\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u00013\u0000\u0007\u0010%\u00019$#\u0001:\u0001;\"\n%\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000@\u0001=\u0002\u0001=\u0000\u0002\u0000I\u0001>\u0002\u0001>\u0000\u0002\u0000T\u0001?\u0002\u0001?\u0000\u0002\u0000_\u0001@\u0002\u0001@\u0000\u0002\u0000j\u0001A\u0002\u0001A\u0000\u0002\u0000u\u0001B\u0002\u0001B\u0000\u0002\u0000\u0001C\u0002\u0001C\u0000\u0002\u0000\u0001D\u0002\u0001D\u0000\u0002\u0000\u0001E\u0002\u0001E\u0000\u0002\u0000\u0001F\u0002\u0001F\u0000\u0002\u0000\u0001G\u0002\u0001G\u0000\u0002\u0000\u0001H\u0002\u0001H\u0000\u0002\u0000\u0001I\u0002\u0001I\u0000\u0002\u0000\u0001J\u0002\u0001J\u0000\u0002\u0000\u0001K\u0002\u0001K\u0000\u0002\u0000\u0001L\u0002\u0001L\u0000\u0002\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001\u0001\u0001N\u0002\u0001N\u0000\u0002\u0001\f\u0001O\u0002\u0001O\u0000\u0002\u0001\u001f!\u0002!\u0000\u0000\u0001$\u0000\u0000\u0002#\u0000\u0000\u0010\u0001:\u0000\u0000\u0010\u0001;\u0000\u001d \u001f\u001e\u001d\u001c\u001b\u0000Z\u001a\u0000e\u0000p\u0000{\u0000\u0000\u0000\u0000\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u0001\u0012\u0018\u0017\u0016\u0001$\u0003 \u0000\u000f\u0003\u001f\u0000(\u000b\u001e\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\u001d\u0005\u0003\u001c\u0003Q\u000b\u001b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u001a\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0019\u0002?\u0003\u0018\u0001\u0003\u0017\u0002\u0003\u0016\u0001\u0011\"\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017m+\u0000\u0007O*a\u0000\u0018a\u0000\u0019lva\u0000\u001aa\u0000\u001blvm+\u0000\u0007O*a\u0000\u001clvlvm+\u0000\u0007\u000f\u000e\u00014\u0000\u0002\u0004\u0015\u0001P\u0003\u0015\u0000\u0002\u000e\u0001P\u0000\u0002\u0000\u0014\u0013\u0003\u0014\u0000\u000f\u0003\u0013\u0000(\u000e\u00015\u0000\u0002\u0004\u0012\u0001Q\u0003\u0012\u0000\u0002\u000e\u0001Q\u0000\u0002\u0000\u0011\u0010\u0003\u0011\u0005\u0003\u0010\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000R\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000R\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000F\u0000J\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000J\u0000N\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000S\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000S\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0000\u000f\u0002\u0001\r\u0000\u0002\u0001\u000eU\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0001\u0002U\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000fS\r\u0001\u000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0010\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000\u0000R\u0003R\u0002\u0002\u0001\u0012\u0000\u0002\u0001\u0013Q\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000P\u0003P\u0001\u0002Q\u0000\u0000\u0002S\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0014O\r\u0001\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0015NM\r\u0001\u0015\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0016K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0019\u000e\u0001\u0019\u0000\u0001\u0001\u001a\u0011\u0001\u001a\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0018\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000J\u0003J\u0000\u000f\u0002\u0001\u001f\u0000\u0002\u0001 I\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000H\u0003H\u0000(\u0002I\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001!G\r\u0001!\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\"\u0002\u0001\"\u0000\u0002\u0001#\u0001$\r\u0001#\u0000\u0001m\u0000\u0000\u0000\u0000F\u0003F\u0002?\u0002\u0001$\u0000\u0002\u0001%E\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000D\u0003D\u0003Q\u0002E\u0000\u0000\u0002G\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002O\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006C\u0001&\u0001'\u0001(\u0001)\u0001*\u0001C\u0000\u0000\u0010\u0001&\u0000\u0004BA@?\u000bB\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\nA\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b@\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b?\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u0001'\u0000\u0007\u0010>\u0000\b=<\u0001+\u0001,;\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e=\u0000\u0002\u0004:\u0001-\u0003:\u0000\u0003\u000e\u0001-\u0000\u0003\u0000987\u000b9\u0000\f0\u0000\bapp_name\u0000\u0000\u000b8\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b7\u0000\f0\u0000\bwin_size\u0000\u0000\u0002<\u0000\u0000\u0010\u0001+\u0000\u0003654\u000b6\u0000\f0\u0000\bapp_name\u0000\u0000\u000b5\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b4\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001,\u0000\b32\u0000=10\/.-\n3\u0000\u0004\ncapp\n2\u0000\u0004\nprun\n1\u0000\u0004\nprcs\n0\u0000\u0004\ncobj\n\/\u0000\u0004\ncwin\n.\u0000\u0004\nposn\n-\u0000\u0004\nptsz\u0011;\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001(\u0000\u0007\u0010,\u0001.+*\u0001\/\u00010)\n,\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001.\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00011\u0002\u00011\u0000\u0002\u0000@\u00012\u0002\u00012\u0000\u0002\u0000I\u00013\u0002\u00013\u0000\u0002\u0000T\u00014\u0002\u00014\u0000\u0002\u0000_\u00015\u0002\u00015\u0000\u0002\u0000j\u00016\u0002\u00016\u0000\u0002\u0000u\u00017\u0002\u00017\u0000\u0002\u0000\u00018\u0002\u00018\u0000\u0002\u0000\u00019\u0002\u00019\u0000\u0002\u0000\u0001:\u0002\u0001:\u0000\u0002\u0000\u0001;\u0002\u0001;\u0000\u0002\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000\u0001=\u0002\u0001=\u0000\u0002\u0000\u0001>\u0002\u0001>\u0000\u0002\u0000\u0001?\u0002\u0001?\u0000\u0002\u0000\u0001@\u0002\u0001@\u0000\u0002\u0000\u0001A\u0002\u0001A\u0000\u0002\u0000\u0001B\u0002\u0001B\u0000\u0002\u0001\u0001\u0001C\u0002\u0001C\u0000\u0002\u0001\u0014(\u0002(\u0000\u0000\u0001+\u0000\u0000\u0002*\u0000\u0000\u0010\u0001\/\u0000\u0000\u0010\u00010\u0000\u001c'&%$#\"\u0000Z!\u0000e\u0000p\u0000{\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u001f\u001e\u001d\u0001\u0019\u0003'\u0000\u000f\u0003&\u0000(\u000b%\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003$\u0005\u0003#\u0003Q\u000b\"\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b!\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003 \u0002?\u0003\u001f\u0001\u0003\u001e\u0002\u0003\u001d\u0001\u0011)\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*m+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017a\u0000\u0018lva\u0000\u0019a\u0000\u001alvm+\u0000\u0007O*a\u0000\u001blvlvm+\u0000\u0007\u000f\u000e\u0001)\u0000\u0002\u0004\u001c\u0001D\u0003\u001c\u0000\u0002\u000e\u0001D\u0000\u0002\u0000\u001b\u001a\u0003\u001b\u0000\u000f\u0003\u001a\u0000(\u000e\u0001*\u0000\u0002\u0004\u0019\u0001E\u0003\u0019\u0000\u0002\u000e\u0001E\u0000\u0002\u0000\u0018\u0017\u0003\u0018\u0005\u0003\u0017\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5c15655d336bd0bf2dfe5e03c3a91074cc3d0e82","subject":"Fixed bug in changeScreen","message":"Fixed bug in changeScreen\n","repos":"Ribeiro\/termtile,catfist\/termtile,gibsjose\/termtile,ezig\/termtile,apaszke\/termtile","old_file":"src\/changeScreen.applescript","new_file":"src\/changeScreen.applescript","new_contents":"on run argv\n\tglobal _cache\n\tset _cache to {}\n\n\tset ScreenUtils to load script alias ((path to me as text) & \"::screenUtils.scpt\")\n\tset _config to run script alias ((path to me as text) & \"::config.scpt\")\n\n\tset _terminalApp to terminalApp of _config\n\n\ttell ScreenUtils to set _screens to (screens of getAllScreens())\n\tif (count of _screens) < 2 then\n\t\treturn\n\tend if\n\n\ttry\n\t\ttell ScreenUtils to set _currentScreen to getScreenWithFrontmostWindowOfApp(_terminalApp)\n\ton error\n\t\treturn\n\tend try\n\n\tusing terms from application \"Terminal\"\n\t\ttell application _terminalApp\n\t\t\tif true then --(item 1 of argv) = \"next\" then\n\t\t\t\ttell me to set _newScreen to getNextScreen(_screens, _currentScreen)\n\t\t\t\tset _bounds to bounds of window 0\n\t\t\t\tset _windowWidth to (item 3 of _bounds) - (item 1 of _bounds)\n\t\t\t\tset _windowHeight to (item 4 of _bounds) - (item 2 of _bounds)\n\t\t\t\tif _windowHeight > height of _newScreen then\n\t\t\t\t\tset _windowHeight to height of _newScreen\n\t\t\t\tend if\n\t\t\t\tif _windowWidth > width of _newScreen then\n\t\t\t\t\tset _windowWidth to width of _newScreen\n\t\t\t\tend if\n\t\t\t\tset bounds of window 0 to {originX of _newScreen, originY of _newScreen, (originX of _newScreen) + _windowWidth, (originY of _newScreen) + _windowHeight}\n\t\t\tend if\n\t\tend tell\n\tend using terms from\nend run\n\non getNextScreen(_screens, _currentScreen)\n\tset _nextIndex to ((screenIndex of _currentScreen) + 1)\n\tif _nextIndex > (count of _screens) then\n\t\tset _nextIndex to 1\n\tend if\n\treturn item _nextIndex of _screens\nend getNextScreen\n","old_contents":"on run argv\n\tglobal _cache\n\tset _cache to {}\n\n\tset ScreenUtils to load script alias ((path to me as text) & \"::screenUtils.scpt\")\n\tset _config to run script alias ((path to me as text) & \"::config.scpt\")\n\n\tset _terminalApp to terminalApp of _config\n\n\ttell ScreenUtils to set _screens to (screens of getAllScreens())\n\tif (count of _screens) < 2 then\n\t\treturn\n\tend if\n\n\ttry\n\t\ttell ScreenUtils to set _screen to getScreenWithFrontmostWindowOfApp(_terminalApp)\n\ton error\n\t\treturn\n\tend try\n\n\tusing terms from application \"Terminal\"\n\t\ttell application _terminalApp\n\t\t\tif true then --(item 1 of argv) = \"next\" then\n\t\t\t\ttell me to set _newScreen to getNextScreen(_screens, _currentScreen)\n\t\t\t\tset _bounds to bounds of window 0\n\t\t\t\tset _windowWidth to (item 3 of _bounds) - (item 1 of _bounds)\n\t\t\t\tset _windowHeight to (item 4 of _bounds) - (item 2 of _bounds)\n\t\t\t\tif _windowHeight > height of _newScreen then\n\t\t\t\t\tset _windowHeight to height of _newScreen\n\t\t\t\tend if\n\t\t\t\tif _windowWidth > width of _newScreen then\n\t\t\t\t\tset _windowWidth to width of _newScreen\n\t\t\t\tend if\n\t\t\t\tset bounds of window 0 to {originX of _newScreen, originY of _newScreen, (originX of _newScreen) + _windowWidth, (originY of _newScreen) + _windowHeight}\n\t\t\tend if\n\t\tend tell\n\tend using terms from\nend run\n\non getNextScreen(_screens, _currentScreen)\n\tset _nextIndex to ((screenIndex of _currentScreen) + 1)\n\tif _nextIndex > (count of _screens) then\n\t\tset _nextIndex to 1\n\tend if\n\treturn item _nextIndex of _screens\nend getNextScreen\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b3da7ae5b13165521eb681707a3816b64c3554df","subject":"Commenting out the stuff that was Growl specific. Well, most of it that was Growl specific.","message":"Commenting out the stuff that was Growl specific. Well, most of it that was Growl specific.\n","repos":"nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\t-- set background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\t-- set position of item \"Growl.mpkg\" to {147, 75}\n\t\t\t-- set position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\t-- set position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\t-- set position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\t-- set position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\t-- set position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\t-- my copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"febd331660583fbd72f65ab4a4ea0110ff907e51","subject":"Fixed the window AppleScript. Apparently you can only set the bounds of a plain old window, not a container window. Go figure.","message":"Fixed the window AppleScript. Apparently you can only set the bounds of a plain old window, not a container window. Go figure.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%404215\n","repos":"PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\tset the_window_id to id of container window\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 900}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 600}\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"09646dcb3bd41c976f351fbe5839ff4a615f22af","subject":"Slightly modified","message":"Slightly modified\n","repos":"rchatterjee\/pam-typopw,rchatterjee\/pam-typopw,rchatterjee\/pam-typopw","old_file":"csrcs\/osx\/install_typtop.scpt","new_file":"csrcs\/osx\/install_typtop.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0003\r\u0000\t\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\f\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0000\r\u0000\u000e\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0000\u0011\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u0014\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000<\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000i\u0000n\u0000g\u0000 \u0000p\u0000i\u0000p\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\r\u0000\u0010\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u0018\r\u0000\u0018\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u0019\u0000\u001a\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000j\u0000c\u0000u\u0000r\u0000l\u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000.\u0000p\u0000y\u0000p\u0000a\u0000.\u0000i\u0000o\u0000\/\u0000g\u0000e\u0000t\u0000-\u0000p\u0000i\u0000p\u0000.\u0000p\u0000y\u0000 \u0000|\u0000 \u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u00002\u0000.\u00007\u0006\u0000\u001a\u0000\u0003\u0000\u001d\n\u0000\u0004\nbadm\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001f\u0000 \r\u0000 \u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001f\u0000!\u0000\"\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0003\u0000\u0001\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000 \u0000%\u0000%\r\u0000%\u0000\u0002r\u0000\u0000\u0000 \u0000%\u0000&\u0000'\r\u0000&\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\"\u0000I\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000i\u0000n\u0000g\u0000 \u0000T\u0000y\u0000p\u0000T\u0000o\u0000p\r\u0000'\u0000\u00011\u0000\u0000\u0000!\u0000$\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0002\u0000&\u0000-\u0000,\r\u0000,\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000-\u0000.\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000-\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000n\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000p\u0000i\u0000p\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000-\u0000U\u0000 \u0000-\u0000-\u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000-\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000t\u0000y\u0000p\u0000t\u0000o\u0000p\u0006\u0000.\u0000\u0003\u00001\n\u0000\u0004\nbadm\r\u00001\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000+\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000.\u00003\u00004\r\u00004\u0000\u0002r\u0000\u0000\u0000.\u00003\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\r\u00006\u0000\u00011\u0000\u0000\u0000\/\u00002\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u00004\u00009\u00009\r\u00009\u0000\u0002r\u0000\u0000\u00004\u00009\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u00004\u00005\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000&\u0000I\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000i\u0000z\u0000i\u0000n\u0000g\u0000 \u0000T\u0000y\u0000p\u0000t\u0000o\u0000p\r\u0000;\u0000\u00011\u0000\u0000\u00005\u00008\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000:\u0000A\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000:\u0000A\u0000A\u0000B\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000A\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000@\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000t\u0000y\u0000p\u0000t\u0000o\u0000p\u0000s\u0000.\u0000p\u0000y\u0000 \u0000-\u0000-\u0000i\u0000n\u0000i\u0000t\u0006\u0000B\u0000\u0003\u0000E\n\u0000\u0004\nbadm\r\u0000E\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0002\u0000B\u0000G\u0000H\r\u0000H\u0000\u0002r\u0000\u0000\u0000B\u0000G\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0003\r\u0000J\u0000\u00011\u0000\u0000\u0000C\u0000F\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000L\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000O\u0000P\u0001\u0000\u0000\f\u0000O\u0000t\u0000n do shell script \"cd \/Users\/rahul\/pamplay\/osx\/pam_opendirectory && make install\" with administrator privileges\u0000\u0002\u0000\u0000\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000d\u0000 \u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000r\u0000a\u0000h\u0000u\u0000l\u0000\/\u0000p\u0000a\u0000m\u0000p\u0000l\u0000a\u0000y\u0000\/\u0000o\u0000s\u0000x\u0000\/\u0000p\u0000a\u0000m\u0000_\u0000o\u0000p\u0000e\u0000n\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000&\u0000&\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000\"\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000a\u0000d\u0000m\u0000i\u0000n\u0000i\u0000s\u0000t\u0000r\u0000a\u0000t\u0000o\u0000r\u0000 \u0000p\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000s\u0002\u0000N\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000H\u0000M\u0000T\r\u0000T\u0000\u0003I\u0000\u0002\u0000H\u0000M\u0000U\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000U\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000<\u0000S\u0000u\u0000c\u0000c\u0000e\u0000s\u0000s\u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000T\u0000y\u0000p\u0000T\u0000o\u0000P\u0000!\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000X\r\u0000X\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000Y\r\u0000Y\u0000\u0002O\u0000\u0001\u0000N\u0000X\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000R\u0000W\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000[\u0000\u0000f\u0000\u0000\u0000N\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\\\u0000]\u0001\u0000\u0000\u0010\u0000\\\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000]\u0000\u0007\u0010\u0000^\u0000_\u0000`\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000^\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0000a\u0002\u0000a\u0000\u0002\u0000\u0005\u0000b\u0002\u0000b\u0000\u0002\u0000\n\u0000c\u0002\u0000c\u0000\u0002\u0000\u000f\u0000d\u0002\u0000d\u0000\u0002\u0000\u0016\u0000e\u0002\u0000e\u0000\u0002\u0000\u001e\u0000f\u0002\u0000f\u0000\u0002\u0000#\u0000g\u0002\u0000g\u0000\u0002\u0000*\u0000h\u0002\u0000h\u0000\u0002\u00002\u0000i\u0002\u0000i\u0000\u0002\u00007\u0000j\u0002\u0000j\u0000\u0002\u0000>\u0000k\u0002\u0000k\u0000\u0002\u0000F\u0000l\u0002\u0000l\u0000\u0002\u0000R\u0000m\u0002\u0000m\u0000\u0002\u0000X\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000_\u0000\u0000\u0010\u0000`\u0000\u000e\u0000\u0014\u0000\u001b\u0000(\u0000\/\u0000<\u0000C\u0000V\n\u0000\u0004\nppgt\n\u0000\u0004\nppgc\n\u0000\u0004\nppgd\n\u0000\u0004\nbadm\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0011\u0000Ym*,FOj*,FO*,FOel\f\u0000\u0006Ok*,FO*,FOel\f\u0000\u0006Ol*,FO*,FOel\f\u0000\u0006Om*,FOj\f\u0000\fO)\u0012\u0000\u0007*j\f\u0000\rU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0003\r\u0000\t\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\f\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0000\r\u0000\u000e\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0000\u0011\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u0014\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000\u001e\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000i\u0000n\u0000g\u0000 \u0000p\u0000i\u0000p\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\r\u0000\u0010\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u0018\r\u0000\u0018\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u0019\u0000\u001a\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000j\u0000c\u0000u\u0000r\u0000l\u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000.\u0000p\u0000y\u0000p\u0000a\u0000.\u0000i\u0000o\u0000\/\u0000g\u0000e\u0000t\u0000-\u0000p\u0000i\u0000p\u0000.\u0000p\u0000y\u0000 \u0000|\u0000 \u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u00002\u0000.\u00007\u0006\u0000\u001a\u0000\u0003\u0000\u001d\n\u0000\u0004\nbadm\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001f\u0000 \r\u0000 \u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001f\u0000!\u0000\"\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0003\u0000\u0001\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000 \u0000%\u0000%\r\u0000%\u0000\u0002r\u0000\u0000\u0000 \u0000%\u0000&\u0000'\r\u0000&\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\"\u0000I\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000i\u0000n\u0000g\u0000 \u0000T\u0000y\u0000p\u0000T\u0000o\u0000p\r\u0000'\u0000\u00011\u0000\u0000\u0000!\u0000$\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0002\u0000&\u0000-\u0000,\r\u0000,\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000-\u0000.\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000-\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000n\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000p\u0000i\u0000p\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000-\u0000U\u0000 \u0000-\u0000-\u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000-\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000t\u0000y\u0000p\u0000t\u0000o\u0000p\u0006\u0000.\u0000\u0003\u00001\n\u0000\u0004\nbadm\r\u00001\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000+\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000.\u00003\u00004\r\u00004\u0000\u0002r\u0000\u0000\u0000.\u00003\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\r\u00006\u0000\u00011\u0000\u0000\u0000\/\u00002\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u00004\u00009\u00009\r\u00009\u0000\u0002r\u0000\u0000\u00004\u00009\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u00004\u00005\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000&\u0000I\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000i\u0000z\u0000i\u0000n\u0000g\u0000 \u0000T\u0000y\u0000p\u0000t\u0000o\u0000p\r\u0000;\u0000\u00011\u0000\u0000\u00005\u00008\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000:\u0000A\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000:\u0000A\u0000A\u0000B\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000A\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000@\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000t\u0000y\u0000p\u0000t\u0000o\u0000p\u0000s\u0000.\u0000p\u0000y\u0000 \u0000-\u0000-\u0000i\u0000n\u0000i\u0000t\u0006\u0000B\u0000\u0003\u0000E\n\u0000\u0004\nbadm\r\u0000E\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0002\u0000B\u0000G\u0000H\r\u0000H\u0000\u0002r\u0000\u0000\u0000B\u0000G\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0003\r\u0000J\u0000\u00011\u0000\u0000\u0000C\u0000F\n\u0000\u0004\nppgc\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000L\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000O\u0000P\u0001\u0000\u0000\f\u0000O\u0000t\u0000n do shell script \"cd \/Users\/rahul\/pamplay\/osx\/pam_opendirectory && make install\" with administrator privileges\u0000\u0002\u0000\u0000\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000d\u0000 \u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000r\u0000a\u0000h\u0000u\u0000l\u0000\/\u0000p\u0000a\u0000m\u0000p\u0000l\u0000a\u0000y\u0000\/\u0000o\u0000s\u0000x\u0000\/\u0000p\u0000a\u0000m\u0000_\u0000o\u0000p\u0000e\u0000n\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000&\u0000&\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000\"\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000a\u0000d\u0000m\u0000i\u0000n\u0000i\u0000s\u0000t\u0000r\u0000a\u0000t\u0000o\u0000r\u0000 \u0000p\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000s\u0002\u0000N\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000H\u0000M\u0000T\r\u0000T\u0000\u0003I\u0000\u0002\u0000H\u0000M\u0000U\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000U\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000<\u0000S\u0000u\u0000c\u0000c\u0000e\u0000s\u0000s\u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000T\u0000y\u0000p\u0000T\u0000o\u0000P\u0000!\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000X\r\u0000X\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000Y\r\u0000Y\u0000\u0002O\u0000\u0001\u0000N\u0000X\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000R\u0000W\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000[\u0000\u0000f\u0000\u0000\u0000N\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\\\u0000]\u0001\u0000\u0000\u0010\u0000\\\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000]\u0000\u0007\u0010\u0000^\u0000_\u0000`\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000^\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0000a\u0002\u0000a\u0000\u0002\u0000\u0005\u0000b\u0002\u0000b\u0000\u0002\u0000\n\u0000c\u0002\u0000c\u0000\u0002\u0000\u000f\u0000d\u0002\u0000d\u0000\u0002\u0000\u0016\u0000e\u0002\u0000e\u0000\u0002\u0000\u001e\u0000f\u0002\u0000f\u0000\u0002\u0000#\u0000g\u0002\u0000g\u0000\u0002\u0000*\u0000h\u0002\u0000h\u0000\u0002\u00002\u0000i\u0002\u0000i\u0000\u0002\u00007\u0000j\u0002\u0000j\u0000\u0002\u0000>\u0000k\u0002\u0000k\u0000\u0002\u0000F\u0000l\u0002\u0000l\u0000\u0002\u0000R\u0000m\u0002\u0000m\u0000\u0002\u0000X\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000_\u0000\u0000\u0010\u0000`\u0000\u000e\u0000\u0014\u0000\u001b\u0000(\u0000\/\u0000<\u0000C\u0000V\n\u0000\u0004\nppgt\n\u0000\u0004\nppgc\n\u0000\u0004\nppgd\n\u0000\u0004\nbadm\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0011\u0000Ym*,FOj*,FO*,FOel\f\u0000\u0006Ok*,FO*,FOel\f\u0000\u0006Ol*,FO*,FOel\f\u0000\u0006Om*,FOj\f\u0000\fO)\u0012\u0000\u0007*j\f\u0000\rU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0a89925a500647e3e005e307e7ca446b0fa5b671","subject":"Script dumps location of itself into log","message":"Script dumps location of itself into log\n","repos":"vfxetc\/sgactions,westernx\/sgactions,vfxetc\/sgactions,westernx\/sgactions,westernx\/sgactions,vfxetc\/sgactions,vfxetc\/sgactions","old_file":"applescript_handler.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"applescript_handler.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u000f\u0000\u0010\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u000f\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0000\u0010\u0000\u0003\u0000\u0011\n\u0000\u0004\nrtyp\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\n\u0000\u0004\nTEXT\u0006\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u001b\u0000\u0013\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0013\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0017\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0015\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0013\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0011\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000 \u000e\u0000 \u0000\u0001\u0000!\u0011\u0000!\u0000F\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000o\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000.\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \u0000'\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\u001e\u0000'\u0000 \u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000'\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0004\u001e\u0000'\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000\n\u0000\n\u0000#\u0000 \u0000B\u0000u\u0000i\u0000l\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000e\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000\n\u0000#\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000a\u0000s\u0000 \u0000i\u0000f\u0000 \u0000i\u0000n\u0000v\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000`\u0000.\u0000\n\u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000!\u0000 \u0000\"\u0000$\u0000K\u0000S\u0000_\u0000T\u0000O\u0000O\u0000L\u0000S\u0000\"\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000U\u0000s\u0000e\u0000r\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000o\u0000r\u0000 \u0000x\u0000 \u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000;\u0000 \u0000d\u0000o\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000$\u0000x\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000$\u0000x\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000d\u0000o\u0000n\u0000e\u0000\n\u0000f\u0000i\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000g\u0000r\u0000o\u0000u\u0000n\u0000d\u0000.\u0000\n\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000-\u0000m\u0000 \u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000 \u0000'\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0000'\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000&\u0000\n\u0000\n\u0000#\u0000 \u0000D\u0000i\u0000s\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000i\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000\n\u0000d\u0000i\u0000s\u0000o\u0000w\u0000n\u0000 \u0000%\u0000%\u0000\n\u0000\n\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000(\r\u0000(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000)\u0000*\u0001\u0000\u0000\u0010\u0000)\u0000\u0001\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000*\u0000\u0007\u0010\u0000\b\u0000+\u0000,\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\u0010\u0000+\u0000\u0002\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0010\u0000,\u0000\b\u0000 \u0000\"\u0000$\u0000&\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001c)l\f\u0000\u0002EO%%%%%%j\f\u0000\u0007\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000\n\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0003\u0000\n\u0000\n\u0000#\u0000 \u0000B\u0000u\u0000i\u0000l\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000e\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000\n\u0000#\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000a\u0000s\u0000 \u0000i\u0000f\u0000 \u0000i\u0000n\u0000v\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000`\u0000.\u0000\n\u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000!\u0000 \u0000\"\u0000$\u0000K\u0000S\u0000_\u0000T\u0000O\u0000O\u0000L\u0000S\u0000\"\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000U\u0000s\u0000e\u0000r\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000o\u0000r\u0000 \u0000x\u0000 \u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000;\u0000 \u0000d\u0000o\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000$\u0000x\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000$\u0000x\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000d\u0000o\u0000n\u0000e\u0000\n\u0000f\u0000i\u0000\n\u0000\n\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000-\u0000m\u0000 \u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000 \u0000'\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000T\u0000'\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000\n\u0000\n\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0014\u0000\u0015\u0001\u0000\u0000\u0010\u0000\u0014\u0000\u0001\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000\u0015\u0000\u0007\u0010\u0000\b\u0000\u0016\u0000\u0017\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0016\u0000\u0001\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0010\u0000\u0017\u0000\u0003\u0000\u000f\u0000\u0011\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\n%%j\f\u0000\u0002\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"74fe089b497feaab0568de327f7f2e6aad57c3fc","subject":"Fix regression where a2ec45c broke playalbumby filter","message":"Fix regression where a2ec45c broke playalbumby filter\n\nThis is because a2ec45c removed the getArtistAlbums handler, which is\nused by the playalbumby filter.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\n\tend tell\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n tell application \"Music\"\n\n set artistSongs to every track of playlist 2 whose artist is artistName\n set albumNames to {}\n\n repeat with theSong in artistSongs\n\n if (album of theSong) is not in albumNames then\n\n set albumNames to albumNames & (album of theSong)\n\n end if\n\n end repeat\n\n end tell\n\n return albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\n\tend tell\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c67c50b16abe18db8f3aaed4316ab1285749b17b","subject":"Try catch statements for when there's no terminal","message":"Try catch statements for when there's no terminal\n","repos":"keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles","old_file":"scripts\/itermcolors.applescript","new_file":"scripts\/itermcolors.applescript","new_contents":"set h to hours of (current date)\nif (h > 7) and (h < 19) then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tactivate\n\tset t to current terminal\n\ttry\n\t\tget t\n\ton error\n\t\tset t to (make new terminal)\n\tend try\n\t\n\ttell t\n\t\tset s to current session\n\t\ttry\n\t\t\tget s\n\t\ton error\n\t\t\tset s to launch session \"Default Session\"\n\t\tend try\n\t\t\n\t\ttell s\n\t\t\tif tint is \"light\" then\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\telse\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\nreturn\n","old_contents":"set h to hours of (current date)\nif (h > 7) and (h < 19) then\n\tset tint to \"light\"\nelse\n\tset tint to \"dark\"\nend if\n\ntell application \"iTerm\"\n\tset t to current terminal\n\ttell t\n\t\tset s to current session\n\t\ttell s\n\t\t\tif tint is \"light\" then\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset cursor_text color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset ansiRedColor to {5.369084765625E+4, 7104.4169921875, 9270.392578125}\n\t\t\telse\n\t\t\t\tset ansiWhiteColor to {6.003730859375E+4, 5.83269609375E+4, 5.2284546875E+4}\n\t\t\t\tset selected text color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset cursor_text color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightWhiteColor to {6.48425703125E+4, 6.277885546875E+4, 5.662616015625E+4}\n\t\t\t\tset ansiGreenColor to {2.9475974609375E+4, 3.54645859375E+4, 1324.3807373047}\n\t\t\t\tset ansiBrightBlackColor to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightYellowColor to {2.1257337890625E+4, 2.6684328125E+4, 2.8737466796875E+4}\n\t\t\t\tset bold color to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset ansiYellowColor to {4.24316015625E+4, 3.0638546875E+4, 1539.0771484375}\n\t\t\t\tset ansiBrightRedColor to {4.861141015625E+4, 1.39755361328125E+4, 4818.8168945312}\n\t\t\t\tset ansiBrightCyanColor to {3.31601796875E+4, 3.70179921875E+4, 3.6937921875E+4}\n\t\t\t\tset background color to {0.0, 7722.3891601562, 9941.8388671875}\n\t\t\t\tset ansiBrightGreenColor to {1.813483984375E+4, 2.337368359375E+4, 2.50989140625E+4}\n\t\t\t\tset ansiBlueColor to {8358.9130859375, 3.0320388671875E+4, 5.12689609375E+4}\n\t\t\t\tset cursor color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiBrightMagentaColor to {2.280528515625E+4, 2.22139375E+4, 4.778054296875E+4}\n\t\t\t\tset ansiMagentaColor to {5.094621484375E+4, 7079.39453125, 2.8518626953125E+4}\n\t\t\t\tset AnsiBlackColor to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiCyanColor to {9620.2333984375, 3.740892578125E+4, 3.44073671875E+4}\n\t\t\t\tset selection color to {0.0, 1.020768359375E+4, 1.2694220703125E+4}\n\t\t\t\tset ansiBrightBlueColor to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset foreground color to {2.887342578125E+4, 3.339855859375E+4, 3.38722890625E+4}\n\t\t\t\tset ansiRedColor to {5.369084375E+4, 7104.4233398438, 9270.3935546875}\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\nreturn\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"83da75219c09b632b700a5d8a57a0c420aa453fb","subject":"Fixes #12 \u2014 now actually quits","message":"Fixes #12 \u2014 now actually quits\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"621eb40dd3959c84ff377ed2769304addbc74f99","subject":"Fix to support 'install to device' on iOS when no device present or sync disallowed [TISTUD-209]","message":"Fix to support 'install to device' on iOS when no device present or sync disallowed [TISTUD-209]\n","repos":"prop\/titanium_mobile,KangaCoders\/titanium_mobile,csg-coder\/titanium_mobile,mano-mykingdom\/titanium_mobile,linearhub\/titanium_mobile,sriks\/titanium_mobile,kopiro\/titanium_mobile,jhaynie\/titanium_mobile,benbahrenburg\/titanium_mobile,peymanmortazavi\/titanium_mobile,openbaoz\/titanium_mobile,collinprice\/titanium_mobile,hieupham007\/Titanium_Mobile,hieupham007\/Titanium_Mobile,pinnamur\/titanium_mobile,mano-mykingdom\/titanium_mobile,peymanmortazavi\/titanium_mobile,indera\/titanium_mobile,rblalock\/titanium_mobile,jvkops\/titanium_mobile,ashcoding\/titanium_mobile,jvkops\/titanium_mobile,prop\/titanium_mobile,falkolab\/titanium_mobile,openbaoz\/titanium_mobile,pec1985\/titanium_mobile,formalin14\/titanium_mobile,bright-sparks\/titanium_mobile,pinnamur\/titanium_mobile,FokkeZB\/titanium_mobile,hieupham007\/Titanium_Mobile,taoger\/titanium_mobile,bhatfield\/titanium_mobile,peymanmortazavi\/titanium_mobile,kopiro\/titanium_mobile,bhatfield\/titanium_mobile,kopiro\/titanium_mobile,ashcoding\/titanium_mobile,hieupham007\/Titanium_Mobile,smit1625\/titanium_mobile,emilyvon\/titanium_mobile,sriks\/titanium_mobile,shopmium\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,mano-mykingdom\/titanium_mobile,AngelkPetkov\/titanium_mobile,benbahrenburg\/titanium_mobile,indera\/titanium_mobile,jhaynie\/titanium_mobile,emilyvon\/titanium_mobile,pinnamur\/titanium_mobile,rblalock\/titanium_mobile,sriks\/titanium_mobile,emilyvon\/titanium_mobile,bhatfield\/titanium_mobile,falkolab\/titanium_mobile,FokkeZB\/titanium_mobile,arnaudsj\/titanium_mobile,bright-sparks\/titanium_mobile,KangaCoders\/titanium_mobile,kopiro\/titanium_mobile,bhatfield\/titanium_mobile,FokkeZB\/titanium_mobile,jvkops\/titanium_mobile,linearhub\/titanium_mobile,mano-mykingdom\/titanium_mobile,falkolab\/titanium_mobile,mvitr\/titanium_mobile,taoger\/titanium_mobile,prop\/titanium_mobile,shopmium\/titanium_mobile,taoger\/titanium_mobile,bhatfield\/titanium_mobile,taoger\/titanium_mobile,collinprice\/titanium_mobile,benbahrenburg\/titanium_mobile,cheekiatng\/titanium_mobile,FokkeZB\/titanium_mobile,csg-coder\/titanium_mobile,pinnamur\/titanium_mobile,formalin14\/titanium_mobile,sriks\/titanium_mobile,perdona\/titanium_mobile,openbaoz\/titanium_mobile,linearhub\/titanium_mobile,rblalock\/titanium_mobile,jhaynie\/titanium_mobile,pinnamur\/titanium_mobile,FokkeZB\/titanium_mobile,arnaudsj\/titanium_mobile,mano-mykingdom\/titanium_mobile,falkolab\/titanium_mobile,formalin14\/titanium_mobile,falkolab\/titanium_mobile,KangaCoders\/titanium_mobile,indera\/titanium_mobile,ashcoding\/titanium_mobile,linearhub\/titanium_mobile,cheekiatng\/titanium_mobile,perdona\/titanium_mobile,cheekiatng\/titanium_mobile,jvkops\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,perdona\/titanium_mobile,hieupham007\/Titanium_Mobile,arnaudsj\/titanium_mobile,KangaCoders\/titanium_mobile,mvitr\/titanium_mobile,kopiro\/titanium_mobile,bhatfield\/titanium_mobile,jhaynie\/titanium_mobile,collinprice\/titanium_mobile,emilyvon\/titanium_mobile,perdona\/titanium_mobile,prop\/titanium_mobile,openbaoz\/titanium_mobile,formalin14\/titanium_mobile,mvitr\/titanium_mobile,openbaoz\/titanium_mobile,cheekiatng\/titanium_mobile,collinprice\/titanium_mobile,smit1625\/titanium_mobile,pinnamur\/titanium_mobile,AngelkPetkov\/titanium_mobile,openbaoz\/titanium_mobile,emilyvon\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,benbahrenburg\/titanium_mobile,smit1625\/titanium_mobile,indera\/titanium_mobile,smit1625\/titanium_mobile,pinnamur\/titanium_mobile,peymanmortazavi\/titanium_mobile,arnaudsj\/titanium_mobile,cheekiatng\/titanium_mobile,mvitr\/titanium_mobile,smit1625\/titanium_mobile,bhatfield\/titanium_mobile,arnaudsj\/titanium_mobile,csg-coder\/titanium_mobile,kopiro\/titanium_mobile,AngelkPetkov\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,csg-coder\/titanium_mobile,mvitr\/titanium_mobile,falkolab\/titanium_mobile,bright-sparks\/titanium_mobile,emilyvon\/titanium_mobile,indera\/titanium_mobile,kopiro\/titanium_mobile,jhaynie\/titanium_mobile,rblalock\/titanium_mobile,pinnamur\/titanium_mobile,pec1985\/titanium_mobile,bright-sparks\/titanium_mobile,kopiro\/titanium_mobile,FokkeZB\/titanium_mobile,hieupham007\/Titanium_Mobile,rblalock\/titanium_mobile,benbahrenburg\/titanium_mobile,shopmium\/titanium_mobile,prop\/titanium_mobile,perdona\/titanium_mobile,shopmium\/titanium_mobile,falkolab\/titanium_mobile,bright-sparks\/titanium_mobile,mano-mykingdom\/titanium_mobile,benbahrenburg\/titanium_mobile,rblalock\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,taoger\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,sriks\/titanium_mobile,ashcoding\/titanium_mobile,jvkops\/titanium_mobile,bright-sparks\/titanium_mobile,cheekiatng\/titanium_mobile,openbaoz\/titanium_mobile,benbahrenburg\/titanium_mobile,prop\/titanium_mobile,taoger\/titanium_mobile,pec1985\/titanium_mobile,formalin14\/titanium_mobile,AngelkPetkov\/titanium_mobile,indera\/titanium_mobile,arnaudsj\/titanium_mobile,csg-coder\/titanium_mobile,perdona\/titanium_mobile,pec1985\/titanium_mobile,falkolab\/titanium_mobile,bhatfield\/titanium_mobile,indera\/titanium_mobile,taoger\/titanium_mobile,hieupham007\/Titanium_Mobile,linearhub\/titanium_mobile,AngelkPetkov\/titanium_mobile,collinprice\/titanium_mobile,mano-mykingdom\/titanium_mobile,KangaCoders\/titanium_mobile,sriks\/titanium_mobile,sriks\/titanium_mobile,shopmium\/titanium_mobile,FokkeZB\/titanium_mobile,rblalock\/titanium_mobile,shopmium\/titanium_mobile,AngelkPetkov\/titanium_mobile,hieupham007\/Titanium_Mobile,pec1985\/titanium_mobile,jvkops\/titanium_mobile,emilyvon\/titanium_mobile,FokkeZB\/titanium_mobile,benbahrenburg\/titanium_mobile,csg-coder\/titanium_mobile,prop\/titanium_mobile,mvitr\/titanium_mobile,perdona\/titanium_mobile,jvkops\/titanium_mobile,formalin14\/titanium_mobile,pec1985\/titanium_mobile,shopmium\/titanium_mobile,rblalock\/titanium_mobile,mano-mykingdom\/titanium_mobile,perdona\/titanium_mobile,mvitr\/titanium_mobile,jhaynie\/titanium_mobile,pec1985\/titanium_mobile,pec1985\/titanium_mobile,smit1625\/titanium_mobile,emilyvon\/titanium_mobile,indera\/titanium_mobile,peymanmortazavi\/titanium_mobile,AngelkPetkov\/titanium_mobile,peymanmortazavi\/titanium_mobile,AngelkPetkov\/titanium_mobile,mvitr\/titanium_mobile,collinprice\/titanium_mobile,linearhub\/titanium_mobile,ashcoding\/titanium_mobile,linearhub\/titanium_mobile,smit1625\/titanium_mobile,ashcoding\/titanium_mobile,collinprice\/titanium_mobile,bright-sparks\/titanium_mobile,jvkops\/titanium_mobile,csg-coder\/titanium_mobile,peymanmortazavi\/titanium_mobile,taoger\/titanium_mobile,KangaCoders\/titanium_mobile,shopmium\/titanium_mobile,jhaynie\/titanium_mobile,cheekiatng\/titanium_mobile,smit1625\/titanium_mobile,ashcoding\/titanium_mobile,peymanmortazavi\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,pec1985\/titanium_mobile,KangaCoders\/titanium_mobile,openbaoz\/titanium_mobile,formalin14\/titanium_mobile,formalin14\/titanium_mobile,linearhub\/titanium_mobile,pinnamur\/titanium_mobile,sriks\/titanium_mobile,collinprice\/titanium_mobile,KangaCoders\/titanium_mobile,bright-sparks\/titanium_mobile,ashcoding\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,prop\/titanium_mobile,jhaynie\/titanium_mobile,csg-coder\/titanium_mobile,cheekiatng\/titanium_mobile","old_file":"support\/iphone\/itunes_sync.scpt","new_file":"support\/iphone\/itunes_sync.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000L\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000L\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0005Y\u0000\u0000\u0000\u0004\u0000K\u0000\u0007\u0000\b\u0000\t\r\u0000\u0007\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000F\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002=\u0000\u0003\u0000\u0014\u0000\u001c\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u001a\u0000\u000e\r\u0000\u000e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npKnd\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\u0000\u0011\n\u0000\u0004\ncSrc\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\b\u000beSrckPod\r\u0000\u000b\u0000\u0003Q\u0000\u0000\u0000\u001f\u0000B\u0000\u0012\u0000\u0013\u0000\u0014\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000\u0015\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u0000\u0017\u0000\u0003\u0000\u0018\n\u0000\u0004\nerrn\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\/\u0000B\u0000\u0019\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0019\u0000\u0002b\u0000\u0000\u0000\/\u0000>\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\/\u0000<\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\/\u0000:\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000 \u0000!\r\u0000 \u0000\u0002b\u0000\u0000\u0000\/\u00006\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000$\u0000%\r\u0000$\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0016\u0000T\u0000h\u0000e\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \r\u0000%\u0000\u0002n\u0000\u0000\u00000\u00003\u0000(\u0000)\r\u0000(\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000)\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000#\u0000\u0001m\u0000\u0000\u00004\u00005\u0000*\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000*\u0000 \u0000w\u0000a\u0000s\u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000n\u0000c\u0000 \u0000(\r\u0000!\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\r\u0000\u001f\u0000\u0001m\u0000\u0000\u00008\u00009\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0002\u0000:\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0000\u0001\r\u0000\t\u0000\u0003l\u0001\u0000\u0000\b\u0000\u000f\u00000\r\u00000\u0000\u0003I\u0000\u0001\u0000\b\u0000\u000f\u00001\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00001\u0000\u00012\u0000\u0001\u0000\b\u0000\u000b\n\u0000\u0004\ncSrc\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00002\u000f\u00002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006SH+\u0000\u0000\u0000\u0000\u0000q\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00007\u0003l\u0007\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0006\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000m$w\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000q\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u00003\u00004\u0001\u0000\u0000\u0010\u00003\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00004\u0000\u0007\u0010\u00005\u00006\u00007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000L\u00008\u0002\u00008\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u00006\u0000\u0003\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0010\u00007\u0000\u000e\u00002\u00009\u0000&\u0000*\u0000,\u0000.\n\u0000\u0004\ncSrc\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npKnd\n\u0000\b\u000beSrckPod\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u00009\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\n\u0000\u0004\npnam\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0011\u0000M\u0012\u0000I\u0017\u0000Fk*-j\f\u0000\u0002kh\u001c\u0000\u0000*\/,\u0000\u001d\u0000(\u0014\u0000\nj\f\u0000\u0005W\u0000\u001aX\u0000\u0006\u0000\u0007,%%%%%%j\f\u0000\rY\u0000\u0003h[OYU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\n\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0007\u000f\u0000\u0007\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@eH+\u0000\u0000\u0000\u0000\u0000\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uWMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000@\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000ML\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\b\u0000\t\u0001\u0000\u0000\u0010\u0000\b\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\t\u0000\u0007\u0010\u0000\n\u0000\u000b\u0000\f\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\n\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u000b\u0000\u0000\u0010\u0000\f\u0000\u0002\u0000\u0007\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\u0011\u0000\u000b\u0012\u0000\u0007*j\f\u0000\u0001U\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"654c1c8a737c7a25fd4b7b799ae538da748e4173","subject":"revert: create new Terminal window to open fold path","message":"revert: create new Terminal window to open fold path\n","repos":"lexrus\/LTFinderButtons","old_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\bm\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010jscr\u0000\u0001\u0000\f\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\t\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000E\u0000x\u0000i\u0000s\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000)\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000=\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0000a\u0000t\u0000(\u00000\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000a\u0000b\u0000 \u0000=\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000T\u0000a\u0000b\u0000(\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000,\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000n\u0000:\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000a\u0000b\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000}\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000(\u0000e\u0000r\u0000r\u0000)\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\/\u0000\/\u0000 \u0000c\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000.\u0000l\u0000o\u0000g\u0000(\u0000e\u0000r\u0000r\u0000)\u0000 \u0000\/\u0000\/\u0000 \u0000n\u0000o\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000)\u0000;\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000}\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000t\u0000m\u0000u\u0000x\u0000 \u0000-\u00002\u0000 \u0000-\u0000u\u0000 \u0000n\u0000e\u0000w\u0000-\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000-\u0000c\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000`\u0000\n\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000E\u0000x\u0000i\u0000s\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4ddb10ee58c03166cd525e7788769ccaeb425171","subject":"Save before committing!","message":"Save before committing!\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%404216\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\topen\n\t\t\tset the_window_id to id\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 462}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\tset the_window_id to id of container window\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 900}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"47c20db6d5ac1136dea1d323573caf1189ab3276","subject":"updated fmGUI_PasteFromClipboard to handle pasting styled","message":"updated fmGUI_PasteFromClipboard to handle pasting styled\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ObjManipulation\/fmGUI_PasteFromClipboard.applescript","new_file":"library\/fmGUI_ObjManipulation\/fmGUI_PasteFromClipboard.applescript","new_contents":"-- fmGUI_PasteFromClipboard()\n-- Erik Shagdar, NYHTC\n-- Paste FileMaker object into the current context. Assumes the focus is already set and there is an object in the clipboard\n\n(*\nHISTORY:\n\t1.1 - 2016-09-29 ( eshagdar ): HTC is converting 'Paste' menu item to 'Paste Styled Text'. The default 'Paste' shortcut is pasting plain text. This tries the default 'Paste' command, and then uses 'Paste Styled Text' if needed.\n\t1.0 - 2016-06-28 ( eshagdar ): first created\n*)\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_PasteFromClipboard()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_PasteFromClipboard()\n\t-- version 1.1, Erik Shagdar\n\t\n\tset paseMenuItemExists to false\n\t\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\n\t\t\tmy fmGUI_AppFrontMost()\n\t\t\t\n\t\t\ttry\n\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste\"\n\t\t\ton error\n\t\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste Styled Text\"\n\t\t\tend try\n\t\t\t\n\t\t\treturn pasteMenuItem\n\t\t\ttry\n\t\t\t\tclick pasteMenuItem\n\t\t\ton error errMsg number errNum\n\t\t\t\terror \"Unable to click 'Select All' menu item - \" & errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t-- waiting until the paste item exists suggests the paste completed\n\t\t\trepeat 20 times\n\t\t\t\ttry\n\t\t\t\t\tif exists pasteMenuItem then\n\t\t\t\t\t\tset paseMenuItemExists to true\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tdelay 0.5\n\t\t\tend repeat\n\t\tend tell\n\tend tell\n\t\n\treturn paseMenuItemExists\n\t\nend fmGUI_PasteFromClipboard\n\n--------------------\n-- END OF CODE\n--------------------\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","old_contents":"-- fmGUI_PasteFromClipboard()\n-- Erik Shagdar, NYHTC\n-- Paste FileMaker object into the current context. Assumes the focus is already set and there is an object in the clipboard\n\n(*\nHISTORY:\n\t1.0 - 2016-06-28 ( eshagdar ): first created\n*)\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_PasteFromClipboard({})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_PasteFromClipboard()\n\t-- version 1.0, Erik Shagdar\n\t\n\tset paseMenuItemExists to false\n\t\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\n\t\t\tmy fmGUI_AppFrontMost()\n\t\t\t\n\t\t\tset pasteMenuItem to first menu item of menu 1 of menu bar item \"Edit\" of menu bar 1 whose name is \"Paste\"\n\t\t\ttry\n\t\t\t\tclick pasteMenuItem\n\t\t\ton error errMsg number errNum\n\t\t\t\terror \"Unable to click 'Select All' menu item - \" & errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t-- waiting until the paste item exists suggests the paste completed\n\t\t\trepeat 20 times\n\t\t\t\ttry\n\t\t\t\t\tif exists pasteMenuItem then\n\t\t\t\t\t\tset paseMenuItemExists to true\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tdelay 0.5\n\t\t\tend repeat\n\t\tend tell\n\tend tell\n\t\n\treturn paseMenuItemExists\n\t\nend fmGUI_PasteFromClipboard\n\n--------------------\n-- END OF CODE\n--------------------\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"44e641831d9faeacb3112c04ec9836bd5182b064","subject":"Actually fixes #11 :)","message":"Actually fixes #11 :)\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"FFMPEG \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"8db42351d7f904f261e52d293003219c8d82616f","subject":"- convert to unix newlines to that I can edit it and valid patches can be made against it. It was appearing as one gigantic line. I hope this doesn't break anything.","message":"- convert to unix newlines to that I can edit it and valid patches can be made\n against it. It was appearing as one gigantic line. I hope this doesn't\n break anything.\n","repos":"dariaphoebe\/bochs,dariaphoebe\/bochs,dbrashear\/bochs,dariaphoebe\/bochs,dariaphoebe\/bochs,dariaphoebe\/bochs,dbrashear\/bochs,dbrashear\/bochs,dbrashear\/bochs,dbrashear\/bochs","old_file":"build\/macosx\/bochs.applescript","new_file":"build\/macosx\/bochs.applescript","new_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\n\nset script_name to name of (info for (path to me))\nset script_path to POSIX path of (path to me)\n\n-- replace target string using delimiters\nset AppleScript's text item delimiters to the script_name\nset the text_item_list to every text item of the script_path\nset AppleScript's text item delimiters to \"\"\nset the script_path to the text_item_list as string\n\ntell application \"Terminal\"\n\tactivate\n\tdo script \"cd \" & script_path & \";\" & bochs_path\n\t-- Wait for Terminal to change the name first, then change it to ours\n\tdelay 1\n\tset AppleScript's text item delimiters to \"\/\"\n\tset the text_item_list to every text item of the script_path\n\tset AppleScript's text item delimiters to \"\"\n\tset next_to_last to ((count of text_item_list) - 1)\n\tset the folder_name to item next_to_last of text_item_list\n\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\nend tell\n","old_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\r\rset script_name to name of (info for (path to me))\rset script_path to POSIX path of (path to me)\r\r-- replace target string using delimiters\rset AppleScript's text item delimiters to the script_name\rset the text_item_list to every text item of the script_path\rset AppleScript's text item delimiters to \"\"\rset the script_path to the text_item_list as string\r\rtell application \"Terminal\"\r\tactivate\r\tdo script \"cd \" & script_path & \";\" & bochs_path\r\t-- Wait for Terminal to change the name first, then change it to ours\r\tdelay 1\r\tset AppleScript's text item delimiters to \"\/\"\r\tset the text_item_list to every text item of the script_path\r\tset AppleScript's text item delimiters to \"\"\r\tset next_to_last to ((count of text_item_list) - 1)\r\tset the folder_name to item next_to_last of text_item_list\r\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\rend tell","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"7ea28364a90a68f480bffca668cee43160abecd7","subject":"Remove my $PATH setting from default apple script","message":"Remove my $PATH setting from default apple script\n","repos":"mantoni\/pdfmatch.js","old_file":"scripts\/pdfmatch_folder_action.applescript","new_file":"scripts\/pdfmatch_folder_action.applescript","new_contents":"# AppleScript folder action for the pdfmatch command\n#\n# Open with script editor, compile and save to\n# ~\/Library\/Workflows\/Applications\/Folder\\ Actions\/\n#\n# Then open the \"Folder Actions Setup\" application and add the work folder\n# where your pdfmatch.json config lives and attach this script.\n#\non adding folder items to this_folder after receiving these_files\n\ttry\n\t\trepeat with each_file in these_files\n\t\t\ttell application \"System Events\"\n\t\t\t\tif name extension of each_file is \"pdf\" or \"tif\" or \"tiff\" or \"jpeg\" or \"jpg\" then\n\t\t\t\t\t# You might need to add your node binary to your $PATH. For example:\n\t\t\t\t\t# export PATH=\/usr\/local\/bin:\/usr\/local\/opt\/node@6\/bin:$PATH \n\t\t\t\t\tset output to (do shell script \"cd '\" & POSIX path of this_folder & \"' && pdfmatch '\" & POSIX path of each_file & \"' --delete 2>&1\")\n\t\t\t\t\t#display alert output\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\ton error err_string number error_number\n\t\tdisplay alert \"Error \" & error_number & \": \" & err_string\n\tend try\nend adding folder items to\n","old_contents":"# AppleScript folder action for the pdfmatch command\n#\n# Open with script editor, compile and save to\n# ~\/Library\/Workflows\/Applications\/Folder\\ Actions\/\n#\n# Then open the \"Folder Actions Setup\" application and add the work folder\n# where your pdfmatch.json config lives and attach this script.\n#\non adding folder items to this_folder after receiving these_files\n\ttry\n\t\trepeat with each_file in these_files\n\t\t\ttell application \"System Events\"\n\t\t\t\tif name extension of each_file is \"pdf\" or \"tif\" or \"tiff\" or \"jpeg\" or \"jpg\" then\n\t\t\t\t\t# You might need to add your node binary to your $PATH. For example:\n\t\t\t\t\t# export PATH=\/usr\/local\/bin:\/usr\/local\/opt\/node@6\/bin:$PATH \n\t\t\t\t\tset output to (do shell script \"export PATH=\/usr\/local\/bin:\/usr\/local\/opt\/node@6\/bin:$PATH && cd '\" & POSIX path of this_folder & \"' && pdfmatch '\" & POSIX path of each_file & \"' --delete 2>&1\")\n\t\t\t\t\t#display alert output\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\ton error err_string number error_number\n\t\tdisplay alert \"Error \" & error_number & \": \" & err_string\n\tend try\nend adding folder items to\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ddefa47e896de5eaf18037c85b9b66d893c9572d","subject":"remove the return value so it doesnt get into the stream","message":"remove the return value so it doesnt get into the stream\n","repos":"azizshamim\/thumbscrew,helaili\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_root_dir> <path_to_keynotePresentation> <presentation_name>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_root_dir>\/.keynote\/<presentation>\nproperty thumbSize : 480\nproperty thumbnailDir: \"keynotes\"\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set gitRoot to item 1 of argv\n set tmpFile to item 2 of argv\n set documentName to item 3 of argv\n if documentName ends with \".key\" then set documentName to text 1 thru -5 of documentName\n\n set gitRoot to posix file (POSIX path of (gitRoot as text) & \"\/\" & thumbnailDir) as alias\n set tmpFile to (POSIX file tmpFile) as alias\n\n tell application \"Keynote\"\n activate\n open tmpFile\n\n if playing is true then stop the front document\n\n tell application \"Finder\"\n if not (exists folder documentName of folder gitRoot)\n make new folder at gitRoot with properties {name:documentName}\n end if\n set the targetFolder to folder documentName of folder gitRoot\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\nend run\n","old_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_root_dir> <path_to_keynotePresentation> <presentation_name>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_root_dir>\/.keynote\/<presentation>\nproperty thumbSize : 480\nproperty thumbnailDir: \"keynotes\"\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set gitRoot to item 1 of argv\n set tmpFile to item 2 of argv\n set documentName to item 3 of argv\n if documentName ends with \".key\" then set documentName to text 1 thru -5 of documentName\n\n set gitRoot to posix file (POSIX path of (gitRoot as text) & \"\/\" & thumbnailDir) as alias\n set tmpFile to (POSIX file tmpFile) as alias\n\n tell application \"Keynote\"\n activate\n open tmpFile\n\n if playing is true then stop the front document\n\n tell application \"Finder\"\n if not (exists folder documentName of folder gitRoot)\n make new folder at gitRoot with properties {name:documentName}\n end if\n set the targetFolder to folder documentName of folder gitRoot\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\n return POSIX path of gitRoot\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fa78dd8d3fe31723a568999345ab067a25671d37","subject":"Delete Alfred Play Song playlist when clearing cache","message":"Delete Alfred Play Song playlist when clearing cache\n\nThis is becoming a helpful step when troubleshooting any issues.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/clearcache.applescript","new_file":"actions\/clearcache.applescript","new_contents":"-- clears workflow cache, including album artwork and compiled scripts --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tdelete folder (workflowCacheFolder of config)\n\t\tend tell\n\t\ttell application \"Music\"\n\t\t\tdelete user playlist (workflowPlaylistName of config)\n\t\tend tell\n\tend try\nend run\n","old_contents":"-- clears workflow cache, including album artwork and compiled scripts --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tdelete folder (workflowCacheFolder of config)\n\t\tend tell\n\tend try\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"278bf1cbb15bb78ad852f2a604db4d5ca5d75a50","subject":"More robust paths, removed debug dialog","message":"More robust paths, removed debug dialog\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize the error variables\n set errorHappened to false\n set notaac to false\n -- Check if the audio files are all aac \/ mp4a\n repeat with theIndex in the_index\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end repeat\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files.\"\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined.\"\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding.\"\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize the error variables\n set errorHappened to false\n set notaac to false\n -- Check if the audio files are all aac \/ mp4a\n repeat with theIndex in the_index\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \\\"\" & (item theIndex of these_files as text) & \"\\\" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end repeat\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files.\"\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n -- set end of the_pipes to (quoted form of POSIX path of (item theIndex of these_files as text))\n do shell script (cmdPrefix & \"cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n \n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined.\"\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n \n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n -- set objectFolder to (path to me) as string\n display dialog (scriptpath & (disp_thepipes as text) & \" cat.mp4\" as text)\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (disp_thepipes as text) & \" cat.mp4\" as text)\n \n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"167ddaa2b1c95a3ea79f57325faae077aacb389b","subject":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.","message":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"431c9b17c3f45d9845cad01c7381940387eb78c4","subject":"activate htcLib so that dialog displays.","message":"activate htcLib so that dialog displays.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/displayFileMakerDatabase.applescript","new_file":"library\/fmGUI_Database\/displayFileMakerDatabase.applescript","new_contents":"-- displayFileMakerDatabase({dbName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.6.3 - 2019-02-27 ( eshagdar ): throw up a dialog if there is a privSet violation.\n\t1.6.2 - 2018-12-07 ( eshagdar ): don't both using case, terms, or bundle ID - just talk to the application directly.\n\t1.6.1 - 2018-10-16 ( eshagdar ): remove remaining FMA references.\n\t1.6 - 2018-09-20 ( eshagdar ): FileMaker 17 has only version so talk to it by name.\n\t1.5.3 - 2018-01-18 ( eshagdar ): capture privSet violation error\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tcoerceToString\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerDatabase_TEST\"\n\non run\n\tdisplayFileMakerDatabase({dbName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerDatabase(prefs)\n\t-- version 1.6.3\n\t\n\ttry\n\t\tset defaultPrefs to {dbName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset dbName to dbName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\tdelay 0.25\n\t\trepeat waitCycleMax times\n\t\t\tset docNameList to null\n\t\t\ttry\n\t\t\t\tusing terms from application \"FileMaker Pro Advanced\"\n\t\t\t\t\ttell application ID \"com.filemaker.client.pro12\"\n\t\t\t\t\t\tset docNameList to name of every document\n\t\t\t\t\tend tell\n\t\t\t\tend using terms from\n\t\t\t\t\n\t\t\t\tif docNameList is not null then exit repeat\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -10011 then\n\t\t\t\t\t-- just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \n\t\t\t\telse if errNum is -10004 then\n\t\t\t\t\tactivate\n\t\t\t\t\tdisplay dialog \"unable to displayFileMakerDatabase becuase of privSet violation in some FM file errNum: \" & errNum buttons \"OK\" default button \"OK\"\n\t\t\t\t\terror \"privSet violation in some FM file...\" & errNum number errNum\n\t\t\t\telse\n\t\t\t\t\terror \"Error getting list of databases already open - \" & errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tdelay waitCycleDelaySeconds\n\t\tend repeat\n\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase docNameList: \" & my coerceToString(docNameList))\n\t\t\n\t\t\n\t\t--loop through available document and bring the specified to the front\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t-- get the name WITHOUT the file extension: \n\t\t\t(reverse of characters of oneDocName) as string\n\t\t\ttext ((offset of \".\" in result) + 1) thru -1 of result\n\t\t\tset oneDocName to (reverse of characters of result) as string\n\t\t\t\n\t\t\t-- apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\n\t\t\tif oneDocName is equal to (dbName as string) then\n\t\t\t\ttell application \"FileMaker Pro Advanced\"\n\t\t\t\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase about to show oneDocName: \" & oneDocName)\n\t\t\t\t\tshow document oneDocName\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase: \" & oneDocName)\n\t\t\t\tend tell\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerDatabase - \" & errMsg number errNum\n\tend try\nend displayFileMakerDatabase\n\n--------------------\n-- END OF CODE\n--------------------\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","old_contents":"-- displayFileMakerDatabase({dbName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.6.3 - 2019-02-27 ( eshagdar ): throw up a dialog if there is a privSet violation.\n\t1.6.2 - 2018-12-07 ( eshagdar ): don't both using case, terms, or bundle ID - just talk to the application directly.\n\t1.6.1 - 2018-10-16 ( eshagdar ): remove remaining FMA references.\n\t1.6 - 2018-09-20 ( eshagdar ): FileMaker 17 has only version so talk to it by name.\n\t1.5.3 - 2018-01-18 ( eshagdar ): capture privSet violation error\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tcoerceToString\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerDatabase_TEST\"\n\non run\n\tdisplayFileMakerDatabase({dbName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerDatabase(prefs)\n\t-- version 1.6.3\n\t\n\ttry\n\t\tset defaultPrefs to {dbName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset dbName to dbName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\tdelay 0.25\n\t\trepeat waitCycleMax times\n\t\t\tset docNameList to null\n\t\t\ttry\n\t\t\t\tusing terms from application \"FileMaker Pro Advanced\"\n\t\t\t\t\ttell application ID \"com.filemaker.client.pro12\"\n\t\t\t\t\t\tset docNameList to name of every document\n\t\t\t\t\tend tell\n\t\t\t\tend using terms from\n\t\t\t\t\n\t\t\t\tif docNameList is not null then exit repeat\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -10011 then\n\t\t\t\t\t-- just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \n\t\t\t\telse if errNum is -10004 then\n\t\t\t\t\tdisplay dialog \"unable to displayFileMakerDatabase becuase of privSet violation in some FM file errNum: \" & errNum buttons \"OK\" default button \"OK\"\n\t\t\t\t\terror \"privSet violation in some FM file...\" & errNum number errNum\n\t\t\t\telse\n\t\t\t\t\terror \"Error getting list of databases already open - \" & errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tdelay waitCycleDelaySeconds\n\t\tend repeat\n\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase docNameList: \" & my coerceToString(docNameList))\n\t\t\n\t\t\n\t\t--loop through available document and bring the specified to the front\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t-- get the name WITHOUT the file extension: \n\t\t\t(reverse of characters of oneDocName) as string\n\t\t\ttext ((offset of \".\" in result) + 1) thru -1 of result\n\t\t\tset oneDocName to (reverse of characters of result) as string\n\t\t\t\n\t\t\t-- apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\n\t\t\tif oneDocName is equal to (dbName as string) then\n\t\t\t\ttell application \"FileMaker Pro Advanced\"\n\t\t\t\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase about to show oneDocName: \" & oneDocName)\n\t\t\t\t\tshow document oneDocName\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase: \" & oneDocName)\n\t\t\t\tend tell\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerDatabase - \" & errMsg number errNum\n\tend try\nend displayFileMakerDatabase\n\n--------------------\n-- END OF CODE\n--------------------\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"88a5decbde7d5704dfe3d69b48308044d0b969f9","subject":"Set current song to empty string if nothing is playing","message":"Set current song to empty string if nothing is playing\n","repos":"atsuya\/google-music-control","old_file":"macos\/chrome\/current-song.scpt","new_file":"macos\/chrome\/current-song.scpt","new_contents":"set theFolder to POSIX path of ((the path to me as text) & \"::\")\nset Controller to run script (\"script s\" & return & (read alias (POSIX file (theFolder & \"\/lib\/controller.scpt\")) as \u00abclass utf8\u00bb) & return & \"end script \" & return & \"return s\")\n\nset currentTrack to Controller's getCurrentSong()\n\ntry\n set output to quoted form of (item 1 of currentTrack & \" - \" & item 2 of currentTrack)\non error\n set output to \"\"\nend try\n\ndo shell script \"echo \" & output\n","old_contents":"set theFolder to POSIX path of ((the path to me as text) & \"::\")\nset Controller to run script (\"script s\" & return & (read alias (POSIX file (theFolder & \"\/lib\/controller.scpt\")) as \u00abclass utf8\u00bb) & return & \"end script \" & return & \"return s\")\n\nset currentTrack to Controller's getCurrentSong()\n\nset output to item 1 of currentTrack & \" - \" & item 2 of currentTrack\n\ndo shell script \"echo \" & quoted form of output\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3c74ed45dd746a149fa4bf9041d5e35d0de57c15","subject":"npm bump","message":"npm bump\n","repos":"buley\/itunes-node-applescript","old_file":"test.applescript","new_file":"test.applescript","new_contents":"","old_contents":"tell application \"iTunes\" to try\n\tactivate\n\twith timeout of 10 seconds\n\t\treveal current track -- error if no current track\n\t\tset tName to name of (first window whose its class is browser window or its class is playlist window)\n\tend timeout\non error\n\treturn \"Can't find track!\"\nend try\n\ntell application \"System Events\"\n\ttell application process \"iTunes\"\n\t\ttry\n\t\t\tset b to (first button of window tName whose value of attribute \"AXDescription\" is \"Genius\")\n\t\t\tif not (enabled of b) then return \"Genius button disabled\" -- (film, video clip,...)\n\t\t\tperform action \"AXPress\" of b\n\t\ton error -- no Genius button (radio, podcast, .....) playlist\n\t\t\treturn \"Can't create genius list from that track!\"\n\t\tend try\n\t\tdelay 2\n\t\ttell front window to if value of attribute \"AXSubRole\" is \"AXDialog\" then -- dialog opened.\n\t\t\tperform action \"AXPress\" of button \"OK\" -- close the dialog\n\t\t\treturn \"Can't create genius list from that track!\"\n\t\tend if\n\tend tell\nend tell\nreturn \"Done\"\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3deb6981544082c7450dc4e326b6b4f426f9ee29","subject":"Alfred checkpoint","message":"Alfred checkpoint\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.814ABA1A-06A8-4A07-B3B4-E28C8CC411BF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.814ABA1A-06A8-4A07-B3B4-E28C8CC411BF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\b\u0000V\u0000i\u0000e\u0000w\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\b\u0000V\u0000i\u0000e\u0000w\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000\u0018\u0000O\u0000p\u0000e\u0000n\u0000 \u0000Q\u0000u\u0000i\u0000c\u0000k\u0000l\u0000y\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"352962b152d9dbe27f886aaafec9044910fda3f8","subject":"bug-fix in prettify to return correct XML","message":"bug-fix in prettify to return correct XML\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refueses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & tidyCommand\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"98e1b09a7f7c18f71313ed4d10c8e92649b75cfc","subject":"updated BBEdit_upgrade_SQL_Query_to_newer_format to 1.5 - bug fixes and improvements","message":"updated BBEdit_upgrade_SQL_Query_to_newer_format to 1.5 - bug fixes and improvements\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\n\tset literalSearch_SpacesToTabs to \" \"\n\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\n\tset literalSearch_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\n\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\n\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\n\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace literalSearch_ExecuteOLD using literalReplace_ExecuteOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\n\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\tset regexSearch_ExtraSpacesBeforeSemicolon to \"([^\n]) +;\"\n\t\n\tset regexReplace_ExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\t\n\tset literalSearch_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\n\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\n\tset literalSearch_queryDebugOLD to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) & Char ( 13 ) &\"\n\t\n\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_ExtraSpacesBeforeSemicolon using regexReplace_ExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace literalSearch_ExecuteOLD using literalReplace_ExecuteOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1c5cc82c3e101fa48e137a09fe31dc8283eb4694","subject":"fix the issue caused by https:\/\/code.google.com\/p\/chromium\/issues\/detail?id=543437","message":"fix the issue caused by https:\/\/code.google.com\/p\/chromium\/issues\/detail?id=543437\n","repos":"atsuya\/google-music-control","old_file":"chrome\/lib\/controller.scpt","new_file":"chrome\/lib\/controller.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"ca000ddf0d5ac2221345d5c8c92a8c290a3952e9","subject":"Add Unicode bullet characters for list dialogs","message":"Add Unicode bullet characters for list dialogs\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property uBullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property uBullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property uBullet : \"\"\n--property uBullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property uBullet : data utxt2043 as Unicode text -- HYPHEN BULLET\nproperty uBullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n--property uBack : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\nproperty uBack : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list with subcategories\", \n\t\t\t\" \" & uBullet & \" Create a new category...\", \n\t\t\tmultiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list of categories...\", \n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2993e22789d3d012eb65dbadfbcda3694deb335b","subject":"Fix fatal mistake","message":"Fix fatal mistake\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/start_install.scpt","new_file":"script\/start_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 8.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 8.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Toold\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Toold\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a855e7f778c9cb869d99a63d638d520f7b466ff1","subject":"enabled a couple of debug dialogs","message":"enabled a couple of debug dialogs\n\nTesting auto-update","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ndisplay dialog osVersion buttons {\"OK\"}\n\ndisplay dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5a11d19e0b8294d787dd502a6b843ae9ab1e6d0b","subject":"Updated \"reset Fake preferences\"","message":"Updated \"reset Fake preferences\"\n\nChanged the reset Fake preferences to simply delete the preference file, create and empty file, and write the preferences we want","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"32dd1e9210fd345d3508f3e67430338ca04ac7f5","subject":"adjust resolution where brief needed","message":"adjust resolution where brief needed\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\telse\n\t\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 900 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\telse\n\t\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"53779408ab27a03ebab3aa0a609250dae0466dcf","subject":"4.0.2 - prettify works on large data","message":"4.0.2 - prettify works on large data\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.2, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refueses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refueses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & tidyCommand\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a0f8c14b810e6f039ba533ca2efe58f45bc0c92a","subject":"Not sure why this has changed but...","message":"Not sure why this has changed but...\n","repos":"alb3rtuk\/scripts,alb3rtuk\/scripts,alb3rtuk\/scripts","old_file":"osa\/close-all-windows.scpt","new_file":"osa\/close-all-windows.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\f\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovtrue\r\u0000\u000b\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npvis\r\u0000\u000e\u0000\u00012\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000f\u0000\u000f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003jWL\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000X\r\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0002\u0000\r\u0000\u0013\u0000\u0012\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0013\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001J\u0000\u0000\u0000\r\u0000\u0011\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0017\u0000\u0002\u0000\u001a\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u001d\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000v\u0000\u001e\r\u0000\u001e\u0000\u0003Q\u0000\u0000\u0000\u0014\u0000v\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\u0017\u0000m\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\u0017\u0000,\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u001b\u0000+\u0000&\u0000'\r\u0000&\u0000\u00026\u0001\u0000\u0000\u001b\u0000)\u0000(\u0000)\r\u0000(\u0000\u0003l\u0001\u0000\u0000\u001b\u0000 \u0000*\r\u0000*\u0000\u0002n\u0000\u0000\u0000\u001b\u0000 \u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\npnam\r\u0000,\u0000\u00012\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000)\u0000\u0002=\u0000\u0003\u0000!\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000\"\u0000$\n\u0000\u0004\npvis\r\u0000.\u0000\u0001m\u0000\u0000\u0000%\u0000'\n\u0000\b\u000bboovtrue\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000\/\u000f\u0000\/\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%x`Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000#\u0000\u0002\u00000\u00001\r\u00000\u0000\u0005Y\u0000\u0000\u0000-\u0000`\u00002\u00003\u00004\r\u00002\u0000\u0001k\u0000\u0000\u0000<\u0000[\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000<\u0000B\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000<\n\u0000\u0004\ncobj\r\u0000<\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0003l\u0001\u0000\u0000<\u0000=\u0000=\r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u00007\u0000\u0002\u0000>\r\u0000>\u0000\u0004Z\u0000\u0000\u0000C\u0000[\u0000?\u0000@\r\u0000?\u0000\u0001H\u0000\u0000\u0000C\u0000G\u0000A\r\u0000A\u0000\u0002E\u0000\u0001\u0000C\u0000F\u0000B\u0000C\r\u0000B\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000@\u0000\u0002O\u0000\u0000\u0000J\u0000W\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000Q\u0000V\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000E\u0000\u00024\u0000\u0000\u0000J\u0000N\u0000F\n\u0000\u0004\ncapp\r\u0000F\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00003\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00004\u0000\u0003l\u0000\u0005\u00001\u00007\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00001\u00007\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nnmbr\r\u0000I\u0000\u0002n\u0001\u0000\u00001\u00004\u0000J\u0000K\r\u0000J\u0000\u00012\u0000\u0001\u00002\u00004\n\u0000\u0004\ncobj\r\u0000K\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u0000L\r\u0000L\u0000\u0002O\u0000\u0001\u0000a\u0000m\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000O\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000O\u0000\u00012\u0000\u0000\u0000e\u0000h\n\u0000\u0004\ncwin\u0002\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0000P\u000f\u0000P\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%x`Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000Q\u0000R\u0000S\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000Q\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u000e\u0000R\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0005\u0000Z\u0002\u0000Z\u0000\u0002\u0000\u0010\u0000[\u0002\u0000[\u0000\u0002\u0000\u001d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000X\u0000\u0012\u0000\u000f\u0000\u0018\u0000\u001b\u0000\/\u0000\\\n\u0000\u0004\nprcs\n\u0000\u0004\npvis\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0000\u0004\npnam\u000e\u0000\\\u0000\u0000\u0013\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000w\u0012\u0000\te*-,FUOlvEO\u0014\u0000[\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u00002k-,Ekh\u001c\u0000\u0000\/EO\b\u000b\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u000eUY\u0000\u0003h[OYO\u0012\u0000\t*-j\f\u0000\u000eUW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e\u0000S\u0000\u0002\u0004\u0000]\u0003\u0000\u0002\u000e\u0000]\u0000\u0002\u0000\u0000\u0018\u0000\u001b\u000e\u0000T\u0000\u0002\u0004\u0000^\u0003\u0000\u000b\u000e\u0000^\u0000\u000b\u0000\u0000_\u0000`\u0000a\u0000b\u0000c\u0000d\u0000e\u0000f\u0000g\u0000h\u0000U\u000e\u0000_\u0000\u0001\u0000i\u0011\u0000i\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0000`\u0000\u0001\u0000j\u0011\u0000j\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u000e\u0000a\u0000\u0001\u0000k\u0011\u0000k\u0000\u0010\u0000p\u0000h\u0000p\u0000s\u0000t\u0000o\u0000r\u0000m\u000e\u0000b\u0000\u0001\u0000l\u0011\u0000l\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u000e\u0000c\u0000\u0001\u0000m\u0011\u0000m\u0000\u0010\u0000r\u0000u\u0000b\u0000y\u0000m\u0000i\u0000n\u0000e\u000e\u0000d\u0000\u0001\u0000n\u0011\u0000n\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0000e\u0000\u0001\u0000o\u0011\u0000o\u0000\u0014\u0000B\u0000i\u0000t\u0000T\u0000o\u0000r\u0000r\u0000e\u0000n\u0000t\u000e\u0000f\u0000\u0001\u0000p\u0011\u0000p\u0000\u001c\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000W\u0000o\u0000r\u0000d\u000e\u0000g\u0000\u0001\u0000q\u0011\u0000q\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0000h\u0000\u0001\u0000r\u0011\u0000r\u0000\b\u0000M\u0000a\u0000i\u0000l\u000e\u0000U\u0000\u0001\u0000s\u0011\u0000s\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\f\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovtrue\r\u0000\u000b\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\f\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npvis\r\u0000\u000e\u0000\u00012\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000f\u0000\u000f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003jWL\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000X\r\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0002\u0000\r\u0000\u0013\u0000\u0012\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0013\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001J\u0000\u0000\u0000\r\u0000\u0011\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0017\u0000\u0002\u0000\u001a\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u001d\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000v\u0000\u001e\r\u0000\u001e\u0000\u0003Q\u0000\u0000\u0000\u0014\u0000v\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\u0017\u0000m\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000\u0017\u0000,\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u001b\u0000+\u0000&\u0000'\r\u0000&\u0000\u00026\u0001\u0000\u0000\u001b\u0000)\u0000(\u0000)\r\u0000(\u0000\u0003l\u0001\u0000\u0000\u001b\u0000 \u0000*\r\u0000*\u0000\u0002n\u0000\u0000\u0000\u001b\u0000 \u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\npnam\r\u0000,\u0000\u00012\u0000\u0000\u0000\u001b\u0000\u001e\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000)\u0000\u0002=\u0000\u0003\u0000!\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000\"\u0000$\n\u0000\u0004\npvis\r\u0000.\u0000\u0001m\u0000\u0000\u0000%\u0000'\n\u0000\b\u000bboovtrue\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000\/\u000f\u0000\/\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%x`Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000#\u0000\u0002\u00000\u00001\r\u00000\u0000\u0005Y\u0000\u0000\u0000-\u0000`\u00002\u00003\u00004\r\u00002\u0000\u0001k\u0000\u0000\u0000<\u0000[\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000<\u0000B\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000<\n\u0000\u0004\ncobj\r\u0000<\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0003l\u0001\u0000\u0000<\u0000=\u0000=\r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u00007\u0000\u0002\u0000>\r\u0000>\u0000\u0004Z\u0000\u0000\u0000C\u0000[\u0000?\u0000@\r\u0000?\u0000\u0001H\u0000\u0000\u0000C\u0000G\u0000A\r\u0000A\u0000\u0002E\u0000\u0001\u0000C\u0000F\u0000B\u0000C\r\u0000B\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000@\u0000\u0002O\u0000\u0000\u0000J\u0000W\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000Q\u0000V\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000E\u0000\u00024\u0000\u0000\u0000J\u0000N\u0000F\n\u0000\u0004\ncapp\r\u0000F\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00003\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00004\u0000\u0003l\u0000\u0005\u00001\u00007\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00001\u00007\u0000H\u0000I\r\u0000H\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nnmbr\r\u0000I\u0000\u0002n\u0001\u0000\u00001\u00004\u0000J\u0000K\r\u0000J\u0000\u00012\u0000\u0001\u00002\u00004\n\u0000\u0004\ncobj\r\u0000K\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u0000L\r\u0000L\u0000\u0002O\u0000\u0001\u0000a\u0000m\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000O\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000O\u0000\u00012\u0000\u0000\u0000e\u0000h\n\u0000\u0004\ncwin\u0002\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0000P\u000f\u0000P\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0397\u001f#H+\u0000\u0000\u0000\u0000\u0000-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002%x`Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000a'\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000 \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000Q\u0000R\u0000S\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000Q\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u000e\u0000R\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0005\u0000Z\u0002\u0000Z\u0000\u0002\u0000\u0010\u0000[\u0002\u0000[\u0000\u0002\u0000\u001d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000X\u0000\u0012\u0000\u000f\u0000\u0018\u0000\u001b\u0000\/\u0000\\\n\u0000\u0004\nprcs\n\u0000\u0004\npvis\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0000\u0004\npnam\u000e\u0000\\\u0000\u0000\u0013\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000w\u0012\u0000\te*-,FUOlvEO\u0014\u0000[\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u00002k-,Ekh\u001c\u0000\u0000\/EO\b\u000b\u001d\u0000\u0012*\/\u0012\u0000\u0007*j\f\u0000\u000eUY\u0000\u0003h[OYO\u0012\u0000\t*-j\f\u0000\u000eUW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e\u0000S\u0000\u0002\u0004\u0000]\u0003\u0000\u0002\u000e\u0000]\u0000\u0002\u0000\u0000\u0018\u0000\u001b\u000e\u0000T\u0000\u0002\u0004\u0000^\u0003\u0000\u0006\u000e\u0000^\u0000\u0006\u0000\u0000_\u0000`\u0000a\u0000b\u0000c\u0000U\u000e\u0000_\u0000\u0001\u0000d\u0011\u0000d\u0000\u0010\u0000p\u0000h\u0000p\u0000s\u0000t\u0000o\u0000r\u0000m\u000e\u0000`\u0000\u0001\u0000e\u0011\u0000e\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0000a\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u000e\u0000b\u0000\u0001\u0000g\u0011\u0000g\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0000c\u0000\u0001\u0000h\u0011\u0000h\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0000U\u0000\u0001\u0000i\u0011\u0000i\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b3affd89b975c9830d4fbf34983e73615787f042","subject":"Add notes field","message":"Add notes field\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2011-03-14\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n--\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"egrep '^Label ' \" & quoted form of log_file_posix & \n\t\" | sed 's\/^Label | \/\/' | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n\n--\n-- Prompt for category\/subcategory of URL\n--\n\n-- Select an existing category\nset t to \"\" & script_name & \" (1\/3)\"\nset m to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title t with prompt m OK button name \"Select\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify or enter a new category\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Append URL to Log File...\"}\nset t to \"\" & script_name & \" (2\/3)\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \" (3\/3)\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2011-02-09\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n--\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"egrep '^Label ' \" & quoted form of log_file_posix & \n\t\" | sed 's\/^Label | \/\/' | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n\n--\n-- Prompt for category\/subcategory of URL\n--\n\n-- Select an existing category\nset msg to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title script_name with prompt msg OK button name \"Select\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify or enter a new category\nset btns to {\"Cancel\", \"Manually Edit Log File\", \"Append URL to Log File\"}\nset msg to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog msg default answer cat_choice with title script_name buttons btns default button last item of btns\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of btns then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url, \n\t\trec_sep}, linefeed) & linefeed\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"27257ce37cb17a33e4dde33fde5d6dc6679cc976","subject":"committed on 2015\/12\/13 19:00.","message":"committed on 2015\/12\/13 19:00.\n","repos":"homma\/JXA","old_file":"notes.applescript","new_file":"notes.applescript","new_contents":"\n\/\/ Backup will be saved under ~\/Library\/Containers\/com.apple.TextEdit\/Data .\n\n\/\/ config\nvar html = true;\nvar file = \"note\" + Date.now();\nvar data = \"\";\n\nvar dumpNote = function(note) {\n\n var text = \"\";\n var title = note.name();\n var body = note.body();\n\n if(html) {\n text = \"<h4>\" + title + \"<\/h4>\" + \"\\n\" + body + \"\\n\";\n } else {\n text = \"Title: \" + title + \"\\n\" + \"Body: \" + body + \"\\n\";\n }\n\n data = data + text;\n\n}\n\nvar dumpFolder = function(folder) {\n\n var text = \"\";\n var name = folder.name();\n\n if(html) {\n text = \"<h3>\" + name + \"<\/h3>\" + \"\\n\";\n } else {\n text = \"Folder: \" + name + \"\\n\";\n }\n\n data = data + text;\n\n folder.notes().forEach(dumpNote);\n\n}\n\nvar dumpAccount = function(account) {\n\n var text = \"\";\n var name = account.name();\n\n if(html) {\n text = \"<h2>\" + name + \"<\/h2>\" + \"\\n\";\n } else {\n text = \"Account: : \" + name + \"\\n\";\n }\n\n data = data + text\n\n var folders = account.folders();\n folders.forEach(dumpFolder);\n\n}\n\nvar output = function() {\n\n if(html) {\n name = file + \".html\";\n } else {\n name = file + \".text\";\n }\n\n var app = Application(\"TextEdit\");\n app.Document().make().name = name;\n\n doc = app.documents().find(function(el) {\n if(el.name() == name ) { return true }\n })\n\n doc.text = data;\n\n doc.close();\n\n}\n\nvar main = function() {\n\n var account = Application(\"Notes\").accounts();\n account.forEach(dumpAccount);\n\n output();\n\n}\n\nmain()\n","old_contents":"\n\/\/ Backup will be saved under ~\/Library\/Containers\/com.apple.TextEdit\/Data .\n\n\/\/ config\nvar html = true;\nvar file = \"note\" + Date();\nvar data = \"\";\n\nvar dumpNote = function(note) {\n\n var text = \"\";\n var title = note.name();\n var body = note.body();\n\n if(html) {\n text = \"<h4>\" + title + \"<\/h4>\" + \"\\n\" + body + \"\\n\";\n } else {\n text = \"Title: \" + title + \"\\n\" + \"Body: \" + body + \"\\n\";\n }\n\n data = data + text;\n\n}\n\nvar dumpFolder = function(folder) {\n\n var text = \"\";\n var name = folder.name();\n\n if(html) {\n text = \"<h3>\" + name + \"<\/h3>\" + \"\\n\";\n } else {\n text = \"Folder: \" + name + \"\\n\";\n }\n\n data = data + text;\n\n folder.notes().forEach(dumpNote);\n\n}\n\nvar dumpAccount = function(account) {\n\n var text = \"\";\n var name = account.name();\n\n if(html) {\n text = \"<h2>\" + name + \"<\/h2>\" + \"\\n\";\n } else {\n text = \"Account: : \" + name + \"\\n\";\n }\n\n data = data + text\n\n var folders = account.folders();\n folders.forEach(dumpFolder);\n\n}\n\nvar output = function() {\n\n if(html) {\n name = file + \".html\";\n } else {\n name = file + \".text\";\n }\n\n var app = Application(\"TextEdit\");\n app.Document().make().name = name;\n\n doc = app.documents().find(function(el) {\n if(el.name() == name ) { return true }\n })\n\n doc.text = data;\n\n doc.close();\n\n}\n\nvar main = function() {\n\n var account = Application(\"Notes\").accounts();\n account.forEach(dumpAccount);\n\n output();\n\n}\n\nmain()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0c2eec55eb353512029c0814bc48e4961453a9f6","subject":"Add applescript to get CompuCell to run automatically on a mac","message":"Add applescript to get CompuCell to run automatically on a mac\n","repos":"ram8647\/tcseg,ram8647\/tcseg,ram8647\/tcseg","old_file":"BatchManager\/BatchManagerScripts\/ForceRunCompuCell.scpt","new_file":"BatchManager\/BatchManagerScripts\/ForceRunCompuCell.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"7d58bbe44cf75799b72e2702d04d920f1f0b3c91","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cf18668cf634208045ea4d56089ad23644786692","subject":"display dialog on itsipTransfer script completion","message":"display dialog on itsipTransfer script completion\n","repos":"theriex\/itsip","old_file":"src\/itsipTransfer.applescript","new_file":"src\/itsipTransfer.applescript","new_contents":"property wdtitle : \"itsipTransfer\"\nproperty datfilename : \"\"\nproperty tabchar : \"\t\"\nproperty newline : \"\n\"\n\non initDatfileName()\n\ttell application \"Finder\"\n\t\tset datfilename to (container of (path to me) as text) & \"itsipTransfer.dat\"\n\tend tell\nend initDatfileName\n\n\non splitString(txt, delim)\n\tset orgdelim to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delim\n\tset txtelems to every text item of txt\n\tset AppleScript's text item delimiters to orgdelim\n\treturn txtelems\nend splitString\n\n\non dumpTrackData()\n\ttry\n\t\tset wf to open for access datfilename with write permission\n\t\tset eof wf to 0\n\t\ttell application \"iTunes\"\n\t\t\trepeat with ctrk in every track\n\t\t\t\tset datline to ((name of ctrk) as class utf8) & tabchar & ((artist of ctrk) as class utf8) & tabchar & ((album of ctrk) as class utf8) & tabchar & (year of ctrk) & tabchar & (rating of ctrk) & tabchar & (volume adjustment of ctrk) & tabchar & ((comment of ctrk) as class utf8) & newline\n\t\t\t\twrite datline as class utf8 to wf\n\t\t\tend repeat\n\t\tend tell\n\t\tclose access wf\n\ton error errStr number errorNumber\n\t\ttry\n\t\t\tclose access wf\n\t\tend try\n\t\terror errStr number errorNumber\n\t\treturn false\n\tend try\nend dumpTrackData\n\n\non identFieldsMatch(tinfo, artist, album, year)\n\tif (length of (srcartist of tinfo)) > 0 then\n\t\tset fval to (srcartist of tinfo) as class utf8\n\t\tset tval to artist as class utf8\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcalbum of tinfo)) > 0 then\n\t\tset fval to ((srcalbum of tinfo) as class utf8)\n\t\tset tval to (album as class utf8)\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcyear of tinfo) > 0) and (year > 0) and ((srcyear of tinfo) as integer) is not equal to year then\n\t\treturn false\n\tend if\n\treturn true\nend identFieldsMatch\n\n\non updateTrackInfo(tinfo, overwrite)\n\ttell application \"iTunes\"\n\t\tset srchres to (search playlist \"Music\" for (srcname of tinfo) only songs)\n\t\trepeat with trk in srchres\n\t\t\t-- display dialog \"testing \" & (name of trk)\n\t\t\tif my identFieldsMatch(tinfo, (artist of trk), (album of trk), (year of trk)) then\n\t\t\t\tset statmsg to \"found \" & (name of trk) & \" - \" & (artist of trk)\n\t\t\t\tif overwrite or ((rating of trk) is equal to 0) then\n\t\t\t\t\tset updrat to ((srcrating of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"rating set to \" & updrat\n\t\t\t\t\tset (rating of trk) to updrat\n\t\t\t\tend if\n\t\t\t\tif overwrite or ((volume adjustment of trk) is equal to 0) then\n\t\t\t\t\tset updva to ((srcvoladj of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"volume adjust set to \" & updva\n\t\t\t\t\tset (volume adjustment of trk) to updva\n\t\t\t\tend if\n\t\t\t\tif overwrite or (((comment of trk) as class utf8) is equal to \"\") then\n\t\t\t\t\tset statmsg to statmsg & newline & (srccomment of tinfo)\n\t\t\t\t\tset (comment of trk) to (srccomment of tinfo)\n\t\t\t\tend if\n\t\t\t\t-- display dialog statmsg\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateTrackInfo\n\n\non loadTrackData(overwrite)\n\tset fh to (open for access file datfilename)\n\tset fc to (read fh for (get eof fh) as class utf8)\n\tclose access fh\n\tset datlines to splitString(fc, newline)\n\tset linum to 0\n\trepeat with datline in datlines\n\t\tset linum to linum + 1\n\t\tset trkfields to splitString(datline, tabchar)\n\t\tupdateTrackInfo({srcname:item 1 of trkfields, srcartist:item 2 of trkfields, srcalbum:item 3 of trkfields, srcyear:item 4 of trkfields, srcrating:item 5 of trkfields, srcvoladj:item 6 of trkfields, srccomment:item 7 of trkfields}, overwrite)\n\tend repeat\nend loadTrackData\n\n\non dumpOrLoad()\n\tinitDatfileName()\n\tset ptxt to \"Write or read itsipTransfer.dat. This can take a while (~2000 tracks\/minute write, ~500 tracks\/minute read). There will be a completion message when the script is done running. Select what you want to do:\" & newline\n\tset acts to {\"Write track data\", \"Read default track data\", \"Read and overwrite\"}\n\tset listchoice to choose from list acts with prompt ptxt with title wdtitle\n\tif listchoice is false then\n\t\treturn false\n\telse if (listchoice as text) is equal to ((item 1 of acts) as text) then\n\t\tdumpTrackData()\n\t\tdisplay dialog \"Tracks written to ~\/Library\/iTunes\/Scripts\/itsipTransfer.dat\"\n\telse if (listchoice as text) is equal to ((item 2 of acts) as text) then\n\t\tloadTrackData(false)\n\t\tdisplay dialog \"Default track categorization data loaded.\"\n\telse if (listchoice as text) is equal to ((item 3 of acts) as text) then\n\t\tloadTrackData(true)\n\t\tdisplay dialog \"Track categorizations read completed.\"\n\tend if\nend dumpOrLoad\n\n-- Main script\ndumpOrLoad()\n\n","old_contents":"property wdtitle : \"itsipTransfer\"\nproperty datfilename : \"\"\nproperty tabchar : \"\t\"\nproperty newline : \"\n\"\n\non initDatfileName()\n\ttell application \"Finder\"\n\t\tset datfilename to (container of (path to me) as text) & \"itsipTransfer.dat\"\n\tend tell\nend initDatfileName\n\n\non splitString(txt, delim)\n\tset orgdelim to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delim\n\tset txtelems to every text item of txt\n\tset AppleScript's text item delimiters to orgdelim\n\treturn txtelems\nend splitString\n\n\non dumpTrackData()\n\ttry\n\t\tset wf to open for access datfilename with write permission\n\t\tset eof wf to 0\n\t\ttell application \"iTunes\"\n\t\t\trepeat with ctrk in every track\n\t\t\t\tset datline to ((name of ctrk) as class utf8) & tabchar & ((artist of ctrk) as class utf8) & tabchar & ((album of ctrk) as class utf8) & tabchar & (year of ctrk) & tabchar & (rating of ctrk) & tabchar & (volume adjustment of ctrk) & tabchar & ((comment of ctrk) as class utf8) & newline\n\t\t\t\twrite datline as class utf8 to wf\n\t\t\tend repeat\n\t\tend tell\n\t\tclose access wf\n\ton error errStr number errorNumber\n\t\ttry\n\t\t\tclose access wf\n\t\tend try\n\t\terror errStr number errorNumber\n\t\treturn false\n\tend try\nend dumpTrackData\n\n\non identFieldsMatch(tinfo, artist, album, year)\n\tif (length of (srcartist of tinfo)) > 0 then\n\t\tset fval to (srcartist of tinfo) as class utf8\n\t\tset tval to artist as class utf8\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcalbum of tinfo)) > 0 then\n\t\tset fval to ((srcalbum of tinfo) as class utf8)\n\t\tset tval to (album as class utf8)\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcyear of tinfo) > 0) and (year > 0) and ((srcyear of tinfo) as integer) is not equal to year then\n\t\treturn false\n\tend if\n\treturn true\nend identFieldsMatch\n\n\non updateTrackInfo(tinfo, overwrite)\n\ttell application \"iTunes\"\n\t\tset srchres to (search playlist \"Music\" for (srcname of tinfo) only songs)\n\t\trepeat with trk in srchres\n\t\t\t-- display dialog \"testing \" & (name of trk)\n\t\t\tif my identFieldsMatch(tinfo, (artist of trk), (album of trk), (year of trk)) then\n\t\t\t\tset statmsg to \"found \" & (name of trk) & \" - \" & (artist of trk)\n\t\t\t\tif overwrite or ((rating of trk) is equal to 0) then\n\t\t\t\t\tset updrat to ((srcrating of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"rating set to \" & updrat\n\t\t\t\t\tset (rating of trk) to updrat\n\t\t\t\tend if\n\t\t\t\tif overwrite or ((volume adjustment of trk) is equal to 0) then\n\t\t\t\t\tset updva to ((srcvoladj of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"volume adjust set to \" & updva\n\t\t\t\t\tset (volume adjustment of trk) to updva\n\t\t\t\tend if\n\t\t\t\tif overwrite or (((comment of trk) as class utf8) is equal to \"\") then\n\t\t\t\t\tset statmsg to statmsg & newline & (srccomment of tinfo)\n\t\t\t\t\tset (comment of trk) to (srccomment of tinfo)\n\t\t\t\tend if\n\t\t\t\t-- display dialog statmsg\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateTrackInfo\n\n\non loadTrackData(overwrite)\n\tset fh to (open for access file datfilename)\n\tset fc to (read fh for (get eof fh) as class utf8)\n\tclose access fh\n\tset datlines to splitString(fc, newline)\n\tset linum to 0\n\trepeat with datline in datlines\n\t\tset linum to linum + 1\n\t\tset trkfields to splitString(datline, tabchar)\n\t\tupdateTrackInfo({srcname:item 1 of trkfields, srcartist:item 2 of trkfields, srcalbum:item 3 of trkfields, srcyear:item 4 of trkfields, srcrating:item 5 of trkfields, srcvoladj:item 6 of trkfields, srccomment:item 7 of trkfields}, overwrite)\n\tend repeat\nend loadTrackData\n\n\non dumpOrLoad()\n\tinitDatfileName()\n\tset ptxt to \"You can write data for all tracks out to itsipTransfer.dat, or you can read from itsipTransfer.dat optionally overwriting what you already have. Processing speed is somewhere in the range of 2000 tracks\/minute on write, and 500 tracks a minute on read, so go get some coffee or whatever after you click ok. Select what you want to do:\"\n\tset acts to {\"Write track data\", \"Read default track data\", \"Read and overwrite\"}\n\tset listchoice to choose from list acts with prompt ptxt with title wdtitle\n\tif listchoice is false then\n\t\treturn false\n\telse if (listchoice as text) is equal to ((item 1 of acts) as text) then\n\t\tdumpTrackData()\n\telse if (listchoice as text) is equal to ((item 2 of acts) as text) then\n\t\tloadTrackData(false)\n\telse if (listchoice as text) is equal to ((item 3 of acts) as text) then\n\t\tloadTrackData(true)\n\tend if\nend dumpOrLoad\n\n-- Main script\ndumpOrLoad()\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7519b27ba08ccc2293c92460926b90eb73f4dca0","subject":"fixes #382","message":"fixes #382\n","repos":"Juanlu001\/xlwings,gdementen\/xlwings,Juanlu001\/xlwings,gdementen\/xlwings","old_file":"xlwings\/xlwings.applescript","new_file":"xlwings\/xlwings.applescript","new_contents":"# Allows to run the script from Script Editor for testing\nVbaHandler(\"TestString\")\n\non VbaHandler(ParameterString)\n\tset {PYTHONPATH, PythonInterpreter, PythonCommand, WORKBOOK_FULLNAME, ApplicationFullName, LOG_FILE} to SplitString(ParameterString, \",\")\n\tset ShellCommand to PythonInterpreter & \"python -B -u -W ignore -c \\\"import sys, os;sys.path.extend(os.path.normcase(os.path.expandvars('\" & PYTHONPATH & \"')).split(';'));\" & \u00ac\n\t\tPythonCommand & \" \\\" \\\"\" & WORKBOOK_FULLNAME & \"\\\" \\\"from_xl\\\" \\\"\" & ApplicationFullName & \"\\\" >\\\"\" & LOG_FILE & \"\\\" 2>&1 & \"\n\ttry\n\t\tdo shell script \"source ~\/.bash_profile\"\n\t\treturn do shell script \"source ~\/.bash_profile;\" & ShellCommand\n\ton error errMsg number errNumber\n\t\ttry\n\t\t\t# Try again without sourcing .bash_profile\n\t\t\treturn do shell script ShellCommand\n\t\ton error errMsg number errNumber\n\t\t\treturn 1\n\t\tend try\n\tend try\nend VbaHandler\n\non SplitString(TheBigString, fieldSeparator)\n\t# From Ron de Bruin's \"Mail from Excel 2016 with Mac Mail example\": www.rondebruin.nl\n\ttell AppleScript\n\t\tset oldTID to text item delimiters\n\t\tset text item delimiters to fieldSeparator\n\t\tset theItems to text items of TheBigString\n\t\tset text item delimiters to oldTID\n\tend tell\n\treturn theItems\nend SplitString\n","old_contents":"# Allows to run the script from Script Editor for testing\nVbaHandler(\"TestString\")\n\non VbaHandler(ParameterString)\n\tset {PYTHONPATH, PythonInterpreter, PythonCommand, WORKBOOK_FULLNAME, ApplicationFullName, LOG_FILE} to SplitString(ParameterString, \",\")\n\tset ShellCommand to PythonInterpreter & \"python -u -W ignore -c \\\"import sys, os;sys.path.extend(os.path.normcase(os.path.expandvars('\" & PYTHONPATH & \"')).split(';'));\" & \u00ac\n\t\tPythonCommand & \" \\\" \\\"\" & WORKBOOK_FULLNAME & \"\\\" \\\"from_xl\\\" \\\"\" & ApplicationFullName & \"\\\" >\\\"\" & LOG_FILE & \"\\\" 2>&1 & \"\n\ttry\n\t\tdo shell script \"source ~\/.bash_profile\"\n\t\treturn do shell script \"source ~\/.bash_profile;\" & ShellCommand\n\ton error errMsg number errNumber\n\t\ttry\n\t\t\t# Try again without sourcing .bash_profile\n\t\t\treturn do shell script ShellCommand\n\t\ton error errMsg number errNumber\n\t\t\treturn 1\n\t\tend try\n\tend try\nend VbaHandler\n\non SplitString(TheBigString, fieldSeparator)\n\t# From Ron de Bruin's \"Mail from Excel 2016 with Mac Mail example\": www.rondebruin.nl\n\ttell AppleScript\n\t\tset oldTID to text item delimiters\n\t\tset text item delimiters to fieldSeparator\n\t\tset theItems to text items of TheBigString\n\t\tset text item delimiters to oldTID\n\tend tell\n\treturn theItems\nend SplitString\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9bbbbb5f469a7c65947908499bfa94cca4f9e03d","subject":"Return index when creating slide","message":"Return index when creating slide\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\t\treturn slide number of thisSlide\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, itemIndex, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item itemIndex\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, itemIndex, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item itemIndex\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"eecd45e241c9f4ed9ca7647d7e048fed60b4b53a","subject":"fixed bug where the document name had the extension","message":"fixed bug where the document name had the extension\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportAllLayers\/ExportAllLayers.applescript","new_file":"ExportAllLayers\/ExportAllLayers.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tset area type of current export settings to current canvas\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"8f23438f94f7c0a709a38b22b66ce276614fd4bd","subject":"Added a newline to the end of the script - snak seemed unhappy without this.","message":"Added a newline to the end of the script - snak seemed unhappy without this.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401904\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Scripts\/Snak\/Growl.scpt","new_file":"Scripts\/Snak\/Growl.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000! \u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u0001o\u0000\u0002\u0001p\u001f\r\u0001p\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001c\u0001q\u0001r\u0001s\u0001t\u0001\u001c\u0000\u0000\u0010\u0001q\u0000\u0003\u001b\u001a\u0019\u000b\u001b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001a\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u0019\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001r\u0000\u0007\u0010\u0018\u0000\b\u0017\u0016\u0001u\u0001v\u0015\u000b\u0018\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0017\u0000\u0000\u0002\u0016\u0000\u0000\u0010\u0001u\u0000\u0001\u0014\u000b\u0014\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001v\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0013\u0000\u001a\u0012\u0011\u0010\u0000 \u000f\u000e\n\u0013\u0000\u0004\nappl\n\u0012\u0000\u0004\nanot\n\u0011\u0000\u0004\ndnot\n\u0010\u0000\u0004\niapp\u0003\u000f\u0000\b\n\u000e\u0000\u0018.registernull\u0000\u0000null\u0011\u0015\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001s\u0000\u0007\u0010\r\u0000)\f\u000b\u0001w\u0001x\n\u000b\r\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\f\u0000\u0002\u0004\t\u0001y\u0003\t\u0000\u0005\u000e\u0001y\u0000\u0005\u0000\b\u0007\u0006\u0005\u0004\u000b\b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0006\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0005\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0004\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u000b\u0000\u0000\u0010\u0001w\u0000\f\u0003\u0002\u0001\u0000\u000b\u0003\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0001\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001x\u0000\u0019\u0000|\u0001z\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001z\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\n\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001t\u0000\u0007\u0010\u0001'\u0001{\u0001|\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001}\u0003\u0000\u0005\u000e\u0001}\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001{\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001|\u0000\u0012\u0000|\u0001z\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n!\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000 \u001f\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001e\u0001o\u0001p\u0001q\u0001r\u0001\u001e\u0000\u0000\u0010\u0001o\u0000\u0003\u001d\u001c\u001b\u000b\u001d\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001c\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u001b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001p\u0000\u0007\u0010\u001a\u0000\b\u0019\u0018\u0001s\u0001t\u0017\u000b\u001a\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0010\u0001s\u0000\u0001\u0016\u000b\u0016\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001t\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0015\u0000\u001a\u0014\u0013\u0012\u0000 \u0011\u0010\n\u0015\u0000\u0004\nappl\n\u0014\u0000\u0004\nanot\n\u0013\u0000\u0004\ndnot\n\u0012\u0000\u0004\niapp\u0003\u0011\u0000\b\n\u0010\u0000\u0018.registernull\u0000\u0000null\u0011\u0017\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001q\u0000\u0007\u0010\u000f\u0000)\u000e\r\u0001u\u0001v\f\u000b\u000f\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\u000e\u0000\u0002\u0004\u000b\u0001w\u0003\u000b\u0000\u0005\u000e\u0001w\u0000\u0005\u0000\n\t\b\u0007\u0006\u000b\n\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\t\u0000\n0\u0000\u0006source\u0000\u0000\u000b\b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0006\u0000\r0\u0000\tthestring\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001u\u0000\f\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0005\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0004\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0003\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0001\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001v\u0000\u0019\u0000|\u0001x\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001x\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\f\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001r\u0000\u0007\u0010\u0001'\u0001y\u0001z\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001{\u0003\u0000\u0005\u000e\u0001{\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001y\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001z\u0000\u0012\u0000|\u0001x\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"099d8012e6902632a1cd878d6c9c4a07d53b93cd","subject":"Added AppleScript doc","message":"Added AppleScript doc\n","repos":"lukebayes\/clix_flash_player","old_file":"exploration\/applescript\/OSAFlashPlayer.scpt","new_file":"exploration\/applescript\/OSAFlashPlayer.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000;\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0000set argv to {\"\/Users\/lbayes\/Projects\/CLIXFlashPlayer\/exploration\/fixtures\/9.0.151\/Flash Player.app\", \"Users:lbayes:Projects:CLIXFlashPlayer:exploration:fixtures:SomeProject.swf\"}\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0001d\u0000s\u0000e\u0000t\u0000 \u0000a\u0000r\u0000g\u0000v\u0000 \u0000t\u0000o\u0000 \u0000{\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000\/\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000\/\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000\/\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\/\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000\/\u00009\u0000.\u00000\u0000.\u00001\u00005\u00001\u0000\/\u0000F\u0000l\u0000a\u0000s\u0000h\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\"\u0000,\u0000 \u0000\"\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000:\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000:\u0000S\u0000o\u0000m\u0000e\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000.\u0000s\u0000w\u0000f\u0000\"\u0000}\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u001c\n\u0000\u0004\ncobj\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000#\n\u0000\u0004\ncobj\r\u0000#\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002O\u0000\u0000\u0000\u000e\u00009\u0000(\u0000)\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0015\u00008\u0000*\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000\u001b\u0000#\u0000\/\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\/\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001f\u00000\n\u0000\u0004\nfile\r\u00000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u00001\u00002\r\u00001\u0000\u0003l\u0000\u0002\u0000$\u0000$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0002V\u0000\u0000\u0000$\u00008\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000.\u00003\u00006\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00006\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00007\b\u00007\u0000\b?\u0659\u0002\u0000\u0000\r\u00005\u0000\u0002=\u0000\u0002\u0000(\u0000-\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000(\u0000+\u0000:\u0000;\r\u0000:\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\nprun\r\u0000;\u0000\u0000g\u0000\u0000\u0000(\u0000)\r\u00009\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u0000)\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012\u0000<\n\u0000\u0004\ncapp\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u0002\u0000'\u0000\u0002\u0000=\r\u0000=\u0000\u0003l\u0000\u0002\u0000:\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000>\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000?\u0000@\u0001\u0000\u0000\u0010\u0000?\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000@\u0000\u0007\u0010\u0000\n\u0000A\u0000B\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000A\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000B\u0000\n\u00007\n\u0000\u0004\ncobj\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\n\u0000\u0004\ncapp\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nfile\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\nprun\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000<k\/EOl\/EO*\/\u0012\u0000%*j\f\u0000\u0004O*\/j\f\u0000\u0006O\u0017\u0000\u0013h*,e\u0000\u0019j\f\u0000\t[OYUOP\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000;\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0000set argv to {\"\/Users\/lbayes\/Projects\/CLIXFlashPlayer\/exploration\/fixtures\/9.0.151\/Flash Player.app\", \"Users:lbayes:Projects:CLIXFlashPlayer:exploration:fixtures:SomeProject.swf\"}\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0001d\u0000s\u0000e\u0000t\u0000 \u0000a\u0000r\u0000g\u0000v\u0000 \u0000t\u0000o\u0000 \u0000{\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000\/\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000\/\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000\/\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\/\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000\/\u00009\u0000.\u00000\u0000.\u00001\u00005\u00001\u0000\/\u0000F\u0000l\u0000a\u0000s\u0000h\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\"\u0000,\u0000 \u0000\"\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000:\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000:\u0000S\u0000o\u0000m\u0000e\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000.\u0000s\u0000w\u0000f\u0000\"\u0000}\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u001c\n\u0000\u0004\ncobj\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000#\n\u0000\u0004\ncobj\r\u0000#\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002O\u0000\u0000\u0000\u000e\u00009\u0000(\u0000)\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0015\u00008\u0000*\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000\u001b\u0000#\u0000\/\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\/\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001f\u00000\n\u0000\u0004\nfile\r\u00000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u00001\u00002\r\u00001\u0000\u0003l\u0000\u0002\u0000$\u0000$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0002V\u0000\u0000\u0000$\u00008\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000.\u00003\u00006\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00006\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u00007\b\u00007\u0000\b?\u0659\u0002\u0000\u0000\r\u00005\u0000\u0002=\u0000\u0002\u0000(\u0000-\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000(\u0000+\u0000:\u0000;\r\u0000:\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\nprun\r\u0000;\u0000\u0000g\u0000\u0000\u0000(\u0000)\r\u00009\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u0000)\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012\u0000<\n\u0000\u0004\ncapp\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u0002\u0000'\u0000\u0002\u0000=\r\u0000=\u0000\u0003l\u0000\u0002\u0000:\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000>\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000?\u0000@\u0000A\u0000B\u0001\u0000\u0000\u0010\u0000?\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\u0001\u0000\u0000\u000e\u0000@\u0000\u0007\u0010\u0000\n\u0000C\u0000D\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000C\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000D\u0000\n\u00007\n\u0000\u0004\ncobj\u000b\u0000\u001a0\u0000\u000bflashplayer\u0000\u000bflashPlayer\u000b\u0000\u00120\u0000\u0007swffile\u0000\u0007swfFile\n\u0000\u0004\ncapp\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nfile\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\nprun\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000<k\/EOl\/EO*\/\u0012\u0000%*j\f\u0000\u0004O*\/j\f\u0000\u0006O\u0017\u0000\u0013h*,e\u0000\u0019j\f\u0000\t[OYUOP\u000f\u000e\u0000A\u0000\u0001\u0000E\u0011\u0000E\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000\/\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000\/\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000\/\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\/\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000\/\u00009\u0000.\u00000\u0000.\u00001\u00005\u00001\u0000\/\u0000F\u0000l\u0000a\u0000s\u0000h\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u000e\u0000B\u0000\u0001\u0000F\u0011\u0000F\u0000\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000l\u0000b\u0000a\u0000y\u0000e\u0000s\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000C\u0000L\u0000I\u0000X\u0000F\u0000l\u0000a\u0000s\u0000h\u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000:\u0000e\u0000x\u0000p\u0000l\u0000o\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000f\u0000i\u0000x\u0000t\u0000u\u0000r\u0000e\u0000s\u0000:\u0000S\u0000o\u0000m\u0000e\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000.\u0000s\u0000w\u0000f\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"08c923eaad0ae8a85f2f7d2d5c055e2295b03504","subject":"Fixed TO and CC field extraction","message":"Fixed TO and CC field extraction\n\nChange-Id: I379bbc2d676611a6de18be481c7b7d42b403052c\nSigned-off-by: Falko Zurell <553d907fcdd96929d5363dc3b6e443669c7e54a8@zurell.de>\n","repos":"maxheadroom\/helpers,maxheadroom\/helpers,maxheadroom\/helpers","old_file":"AppleScript\/LogOutlookMetaData.applescript","new_file":"AppleScript\/LogOutlookMetaData.applescript","new_contents":"\n\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n-- This code is triggered if you manually run the script in AppleScript Editor. It retreives any selected messages and then processes them. This is good for testing.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t--(plain text content of (item 1 of theMessages))\n\t--return paragraphs of result\nend tell\n\n-- Count the messages received from Outlook.\nset theMessageCount to count theMessages\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\tset theSenderName to address of theSender\n\t\t\tend try\n\t\t\tset theSenderAddress to address of theSender\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\t\n\t\t\t-- extract CC recipients\n\t\t\tset theCC to cc recipients\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset CCList to CCList & address of recipientEMail as text\n\t\t\t\tset CCList to CCList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- extract the TO recipients\n\t\t\tset theTO to to recipients\n\t\t\tset TOList to \"\"\n\t\t\trepeat with rcp in theTO\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset TOList to TOList & address of recipientEMail as text\n\t\t\t\tset TOList to TOList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & TOList & \"|\" & CCList & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","old_contents":"\n\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n-- This code is triggered if you manually run the script in AppleScript Editor. It retreives any selected messages and then processes them. This is good for testing.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t--(plain text content of (item 1 of theMessages))\n\t--return paragraphs of result\nend tell\n\n-- Count the messages received from Outlook.\nset theMessageCount to count theMessages\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\tset theCC to cc recipients\n\t\t\tset theTO to to recipients\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\tset theSenderName to address of theSender\n\t\t\tend try\n\t\t\tset theSenderAddress to address of theSender\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tlog address of rcp\n\t\t\t\tget address of email address of rcp\n\t\t\t\tset recipientAddress to address of email address of rcp\n\t\t\t\tset CCList to CCList & \",\" & recipient as text\n\t\t\tend repeat\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1ccff74dc3cff95e420bae8707a923c58019dc3d","subject":"trying to get tests working","message":"trying to get tests working\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/alfred.bundler.scpt","new_file":"tests\/applescript\/alfred.bundler.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000>\u0000?\u0001\u0000\u0000\f\u0000>\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000=\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000E\u0000F\r\u0000E\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000G\u0002\u0000G\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u0000K\u0001\u0000\u0000\f\u0000J\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000I\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000O\u0000P\u0001\u0000\u0000\f\u0000O\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000N\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000T\u0000U\r\u0000T\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000X\r\u0000X\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000[\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Z\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000W\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000U\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000]\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000`\u0000a\u0001\u0000\u0000\f\u0000`\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000_\u0000\u0002\u0000c\r\u0000c\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000e\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000h\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000h\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000i\b\u0000i\u0000\b?\u0002\u0000\u0000\u0002\u0000g\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000l\u0000m\u0001\u0000\u0000\f\u0000l\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000k\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000s\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000u\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000p\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000z\u0000{\u0001\u0000\u0000\f\u0000z\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000y\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000~\r\u0000~\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0001\u0001\u0001\u0002\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0001\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0003\u000e\u0001\u0003\u0000\u0001\u0001\u0004\u0011\u0001\u0004\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0002\u0000\u0003\u0001\u0005\n\u0000\u0004\nerrn\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\b\u0001\t\u0001\u0000\u0000\f\u0001\b\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\u000f\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0010\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u000e\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0013\u0001\u0014\u0001\u0000\u0000\f\u0001\u0013\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0014\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0012\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0001 \u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0006\u0000c\u0000d\u0000 \r\u0001\u001f\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\"\r\u0001\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0001#\u0001$\r\u0001#\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001$\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0001%\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u001b\u0000\u0003l\u0000\u0005\u0000\u0000\u0001'\r\u0001'\u0000\u0002n\u0000\u0000\u0000\u0000\u0001(\u0001)\r\u0001(\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nstrq\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000\u0000{\u0001,z\n{\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002z\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000x\u0001\/\u00010\u0001x\u0000\u0000\f\u0001\/\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0002r\u0000\u0000\u0000\u0000\u00014\u00015\r\u00014\u0000\u0003l\u0000\u0005\u0000\u0000\u00016wv\r\u00016\u0000\u0002b\u0000\u0000\u0000\u0000\u00017\u00018\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00018\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001w\u0000\u0000\u0001v\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00013\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0002V\u0000\u0000\u0000\u0000\u0001=\u0001>\r\u0001=\u0000\u0003I\u0000\u0002\u0000\u0000s\u0001?r\ns\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001?\u0000\u0001m\u0000\u0000\u0000\u0000\u0001@\b\u0001@\u0000\b?\u0259\u0002r\u0000\u0000\r\u0001>\u0000\u0001H\u0000\u0000\u0000\u0000\u0001A\r\u0001A\u0000\u0003l\u0000\u0005\u0000\u0000\u0001Bqp\r\u0001B\u0000\u0002n\u0000\u0001\u0000\u0000\u0001C\u0001D\r\u0001C\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001En\u000bo\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001E\u0000\u0002\u0001Fm\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002m\u0000\u0000\u0002n\u0000\u0000\r\u0001D\u0000\u0000f\u0000\u0000\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001<\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0002O\u0000\u0001\u0000\u0000\u0001I\u0001J\r\u0001I\u0000\u0003I\u0000\u0002\u0000\u0000k\u0001Kj\nk\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0001K\u0000\u0003l\u0000\u0005\u0000\u0000\u0001Lih\r\u0001L\u0000\u0002c\u0000\u0000\u0000\u0000\u0001M\u0001N\r\u0001M\u0000\u00024\u0000\u0000\u0000\u0000g\u0001O\ng\u0000\u0004\npsxf\r\u0001O\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u0001N\u0000\u0001m\u0000\u0000\u0000\u0000e\ne\u0000\u0004\nalis\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002j\u0000\u0000\r\u0001J\u0000\u0001m\u0000\u0000\u0000\u0000\u0001P\u000f\u0001P\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0532Y`\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000`D\u0019\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001H\u0000\u0002\u0001Qd\r\u0001Q\u0000\u0001L\u0000\u0000\u0000\u0000c\u0001c\u0000\u0000\u0002d\u0000\u0000\u0002\u0000\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001S\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000_\u0001V\u0001W\u0001_\u0000\u0000\f\u0001V\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001U\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001[\u0001\\\r\u0001[\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000^]\\\u000b^\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002]\u0000\u0000\u0002\\\u0000\u0000\r\u0001\\\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001]\u0002\u0001]\u0000\u0002\u0001^\u0001_\r\u0001^\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000[\u0001`\u0001a\u0001[\u0000\u0000\f\u0001`\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001_\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001e\u0001f\u0001Z\u0000\u0000\f\u0001e\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001f\u0000\u0001\u0001g\u0011\u0001g\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001d\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001l\u0001m\r\u0001l\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001n\u0001o\r\u0001n\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005YXW\u000bY\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002X\u0000\u0000\u0002W\u0000\u0000\r\u0001o\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001m\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001p\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001i\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0000\n\u0000\nU\u0001t\u0001u\u0001U\u0000\u0000\f\u0001t\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001y\u0001z\r\u0001y\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001{\u0001|\r\u0001{\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001}\u0001~\r\u0001}\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001~\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\fT\u000bT\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001|\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000'\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017R\u0001Q\nR\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013P\u000bP\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002Q\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aN\u0001\u0001\u0001N\u0000\u0000\f\u0001\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fMLK\u000bM\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002L\u0000\u0000\u0002K\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*I\u0001H\u000bI\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001G\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&F\u000bF\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002G\u0000\u0000\u0002H\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.C\u000bC\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001B\u000bB\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000W=\n=\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001<;\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000S:\u0001\u0001\n:\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u000089\u000b9\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u00038\u0001\u0001\n8\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u00017\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u00027\u0000\u0000\u0006\u0001\u0000\u00036\u0001\u0001\n6\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@5\u00035\u0000\u0003\u0006\u0001\u0000\u00034\u0001\u0001\n4\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C3\u000b3\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u00032\u00011\n2\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M0\u0001\n0\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L\/\u000b\/\u0000\t0\u0000\u0005_icon\u0000\u0000\u00061\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z-\u0001\u0001\u0001-\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u0001,+\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[*\u000b*\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c)\n)\u0000\b\u000bboovtrue\u0002,\u0000\u0000\u0001+\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i(\u0001\u0001\u0001(\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u0001'&\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j%\u000b%\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~$\u0001#\n$\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002#\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\"\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000!\u0001\u0001\n!\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003 \u0001\u001f\n \u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u0003\u001e\u0000\u0017\u0006\u001f\u0000\u0000\u0002\"\u0000\u0000\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u0002\u0001\u0002\u0002\u0001\u001d\u0000\u0000\f\u0002\u0001\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0002\u0002\u0000\u0001\u0002\u0003\u0011\u0002\u0003\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0002\u0000\u0000\u0002\u0002\u0004\u001c\r\u0002\u0004\u0000\u0004Z\u0000\u0001\u0000\u0000\u0002\u0005\u0002\u0006\u001b\u001a\r\u0002\u0005\u0000\u0002=\u0000\u0001\u0000\u0000\u0002\u0007\u0002\b\r\u0002\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\r0\u0000\t_response\u0000\u0000\r\u0002\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\t\u000e\u0002\t\u0000\u0001\u0002\n\u0011\u0002\n\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0002\u0006\u0000\u0003R\u0000\u0000\u0000\u0000\u0018\u0002\u000b\u0002\f\n\u0018\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\r\u000e\u0002\r\u0000\u0001\u0002\u000e\u0011\u0002\u000e\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\f\u0000\u0003\u0017\u0002\u000f\u0016\n\u0017\u0000\u0004\nerrn\r\u0002\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\u0003\u0015\u0000\u0017\u0006\u0016\u0000\u0000\u0002\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u001c\u0000\u0000\u0002\u0001Z\u0000\u0002\u0002\u0010\u0002\u0011\r\u0002\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0002\u0011\u0000\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0011\u0010\u000f\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0002\u0013\u0000\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0016\u0002\u0017\u0001\u000e\u0000\u0000\f\u0002\u0016\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\u0017\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\u0015\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0002\u001a\u0000\u0002\u0002\u001b\u0002\u001c\r\u0002\u001b\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u001d\u0002\u001e\r\u0002\u001d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\n\t\b\u000b\n\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\t\u0000\u0000\u0002\b\u0000\u0000\r\u0002\u001e\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002\u001f\u0002\u0002\u001f\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0002\"\u0002#\u0001\u0007\u0000\u0000\f\u0002\"\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002#\u0000\u0001\u0002$\u0011\u0002$\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002!\u0000\u0002\u0002%\u0002&\r\u0002%\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0006\u0002'\u0002(\u0001\u0006\u0000\u0000\f\u0002'\u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002(\u0000\u0001\u0002)\u0011\u0002)\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002&\u0000\u0002\u0002*\u0002+\r\u0002*\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002,\u0002-\r\u0002,\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002.\u0002\u0002.\u0000\u0002\u0002\/\u00020\r\u0002\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u00021\u00022\r\u00021\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u0005\n\u0005\u0000\u0004\ntxdl\r\u00022\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u0004\n\u0004\u0000\u0004\nascr\u0002\u00020\u0000\u0002\u00023\u0003\r\u00023\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\u0002\u0000\/\u0002\u0003\u0000\u0000\r\u0002-\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u00026\u0002\u00026\u0000\u0002\u00027\u00028\r\u00027\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u00028\u0000\u0002\u00029\u0001\r\u00029\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002:\u0002;\r\u0002:\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\u0000\n\u0000\u0000\u0004\ntxdl\r\u0002;\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nascr\u0002\u0001\u0000\u0000\u0002\u0002+\u0000\u0002\u0002<\u0002=\r\u0002<\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\u0002>\u0002?\u0001\u0000\u0000\f\u0002>\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u0002?\u0000\u0001\u0002@\u0011\u0002@\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0002=\u0000\u0002\u0002A\u0002B\r\u0002A\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u0002C\u0002D\r\u0002C\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u0002E\u0002F\r\u0002E\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002G\r\u0002G\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002H\u0002I\r\u0002H\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002J\u0002K\r\u0002J\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0002L\u0002M\n\u0000\u0004\ncitm\r\u0002L\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0003\u0000\u0001\r\u0002M\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0003\r\u0002K\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002N\r\u0002N\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002O\u0002P\r\u0002O\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npsxp\r\u0002P\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002Q\r\u0002Q\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002R\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002R\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002I\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002F\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002S\u000e\u0002S\u0000\u0001\u0002T\u0011\u0002T\u0000\u0002\u0000\/\r\u0002D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0002B\u0000\u0002\u0002U\u0002V\r\u0002U\u0000\u0003l\u0000\u0001\u00000\u00000\u0002W\u0002X\u0001\u0000\u0000\f\u0002W\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002X\u0000\u0001\u0002Y\u0011\u0002Y\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002V\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0002r\u0000\u0000\u00000\u00005\u0002\\\u0002]\r\u0002\\\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002]\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002^\u0002_\r\u0002^\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002_\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002[\u0000\u0002\u0002`\r\u0002`\u0000\u0001L\u0000\u0000\u00006\u00008\u0002a\r\u0002a\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u001c\u0000\u0002\u0002b\u0002c\r\u0002b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002c\u0000\u0002\u0002d\u0002e\r\u0002d\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002f\u0002g\r\u0002f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002h\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002h\u0000\u0002\u0002i\r\u0002i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002g\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002j\u0002\u0002j\u0000\u0002\u0002k\u0002l\r\u0002k\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002m\u0002n\u0001\u0000\u0000\f\u0002m\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002n\u0000\u0001\u0002o\u0011\u0002o\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002l\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002r\u0002s\u0001\u0000\u0000\f\u0002r\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002s\u0000\u0001\u0002t\u0011\u0002t\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002q\u0000\u0002\u0002u\u0002v\r\u0002u\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002w\u0002x\r\u0002w\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002y\u0002z\r\u0002y\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002z\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002{\r\u0002{\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002|\u0002}\r\u0002|\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002}\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002v\u0000\u0002\u0002~\u0002\r\u0002~\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002e\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0003\u0000\n\u0000\u0004\nditm\r\u0003\u0000\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0001\u000f\u0003\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0002\r\u0003\u0002\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0003\u0003\r\u0003\u0003\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0004\u0003\u0005\r\u0003\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0005\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0003\b\u0003\t\r\u0003\b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\n\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0003\n\u0000\u0002\u0003\u000b\r\u0003\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\t\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\f\u0002\u0003\f\u0000\u0002\u0003\r\u0003\u000e\r\u0003\r\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000f\u0003\u0010\u0001\u0000\u0000\f\u0003\u000f\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0010\u0000\u0001\u0003\u0011\u0011\u0003\u0011\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u000e\u0000\u0002\u0003\u0012\u0003\u0013\r\u0003\u0012\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\u0014\u0003\u0015\r\u0003\u0014\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\u0016\u0003\u0017\r\u0003\u0016\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\u0018\u0003\u0019\r\u0003\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u0019\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\u0017\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u001c\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u001c\u0000\u0002\u0003\u001d\r\u0003\u001d\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u001b\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\u0015\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u001e\r\u0003\u001e\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0013\u0000\u0002\u0003\u001f~\r\u0003\u001f\u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003 \u0003!\u0003\"\r\u0003 \u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003#\u0002\u0003#\u0000\u0002\u0003$\u0003%\r\u0003$\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003&\u0003'}|\r\u0003&\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003(\u0003)\r\u0003(\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003*\u0003+\r\u0003*\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e{\n{\u0000\u0004\npcls\r\u0003+\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001cz\u000bz\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003)\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fy\ny\u0000\u0004\nalis\r\u0003'\u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003,\r\u0003,\u0000\u0001m\u0000\u0000\u0000#\u0000$x\nx\u0000\b\u000bboovtrue\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\u0003%\u0000\u0002\u0003-w\r\u0003-\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003.\u0003\/\u00030\u00031\r\u0003.\u0000\u0002E\u0000\u0000\u0000*\u0000-\u00032\u00033\r\u00032\u0000\u0001o\u0000\u0000\u0000*\u0000+v\u000bv\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00033\u0000\u0001m\u0000\u0000\u0000+\u0000,\u00034\u000e\u00034\u0000\u0001\u00035\u0011\u00035\u0000\u0002\u0000:\r\u0003\/\u0000\u0001k\u0000\u0000\u00000\u00008\u00036\u0002\u00036\u0000\u0002\u00037\u00038\r\u00037\u0000\u00024\u0000\u0000\u00000\u00005u\u00039\nu\u0000\u0004\nalis\r\u00039\u0000\u0001o\u0000\u0000\u00002\u00003t\u000bt\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00038\u0000\u0002\u0003:s\r\u0003:\u0000\u0001L\u0000\u0000\u00006\u00008\u0003;\r\u0003;\u0000\u0001m\u0000\u0000\u00006\u00007r\nr\u0000\b\u000bboovtrue\u0002s\u0000\u0000\u0002\u00030\u0000\u0002\u0003<\u0003=\r\u0003<\u0000\u0002E\u0000\u0000\u0000;\u0000>\u0003>\u0003?\r\u0003>\u0000\u0001o\u0000\u0000\u0000;\u0000<q\u000bq\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003?\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003@\u000e\u0003@\u0000\u0001\u0003A\u0011\u0003A\u0000\u0002\u0000\/\u0002\u0003=\u0000\u0002\u0003Bp\r\u0003B\u0000\u0001k\u0000\u0000\u0000A\u0000J\u0003C\u0002\u0003C\u0000\u0002\u0003D\u0003E\r\u0003D\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003F\u0003G\r\u0003F\u0000\u00024\u0000\u0000\u0000A\u0000Eo\u0003H\no\u0000\u0004\npsxf\r\u0003H\u0000\u0001o\u0000\u0000\u0000C\u0000Dn\u000bn\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003G\u0000\u0001m\u0000\u0000\u0000E\u0000Fm\nm\u0000\u0004\nalis\u0002\u0003E\u0000\u0002\u0003Il\r\u0003I\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003J\r\u0003J\u0000\u0001m\u0000\u0000\u0000H\u0000Ik\nk\u0000\b\u000bboovtrue\u0002l\u0000\u0000\u0002p\u0000\u0000\r\u00031\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003K\r\u0003K\u0000\u0001m\u0000\u0000\u0000M\u0000Nj\nj\u0000\b\u000bboovfals\u0002w\u0000\u0000\r\u0003!\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000i\u0003Lh\ni\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002h\u0000\u0000\r\u0003\"\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003M\r\u0003M\u0000\u0001m\u0000\u0000\u0000W\u0000Xf\nf\u0000\b\u000bboovfals\u0002~\u0000\u0000\u0002\u0003\u0007\u0000\u0002\u0003N\u0003O\r\u0003N\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0003O\u0000\u0002\u0003P\u0003Q\r\u0003P\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003R\u0003S\r\u0003R\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u0003Ta\u000bb\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003T\u0000\u0002\u0003U`\r\u0003U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u0003S\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003V\u0002\u0003V\u0000\u0002\u0003W\u0003X\r\u0003W\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000^\u0003Y\u0003Z\u0001^\u0000\u0000\f\u0003Y\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003Z\u0000\u0001\u0003[\u0011\u0003[\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003X\u0000\u0002\u0003\\\u0003]\r\u0003\\\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000]\u0003^\u0003_\u0001]\u0000\u0000\f\u0003^\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003_\u0000\u0001\u0003`\u0011\u0003`\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003]\u0000\u0002\u0003a\u0003b\r\u0003a\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003c\u0003d\\[\r\u0003c\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003e\u0003f\r\u0003e\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003g\u0002\u0003g\u0000\u0002\u0003h\u0003i\r\u0003h\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001Z\nZ\u0000\b\u000bboovtrue\u0002\u0003i\u0000\u0002\u0003jY\r\u0003j\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002X\nX\u0000\b\u000bboovfals\u0002Y\u0000\u0000\r\u0003f\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005W\u000bW\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003d\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003k\r\u0003k\u0000\u0001m\u0000\u0000\u0000\t\u0000\nV\nV\u0000\b\u000bboovfals\u0002\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0003b\u0000\u0002\u0003l\u0003m\r\u0003l\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010U\u0003n\u0003o\u0001U\u0000\u0000\f\u0003n\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003o\u0000\u0001\u0003p\u0011\u0003p\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003m\u0000\u0002\u0003q\u0003r\r\u0003q\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003s\u0003tTS\r\u0003s\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003u\u0003v\r\u0003u\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011R\u000bR\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003v\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012Q\nQ\u0000\u0004\nmsng\r\u0003t\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003w\r\u0003w\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017P\nP\u0000\b\u000bboovtrue\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002\u0003r\u0000\u0002\u0003x\u0003y\r\u0003x\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dO\u0003z\u0003{\u0001O\u0000\u0000\f\u0003z\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003{\u0000\u0001\u0003|\u0011\u0003|\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003y\u0000\u0002\u0003}N\r\u0003}\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003~\r\u0003~\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000#\u0000%M\nM\u0000\u0004\nleng\r\u0003\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003LK\r\u0003\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#J\u0003I\u000bJ\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003H\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fG\u000bG\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001L\u0000\u0000\u0001K\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000%\u0000&F\u0003F\u0000\u0000\u0002N\u0000\u0000\u0002\u0003Q\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0003\u0000\u0002\u0003B\r\u0003\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000A\u0003@\u000bA\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003?\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\b0\u0000\u0004_str\u0000\u0000\u0002?\u0000\u0000\u0002@\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000=\u0003\u0003\u0001=\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003<;\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003:\n:\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00019\u000b9\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u00048\n8\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b7\n7\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t6\u000b6\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f5\n5\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u00134\u000b4\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u00143\n3\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b2\u000b2\u0000\b0\u0000\u0004_str\u0000\u0000\u0002<\u0000\u0000\u0001;\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u000310\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"\/\u000b\/\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(.\u000b.\u0000\b0\u0000\u0004_str\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D-\u0003\u0003\n-\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@,\u0003,\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C+\u0003+\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:*\u000b*\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E)\n)\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000'\u0003&\n'\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002&\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003$\u000b$\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n#\u0003\u0003\n#\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j\"\u0003\"\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m!\u0003!\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d \u000b \u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o\u001f\n\u001f\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001c\u001b\n\u001d\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u001c\u0000\u0000\u0002\u001b\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u001a\u000b\u001a\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0019\r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0019\u0000\u0000\u0002B\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0011\u0017\u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001\u0017\u0000\u0000\u0010\u0003\u0000\u000f\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u000b\u0016\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u0015\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u0014\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u0013\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u0012\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u0011\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u0010\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u000f\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u000e\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\r\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\f\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\n\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\t\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\b\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u0007\u0000F\u0006\u0005\u0003\u0003\u0004\u000b\u0007\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0005\u0000\u0000\u0010\u0003\u0000\u0001\u0003\u000b\u0003\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\u0002\u0001\u0000i\u0000\u0000v\u000b\u0002\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0001\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\u0000\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\u0004\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0000\u0003\u0003\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001 \u0001%\u00019\u0001@\u0001P\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOa\u0000\u001c\u0012\u0000\u0014*a\u0000\u001db\u0000\u0001\u0000\u0003\/a\u0000\u001e&j\f\u0000\u001fUOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001\\\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001p\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\t\u0002\r\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u001e\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u00024\u0002S\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002g\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0003\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0004\u0000\u0004\u0001\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0002\u0003\u0000\u0001\u000e\u0004\u0002\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0000\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0004\u0001\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0004\u0003\u0004\u0004\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0005\u0003\u0000\u0001\u000e\u0004\u0005\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0004\u0004\u0000\u0005\u0003\u0001\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\t\u0004\u0006\u0004\u0007\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\b\u0003\u0000\u0001\u000e\u0004\b\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0006\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0007\u0000\n\u00034\u0003@\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003S\u0004\t\u0004\n\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u000b\u0003\u0000\u0001\u000e\u0004\u000b\u0000\u0001\u0000~\u000b~\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0004\t\u0000\u0001}\u000b}\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0004\n\u0000\u0003|{z\n|\u0000\u0004\nmsng\u000b{\u0000\t0\u0000\u0005_trim\u0000\u0000\nz\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010y\u0003xw\u0004\f\u0004\rv\u000by\u0000\t0\u0000\u0005_trim\u0000\u0000\u000ex\u0000\u0002\u0004u\u0004\u000e\u0003u\u0000\u0001\u000e\u0004\u000e\u0000\u0001\u0000t\u000bt\u0000\b0\u0000\u0004_str\u0000\u0000\u0002w\u0000\u0000\u0010\u0004\f\u0000\u0002sr\u000bs\u0000\b0\u0000\u0004_str\u0000\u0000\u000br\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\r\u0000\u000fqponm\u0003\u0003lkj\u0003\u0003ih\u0003\nq\u0000\u0004\npcls\np\u0000\u0004\nctxt\no\u0000\u0004\nTEXT\nn\u0000\u0004\nbool\nm\u0000\u0004\nmsng\nl\u0000\u0004\ncobj\u000bk\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002j\u0000\u0000\u0003i\u0001h\u0000\u0000\u0011v\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000<\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000;\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000?\u0000@\u0001\u0000\u0000\f\u0000?\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000@\u0000\u0001\u0000A\u0011\u0000A\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000>\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000F\u0000G\r\u0000F\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000G\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000H\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000P\u0000Q\u0001\u0000\u0000\f\u0000P\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000O\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000U\u0000V\r\u0000U\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000Y\r\u0000Y\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000\\\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000[\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000X\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000^\u0002\u0000^\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000a\u0000b\u0001\u0000\u0000\f\u0000a\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000b\u0000\u0001\u0000c\u0011\u0000c\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000`\u0000\u0002\u0000d\r\u0000d\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000e\u0000f\r\u0000e\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000f\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000i\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000i\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000j\b\u0000j\u0000\b?\u0002\u0000\u0000\u0002\u0000h\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000m\u0000n\u0001\u0000\u0000\f\u0000m\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000l\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000t\r\u0000t\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000v\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000q\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000{\u0000|\u0001\u0000\u0000\f\u0000{\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000|\u0000\u0001\u0000}\u0011\u0000}\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000z\u0000\u0002\u0000~\r\u0000~\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0001\u0002\u0001\u0003\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0003\u0000\u0003\u0001\u0006\n\u0000\u0004\nerrn\r\u0001\u0006\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\t\u0001\n\u0001\u0000\u0000\f\u0001\t\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\n\u0000\u0001\u0001\u000b\u0011\u0001\u000b\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\u0010\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u000f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0014\u0001\u0015\u0001\u0000\u0000\f\u0001\u0014\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0015\u0000\u0001\u0001\u0016\u0011\u0001\u0016\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0013\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001!\u000e\u0001!\u0000\u0001\u0001\"\u0011\u0001\"\u0000\u0006\u0000c\u0000d\u0000 \r\u0001 \u0000\u0003l\u0000\u0005\u0000\u0000\u0001#\r\u0001#\u0000\u0002n\u0000\u0000\u0000\u0000\u0001$\u0001%\r\u0001$\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0001&\u000e\u0001&\u0000\u0001\u0001'\u0011\u0001'\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u001c\u0000\u0003l\u0000\u0005\u0000\u0000\u0001(\r\u0001(\u0000\u0002n\u0000\u0000\u0000\u0000\u0001)\u0001*\r\u0001)\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nstrq\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0018\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003I\u0000\u0002\u0000\u0000{\u0001-z\n{\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002z\u0000\u0000\u0002\u0001,\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0003l\u0000\u0001\u0000\u0000x\u00010\u00011\u0001x\u0000\u0000\f\u00010\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u00011\u0000\u0001\u00012\u0011\u00012\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001\/\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002r\u0000\u0000\u0000\u0000\u00015\u00016\r\u00015\u0000\u0003l\u0000\u0005\u0000\u0000\u00017wv\r\u00017\u0000\u0002b\u0000\u0000\u0000\u0000\u00018\u00019\r\u00018\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001w\u0000\u0000\u0001v\u0000\u0000\r\u00016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00014\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0002V\u0000\u0000\u0000\u0000\u0001>\u0001?\r\u0001>\u0000\u0003I\u0000\u0002\u0000\u0000s\u0001@r\ns\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001@\u0000\u0001m\u0000\u0000\u0000\u0000\u0001A\b\u0001A\u0000\b?\u0259\u0002r\u0000\u0000\r\u0001?\u0000\u0001H\u0000\u0000\u0000\u0000\u0001B\r\u0001B\u0000\u0003l\u0000\u0005\u0000\u0000\u0001Cqp\r\u0001C\u0000\u0002n\u0000\u0001\u0000\u0000\u0001D\u0001E\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001Fn\u000bo\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001F\u0000\u0002\u0001Gm\r\u0001G\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002m\u0000\u0000\u0002n\u0000\u0000\r\u0001E\u0000\u0000f\u0000\u0000\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001=\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0002O\u0000\u0001\u0000\u0000\u0001J\u0001K\r\u0001J\u0000\u0003I\u0000\u0002\u0000\u0000k\u0001Lj\nk\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0001L\u0000\u0003l\u0000\u0005\u0000\u0000\u0001Mih\r\u0001M\u0000\u0002c\u0000\u0000\u0000\u0000\u0001N\u0001O\r\u0001N\u0000\u00024\u0000\u0000\u0000\u0000g\u0001P\ng\u0000\u0004\npsxf\r\u0001P\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0000e\ne\u0000\u0004\nalis\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002j\u0000\u0000\r\u0001K\u0000\u0001m\u0000\u0000\u0000\u0000\u0001Q\u000f\u0001Q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0532Y`\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000`D\u0019\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001I\u0000\u0002\u0001Rd\r\u0001R\u0000\u0001L\u0000\u0000\u0000\u0000c\u0001c\u0000\u0000\u0002d\u0000\u0000\u0002\u0000\u0000\u0002\u0001S\u0001T\r\u0001S\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000_\u0001W\u0001X\u0001_\u0000\u0000\f\u0001W\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001X\u0000\u0001\u0001Y\u0011\u0001Y\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001V\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001\\\u0001]\r\u0001\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000^]\\\u000b^\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002]\u0000\u0000\u0002\\\u0000\u0000\r\u0001]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001^\u0002\u0001^\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000[\u0001a\u0001b\u0001[\u0000\u0000\f\u0001a\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001`\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000Z\u0001f\u0001g\u0001Z\u0000\u0000\f\u0001f\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001g\u0000\u0001\u0001h\u0011\u0001h\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001e\u0000\u0002\u0001i\u0001j\r\u0001i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001k\u0001l\r\u0001k\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001m\u0001n\r\u0001m\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001o\u0001p\r\u0001o\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005YXW\u000bY\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002X\u0000\u0000\u0002W\u0000\u0000\r\u0001p\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001n\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001q\u000e\u0001q\u0000\u0001\u0001r\u0011\u0001r\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001j\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0003l\u0000\u0001\u0000\n\u0000\nU\u0001u\u0001v\u0001U\u0000\u0000\f\u0001u\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001t\u0000\u0002\u0001x\u0001y\r\u0001x\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001z\u0001{\r\u0001z\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001|\u0001}\r\u0001|\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001~\u0001\r\u0001~\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\fT\u000bT\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001}\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000'\r\u0001{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001y\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017R\u0001Q\nR\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013P\u000bP\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002Q\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aN\u0001\u0001\u0001N\u0000\u0000\f\u0001\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fMLK\u000bM\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002L\u0000\u0000\u0002K\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*I\u0001H\u000bI\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001G\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&F\u000bF\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002G\u0000\u0000\u0002H\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-D\u0001\u0001\u0001D\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.C\u000bC\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001B\u000bB\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000W=\n=\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001<;\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000S:\u0001\u0001\n:\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u000089\u000b9\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u00038\u0001\u0001\n8\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u00017\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u00027\u0000\u0000\u0006\u0001\u0000\u00036\u0001\u0001\n6\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@5\u00035\u0000\u0003\u0006\u0001\u0000\u00034\u0001\u0001\n4\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C3\u000b3\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u00032\u00011\n2\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M0\u0001\n0\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L\/\u000b\/\u0000\t0\u0000\u0005_icon\u0000\u0000\u00061\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z-\u0001\u0001\u0001-\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u0001,+\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[*\u000b*\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c)\n)\u0000\b\u000bboovtrue\u0002,\u0000\u0000\u0001+\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i(\u0001\u0001\u0001(\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u0001'&\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j%\u000b%\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~$\u0001#\n$\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002#\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\"\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000!\u0001\u0001\n!\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003 \u0001\u001f\n \u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u0003\u001e\u0000\u0017\u0006\u001f\u0000\u0000\u0002\"\u0000\u0000\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u0002\u0002\u0002\u0003\u0001\u001d\u0000\u0000\f\u0002\u0002\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0002\u0003\u0000\u0001\u0002\u0004\u0011\u0002\u0004\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0002\u0001\u0000\u0002\u0002\u0005\u001c\r\u0002\u0005\u0000\u0004Z\u0000\u0001\u0000\u0000\u0002\u0006\u0002\u0007\u001b\u001a\r\u0002\u0006\u0000\u0002=\u0000\u0001\u0000\u0000\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\r0\u0000\t_response\u0000\u0000\r\u0002\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0002\u0007\u0000\u0003R\u0000\u0000\u0000\u0000\u0018\u0002\f\u0002\r\n\u0018\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u000e\u0002\u000e\u0000\u0001\u0002\u000f\u0011\u0002\u000f\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\r\u0000\u0003\u0017\u0002\u0010\u0016\n\u0017\u0000\u0004\nerrn\r\u0002\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\u0003\u0015\u0000\u0017\u0006\u0016\u0000\u0000\u0002\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u001c\u0000\u0000\u0002\u0001[\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0011\u0010\u000f\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0002\u0014\u0000\u0002\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0017\u0002\u0018\u0001\u000e\u0000\u0000\f\u0002\u0017\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\u0018\u0000\u0001\u0002\u0019\u0011\u0002\u0019\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\u0016\u0000\u0002\u0002\u001a\u0002\u001b\r\u0002\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0002\u001b\u0000\u0002\u0002\u001c\u0002\u001d\r\u0002\u001c\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\n\t\b\u000b\n\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\t\u0000\u0000\u0002\b\u0000\u0000\r\u0002\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002 \u0002\u0002 \u0000\u0002\u0002!\u0002\"\r\u0002!\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0002#\u0002$\u0001\u0007\u0000\u0000\f\u0002#\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002$\u0000\u0001\u0002%\u0011\u0002%\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\"\u0000\u0002\u0002&\u0002'\r\u0002&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0006\u0002(\u0002)\u0001\u0006\u0000\u0000\f\u0002(\u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002)\u0000\u0001\u0002*\u0011\u0002*\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002'\u0000\u0002\u0002+\u0002,\r\u0002+\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002-\u0002.\r\u0002-\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002\/\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u00022\u00023\r\u00022\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u0005\n\u0005\u0000\u0004\ntxdl\r\u00023\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u0004\n\u0004\u0000\u0004\nascr\u0002\u00021\u0000\u0002\u00024\u0003\r\u00024\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u00025\u000e\u00025\u0000\u0001\u00026\u0011\u00026\u0000\u0002\u0000\/\u0002\u0003\u0000\u0000\r\u0002.\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u00027\u0002\u00027\u0000\u0002\u00028\u00029\r\u00028\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u00029\u0000\u0002\u0002:\u0001\r\u0002:\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002;\u0002<\r\u0002;\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\u0000\n\u0000\u0000\u0004\ntxdl\r\u0002<\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nascr\u0002\u0001\u0000\u0000\u0002\u0002,\u0000\u0002\u0002=\u0002>\r\u0002=\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\u0002?\u0002@\u0001\u0000\u0000\f\u0002?\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u0002@\u0000\u0001\u0002A\u0011\u0002A\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0002>\u0000\u0002\u0002B\u0002C\r\u0002B\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u0002D\u0002E\r\u0002D\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u0002F\u0002G\r\u0002F\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002H\r\u0002H\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002I\u0002J\r\u0002I\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002K\u0002L\r\u0002K\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0002M\u0002N\n\u0000\u0004\ncitm\r\u0002M\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0003\u0000\u0001\r\u0002N\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0003\r\u0002L\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002O\r\u0002O\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002P\u0002Q\r\u0002P\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npsxp\r\u0002Q\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002R\r\u0002R\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002S\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002S\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002J\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002G\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000\u0002\u0000\/\r\u0002E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0002C\u0000\u0002\u0002V\u0002W\r\u0002V\u0000\u0003l\u0000\u0001\u00000\u00000\u0002X\u0002Y\u0001\u0000\u0000\f\u0002X\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002Y\u0000\u0001\u0002Z\u0011\u0002Z\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002W\u0000\u0002\u0002[\u0002\\\r\u0002[\u0000\u0002r\u0000\u0000\u00000\u00005\u0002]\u0002^\r\u0002]\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002^\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002_\u0002`\r\u0002_\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002`\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002\\\u0000\u0002\u0002a\r\u0002a\u0000\u0001L\u0000\u0000\u00006\u00008\u0002b\r\u0002b\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u001d\u0000\u0002\u0002c\u0002d\r\u0002c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002d\u0000\u0002\u0002e\u0002f\r\u0002e\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002g\u0002h\r\u0002g\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002i\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002i\u0000\u0002\u0002j\r\u0002j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002h\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002k\u0002\u0002k\u0000\u0002\u0002l\u0002m\r\u0002l\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002n\u0002o\u0001\u0000\u0000\f\u0002n\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002o\u0000\u0001\u0002p\u0011\u0002p\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002m\u0000\u0002\u0002q\u0002r\r\u0002q\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002s\u0002t\u0001\u0000\u0000\f\u0002s\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002t\u0000\u0001\u0002u\u0011\u0002u\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002r\u0000\u0002\u0002v\u0002w\r\u0002v\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002x\u0002y\r\u0002x\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002z\u0002{\r\u0002z\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002{\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002|\r\u0002|\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002}\u0002~\r\u0002}\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002~\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002w\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002f\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0003\u0000\r\u0003\u0000\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0003\u0001\n\u0000\u0004\nditm\r\u0003\u0001\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0002\u000f\u0003\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0003\r\u0003\u0003\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0003\u0004\r\u0003\u0004\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0005\u0003\u0006\r\u0003\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0006\u0000\u0002\u0003\u0007\u0003\b\r\u0003\u0007\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0003\t\u0003\n\r\u0003\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0003\u000b\u0000\u0002\u0003\f\r\u0003\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\r\u0002\u0003\r\u0000\u0002\u0003\u000e\u0003\u000f\r\u0003\u000e\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0010\u0003\u0011\u0001\u0000\u0000\f\u0003\u0010\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0011\u0000\u0001\u0003\u0012\u0011\u0003\u0012\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u000f\u0000\u0002\u0003\u0013\u0003\u0014\r\u0003\u0013\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\u0015\u0003\u0016\r\u0003\u0015\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\u0017\u0003\u0018\r\u0003\u0017\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\u0019\u0003\u001a\r\u0003\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u001a\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\u0018\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u001b\u0003\u001c\r\u0003\u001b\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u001d\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u001d\u0000\u0002\u0003\u001e\r\u0003\u001e\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u001c\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\u0016\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u001f\r\u0003\u001f\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0014\u0000\u0002\u0003 ~\r\u0003 \u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003!\u0003\"\u0003#\r\u0003!\u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003$\u0002\u0003$\u0000\u0002\u0003%\u0003&\r\u0003%\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003'\u0003(}|\r\u0003'\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003)\u0003*\r\u0003)\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003+\u0003,\r\u0003+\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e{\n{\u0000\u0004\npcls\r\u0003,\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001cz\u000bz\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fy\ny\u0000\u0004\nalis\r\u0003(\u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003-\r\u0003-\u0000\u0001m\u0000\u0000\u0000#\u0000$x\nx\u0000\b\u000bboovtrue\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\u0003&\u0000\u0002\u0003.w\r\u0003.\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003\/\u00030\u00031\u00032\r\u0003\/\u0000\u0002E\u0000\u0000\u0000*\u0000-\u00033\u00034\r\u00033\u0000\u0001o\u0000\u0000\u0000*\u0000+v\u000bv\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00034\u0000\u0001m\u0000\u0000\u0000+\u0000,\u00035\u000e\u00035\u0000\u0001\u00036\u0011\u00036\u0000\u0002\u0000:\r\u00030\u0000\u0001k\u0000\u0000\u00000\u00008\u00037\u0002\u00037\u0000\u0002\u00038\u00039\r\u00038\u0000\u00024\u0000\u0000\u00000\u00005u\u0003:\nu\u0000\u0004\nalis\r\u0003:\u0000\u0001o\u0000\u0000\u00002\u00003t\u000bt\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00039\u0000\u0002\u0003;s\r\u0003;\u0000\u0001L\u0000\u0000\u00006\u00008\u0003<\r\u0003<\u0000\u0001m\u0000\u0000\u00006\u00007r\nr\u0000\b\u000bboovtrue\u0002s\u0000\u0000\u0002\u00031\u0000\u0002\u0003=\u0003>\r\u0003=\u0000\u0002E\u0000\u0000\u0000;\u0000>\u0003?\u0003@\r\u0003?\u0000\u0001o\u0000\u0000\u0000;\u0000<q\u000bq\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003@\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003A\u000e\u0003A\u0000\u0001\u0003B\u0011\u0003B\u0000\u0002\u0000\/\u0002\u0003>\u0000\u0002\u0003Cp\r\u0003C\u0000\u0001k\u0000\u0000\u0000A\u0000J\u0003D\u0002\u0003D\u0000\u0002\u0003E\u0003F\r\u0003E\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003G\u0003H\r\u0003G\u0000\u00024\u0000\u0000\u0000A\u0000Eo\u0003I\no\u0000\u0004\npsxf\r\u0003I\u0000\u0001o\u0000\u0000\u0000C\u0000Dn\u000bn\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003H\u0000\u0001m\u0000\u0000\u0000E\u0000Fm\nm\u0000\u0004\nalis\u0002\u0003F\u0000\u0002\u0003Jl\r\u0003J\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003K\r\u0003K\u0000\u0001m\u0000\u0000\u0000H\u0000Ik\nk\u0000\b\u000bboovtrue\u0002l\u0000\u0000\u0002p\u0000\u0000\r\u00032\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003L\r\u0003L\u0000\u0001m\u0000\u0000\u0000M\u0000Nj\nj\u0000\b\u000bboovfals\u0002w\u0000\u0000\r\u0003\"\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000i\u0003Mh\ni\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002h\u0000\u0000\r\u0003#\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003N\r\u0003N\u0000\u0001m\u0000\u0000\u0000W\u0000Xf\nf\u0000\b\u000bboovfals\u0002~\u0000\u0000\u0002\u0003\b\u0000\u0002\u0003O\u0003P\r\u0003O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0003P\u0000\u0002\u0003Q\u0003R\r\u0003Q\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003S\u0003T\r\u0003S\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u0003Ua\u000bb\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003U\u0000\u0002\u0003V`\r\u0003V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u0003T\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003W\u0002\u0003W\u0000\u0002\u0003X\u0003Y\r\u0003X\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000^\u0003Z\u0003[\u0001^\u0000\u0000\f\u0003Z\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003[\u0000\u0001\u0003\\\u0011\u0003\\\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003Y\u0000\u0002\u0003]\u0003^\r\u0003]\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000]\u0003_\u0003`\u0001]\u0000\u0000\f\u0003_\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003`\u0000\u0001\u0003a\u0011\u0003a\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003^\u0000\u0002\u0003b\u0003c\r\u0003b\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003d\u0003e\\[\r\u0003d\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003f\u0003g\r\u0003f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003h\u0002\u0003h\u0000\u0002\u0003i\u0003j\r\u0003i\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001Z\nZ\u0000\b\u000bboovtrue\u0002\u0003j\u0000\u0002\u0003kY\r\u0003k\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002X\nX\u0000\b\u000bboovfals\u0002Y\u0000\u0000\r\u0003g\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005W\u000bW\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003e\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003l\r\u0003l\u0000\u0001m\u0000\u0000\u0000\t\u0000\nV\nV\u0000\b\u000bboovfals\u0002\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0003c\u0000\u0002\u0003m\u0003n\r\u0003m\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010U\u0003o\u0003p\u0001U\u0000\u0000\f\u0003o\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003p\u0000\u0001\u0003q\u0011\u0003q\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003n\u0000\u0002\u0003r\u0003s\r\u0003r\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003t\u0003uTS\r\u0003t\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003v\u0003w\r\u0003v\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011R\u000bR\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003w\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012Q\nQ\u0000\u0004\nmsng\r\u0003u\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003x\r\u0003x\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017P\nP\u0000\b\u000bboovtrue\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002\u0003s\u0000\u0002\u0003y\u0003z\r\u0003y\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dO\u0003{\u0003|\u0001O\u0000\u0000\f\u0003{\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003|\u0000\u0001\u0003}\u0011\u0003}\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003z\u0000\u0002\u0003~N\r\u0003~\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003\r\u0003\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000#\u0000%M\nM\u0000\u0004\nleng\r\u0003\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003LK\r\u0003\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#J\u0003I\u000bJ\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003H\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fG\u000bG\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001L\u0000\u0000\u0001K\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000%\u0000&F\u0003F\u0000\u0000\u0002N\u0000\u0000\u0002\u0003R\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0003\u0000\u0002\u0003B\r\u0003\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000A\u0003@\u000bA\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003?\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\b0\u0000\u0004_str\u0000\u0000\u0002?\u0000\u0000\u0002@\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000=\u0003\u0003\u0001=\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003<;\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003:\n:\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00019\u000b9\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u00048\n8\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b7\n7\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t6\u000b6\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f5\n5\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u00134\u000b4\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u00143\n3\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b2\u000b2\u0000\b0\u0000\u0004_str\u0000\u0000\u0002<\u0000\u0000\u0001;\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u000310\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"\/\u000b\/\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(.\u000b.\u0000\b0\u0000\u0004_str\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D-\u0003\u0003\n-\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@,\u0003,\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C+\u0003+\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:*\u000b*\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E)\n)\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000'\u0003&\n'\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002&\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003$\u000b$\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n#\u0003\u0003\n#\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j\"\u0003\"\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m!\u0003!\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d \u000b \u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o\u001f\n\u001f\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001c\u001b\n\u001d\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u001c\u0000\u0000\u0002\u001b\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u001a\u000b\u001a\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0019\r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0019\u0000\u0000\u0002B\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u0017\u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001\u0017\u0000\u0000\u0010\u0003\u0000\u0010\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u000b\u0016\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u0015\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u0014\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u0013\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u0012\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u0011\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u0010\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u000f\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u000e\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\r\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\f\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\n\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\t\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\b\u0000\t0\u0000\u0005_trim\u0000\u0000\n\u0007\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u0006\u0000G\u0005\u0004\u0003\u0003\u0003\u000b\u0006\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0005\u0000\u0000\u0002\u0004\u0000\u0000\u0010\u0003\u0000\u0001\u0002\u000b\u0002\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\u0001\u0000\u0000j\u0000w\u000b\u0001\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0000\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\u0003\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0000\u0003\u0003\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0004\u0001!\u0001&\u0001:\u0001A\u0001Q\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOa\u0000\u001c\u0012\u0000\u0014*a\u0000\u001db\u0000\u0001\u0000\u0003\/a\u0000\u001e&j\f\u0000\u001fUOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001]\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001q\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\u000e\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u001f\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u00025\u0002T\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002h\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0004\u0000\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0001\u0003\u0000\u0001\u000e\u0004\u0001\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0004\u0000\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0004\u0002\u0004\u0003\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0004\u0003\u0000\u0001\u000e\u0004\u0004\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0002\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0004\u0003\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0004\u0005\u0004\u0006\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0007\u0003\u0000\u0001\u000e\u0004\u0007\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0005\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0004\u0006\u0000\u0005\u0003\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\n\u0004\b\u0004\t\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\n\u0003\u0000\u0001\u000e\u0004\n\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0004\b\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\t\u0000\n\u00035\u0003A\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003T\u0004\u000b\u0004\f\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004~\u0004\r\u0003~\u0000\u0001\u000e\u0004\r\u0000\u0001\u0000}\u000b}\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u000b\u0000\u0001|\u000b|\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0004\f\u0000\u0003{zy\n{\u0000\u0004\nmsng\u000bz\u0000\t0\u0000\u0005_trim\u0000\u0000\ny\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010x\u0003wv\u0004\u000e\u0004\u000fu\u000bx\u0000\t0\u0000\u0005_trim\u0000\u0000\u000ew\u0000\u0002\u0004t\u0004\u0010\u0003t\u0000\u0001\u000e\u0004\u0010\u0000\u0001\u0000s\u000bs\u0000\b0\u0000\u0004_str\u0000\u0000\u0002v\u0000\u0000\u0010\u0004\u000e\u0000\u0002rq\u000br\u0000\b0\u0000\u0004_str\u0000\u0000\u000bq\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u000f\u0000\u000fponml\u0003\u0003kji\u0003\u0003hg\u0003\np\u0000\u0004\npcls\no\u0000\u0004\nctxt\nn\u0000\u0004\nTEXT\nm\u0000\u0004\nbool\nl\u0000\u0004\nmsng\nk\u0000\u0004\ncobj\u000bj\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002i\u0000\u0000\u0003h\u0001g\u0000\u0000\u0011u\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000f\u000e\u0003\u0000\u0007\u0010f\u0004\u0011ed\u0004\u0012\u0004\u0013c\nf\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0004\u0011\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0004\u0014\u0002\u0004\u0014\u0000\u0002\u0000:b\u0002b\u0000\u0000\u0001e\u0000\u0000\u0002d\u0000\u0000\u0010\u0004\u0012\u0000\u0000\u0010\u0004\u0013\u0000\u0000\u0011c\u0000\u0006b\u0000\u0001\u0000\u0003\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"90b81e2ac5f0e9dfcc2ddb666fc48c7308f7c0d2","subject":"added warning before erasing the folder","message":"added warning before erasing the folder\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportAllLayers\/ExportAllLayers.applescript","new_file":"ExportAllLayers\/ExportAllLayers.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"c4b3f6bfa7a816b2252710f9a5ee4af4790c9d75","subject":"add dont save","message":"add dont save\n","repos":"dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios","old_file":"SampleSdkApp\/testrunner\/gui-autoscript.scpt","new_file":"SampleSdkApp\/testrunner\/gui-autoscript.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000x\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0001k\u0000\u0000\u0000\u0003\u0000k\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b\u0000\u000f\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u00008\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0013\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u0016\u000f\u0000\u0016\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002O\u0000\u0000\u0000\u0014\u0000X\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002O\u0000\u0000\u0000\u0018\u0000W\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u001f\u0000V\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\u001f\u0000?\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000&\u0000>\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000-\u0000=\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u00004\u0000<\u0000&\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000&\u0000\u00024\u0000\u0000\u00004\u00008\u0000'\n\u0000\u0004\nmenI\r\u0000'\u0000\u0001m\u0000\u0000\u00006\u00007\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u00006\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000a\u0000n\u0000d\u0000 \u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s &\u0002\u0000\u0000\r\u0000%\u0000\u00024\u0000\u0000\u0000-\u00001\u0000*\n\u0000\u0004\nmenE\r\u0000*\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000#\u0000\u00024\u0000\u0000\u0000&\u0000*\u0000-\n\u0000\u0004\nmbri\r\u0000-\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001f\u0000#\u00000\n\u0000\u0004\nmbar\r\u00000\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\u0002\u0000\u001f\u0000\u0002\u00001\r\u00001\u0000\u0002O\u0000\u0000\u0000@\u0000V\u00002\u00003\r\u00002\u0000\u0001k\u0000\u0000\u0000G\u0000U\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000G\u0000S\u00007\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u00007\u0000\u00024\u0000\u0000\u0000G\u0000O\u00008\n\u0000\u0004\nbutT\r\u00008\u0000\u0001m\u0000\u0000\u0000K\u0000N\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\n\u0000R\u0000e\u0000s\u0000e\u0000t\u0002\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000T\u0000T\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00003\u0000\u00024\u0000\u0000\u0000@\u0000D\u0000<\n\u0000\u0004\ncwin\r\u0000<\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u001c\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000=\n\u0000\u0004\nprcs\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000@\u000f\u0000@\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002O\u0000\u0000\u0000Y\u0000c\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000]\u0000b\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\u0000E\u000f\u0000E\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000B\u0000\u0002\u0000F\r\u0000F\u0000\u0003I\u0000\u0002\u0000d\u0000k\u0000G\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000G\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u00008\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000R\u0000E\u0000S\u0000E\u0000T\u0000 \u0000S\u0000I\u0000M\u0000U\u0000L\u0000A\u0000T\u0000O\u0000R\u0000 \u0000&\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000s\u0000x\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000R\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0000T\u0002\u0000T\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000W\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0000X\u0000Y\r\u0000X\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\\\u000e\u0000\\\u0000\u0001\u0000]\u0011\u0000]\u0000\u0012\u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000[\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000h\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000g\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000j\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000%\u0000m\u0000n\u0000o\r\u0000m\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0018\u0000p\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\n\u0000s\u0000t\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0000y\u0000z\r\u0000y\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000r\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0012\u0000}\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000o\u0000e\u0000p\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u00008\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000f\u00007\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0016\u00006\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001d\u00005\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000$\u00004\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000+\u00003\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000+\u0000\/\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u001d\u0000!\u0000\n\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0000\n\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000\n\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000B\u0000e\u0000g\u0000i\u0000n\u0000:\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\b\u0000\r\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000\u0019\u0000u\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001e\u0000p\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\"\u0000o\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000)\u0000n\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00000\u0000m\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00007\u0000l\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000>\u0000k\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000>\u0000a\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000>\u0000F\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000>\u0000D\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000>\u0000D\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000>\u0000D\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000C\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000>\u0000A\n\u0000\u0004\nmenI\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000I\u0000]\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000I\u0000Q\u0000~\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000I\u0000M}\u0000\n}\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L|\u000b|\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000R\u0000[{\u0000z\n{\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000Vy\u000by\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002z\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0000S\u0000\u0000\u0000\\\u0000]\u0002x\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0003I\u0000\u0002\u0000b\u0000kv\u0000u\nv\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000b\u0000g\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000b\u0000e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000o\u0000r\u0000 \u0000.\u0000.\u0000.\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000ft\u000bt\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00007\u0000;s\u0000\ns\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u00000\u00004r\u0000\nr\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-q\u0000\nq\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000+\u0000,p\u0003p\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000&o\u0000\no\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u0001\u000f\u0001\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0003l\u0000\u0002\u0000v\u0000vnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004k\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000v\u0000vjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0001\t\u0001\n\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000dcb\u000bd\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002c\u0000\u0000\u0002b\u0000\u0000\r\u0001\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\ta`_\na\u0000\u0018.miscactvnull\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0002O\u0000\u0000\u0000\u000b\u0000O\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002O\u0000\u0000\u0000\u000f\u0000N\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001k\u0000\u0000\u0000\u0016\u0000M\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b^\u0001\u001a]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u001b\b\u0001\u001b\u0000\b?\u0659\u0002]\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001c\\\r\u0001\u001c\u0000\u0002O\u0000\u0000\u0000\u001c\u0000M\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0002O\u0000\u0000\u0000#\u0000L\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002O\u0000\u0000\u0000*\u0000K\u0001!\u0001\"\r\u0001!\u0000\u0001k\u0000\u0000\u00001\u0000J\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003I\u0000\u0002\u00001\u00009[\u0001&Z\n[\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001&\u0000\u00024\u0000\u0000\u00001\u00005Y\u0001'\nY\u0000\u0004\nmenI\r\u0001'\u0000\u0001m\u0000\u0000\u00003\u00004\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002Z\u0000\u0000\u0002\u0001%\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000:\u0000?X\u0001,W\nX\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001,\u0000\u0001m\u0000\u0000\u0000:\u0000;V\u0003V\u0000\u0006\u0002W\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-U\r\u0001-\u0000\u0003I\u0000\u0002\u0000@\u0000JT\u0001.S\nT\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001.\u0000\u00024\u0000\u0000\u0000@\u0000FR\u0001\/\nR\u0000\u0004\nmenI\r\u0001\/\u0000\u0001m\u0000\u0000\u0000B\u0000E\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002S\u0000\u0000\u0002U\u0000\u0000\r\u0001\"\u0000\u00024\u0000\u0000\u0000*\u0000.Q\u00012\nQ\u0000\u0004\nmenE\r\u00012\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00013\u000e\u00013\u0000\u0001\u00014\u0011\u00014\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001 \u0000\u00024\u0000\u0000\u0000#\u0000'P\u00015\nP\u0000\u0004\nmbri\r\u00015\u0000\u0001m\u0000\u0000\u0000%\u0000&\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001\u001e\u0000\u00024\u0000\u0000\u0000\u001c\u0000 O\u00018\nO\u0000\u0004\nmbar\r\u00018\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\u0003N\u0000\u0001\u0002\\\u0000\u0000\r\u0001\u0016\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013M\u00019\nM\u0000\u0004\nprcs\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001<\u000f\u0001<\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001=L\r\u0001=\u0000\u0003l\u0000\u0002\u0000P\u0000PKJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002L\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000HGF\u000bH\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002G\u0000\u0000\u0002F\u0000\u0000\r\u0001A\u0000\u0002O\u0000\u0000\u0000\u0000\u0000.\u0001B\u0001C\r\u0001B\u0000\u0002O\u0000\u0000\u0000\u0004\u0000-\u0001D\u0001E\r\u0001D\u0000\u0001k\u0000\u0000\u0000\u000b\u0000,\u0001F\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010E\u0001ID\nE\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001I\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001J\b\u0001J\u0000\b?\u0659\u0002D\u0000\u0000\u0002\u0001H\u0000\u0002\u0001KC\r\u0001K\u0000\u0002O\u0000\u0000\u0000\u0011\u0000,\u0001L\u0001M\r\u0001L\u0000\u0002O\u0000\u0000\u0000\u0018\u0000+\u0001N\u0001O\r\u0001N\u0000\u0001k\u0000\u0000\u0000\u001f\u0000*\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002O\u0000\u0000\u0000\u001f\u0000(\u0001S\u0001T\r\u0001S\u0000\u0003l\u0000\u0006\u0000&\u0000&B\u0001U\u0001V\u0001B\u0000\u0000\f\u0001U\u0000\u001c\u0000\u0016click menu item \"Zoom\"\u0000\u0002\u0000\u0000\u000e\u0001V\u0000\u0001\u0001W\u0011\u0001W\u0000,\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000\"\u0000Z\u0000o\u0000o\u0000m\u0000\"\r\u0001T\u0000\u00024\u0000\u0000\u0000\u001f\u0000#A\u0001X\nA\u0000\u0004\nmenE\r\u0001X\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0001R\u0000\u0002\u0001[@\r\u0001[\u0000\u0003l\u0000\u0002\u0000)\u0000)?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002@\u0000\u0000\r\u0001O\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c<\u0001\\\n<\u0000\u0004\nmbri\r\u0001\\\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\r\u0001M\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015;\u0001_\n;\u0000\u0004\nmbar\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014:\u0003:\u0000\u0001\u0002C\u0000\u0000\r\u0001E\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b9\u0001`\n9\u0000\u0004\nprcs\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0001a\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001C\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001c\u000f\u0001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001?\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f\u0001h\u0001i\r\u0001h\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000543\u000b5\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u00024\u0000\u0000\u00023\u0000\u0000\r\u0001i\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t210\n2\u0000\u0018.miscactvnull\u0000\u0000null\u00011\u0000\u0000\u00020\u0000\u0000\r\u0001n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001o\u000f\u0001o\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002O\u0000\u0000\u0000\u000b\u0000F\u0001r\u0001s\r\u0001r\u0000\u0002O\u0000\u0000\u0000\u000f\u0000E\u0001t\u0001u\r\u0001t\u0000\u0001k\u0000\u0000\u0000\u0016\u0000D\u0001v\u0002\u0001v\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u0016\u0000*\/\u0001y.\n\/\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001y\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0001z\u0001{\r\u0001z\u0000\u00024\u0000\u0000\u0000#\u0000&-\u0001|\n-\u0000\u0004\nbutT\r\u0001|\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000.\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000l\u0000l\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000N\u0000o\u0000w &\r\u0001{\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000 \u0000#,\u0001\n,\u0000\u0004\nscra\r\u0001\u0000\u0001m\u0000\u0000\u0000!\u0000\"+\u0003+\u0000\u0003\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001d\u0000 *\u0001\n*\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f)\u0003)\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d(\u0001\n(\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c'\u0003'\u0000\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a&\u0001\n&\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002.\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000+\u00000%\u0001$\n%\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\b\u0001\u0000\b?333333\u0002$\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00001\u0000<#\u0001\"\n#\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u00001\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u00005\u00008!\u0001\n!\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u00006\u00007\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000O\u0000p\u0000e\u0000n\r\u0001\u0000\u00024\u0000\u0000\u00001\u00005 \u0001\n \u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u00003\u00004\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0002\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0003I\u0000\u0002\u0000=\u0000D\u001e\u0001\u001d\n\u001e\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000 \u0000l\u0000o\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r\u0001u\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\u0001\n\u001c\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001q\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000G\u0000M\u001b\u0001\u001a\u000b\u001b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0019\r\u0001\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0018\u0003\u0018\u0000\u0001\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000N\u0000Z\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000R\u0000Y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000R\u0000W\u0017\u0016\u0015\n\u0017\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0016\u0000\u0000\u0002\u0015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0014\r\u0001\u0000\u0003l\u0000\u0002\u0000X\u0000X\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0014\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000[\u0000\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000_\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000h\u0000\u0010\u0001\u000f\n\u0010\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000z\u0000\u000e\u0001\n\u000e\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000D\u0000o\u0000n \u0019\u0000t\u0000 \u0000S\u0000a\u0000v\u0000e\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000z\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000u\u0000z\r\u0001\n\r\u0000\u0004\nsheE\r\u0001\u0000\u0001m\u0000\u0000\u0000x\u0000y\f\u0003\f\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000u\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000p\u0000u\u000b\u0001\n\u000b\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000p\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000i\u0000p\n\u0001\n\n\u0000\u0004\npcap\r\u0001\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000f\u0000\u0000\r\u0001\u0000\u00024\u0000\u0000\u0000_\u0000e\t\u0001\n\t\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000q\u0000u\u0000i\u0000t\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0006\u0000\u0000\u0002\b\u0000\u0000\u0002\u0001g\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000 \u0000#\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u000b\u0002\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000b\u0000Q\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000f\u0000P\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0016\u0000O\u0001\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0016\u0000O\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000)\u0000N\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001T\u0000\u0000\u0000)\u0000L\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000.\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000.\u00003\u0001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00004\u00004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u00004\u0000G\u0001\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0000\u00004\u00009\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\nenaB\r\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\b\u000bboovfals\r\u0001\u0000\u0000S\u0000\u0000\u0000<\u0000=\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000@\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000@\u0000E\u0001\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000.\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00003\u0000 \u0000s\u0000e\u0000c\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0002\u0001\u0002\u0002\r\u0002\u0001\u0000\u0003l\u0000\u0006\u0000M\u0000M\u0002\u0003\u0002\u0004\u0001\u0000\u0000\f\u0002\u0003\u0000,\u0000&click button \"Open\" of window \"Export\"\u0000\u0002\u0000\u0000\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000L\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000\"\u0000O\u0000p\u0000e\u0000n\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000\"\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000\"\u0002\u0002\u0002\u0000\u0002\u0002\u0006\r\u0002\u0006\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0002\u0007\u0002\b\r\u0002\u0007\u0000\u00024\u0000\u0000\u0000#\u0000&\u0002\t\n\u0000\u0004\nbutT\r\u0002\t\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0016\u0000S\u0000t\u0000o\u0000p\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0002\b\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0002\f\u0002\r\r\u0002\f\u0000\u00024\u0000\u0000\u0000 \u0000#\u0002\u000e\n\u0000\u0004\nscra\r\u0002\u000e\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0003\r\u0002\r\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0002\u0011\n\u0000\u0004\nsplg\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0002\u0010\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u0014\n\u0000\u0004\nsplg\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0002\u0013\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0002\u0015\n\u0000\u0004\ncwin\r\u0002\u0015\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\f\u0001\u0000\u0012\u0000\f stop script\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0000\u0018\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0001\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0002\u0019\n\u0000\u0004\nprcs\r\u0002\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0002\u001a\u000e\u0002\u001a\u0000\u0001\u0002\u001b\u0011\u0002\u001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002\u001c\u000f\u0002\u001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u001d\r\u0002\u001d\u0000\u0003I\u0000\u0000\u0000R\u0000X\u0002\u001e\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0002\u001e\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002!\u0000\u0002\u0002\"\u0002#\r\u0002\"\u0000\u0002i\u0000\u0000\u0000$\u0000'\u0002$\u0002%\r\u0002$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0002&\u0002\u0002&\u0000\u0002\u0002'\u0002(\r\u0002'\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002)\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u0000,\u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0000\u0000\u0002\u0002(\u0000\u0002\u0002,\r\u0002,\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0015\u0002-\u0002.\r\u0002-\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0014\u0002\/\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0000\u0000\u0006\u0002\/\u0000\u0003\u00020\n\u0000\u0004\ninsh\r\u00020\u0000\u0001J\u0000\u0000\u0000\f\u0000\u0010\u00021\u0002\u00021\u0000\u0002\u00022\u00023\r\u00022\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0003\u0002\u00023\u0000\u0002\u00024\r\u00024\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0003\u0001m\u0002\u0000\u0000\u0006\u0000\u0000\r\u0002.\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u00025\u000f\u00025\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0002#\u0000\u0002\u00026\u00027\r\u00026\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00027\u0000\u0002\u00028\u00029\r\u00028\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0002:\r\u0002:\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002;\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002<\u000e\u0002<\u0000\u0001\u0002=\u0011\u0002=\u0000(\u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000g\u0000u\u0000i\u0000-\u0000a\u0000u\u0000t\u0000o\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00029\u0000\u0002\u0002>\u0002?\r\u0002>\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0002@\r\u0002@\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u000b\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002?\u0000\u0002\u0002A\u0002B\r\u0002A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002B\u0000\u0002\u0002C\u0002D\r\u0002C\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0002E\r\u0002E\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0002F\u0002G\r\u0002F\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0002H\u0002I\r\u0002H\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u0002I\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0002J\u000e\u0002J\u0000\u0001\u0002K\u0011\u0002K\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000b\u0000l\u0000u\u0000e\u0000:\u0000w\u0000o\u0000r\u0000k\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000:\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000:\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000:\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\r\u0002G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002D\u0000\u0002\u0002L\u0002M\r\u0002L\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0018\u0002N\r\u0002N\u0000\u0003I\u0000\u0000\u0000\u0012\u0000\u0018\u0002O\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0002O\u0000\u0002\u0002P\r\u0002P\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002M\u0000\u0002\u0002Q\u0002R\r\u0002Q\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001e\u0002S\r\u0002S\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0002T\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0002T\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002R\u0000\u0002\u0002U\u0002V\r\u0002U\u0000\u0003l\u0000\u0002\u0000\u001f\u0000%\u0002W\r\u0002W\u0000\u0003I\u0000\u0000\u0000\u001f\u0000%\u0002X\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002X\u0000\u0002\u0002Y\r\u0002Y\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0002Z\u000e\u0002Z\u0000\u0001\u0002[\u0011\u0002[\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002V\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0002\u0000&\u0000+\u0002^\r\u0002^\u0000\u0003I\u0000\u0000\u0000&\u0000+\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002]\u0000\u0002\u0002_\u0002`\r\u0002_\u0000\u0003l\u0000\u0002\u0000,\u00001\u0002a\r\u0002a\u0000\u0003I\u0000\u0000\u0000,\u00001\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002`\u0000\u0002\u0002b\u0002c\r\u0002b\u0000\u0003l\u0000\u0002\u00002\u00008\u0002d\r\u0002d\u0000\u0003I\u0000\u0000\u00002\u00008\u0002e\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002e\u0000\u0002\u0002f\r\u0002f\u0000\u0001m\u0000\u0000\u00003\u00004\u0002g\u000e\u0002g\u0000\u0001\u0002h\u0011\u0002h\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002c\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0003l\u0000\u0002\u00009\u0000?\u0002k\r\u0002k\u0000\u0003I\u0000\u0000\u00009\u0000?\u0002l\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002l\u0000\u0002\u0002m\r\u0002m\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0002n\u000e\u0002n\u0000\u0001\u0002o\u0011\u0002o\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002j\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0003l\u0000\u0002\u0000@\u0000E\u0002r\r\u0002r\u0000\u0003I\u0000\u0000\u0000@\u0000E\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002q\u0000\u0002\u0002s\u0002t\r\u0002s\u0000\u0003l\u0000\u0002\u0000F\u0000K\u0002u\r\u0002u\u0000\u0003I\u0000\u0000\u0000F\u0000K\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002t\u0000\u0002\u0002v\u0002w\r\u0002v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002w\u0000\u0002\u0002x\r\u0002x\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0018~\u0002y\u0002z\u0002{\u0002|\u0002}\u0002~\u0002\u0002\u0002\u0002\u0002\u0002\u0002}|{zyxwvut\u0001~\u0000\u0000\u0010\u0002y\u0000\u0016srqponmlkjihgfedcba`_^\u000bs\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u000br\u0000\b0\u0000\u0004wait\u0000\u0000\u000bq\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000bp\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000bo\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000bn\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u000bm\u0000\b0\u0000\u0004zoom\u0000\u0000\u000bl\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u000bk\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000bj\u0000\u00100\u0000\fclick_ignore\u0000\u0000\ni\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bh\u0000\f0\u0000\bfilepath\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u000e\u0002z\u0000\u0007\u0010]\u0000\b\\[\u0002\u0002Z\u000b]\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\\\u0000\u0000\u0002[\u0000\u0000\u0010\u0002\u0000\u0001Y\u000bY\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\u0016\u0000\u0010X\u0000\u0016W\u0000@V\u0000>UT\u0000.S\u0000+R\u0000(QPO\u00009N\u0000HML\nX\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nW\u0000\u0018.miscactvnull\u0000\u0000null\nV\u0000\u0004\nprcs\nU\u0000\u0004\nmbar\nT\u0000\u0004\nmbri\nS\u0000\u0004\nmenE\nR\u0000\u0004\nmenI\nQ\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\nP\u0000\u0004\ncwin\nO\u0000\u0004\nbutT\nN\u0000\u0018.aevtquitnull\u0000\u0000null\u000bM\u0000\u00050\u0000\u0001e\u0000\u0000\u0002L\u0000\u0000\u0011Z\u0000y\u0014\u0000mj\f\u0000\u0001O\u0012\u0000\u0007*j\f\u0000\u0003UO\u0012\u0000A*\/\u0012\u00009*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000eUUUO*k\/\u0012\u0000\u0010*a\u0000\u0010a\u0000\u0011\/j\f\u0000\u000eOPUUUO\u0012\u0000\u0007*j\f\u0000\u0012UOa\u0000\u0013j\f\u0000\u0001W\u0000\fX\u0000\u0014\u0000\u0015j\f\u0000\u0001\u000f\u000e\u0002{\u0000\u0007\u0010K\u0000QJI\u0002\u0002H\u000bK\u0000\b0\u0000\u0004wait\u0000\u0000\u000eJ\u0000\u0002\u0004G\u0002\u0003G\u0000\u0001\u000e\u0002\u0000\u0001\u0000F\u000bF\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002I\u0000\u0000\u0010\u0002\u0000\u0001E\u000bE\u0000\u00070\u0000\u0003sec\u0000\u0000\u0010\u0002\u0000\u0004\u0000\\\u0000^DC\nD\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nC\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011H\u0000\u0010%%j\f\u0000\u0002Oj\f\u0000\u0003\u000f\u000e\u0002|\u0000\u0007\u0010B\u0000gA@\u0002\u0002?\u000bB\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000eA\u0000\u0002\u0004>\u0002\u0003>\u0000\u0001\u000e\u0002\u0000\u0001\u0000=\u000b=\u0000\f0\u0000\bfilepath\u0000\u0000\u0002@\u0000\u0000\u0010\u0002\u0000\u0003<;:\u000b<\u0000\f0\u0000\bfilepath\u0000\u0000\u000b;\u0000\u000b0\u0000\u0007command\u0000\u0000\u000b:\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\b\u0000w9\u00008765\u0000\n9\u0000\u0004\nstrq\n8\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n7\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b6\u0000\u00050\u0000\u0001e\u0000\u0000\u00025\u0000\u0000\u0011?\u0000,\u0014\u0000\u001a,%EO%j\f\u0000\u0003Oj\f\u0000\u0004W\u0000\fX\u0000\u0005\u0000\u0006j\f\u0000\u0003Oj\f\u0000\u0003\u000f\u000e\u0002}\u0000\u0007\u00104\u000032\u0002\u00021\u000b4\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000e3\u0000\u0002\u00040\u0002\u00030\u0000\u0001\u000e\u0002\u0000\u0001\u0000\/\u000b\/\u0000\r0\u0000\tmenu_item\u0000\u0000\u00022\u0000\u0000\u0010\u0002\u0000\u0001.\u000b.\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\f\u0000-\u0000,\u0000+*\u0000)\u0000('\n-\u0000\u0018.miscactvnull\u0000\u0000null\n,\u0000\u0004\nprcs\n+\u0000\u0004\nmbar\n*\u0000\u0004\nmbri\n)\u0000\u0004\nmenE\n(\u0000\u0004\nmenI\n'\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u00111\u00009\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000**\/\u0012\u0000\"*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000bUUUUU\u000f\u000e\u0002~\u0000\u0007\u0010&\u0000%$\u0002\u0002#\u000b&\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000e%\u0000\u0002\u0004\"\u0002\u0003\"\u0000\u0001\u000e\u0002\u0000\u0001\u0000!\u000b!\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002$\u0000\u0000\u0010\u0002\u0000\u0001 \u000b \u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\u0012\u0000\u001f\u001e\u0000\u001d\u0001\u0001\u001c\u0000\u001b\u001a\u0000\u0019\u0000\u0018\u0017\u0016\u0000\u0000\n\u001f\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u001e\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u001d\u0000\u0018.miscactvnull\u0000\u0000null\n\u001c\u0000\u0004\nprcs\n\u001b\u0000\u0004\nmbar\n\u001a\u0000\u0004\nmbri\n\u0019\u0000\u0004\nmenE\n\u0018\u0000\u0004\nmenI\n\u0017\u0000\u0004\npnam\n\u0016\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011#\u0000x%j\f\u0000\u0001Okj\f\u0000\u0002O\u0012\u0000\u0007*j\f\u0000\u0004UO\u0017\u0000[hZ\u0012\u0000O*\/\u0012\u0000G*k\/\u0012\u0000?*\/\u0012\u00007*\/\u0012\u0000\/*-,E\b\u001d\u0000\u0019*\/j\f\u0000\u000fOa\u0000\u0010%j\f\u0000\u0001O\u0016Y\u0000\u0003hOa\u0000\u0011%j\f\u0000\u0001UUUUU[OYOP\u000f\u000e\u0002\u0000\u0007\u0010\u0015\u0001\n\u0014\u0013\u0002\u0002\u0012\u000b\u0015\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0013\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0011\u0001\u0010\u0011\u0001<\u0010\u0001:\u0001\u001b\u000f\u000e\r\u00016\f\u00013\u000b\u0001(\n\t\u00010\n\u0011\u0000\u0018.miscactvnull\u0000\u0000null\n\u0010\u0000\u0004\nprcs\n\u000f\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u000e\u0000\u0004\nmbar\n\r\u0000\u0004\nmbri\n\f\u0000\u0004\nmenE\n\u000b\u0000\u0004\nmenI\n\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0003\t\u0000\u0006\u0011\u0012\u0000R\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000A*\/\u0012\u00009j\f\u0000\u0006O*k\/\u0012\u0000+*\/\u0012\u0000#*\/\u0012\u0000\u001b*\/j\f\u0000\u000eOj\f\u0000\u0006O*a\u0000\u0010\/j\f\u0000\u000eUUUUUOP\u000f\u000e\u0002\u0000\u0007\u0010\b\u0001A\u0007\u0006\u0002\u0002\u0005\u000b\b\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002\u0007\u0000\u0000\u0002\u0006\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\n\u0001c\u0004\u0001a\u0001J\u0003\u0002\u0001\u0001]\u0000\u0001Y\n\u0004\u0000\u0004\nprcs\n\u0003\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0002\u0000\u0004\nmbar\n\u0001\u0000\u0004\nmbri\n\u0000\u0000\u0004\nmenE\u0011\u0005\u0000\/\u0012\u0000+*\/\u0012\u0000#j\f\u0000\u0004O*k\/\u0012\u0000\u0015*\/\u0012\u0000\r*\/\u0012\u0000\u0003hUOPUUUU\u000f\u000e\u0002\u0000\u0007\u0010\u0001i\u0002\u0002\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u001b\u0001o\u0001\u0001\u0001\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\npcap\n\u0000\u0004\nsheE\u0011\u0000\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u00008*\/\u0012\u00000*\/k\/k\/m\/\/j\f\u0000\u000bOj\f\u0000\rO*\/\/j\f\u0000\u000bOa\u0000\u0010j\f\u0000\u0011UUO*kk+\u0000\u0012O\u0012\u0000\t*j\f\u0000\u0013OPUO\u0012\u0000'*a\u0000\u0014\/\u0012\u0000\u001da\u0000\u0015a\u0000\u0016\/a\u0000\u0017\/a\u0000\u0018k\/a\u0000\u0019\/j\f\u0000\u000bUUOa\u0000\u001aj\f\u0000\u0011\u000f\u000e\u0002\u0000\u0007\u0010\u0001\u0002\u0002\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0010\u0001\u0002\u001c\u0002\u001a\u0002\u0016\u0002\n\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nenaB\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0011\u0000Y\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000C*\/\u0012\u0000;*\/k\/k\/m\/\/\u0012\u0000'\u0017\u0000\"hZlj\f\u0000\u000bO*,f\u0000\u001d\u0000\u0006\u0016Y\u0000\tj\f\u0000\u000eOP[OYOPUUUO*kk+\u0000\u000f\u000f\u000e\u0002\u0000\u0007\u0010\u0002%\u0002\u0002\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0007\u0002*\u00025\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ninsh\u0003\u0003\u0003\u0001m\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011\u0000\u0016j\f\u0000\u0001O\u0012\u0000\f*lvl\f\u0000\u0006U\u000f\u000e\u0002\u0000\u0007\u0010\u0002\u0002\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0002\u0002\u0002\u0000\u0002\u00028\u0002\u0002\u0002\u0000\u0002\u0002>\u0002\u0002\u0002\u0000\u0002\u0002C\u0002\u0002\u0002\u0000\u0002\u0002L\u0002\u0002\u0002\u0000\u0002\u0002Q\u0002\u0002\u0002\u0000\u0002\u0002U\u0002\u0002\u0002\u0000\u0002\u0002\\\u0002\u0002\u0002\u0000\u0002\u0002_\u0002\u0002\u0002\u0000\u0002\u0002b\u0002\u0002\u0002\u0000\u0002\u0002i\u0002\u0002\u0002\u0000\u0002\u0002p\u0002\u0002\u0002\u0000\u0002\u0002s\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u000f\u0002<\u0002J\u0002Z\u0002g\u0002n\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\n\u0000\u0004\npsxp\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0011\u0000Lj\f\u0000\u0001O*j+\u0000\u0002O,EO*k+\u0000\u0006Okj\f\u0000\u0007O*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000bO*k+\u0000\tO*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000e\u000f\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000b\u0000l\u0000u\u0000e\u0000\/\u0000w\u0000o\u0000r\u0000k\u0000\/\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000\/\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000\/\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000\/\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000\/\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000x\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0001k\u0000\u0000\u0000\u0003\u0000k\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b\u0000\u000f\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u00008\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0013\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u0016\u000f\u0000\u0016\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002O\u0000\u0000\u0000\u0014\u0000X\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002O\u0000\u0000\u0000\u0018\u0000W\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u001f\u0000V\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\u001f\u0000?\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000&\u0000>\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000-\u0000=\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u00004\u0000<\u0000&\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000&\u0000\u00024\u0000\u0000\u00004\u00008\u0000'\n\u0000\u0004\nmenI\r\u0000'\u0000\u0001m\u0000\u0000\u00006\u00007\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u00006\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000a\u0000n\u0000d\u0000 \u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s &\u0002\u0000\u0000\r\u0000%\u0000\u00024\u0000\u0000\u0000-\u00001\u0000*\n\u0000\u0004\nmenE\r\u0000*\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000#\u0000\u00024\u0000\u0000\u0000&\u0000*\u0000-\n\u0000\u0004\nmbri\r\u0000-\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001f\u0000#\u00000\n\u0000\u0004\nmbar\r\u00000\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\u0002\u0000\u001f\u0000\u0002\u00001\r\u00001\u0000\u0002O\u0000\u0000\u0000@\u0000V\u00002\u00003\r\u00002\u0000\u0001k\u0000\u0000\u0000G\u0000U\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000G\u0000S\u00007\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u00007\u0000\u00024\u0000\u0000\u0000G\u0000O\u00008\n\u0000\u0004\nbutT\r\u00008\u0000\u0001m\u0000\u0000\u0000K\u0000N\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\n\u0000R\u0000e\u0000s\u0000e\u0000t\u0002\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000T\u0000T\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00003\u0000\u00024\u0000\u0000\u0000@\u0000D\u0000<\n\u0000\u0004\ncwin\r\u0000<\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u001c\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000=\n\u0000\u0004\nprcs\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000@\u000f\u0000@\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002O\u0000\u0000\u0000Y\u0000c\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000]\u0000b\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\u0000E\u000f\u0000E\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000B\u0000\u0002\u0000F\r\u0000F\u0000\u0003I\u0000\u0002\u0000d\u0000k\u0000G\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000G\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u00008\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000R\u0000E\u0000S\u0000E\u0000T\u0000 \u0000S\u0000I\u0000M\u0000U\u0000L\u0000A\u0000T\u0000O\u0000R\u0000 \u0000&\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000s\u0000x\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000R\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0000T\u0002\u0000T\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000W\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0000X\u0000Y\r\u0000X\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\\\u000e\u0000\\\u0000\u0001\u0000]\u0011\u0000]\u0000\u0012\u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000[\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000h\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000g\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000j\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000%\u0000m\u0000n\u0000o\r\u0000m\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0018\u0000p\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\n\u0000s\u0000t\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0000y\u0000z\r\u0000y\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000r\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0012\u0000}\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000o\u0000e\u0000p\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u00008\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000f\u00007\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0016\u00006\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001d\u00005\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000$\u00004\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000+\u00003\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000+\u0000\/\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u001d\u0000!\u0000\n\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0000\n\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000\n\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000B\u0000e\u0000g\u0000i\u0000n\u0000:\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\b\u0000\r\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000\u0019\u0000u\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001e\u0000p\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\"\u0000o\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000)\u0000n\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00000\u0000m\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00007\u0000l\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000>\u0000k\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000>\u0000a\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000>\u0000F\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000>\u0000D\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000>\u0000D\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000>\u0000D\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000C\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000>\u0000A\n\u0000\u0004\nmenI\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000I\u0000]\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000I\u0000Q\u0000~\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000I\u0000M}\u0000\n}\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L|\u000b|\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000R\u0000[{\u0000z\n{\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000Vy\u000by\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002z\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0000S\u0000\u0000\u0000\\\u0000]\u0002x\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0003I\u0000\u0002\u0000b\u0000kv\u0000u\nv\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000b\u0000g\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000b\u0000e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000o\u0000r\u0000 \u0000.\u0000.\u0000.\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000ft\u000bt\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00007\u0000;s\u0000\ns\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u00000\u00004r\u0000\nr\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-q\u0000\nq\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000+\u0000,p\u0003p\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000&o\u0000\no\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u0001\u000f\u0001\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0003l\u0000\u0002\u0000v\u0000vnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004k\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000v\u0000vjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0001\t\u0001\n\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000dcb\u000bd\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002c\u0000\u0000\u0002b\u0000\u0000\r\u0001\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\ta`_\na\u0000\u0018.miscactvnull\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0002O\u0000\u0000\u0000\u000b\u0000O\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002O\u0000\u0000\u0000\u000f\u0000N\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001k\u0000\u0000\u0000\u0016\u0000M\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b^\u0001\u001a]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u001b\b\u0001\u001b\u0000\b?\u0659\u0002]\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001c\\\r\u0001\u001c\u0000\u0002O\u0000\u0000\u0000\u001c\u0000M\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0002O\u0000\u0000\u0000#\u0000L\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002O\u0000\u0000\u0000*\u0000K\u0001!\u0001\"\r\u0001!\u0000\u0001k\u0000\u0000\u00001\u0000J\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003I\u0000\u0002\u00001\u00009[\u0001&Z\n[\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001&\u0000\u00024\u0000\u0000\u00001\u00005Y\u0001'\nY\u0000\u0004\nmenI\r\u0001'\u0000\u0001m\u0000\u0000\u00003\u00004\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002Z\u0000\u0000\u0002\u0001%\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000:\u0000?X\u0001,W\nX\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001,\u0000\u0001m\u0000\u0000\u0000:\u0000;V\u0003V\u0000\u0006\u0002W\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-U\r\u0001-\u0000\u0003I\u0000\u0002\u0000@\u0000JT\u0001.S\nT\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001.\u0000\u00024\u0000\u0000\u0000@\u0000FR\u0001\/\nR\u0000\u0004\nmenI\r\u0001\/\u0000\u0001m\u0000\u0000\u0000B\u0000E\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002S\u0000\u0000\u0002U\u0000\u0000\r\u0001\"\u0000\u00024\u0000\u0000\u0000*\u0000.Q\u00012\nQ\u0000\u0004\nmenE\r\u00012\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00013\u000e\u00013\u0000\u0001\u00014\u0011\u00014\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001 \u0000\u00024\u0000\u0000\u0000#\u0000'P\u00015\nP\u0000\u0004\nmbri\r\u00015\u0000\u0001m\u0000\u0000\u0000%\u0000&\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001\u001e\u0000\u00024\u0000\u0000\u0000\u001c\u0000 O\u00018\nO\u0000\u0004\nmbar\r\u00018\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\u0003N\u0000\u0001\u0002\\\u0000\u0000\r\u0001\u0016\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013M\u00019\nM\u0000\u0004\nprcs\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001<\u000f\u0001<\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001=L\r\u0001=\u0000\u0003l\u0000\u0002\u0000P\u0000PKJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002L\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000HGF\u000bH\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002G\u0000\u0000\u0002F\u0000\u0000\r\u0001A\u0000\u0002O\u0000\u0000\u0000\u0000\u0000.\u0001B\u0001C\r\u0001B\u0000\u0002O\u0000\u0000\u0000\u0004\u0000-\u0001D\u0001E\r\u0001D\u0000\u0001k\u0000\u0000\u0000\u000b\u0000,\u0001F\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010E\u0001ID\nE\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001I\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001J\b\u0001J\u0000\b?\u0659\u0002D\u0000\u0000\u0002\u0001H\u0000\u0002\u0001KC\r\u0001K\u0000\u0002O\u0000\u0000\u0000\u0011\u0000,\u0001L\u0001M\r\u0001L\u0000\u0002O\u0000\u0000\u0000\u0018\u0000+\u0001N\u0001O\r\u0001N\u0000\u0001k\u0000\u0000\u0000\u001f\u0000*\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002O\u0000\u0000\u0000\u001f\u0000(\u0001S\u0001T\r\u0001S\u0000\u0003l\u0000\u0006\u0000&\u0000&B\u0001U\u0001V\u0001B\u0000\u0000\f\u0001U\u0000\u001c\u0000\u0016click menu item \"Zoom\"\u0000\u0002\u0000\u0000\u000e\u0001V\u0000\u0001\u0001W\u0011\u0001W\u0000,\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000\"\u0000Z\u0000o\u0000o\u0000m\u0000\"\r\u0001T\u0000\u00024\u0000\u0000\u0000\u001f\u0000#A\u0001X\nA\u0000\u0004\nmenE\r\u0001X\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0001R\u0000\u0002\u0001[@\r\u0001[\u0000\u0003l\u0000\u0002\u0000)\u0000)?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002@\u0000\u0000\r\u0001O\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c<\u0001\\\n<\u0000\u0004\nmbri\r\u0001\\\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\r\u0001M\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015;\u0001_\n;\u0000\u0004\nmbar\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014:\u0003:\u0000\u0001\u0002C\u0000\u0000\r\u0001E\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b9\u0001`\n9\u0000\u0004\nprcs\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0001a\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001C\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001c\u000f\u0001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001?\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f\u0001h\u0001i\r\u0001h\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000543\u000b5\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u00024\u0000\u0000\u00023\u0000\u0000\r\u0001i\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t210\n2\u0000\u0018.miscactvnull\u0000\u0000null\u00011\u0000\u0000\u00020\u0000\u0000\r\u0001n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001o\u000f\u0001o\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002O\u0000\u0000\u0000\u000b\u0000F\u0001r\u0001s\r\u0001r\u0000\u0002O\u0000\u0000\u0000\u000f\u0000E\u0001t\u0001u\r\u0001t\u0000\u0001k\u0000\u0000\u0000\u0016\u0000D\u0001v\u0002\u0001v\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u0016\u0000*\/\u0001y.\n\/\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001y\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0001z\u0001{\r\u0001z\u0000\u00024\u0000\u0000\u0000#\u0000&-\u0001|\n-\u0000\u0004\nbutT\r\u0001|\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000.\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000l\u0000l\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000N\u0000o\u0000w &\r\u0001{\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000 \u0000#,\u0001\n,\u0000\u0004\nscra\r\u0001\u0000\u0001m\u0000\u0000\u0000!\u0000\"+\u0003+\u0000\u0003\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001d\u0000 *\u0001\n*\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f)\u0003)\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d(\u0001\n(\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c'\u0003'\u0000\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a&\u0001\n&\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002.\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000+\u00000%\u0001$\n%\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\b\u0001\u0000\b?333333\u0002$\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00001\u0000<#\u0001\"\n#\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u00001\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u00005\u00008!\u0001\n!\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u00006\u00007\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000O\u0000p\u0000e\u0000n\r\u0001\u0000\u00024\u0000\u0000\u00001\u00005 \u0001\n \u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u00003\u00004\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0002\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0003I\u0000\u0002\u0000=\u0000D\u001e\u0001\u001d\n\u001e\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000 \u0000l\u0000o\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r\u0001u\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\u0001\n\u001c\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001q\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000G\u0000M\u001b\u0001\u001a\u000b\u001b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0019\r\u0001\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0018\u0003\u0018\u0000\u0001\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0001\u0000N\u0000X\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000R\u0000W\u0017\u0016\u0015\n\u0017\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0016\u0000\u0000\u0002\u0015\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000Y\u0000`\u0014\u0001\u0013\n\u0014\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000q\u0000u\u0000i\u0000t\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0013\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000a\u0000\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000e\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0001\u0000e\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000n\u0000~\u0012\u0011\u0001\n\u0012\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0011\u0000\u0000\u0006\u0001\u0000\u0003\u0010\u0001\u000f\n\u0010\u0000\u0004\ninsh\r\u0001\u0000\u0001J\u0000\u0000\u0000r\u0000z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000r\u0000u\u000e\u0003\u000e\u0004\u0002\u0001\u0000\u0002\u0001\r\r\u0001\u0000\u0001m\u0000\u0000\u0000u\u0000x\f\u0003\f\u0000\u0002\r\u0000\u0000\u0006\u000f\u0000\u0000\r\u0001\u0000\u00024\u0000\u0000\u0000e\u0000k\u000b\u0001\n\u000b\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000g\u0000j\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0001\u0000\u0002\u0001\n\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\t\u0001\u0001\u0001\t\u0000\u0000\f\u0001\u0000)\u0000#button \"Don't Save\" of first window\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000\"\u0000D\u0000o\u0000n\u0000'\u0000t\u0000 \u0000S\u0000a\u0000v\u0000e\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\n\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000q\u0000u\u0000i\u0000t\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0006\u0000\u0000\u0002\b\u0000\u0000\u0002\u0001g\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000 \u0000#\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u000b\u0002\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000b\u0000Q\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000f\u0000P\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0016\u0000O\u0001\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0016\u0000O\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000)\u0000N\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001T\u0000\u0000\u0000)\u0000L\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000.\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000.\u00003\u0001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00004\u00004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u00004\u0000G\u0001\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0000\u00004\u00009\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\nenaB\r\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\b\u000bboovfals\r\u0001\u0000\u0000S\u0000\u0000\u0000<\u0000=\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000@\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000@\u0000E\u0001\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000.\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00003\u0000 \u0000s\u0000e\u0000c\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0006\u0000M\u0000M\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000,\u0000&click button \"Open\" of window \"Export\"\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000\"\u0000O\u0000p\u0000e\u0000n\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000\"\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000\"\u0002\u0001\u0000\u0002\u0002\u0000\r\u0002\u0000\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0002\u0001\u0002\u0002\r\u0002\u0001\u0000\u00024\u0000\u0000\u0000#\u0000&\u0002\u0003\n\u0000\u0004\nbutT\r\u0002\u0003\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0002\u0004\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000\u0016\u0000S\u0000t\u0000o\u0000p\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0002\u0002\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u00024\u0000\u0000\u0000 \u0000#\u0002\b\n\u0000\u0004\nscra\r\u0002\b\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0003\r\u0002\u0007\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0002\t\u0002\n\r\u0002\t\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0002\u000b\n\u0000\u0004\nsplg\r\u0002\u000b\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0002\n\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0002\f\u0002\r\r\u0002\f\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u000e\n\u0000\u0004\nsplg\r\u0002\u000e\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0002\r\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0002\u000f\n\u0000\u0004\ncwin\r\u0002\u000f\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0010\u000e\u0002\u0010\u0000\u0001\u0002\u0011\u0011\u0002\u0011\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\f\u0001\u0000\u0012\u0000\f stop script\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0002\u0012\u0011\u0002\u0012\u0000\u0018\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0001\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0002\u0013\n\u0000\u0004\nprcs\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0002\u0014\u000e\u0002\u0014\u0000\u0001\u0002\u0015\u0011\u0002\u0015\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002\u0016\u000f\u0002\u0016\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0017\r\u0002\u0017\u0000\u0003I\u0000\u0000\u0000R\u0000X\u0002\u0018\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0002\u0018\u0000\u0002\u0002\u0019\r\u0002\u0019\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u001a\u0002\u001b\r\u0002\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u001b\u0000\u0002\u0002\u001c\u0002\u001d\r\u0002\u001c\u0000\u0002i\u0000\u0000\u0000$\u0000'\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0002 \u0002\u0002 \u0000\u0002\u0002!\u0002\"\r\u0002!\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002#\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002#\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002$\u000e\u0002$\u0000\u0001\u0002%\u0011\u0002%\u0000,\u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0000\u0000\u0002\u0002\"\u0000\u0002\u0002&\r\u0002&\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0015\u0002'\u0002(\r\u0002'\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0014\u0002)\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0000\u0000\u0006\u0002)\u0000\u0003\u0002*\n\u0000\u0004\ninsh\r\u0002*\u0000\u0001J\u0000\u0000\u0000\f\u0000\u0010\u0002+\u0002\u0002+\u0000\u0002\u0002,\u0002-\r\u0002,\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0003\u0002\u0002-\u0000\u0002\u0002.\r\u0002.\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0003\u0001m\u0002\u0000\u0000\u0006\u0000\u0000\r\u0002(\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0002\/\u000f\u0002\/\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u001d\u0000\u0002\u00020\u00021\r\u00020\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00021\u0000\u0002\u00022\u00023\r\u00022\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u00024\r\u00024\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u00025\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00025\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00026\u000e\u00026\u0000\u0001\u00027\u0011\u00027\u0000(\u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000g\u0000u\u0000i\u0000-\u0000a\u0000u\u0000t\u0000o\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00023\u0000\u0002\u00028\u00029\r\u00028\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0002:\r\u0002:\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u000b\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00029\u0000\u0002\u0002;\u0002<\r\u0002;\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002<\u0000\u0002\u0002=\u0002>\r\u0002=\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0002?\r\u0002?\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0002@\u0002A\r\u0002@\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0002B\u0002C\r\u0002B\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u0002C\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0002D\u000e\u0002D\u0000\u0001\u0002E\u0011\u0002E\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000b\u0000l\u0000u\u0000e\u0000:\u0000w\u0000o\u0000r\u0000k\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000:\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000:\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000:\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\r\u0002A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002>\u0000\u0002\u0002F\u0002G\r\u0002F\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0018\u0002H\r\u0002H\u0000\u0003I\u0000\u0000\u0000\u0012\u0000\u0018\u0002I\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0002I\u0000\u0002\u0002J\r\u0002J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002G\u0000\u0002\u0002K\u0002L\r\u0002K\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001e\u0002M\r\u0002M\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0002N\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0002N\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002L\u0000\u0002\u0002O\u0002P\r\u0002O\u0000\u0003l\u0000\u0002\u0000\u001f\u0000%\u0002Q\r\u0002Q\u0000\u0003I\u0000\u0000\u0000\u001f\u0000%\u0002R\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002R\u0000\u0002\u0002S\r\u0002S\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002P\u0000\u0002\u0002V\u0002W\r\u0002V\u0000\u0003l\u0000\u0002\u0000&\u0000+\u0002X\r\u0002X\u0000\u0003I\u0000\u0000\u0000&\u0000+\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002W\u0000\u0002\u0002Y\u0002Z\r\u0002Y\u0000\u0003l\u0000\u0002\u0000,\u00001\u0002[\r\u0002[\u0000\u0003I\u0000\u0000\u0000,\u00001\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002Z\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0002\u00002\u00008\u0002^\r\u0002^\u0000\u0003I\u0000\u0000\u00002\u00008\u0002_\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002_\u0000\u0002\u0002`\r\u0002`\u0000\u0001m\u0000\u0000\u00003\u00004\u0002a\u000e\u0002a\u0000\u0001\u0002b\u0011\u0002b\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002]\u0000\u0002\u0002c\u0002d\r\u0002c\u0000\u0003l\u0000\u0002\u00009\u0000?\u0002e\r\u0002e\u0000\u0003I\u0000\u0000\u00009\u0000?\u0002f\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002f\u0000\u0002\u0002g\r\u0002g\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0002h\u000e\u0002h\u0000\u0001\u0002i\u0011\u0002i\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002d\u0000\u0002\u0002j\u0002k\r\u0002j\u0000\u0003l\u0000\u0002\u0000@\u0000E\u0002l\r\u0002l\u0000\u0003I\u0000\u0000\u0000@\u0000E\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002k\u0000\u0002\u0002m\u0002n\r\u0002m\u0000\u0003l\u0000\u0002\u0000F\u0000K\u0002o\r\u0002o\u0000\u0003I\u0000\u0000\u0000F\u0000K\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002n\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002q\u0000\u0002\u0002r\r\u0002r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\r~\u0002s\u0002t\u0002u\u0002v\u0002w\u0002x\u0002y\u0002z\u0002{\u0002|\u0002}\u0002~\u0001~\u0000\u0000\u0010\u0002s\u0000\u000b}|{zyxwvuts\u000b}\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u000b|\u0000\b0\u0000\u0004wait\u0000\u0000\u000b{\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000bz\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000by\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000bx\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u000bw\u0000\b0\u0000\u0004zoom\u0000\u0000\u000bv\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u000bu\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000bt\u0000\u00100\u0000\fclick_ignore\u0000\u0000\ns\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002t\u0000\u0007\u0010r\u0000\bqp\u0002\u0002o\u000br\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002q\u0000\u0000\u0002p\u0000\u0000\u0010\u0002\u0000\u0001n\u000bn\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\u0016\u0000\u0010m\u0000\u0016l\u0000@k\u0000>ji\u0000.h\u0000+g\u0000(fed\u00009c\u0000Hba\nm\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nl\u0000\u0018.miscactvnull\u0000\u0000null\nk\u0000\u0004\nprcs\nj\u0000\u0004\nmbar\ni\u0000\u0004\nmbri\nh\u0000\u0004\nmenE\ng\u0000\u0004\nmenI\nf\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\ne\u0000\u0004\ncwin\nd\u0000\u0004\nbutT\nc\u0000\u0018.aevtquitnull\u0000\u0000null\u000bb\u0000\u00050\u0000\u0001e\u0000\u0000\u0002a\u0000\u0000\u0011o\u0000y\u0014\u0000mj\f\u0000\u0001O\u0012\u0000\u0007*j\f\u0000\u0003UO\u0012\u0000A*\/\u0012\u00009*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000eUUUO*k\/\u0012\u0000\u0010*a\u0000\u0010a\u0000\u0011\/j\f\u0000\u000eOPUUUO\u0012\u0000\u0007*j\f\u0000\u0012UOa\u0000\u0013j\f\u0000\u0001W\u0000\fX\u0000\u0014\u0000\u0015j\f\u0000\u0001\u000f\u000e\u0002u\u0000\u0007\u0010`\u0000Q_^\u0002\u0002]\u000b`\u0000\b0\u0000\u0004wait\u0000\u0000\u000e_\u0000\u0002\u0004\\\u0002\u0003\\\u0000\u0001\u000e\u0002\u0000\u0001\u0000[\u000b[\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002^\u0000\u0000\u0010\u0002\u0000\u0001Z\u000bZ\u0000\u00070\u0000\u0003sec\u0000\u0000\u0010\u0002\u0000\u0004\u0000\\\u0000^YX\nY\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nX\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011]\u0000\u0010%%j\f\u0000\u0002Oj\f\u0000\u0003\u000f\u000e\u0002v\u0000\u0007\u0010W\u0000gVU\u0002\u0002T\u000bW\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000eV\u0000\u0002\u0004S\u0002\u0003S\u0000\u0001\u000e\u0002\u0000\u0001\u0000R\u000bR\u0000\f0\u0000\bfilepath\u0000\u0000\u0002U\u0000\u0000\u0010\u0002\u0000\u0003QPO\u000bQ\u0000\f0\u0000\bfilepath\u0000\u0000\u000bP\u0000\u000b0\u0000\u0007command\u0000\u0000\u000bO\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\b\u0000wN\u0000MLKJ\u0000\nN\u0000\u0004\nstrq\nM\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nL\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000bK\u0000\u00050\u0000\u0001e\u0000\u0000\u0002J\u0000\u0000\u0011T\u0000,\u0014\u0000\u001a,%EO%j\f\u0000\u0003Oj\f\u0000\u0004W\u0000\fX\u0000\u0005\u0000\u0006j\f\u0000\u0003Oj\f\u0000\u0003\u000f\u000e\u0002w\u0000\u0007\u0010I\u0000HG\u0002\u0002F\u000bI\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000eH\u0000\u0002\u0004E\u0002\u0003E\u0000\u0001\u000e\u0002\u0000\u0001\u0000D\u000bD\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002G\u0000\u0000\u0010\u0002\u0000\u0001C\u000bC\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\f\u0000B\u0000A\u0000@?\u0000>\u0000=<\nB\u0000\u0018.miscactvnull\u0000\u0000null\nA\u0000\u0004\nprcs\n@\u0000\u0004\nmbar\n?\u0000\u0004\nmbri\n>\u0000\u0004\nmenE\n=\u0000\u0004\nmenI\n<\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011F\u00009\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000**\/\u0012\u0000\"*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000bUUUUU\u000f\u000e\u0002x\u0000\u0007\u0010;\u0000:9\u0002\u00028\u000b;\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000e:\u0000\u0002\u00047\u0002\u00037\u0000\u0001\u000e\u0002\u0000\u0001\u00006\u000b6\u0000\r0\u0000\tmenu_item\u0000\u0000\u00029\u0000\u0000\u0010\u0002\u0000\u00015\u000b5\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\u0012\u000043\u00002\u0001\u00011\u00000\/\u0000.\u0000-,+\u0000\u0000\n4\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n3\u0000\u0018.sysodelanull\u0000\u0000nmbr\n2\u0000\u0018.miscactvnull\u0000\u0000null\n1\u0000\u0004\nprcs\n0\u0000\u0004\nmbar\n\/\u0000\u0004\nmbri\n.\u0000\u0004\nmenE\n-\u0000\u0004\nmenI\n,\u0000\u0004\npnam\n+\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u00118\u0000x%j\f\u0000\u0001Okj\f\u0000\u0002O\u0012\u0000\u0007*j\f\u0000\u0004UO\u0017\u0000[hZ\u0012\u0000O*\/\u0012\u0000G*k\/\u0012\u0000?*\/\u0012\u00007*\/\u0012\u0000\/*-,E\b\u001d\u0000\u0019*\/j\f\u0000\u000fOa\u0000\u0010%j\f\u0000\u0001O\u0016Y\u0000\u0003hOa\u0000\u0011%j\f\u0000\u0001UUUUU[OYOP\u000f\u000e\u0002y\u0000\u0007\u0010*\u0001\n)(\u0002\u0002'\u000b*\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002)\u0000\u0000\u0002(\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0011\u0001\u0010&\u0001<%\u0001:\u0001\u001b$#\"\u00016!\u00013 \u0001(\u001f\u001e\u00010\n&\u0000\u0018.miscactvnull\u0000\u0000null\n%\u0000\u0004\nprcs\n$\u0000\u0018.sysodelanull\u0000\u0000nmbr\n#\u0000\u0004\nmbar\n\"\u0000\u0004\nmbri\n!\u0000\u0004\nmenE\n \u0000\u0004\nmenI\n\u001f\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0003\u001e\u0000\u0006\u0011'\u0000R\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000A*\/\u0012\u00009j\f\u0000\u0006O*k\/\u0012\u0000+*\/\u0012\u0000#*\/\u0012\u0000\u001b*\/j\f\u0000\u000eOj\f\u0000\u0006O*a\u0000\u0010\/j\f\u0000\u000eUUUUUOP\u000f\u000e\u0002z\u0000\u0007\u0010\u001d\u0001A\u001c\u001b\u0002\u0002\u001a\u000b\u001d\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002\u001c\u0000\u0000\u0002\u001b\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\n\u0001c\u0019\u0001a\u0001J\u0018\u0017\u0016\u0001]\u0015\u0001Y\n\u0019\u0000\u0004\nprcs\n\u0018\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0017\u0000\u0004\nmbar\n\u0016\u0000\u0004\nmbri\n\u0015\u0000\u0004\nmenE\u0011\u001a\u0000\/\u0012\u0000+*\/\u0012\u0000#j\f\u0000\u0004O*k\/\u0012\u0000\u0015*\/\u0012\u0000\r*\/\u0012\u0000\u0003hUOPUUUU\u000f\u000e\u0002{\u0000\u0007\u0010\u0014\u0001i\u0013\u0012\u0002\u0002\u0011\u000b\u0014\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0013\u0000\u0000\u0002\u0012\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u001a\u0001o\u0010\u0001\u000f\u0001\u000e\u0001\r\f\u000b\u0001}\n\u0001\t\u0001\u0001\u0001\b\u0007\u0006\u0001\u0001\u0005\u0004\u0003\u0001\n\u0010\u0000\u0018.miscactvnull\u0000\u0000null\n\u000f\u0000\u0004\nprcs\n\u000e\u0000\u0004\ncwin\n\r\u0000\u0004\nsplg\n\f\u0000\u0004\nscra\n\u000b\u0000\u0004\nbutT\n\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\t\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\b\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0007\u0000\b0\u0000\u0004wait\u0000\u0000\n\u0006\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0005\u0000\u0004\ninsh\u0003\u0004\u0004\u0003\u0003\u0000\u0011\u0011\u0000\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u00008*\/\u0012\u00000*\/k\/k\/m\/\/j\f\u0000\u000bOj\f\u0000\rO*\/\/j\f\u0000\u000bOa\u0000\u0010j\f\u0000\u0011UUO*kk+\u0000\u0012O\u0012\u0000\u0007*j\f\u0000\u0013UOa\u0000\u0014j\f\u0000\u0011O\u0012\u0000\u001e*a\u0000\u0015\/\u0012\u0000\u0012*a\u0000\u0016a\u0000\u0017a\u0000\u0018lvl\f\u0000\u000bUOPUOa\u0000\u0019j\f\u0000\u0011\u000f\u000e\u0002|\u0000\u0007\u0010\u0002\u0001\u0001\u0000\u0002\u0002\u000b\u0002\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0010\u0001\u0002\u0016\u0002\u0014\u0002\u0010\u0002\u0004\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nenaB\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0011\u0000Y\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000C*\/\u0012\u0000;*\/k\/k\/m\/\/\u0012\u0000'\u0017\u0000\"hZlj\f\u0000\u000bO*,f\u0000\u001d\u0000\u0006\u0016Y\u0000\tj\f\u0000\u000eOP[OYOPUUUO*kk+\u0000\u000f\u000f\u000e\u0002}\u0000\u0007\u0010\u0002\u001f\u0002\u0002\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0007\u0002$\u0002\/\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ninsh\u0003\u0003\u0003\u0001m\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011\u0000\u0016j\f\u0000\u0001O\u0012\u0000\f*lvl\f\u0000\u0006U\u000f\u000e\u0002~\u0000\u0007\u0010\u0002\u0002\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0002\u0002\u0002\u0000\u0002\u00022\u0002\u0002\u0002\u0000\u0002\u00028\u0002\u0002\u0002\u0000\u0002\u0002=\u0002\u0002\u0002\u0000\u0002\u0002F\u0002\u0002\u0002\u0000\u0002\u0002K\u0002\u0002\u0002\u0000\u0002\u0002O\u0002\u0002\u0002\u0000\u0002\u0002V\u0002\u0002\u0002\u0000\u0002\u0002Y\u0002\u0002\u0002\u0000\u0002\u0002\\\u0002\u0002\u0002\u0000\u0002\u0002c\u0002\u0002\u0002\u0000\u0002\u0002j\u0002\u0002\u0002\u0000\u0002\u0002m\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u000f\u00026\u0002D\u0002T\u0002a\u0002h\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\n\u0000\u0004\npsxp\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0011\u0000Lj\f\u0000\u0001O*j+\u0000\u0002O,EO*k+\u0000\u0006Okj\f\u0000\u0007O*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000bO*k+\u0000\tO*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000e\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2581b69b5b177d8aa8c44357b4a7e58aa5bb8f80","subject":"Update script again","message":"Update script again\n","repos":"alisnic\/tube.vim","old_file":"autoload\/tube\/applescript\/iterm.applescript","new_file":"autoload\/tube\/applescript\/iterm.applescript","new_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application \"iTerm2\"\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","old_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application iTerm2\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"510d03a61c46bb54ea1025438d081157bf00faf1","subject":"Remove closing iTerm2","message":"Remove closing iTerm2\n","repos":"uberVU\/toolbox","old_file":"applescript\/halt_vagrant.applescript","new_file":"applescript\/halt_vagrant.applescript","new_contents":"set close_vagrant to \"z puppet; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\nend tell\n","old_contents":"set close_vagrant to \"z puppet; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"ad1fdf03efbeaed75ea0cd328a5efc5c68bcd978","subject":"Add music applescript","message":"Add music applescript\n","repos":"gblock0\/dotfiles","old_file":"applescripts\/music.scpt","new_file":"applescripts\/music.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"74915a485d0b085c4a10360e2ce57824e512d491","subject":"re-compiled main.scpt","message":"re-compiled main.scpt\n","repos":"NYHTC\/applescript-fm-helper","old_file":"main.scpt","new_file":"main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0012\u0000\f main script\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0018\u0000 \u0000m\u0000a\u0000i\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u001a\u0000\u0014 Erik Shagdar, NYHTC\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000(\u0000 \u0000E\u0000r\u0000i\u0000k\u0000 \u0000S\u0000h\u0000a\u0000g\u0000d\u0000a\u0000r\u0000,\u0000 \u0000N\u0000Y\u0000H\u0000T\u0000C\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0013\u0000\u0014\u0001\u0000\u0000\f\u0000\u0013\u0000%\u0000\u001f Generated: 2016-08-15 10:28:55\u0000\u0002\u0000\u0000\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000>\u0000 \u0000G\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000d\u0000:\u0000 \u00002\u00000\u00001\u00006\u0000-\u00000\u00008\u0000-\u00001\u00005\u0000 \u00001\u00000\u0000:\u00002\u00008\u0000:\u00005\u00005\u0002\u0000\u0012\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000n\u0000h Run 'main_helper.applescript' to after making changes in any .applescript file and after each git pull.\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0000 \u0000R\u0000u\u0000n\u0000 \u0000'\u0000m\u0000a\u0000i\u0000n\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000 \u0000t\u0000o\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000s\u0000 \u0000i\u0000n\u0000 \u0000a\u0000n\u0000y\u0000 \u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000e\u0000a\u0000c\u0000h\u0000 \u0000g\u0000i\u0000t\u0000 \u0000p\u0000u\u0000l\u0000l\u0000.\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u0000\u0000 Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0001\"\u0000 \u0000A\u0000s\u0000s\u0000u\u0000m\u0000e\u0000s\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000a\u0000t\u0000 \u0000'\u0000~\u0000\/\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000'\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000,\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000t\u0000o\u0000 \u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000P\u0000o\u0000s\u0000i\u0000x\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000'\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000.\u0000s\u0000h\u0000'\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000'\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0012\u0000m\u0000a\u0000i\u0000n\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0000&\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\u0012\u0000,\u000b\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\r\u0000,\u0000\u0002b\u0000\u0000\u0000\u0006\u0000\u0011\u0000-\u0000.\r\u0000-\u0000\u0002n\u0000\u0000\u0000\u0006\u0000\u000f\u0000\/\u00000\r\u0000\/\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u00000\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\r\u00001\r\u00001\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\r\u00002\r\u00002\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\r\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\u000b\u00005\r\u00005\u0000\u0003I\u0000\u0002\u0000\u0006\u0000\u000b\u00006\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bafdrcusr\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000f\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0002\u0000+\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002i\u0000\u0000\u0000\u0013\u0000\u0016\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000A\u000b\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u0002\u0000A\u0000\u0002\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_char\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000@\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000C\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0000G\u0001\u0000\u0000\f\u0000F\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0000E\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000O\r\u0000O\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0005\u0000P\r\u0000P\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000Q\n\u0000\u0018.sysoctonshor\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\r0\u0000\tthis_char\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000R\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000L\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000\b\u0000 \u0000U\u0000V\r\u0000U\u0000\u0001J\u0000\u0000\u0000\b\u0000\u001e\u0000W\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0002\u00000\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0002\u00001\u0002\u0000]\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000b\u000e\u0000b\u0000\u0001\u0000c\u0011\u0000c\u0000\u0002\u00002\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0002\u00003\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000j\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0000\u0002\u00004\u0002\u0000i\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0002\u00005\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\u0002\u00006\u0002\u0000q\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u0002\u00007\u0002\u0000u\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0002\u00008\u0002\u0000y\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00009\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000A\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000B\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000C\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000D\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000E\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000F\u0002\u0000\u0000\r\u0000V\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000!\u0000\/\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000!\u0000-\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000-\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0003l\u0000\u0005\u0000%\u0000,\u0000\r\u0000\u0000\u0002[\u0000\u0000\u0000%\u0000,\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000%\u0000*\u0000\r\u0000\u0000\u0002_\u0000\u0000\u0000%\u0000*\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0003\u0000\u0010\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000!\u0000\"\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00000\u0000>\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u00000\u0000<\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00001\u0000<\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0003l\u0000\u0005\u00004\u0000;\u0000\r\u0000\u0000\u0002[\u0000\u0000\u00004\u0000;\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u00004\u00009\u0000\r\u0000\u0000\u0002`\u0000\u0000\u00004\u00009\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0003\u0000\u0010\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u00000\u00001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000?\u0000K\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000?\u0000J\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000?\u0000F\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000?\u0000F\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000?\u0000D\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000?\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000%\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000I\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002\u0000>\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_text\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000f\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000) this sub-routine is used to encode text \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000u\u0000b\u0000-\u0000r\u0000o\u0000u\u0000t\u0000i\u0000n\u0000e\u0000 \u0000i\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000n\u0000c\u0000o\u0000d\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000a\u0000b\u0000c\u0000d\u0000e\u0000f\u0000g\u0000h\u0000i\u0000j\u0000k\u0000l\u0000m\u0000n\u0000o\u0000p\u0000q\u0000r\u0000s\u0000t\u0000u\u0000v\u0000w\u0000x\u0000y\u0000z\u00000\u00001\u00002\u00003\u00004\u00005\u00006\u00007\u00008\u00009\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0007\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000$\u0000+\u0000!\u0000'\u0000\/\u0000?\u0000;\u0000&\u0000@\u0000=\u0000#\u0000%\u0000>\u0000<\u0000{\u0000}\u0000[\u0000]\u0000\"\u0000~\u0000`\u0000^\u0000\\\u0000|\u0000*\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u0001\u0000\u0000\u0001\u0000\u0000\f\u0000\u00006\u00000 double excape this since the code gets compiled\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000 \u0000e\u0000x\u0000c\u0000a\u0000p\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000i\u0000n\u0000c\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000d\u0000e\u0000 \u0000g\u0000e\u0000t\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000-\u0000_\u0000:\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\f\u0000\r\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001f\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000\u0001\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0001\u0000\u0000\u0016\u0000\u0017\u0001\u0003\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0002\u0000\u0003l\u0001\u0000\u0000\u0017\u0000\u0018\u0001\u0004\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0005\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0004Z\u0000\u0001\u0000 \u0000\/\u0001\b\u0001\t}|\r\u0001\b\u0000\u0002=\u0000\u0003\u0000 \u0000#\u0001\n\u0001\u000b\r\u0001\n\u0000\u0001o\u0000\u0000\u0000 \u0000!{\u000b{\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000!\u0000\"z\nz\u0000\b\u000bboovfals\r\u0001\t\u0000\u0002r\u0000\u0000\u0000&\u0000+\u0001\f\u0001\r\r\u0001\f\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003l\u0001\u0000\u0000&\u0000'\u0001\u0010yx\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000&\u0000'w\u000bw\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\r\u0001\u000f\u0000\u0003l\u0001\u0000\u0000'\u0000(\u0001\u0011vu\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000'\u0000(t\u000bt\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u0001v\u0000\u0000\u0001u\u0000\u0000\r\u0001\r\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0012sr\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002r\u0000\u0000\u00000\u00003\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001m\u0000\u0000\u00000\u00001\u0001\u0017\u000e\u0001\u0017\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u0000\u0000\r\u0001\u0016\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0019po\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0003X\u0000\u0000\u00004\u0000c\u0001\u001cm\u0001\u001d\r\u0001\u001c\u0000\u0004Z\u0000\u0000\u0000D\u0000^\u0001\u001e\u0001\u001fl\u0001 \r\u0001\u001e\u0000\u0002E\u0000\u0001\u0000D\u0000G\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0001\u0000\u0000D\u0000E\u0001#kj\r\u0001#\u0000\u0001o\u0000\u0000\u0000D\u0000Ei\u000bi\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\r\u0001\"\u0000\u0001o\u0000\u0000\u0000E\u0000Fh\u000bh\u0000\r0\u0000\tthis_char\u0000\u0000\r\u0001\u001f\u0000\u0002r\u0000\u0000\u0000J\u0000O\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0005\u0000J\u0000M\u0001&gf\r\u0001&\u0000\u0002b\u0000\u0000\u0000J\u0000M\u0001'\u0001(\r\u0001'\u0000\u0003l\u0001\u0000\u0000J\u0000K\u0001)ed\r\u0001)\u0000\u0001o\u0000\u0000\u0000J\u0000Kc\u000bc\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\r\u0001(\u0000\u0001o\u0000\u0000\u0000K\u0000Lb\u000bb\u0000\r0\u0000\tthis_char\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\r\u0001%\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001*a`\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002l\u0000\u0000\r\u0001 \u0000\u0002r\u0000\u0000\u0000R\u0000^\u0001+\u0001,\r\u0001+\u0000\u0002c\u0000\u0000\u0000R\u0000\\\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0005\u0000R\u0000Z\u0001\/^]\r\u0001\/\u0000\u0002b\u0000\u0000\u0000R\u0000Z\u00010\u00011\r\u00010\u0000\u0003l\u0001\u0000\u0000R\u0000S\u00012\\[\r\u00012\u0000\u0001o\u0000\u0000\u0000R\u0000SZ\u000bZ\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\r\u00011\u0000\u0003I\u0000\u0000\u0000S\u0000YY\u00013X\u000bY\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u0002\u00013\u0000\u0002\u00014W\r\u00014\u0000\u0001o\u0000\u0000\u0000T\u0000UV\u000bV\u0000\r0\u0000\tthis_char\u0000\u0000\u0002W\u0000\u0000\u0002X\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\r\u0001.\u0000\u0001m\u0000\u0000\u0000Z\u0000[U\nU\u0000\u0004\nTEXT\r\u0001,\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u00015TS\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u000bm\u0000\r0\u0000\tthis_char\u0000\u0000\r\u0001\u001d\u0000\u0001o\u0000\u0000\u00007\u00008Q\u000bQ\u0000\r0\u0000\tthis_text\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u00016P\r\u00016\u0000\u0001L\u0000\u0000\u0000d\u0000f\u00017\r\u00017\u0000\u0003l\u0001\u0000\u0000d\u0000e\u00018ON\r\u00018\u0000\u0001o\u0000\u0000\u0000d\u0000eM\u000bM\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002P\u0000\u0000\u0002\u0000\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002i\u0000\u0000\u0000\u001b\u0000\u001e\u0001?\u0001@\r\u0001?\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000F\u0001AE\u000bF\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u0002\u0001A\u0000\u0002\u0001BD\r\u0001B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002D\u0000\u0000\u0002E\u0000\u0000\r\u0001@\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001C\u0002\u0001C\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000B\u0001F\u0001G\u0001B\u0000\u0000\f\u0001F\u0000\u0012\u0000\f version 1.8\u0000\u0002\u0000\u0000\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00008\u0002\u0001E\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001J\u0000\u0002\u0001K\u0001L\r\u0001K\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0013\u0001M\u0001N\u0001O\r\u0001M\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\b\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u0003>\u0001S\u0001T\u0001>\u0000\u0000\f\u0001S\u0000D\u0000> prefs MIGHT be a record that looks like this: {fmType:\"Adv\"} \u0000\u0002\u0000\u0000\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000|\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000k\u0000s\u0000 \u0000l\u0000i\u0000k\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000:\u0000 \u0000{\u0000f\u0000m\u0000T\u0000y\u0000p\u0000e\u0000:\u0000\"\u0000A\u0000d\u0000v\u0000\"\u0000}\u0000 \u0002\u0001R\u0000\u0002\u0001V=\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\b\u0001W\u0001X\r\u0001W\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0001Y\u0001Z\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0006<\u000b<\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001Z\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0001X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002=\u0000\u0000\r\u0001N\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000987\n9\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00018\u0000\u0000\u00027\u0000\u0000\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0013\u0001[\u0001\\\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0006\u0000U\u0000n\u0000k\r\u0001\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00006\u000b6\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0001L\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u0002\u0001`\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0001c\u0001d\r\u0001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000D\u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000T\u0000r\u0000a\u0000n\u0000s\u0000f\u0000e\u0000r\u0000-\u0000D\u0000O\u0000_\u0000N\u0000O\u0000T\u0000_\u0000R\u0000E\u0000N\u0000A\u0000M\u0000E\r\u0001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u0002\u0001b\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001b\u0001i\u0001j\r\u0001i\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001k\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0001j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0002\u0001h\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0001n\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0004Z\u0000\u0000\u0000\u001c\u0000\u0001q\u0001r-\u0001s\r\u0001q\u0000\u0001H\u0000\u0000\u0000\u001c\u0000$\u0001t\r\u0001t\u0000\u0002E\u0000\u0000\u0000\u001c\u0000#\u0001u\u0001v\r\u0001u\u0000\u0003l\u0000\u0005\u0000\u001c\u0000!\u0001w,+\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u001c\u0000!*\u0001x)\n*\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001x\u0000\u0000f\u0000\u0000\u0000\u001c\u0000\u001d\u0002)\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\r\u0001v\u0000\u0001o\u0000\u0000\u0000!\u0000\"(\u000b(\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\r\u0001r\u0000\u0001k\u0000\u0000\u0000'\u0000{\u0001y\u0002\u0001y\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0002O\u0000\u0000\u0000'\u0000=\u0001|\u0001}\r\u0001|\u0000\u0002r\u0000\u0000\u0000+\u0000<\u0001~\u0001\r\u0001~\u0000\u0002n\u0000\u0000\u0000+\u0000:\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00008\u0000:'\n'\u0000\u0004\ndnam\r\u0001\u0000\u0003l\u0000\u0005\u0000+\u00008\u0001&%\r\u0001\u0000\u00026\u0001\u0000\u0000+\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0001\u0000+\u0000\/$\u0001\n$\u0000\u0004\npcap\r\u0001\u0000\u0001m\u0000\u0000\u0000-\u0000.#\u0003#\u0000\u0001\r\u0001\u0000\u0002C\u0001\u0000\u00000\u00007\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00001\u00003\"\n\"\u0000\u0004\ndnam\r\u0001\u0000\u0001o\u0000\u0000\u00004\u00006!\u000b!\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0001&\u0000\u0000\u0001%\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0001}\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001{\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000>\u0000s\u0001\u0001\u0001\u001f\r\u0001\u0000\u0002=\u0000\u0003\u0000>\u0000A\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000>\u0000?\u001e\u000b\u001e\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000U\u0000n\u0000k\r\u0001\u0000\u0002r\u0000\u0000\u0000D\u0000M\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000K\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000I\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000G\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000E\u0000F\u001d\u000b\u001d\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0001\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000I\u0000J\u001c\n\u001c\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0000P\u0000S\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u001a\u000b\u001a\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000A\u0000d\u0000v\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000V\u0000]\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000V\u0000[\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000V\u0000Y\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000Z\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u0019\n\u0019\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0000`\u0000e\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000`\u0000a\u0017\u000b\u0017\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000P\u0000r\u0000o\u0002\u0001\u0000\u0002\u0001\u0016\r\u0001\u0000\u0002r\u0000\u0000\u0000h\u0000o\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000h\u0000m\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000k\u0000l\u0015\n\u0015\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0016\u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0013\r\u0001\u0000\u0002r\u0000\u0000\u0000t\u0000{\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000t\u0000y\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000t\u0000u\u0012\n\u0012\u0000\u0004\nret \r\u0001\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0013\u0000\u0000\u0002-\u0000\u0000\r\u0001s\u0000\u0001k\u0000\u0000\u0000~\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000~\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000~\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u000f\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u000f\u0000\u0000\u0002\u0001p\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000$\u0000c\u0000e\u0000l\u0000l\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000l\u0000a\u0000y\u0000o\u0000u\u0000t\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001a\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0004\u0001\u0003\n\u0004\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0003\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\u00160\u0000\tinputdata\u0000\tinputData\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tinputdata\u0000\tinputData\u0002\u0000\u0000\u0002\u0001>\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u001f\u0000\"\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001)\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000\u0012\u0000\f version 1.6\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00006\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0019\u0001\u0002\u0000\u0002\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000e\u0002\u0002\u0002\u0002\u0002\u0000\u0002\u0002\u0003\u0002\u0004\r\u0002\u0003\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u0003\u0002\u0005\u0002\u0006\u0001\u0000\u0000\f\u0002\u0005\u0000b\u0000\\ someData MIGHT be a record that looks like this: {fmType:\"Adv\", someData:\"BLAH BLAH BLAH\"} \u0000\u0002\u0000\u0000\u000e\u0002\u0006\u0000\u0001\u0002\u0007\u0011\u0002\u0007\u0000\u0000 \u0000s\u0000o\u0000m\u0000e\u0000D\u0000a\u0000t\u0000a\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000k\u0000s\u0000 \u0000l\u0000i\u0000k\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000:\u0000 \u0000{\u0000f\u0000m\u0000T\u0000y\u0000p\u0000e\u0000:\u0000\"\u0000A\u0000d\u0000v\u0000\"\u0000,\u0000 \u0000s\u0000o\u0000m\u0000e\u0000D\u0000a\u0000t\u0000a\u0000:\u0000\"\u0000B\u0000L\u0000A\u0000H\u0000 \u0000B\u0000L\u0000A\u0000H\u0000 \u0000B\u0000L\u0000A\u0000H\u0000\"\u0000}\u0000 \u0002\u0002\u0004\u0000\u0002\u0002\b\u0002\t\r\u0002\b\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\b\u0002\n\u0002\u000b\r\u0002\n\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0002\f\u0002\r\r\u0002\f\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0006\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002\r\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0002\t\u0000\u0002\u0002\u000e\r\u0002\u000e\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0002n\u0000\u0000\u0000\t\u0000\f\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0001o\u0000\u0000\u0000\n\u0000\f\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0012\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002\u0000\u0000\r\u0002\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u0015\u000e\u0002\u0015\u0000\u0001\u0002\u0016\u0011\u0002\u0016\u0000\u0006\u0000U\u0000n\u0000k\r\u0002\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0001\u0000\u0002\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001a\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u001b\u0002\u001c\r\u0002\u001b\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000D\u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000T\u0000r\u0000a\u0000n\u0000s\u0000f\u0000e\u0000r\u0000-\u0000D\u0000O\u0000_\u0000N\u0000O\u0000T\u0000_\u0000R\u0000E\u0000N\u0000A\u0000M\u0000E\r\u0002\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u0002\u0002\u001a\u0000\u0002\u0002\u001f\u0002 \r\u0002\u001f\u0000\u0002r\u0000\u0000\u0000\u001e\u0000!\u0002!\u0002\"\r\u0002!\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0002#\u000e\u0002#\u0000\u0001\u0002$\u0011\u0002$\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0002\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0002\u0002 \u0000\u0002\u0002%\u0002&\r\u0002%\u0000\u0004Z\u0000\u0000\u0000\"\u0000\u0002'\u0002(\u0002)\r\u0002'\u0000\u0001H\u0000\u0000\u0000\"\u0000*\u0002*\r\u0002*\u0000\u0002E\u0000\u0000\u0000\"\u0000)\u0002+\u0002,\r\u0002+\u0000\u0003l\u0000\u0005\u0000\"\u0000'\u0002-\r\u0002-\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0002.\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002.\u0000\u0000f\u0000\u0000\u0000\"\u0000#\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002,\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\r\u0002(\u0000\u0001k\u0000\u0000\u0000-\u0000\u0002\/\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0002O\u0000\u0000\u0000-\u0000C\u00022\u00023\r\u00022\u0000\u0002r\u0000\u0000\u00001\u0000B\u00024\u00025\r\u00024\u0000\u0002n\u0000\u0000\u00001\u0000@\u00026\u00027\r\u00026\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\ndnam\r\u00027\u0000\u0003l\u0000\u0005\u00001\u0000>\u00028\r\u00028\u0000\u00026\u0001\u0000\u00001\u0000>\u00029\u0002:\r\u00029\u0000\u00024\u0000\u0001\u00001\u00005\u0002;\n\u0000\u0004\npcap\r\u0002;\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0001\r\u0002:\u0000\u0002C\u0001\u0000\u00006\u0000=\u0002<\u0002=\r\u0002<\u0000\u00011\u0000\u0000\u00007\u00009\n\u0000\u0004\ndnam\r\u0002=\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0001\u0000\u0000\u0001\u0000\u0000\r\u00025\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u00023\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0002>\u000f\u0002>\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00021\u0000\u0002\u0002?\u0002@\r\u0002?\u0000\u0004Z\u0000\u0000\u0000D\u0000{\u0002A\u0002B\u0002C\r\u0002A\u0000\u0002=\u0000\u0003\u0000D\u0000G\u0002D\u0002E\r\u0002D\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002E\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0002F\u000e\u0002F\u0000\u0001\u0002G\u0011\u0002G\u0000\u0006\u0000U\u0000n\u0000k\r\u0002B\u0000\u0002r\u0000\u0000\u0000J\u0000S\u0002H\u0002I\r\u0002H\u0000\u0002b\u0000\u0000\u0000J\u0000Q\u0002J\u0002K\r\u0002J\u0000\u0002b\u0000\u0000\u0000J\u0000O\u0002L\u0002M\r\u0002L\u0000\u0002b\u0000\u0000\u0000J\u0000M\u0002N\u0002O\r\u0002N\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0002P\u000e\u0002P\u0000\u0001\u0002Q\u0011\u0002Q\u0000\u0014\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000\"\r\u0002O\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0002M\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0002R\u000e\u0002R\u0000\u0001\u0002S\u0011\u0002S\u0000\u0002\u0000\"\r\u0002K\u0000\u0001o\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nret \r\u0002I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002C\u0000\u0002\u0002T\u0002U\r\u0002T\u0000\u0002=\u0000\u0003\u0000V\u0000[\u0002V\u0002W\r\u0002V\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002W\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0002X\u000e\u0002X\u0000\u0001\u0002Y\u0011\u0002Y\u0000\u0006\u0000A\u0000d\u0000v\u0002\u0002U\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0002r\u0000\u0000\u0000^\u0000e\u0002\\\u0002]\r\u0002\\\u0000\u0002b\u0000\u0000\u0000^\u0000c\u0002^\u0002_\r\u0002^\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0002`\u000e\u0002`\u0000\u0001\u0002a\u0011\u0002a\u0000Z\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\u0000\"\r\u0002_\u0000\u0001o\u0000\u0000\u0000a\u0000b\n\u0000\u0004\nret \r\u0002]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002[\u0000\u0002\u0002b\u0002c\r\u0002b\u0000\u0002=\u0000\u0003\u0000h\u0000m\u0002d\u0002e\r\u0002d\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002e\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0002f\u000e\u0002f\u0000\u0001\u0002g\u0011\u0002g\u0000\u0006\u0000P\u0000r\u0000o\u0002\u0002c\u0000\u0002\u0002h\r\u0002h\u0000\u0002r\u0000\u0000\u0000p\u0000w\u0002i\u0002j\r\u0002i\u0000\u0002b\u0000\u0000\u0000p\u0000u\u0002k\u0002l\r\u0002k\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0002m\u000e\u0002m\u0000\u0001\u0002n\u0011\u0002n\u0000P\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\u0000\"\r\u0002l\u0000\u0001o\u0000\u0000\u0000s\u0000t\n\u0000\u0004\nret \r\u0002j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002@\u0000\u0002\u0002o\u0002p\r\u0002o\u0000\u0003l\u0000\u0002\u0000|\u0000|\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002p\u0000\u0002\u0002q\r\u0002q\u0000\u0002r\u0000\u0000\u0000|\u0000\u0002r\u0002s\r\u0002r\u0000\u0002b\u0000\u0000\u0000|\u0000\u0002t\u0002u\r\u0002t\u0000\u0001o\u0000\u0000\u0000|\u0000}\n\u0000\u0004\nret \r\u0002u\u0000\u0001m\u0000\u0000\u0000}\u0000\u0002v\u000e\u0002v\u0000\u0001\u0002w\u0011\u0002w\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0002s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002)\u0000\u0001k\u0000\u0000\u0000\u0000\u0002x\u0002\u0002x\u0000\u0002\u0002y\u0002z\r\u0002y\u0000\u0002r\u0000\u0000\u0000\u0000\u0002{\u0002|\r\u0002{\u0000\u0001m\u0000\u0000\u0000\u0000\u0002}\u000e\u0002}\u0000\u0001\u0002~\u0011\u0002~\u0000\u0000\r\u0002|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002z\u0000\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0000\u0000\u0002\u0002&\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u001a\u0000\u0014 escape backslashes \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000(\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000s\u0000l\u0000a\u0000s\u0000h\u0000e\u0000s\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0002\u0000\u0000\u0002\n\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\\\u0002\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u001c\u0000\u0016 escape double-quotes \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000,\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000q\u0000u\u0000o\u0000t\u0000e\u0000s\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0002\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\u0000\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0002\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000)\u0000# reset the AppleScript delimiters\t \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000F\u0000 \u0000r\u0000e\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000\t\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0001\u0007\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0001\u0002\u0001\u0006~\n~\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0001\u0002}\n}\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0001\b\u0001\b|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0001\b\u0001\u0019\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0011\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000,\u0000s\u0000e\u0000t\u0000 \u0000c\u0000e\u0000l\u0000l\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000l\u0000a\u0000y\u0000o\u0000u\u0000t\u0000 \u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0001\u000b\u0001\fy\u000by\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\r\u0002\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0000 \u0000t\u0000o\u0000 \u0000(\u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012x\u000bx\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0002\u000e\u0002\u0000\u0001\u0003\u0000\u0011\u0003\u0000\u0000\u0018\u0000\"\u0000 \u0000a\u0000s\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\u0002\u0002\u0000\u0002\u0003\u0001\u0003\u0002\r\u0003\u0001\u0000\u0002r\u0000\u0000\u0001\u001a\u0001!\u0003\u0003\u0003\u0004\r\u0003\u0003\u0000\u0002b\u0000\u0000\u0001\u001a\u0001\u001f\u0003\u0005\u0003\u0006\r\u0003\u0005\u0000\u0002b\u0000\u0000\u0001\u001a\u0001\u001d\u0003\u0007\u0003\b\r\u0003\u0007\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001bv\u000bv\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\r\u0003\b\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001cu\u000bu\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\r\u0003\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001et\u000bt\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\r\u0003\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0003\u0002\u0000\u0002\u0003\t\u0003\n\r\u0003\t\u0000\u0003l\u0000\u0002\u0001\"\u0001\"rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0003\n\u0000\u0002\u0003\u000b\u0003\f\r\u0003\u000b\u0000\u0003I\u0000\u0002\u0001\"\u0001'o\u0003\rn\no\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0003\r\u0000\u0001o\u0000\u0000\u0001\"\u0001#m\u000bm\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002n\u0000\u0000\u0002\u0003\f\u0000\u0002\u0003\u000el\r\u0003\u000e\u0000\u0003l\u0000\u0002\u0001(\u0001(kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002l\u0000\u0000\u0002\u0001\u0000\u0002\u0003\u000f\u0003\u0010\r\u0003\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0003\u0010\u0000\u0002\u0003\u0011\u0003\u0012\r\u0003\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0003\u0012\u0000\u0002\u0003\u0013\u0003\u0014\r\u0003\u0013\u0000\u0002i\u0000\u0000\u0000#\u0000&\u0003\u0015\u0003\u0016\r\u0003\u0015\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u0003\u0017a\u000bb\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u0002\u0003\u0017\u0000\u0002\u0003\u0018`\r\u0003\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u0003\u0016\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0003\u0019\u0002\u0003\u0019\u0000\u0002\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u0003\u001c\u0003\u001d\u0001^\u0000\u0000\f\u0003\u001c\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u0003\u001d\u0000\u0001\u0003\u001e\u0011\u0003\u001e\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u0003\u001b\u0000\u0002\u0003\u001f\u0003 \r\u0003\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0003 \u0000\u0002\u0003!\u0003\"\r\u0003!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0010\u0003#\u0003$\r\u0003#\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u000e\u0003%\u0006\u0003%\u0000\u0003Z\u0003&\u0003'\u000bZ\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0003&\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003(\u000e\u0003(\u0000\u0001\u0003)\u0011\u0003)\u0000\u0006\u0000P\u0000r\u0000o\u0006\u0003'\u0000\u0003Y\u0003*\u0003+\u000bY\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0003*\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004X\u0003X\u0000\n\u0006\u0003+\u0000\u0003W\u0003,\u0003-\u000bW\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003,\u0000\u0002]\u0000\u0000\u0000\u0005\u0000\b\u0003.\u0003\/\r\u0003.\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006V\u0003V\u0000\n\r\u0003\/\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007U\nU\u0000\u0004\nmin \u0006\u0003-\u0000\u0003T\u00030\u00031\u000bT\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u00030\u0000\u0001m\u0000\u0000\u0000\t\u0000\nS\nS\u0000\u0004\nnull\u0006\u00031\u0000\u0003R\u00032Q\u000bR\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u00032\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00033\u000e\u00033\u0000\u0001\u00034\u0011\u00034\u0000\u0018\u0000C\u0000L\u0000O\u0000S\u0000E\u0000_\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0006Q\u0000\u0000\r\u0003$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0003\"\u0000\u0002\u00035\u00036\r\u00035\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0016\u00037\u00038\r\u00037\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0014\u00039\u0003:\r\u00039\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012O\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003:\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013N\u000bN\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u00038\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u00036\u0000\u0002\u0003;\u0003<\r\u0003;\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0003<\u0000\u0002\u0003=\u0003>\r\u0003=\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0003?\u0003@\r\u0003?\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001a\u0003A\u0003B\r\u0003A\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u001aI\u000bI\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003B\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018H\u000bH\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u0002\u0003>\u0000\u0002\u0003C\u0003D\r\u0003C\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0003E\u0003F\r\u0003E\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0003G\u0003H\r\u0003G\u0000\u0001o\u0000\u0000\u0000\u001e\u0000 F\u000bF\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0003H\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001eE\u000bE\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0003D\u0000\u0002\u0003I\u0003J\r\u0003I\u0000\u0002r\u0000\u0000\u0000#\u0000(\u0003K\u0003L\r\u0003K\u0000\u0002n\u0000\u0000\u0000#\u0000&\u0003M\u0003N\r\u0003M\u0000\u0001o\u0000\u0000\u0000$\u0000&C\u000bC\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003N\u0000\u0001o\u0000\u0000\u0000#\u0000$B\u000bB\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0003J\u0000\u0002\u0003O\u0003P\r\u0003O\u0000\u0003l\u0000\u0002\u0000)\u0000)@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0003P\u0000\u0002\u0003Q\u0003R\r\u0003Q\u0000\u0002r\u0000\u0000\u0000)\u00004\u0003S\u0003T\r\u0003S\u0000\u0003I\u0000\u0002\u0000)\u00002=\u0003U\u0003V\n=\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u0003U\u0000\u0003l\u0000\u0005\u0000)\u0000,\u0003W<;\r\u0003W\u0000\u0002^\u0000\u0000\u0000)\u0000,\u0003X\u0003Y\r\u0003X\u0000\u0001o\u0000\u0000\u0000)\u0000*:\u000b:\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003Y\u0000\u0001o\u0000\u0000\u0000*\u0000+9\u000b9\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001<\u0000\u0000\u0001;\u0000\u0000\u0006\u0003V\u0000\u00038\u0003Z7\n8\u0000\u0004\ndire\r\u0003Z\u0000\u0001m\u0000\u0000\u0000-\u0000.6\n6\u0000\b\u000bolierndD\u00067\u0000\u0000\r\u0003T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0003R\u0000\u0002\u0003[\u0003\\\r\u0003[\u0000\u0003l\u0000\u0002\u00005\u00005432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u0003\\\u0000\u0002\u0003]\u0003^\r\u0003]\u0000\u0003l\u0000\u0002\u00005\u0000510\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0003^\u0000\u0002\u0003_\u0003`\r\u0003_\u0000\u0003Q\u0000\u0000\u00005\u0001\u0003a\u0003b\u0003c\r\u0003a\u0000\u0001k\u0000\u0000\u00008\u0001\u0003d\u0002\u0003d\u0000\u0002\u0003e\u0003f\r\u0003e\u0000\u0003l\u0000\u0001\u00008\u00008.\u0003g\u0003h\u0001.\u0000\u0000\f\u0003g\u0000=\u00007 try closing the database by telling FileMaker to do it\u0000\u0002\u0000\u0000\u000e\u0003h\u0000\u0001\u0003i\u0011\u0003i\u0000n\u0000 \u0000t\u0000r\u0000y\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000y\u0000 \u0000t\u0000e\u0000l\u0000l\u0000i\u0000n\u0000g\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000i\u0000t\u0002\u0003f\u0000\u0002\u0003j\u0003k\r\u0003j\u0000\u0004Z\u0000\u0000\u00008\u0000\u0003l\u0003m-,\r\u0003l\u0000\u0002>\u0001\u0000\u00008\u0000=\u0003n\u0003o\r\u0003n\u0000\u0002n\u0000\u0000\u00008\u0000;\u0003p\u0003q\r\u0003p\u0000\u0001o\u0000\u0000\u00009\u0000;+\u000b+\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003q\u0000\u0001o\u0000\u0000\u00008\u00009*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003o\u0000\u0001m\u0000\u0000\u0000;\u0000<)\n)\u0000\u0004\nnull\r\u0003m\u0000\u0003Q\u0000\u0000\u0000@\u0000\u0003r\u0003s\u0003t\r\u0003r\u0000\u0002O\u0000\u0000\u0000C\u0000s\u0003u\u0003v\r\u0003u\u0000\u0001k\u0000\u0000\u0000G\u0000r\u0003w\u0002\u0003w\u0000\u0002\u0003x\u0003y\r\u0003x\u0000\u0003I\u0000\u0002\u0000G\u0000O(\u0003z'\n(\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r\u0003z\u0000\u00024\u0000\u0000\u0000G\u0000K&\u0003{\n&\u0000\u0004\ncDB \r\u0003{\u0000\u0001o\u0000\u0000\u0000I\u0000J%\u000b%\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002'\u0000\u0000\u0002\u0003y\u0000\u0002\u0003|\u0003}\r\u0003|\u0000\u0004Z\u0000\u0001\u0000P\u0000o\u0003~\u0003$#\r\u0003~\u0000\u0001o\u0000\u0000\u0000P\u0000U\"\u000b\"\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0003\u0000\u0002n\u0000\u0001\u0000X\u0000k\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000Y\u0000k!\u0003 \u000b!\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000Y\u0000^\u001f\u000b\u001f\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0003\u0000\u0002\u0003\u001e\r\u0003\u0000\u0002b\u0000\u0000\u0000^\u0000g\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000^\u0000c\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000D\u0000A\u0000T\u0000A\u0000B\u0000A\u0000S\u0000E\u0000 \u0000'\r\u0003\u0000\u0001o\u0000\u0000\u0000a\u0000b\u001d\u000b\u001d\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000$\u0000'\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000.\u0002\u001e\u0000\u0000\u0002 \u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000X\u0000Y\u0002$\u0000\u0000\u0001#\u0000\u0000\u0002\u0003}\u0000\u0002\u0003\u001c\r\u0003\u0000\u0001L\u0000\u0000\u0000p\u0000r\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000p\u0000q\u001b\n\u001b\u0000\b\u000bboovtrue\u0002\u001c\u0000\u0000\r\u0003v\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u000f\u0003\u00026\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u00116\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u00116\u0000\u0000\u0000\u0000\u0002\u0000QMacintosh SSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0003s\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u0003\u0003\n\u001a\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0003\u0000\u0003\u0018\u0003\u0017\n\u0018\u0000\u0004\nerrn\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0017\u0000\u0000\r\u0003t\u0000\u0004Z\u0000\u0001\u0000{\u0000\u0003\u0003\u0015\u0014\r\u0003\u0000\u0001o\u0000\u0000\u0000{\u0000\u0013\u000b\u0013\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0003\u0000\u0002n\u0000\u0001\u0000\u0000\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0012\u0003\u0011\u000b\u0012\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\u0003\u0010\u0000\u0005\u0002\u0003\u0000\u0002\u0003\u000f\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000D\u0000A\u0000T\u0000A\u0000B\u0000A\u0000S\u0000E\u0000 \u0000'\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000h\u0000'\u0000 \u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000,\u0000 \u0000t\u0000r\u0000y\u0000i\u0000n\u0000g\u0000 \u0000b\u0000y\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0002\u000f\u0000\u0000\u0002\u0011\u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0003k\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\f\u000b\n\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0000\u0000\u0006\u0003\u0003\u0001\u0006\u0000\u0000\f\u0003\u0000=\u00007 unable to close directly, try to call the close script\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000n\u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u000b\u0005\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0004\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0006\u0000A\u0000d\u0000v\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u0002\u0000\u0000\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\r\u0003\u0000\u0002O\u0000\u0000\u0000\u0001\u0003\u0003\r\u0003\u0000\u0002O\u0000\u0000\u0000\u0001\u0003\u0003\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0001\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0000\u0000\u0003\u0003\u0001\u0000\u0000\f\u0003\u0000G\u0000A wait until Close Window is available ( menu item is available ):\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000 \u0000)\u0000:\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002U\u0000\u0000\u0000\u0001\u000b\u0003\u0003\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0001\u0006\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nenaB\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmenI\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmenE\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmbri\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmbar\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0001\u0000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\r\u0003\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\r\u0003\u0000\u0003I\u0000\u0002\u0001\u0001\u0001\u0006\u0003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0003\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0002\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0001\f\u0001\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0001\f\u0001\f\u0003\u0003\u0001\u0000\u0000\f\u0003\u0000\/\u0000) try to close by running the close script\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000R\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000b\u0000y\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0003\u0000\u0002\u0003\u0004\u0000\r\u0003\u0000\u0003Q\u0000\u0000\u0001\f\u0001\u0004\u0001\u0004\u0002\u0004\u0003\r\u0004\u0001\u0000\u0004Z\u0000\u0000\u0001\u000f\u0001i\u0004\u0004\u0004\u0005\u0004\u0006\r\u0004\u0004\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\r\u0004\u0005\u0000\u0001k\u0000\u0000\u0001\u0013\u0001K\u0004\u0007\u0002\u0004\u0007\u0000\u0002\u0004\b\u0004\t\r\u0004\b\u0000\u0002n\u0000\u0001\u0001\u0013\u0001\u001a\u0004\n\u0004\u000b\r\u0004\n\u0000\u0003I\u0000\u0000\u0001\u0014\u0001\u001a\u0004\f\u000b\u000040\u0000\u0018fmgui_managescripts_open\u0000\u0018fmGUI_ManageScripts_Open\u0002\u0004\f\u0000\u0002\u0004\r\r\u0004\r\u0000\u0001J\u0000\u0000\u0001\u0014\u0001\u0016\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u000b\u0000\u0000f\u0000\u0000\u0001\u0013\u0001\u0014\u0002\u0004\t\u0000\u0002\u0004\u000e\u0004\u000f\r\u0004\u000e\u0000\u0002n\u0000\u0001\u0001\u001b\u0001(\u0004\u0010\u0004\u0011\r\u0004\u0010\u0000\u0003I\u0000\u0000\u0001\u001c\u0001(\u0004\u0012\u000b\u0000J0\u0000#fmgui_managescripts_fmscript_select\u0000#fmGUI_ManageScripts_FmScript_Select\u0002\u0004\u0012\u0000\u0002\u0004\u0013\r\u0004\u0013\u0000\u0001K\u0000\u0000\u0001\u001c\u0001$\u0004\u0014\u0006\u0004\u0014\u0000\u0003\u0004\u0015\u000b\u0000\u001c0\u0000\ffmscriptname\u0000\ffmScriptName\r\u0004\u0015\u0000\u0003l\u0000\u0005\u0001\u001f\u0001\"\u0004\u0016\r\u0004\u0016\u0000\u0002n\u0000\u0000\u0001\u001f\u0001\"\u0004\u0017\u0004\u0018\r\u0004\u0017\u0000\u0001o\u0000\u0000\u0001 \u0001\"\u000b\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u0004\u0018\u0000\u0001o\u0000\u0000\u0001\u001f\u0001 \u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0011\u0000\u0000f\u0000\u0000\u0001\u001b\u0001\u001c\u0002\u0004\u000f\u0000\u0002\u0004\u0019\u0004\u001a\r\u0004\u0019\u0000\u0002r\u0000\u0000\u0001)\u0001E\u0004\u001b\u0004\u001c\r\u0004\u001b\u0000\u00026\u0001\u0000\u0001)\u0001C\u0004\u001d\u0004\u001e\r\u0004\u001d\u0000\u0002n\u0000\u0000\u0001)\u00014\u0004\u001f\u0004 \r\u0004\u001f\u0000\u00024\u0000\u0001\u0001\/\u00014\u0004!\n\u0000\u0004\nbutT\r\u0004!\u0000\u0001m\u0000\u0000\u00012\u00013\u0003\u0000\u0001\r\u0004 \u0000\u00024\u0000\u0000\u0001)\u0001\/\u0004\"\n\u0000\u0004\ncwin\r\u0004\"\u0000\u0001m\u0000\u0000\u0001-\u0001.\u0003\u0000\u0001\r\u0004\u001e\u0000\u0002=\u0000\u0003\u00017\u0001B\u0004#\u0004$\r\u0004#\u0000\u00011\u0000\u0000\u00018\u0001<\n\u0000\u0004\ndesc\r\u0004$\u0000\u0001m\u0000\u0000\u0001=\u0001A\u0004%\u000e\u0004%\u0000\u0001\u0004&\u0011\u0004&\u0000\u000e\u0000P\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\r\u0004\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u0002\u0004\u001a\u0000\u0002\u0004'\r\u0004'\u0000\u0003I\u0000\u0002\u0001F\u0001K\u0004(\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0004(\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0006\u0000\u0001k\u0000\u0000\u0001N\u0001i\u0004)\u0002\u0004)\u0000\u0002\u0004*\u0004+\r\u0004*\u0000\u0002r\u0000\u0000\u0001N\u0001Z\u0004,\u0004-\r\u0004,\u0000\u0002n\u0000\u0000\u0001N\u0001X\u0004.\u0004\/\r\u0004.\u0000\u00011\u0000\u0000\u0001T\u0001X\n\u0000\u0004\npnam\r\u0004\/\u0000\u00024\u0000\u0000\u0001N\u0001T\u00040\n\u0000\u0004\ncwin\r\u00040\u0000\u0001m\u0000\u0000\u0001R\u0001S\u0003\u0000\u0001\r\u0004-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u0002\u0004+\u0000\u0002\u00041\r\u00041\u0000\u0003R\u0000\u0000\u0001[\u0001i\u00042\u00043\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00042\u0000\u0002b\u0000\u0000\u0001c\u0001h\u00044\u00045\r\u00044\u0000\u0001m\u0000\u0000\u0001c\u0001f\u00046\u000e\u00046\u0000\u0001\u00047\u0011\u00047\u0000|\u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000w\u0000a\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000 \u0000-\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000s\u0000 \r\u00045\u0000\u0001o\u0000\u0000\u0001f\u0001g\u000b\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u0006\u00043\u0000\u0003\u00048\n\u0000\u0004\nerrn\r\u00048\u0000\u0001m\u0000\u0000\u0001_\u0001b\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0004\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0004\u0003\u0000\u0001k\u0000\u0000\u0001q\u0001\u00049\u0002\u00049\u0000\u0002\u0004:\u0004;\r\u0004:\u0000\u0004Z\u0000\u0001\u0001q\u0001\u0004<\u0004=\r\u0004<\u0000\u0001o\u0000\u0000\u0001q\u0001v\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0004=\u0000\u0003I\u0000\u0000\u0001y\u0001\u0004>\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0004>\u0000\u0002\u0004?\u0004@\r\u0004?\u0000\u0001o\u0000\u0000\u0001z\u0001\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0004@\u0000\u0002\u0004A\r\u0004A\u0000\u0002b\u0000\u0000\u0001\u0001\u0004B\u0004C\r\u0004B\u0000\u0002b\u0000\u0000\u0001\u0001\u0004D\u0004E\r\u0004D\u0000\u0002b\u0000\u0000\u0001\u0001\u0004F\u0004G\r\u0004F\u0000\u0002b\u0000\u0000\u0001\u0001\u0004H\u0004I\r\u0004H\u0000\u0001m\u0000\u0000\u0001\u0001\u0004J\u000e\u0004J\u0000\u0001\u0004K\u0011\u0004K\u0000\b\u0000N\u0000o\u0000 \u0000'\r\u0004I\u0000\u0003l\u0000\u0005\u0001\u0001\u0004L\r\u0004L\u0000\u0002n\u0000\u0000\u0001\u0001\u0004M\u0004N\r\u0004M\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u0004N\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004G\u0000\u0001m\u0000\u0000\u0001\u0001\u0004O\u000e\u0004O\u0000\u0001\u0004P\u0011\u0004P\u0000\f\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0004E\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0004C\u0000\u0001m\u0000\u0000\u0001\u0001\u0004Q\u000e\u0004Q\u0000\u0001\u0004R\u0011\u0004R\u0000H\u0000,\u0000 \u0000a\u0000t\u0000t\u0000e\u0000m\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0004;\u0000\u0002\u0004S\u0004T\r\u0004S\u0000\u0002n\u0000\u0001\u0001\u0001\u0004U\u0004V\r\u0004U\u0000\u0003I\u0000\u0000\u0001\u0001\u0004W\u000b\u000060\u0000\u0019fmgui_managescripts_close\u0000\u0019fmGUI_ManageScripts_Close\u0002\u0004W\u0000\u0002\u0004X\r\u0004X\u0000\u0001J\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004V\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0004T\u0000\u0002\u0004Y\r\u0004Y\u0000\u0003I\u0000\u0002\u0001\u0001\u0004Z\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0004Z\u0000\u0002n\u0000\u0000\u0001\u0001\u0004[\u0004\\\r\u0004[\u0000\u00024\u0000\u0000\u0001\u0001\u0004]\n\u0000\u0004\nbutT\r\u0004]\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u0004\\\u0000\u00024\u0000\u0000\u0001\u0001\u0004^\n\u0000\u0004\ncwin\r\u0004^\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0004\u0000\u0000\u0002\u0004_\r\u0004_\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0004`\n\u0000\u0004\npcap\r\u0004`\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0004a\u000f\u0004a\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0003b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0004b\u0004c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0004b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0004c\u0000\u0003\u0004d\n\u0000\u0004\nerrn\r\u0004d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0003c\u0000\u0003R\u0000\u0000\u0001\u0001\u0004e\u0004f\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0004e\u0000\u0002b\u0000\u0000\u0001\u0001\u0004g\u0004h\r\u0004g\u0000\u0001m\u0000\u0000\u0001\u0001\u0004i\u000e\u0004i\u0000\u0001\u0004j\u0011\u0004j\u00008\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0000 \r\u0004h\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0004f\u0000\u0003\u0004k\n\u0000\u0004\nerrn\r\u0004k\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0003`\u0000\u0002\u0004l\r\u0004l\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0003\u0014\u0000\u0002\u0004m\u0004n\r\u0004m\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0004n\u0000\u0002\u0004o\u0004p\r\u0004o\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0004p\u0000\u0002\u0004q\u0004r\r\u0004q\u0000\u0002i\u0000\u0000\u0000'\u0000*\u0004s\u0004t\r\u0004s\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0004u\u000b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0004u\u0000\u0002\u0004v\r\u0004v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004t\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0004w\u0002\u0004w\u0000\u0002\u0004x\u0004y\r\u0004x\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0004z\u0004{\u0001\u0000\u0000\f\u0004z\u0000\u0012\u0000\f version 1.5\u0000\u0002\u0000\u0000\u000e\u0004{\u0000\u0001\u0004|\u0011\u0004|\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00005\u0002\u0004y\u0000\u0002\u0004}\u0004~\r\u0004}\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0004~\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003Q\u0000\u0000\u0000\u0000\u0001\u0004\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000\u0003\u0001\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000f\u0004\u0004\r\u0004\u0000\u0001K\u0000\u0000\u0000\u0003\u0000\r\u0004\u0006\u0004\u0000\u0003}\u0004\u0004\u000b}\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0006\u0000P\u0000r\u0000o\u0006\u0004\u0000\u0003|\u0004\u0004\u000b|\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007{\u0003{\u0000\u0005\u0006\u0004\u0000\u0003z\u0004y\u000bz\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0002]\u0000\u0000\u0000\b\u0000\u000b\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000\b\u0000\tx\u0003x\u0000\u0002\r\u0004\u0000\u00011\u0000\u0000\u0000\t\u0000\nw\nw\u0000\u0004\nmin \u0006y\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011u\u000bu\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012t\u000bt\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0004Z\u0000\u0001\u0000\u0016\u00004\u0004\u0004on\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u001bm\u000bm\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0004\u0000\u0003I\u0000\u0000\u0000\u001e\u00000l\u0004k\u000bl\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$j\u000bj\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0004\u0000\u0002\u0004i\r\u0004\u0000\u0002b\u0000\u0000\u0000$\u0000,\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000@\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0000:\u0000 \r\u0004\u0000\u0003I\u0000\u0000\u0000%\u0000+h\u0004g\u000bh\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0004\u0000\u0002\u0004f\r\u0004\u0000\u0001o\u0000\u0000\u0000&\u0000'e\u000be\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002f\u0000\u0000\u0002g\u0000\u0000\u0002i\u0000\u0000\u0002k\u0000\u0000\u0002o\u0000\u0000\u0001n\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u00005\u00005dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u00005\u0000:\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u00005\u00008\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u00006\u00008a\u000ba\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0004\u0000\u0001o\u0000\u0000\u00005\u00006`\u000b`\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000;\u0000;^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000;\u0000@\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000;\u0000>\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000<\u0000>[\u000b[\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000;\u0000<Z\u000bZ\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000A\u0000D\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000B\u0000DX\u000bX\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000A\u0000BW\u000bW\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000G\u0000GUTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000G\u0000R\u0004\u0004\r\u0004\u0000\u0003I\u0000\u0002\u0000G\u0000PR\u0004\u0004\nR\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u0004\u0000\u0003l\u0000\u0005\u0000G\u0000J\u0004QP\r\u0004\u0000\u0002^\u0000\u0000\u0000G\u0000J\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000G\u0000HO\u000bO\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000H\u0000IN\u000bN\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0004\u0000\u0003M\u0004L\nM\u0000\u0004\ndire\r\u0004\u0000\u0001m\u0000\u0000\u0000K\u0000LK\nK\u0000\b\u000bolierndD\u0006L\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000S\u0000SIHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0004Z\u0000\u0000\u0000S\u0000f\u0004\u0004F\u0004\r\u0004\u0000\u0002=\u0000\u0003\u0000S\u0000X\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000S\u0000V\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000T\u0000VE\u000bE\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0004\u0000\u0001o\u0000\u0000\u0000S\u0000TD\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0006\u0000A\u0000d\u0000v\r\u0004\u0000\u0002r\u0000\u0000\u0000[\u0000^\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u0002F\u0000\u0000\r\u0004\u0000\u0002r\u0000\u0000\u0000a\u0000f\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u00004\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000g\u0000gA@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000g\u0000g>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002U\u0000\u0000\u0000g\u0000\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000n\u0000\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000n\u0000n;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000n\u0000s\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000n\u0000q8\n8\u0000\u0004\nnull\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003Q\u0000\u0000\u0000t\u0000\u0004\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000w\u0000\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002w\u0000\u0000\u0000w\u0000\u0004\u0004\r\u0004\u0000\u0002O\u0000\u0000\u0000{\u0000\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0000\u0004\u0004\r\u0004\u0000\u00012\u0000\u0000\u0000\u00006\n6\u0000\u0004\ndocu\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\r\u0004\u0000\u00035\u0000\u0000\u0000{\u00004\u00043\n4\u0000\u0004\ncapp\r\u0004\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\n3\u0000\b\u000bkfrmID \u000f\u0004\u00026\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u00116\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u00116\u0000\u0000\u0000\u0000\u0002\u0000QMacintosh SSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000\u000010\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0004\u0000\u0002\u0005\u0000\u0005\u0001\r\u0005\u0000\u0000\u0004Z\u0000\u0001\u0000\u0000\u0005\u0002\u0005\u0003.-\r\u0005\u0002\u0000\u0002>\u0001\u0000\u0000\u0000\u0005\u0004\u0005\u0005\r\u0005\u0004\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\r\u0005\u0005\u0000\u0001m\u0000\u0000\u0000\u0000+\n+\u0000\u0004\nnull\r\u0005\u0003\u0000\u0000S\u0000\u0000\u0000\u0000\u0002.\u0000\u0000\u0001-\u0000\u0000\u0002\u0005\u0001\u0000\u0002\u0005\u0006*\r\u0005\u0006\u0000\u0003l\u0000\u0002\u0000\u0000)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&\u0005\u0007\u0005\b\n&\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\b\u0000\u0003$\u0005\t#\n$\u0000\u0004\nerrn\r\u0005\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006#\u0000\u0000\r\u0004\u0000\u0004Z\u0000\u0000\u0000\u0000\u0005\n\u0005\u000b!\u0005\f\r\u0005\n\u0000\u0002=\u0000\u0003\u0000\u0000\u0005\r\u0005\u000e\r\u0005\r\u0000\u0001o\u0000\u0000\u0000\u0000 \u000b \u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u0005\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\r\u0005\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u001e\u0005\u000f\u0005\u0010\u0001\u001e\u0000\u0000\f\u0005\u000f\u0000\u0000 just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \u0000\u0002\u0000\u0000\u000e\u0005\u0010\u0000\u0001\u0005\u0011\u0011\u0005\u0011\u0001b\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000k\u0000e\u0000e\u0000p\u0000 \u0000t\u0000r\u0000y\u0000i\u0000n\u0000g\u0000 \u0000-\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000c\u0000a\u0000n\u0000 \u0000b\u0000e\u0000 \u0000c\u0000a\u0000u\u0000s\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000i\u0000s\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000a\u0000k\u0000e\u0000s\u0000 \u0000a\u0000 \u0000b\u0000i\u0000t\u0000 \u0000t\u0000o\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000,\u0000 \u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000F\u0000M\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000a\u0000c\u0000e\u0000 \u0000i\u0000s\u0000 \u0000s\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000s\u0000p\u0000o\u0000n\u0000d\u0000.\u0000 \u0002!\u0000\u0000\r\u0005\f\u0000\u0003R\u0000\u0000\u0000\u0000\u001d\u0005\u0012\u0005\u0013\n\u001d\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0005\u0014\u0005\u0015\r\u0005\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0005\u0016\u000e\u0005\u0016\u0000\u0001\u0005\u0017\u0011\u0005\u0017\u0000\\\u0000E\u0000r\u0000r\u0000o\u0000r\u0000 \u0000g\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000s\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000o\u0000p\u0000e\u0000n\u0000:\u0000 \r\u0005\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\u0013\u0000\u0003\u001b\u0005\u0018\u001a\n\u001b\u0000\u0004\nerrn\r\u0005\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001a\u0000\u0000\u0002\u0004\u0000\u0002\u0005\u0019\u0005\u001a\r\u0005\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u0005\u001a\u0000\u0002\u0005\u001b\u0015\r\u0005\u001b\u0000\u0003I\u0000\u0002\u0000\u0000\u0014\u0005\u001c\u0013\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0005\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0013\u0000\u0000\u0002\u0015\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000j\u0000k\u0011\u000b\u0011\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0004\u0000\u0002\u0005\u001d\u0005\u001e\r\u0005\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0005\u001e\u0000\u0002\u0005\u001f\u0005 \r\u0005\u001f\u0000\u0003X\u0000\u0000\u0000\u0001\u0005!\r\u0005\"\r\u0005!\u0000\u0001k\u0000\u0000\u0000\u0001\u0005#\u0002\u0005#\u0000\u0002\u0005$\u0005%\r\u0005$\u0000\u0002r\u0000\u0000\u0000\u0000\u0005&\u0005'\r\u0005&\u0000\u0002n\u0000\u0000\u0000\u0000\u0005(\u0005)\r\u0005(\u0000\u00011\u0000\u0000\u0000\u0000\f\n\f\u0000\u0004\npnam\r\u0005)\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\r\u0005'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0005%\u0000\u0002\u0005*\u0005+\r\u0005*\u0000\u0003l\u0000\u0001\u0000\u0000\t\u0005,\u0005-\u0001\t\u0000\u0000\f\u0005,\u00000\u0000* get the name WITHOUT the file extension: \u0000\u0002\u0000\u0000\u000e\u0005-\u0000\u0001\u0005.\u0011\u0005.\u0000T\u0000 \u0000g\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000e\u0000x\u0000t\u0000e\u0000n\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u0005+\u0000\u0002\u0005\/\u00050\r\u0005\/\u0000\u0002c\u0000\u0000\u0000\u0000\u00051\u00052\r\u00051\u0000\u0003l\u0000\u0005\u0000\u0000\u00053\b\u0007\r\u00053\u0000\u0002n\u0000\u0000\u0000\u0000\u00054\u00055\r\u00054\u0000\u00011\u0000\u0000\u0000\u0000\u0006\n\u0006\u0000\u0004\nrvse\r\u00055\u0000\u0002n\u0000\u0000\u0000\u0000\u00056\u00057\r\u00056\u0000\u00012\u0000\u0001\u0000\u0000\u0005\n\u0005\u0000\u0004\ncha \r\u00057\u0000\u0001o\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\r\u00052\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\n\u0003\u0000\u0004\nTEXT\u0002\u00050\u0000\u0002\u00058\u00059\r\u00058\u0000\u0002n\u0000\u0000\u0000\u0001\u0019\u0005:\u0005;\r\u0005:\u0000\u00037\u0001\u0000\u0000\u0001\u0018\u0002\u0005<\u0005=\n\u0002\u0000\u0004\nctxt\r\u0005<\u0000\u0003l\u0000\u0005\u0000\u0001\u0014\u0005>\u0001\u0000\r\u0005>\u0000\u0002[\u0000\u0000\u0000\u0001\u0014\u0005?\u0005@\r\u0005?\u0000\u0003l\u0000\u0005\u0000\u0001\u0012\u0005A\r\u0005A\u0000\u0003I\u0000\u0002\u0000\u0001\u0012\u0005B\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0005B\u0000\u0003\u0005C\u0005D\n\u0000\u0004\npsof\r\u0005C\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0005E\u000e\u0005E\u0000\u0001\u0005F\u0011\u0005F\u0000\u0002\u0000.\u0006\u0005D\u0000\u0003\u0005G\n\u0000\u0004\npsin\r\u0005G\u0000\u00011\u0000\u0000\u0001\t\u0001\f\n\u0000\u0004\nrslt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005@\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0013\u0003\u0000\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r\u0005=\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0017\u0003\r\u0005;\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\u0002\u00059\u0000\u0002\u0005H\u0005I\r\u0005H\u0000\u0002r\u0000\u0000\u0001\u001a\u0001+\u0005J\u0005K\r\u0005J\u0000\u0002c\u0000\u0000\u0001\u001a\u0001)\u0005L\u0005M\r\u0005L\u0000\u0003l\u0000\u0005\u0001\u001a\u0001%\u0005N\r\u0005N\u0000\u0002n\u0000\u0000\u0001\u001a\u0001%\u0005O\u0005P\r\u0005O\u0000\u00011\u0000\u0000\u0001!\u0001%\n\u0000\u0004\nrvse\r\u0005P\u0000\u0002n\u0000\u0000\u0001\u001a\u0001!\u0005Q\u0005R\r\u0005Q\u0000\u00012\u0000\u0001\u0001\u001d\u0001!\n\u0000\u0004\ncha \r\u0005R\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001d\n\u0000\u0004\nrslt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005M\u0000\u0001m\u0000\u0000\u0001%\u0001(\n\u0000\u0004\nTEXT\r\u0005K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0005I\u0000\u0002\u0005S\u0005T\r\u0005S\u0000\u0004Z\u0000\u0001\u0001,\u0001=\u0005U\u0005V\r\u0005U\u0000\u0001o\u0000\u0000\u0001,\u00011\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005V\u0000\u0003I\u0000\u0002\u00014\u00019\u0005W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005W\u0000\u0001o\u0000\u0000\u00014\u00015\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005T\u0000\u0002\u0005X\u0005Y\r\u0005X\u0000\u0004Z\u0000\u0001\u0001>\u0001O\u0005Z\u0005[\r\u0005Z\u0000\u0001o\u0000\u0000\u0001>\u0001C\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005[\u0000\u0003I\u0000\u0002\u0001F\u0001K\u0005\\\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\\\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005Y\u0000\u0002\u0005]\r\u0005]\u0000\u0003P\u0000\u0000\u0001P\u0001\u0005^\u0005_\r\u0005^\u0000\u0001k\u0000\u0000\u0001W\u0001\u0005`\u0002\u0005`\u0000\u0002\u0005a\u0005b\r\u0005a\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005c\u0005d\u0001\u0000\u0000\f\u0005c\u0000w\u0000qif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase docName: \" & coerceToString(class of docName))\u0000\u0002\u0000\u0000\u000e\u0005d\u0000\u0001\u0005e\u0011\u0005e\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000d\u0000o\u0000c\u0000N\u0000a\u0000m\u0000e\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000c\u0000o\u0000e\u0000r\u0000c\u0000e\u0000T\u0000o\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000(\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000o\u0000c\u0000N\u0000a\u0000m\u0000e\u0000)\u0000)\u0002\u0005b\u0000\u0002\u0005f\u0005g\r\u0005f\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005h\u0005i\u0001\u0000\u0000\f\u0005h\u0000u\u0000oif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase dbName: \" & coerceToString(class of dbName))\u0000\u0002\u0000\u0000\u000e\u0005i\u0000\u0001\u0005j\u0011\u0005j\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000d\u0000b\u0000N\u0000a\u0000m\u0000e\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000c\u0000o\u0000e\u0000r\u0000c\u0000e\u0000T\u0000o\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000(\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000b\u0000N\u0000a\u0000m\u0000e\u0000)\u0000)\u0002\u0005g\u0000\u0002\u0005k\u0005l\r\u0005k\u0000\u0003l\u0000\u0002\u0001W\u0001W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005l\u0000\u0002\u0005m\u0005n\r\u0005m\u0000\u0003l\u0000\u0002\u0001W\u0001W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005n\u0000\u0002\u0005o\u0005p\r\u0005o\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005q\u0005r\u0001\u0000\u0000\f\u0005q\u0000s\u0000m apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\u0000\u0002\u0000\u0000\u000e\u0005r\u0000\u0001\u0005s\u0011\u0005s\u0000\u0000 \u0000a\u0000p\u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000t\u0000h\u0000e\u0000s\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000T\u0000E\u0000X\u0000T\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000s\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000f\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000(\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000t\u0000i\u0000n\u0000g\u0000?\u0000)\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000c\u0000a\u0000l\u0000 \u0000S\u0000T\u0000R\u0000I\u0000N\u0000G\u0000S\u0000:\u0002\u0005p\u0000\u0002\u0005t\r\u0005t\u0000\u0004Z\u0000\u0000\u0001W\u0001\u0005u\u0005v\u0005w\r\u0005u\u0000\u0002=\u0000\u0001\u0001W\u0001b\u0005x\u0005y\r\u0005x\u0000\u0003l\u0000\u0005\u0001W\u0001\\\u0005z\r\u0005z\u0000\u0002c\u0000\u0000\u0001W\u0001\\\u0005{\u0005|\r\u0005{\u0000\u0001o\u0000\u0000\u0001W\u0001X\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\r\u0005|\u0000\u0001m\u0000\u0000\u0001X\u0001[\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005y\u0000\u0003l\u0000\u0005\u0001\\\u0001a\u0005}\r\u0005}\u0000\u0002c\u0000\u0000\u0001\\\u0001a\u0005~\u0005\r\u0005~\u0000\u0001o\u0000\u0000\u0001\\\u0001]\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001m\u0000\u0000\u0001]\u0001`\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005v\u0000\u0001k\u0000\u0000\u0001e\u0001\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0001e\u0001e\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000\"\u0000\u001cif debugMode then log \"SAME\"\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u00008\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000 \u0000\"\u0000S\u0000A\u0000M\u0000E\u0000\"\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002w\u0000\u0000\u0001e\u0001\u0005\u0005\r\u0005\u0000\u0002O\u0000\u0000\u0001i\u0001\u0005\u0005\r\u0005\u0000\u0001k\u0000\u0000\u0001u\u0001\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0002\u0001u\u0001z\u0005\n\u0000\u0018.miscmvisnull\u0000\u0000\u0000\u0010\u0000obj \r\u0005\u0000\u0001o\u0000\u0000\u0001u\u0001v\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u0002\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u0001{\u0001\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001{\u0001\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005\u0000\u0002n\u0000\u0001\u0001\u0001\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001\u0001\u0005\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000B\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000o\u0000n\u0000e\u0000D\u0000o\u0000c\u0000:\u0000 \r\u0005\u0000\u0002n\u0000\u0001\u0001\u0001\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001\u0001\u0005\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0001\u0001\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000(\u0000\"if debugMode then log (path to it)\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000D\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000 \u0000(\u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000)\u0002\u0000\u0000\r\u0005\u0000\u00035\u0000\u0000\u0001i\u0001r\u0005\n\u0000\u0004\ncapp\r\u0005\u0000\u0001o\u0000\u0000\u0001m\u0001n\u000b\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\n\u0000\b\u000bkfrmID \u000f\u0005\u00026\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u00116\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u00116\u0000\u0000\u0000\u0000\u0002\u0000QMacintosh SSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001L\u0000\u0000\u0001\u0001\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005w\u0000\u0003l\u0000\u0001\u0001\u0001\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000P\u0000Jif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase DIFF\" )\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000D\u0000I\u0000F\u0000F\u0000\"\u0000 \u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0005_\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u0002\u0000\u0000\u000b\r\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\r\u0005\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u0002\u0005 \u0000\u0002\u0005\u0005\r\u0005\u0000\u0001L\u0000\u0000\u0001\u0001\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovfals\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u0005\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\u0000\u0003\u0005\n\u0000\u0004\nerrn\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0001\u0001\u0005\u0005\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000@\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\"\u0000 \u0000-\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0005\u0000\u0003\u0005\n\u0000\u0004\nerrn\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0004\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0004r\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002i\u0000\u0000\u0000+\u0000.\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0003\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0000\u0006\u0000\u0013\u0005\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u0013\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u0011\u0005\u000b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001K\u0000\u0000\u0000\u0007\u0000\r\u0005\u0006\u0005\u0000\u0003\u0005\u0005\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0006\u0005\u0000\u0003\u0005\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0005\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0006\u0000A\u0000d\u0000v\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\f\u0005\u0000+\u0000% first, just see if one is available.\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000J\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000,\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000s\u0000e\u0000e\u0000 \u0000i\u0000f\u0000 \u0000o\u0000n\u0000e\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000.\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u0000\u0014\u0000-\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005\u0000\u0003I\u0000\u0000\u0000\u001c\u0000)\u0005~\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"}\u000b}\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0005\u0000\u0002\u0005|\r\u0005\u0000\u0002b\u0000\u0000\u0000\"\u0000%\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000$\u0000T\u0000r\u0000i\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0000#\u0000${\u000b{\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002|\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005z\r\u0005\u0000\u0004Z\u0000\u0000\u0000.\u0000\u0005\u0005y\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000.\u0000\/x\u000bx\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\r\u0005\u0000\u0001L\u0000\u0000\u00002\u00004\u0005\r\u0005\u0000\u0001m\u0000\u0000\u00002\u00003w\nw\u0000\b\u000bboovtrue\u0002y\u0000\u0000\r\u0005\u0000\u0001k\u0000\u0000\u00007\u0000\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u00007\u0000P\u0005\u0006\u0000vu\r\u0005\u0000\u0001o\u0000\u0000\u00007\u0000<t\u000bt\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u0000\u0000\u0003I\u0000\u0000\u0000?\u0000Ls\u0006\u0001r\u000bs\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u0001\u0000\u0002\u0006\u0002\u0006\u0003\r\u0006\u0002\u0000\u0001o\u0000\u0000\u0000@\u0000Eq\u000bq\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006\u0003\u0000\u0002\u0006\u0004p\r\u0006\u0004\u0000\u0002b\u0000\u0000\u0000E\u0000H\u0006\u0005\u0006\u0006\r\u0006\u0005\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0006\u0007\u000e\u0006\u0007\u0000\u0001\u0006\b\u0011\u0006\b\u0000,\u0000A\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000:\u0000 \r\u0006\u0006\u0000\u0001o\u0000\u0000\u0000F\u0000Go\u000bo\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002p\u0000\u0000\u0002r\u0000\u0000\u0002v\u0000\u0000\u0001u\u0000\u0000\u0002\u0005\u0000\u0002\u0006\t\u0006\n\r\u0006\t\u0000\u0003l\u0000\u0002\u0000Q\u0000Qnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0006\n\u0000\u0002\u0006\u000bk\r\u0006\u000b\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0006\f\u0006\rj\u0006\u000e\r\u0006\f\u0000\u0003I\u0000\u0000\u0000Q\u0000Wi\u0006\u000fh\u000bi\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u0002\u0006\u000f\u0000\u0002\u0006\u0010g\r\u0006\u0010\u0000\u0001o\u0000\u0000\u0000R\u0000Sf\u000bf\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002g\u0000\u0000\u0002h\u0000\u0000\r\u0006\r\u0000\u0001k\u0000\u0000\u0000Z\u0000\u0006\u0011\u0002\u0006\u0011\u0000\u0002\u0006\u0012\u0006\u0013\r\u0006\u0012\u0000\u0003l\u0000\u0001\u0000Z\u0000Ze\u0006\u0014\u0006\u0015\u0001e\u0000\u0000\f\u0006\u0014\u00002\u0000, was able to open it, so NOW display window.\u0000\u0002\u0000\u0000\u000e\u0006\u0015\u0000\u0001\u0006\u0016\u0011\u0006\u0016\u0000X\u0000 \u0000w\u0000a\u0000s\u0000 \u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000N\u0000O\u0000W\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0002\u0006\u0013\u0000\u0002\u0006\u0017\u0006\u0018\r\u0006\u0017\u0000\u0003I\u0000\u0002\u0000Z\u0000_d\u0006\u0019c\nd\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0006\u0019\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0006\u001a\b\u0006\u001a\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002c\u0000\u0000\u0002\u0006\u0018\u0000\u0002\u0006\u001b\u0006\u001c\r\u0006\u001b\u0000\u0004Z\u0000\u0001\u0000`\u0000y\u0006\u001d\u0006\u001eba\r\u0006\u001d\u0000\u0001o\u0000\u0000\u0000`\u0000e`\u000b`\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u001e\u0000\u0003I\u0000\u0000\u0000h\u0000u_\u0006\u001f^\u000b_\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u001f\u0000\u0002\u0006 \u0006!\r\u0006 \u0000\u0001o\u0000\u0000\u0000i\u0000n]\u000b]\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006!\u0000\u0002\u0006\"\\\r\u0006\"\u0000\u0002b\u0000\u0000\u0000n\u0000q\u0006#\u0006$\r\u0006#\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0006%\u000e\u0006%\u0000\u0001\u0006&\u0011\u0006&\u0000R\u0000T\u0000r\u0000i\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000n\u0000o\u0000w\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000:\u0000 \r\u0006$\u0000\u0001o\u0000\u0000\u0000o\u0000p[\u000b[\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0002b\u0000\u0000\u0001a\u0000\u0000\u0002\u0006\u001c\u0000\u0002\u0006'\u0006(\r\u0006'\u0000\u0002r\u0000\u0000\u0000z\u0000\u0006)\u0006*\r\u0006)\u0000\u0003I\u0000\u0000\u0000z\u0000Z\u0006+Y\u000bZ\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0006+\u0000\u0002\u0006,X\r\u0006,\u0000\u0001K\u0000\u0000\u0000{\u0000\u0006-\u0006\u0006-\u0000\u0003W\u0006.\u0006\/\u000bW\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0006.\u0000\u0001o\u0000\u0000\u0000|\u0000}V\u000bV\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0006\u0006\/\u0000\u0003U\u00060T\u000bU\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u00060\u0000\u0001m\u0000\u0000\u0000~\u0000\u00061\u000e\u00061\u0000\u0001\u00062\u0011\u00062\u0000\u0006\u0000A\u0000d\u0000v\u0006T\u0000\u0000\u0002X\u0000\u0000\u0002Y\u0000\u0000\r\u0006*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u0002\u0006(\u0000\u0002\u00063R\r\u00063\u0000\u0001L\u0000\u0000\u0000\u0000\u00064\r\u00064\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u0002R\u0000\u0000\u0002j\u0000\u0000\r\u0006\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u00065\u0002\u00065\u0000\u0002\u00066\u00067\r\u00066\u0000\u0003l\u0000\u0001\u0000\u0000P\u00068\u00069\u0001P\u0000\u0000\f\u00068\u00000\u0000* Was NOT able to open it, so return false.\u0000\u0002\u0000\u0000\u000e\u00069\u0000\u0001\u0006:\u0011\u0006:\u0000T\u0000 \u0000W\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000.\u0002\u00067\u0000\u0002\u0006;O\r\u0006;\u0000\u0001L\u0000\u0000\u0000\u0000\u0006<\r\u0006<\u0000\u0001m\u0000\u0000\u0000\u0000N\nN\u0000\b\u000bboovfals\u0002O\u0000\u0000\u0002k\u0000\u0000\u0002z\u0000\u0000\u0002\u0005\u0000\u0002\u0006=\u0006>\r\u0006=\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000MLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0006>\u0000\u0002\u0006?\u0006@\r\u0006?\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000JIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002\u0006@\u0000\u0002\u0006A\u0006B\r\u0006A\u0000\u0002i\u0000\u0000\u0000\/\u00002\u0006C\u0006D\r\u0006C\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000G\u0006EF\u000bG\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u0002\u0006E\u0000\u0002\u0006FE\r\u0006F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002E\u0000\u0000\u0002F\u0000\u0000\r\u0006D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0006G\u0002\u0006G\u0000\u0002\u0006H\u0006I\r\u0006H\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000C\u0006J\u0006K\u0001C\u0000\u0000\f\u0006J\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u0006K\u0000\u0001\u0006L\u0011\u0006L\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u0006I\u0000\u0002\u0006M\u0006N\r\u0006M\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000BA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0006N\u0000\u0002\u0006O\u0006P\r\u0006O\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0006Q\u0006R\u0006S\r\u0006Q\u0000\u0001k\u0000\u0000\u0000\u0003\u0000u\u0006T\u0002\u0006T\u0000\u0002\u0006U\u0006V\r\u0006U\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\u0006W\u0006X\r\u0006W\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\n\u0006Y\u0006Z\r\u0006Y\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0006[\u0006\\\r\u0006[\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0006]\u000e\u0006]\u0000\u0001\u0006^\u0011\u0006^\u0000<\u0000h\u0000t\u0000c\u0000l\u0000i\u0000n\u0000k\u0000:\u0000\/\u0000\/\u0000A\u0000c\u0000c\u0000e\u0000s\u0000s\u0000F\u0000i\u0000l\u0000e\u0000?\u0000F\u0000i\u0000l\u0000e\u0000N\u0000a\u0000m\u0000e\u0000=\r\u0006\\\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0006_\u0006`\r\u0006_\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0007?\u000b?\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0006`\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005>\u000b>\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006Z\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0006a\u000e\u0006a\u0000\u0001\u0006b\u0011\u0006b\u0000N\u0000&\u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000=\u0000O\u0000p\u0000e\u0000n\u0000&\u0000S\u0000i\u0000l\u0000e\u0000n\u0000t\u0000O\u0000p\u0000e\u0000n\u0000=\u00001\u0000&\u0000S\u0000h\u0000o\u0000w\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000=\u00001\r\u0006X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u0002\u0006V\u0000\u0002\u0006c\u0006d\r\u0006c\u0000\u0003l\u0000\u0002\u0000\r\u0000\r<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u0006d\u0000\u0002\u0006e\u0006f\r\u0006e\u0000\u0002O\u0000\u0000\u0000\r\u0000p\u0006g\u0006h\r\u0006g\u0000\u0001k\u0000\u0000\u0000\u0011\u0000o\u0006i\u0002\u0006i\u0000\u0002\u0006j\u0006k\r\u0006j\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0006k\u0000\u0002\u0006l\u0006m\r\u0006l\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\/\u0006n\u0006o\r\u0006n\u0000\u0002b\u0000\u0000\u0000\u0011\u0000-\u0006p\u0006q\r\u0006p\u0000\u0002b\u0000\u0000\u0000\u0011\u0000$\u0006r\u0006s\r\u0006r\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\"\u0006t\u0006u\r\u0006t\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u001e\u0006v\u0006w\r\u0006v\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u001c\u0006x\u0006y\r\u0006x\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0018\u0006z\u0006{\r\u0006z\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0016\u0006|\u0006}\r\u0006|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0006~\u000e\u0006~\u0000\u0001\u0006\u0011\u0006\u0000\f\u0000F\u0000M\u0000P\u0000:\u0000\/\u0000\/\r\u0006}\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u00156\u000b6\u0000\u00140\u0000\bserverip\u0000\bserverIP\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u00135\u000b5\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006{\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0002\u0000\/\r\u0006y\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001b\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001b4\u000b4\u0000\u00180\u0000\nmaindbname\u0000\nmainDbName\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u00193\u000b3\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006w\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0010\u0000?\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000=\r\u0006u\u0000\u0002n\u0000\u0000\u0000\u001e\u0000!\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u001f\u0000!2\u000b2\u0000<0\u0000\u001ccustomlinkreceiverscriptname\u0000\u001ccustomLinkReceiverScriptName\r\u0006\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f1\u000b1\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006s\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000&\u0000p\u0000a\u0000r\u0000a\u0000m\u0000=\r\u0006q\u0000\u0002n\u0000\u0001\u0000$\u0000,\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000%\u0000,0\u0006\/\u000b0\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000%\u0000&.\u000b.\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000&\u0000'-\n-\u0000\b\u000bboovtrue\u0002\u0006\u0000\u0002\u0006,\r\u0006\u0000\u0001m\u0000\u0000\u0000'\u0000(+\n+\u0000\b\u000bboovfals\u0002,\u0000\u0000\u0002\/\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0006o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006m\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u00000\u00000)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u00000\u00000&\u0006\u0006\u0001&\u0000\u0000\f\u0006\u0000[\u0000U we must double-encode equals (%3D) and ampersand (%26) to work-around FileMaker bug:\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0000 \u0000w\u0000e\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000e\u0000n\u0000c\u0000o\u0000d\u0000e\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000s\u0000 \u0000(\u0000%\u00003\u0000D\u0000)\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000m\u0000p\u0000e\u0000r\u0000s\u0000a\u0000n\u0000d\u0000 \u0000(\u0000%\u00002\u00006\u0000)\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000-\u0000a\u0000r\u0000o\u0000u\u0000n\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000b\u0000u\u0000g\u0000:\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u00000\u0000<\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u00000\u0000:\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u00001\u0000:%\u0006$\u000b%\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0006\u0000\u0002\u0006#\r\u0006\u0000\u0001J\u0000\u0000\u00001\u00006\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u00001\u00002\"\u000b\"\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u00002\u00003\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000%\u00003\u0000D\u0002\u0006\u0000\u0002\u0006!\r\u0006\u0000\u0001m\u0000\u0000\u00003\u00004\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000%\u00002\u00005\u00003\u0000D\u0002!\u0000\u0000\u0002#\u0000\u0000\u0002$\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u00000\u00001\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0000=\u0000K\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0000=\u0000I\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000>\u0000I\u001f\u0006\u001e\u000b\u001f\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0006\u0000\u0002\u0006\u001d\r\u0006\u0000\u0001J\u0000\u0000\u0000>\u0000E\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000>\u0000?\u001c\u000b\u001c\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000%\u00002\u00006\u0002\u0006\u0000\u0002\u0006\u001b\r\u0006\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000%\u00002\u00005\u00002\u00006\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001e\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000=\u0000>\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000L\u0000L\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0004Z\u0000\u0001\u0000L\u0000g\u0006\u0006\u0016\u0015\r\u0006\u0000\u0001o\u0000\u0000\u0000L\u0000Q\u0014\u000b\u0014\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u0000\u0002n\u0000\u0001\u0000T\u0000c\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000U\u0000c\u0013\u0006\u0012\u000b\u0013\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000U\u0000Z\u0011\u000b\u0011\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006\u0000\u0002\u0006\u0010\r\u0006\u0000\u0002b\u0000\u0000\u0000Z\u0000_\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000<\u0000o\u0000p\u0000e\u0000n\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000m\u0000p\u0000U\u0000R\u0000L\u0000:\u0000 \r\u0006\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000f\u000b\u000f\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000T\u0000U\u0002\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000h\u0000h\u000e\r\f\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0002\u0000h\u0000m\u000b\u0006\n\n\u000b\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0006\u0000\u0001o\u0000\u0000\u0000h\u0000i\t\u000b\t\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\n\u0000\u0000\u0002\u0006\u0000\u0002\u0006\b\r\u0006\u0000\u0003l\u0000\u0002\u0000n\u0000n\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0002\b\u0000\u0000\r\u0006h\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0006\u000f\u0006\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0006f\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000q\u0000q\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001L\u0000\u0000\u0000q\u0000s\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000q\u0000r\u0001\n\u0001\u0000\b\u000bboovtrue\u0002\u0006\u0000\u0002\u0006\u0000\r\u0006\u0000\u0003l\u0000\u0002\u0000t\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0006R\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u0006\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0006\u0000\u0003\u0006\n\u0000\u0004\nerrn\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0006S\u0000\u0001k\u0000\u0000\u0000}\u0000\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u0000}\u0000}\u0006\u0006\u0001\u0000\u0000\f\u0006\u0000A\u0000; ANY error should return FALSE, as in \"could not be opened\"\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000v\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000F\u0000A\u0000L\u0000S\u0000E\u0000,\u0000 \u0000a\u0000s\u0000 \u0000i\u0000n\u0000 \u0000\"\u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000o\u0000p\u0000e\u0000n\u0000e\u0000d\u0000\"\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000}\u0000}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u0000}\u0000\u0006\u0006\u0006\r\u0006\u0000\u0001L\u0000\u0000\u0000}\u0000\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\f\u0006\u0000\u000b\u0000\u0005false\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006P\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006B\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002i\u0000\u0000\u00003\u00006\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0006\u0002\u0006\u0000\u0002\u0006\u0007\u0000\r\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0007\u0002\u0001\u0000\u0000\f\u0007\u0001\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0002\u0000\u0001\u0007\u0003\u0011\u0007\u0003\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0000\u0002\u0007\u0004\u0007\u0005\r\u0007\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0005\u0000\u0002\u0007\u0006\u0007\u0007\r\u0007\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f\u0007\b\u0007\t\r\u0007\b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\n\u0007\n\u0007\u000b\r\u0007\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0007\f\u0007\r\r\u0007\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u000e\u0007\u000e\u0000\u0001\u0007\u000f\u0011\u0007\u000f\u0000\u0004\u0000<\u0000:\r\u0007\r\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0007\u0007\u0010\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0010\u0000\u0002\u0007\u0011\r\u0007\u0011\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u000b\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0007\u0012\u000e\u0007\u0012\u0000\u0001\u0007\u0013\u0011\u0007\u0013\u0000\u0004\u0000:\u0000=\r\u0007\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u0002\u0007\u0007\u0000\u0002\u0007\u0014\u0007\u0015\r\u0007\u0014\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u0007\u0016\u0007\u0017\r\u0007\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0007\u0018\u000e\u0007\u0018\u0000\u0001\u0007\u0019\u0011\u0007\u0019\u0000\u0004\u0000:\u0000>\r\u0007\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\u0002\u0007\u0015\u0000\u0002\u0007\u001a\u0007\u001b\r\u0007\u001a\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u001b\u0000\u0002\u0007\u001c\u0007\u001d\r\u0007\u001c\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000N\u0007\u001e\u0007\u001f\u0007 \r\u0007\u001e\u0000\u0001H\u0000\u0000\u0000\u0011\u0000\u0015\u0007!\r\u0007!\u0000\u0002E\u0000\u0000\u0000\u0011\u0000\u0014\u0007\"\u0007#\r\u0007\"\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\r\u0007#\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\r\u0007\u001f\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0007$\r\u0007$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0007%\u000e\u0007%\u0000\u0001\u0007&\u0011\u0007&\u0000\u0000\u0002\u0000\u0000\r\u0007 \u0000\u0001k\u0000\u0000\u0000\u001d\u0000N\u0007'\u0002\u0007'\u0000\u0002\u0007(\u0007)\r\u0007(\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0007*\u0007+\r\u0007*\u0000\u0002n\u0000\u0003\u0000\u001d\u0000 \u0007,\u0007-\r\u0007,\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ntxdl\r\u0007-\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\u0004\nascr\r\u0007+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\u0007)\u0000\u0002\u0007.\u0007\/\r\u0007.\u0000\u0002r\u0000\u0000\u0000#\u0000(\u00070\u00071\r\u00070\u0000\u0003l\u0001\u0000\u0000#\u0000$\u00072\r\u00072\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u0001\u0000\u0000\u0001\u0000\u0000\r\u00071\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u00073\u00074\r\u00073\u0000\u00011\u0000\u0000\u0000%\u0000'\n\u0000\u0004\ntxdl\r\u00074\u0000\u00011\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nascr\u0002\u0007\/\u0000\u0002\u00075\u00076\r\u00075\u0000\u0002r\u0000\u0000\u0000)\u0000\/\u00077\u00078\r\u00077\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00079\u0007:\r\u00079\u0000\u00024\u0000\u0000\u0000*\u0000-\u0007;\n\u0000\u0004\ncitm\r\u0007;\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0002\r\u0007:\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\r\u00078\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0007<\r\u0007<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00076\u0000\u0002\u0007=\r\u0007=\u0000\u0004Z\u0000\u0000\u00000\u0000N\u0007>\u0007?\u0007@\r\u0007>\u0000\u0001H\u0000\u0000\u00000\u00004\u0007A\r\u0007A\u0000\u0002E\u0000\u0000\u00000\u00003\u0007B\u0007C\r\u0007B\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\r\u0007C\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\r\u0007?\u0000\u0001L\u0000\u0000\u00007\u00009\u0007D\r\u0007D\u0000\u0001m\u0000\u0000\u00007\u00008\u0007E\u000e\u0007E\u0000\u0001\u0007F\u0011\u0007F\u0000\u0000\u0002\u0000\u0000\r\u0007@\u0000\u0001k\u0000\u0000\u0000<\u0000N\u0007G\u0002\u0007G\u0000\u0002\u0007H\u0007I\r\u0007H\u0000\u0002r\u0000\u0000\u0000<\u0000A\u0007J\u0007K\r\u0007J\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\r\u0007K\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007L\u0007M\r\u0007L\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\ntxdl\r\u0007M\u0000\u00011\u0000\u0000\u0000=\u0000>\n\u0000\u0004\nascr\u0002\u0007I\u0000\u0002\u0007N\u0007O\r\u0007N\u0000\u0002r\u0000\u0000\u0000B\u0000H\u0007P\u0007Q\r\u0007P\u0000\u0002n\u0000\u0000\u0000B\u0000F\u0007R\u0007S\r\u0007R\u0000\u00024\u0000\u0000\u0000C\u0000F\u0007T\n\u0000\u0004\ncitm\r\u0007T\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\r\u0007S\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\r\u0007Q\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0007U\r\u0007U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007O\u0000\u0002\u0007V\r\u0007V\u0000\u0002r\u0000\u0000\u0000I\u0000N\u0007W\u0007X\r\u0007W\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\u0007X\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007Y\u0007Z\r\u0007Y\u0000\u00011\u0000\u0000\u0000K\u0000M\n\u0000\u0004\ntxdl\r\u0007Z\u0000\u00011\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0007\u001d\u0000\u0002\u0007[\u0007\\\r\u0007[\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\\\u0000\u0002\u0007]\u0007^\r\u0007]\u0000\u0001L\u0000\u0000\u0000O\u0000V\u0007_\r\u0007_\u0000\u0003I\u0000\u0000\u0000O\u0000U\u0007`\u000b\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0002\u0007`\u0000\u0002\u0007a\r\u0007a\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0007^\u0000\u0002\u0007b\u0007c\r\u0007b\u0000\u0003l\u0000\u0002\u0000W\u0000W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007c\u0000\u0002\u0007d\r\u0007d\u0000\u0003l\u0000\u0002\u0000W\u0000W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006\u0000\u0002\u0007e\u0007f\r\u0007e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007f\u0000\u0002\u0007g\u0007h\r\u0007g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007h\u0000\u0002\u0007i\u0007j\r\u0007i\u0000\u0002i\u0000\u0000\u00007\u0000:\u0007k\u0007l\r\u0007k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0007m\u000b\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u0002\u0007m\u0000\u0002\u0007n\u0007o\r\u0007n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0007o\u0000\u0002\u0007p\r\u0007p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007l\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0014\u0007q\u0002\u0007q\u0000\u0002\u0007r\u0007s\r\u0007r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0007t\u0007u\u0001\u0000\u0000\f\u0007t\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007u\u0000\u0001\u0007v\u0011\u0007v\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007s\u0000\u0002\u0007w\u0007x\r\u0007w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007x\u0000\u0002\u0007y\r\u0007y\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0014\u0007z\r\u0007z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0013\u0007{\u0007|\r\u0007{\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0011\u0007}\u0007~\r\u0007}\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\n\u0007\u0007\r\u0007\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000<\u0000:\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0007\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000:\u0000=\r\u0007~\u0000\u0003I\u0000\u0000\u0000\n\u0000\u0010\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000:\u0000>\u0002\u0000\u0000\u0002\u0007j\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002i\u0000\u0000\u0000;\u0000>\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u00003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0007\u0007\u0001}\u0000\u0000\f\u0007\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000=\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000:\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000<\u0002\u0007\u0000\u0002\u0007y\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000>\u0002y\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\t\u0000\twvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003X\u0000\u0000\u0000\t\u0000.\u0007t\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0019\u0000)\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000'\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0019\u0000%s\u0007r\u000bs\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0007\u0000\u0002\u0007q\r\u0007\u0000\u0001J\u0000\u0000\u0000\u001a\u0000!\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bp\u000bp\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001co\u000bo\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002\u0007\u0000\u0002\u0007n\r\u0007\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000\/\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001em\u000bm\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002n\u0000\u0000\u0002q\u0000\u0000\u0002r\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007k\r\u0007\u0000\u0003l\u0000\u0002\u0000(\u0000(jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u000bt\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\r\u0007\u0000\u0001o\u0000\u0000\u0000\f\u0000\rg\u000bg\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\/\u0000\/fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001L\u0000\u0000\u0000\/\u00001\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\/\u00000c\u000bc\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007b\r\u0007\u0000\u0003l\u0000\u0002\u00002\u00002a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002b\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000[ZY\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002i\u0000\u0000\u0000?\u0000B\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000X\u0007W\u000bX\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0002\u0007\u0000\u0002\u0007V\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002V\u0000\u0000\u0002W\u0000\u0000\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u00003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000T\u0007\u0007\u0001T\u0000\u0000\f\u0007\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000=\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000:\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000<\u0002\u0007\u0000\u0002\u0007P\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000>\u0002P\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\t\u0000\tNML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003X\u0000\u0000\u0000\t\u0000.\u0007K\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0019\u0000)\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000'\b\u0000\b\u0001\r\b\u0000\u0000\u0003I\u0000\u0000\u0000\u0019\u0000%J\b\u0002I\u000bJ\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\b\u0002\u0000\u0002\b\u0003H\r\b\u0003\u0000\u0001J\u0000\u0000\u0000\u001a\u0000!\b\u0004\u0002\b\u0004\u0000\u0002\b\u0005\b\u0006\r\b\u0005\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bG\u000bG\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\b\u0006\u0000\u0002\b\u0007\b\b\r\b\u0007\u0000\u0002b\u0000\u0000\u0000\u001b\u0000\u001e\b\t\b\n\r\b\t\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\b\u000b\u000e\b\u000b\u0000\u0001\b\f\u0011\b\f\u0000\u0002\u0000\/\r\b\n\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001dF\u000bF\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002\b\b\u0000\u0002\b\rE\r\b\r\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fD\u000bD\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002E\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\b\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\b\u000eB\r\b\u000e\u0000\u0003l\u0000\u0002\u0000(\u0000(A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002B\u0000\u0000\u000bK\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\r\u0007\u0000\u0001o\u0000\u0000\u0000\f\u0000\r>\u000b>\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\b\u000f\b\u0010\r\b\u000f\u0000\u0003l\u0000\u0002\u0000\/\u0000\/=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\b\u0010\u0000\u0002\b\u0011\b\u0012\r\b\u0011\u0000\u0001L\u0000\u0000\u0000\/\u00001\b\u0013\r\b\u0013\u0000\u0001o\u0000\u0000\u0000\/\u00000:\u000b:\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\b\u0012\u0000\u0002\b\u00149\r\b\u0014\u0000\u0003l\u0000\u0002\u00002\u00002876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u00029\u0000\u0000\u0002\u0007\u0000\u0002\b\u0015\b\u0016\r\b\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u0002\b\u0016\u0000\u0002\b\u0017\b\u0018\r\b\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u0002\b\u0018\u0000\u0002\b\u0019\b\u001a\r\b\u0019\u0000\u0002i\u0000\u0000\u0000C\u0000F\b\u001b\b\u001c\r\b\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\/\b\u001d.\u000b\/\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u0002\b\u001d\u0000\u0002\b\u001e-\r\b\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-\u0000\u0000\u0002.\u0000\u0000\r\b\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0004\b\u001f\u0002\b\u001f\u0000\u0002\b \b!\r\b \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000+\b\"\b#\u0001+\u0000\u0000\f\b\"\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\b#\u0000\u0001\b$\u0011\b$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\b!\u0000\u0002\b%\b&\r\b%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\b&\u0000\u0002\b'\b(\r\b'\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\b)\b*\r\b)\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\b+\u0006\b+\u0000\u0003'\b,\b-\u000b'\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b,\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002&\n&\u0000\u0004\nnull\u0006\b-\u0000\u0003%\b.$\u000b%\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\b.\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#\n#\u0000\u0004\nnull\u0006$\u0000\u0000\r\b*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\b(\u0000\u0002\b\/\b0\r\b\/\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\b1\b2\r\b1\u0000\u0002b\u0000\u0000\u0000\t\u0000\f\b3\b4\r\b3\u0000\u0001o\u0000\u0000\u0000\t\u0000\n!\u000b!\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b4\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b \u000b \u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\b2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\b0\u0000\u0002\b5\b6\r\b5\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\b6\u0000\u0002\b7\b8\r\b7\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014\b9\b:\r\b9\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\b;\b<\r\b;\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0012\u001b\u000b\u001b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b<\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u001a\u000b\u001a\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\b8\u0000\u0002\b=\b>\r\b=\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\b?\b@\r\b?\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\bA\bB\r\bA\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u0018\u000b\u0018\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\bB\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u0017\u000b\u0017\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\b>\u0000\u0002\bC\bD\r\bC\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0015\u0014\u0013\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\bD\u0000\u0002\bE\bF\r\bE\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0012\bG\bH\u0001\u0012\u0000\u0000\f\bG\u0000e\u0000_ default is just a relative path to data source name in same location as database being edited:\u0000\u0002\u0000\u0000\u000e\bH\u0000\u0001\bI\u0011\bI\u0000\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000a\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000n\u0000 \u0000s\u0000a\u0000m\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000e\u0000i\u0000n\u0000g\u0000 \u0000e\u0000d\u0000i\u0000t\u0000e\u0000d\u0000:\u0002\bF\u0000\u0002\bJ\bK\r\bJ\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000*\bL\bM\u0011\u0010\r\bL\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\bN\bO\r\bN\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000f\u000b\u000f\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\bO\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u000e\n\u000e\u0000\u0004\nnull\r\bM\u0000\u0002r\u0000\u0000\u0000!\u0000&\bP\bQ\r\bP\u0000\u0002b\u0000\u0000\u0000!\u0000$\bR\bS\r\bR\u0000\u0001m\u0000\u0000\u0000!\u0000\"\bT\u000e\bT\u0000\u0001\bU\u0011\bU\u0000\n\u0000f\u0000i\u0000l\u0000e\u0000:\r\bS\u0000\u0001o\u0000\u0000\u0000\"\u0000#\r\u000b\r\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\bQ\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\bK\u0000\u0002\bV\bW\r\bV\u0000\u0003l\u0000\u0002\u0000+\u0000+\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002\bW\u0000\u0002\bX\bY\r\bX\u0000\u0003l\u0000\u0002\u0000+\u0000+\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\bY\u0000\u0002\bZ\b[\r\bZ\u0000\u0003Q\u0000\u0000\u0000+\u0001\u0002\b\\\b]\b^\r\b\\\u0000\u0001k\u0000\u0000\u0000.\u0000\b_\u0002\b_\u0000\u0002\b`\ba\r\b`\u0000\u0003I\u0000\u0000\u0000.\u00005\u0005\bb\u0004\u000b\u0005\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\bb\u0000\u0002\bc\u0003\r\bc\u0000\u0001J\u0000\u0000\u0000\/\u00001\u0002\u0002\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0004\u0000\u0000\u0002\ba\u0000\u0002\bd\be\r\bd\u0000\u0002O\u0000\u0000\u00006\u0000\bf\bg\r\bf\u0000\u0002O\u0000\u0000\u0000:\u0000\bh\bi\r\bh\u0000\u0001k\u0000\u0000\u0000A\u0000\bj\u0002\bj\u0000\u0002\bk\bl\r\bk\u0000\u0002n\u0000\u0001\u0000A\u0000F\bm\bn\r\bm\u0000\u0003I\u0000\u0000\u0000B\u0000F\u0001\u0000\u000b\u0001\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0000\u0002\u0000\u0000\r\bn\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002\bl\u0000\u0002\bo\bp\r\bo\u0000\u0003l\u0000\u0002\u0000G\u0000G\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\bp\u0000\u0002\bq\br\r\bq\u0000\u0003l\u0000\u0001\u0000G\u0000G\bs\bt\u0001\u0000\u0000\f\bs\u00000\u0000* Make sure a specified Data Source exists.\u0000\u0002\u0000\u0000\u000e\bt\u0000\u0001\bu\u0011\bu\u0000T\u0000 \u0000M\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000a\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000.\u0002\br\u0000\u0002\bv\r\bv\u0000\u0004Z\u0000\u0000\u0000G\u0000\bw\bx\by\r\bw\u0000\u0001H\u0000\u0000\u0000G\u0000g\bz\r\bz\u0000\u0003l\u0000\u0005\u0000G\u0000f\b{\r\b{\u0000\u0003I\u0000\u0002\u0000G\u0000f\b|\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r\b|\u0000\u0003l\u0000\u0005\u0000G\u0000b\b}\r\b}\u0000\u00026\u0001\u0000\u0000G\u0000b\b~\b\r\b~\u0000\u0002n\u0000\u0000\u0000G\u0000T\b\b\r\b\u0000\u00024\u0000\u0001\u0000Q\u0000T\b\n\u0000\u0004\ncrow\r\b\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0003\u0000\u0001\r\b\u0000\u0003l\u0000\u0005\u0000G\u0000Q\b\r\b\u0000\u0002n\u0000\u0000\u0000G\u0000Q\b\b\r\b\u0000\u00024\u0000\u0000\u0000N\u0000Q\b\n\u0000\u0004\ntabB\r\b\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u0001\r\b\u0000\u0002n\u0000\u0000\u0000G\u0000N\b\b\r\b\u0000\u00024\u0000\u0000\u0000K\u0000N\b\n\u0000\u0004\nscra\r\b\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000G\u0000K\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\b\u0000\u0002=\u0000\u0003\u0000U\u0000a\b\b\r\b\u0000\u0002n\u0000\u0000\u0000V\u0000]\b\b\r\b\u0000\u00011\u0000\u0000\u0000Y\u0000]\n\u0000\u0004\npnam\r\b\u0000\u00024\u0000\u0000\u0000V\u0000Y\b\n\u0000\u0004\nsttx\r\b\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\b\u0000\u0001o\u0000\u0000\u0000^\u0000`\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\bx\u0000\u0001k\u0000\u0000\u0000j\u0000\b\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0001\u0000j\u0000j\b\b\u0001\u0000\u0000\f\b\u0000\u001a\u0000\u0014 need to create it: \u0000\u0002\u0000\u0000\u000e\b\u0000\u0001\b\u0011\b\u0000(\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000:\u0000 \u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000j\u0000j\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002n\u0000\u0001\u0000j\u0000\b\b\r\b\u0000\u0003I\u0000\u0000\u0000k\u0000\b\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\b\u0000\u0002\b\r\b\u0000\u00026\u0001\u0000\u0000k\u0000\b\b\r\b\u0000\u0002n\u0000\u0000\u0000k\u0000t\b\b\r\b\u0000\u00024\u0000\u0001\u0000o\u0000t\b\n\u0000\u0004\nbutT\r\b\u0000\u0001m\u0000\u0000\u0000r\u0000s\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000k\u0000o\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000m\u0000n\u0003\u0000\u0001\r\b\u0000\u0002C\u0000\u0000\u0000u\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000v\u0000z\n\u0000\u0004\npnam\r\b\u0000\u0001m\u0000\u0000\u0000{\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0006\u0000N\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\b\u0000\u0000f\u0000\u0000\u0000j\u0000k\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003I\u0000\u0002\u0000\u0000\b\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\b\b\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ntxtf\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ntxta\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\nscra\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002n\u0000\u0001\u0000\u0000\b\b\r\b\u0000\u0003I\u0000\u0000\u0000\u0000\b\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\b\u0000\u0002\b\r\b\u0000\u00026\u0001\u0000\u0000\u0000\b\b\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0001\u0000\u0000\b\n\u0000\u0004\nbutT\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u0002C\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\b\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003I\u0000\u0002\u0000\u0000\b\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\b\b\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\r\b\u0000\u0001L\u0000\u0000\u0000\u0000\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000A\u0000d\u0000d\u0000e\u0000d\u0000:\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\u0000\u0000\u0002\u0000\u0000\r\by\u0000\u0003l\u0000\u0003\u0000\u0000\b\b\b\r\b\u0000\u0001L\u0000\u0000\u0000\u0000\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0012\u0000E\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\f\b\u0000\u0017\u0000\u0011 already existed:\u0000\u0002\u0000\u0000\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0002\u0000\u0000\r\bi\u0000\u00024\u0000\u0000\u0000:\u0000>\b\n\u0000\u0004\npcap\r\b\u0000\u0001m\u0000\u0000\u0000<\u0000=\b\u000e\b\u0000\u0001\b\u0011\b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\bg\u0000\u0001m\u0000\u0000\u00006\u00007\b\u000f\b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\be\u0000\u0002\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\b]\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\b\b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\b\u0000\u0003\b\n\u0000\u0004\nerrn\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\b^\u0000\u0003R\u0000\u0000\u0000\u0001\u0002\b\b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\b\u0000\u0002b\u0000\u0000\u0000\u0001\u0001\b\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000T\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000n\u0000c\u0000e\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000'\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\b\u0000'\u0000 \u0000-\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\b\u0000\u0003\b\n\u0000\u0004\nerrn\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\b[\u0000\u0002\b\r\b\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\b\u001a\u0000\u0002\t\u0000\t\u0001\r\t\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0001\u0000\u0002\t\u0002\t\u0003\r\t\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0003\u0000\u0002\t\u0004\t\u0005\r\t\u0004\u0000\u0002i\u0000\u0000\u0000G\u0000J\t\u0006\t\u0007\r\t\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\t\b\u000b\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u0002\t\b\u0000\u0002\t\t\r\t\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\t\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u0001%\t\n\u0002\t\n\u0000\u0002\t\u000b\t\f\r\t\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\t\r\t\u000e\u0001\u0000\u0000\f\t\r\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\t\u000e\u0000\u0001\t\u000f\u0011\t\u000f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\t\f\u0000\u0002\t\u0010\t\u0011\r\t\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0011\u0000\u0002\t\u0012\t\u0013\r\t\u0012\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\t\u0014\t\u0015\r\t\u0014\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\t\u0016\u0006\t\u0016\u0000\u0003\t\u0017\t\u0018\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006\t\u0018\u0000\u0003\t\u0019\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t\u0019\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006\u0000\u0000\r\t\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\t\u0013\u0000\u0002\t\u001a\t\u001b\r\t\u001a\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\t\u001c\t\u001d\r\t\u001c\u0000\u0002b\u0000\u0000\u0000\t\u0000\f\t\u001e\t\u001f\r\t\u001e\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t\u001f\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\t\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\t\u001b\u0000\u0002\t \t!\r\t \u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t!\u0000\u0002\t\"\t#\r\t\"\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014\t$\t%\r\t$\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\t&\t'\r\t&\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0012\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t'\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\t#\u0000\u0002\t(\t)\r\t(\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\t*\t+\r\t*\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\t,\t-\r\t,\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t-\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\t)\u0000\u0002\t.\t\/\r\t.\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\/\u0000\u0002\t0\t1\r\t0\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b~\t2\t3\u0001~\u0000\u0000\f\t2\u0000f\u0000` default is just a relative path to data source name in same location as database being edited:\t\u0000\u0002\u0000\u0000\u000e\t3\u0000\u0001\t4\u0011\t4\u0000\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000a\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000n\u0000 \u0000s\u0000a\u0000m\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000e\u0000i\u0000n\u0000g\u0000 \u0000e\u0000d\u0000i\u0000t\u0000e\u0000d\u0000:\u0000\t\u0002\t1\u0000\u0002\t5\t6\r\t5\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000*\t7\t8}|\r\t7\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\t9\t:\r\t9\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c{\u000b{\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t:\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001dz\nz\u0000\u0004\nnull\r\t8\u0000\u0002r\u0000\u0000\u0000!\u0000&\t;\t<\r\t;\u0000\u0002b\u0000\u0000\u0000!\u0000$\t=\t>\r\t=\u0000\u0001m\u0000\u0000\u0000!\u0000\"\t?\u000e\t?\u0000\u0001\t@\u0011\t@\u0000\n\u0000f\u0000i\u0000l\u0000e\u0000:\r\t>\u0000\u0001o\u0000\u0000\u0000\"\u0000#y\u000by\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\t6\u0000\u0002\tA\tB\r\tA\u0000\u0003l\u0000\u0002\u0000+\u0000+wvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\tB\u0000\u0002\tC\tD\r\tC\u0000\u0003l\u0000\u0002\u0000+\u0000+tsr\u0001t\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\tD\u0000\u0002\tE\tF\r\tE\u0000\u0003Q\u0000\u0000\u0000+\u0001#\tG\tH\tI\r\tG\u0000\u0001k\u0000\u0000\u0000.\u0001\t\tJ\u0002\tJ\u0000\u0002\tK\tL\r\tK\u0000\u0003I\u0000\u0000\u0000.\u00005q\tMp\u000bq\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\tM\u0000\u0002\tNo\r\tN\u0000\u0001J\u0000\u0000\u0000\/\u00001n\u0002n\u0000\u0000\u0002o\u0000\u0000\u0002p\u0000\u0000\u0002\tL\u0000\u0002\tO\tP\r\tO\u0000\u0002O\u0000\u0000\u00006\u0001\u0007\tQ\tR\r\tQ\u0000\u0002O\u0000\u0000\u0000:\u0001\u0006\tS\tT\r\tS\u0000\u0001k\u0000\u0000\u0000A\u0001\u0005\tU\u0002\tU\u0000\u0002\tV\tW\r\tV\u0000\u0002n\u0000\u0001\u0000A\u0000F\tX\tY\r\tX\u0000\u0003I\u0000\u0000\u0000B\u0000Fmlk\u000bm\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002l\u0000\u0000\u0002k\u0000\u0000\r\tY\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002\tW\u0000\u0002\tZj\r\tZ\u0000\u0004Z\u0000\u0000\u0000G\u0001\u0005\t[\t\\i\t]\r\t[\u0000\u0003l\u0000\u0005\u0000G\u0000f\t^hg\r\t^\u0000\u0003I\u0000\u0002\u0000G\u0000ff\t_e\nf\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r\t_\u0000\u0003l\u0000\u0005\u0000G\u0000b\t`dc\r\t`\u0000\u00026\u0001\u0000\u0000G\u0000b\ta\tb\r\ta\u0000\u0002n\u0000\u0000\u0000G\u0000T\tc\td\r\tc\u0000\u00024\u0000\u0001\u0000Q\u0000Tb\te\nb\u0000\u0004\ncrow\r\te\u0000\u0001m\u0000\u0000\u0000R\u0000Sa\u0003a\u0000\u0001\r\td\u0000\u0003l\u0000\u0005\u0000G\u0000Q\tf`_\r\tf\u0000\u0002n\u0000\u0000\u0000G\u0000Q\tg\th\r\tg\u0000\u00024\u0000\u0000\u0000N\u0000Q^\ti\n^\u0000\u0004\ntabB\r\ti\u0000\u0001m\u0000\u0000\u0000O\u0000P]\u0003]\u0000\u0001\r\th\u0000\u0002n\u0000\u0000\u0000G\u0000N\tj\tk\r\tj\u0000\u00024\u0000\u0000\u0000K\u0000N\\\tl\n\\\u0000\u0004\nscra\r\tl\u0000\u0001m\u0000\u0000\u0000L\u0000M[\u0003[\u0000\u0001\r\tk\u0000\u00024\u0000\u0000\u0000G\u0000KZ\tm\nZ\u0000\u0004\ncwin\r\tm\u0000\u0001m\u0000\u0000\u0000I\u0000JY\u0003Y\u0000\u0001\u0001`\u0000\u0000\u0001_\u0000\u0000\r\tb\u0000\u0002=\u0000\u0003\u0000U\u0000a\tn\to\r\tn\u0000\u0002n\u0000\u0000\u0000V\u0000]\tp\tq\r\tp\u0000\u00011\u0000\u0000\u0000Y\u0000]X\nX\u0000\u0004\npnam\r\tq\u0000\u00024\u0000\u0000\u0000V\u0000YW\tr\nW\u0000\u0004\nsttx\r\tr\u0000\u0001m\u0000\u0000\u0000W\u0000XV\u0003V\u0000\u0001\r\to\u0000\u0001o\u0000\u0000\u0000^\u0000`U\u000bU\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\r\t\\\u0000\u0001k\u0000\u0000\u0000i\u0000\ts\u0002\ts\u0000\u0002\tt\tu\r\tt\u0000\u0003l\u0000\u0001\u0000i\u0000iT\tv\tw\u0001T\u0000\u0000\f\tv\u0000$\u0000\u001e it DOES exist, so modify it: \u0000\u0002\u0000\u0000\u000e\tw\u0000\u0001\tx\u0011\tx\u0000<\u0000 \u0000i\u0000t\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000 \u0000i\u0000t\u0000:\u0000 \u0002\tu\u0000\u0002\ty\tz\r\ty\u0000\u0003l\u0000\u0002\u0000i\u0000iSRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\tz\u0000\u0002\t{\t|\r\t{\u0000\u0003I\u0000\u0002\u0000i\u0000P\t}O\nP\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r\t}\u0000\u0003l\u0000\u0005\u0000i\u0000\t~NM\r\t~\u0000\u00026\u0001\u0000\u0000i\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000v\t\t\r\t\u0000\u00024\u0000\u0001\u0000s\u0000vL\t\nL\u0000\u0004\ncrow\r\t\u0000\u0001m\u0000\u0000\u0000t\u0000uK\u0003K\u0000\u0001\r\t\u0000\u0003l\u0000\u0005\u0000i\u0000s\tJI\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000s\t\t\r\t\u0000\u00024\u0000\u0000\u0000p\u0000sH\t\nH\u0000\u0004\ntabB\r\t\u0000\u0001m\u0000\u0000\u0000q\u0000rG\u0003G\u0000\u0001\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000p\t\t\r\t\u0000\u00024\u0000\u0000\u0000m\u0000pF\t\nF\u0000\u0004\nscra\r\t\u0000\u0001m\u0000\u0000\u0000n\u0000oE\u0003E\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000i\u0000mD\t\nD\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000k\u0000lC\u0003C\u0000\u0001\u0001J\u0000\u0000\u0001I\u0000\u0000\r\t\u0000\u0002=\u0000\u0003\u0000w\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000x\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000{\u0000B\nB\u0000\u0004\npnam\r\t\u0000\u00024\u0000\u0000\u0000x\u0000{A\t\nA\u0000\u0004\nsttx\r\t\u0000\u0001m\u0000\u0000\u0000y\u0000z@\u0003@\u0000\u0001\r\t\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002O\u0000\u0000\u0002\t|\u0000\u0002\t\t\r\t\u0000\u0002n\u0000\u0001\u0000\u0000\t\t\r\t\u0000\u0003I\u0000\u0000\u0000\u0000>\t=\u000b>\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\t\u0000\u0002\t<\r\t\u0000\u00026\u0001\u0000\u0000\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0001\u0000\u0000;\t\n;\u0000\u0004\nbutT\r\t\u0000\u0001m\u0000\u0000\u0000\u0000:\u0003:\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u00009\t\n9\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u00008\u00038\u0000\u0001\r\t\u0000\u0002C\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u00007\n7\u0000\u0004\npnam\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\b\u0000E\u0000d\u0000i\u0000t\u0002<\u0000\u0000\u0002=\u0000\u0000\r\t\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003I\u0000\u0002\u0000\u00006\t5\n6\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\b\t\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u00025\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002r\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u00000\n0\u0000\u0004\nvalL\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000\/\t\n\/\u0000\u0004\ntxtf\r\t\u0000\u0001m\u0000\u0000\u0000\u0000.\u0003.\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000-\t\n-\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000,\u0003,\u0000\u0001\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002r\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001o\u0000\u0000\u0000\u0000+\u000b+\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u0000*\n*\u0000\u0004\nvalL\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000)\t\n)\u0000\u0004\ntxta\r\t\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u0000\u0001\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000'\t\n'\u0000\u0004\nscra\r\t\u0000\u0001m\u0000\u0000\u0000\u0000&\u0003&\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000%\t\n%\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000$\u0003$\u0000\u0001\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002n\u0000\u0001\u0000\u0000\t\t\r\t\u0000\u0003I\u0000\u0000\u0000\u0000#\t\"\u000b#\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\t\u0000\u0002\t!\r\t\u0000\u00026\u0001\u0000\u0000\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0001\u0000\u0000 \t\n \u0000\u0004\nbutT\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000\u001e\t\n\u001e\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u0003\u001d\u0000\u0001\r\t\u0000\u0002C\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u0000\u001c\n\u001c\u0000\u0004\npnam\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0004\u0000O\u0000K\u0002!\u0000\u0000\u0002\"\u0000\u0000\r\t\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003I\u0000\u0002\u0000\u0000\u001b\t\u001a\n\u001b\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\b\t\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u001a\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\t\u0000\u0002\t\u0016\r\t\u0000\u0001L\u0000\u0000\u0000\u0000\t\r\t\u0000\u0002b\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0012\u0000E\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0000 \r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\u0016\u0000\u0000\u0002i\u0000\u0000\r\t]\u0000\u0003l\u0000\u0003\u0000\u0001\u0005\t\t\t\r\t\u0000\u0001k\u0000\u0000\u0000\u0001\u0005\t\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001L\u0000\u0000\u0000\u0001\u0003\t\r\t\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001c\u0000D\u0000o\u0000 \u0000N\u0000O\u0000T\u0000 \u0000E\u0000x\u0000i\u0000s\u0000t\u0000:\u0000 \r\t\u0000\u0001o\u0000\u0000\u0001\u0000\u0001\u0001\u0014\u000b\u0014\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\t\u0000\u0002\t\u0013\r\t\u0000\u0003l\u0000\u0002\u0001\u0004\u0001\u0004\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u0013\u0000\u0000\f\t\u0000\u0017\u0000\u0011 DOES NOT exist:\u0000\u0002\u0000\u0000\u000e\t\u0000\u0001\t\u0011\t\u0000\"\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000:\u0002j\u0000\u0000\r\tT\u0000\u00024\u0000\u0000\u0000:\u0000>\u000f\t\n\u000f\u0000\u0004\npcap\r\t\u0000\u0001m\u0000\u0000\u0000<\u0000=\t\u000e\t\u0000\u0001\t\u0011\t\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\tR\u0000\u0001m\u0000\u0000\u00006\u00007\t\u000f\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\tP\u0000\u0002\t\u000e\r\t\u0000\u0003l\u0000\u0002\u0001\b\u0001\b\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u000e\u0000\u0000\r\tH\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\t\t\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\t\u0000\u0003\b\t\u0007\n\b\u0000\u0004\nerrn\r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0007\u0000\u0000\r\tI\u0000\u0003R\u0000\u0000\u0001\u0011\u0001#\u0005\t\t\n\u0005\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001\"\t\t\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001 \t\t\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001\u001c\t\t\r\t\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\t\u000e\t\u0000\u0001\t\u0011\t\u0000T\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000n\u0000c\u0000e\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000'\r\t\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b\u0004\u000b\u0004\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f\t\u000e\t\u0000\u0001\t\u0011\t\u0000\b\u0000'\u0000 \u0000-\u0000 \r\t\u0000\u0001o\u0000\u0000\u0001 \u0001!\u0003\u000b\u0003\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\t\u0000\u0003\u0002\t\u0001\n\u0002\u0000\u0004\nerrn\r\t\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016\u0000\u000b\u0000\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0001\u0000\u0000\u0002\tF\u0000\u0002\t\r\t\u0000\u0003l\u0000\u0002\u0001$\u0001$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\t\u0005\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0000\u0002\t\n\u0000\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0000\u0002\n\u0001\n\u0002\r\n\u0001\u0000\u0002i\u0000\u0000\u0000K\u0000N\n\u0003\n\u0004\r\n\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\n\u0005\u000b\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\n\u0005\u0000\u0002\n\u0006\r\n\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0004\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\n\u0007\u0002\n\u0007\u0000\u0002\n\b\n\t\r\n\b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\n\n\n\u000b\u0001\u0000\u0000\f\n\n\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\n\u000b\u0000\u0001\n\f\u0011\n\f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\n\t\u0000\u0002\n\r\n\u000e\r\n\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u000e\u0000\u0002\n\u000f\n\u0010\r\n\u000f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000]\n\u0011\n\u0012\n\u0013\r\n\u0011\u0000\u0002O\u0000\u0000\u0000\u0003\u0000I\n\u0014\n\u0015\r\n\u0014\u0000\u0002O\u0000\u0000\u0000\u0007\u0000H\n\u0016\n\u0017\r\n\u0016\u0000\u0001k\u0000\u0000\u0000\u000e\u0000G\n\u0018\u0002\n\u0018\u0000\u0002\n\u0019\n\u001a\r\n\u0019\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\n\u001b\n\u001c\r\n\u001b\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u001c\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\n\u001a\u0000\u0002\n\u001d\n\u001e\r\n\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u001e\u0000\u0002\n\u001f\n \r\n\u001f\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\n!\n\"\u0001\u0000\u0000\f\n!\u0000!\u0000\u001b try to open Manage window:\u0000\u0002\u0000\u0000\u000e\n\"\u0000\u0001\n#\u0011\n#\u00006\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\n \u0000\u0002\n$\r\n$\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000G\n%\n&\n'\r\n%\u0000\u0002C\u0000\u0000\u0000\u0014\u0000\u001c\n(\n)\r\n(\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\n*\n+\r\n*\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r\n+\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\n,\n\u0000\u0004\ncwin\r\n,\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r\n)\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n-\u000e\n-\u0000\u0001\n.\u0011\n.\u00008\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\r\n&\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!\n\/\r\n\/\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\n'\u0000\u0001k\u0000\u0000\u0000$\u0000G\n0\u0002\n0\u0000\u0002\n1\n2\r\n1\u0000\u0003I\u0000\u0002\u0000$\u0000D\n3\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\n3\u0000\u0003l\u0000\u0005\u0000$\u0000@\n4\r\n4\u0000\u00026\u0001\u0000\u0000$\u0000@\n5\n6\r\n5\u0000\u0002n\u0000\u0000\u0000$\u00007\n7\n8\r\n7\u0000\u00024\u0000\u0001\u00004\u00007\n9\n\u0000\u0004\nmenI\r\n9\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0001\r\n8\u0000\u0002n\u0000\u0000\u0000$\u00004\n:\n;\r\n:\u0000\u00024\u0000\u0000\u00001\u00004\n<\n\u0000\u0004\nmenE\r\n<\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r\n;\u0000\u0002n\u0000\u0000\u0000$\u00001\n=\n>\r\n=\u0000\u00024\u0000\u0000\u0000.\u00001\n?\n\u0000\u0004\nmenI\r\n?\u0000\u0001m\u0000\u0000\u0000\/\u00000\n@\u000e\n@\u0000\u0001\nA\u0011\nA\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r\n>\u0000\u0002n\u0000\u0000\u0000$\u0000.\nB\nC\r\nB\u0000\u00024\u0000\u0000\u0000+\u0000.\nD\n\u0000\u0004\nmenE\r\nD\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\r\nC\u0000\u0002n\u0000\u0000\u0000$\u0000+\nE\nF\r\nE\u0000\u00024\u0000\u0000\u0000(\u0000+\nG\n\u0000\u0004\nmbri\r\nG\u0000\u0001m\u0000\u0000\u0000)\u0000*\nH\u000e\nH\u0000\u0001\nI\u0011\nI\u0000\b\u0000F\u0000i\u0000l\u0000e\r\nF\u0000\u00024\u0000\u0000\u0000$\u0000(\nJ\n\u0000\u0004\nmbar\r\nJ\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\r\n6\u0000\u0002C\u0000\u0000\u00008\u0000?\nK\nL\r\nK\u0000\u00011\u0000\u0000\u00009\u0000;\n\u0000\u0004\npnam\r\nL\u0000\u0001m\u0000\u0000\u0000<\u0000>\nM\u000e\nM\u0000\u0001\nN\u0011\nN\u0000(\u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\n2\u0000\u0002\nO\r\nO\u0000\u0001L\u0000\u0000\u0000E\u0000G\nP\r\nP\u0000\u0001m\u0000\u0000\u0000E\u0000F\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0017\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b\nQ\n\u0000\u0004\npcap\r\nQ\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\nR\u000e\nR\u0000\u0001\nS\u0011\nS\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\n\u0015\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\nT\u000f\nT\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\n\u0012\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\nU\nV\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\nU\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\nV\u0000\u0003\nW\n\u0000\u0004\nerrn\r\nW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\n\u0013\u0000\u0003R\u0000\u0000\u0000Q\u0000]\nX\nY\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\nX\u0000\u0002b\u0000\u0000\u0000W\u0000\\\nZ\n[\r\nZ\u0000\u0001m\u0000\u0000\u0000W\u0000Z\n\\\u000e\n\\\u0000\u0001\n]\u0011\n]\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\n[\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\nY\u0000\u0003\n^\n\u0000\u0004\nerrn\r\n^\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\n\u0010\u0000\u0002\n_\r\n_\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\n\u0002\u0000\u0002\n`\na\r\n`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\na\u0000\u0002\nb\nc\r\nb\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nc\u0000\u0002\nd\ne\r\nd\u0000\u0002i\u0000\u0000\u0000O\u0000R\nf\ng\r\nf\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\nh\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u0002\nh\u0000\u0002\ni\r\ni\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\ng\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\nj\u0002\nj\u0000\u0002\nk\nl\r\nk\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\nm\nn\u0001\u0000\u0000\f\nm\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\nn\u0000\u0001\no\u0011\no\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\nl\u0000\u0002\np\nq\r\np\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nq\u0000\u0002\nr\ns\r\nr\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\nt\nu\r\nt\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\nv\u0006\nv\u0000\u0003\nw\u000b\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\r\nw\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\r\nu\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\ns\u0000\u0002\nx\ny\r\nx\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\ny\u0000\u0002\nz\n{\r\nz\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\n|\n}\r\n|\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\n~\n\r\n~\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\n}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\n{\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u000e\n\u0000\u0001\n\u0011\n\u00008\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0014\n\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0014\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0005\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\f\n\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0015\u0000\u001a\n\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\n\n\r\n\u0000\u0002]\u0000\u0000\u0000\u0015\u0000\u0018\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0005\r\n\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nmin \r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\f\n\u0000\r\u0000\u0007seconds\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u001b\u0000&\n\n\r\n\u0000\u0003I\u0000\u0002\u0000\u001b\u0000$\n\n\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\n\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\u001e\n\r\n\u0000\u0002^\u0000\u0000\u0000\u001b\u0000\u001e\n\n\r\n\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\n\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001\u0000\u0000\u0001\u0000\u0000\u0006\n\u0000\u0003\n\n\u0000\u0004\ndire\r\n\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bolierndD\u0006\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003Q\u0000\u0000\u0000'\u0000\n\n\n\r\n\u0000\u0002O\u0000\u0000\u0000*\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u0000.\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002O\u0000\u0000\u0000.\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u00005\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002n\u0000\u0001\u00005\u0000:\n\n\r\n\u0000\u0003I\u0000\u0000\u00006\u0000:\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0000f\u0000\u0000\u00005\u00006\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0004Z\u0000\u0000\u0000;\u0000\n\n\n\r\n\u0000\u0002C\u0000\u0000\u0000;\u0000C\n\n\r\n\u0000\u0002n\u0000\u0000\u0000;\u0000A\n\n\r\n\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npnam\r\n\u0000\u00024\u0000\u0000\u0000;\u0000?\n\n\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\r\n\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\r\n\u0000\u0003Q\u0000\u0000\u0000F\u0000y\n\n\n\r\n\u0000\u0001k\u0000\u0000\u0000I\u0000e\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000I\u0000Q\n\n\r\n\u0000\u0002n\u0000\u0000\u0000I\u0000O\n\n\r\n\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npnam\r\n\u0000\u00024\u0000\u0000\u0000I\u0000M\n\n\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0000\u0001\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003I\u0000\u0002\u0000R\u0000]~\n}\n~\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\n\u0000\u0003l\u0000\u0005\u0000R\u0000Y\n|{\r\n\u0000\u0002n\u0000\u0000\u0000R\u0000Y\n\n\r\n\u0000\u00024\u0000\u0000\u0000V\u0000Yz\n\nz\u0000\u0004\nbutT\r\n\u0000\u0001m\u0000\u0000\u0000W\u0000X\n\u000e\n\u0000\u0001\n\u0011\n\u0000\u0004\u0000O\u0000K\r\n\u0000\u00024\u0000\u0000\u0000R\u0000Vy\n\ny\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000T\u0000Ux\u0003x\u0000\u0001\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002}\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000^\u0000c\n\n\n\r\n\u0000\u0003I\u0000\u0002\u0000^\u0000cw\nv\nw\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\n\u0000\u0001m\u0000\u0000\u0000^\u0000_u\u0003u\u0000\u0001\u0002v\u0000\u0000\f\n\u0000\u001a\u0000\u0014 let click register.\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000(\u0000 \u0000l\u0000e\u0000t\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000.\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000d\u0000dt\n\n\u0001t\u0000\u0000\f\n\u00006\u00000 will continue below to wait for window to close\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000`\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0002\n\u0000\u0002\ns\r\n\u0000\u0003l\u0000\u0002\u0000d\u0000drqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002s\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000o\n\n\no\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\n\u0000\u0003m\nl\nm\u0000\u0004\nerrn\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006l\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000m\u0000yj\n\n\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0002b\u0000\u0000\u0000s\u0000x\n\n\r\n\u0000\u0001m\u0000\u0000\u0000s\u0000v\n\u000e\n\u0000\u0001\n\u0011\n\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\n\u0000\u0001o\u0000\u0000\u0000v\u0000wi\u000bi\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\n\u0000\u0003h\ng\nh\u0000\u0004\nerrn\r\n\u0000\u0001o\u0000\u0000\u0000q\u0000rf\u000bf\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006g\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0004Z\u0000\u0000\u0000|\u0000\n\ne\n\r\n\u0000\u0002n\u0000\u0000\u0000|\u0000\n\n\r\n\u0000\u0001o\u0000\u0000\u0000}\u0000d\u000bd\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\r\n\u0000\u0001o\u0000\u0000\u0000|\u0000}c\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000b\n\n\nb\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0001m\u0000\u0000\u0000\u0000\n\u000e\n\u0000\u0001\n\u0011\n\u0000v\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000w\u0000a\u0000s\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000.\u0006\n\u0000\u0003a\n`\na\u0000\u0004\nerrn\r\n\u0000\u0001m\u0000\u0000\u0000\u0000_\u0003_\u0004\u0000\u0006`\u0000\u0000\u0002e\u0000\u0000\r\n\u0000\u0001k\u0000\u0000\u0000\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0000^\u000b\u0000\u000b\u0001\u0001^\u0000\u0000\f\u000b\u0000\u00001\u0000+ Not in Manage Data Source, but that is OK.\u0000\u0002\u0000\u0000\u000e\u000b\u0001\u0000\u0001\u000b\u0002\u0011\u000b\u0002\u0000V\u0000 \u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000O\u0000K\u0000.\u0002\n\u0000\u0002\u000b\u0003]\r\u000b\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u000b\u0004\r\u000b\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\\\n\\\u0000\b\u000bboovtrue\u0002]\u0000\u0000\u0002\n\u0000\u0002\u000b\u0005[\r\u000b\u0005\u0000\u0003l\u0000\u0002\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002[\u0000\u0000\r\n\u0000\u00024\u0000\u0000\u0000.\u00002W\u000b\u0006\nW\u0000\u0004\npcap\r\u000b\u0006\u0000\u0001m\u0000\u0000\u00000\u00001\u000b\u0007\u000e\u000b\u0007\u0000\u0001\u000b\b\u0011\u000b\b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0002\n\u0000\u0002\u000b\t\u000b\n\r\u000b\t\u0000\u0003l\u0000\u0002\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u000b\n\u0000\u0002\u000b\u000b\u000b\f\r\u000b\u000b\u0000\u0003l\u0000\u0002\u0000\u0000SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u000b\f\u0000\u0002\u000b\r\u000b\u000e\r\u000b\r\u0000\u0002n\u0000\u0001\u0000\u0000\u000b\u000f\u000b\u0010\r\u000b\u000f\u0000\u0003I\u0000\u0000\u0000\u0000P\u000b\u0011O\u000bP\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000b\u0011\u0000\u0002\u000b\u0012N\r\u000b\u0012\u0000\u0001K\u0000\u0000\u0000\u0000\u000b\u0013\u0006\u000b\u0013\u0000\u0003M\u000b\u0014\u000b\u0015\u000bM\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000b\u0014\u0000\u0001o\u0000\u0000\u0000\u0000L\u000bL\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u0006\u000b\u0015\u0000\u0003K\u000b\u0016\u000b\u0017\u000bK\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000b\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u0018\u000e\u000b\u0018\u0000\u0001\u000b\u0019\u0011\u000b\u0019\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u000b\u0017\u0000\u0003J\u000b\u001a\u000b\u001b\u000bJ\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000b\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u001c\u000e\u000b\u001c\u0000\u0001\u000b\u001d\u0011\u000b\u001d\u0000\u0006\u0000a\u0000n\u0000y\u0006\u000b\u001b\u0000\u0003I\u000b\u001e\u000b\u001f\u000bI\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u000b\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0006\u000b\u001f\u0000\u0003G\u000b F\u000bG\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r\u000b \u0000\u0001o\u0000\u0000\u0000\u0000E\u000bE\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0006F\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u000b\u0010\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u000b\u000e\u0000\u0002\u000b!\u000b\"\r\u000b!\u0000\u0003l\u0000\u0002\u0000\u0000DCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u000b\"\u0000\u0002\u000b#\u000b$\r\u000b#\u0000\u0003l\u0000\u0002\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u000b$\u0000\u0002\u000b%\u000b&\r\u000b%\u0000\u0003l\u0000\u0001\u0000\u0000\u000b'\u000b(\u000b)\r\u000b'\u0000\u0003I\u0000\u0002\u0000\u0000>\u000b*=\n>\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u000b*\u0000\u0001m\u0000\u0000\u0000\u0000<\u0003<\u0000\u0001\u0002=\u0000\u0000\f\u000b(\u0000(\u0000\" let normal window come to front. \u0000\u0002\u0000\u0000\u000e\u000b)\u0000\u0001\u000b+\u0011\u000b+\u0000D\u0000 \u0000l\u0000e\u0000t\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0000 \u0002\u000b&\u0000\u0002\u000b,\u000b-\r\u000b,\u0000\u0003l\u0000\u0002\u0000\u0000;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u000b-\u0000\u0002\u000b.\u000b\/\r\u000b.\u0000\u0001L\u0000\u0000\u0000\u0000\u000b0\r\u000b0\u0000\u0001m\u0000\u0000\u0000\u00008\n8\u0000\b\u000bboovtrue\u0002\u000b\/\u0000\u0002\u000b1\u000b2\r\u000b1\u0000\u0003l\u0000\u0002\u0000\u0000765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u000b2\u0000\u0002\u000b34\r\u000b3\u0000\u0003l\u0000\u0002\u0000\u0000321\u00013\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u00024\u0000\u0000\r\n\u0000\u0001m\u0000\u0000\u0000*\u0000+\u000b4\u000f\u000b4\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000\u000b5\u000b6\n0\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000b5\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u000b6\u0000\u0003.\u000b7-\n.\u0000\u0004\nerrn\r\u000b7\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006-\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000+\u000b8\u000b9\n+\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000b8\u0000\u0002b\u0000\u0000\u0000\u0000\u000b:\u000b;\r\u000b:\u0000\u0001m\u0000\u0000\u0000\u0000\u000b<\u000e\u000b<\u0000\u0001\u000b=\u0011\u000b=\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\u000b;\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u000b9\u0000\u0003)\u000b>(\n)\u0000\u0004\nerrn\r\u000b>\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006(\u0000\u0000\u0002\n\u0000\u0002\u000b?&\r\u000b?\u0000\u0003l\u0000\u0002\u0000\u0000%$#\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002&\u0000\u0000\u0002\ne\u0000\u0002\u000b@\u000bA\r\u000b@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u000bA\u0000\u0002\u000bB\u000bC\r\u000bB\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u000bC\u0000\u0002\u000bD\u000bE\r\u000bD\u0000\u0002i\u0000\u0000\u0000S\u0000V\u000bF\u000bG\r\u000bF\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000bH\u001b\u000b\u001c\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u0002\u000bH\u0000\u0002\u000bI\u001a\r\u000bI\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u001b\u0000\u0000\r\u000bG\u0000\u0001k\u0000\u0000\u0000\u0000\u000f\u000bJ\u0002\u000bJ\u0000\u0002\u000bK\u000bL\r\u000bK\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0018\u000bM\u000bN\u0001\u0018\u0000\u0000\f\u000bM\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u000bN\u0000\u0001\u000bO\u0011\u000bO\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u000bL\u0000\u0002\u000bP\u000bQ\r\u000bP\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u000bQ\u0000\u0002\u000bR\u000bS\r\u000bR\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0014\u000bT\u000bU\u0001\u0014\u0000\u0000\f\u000bT\u0000\u0000 any BOOLEAN parameters can be either actually boolean, or 1\/0. This function will change that to match UI scripting interface needs.\u0000\u0002\u0000\u0000\u000e\u000bU\u0000\u0001\u000bV\u0011\u000bV\u0001\f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000B\u0000O\u0000O\u0000L\u0000E\u0000A\u0000N\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000c\u0000a\u0000n\u0000 \u0000b\u0000e\u0000 \u0000e\u0000i\u0000t\u0000h\u0000e\u0000r\u0000 \u0000a\u0000c\u0000t\u0000u\u0000a\u0000l\u0000l\u0000y\u0000 \u0000b\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u00001\u0000\/\u00000\u0000.\u0000 \u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000 \u0000U\u0000I\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000a\u0000c\u0000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000.\u0002\u000bS\u0000\u0002\u000bW\u000bX\r\u000bW\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u000bX\u0000\u0002\u000bY\u000bZ\r\u000bY\u0000\u0002r\u0000\u0000\u0000\u0000\u0000Z\u000b[\u000b\\\r\u000b[\u0000\u0001K\u0000\u0000\u0000\u0000\u0000X\u000b]\u0006\u000b]\u0000\u0003\u0010\u000b^\u000b_\u000b\u0010\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000b^\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u000b`\u000e\u000b`\u0000\u0001\u000ba\u0011\u000ba\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0006\u000b_\u0000\u0003\u000f\u000bb\u000bc\u000b\u000f\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u000bb\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u000e\n\u000e\u0000\u0004\nnull\u0006\u000bc\u0000\u0003\r\u000bd\u000be\u000b\r\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u000bd\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\f\n\f\u0000\u0004\nnull\u0006\u000be\u0000\u0003\u000b\u000bf\u000bg\u000b\u000b\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u000bf\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\n\n\u0000\u0004\nnull\u0006\u000bg\u0000\u0003\t\u000bh\u000bi\u000b\t\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\u000bh\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\b\n\b\u0000\u0004\nnull\u0006\u000bi\u0000\u0003\u0007\u000bj\u000bk\u000b\u0007\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u000bj\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0006\n\u0006\u0000\u0004\nnull\u0006\u000bk\u0000\u0003\u0005\u000bl\u000bm\u000b\u0005\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u000bl\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0004\n\u0004\u0000\u0004\nnull\u0006\u000bm\u0000\u0003\u0003\u000bn\u000bo\u000b\u0003\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\u000bn\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\n\u0002\u0000\u0004\nnull\u0006\u000bo\u0000\u0003\u0001\u000bp\u000bq\u000b\u0001\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u000bp\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\n\u0000\u0000\u0004\nnull\u0006\u000bq\u0000\u0003\u000br\u000bs\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u000br\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nnull\u0006\u000bs\u0000\u0003\u000bt\u000bu\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u000bt\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nnull\u0006\u000bu\u0000\u0003\u000bv\u000bw\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\u000bv\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\u0004\nnull\u0006\u000bw\u0000\u0003\u000bx\u000by\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000bx\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\u0006\u000by\u0000\u0003\u000bz\u000b{\u000b\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000bz\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nnull\u0006\u000b{\u0000\u0003\u000b|\u000b}\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000b|\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\u0004\nnull\u0006\u000b}\u0000\u0003\u000b~\u000b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000b~\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000b\u0000\u0001m\u0000\u0000\u0000'\u0000(\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000b\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u000b\u0000\u0001m\u0000\u0000\u0000\/\u00000\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u000b\u0000\u0001m\u0000\u0000\u00003\u00004\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u000b\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u000b\u0000\u0001m\u0000\u0000\u0000;\u0000<\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\r\u000b\u0000\u0001m\u0000\u0000\u0000?\u0000@\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u000b\u0000\u0001m\u0000\u0000\u0000C\u0000D\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u000b\u0000\u0001m\u0000\u0000\u0000G\u0000H\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u000b\u0000\u0001m\u0000\u0000\u0000K\u0000L\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u000b\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u000b\u0000\u0001m\u0000\u0000\u0000S\u0000T\n\u0000\u0004\nnull\u0006\u0000\u0000\r\u000b\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u000bZ\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 editMode: \"CONFORM\" means make field exactly match the entire specified data structure, while \"TWEAK\" means only to change which things were specified, leaving the other settings alone. \u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001v\u0000 \u0000e\u0000d\u0000i\u0000t\u0000M\u0000o\u0000d\u0000e\u0000:\u0000 \u0000\"\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0000\"\u0000 \u0000m\u0000e\u0000a\u0000n\u0000s\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000e\u0000x\u0000a\u0000c\u0000t\u0000l\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000t\u0000i\u0000r\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000,\u0000 \u0000w\u0000h\u0000i\u0000l\u0000e\u0000 \u0000\"\u0000T\u0000W\u0000E\u0000A\u0000K\u0000\"\u0000 \u0000m\u0000e\u0000a\u0000n\u0000s\u0000 \u0000o\u0000n\u0000l\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000t\u0000h\u0000i\u0000n\u0000g\u0000s\u0000 \u0000w\u0000e\u0000r\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000l\u0000e\u0000a\u0000v\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000 \u0000a\u0000l\u0000o\u0000n\u0000e\u0000.\u0000 \u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 autoEnterSpecialValue: keywords used in FM-XML: NONE, CreationAccountName, CreationUserName,CreationTimestamp, ModificationAccountName, et al.\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001\u001e\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000-\u0000X\u0000M\u0000L\u0000:\u0000 \u0000N\u0000O\u0000N\u0000E\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\u0000,\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000t\u0000 \u0000a\u0000l\u0000.\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000a\u0000[ autoSerial:false or autoSerial:{autoNextValue:null, autoIncrement:null, autoGenerate:null}\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000:\u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000o\u0000r\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000:\u0000{\u0000a\u0000u\u0000t\u0000o\u0000N\u0000e\u0000x\u0000t\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000n\u0000u\u0000l\u0000l\u0000,\u0000 \u0000a\u0000u\u0000t\u0000o\u0000I\u0000n\u0000c\u0000r\u0000e\u0000m\u0000e\u0000n\u0000t\u0000:\u0000n\u0000u\u0000l\u0000l\u0000,\u0000 \u0000a\u0000u\u0000t\u0000o\u0000G\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000:\u0000n\u0000u\u0000l\u0000l\u0000}\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000a\u0000[ autoEnterIsLookup - LOOKUP FUNCTIONS NOT YET SUPPORTED - WOULD NEED TO HANDLE SUB-ELEMENT.\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000I\u0000s\u0000L\u0000o\u0000o\u0000k\u0000u\u0000p\u0000 \u0000-\u0000 \u0000L\u0000O\u0000O\u0000K\u0000U\u0000P\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000-\u0000 \u0000W\u0000O\u0000U\u0000L\u0000D\u0000 \u0000N\u0000E\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000 \u0000S\u0000U\u0000B\u0000-\u0000E\u0000L\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000[\u0000`\u000b\u000b\r\u000b\u0000\u0002b\u0000\u0000\u0000[\u0000^\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000a\u0000a\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000a\u0000f\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000a\u0000d\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000b\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0001\u0000g\u0000z\u000b\u000b\r\u000b\u0000\u0002>\u0001\u0000\u0000g\u0000l\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000g\u0000j\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000h\u0000j\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u000b\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001m\u0000\u0000\u0000j\u0000k\n\u0000\u0004\nnull\r\u000b\u0000\u0002r\u0000\u0000\u0000o\u0000v\u000b\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0000o\u0000p\n\u0000\b\u000bboovtrue\r\u000b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000q\u0000u\u000b\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u000b\u0000\u0001o\u0000\u0000\u0000p\u0000q\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000{\u0000{\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0000\u0000{\u0000{\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \nDEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \t\n\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001D\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\t\u0000\n\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000{\u0000{\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003Q\u0000\u0000\u0000{\u000f\u000b\u000b\u000b\r\u000b\u0000\u0001k\u0000\u0000\u0000~\u000f\u000b\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000~\u0000~\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u001e\u0000\u0018 try to select it first:\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u00000\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000i\u0000t\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000:\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000~\u0000\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0000\u0000~\u0000\u000b\u000b\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u0002\u000b\u0000\u0002\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0001\u0000\u0000\u000b\u000b\r\u000b\u0000\u0001H\u0000\u0000\u0000\u0000\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\r\u000b\u0000\u0001L\u0000\u0000\u0000\u0000\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002O\u0000\u0000\u0000\u000f\u000b\u000b\r\u000b\u0000\u0002O\u0000\u0000\u0000\u000f\u000b\u000b\r\u000b\u0000\u0001k\u0000\u0000\u0000\u000f\u000b\u0002\u000b\u0000\u0002\f\u0000\f\u0001\r\f\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\f\u0002\f\u0003\r\f\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\f\u0003\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\f\u0001\u0000\u0002\f\u0004\f\u0005\r\f\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u0005\u0000\u0002\f\u0006\f\u0007\r\f\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u0007\u0000\u0002\f\b\f\t\r\f\b\u0000\u0002r\u0000\u0000\u0000\u0000\f\n\f\u000b\r\f\n\u0000\u00026\u0001\u0000\u0000\u0000\f\f\f\r\r\f\f\u0000\u0002n\u0000\u0000\u0000\u0000\f\u000e\f\u000f\r\f\u000e\u0000\u00024\u0000\u0001\u0000\u0000\f\u0010\n\u0000\u0004\nbutT\r\f\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\f\u0011\f\u0012\r\f\u0011\u0000\u00024\u0000\u0000\u0000\u0000\f\u0013\n\u0000\u0004\ntabg\r\f\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\u0012\u0000\u00024\u0000\u0000\u0000\u0000\f\u0014\n\u0000\u0004\ncwin\r\f\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\r\u0000\u0002=\u0000\u0003\u0000\u0000\f\u0015\f\u0016\r\f\u0015\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\f\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\f\u0017\u000e\f\u0017\u0000\u0001\f\u0018\u0011\f\u0018\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\f\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u0002\f\t\u0000\u0002\f\u0019\f\u001a\r\f\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u001a\u0000\u0002\f\u001b\f\u001c\r\f\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\f\u001d\f\u001e\u0001\u0000\u0000\f\f\u001d\u0000%\u0000\u001f COMMENT is for any field type:\u0000\u0002\u0000\u0000\u000e\f\u001e\u0000\u0001\f\u001f\u0011\f\u001f\u0000>\u0000 \u0000C\u0000O\u0000M\u0000M\u0000E\u0000N\u0000T\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000n\u0000y\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000t\u0000y\u0000p\u0000e\u0000:\u0002\f\u001c\u0000\u0002\f \f!\r\f \u0000\u0004Z\u0000\u0000\u0000\u0001\u0006\f\"\f#~}\r\f\"\u0000\u0002>\u0001\u0000\u0000\u0000\f$\f%\r\f$\u0000\u0002n\u0000\u0000\u0000\u0000\f&\f'\r\f&\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\f'\u0000\u0001o\u0000\u0000\u0000\u0000{\u000b{\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f%\u0000\u0001m\u0000\u0000\u0000\u0000z\nz\u0000\u0004\nnull\r\f#\u0000\u0001k\u0000\u0000\u0000\u0001\u0002\f(\u0002\f(\u0000\u0002\f)\f*\r\f)\u0000\u0004Z\u0000\u0000\u0000\u0000\f+\f,yx\r\f+\u0000\u0002n\u0000\u0001\u0000\u0000\f-\f.\r\f-\u0000\u0003I\u0000\u0000\u0000\u0000w\f\/v\u000bw\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\f\/\u0000\u0002\f0\f1\r\f0\u0000\u0002n\u0000\u0000\u0000\u0000\f2\f3\r\f2\u0000\u00024\u0000\u0000\u0000\u0000u\f4\nu\u0000\u0004\ntxtf\r\f4\u0000\u0001m\u0000\u0000\u0000\u0000\f5\u000e\f5\u0000\u0001\f6\u0011\f6\u0000\u0010\u0000C\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000:\r\f3\u0000\u0002n\u0000\u0000\u0000\u0000\f7\f8\r\f7\u0000\u00024\u0000\u0000\u0000\u0000t\f9\nt\u0000\u0004\ntabg\r\f9\u0000\u0001m\u0000\u0000\u0000\u0000s\u0003s\u0000\u0001\r\f8\u0000\u00024\u0000\u0000\u0000\u0000r\f:\nr\u0000\u0004\ncwin\r\f:\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u0001\u0002\f1\u0000\u0002\f;p\r\f;\u0000\u0002n\u0000\u0000\u0000\u0000\f<\f=\r\f<\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\f=\u0000\u0001o\u0000\u0000\u0000\u0000n\u000bn\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002p\u0000\u0000\u0002v\u0000\u0000\r\f.\u0000\u0000f\u0000\u0000\u0000\u0000\r\f,\u0000\u0003I\u0000\u0002\u0000\u0000m\f>l\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\f>\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u0002l\u0000\u0000\u0002y\u0000\u0000\u0001x\u0000\u0000\u0002\f*\u0000\u0002\f?\f@\r\f?\u0000\u0003l\u0000\u0002\u0000\u0000jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\f@\u0000\u0002\fAg\r\fA\u0000\u0003I\u0000\u0002\u0000\u0001\u0002f\fBe\nf\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\fB\u0000\u0001m\u0000\u0000\u0000\u0000\fC\b\fC\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0002~\u0000\u0000\u0001}\u0000\u0000\u0002\f!\u0000\u0002\fD\fE\r\fD\u0000\u0003l\u0000\u0002\u0001\u0007\u0001\u0007dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\fE\u0000\u0002\fF\fG\r\fF\u0000\u0004Z\u0000\u0000\u0001\u0007\u0001g\fH\fIa`\r\fH\u0000\u0002F\u0000\u0000\u0001\u0007\u0001\u0018\fJ\fK\r\fJ\u0000\u0002=\u0000\u0003\u0001\u0007\u0001\f\fL\fM\r\fL\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b_\u000b_\u0000\u00140\u0000\beditmode\u0000\beditMode\r\fM\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\fN\u000e\fN\u0000\u0001\fO\u0011\fO\u0000\n\u0000T\u0000W\u0000E\u0000A\u0000K\r\fK\u0000\u0002=\u0000\u0003\u0001\u000f\u0001\u0014\fP\fQ\r\fP\u0000\u0002n\u0000\u0000\u0001\u000f\u0001\u0012\fR\fS\r\fR\u0000\u0001o\u0000\u0000\u0001\u0010\u0001\u0012^\u000b^\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\fS\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\r\fQ\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0013\\\n\\\u0000\u0004\nnull\r\fI\u0000\u0001k\u0000\u0000\u0001\u001b\u0001c\fT\u0002\fT\u0000\u0002\fU\fV\r\fU\u0000\u0003l\u0000\u0001\u0001\u001b\u0001\u001b[\fW\fX\u0001[\u0000\u0000\f\fW\u00006\u00000 just find out what it already is and use that: \u0000\u0002\u0000\u0000\u000e\fX\u0000\u0001\fY\u0011\fY\u0000`\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000o\u0000u\u0000t\u0000 \u0000w\u0000h\u0000a\u0000t\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000i\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000u\u0000s\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000:\u0000 \u0002\fV\u0000\u0002\fZ\f[\r\fZ\u0000\u0002r\u0000\u0000\u0001\u001b\u0001\/\f\\\f]\r\f\\\u0000\u0002n\u0000\u0000\u0001\u001b\u0001-\f^\f_\r\f^\u0000\u00024\u0000\u0000\u0001&\u0001-Z\f`\nZ\u0000\u0004\npopB\r\f`\u0000\u0001m\u0000\u0000\u0001)\u0001,\fa\u000e\fa\u0000\u0001\fb\u0011\fb\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\f_\u0000\u0002n\u0000\u0000\u0001\u001b\u0001&\fc\fd\r\fc\u0000\u00024\u0000\u0000\u0001!\u0001&Y\fe\nY\u0000\u0004\ntabg\r\fe\u0000\u0001m\u0000\u0000\u0001$\u0001%X\u0003X\u0000\u0001\r\fd\u0000\u00024\u0000\u0000\u0001\u001b\u0001!W\ff\nW\u0000\u0004\ncwin\r\ff\u0000\u0001m\u0000\u0000\u0001\u001f\u0001 V\u0003V\u0000\u0001\r\f]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\f[\u0000\u0002\fgT\r\fg\u0000\u0004Z\u0000\u0000\u00010\u0001c\fh\fi\fj\fk\r\fh\u0000\u0002=\u0000\u0003\u00010\u00019\fl\fm\r\fl\u0000\u0002n\u0000\u0000\u00010\u00015\fn\fo\r\fn\u0000\u00011\u0000\u0000\u00011\u00015S\nS\u0000\u0004\nvalL\r\fo\u0000\u0001o\u0000\u0000\u00010\u00011R\u000bR\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\fm\u0000\u0001m\u0000\u0000\u00015\u00018\fp\u000e\fp\u0000\u0001\fq\u0011\fq\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\r\fi\u0000\u0002r\u0000\u0000\u0001<\u0001C\fr\fs\r\fr\u0000\u0001m\u0000\u0000\u0001<\u0001?\ft\u000e\ft\u0000\u0001\fu\u0011\fu\u0000\u0014\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\r\fs\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\fv\fw\r\fv\u0000\u0001o\u0000\u0000\u0001@\u0001BQ\u000bQ\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\fw\u0000\u0001o\u0000\u0000\u0001?\u0001@P\u000bP\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\fj\u0000\u0002\fx\fy\r\fx\u0000\u0002=\u0000\u0003\u0001F\u0001O\fz\f{\r\fz\u0000\u0002n\u0000\u0000\u0001F\u0001K\f|\f}\r\f|\u0000\u00011\u0000\u0000\u0001G\u0001KO\nO\u0000\u0004\nvalL\r\f}\u0000\u0001o\u0000\u0000\u0001F\u0001GN\u000bN\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\f{\u0000\u0001m\u0000\u0000\u0001K\u0001N\f~\u000e\f~\u0000\u0001\f\u0011\f\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\fy\u0000\u0002\fM\r\f\u0000\u0002r\u0000\u0000\u0001R\u0001Y\f\f\r\f\u0000\u0001m\u0000\u0000\u0001R\u0001U\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\r\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\f\f\r\f\u0000\u0001o\u0000\u0000\u0001V\u0001XL\u000bL\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001U\u0001VK\u000bK\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002M\u0000\u0000\r\fk\u0000\u0002r\u0000\u0000\u0001\\\u0001c\f\f\r\f\u0000\u0001m\u0000\u0000\u0001\\\u0001_\f\u000e\f\u0000\u0001\f\u0011\f\u0000\f\u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\r\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\f\f\r\f\u0000\u0001o\u0000\u0000\u0001`\u0001bJ\u000bJ\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001_\u0001`I\u000bI\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002T\u0000\u0000\u0002a\u0000\u0000\u0001`\u0000\u0000\u0002\fG\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001h\u0001hHGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0004Z\u0000\u0000\u0001h\u000f\f\f\fE\r\f\u0000\u0002=\u0000\u0003\u0001h\u0001m\f\f\r\f\u0000\u0002n\u0000\u0000\u0001h\u0001k\f\f\r\f\u0000\u0001o\u0000\u0000\u0001i\u0001kD\u000bD\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001h\u0001iC\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0001k\u0001lB\nB\u0000\u0004\nnull\r\f\u0000\u0001k\u0000\u0000\u0001p\u0001~\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003R\u0000\u0000\u0001p\u0001|A\f\f\nA\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001m\u0000\u0000\u0001x\u0001{\f\u000e\f\u0000\u0001\f\u0011\f\u00008\u0000P\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000:\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000T\u0000y\u0000p\u0000e\u0006\f\u0000\u0003@\f?\n@\u0000\u0004\nerrn\r\f\u0000\u0001m\u0000\u0000\u0001t\u0001w>\u0003>\u0004\u0000\u0006?\u0000\u0000\u0002\f\u0000\u0002\f=\r\f\u0000\u0003l\u0000\u0002\u0001}\u0001}<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002=\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002=\u0000\u0003\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u0001o\u0000\u0000\u0001\u00019\u000b9\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001\u00018\u000b8\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0014\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001k\u0000\u0000\u0001\u0005\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001\u0001765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00014\f\f\u00014\u0000\u0000\f\f\u0000\u000f\u0000\t IF CALC:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0012\u0000 \u0000I\u0000F\u0000 \u0000C\u0000A\u0000L\u0000C\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00013\f\f\u00013\u0000\u0000\f\f\u0000\u001e\u0000\u0018 Field Type = Calculated\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u00000\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000=\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00012\f\f\u00012\u0000\u0000\f\f\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00011\f\f\u00011\u0000\u0000\f\f\u0000\/\u0000) Data Type: popup \"Calculation result is\"\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000R\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0000:\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000\"\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000\"\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00010\f\f\u00010\u0000\u0000\f\f\u0000\u0019\u0000\u0013 Calc Context Table\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001\/\f\f\u0001\/\u0000\u0000\f\f\u0000\u0019\u0000\u0013 Calculation itself\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001.\f\f\u0001.\u0000\u0000\f\f\u0000\u0017\u0000\u0011 Do Not Evaluate\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\"\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001-\f\f\u0001-\u0000\u0000\f\f\u0000\u000f\u0000\t Storage:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0012\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001,\f\f\u0001,\u0000\u0000\f\f\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001\u0001+*)\u0001+\u0000\u0000\u0001*\u0000\u0000\u0001)\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001(\f\f\u0001(\u0000\u0000\f\f\u0000\u0012\u0000\f FIELD TYPE:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0018\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00024\u0000\u0000\u0001\u0001'\f\n'\u0000\u0004\npopB\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00024\u0000\u0000\u0001\u0001&\f\n&\u0000\u0004\ntabg\r\f\u0000\u0001m\u0000\u0000\u0001\u0001%\u0003%\u0000\u0001\r\f\u0000\u00024\u0000\u0000\u0001\u0001$\f\n$\u0000\u0004\ncwin\r\f\u0000\u0001m\u0000\u0000\u0001\u0001#\u0003#\u0000\u0001\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\f\u0000\u0002\f\f\r\f\u0000\u0004Z\u0000\u0000\u0001\u0002A\f\f!\f\r\f\u0000\u0002>\u0001\u0000\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00011\u0000\u0000\u0001\u0001 \n \u0000\u0004\nvalL\r\f\u0000\u0001o\u0000\u0000\u0001\u0001\u001f\u000b\u001f\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\r\f\u0000\u0001k\u0000\u0000\u0001\u0002\n\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002n\u0000\u0001\u0001\u0001\f\f\r\f\u0000\u0003I\u0000\u0000\u0001\u0001\u001e\f\u001d\u000b\u001e\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\f\u0000\u0002\r\u0000\r\u0001\r\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001\u001c\u000b\u001c\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\r\u0001\u0000\u0002\r\u0002\u001b\r\r\u0002\u0000\u0001m\u0000\u0000\u0001\u0001\r\u0003\u000e\r\u0003\u0000\u0001\r\u0004\u0011\r\u0004\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\r\f\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\f\u0000\u0002\r\u0005\r\u0006\r\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\r\u0006\u0000\u0002\r\u0007\r\b\r\r\u0007\u0000\u0003l\u0000\u0001\u0001\u0001\u0017\r\t\r\n\u0001\u0017\u0000\u0000\f\r\t\u0000*\u0000$ click CHANGE to save the data type.\u0000\u0002\u0000\u0000\u000e\r\n\u0000\u0001\r\u000b\u0011\r\u000b\u0000H\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000C\u0000H\u0000A\u0000N\u0000G\u0000E\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000t\u0000y\u0000p\u0000e\u0000.\u0002\r\b\u0000\u0002\r\f\r\r\r\r\f\u0000\u0002n\u0000\u0001\u0001\u0001\r\u000e\r\u000f\r\r\u000e\u0000\u0003I\u0000\u0000\u0001\u0001\u0016\r\u0010\u0015\u000b\u0016\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r\u0010\u0000\u0002\r\u0011\u0014\r\r\u0011\u0000\u0002n\u0000\u0000\u0001\u0001\r\u0012\r\u0013\r\r\u0012\u0000\u00024\u0000\u0000\u0001\u0001\u0013\r\u0014\n\u0013\u0000\u0004\nbutT\r\r\u0014\u0000\u0001m\u0000\u0000\u0001\u0001\r\u0015\u000e\r\u0015\u0000\u0001\r\u0016\u0011\r\u0016\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\r\u0013\u0000\u0002n\u0000\u0000\u0001\u0001\r\u0017\r\u0018\r\r\u0017\u0000\u00024\u0000\u0000\u0001\u0001\u0012\r\u0019\n\u0012\u0000\u0004\ntabg\r\r\u0019\u0000\u0001m\u0000\u0000\u0001\u0001\u0011\u0003\u0011\u0000\u0001\r\r\u0018\u0000\u00024\u0000\u0000\u0001\u0001\u0010\r\u001a\n\u0010\u0000\u0004\ncwin\r\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u000f\u0003\u000f\u0000\u0001\u0002\u0014\u0000\u0000\u0002\u0015\u0000\u0000\r\r\u000f\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\r\r\u0000\u0002\r\u001b\r\u001c\r\r\u001b\u0000\u0003l\u0000\u0002\u0001\u0001\u000e\r\f\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\r\u001c\u0000\u0002\r\u001d\r\u001e\r\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0001\u000b\r\u001f\n\n\u000b\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\r\u001f\u0000\u0001m\u0000\u0000\u0001\u0001\r \b\r \u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\n\u0000\u0000\u0002\r\u001e\u0000\u0002\r!\r\"\r\r!\u0000\u0003l\u0000\u0002\u0001\u0001\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\r\"\u0000\u0002\r#\r$\r\r#\u0000\u0003l\u0000\u0001\u0001\u0001\u0006\r%\r&\u0001\u0006\u0000\u0000\f\r%\u0000m\u0000g if existing field was NOT ALREADY a calc, will get a warning message. Need to handle that possibility.\u0000\u0002\u0000\u0000\u000e\r&\u0000\u0001\r'\u0011\r'\u0000\u0000 \u0000i\u0000f\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000w\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000a\u0000 \u0000c\u0000a\u0000l\u0000c\u0000,\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000.\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000.\u0002\r$\u0000\u0002\r(\r)\r\r(\u0000\u0004Z\u0000\u0000\u0001\u0002\b\r*\r+\u0005\u0004\r\r*\u0000\u0001H\u0000\u0000\u0001\u0001\r,\r\r,\u0000\u0002C\u0000\u0000\u0001\u0001\r-\r.\r\r-\u0000\u0002n\u0000\u0000\u0001\u0001\r\/\r0\r\r\/\u0000\u00011\u0000\u0000\u0001\u0001\u0003\n\u0003\u0000\u0004\npnam\r\r0\u0000\u00024\u0000\u0000\u0001\u0001\u0002\r1\n\u0002\u0000\u0004\ncwin\r\r1\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0003\u0001\u0000\u0001\r\r.\u0000\u0001m\u0000\u0000\u0001\u0001\r2\u000e\r2\u0000\u0001\r3\u0011\r3\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000F\u0000o\u0000r\r\r+\u0000\u0001k\u0000\u0000\u0001\u0002\u0004\r4\u0002\r4\u0000\u0002\r5\r6\r\r5\u0000\u0003l\u0000\u0001\u0001\u0001\u0000\r7\r8\u0001\u0000\u0000\u0000\f\r7\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\r8\u0000\u0001\r9\u0011\r9\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\r6\u0000\u0002\r:\r;\r\r:\u0000\u0002n\u0000\u0001\u0001\u0001\r<\r=\r\r<\u0000\u0003I\u0000\u0000\u0001\u0001\r>\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r>\u0000\u0002\r?\r\r?\u0000\u0002n\u0000\u0000\u0001\u0001\r@\rA\r\r@\u0000\u00024\u0000\u0000\u0001\u0001\rB\n\u0000\u0004\nbutT\r\rB\u0000\u0001m\u0000\u0000\u0001\u0001\rC\u000e\rC\u0000\u0001\rD\u0011\rD\u0000\u0004\u0000O\u0000K\r\rA\u0000\u00024\u0000\u0000\u0001\u0001\rE\n\u0000\u0004\ncwin\r\rE\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\r=\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\r;\u0000\u0002\rF\rG\r\rF\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\rG\u0000\u0002\rH\rI\r\rH\u0000\u0003I\u0000\u0002\u0001\u0002\u0002\rJ\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\rJ\u0000\u0001m\u0000\u0000\u0001\u0001\rK\b\rK\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\rI\u0000\u0002\rL\r\rL\u0000\u0003l\u0000\u0002\u0002\u0003\u0002\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\r)\u0000\u0002\rM\r\rM\u0000\u0003l\u0000\u0002\u0002\t\u0002\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0000\r\f\u0000\u0003l\u0000\u0003\u0002\r\u0002A\rN\rO\rP\r\rN\u0000\u0001k\u0000\u0000\u0002\r\u0002A\rQ\u0002\rQ\u0000\u0002\rR\rS\r\rR\u0000\u0003l\u0000\u0001\u0002\r\u0002\r\rT\rU\u0001\u0000\u0000\f\rT\u0000\u0016\u0000\u0010 click Options: \u0000\u0002\u0000\u0000\u000e\rU\u0000\u0001\rV\u0011\rV\u0000 \u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\rS\u0000\u0002\rW\rX\r\rW\u0000\u0002n\u0000\u0001\u0002\r\u00021\rY\rZ\r\rY\u0000\u0003I\u0000\u0000\u0002\u000e\u00021\r[\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r[\u0000\u0002\r\\\r\r\\\u0000\u00026\u0001\u0000\u0002\u000e\u0002-\r]\r^\r\r]\u0000\u0002n\u0000\u0000\u0002\u000e\u0002\u001e\r_\r`\r\r_\u0000\u00024\u0000\u0001\u0002\u0019\u0002\u001e\ra\n\u0000\u0004\nbutT\r\ra\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001d\u0003\u0000\u0001\r\r`\u0000\u0002n\u0000\u0000\u0002\u000e\u0002\u0019\rb\rc\r\rb\u0000\u00024\u0000\u0000\u0002\u0014\u0002\u0019\rd\n\u0000\u0004\ntabg\r\rd\u0000\u0001m\u0000\u0000\u0002\u0017\u0002\u0018\u0003\u0000\u0001\r\rc\u0000\u00024\u0000\u0000\u0002\u000e\u0002\u0014\re\n\u0000\u0004\ncwin\r\re\u0000\u0001m\u0000\u0000\u0002\u0012\u0002\u0013\u0003\u0000\u0001\r\r^\u0000\u0002C\u0000\u0000\u0002!\u0002,\rf\rg\r\rf\u0000\u00011\u0000\u0000\u0002\"\u0002&\n\u0000\u0004\npnam\r\rg\u0000\u0001m\u0000\u0000\u0002'\u0002+\rh\u000e\rh\u0000\u0001\ri\u0011\ri\u0000\u000e\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\rZ\u0000\u0000f\u0000\u0000\u0002\r\u0002\u000e\u0002\rX\u0000\u0002\rj\rk\r\rj\u0000\u0003l\u0000\u0002\u00022\u00022\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\rk\u0000\u0002\rl\rm\r\rl\u0000\u0002n\u0000\u0001\u00022\u0002?\rn\ro\r\rn\u0000\u0003I\u0000\u0000\u00023\u0002?\rp\u000b\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\rp\u0000\u0002\rq\r\rq\u0000\u0001K\u0000\u0000\u00023\u0002;\rr\u0006\rr\u0000\u0003\rs\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\rs\u0000\u0001m\u0000\u0000\u00026\u00029\rt\u000e\rt\u0000\u0001\ru\u0011\ru\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\ro\u0000\u0000f\u0000\u0000\u00022\u00023\u0002\rm\u0000\u0002\rv\r\rv\u0000\u0003l\u0000\u0002\u0002@\u0002@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\rO\u0000B\u0000< ALREADY was a Calculation field, so need to click OPTIONS: \u0000\u0002\u0000\u0000\u000e\rP\u0000\u0001\rw\u0011\rw\u0000x\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000w\u0000a\u0000s\u0000 \u0000a\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0000:\u0000 \u0002\f\u0000\u0002\rx\ry\r\rx\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\ry\u0000\u0002\rz\r{\r\rz\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r{\u0000\u0002\r|\r}\r\r|\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r}\u0000\u0002\r~\r\r\r~\u0000\u0004Z\u0000\u0000\u0002B\u0002t\r\r\r\r\u0000\u0002G\u0000\u0000\u0002B\u0002S\r\r\r\r\u0000\u0002=\u0000\u0003\u0002B\u0002G\r\r\r\r\u0000\u0001o\u0000\u0000\u0002B\u0002C\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\r\u0000\u0001m\u0000\u0000\u0002C\u0002F\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\r\u0000\u0002>\u0001\u0000\u0002J\u0002O\r\r\r\r\u0000\u0002n\u0000\u0000\u0002J\u0002M\r\r\r\r\u0000\u0001o\u0000\u0000\u0002K\u0002M\u000b\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\r\u0000\u0001o\u0000\u0000\u0002J\u0002K\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002M\u0002N\n\u0000\u0004\nnull\r\r\u0000\u0001k\u0000\u0000\u0002V\u0002p\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002V\u0002V\r\r\u0001\u0000\u0000\f\r\u0000\u0018\u0000\u0012 CALCULATION CODE:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000$\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0001\u0002V\u0002p\r\r\r\r\u0000\u0003I\u0000\u0000\u0002W\u0002p\r\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002W\u0002i\r\r\r\r\u0000\u00024\u0000\u0000\u0002d\u0002i\r\n\u0000\u0004\ntxta\r\r\u0000\u0001m\u0000\u0000\u0002g\u0002h\u0003\u0000\u0001\r\r\u0000\u0002n\u0000\u0000\u0002W\u0002d\r\r\r\r\u0000\u00024\u0000\u0000\u0002]\u0002d\r\n\u0000\u0004\nscra\r\r\u0000\u0001m\u0000\u0000\u0002`\u0002c\u0003\u0000\u0004\r\r\u0000\u00024\u0000\u0000\u0002W\u0002]\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002[\u0002\\\u0003\u0000\u0001\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002i\u0002l\r\r\r\r\u0000\u0001o\u0000\u0000\u0002j\u0002l\u000b\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\r\u0000\u0001o\u0000\u0000\u0002i\u0002j\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002V\u0002W\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002u\u0002u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002u\u0002u\r\r\u0001\u0000\u0000\f\r\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002u\u0002\r\r\r\r\u0000\u0002>\u0001\u0000\u0002u\u0002z\r\r\r\r\u0000\u0002n\u0000\u0000\u0002u\u0002x\r\r\r\r\u0000\u0001o\u0000\u0000\u0002v\u0002x\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\r\u0000\u0001o\u0000\u0000\u0002u\u0002v\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002x\u0002y\n\u0000\u0004\nnull\r\r\u0000\u0002n\u0000\u0001\u0002}\u0002\r\r\r\r\u0000\u0003I\u0000\u0000\u0002~\u0002\r\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002~\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002~\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\npopB\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002~\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002}\u0002~\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002\u0002\r\r\u0001\u0000\u0000\f\r\u0000\u0018\u0000\u0012 Calc Result TYPE:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000$\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0002>\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\n\u0000\u0004\nnull\r\r\u0000\u0002n\u0000\u0001\u0002\u0002\r\r\r\r\u0000\u0003I\u0000\u0000\u0002\u0002\r\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\npopB\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\r\u000e\r\u0000\u0001\r\u0011\r\u0000*\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002\u0002\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002\u0002\r\r\u0001\u0000\u0000\f\r\u00009\u00003 Do Not Evaluate if all referenced field are empty:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000f\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000a\u0000r\u0000e\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002\u0003\u0014\r\r\r\r\u0000\u0002>\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\n\u0000\u0004\nnull\r\r\u0000\u0001k\u0000\u0000\u0002\u0003\u0010\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\nchbx\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u000e\u0000\u000e\u000e\u0000\u0000\u0001\u000e\u0001\u0011\u000e\u0001\u0000J\u0000n\u0000o\u0000t\u0000 \u0000e\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000s\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\r\u0000\u0002\u000e\u0002\r\u000e\u0002\u0000\u0004Z\u0000\u0000\u0002\u0003\u0010\u000e\u0003\u000e\u0004\u000e\u0005\r\u000e\u0003\u0000\u0002n\u0000\u0000\u0002\u0002\u000e\u0006\u000e\u0007\r\u000e\u0006\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u000e\u0007\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0004\u0000\u0002n\u0000\u0001\u0002\u0003\u0006\u000e\b\u000e\t\r\u000e\b\u0000\u0003I\u0000\u0000\u0003\u0000\u0003\u0006\u000e\n\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\n\u0000\u0002\u000e\u000b\u000e\f\r\u000e\u000b\u0000\u0001o\u0000\u0000\u0003\u0000\u0003\u0001~\u000b~\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u000e\f\u0000\u0002\u000e\r}\r\u000e\r\u0000\u0001m\u0000\u0000\u0003\u0001\u0003\u0002|\u0003|\u0000\u0000\u0002}\u0000\u0000\u0002\u0000\u0000\r\u000e\t\u0000\u0000f\u0000\u0000\u0002\u0003\u0000\u0002\u0000\u0000\r\u000e\u0005\u0000\u0002n\u0000\u0001\u0003\t\u0003\u0010\u000e\u000e\u000e\u000f\r\u000e\u000e\u0000\u0003I\u0000\u0000\u0003\n\u0003\u0010{\u000e\u0010z\u000b{\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\u0010\u0000\u0002\u000e\u0011\u000e\u0012\r\u000e\u0011\u0000\u0001o\u0000\u0000\u0003\n\u0003\u000by\u000by\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u000e\u0012\u0000\u0002\u000e\u0013x\r\u000e\u0013\u0000\u0001m\u0000\u0000\u0003\u000b\u0003\fw\u0003w\u0000\u0001\u0002x\u0000\u0000\u0002z\u0000\u0000\r\u000e\u000f\u0000\u0000f\u0000\u0000\u0003\t\u0003\n\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\u000e\u0014\u000e\u0015\r\u000e\u0014\u0000\u0003l\u0000\u0002\u0003\u0015\u0003\u0015vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u000e\u0015\u0000\u0002\u000e\u0016\u000e\u0017\r\u000e\u0016\u0000\u0003l\u0000\u0001\u0003\u0015\u0003\u0015s\u000e\u0018\u000e\u0019\u0001s\u0000\u0000\f\u000e\u0018\u0000\u0014\u0000\u000e Repetitions: \u0000\u0002\u0000\u0000\u000e\u000e\u0019\u0000\u0001\u000e\u001a\u0011\u000e\u001a\u0000\u001c\u0000 \u0000R\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000e\u0017\u0000\u0002\u000e\u001b\u000e\u001c\r\u000e\u001b\u0000\u0004Z\u0000\u0000\u0003\u0015\u0003S\u000e\u001d\u000e\u001erq\r\u000e\u001d\u0000\u0002G\u0000\u0000\u0003\u0015\u0003(\u000e\u001f\u000e \r\u000e\u001f\u0000\u0002=\u0000\u0003\u0003\u0015\u0003\u001a\u000e!\u000e\"\r\u000e!\u0000\u0001o\u0000\u0000\u0003\u0015\u0003\u0016p\u000bp\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000e\"\u0000\u0001m\u0000\u0000\u0003\u0016\u0003\u0019\u000e#\u000e\u000e#\u0000\u0001\u000e$\u0011\u000e$\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u000e \u0000\u0002>\u0001\u0000\u0003\u001d\u0003$\u000e%\u000e&\r\u000e%\u0000\u0002n\u0000\u0000\u0003\u001d\u0003\"\u000e'\u000e(\r\u000e'\u0000\u0001o\u0000\u0000\u0003\u001e\u0003\"o\u000bo\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000e(\u0000\u0001o\u0000\u0000\u0003\u001d\u0003\u001en\u000bn\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e&\u0000\u0001m\u0000\u0000\u0003\"\u0003#m\nm\u0000\u0004\nnull\r\u000e\u001e\u0000\u0002n\u0000\u0001\u0003+\u0003O\u000e)\u000e*\r\u000e)\u0000\u0003I\u0000\u0000\u0003,\u0003Ol\u000e+k\u000bl\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u000e+\u0000\u0002\u000e,\u000e-\r\u000e,\u0000\u00026\u0001\u0000\u0003,\u0003F\u000e.\u000e\/\r\u000e.\u0000\u0002n\u0000\u0000\u0003,\u00037\u000e0\u000e1\r\u000e0\u0000\u00024\u0000\u0001\u00032\u00037j\u000e2\nj\u0000\u0004\ntxtf\r\u000e2\u0000\u0001m\u0000\u0000\u00035\u00036i\u0003i\u0000\u0001\r\u000e1\u0000\u00024\u0000\u0000\u0003,\u00032h\u000e3\nh\u0000\u0004\ncwin\r\u000e3\u0000\u0001m\u0000\u0000\u00030\u00031g\u0003g\u0000\u0001\r\u000e\/\u0000\u0002E\u0000\u0000\u0003:\u0003E\u000e4\u000e5\r\u000e4\u0000\u00011\u0000\u0000\u0003;\u0003?f\nf\u0000\u0004\npnam\r\u000e5\u0000\u0001m\u0000\u0000\u0003@\u0003D\u000e6\u000e\u000e6\u0000\u0001\u000e7\u0011\u000e7\u0000\u0016\u0000r\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u000e-\u0000\u0002\u000e8e\r\u000e8\u0000\u0002n\u0000\u0000\u0003F\u0003K\u000e9\u000e:\r\u000e9\u0000\u0001o\u0000\u0000\u0003G\u0003Kd\u000bd\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000e:\u0000\u0001o\u0000\u0000\u0003F\u0003Gc\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002e\u0000\u0000\u0002k\u0000\u0000\r\u000e*\u0000\u0000f\u0000\u0000\u0003+\u0003,\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u000e\u001c\u0000\u0002\u000e;\u000e<\r\u000e;\u0000\u0003l\u0000\u0002\u0003T\u0003Tba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u000e<\u0000\u0002\u000e=\u000e>\r\u000e=\u0000\u0003l\u0000\u0002\u0003T\u0003T_^]\u0001_\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\u0002\u000e>\u0000\u0002\u000e?\u000e@\r\u000e?\u0000\u0003l\u0000\u0002\u0003T\u0003T\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\u000e@\u0000\u0002\u000eA\u000eB\r\u000eA\u0000\u0004Z\u0000\u0000\u0003T\u0005\u000eC\u000eDYX\r\u000eC\u0000\u0002G\u0000\u0000\u0003T\u0003\u000eE\u000eF\r\u000eE\u0000\u0002G\u0000\u0000\u0003T\u0003\u000eG\u000eH\r\u000eG\u0000\u0002G\u0000\u0000\u0003T\u0003q\u000eI\u000eJ\r\u000eI\u0000\u0002G\u0000\u0000\u0003T\u0003e\u000eK\u000eL\r\u000eK\u0000\u0002=\u0000\u0003\u0003T\u0003Y\u000eM\u000eN\r\u000eM\u0000\u0001o\u0000\u0000\u0003T\u0003UW\u000bW\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000eN\u0000\u0003l\u0000\t\u0003U\u0003X\u000eOVU\r\u000eO\u0000\u0001m\u0000\u0000\u0003U\u0003X\u000eP\u000e\u000eP\u0000\u0001\u000eQ\u0011\u000eQ\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0001V\u0000\u0000\u0001U\u0000\u0000\r\u000eL\u0000\u0002>\u0001\u0000\u0003\\\u0003a\u000eR\u000eS\r\u000eR\u0000\u0002n\u0000\u0000\u0003\\\u0003_\u000eT\u000eU\r\u000eT\u0000\u0001o\u0000\u0000\u0003]\u0003_T\u000bT\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000eU\u0000\u0001o\u0000\u0000\u0003\\\u0003]S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eS\u0000\u0003l\u0000\n\u0003_\u0003`\u000eVRQ\r\u000eV\u0000\u0001m\u0000\u0000\u0003_\u0003`P\nP\u0000\u0004\nnull\u0001R\u0000\u0000\u0001Q\u0000\u0000\r\u000eJ\u0000\u0002>\u0001\u0000\u0003h\u0003m\u000eW\u000eX\r\u000eW\u0000\u0002n\u0000\u0000\u0003h\u0003k\u000eY\u000eZ\r\u000eY\u0000\u0001o\u0000\u0000\u0003i\u0003kO\u000bO\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000eZ\u0000\u0001o\u0000\u0000\u0003h\u0003iN\u000bN\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eX\u0000\u0003l\u0000\n\u0003k\u0003l\u000e[ML\r\u000e[\u0000\u0001m\u0000\u0000\u0003k\u0003lK\nK\u0000\u0004\nnull\u0001M\u0000\u0000\u0001L\u0000\u0000\r\u000eH\u0000\u0002>\u0001\u0000\u0003t\u0003{\u000e\\\u000e]\r\u000e\\\u0000\u0002n\u0000\u0000\u0003t\u0003y\u000e^\u000e_\r\u000e^\u0000\u0001o\u0000\u0000\u0003u\u0003yJ\u000bJ\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000e_\u0000\u0001o\u0000\u0000\u0003t\u0003uI\u000bI\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e]\u0000\u0003l\u0000\n\u0003y\u0003z\u000e`HG\r\u000e`\u0000\u0001m\u0000\u0000\u0003y\u0003zF\nF\u0000\u0004\nnull\u0001H\u0000\u0000\u0001G\u0000\u0000\r\u000eF\u0000\u0002>\u0001\u0000\u0003\u0003\u000ea\u000eb\r\u000ea\u0000\u0002n\u0000\u0000\u0003\u0003\u000ec\u000ed\r\u000ec\u0000\u0001o\u0000\u0000\u0003\u0003E\u000bE\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000ed\u0000\u0001o\u0000\u0000\u0003\u0003D\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eb\u0000\u0003l\u0000\n\u0003\u0003\u000eeCB\r\u000ee\u0000\u0001m\u0000\u0000\u0003\u0003A\nA\u0000\u0004\nnull\u0001C\u0000\u0000\u0001B\u0000\u0000\r\u000eD\u0000\u0001k\u0000\u0000\u0003\u0005\u000ef\u0002\u000ef\u0000\u0002\u000eg\u000eh\r\u000eg\u0000\u0003l\u0000\u0001\u0003\u0003@\u000ei\u000ej\u0001@\u0000\u0000\f\u000ei\u0000\u001d\u0000\u0017 BEGIN: STORAGE OPTIONS\u0000\u0002\u0000\u0000\u000e\u000ej\u0000\u0001\u000ek\u0011\u000ek\u0000.\u0000 \u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0002\u000eh\u0000\u0002\u000el\u000em\r\u000el\u0000\u0003l\u0000\u0002\u0003\u0003?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u000em\u0000\u0002\u000en\u000eo\r\u000en\u0000\u0003l\u0000\u0001\u0003\u0003<\u000ep\u000eq\u0001<\u0000\u0000\f\u000ep\u0000\u001e\u0000\u0018 click Storage Options: \u0000\u0002\u0000\u0000\u000e\u000eq\u0000\u0001\u000er\u0011\u000er\u00000\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000eo\u0000\u0002\u000es\u000et\r\u000es\u0000\u0002n\u0000\u0001\u0003\u0003\u000eu\u000ev\r\u000eu\u0000\u0003I\u0000\u0000\u0003\u0003;\u000ew:\u000b;\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000ew\u0000\u0002\u000ex9\r\u000ex\u0000\u00026\u0001\u0000\u0003\u0003\u000ey\u000ez\r\u000ey\u0000\u0002n\u0000\u0000\u0003\u0003\u000e{\u000e|\r\u000e{\u0000\u00024\u0000\u0001\u0003\u00038\u000e}\n8\u0000\u0004\nbutT\r\u000e}\u0000\u0001m\u0000\u0000\u0003\u00037\u00037\u0000\u0001\r\u000e|\u0000\u00024\u0000\u0000\u0003\u00036\u000e~\n6\u0000\u0004\ncwin\r\u000e~\u0000\u0001m\u0000\u0000\u0003\u00035\u00035\u0000\u0001\r\u000ez\u0000\u0002E\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u00034\n4\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u001e\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u00029\u0000\u0000\u0002:\u0000\u0000\r\u000ev\u0000\u0000f\u0000\u0000\u0003\u0003\u0002\u000et\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0003\u0003\u000e\u000e\r\u000e\u0000\u0003I\u0000\u0000\u0003\u00033\u000e2\u000b3\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000e\u0000\u0002\u000e1\r\u000e\u0000\u0001K\u0000\u0000\u0003\u0003\u000e\u0006\u000e\u0000\u00030\u000e\u000e\u000b0\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000&\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u000e\u0000\u0003\/\u000e\u000e\u000b\/\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u000e\u0000\u0003.\u000e-\u000b.\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006-\u0000\u0000\u00021\u0000\u0000\u00022\u0000\u0000\r\u000e\u0000\u0000f\u0000\u0000\u0003\u0003\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0003\u0003&\u000e\n&\u0000\u0004\ncwin\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003%\u0003%\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00026\u0001\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0001\u0003\u0003 \u000e\n \u0000\u0004\nchbx\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u001f\u0003\u001f\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0003\u0003\u001e\u000b\u001e\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000e\u0000\u0002E\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u0003\u001d\n\u001d\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u001c\u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0004\u0004\u000e\u000e\r\u000e\u0000\u00026\u0001\u0000\u0003\u0004\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0001\u0003\u0003\u001b\u000e\n\u001b\u0000\u0004\nchbx\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u001a\u0003\u001a\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0003\u0003\u0019\u000b\u0019\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000e\u0000\u0002E\u0000\u0000\u0003\u0004\u0001\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u0003\u0018\n\u0018\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0004\u0000\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0018\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000o\u0000r\u0000e\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004\u0005\u0004\u0005\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0000\u0004\u0005\u0004B\u000e\u000e\u0013\u0012\r\u000e\u0000\u0002=\u0000\u0003\u0004\u0005\u0004\n\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004\u0005\u0004\u0006\u0011\u000b\u0011\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0006\u0004\t\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u000e\u0000\u0001k\u0000\u0000\u0004\r\u0004>\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0001\u0004\r\u0004\r\u0010\u000e\u000e\u0001\u0010\u0000\u0000\f\u000e\u0000F\u0000@ These two CANNOT BE NULL if you are making this field CONFORM. \u0000\u0002\u0000\u0000\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0000 \u0000T\u0000h\u0000e\u0000s\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000C\u0000A\u0000N\u0000N\u0000O\u0000T\u0000 \u0000B\u0000E\u0000 \u0000N\u0000U\u0000L\u0000L\u0000 \u0000i\u0000f\u0000 \u0000y\u0000o\u0000u\u0000 \u0000a\u0000r\u0000e\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0000.\u0000 \u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0001\u0004\r\u0004%\u000e\u000e\u000f\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0004\r\u0004\u0012\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004\r\u0004\u0010\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004\u000e\u0004\u0010\r\u000b\r\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000e\u0000\u0001o\u0000\u0000\u0004\r\u0004\u000e\f\u000b\f\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0010\u0004\u0011\u000b\n\u000b\u0000\u0004\nnull\r\u000e\u0000\u0003R\u0000\u0000\u0004\u0015\u0004!\n\u000e\u000e\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000e\u0000\u0001m\u0000\u0000\u0004\u001d\u0004 \u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000@\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u000e\u0000\u0003\t\u000e\b\n\t\u0000\u0004\nerrn\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0019\u0004\u001c\u0007\u0003\u0007\u0004\u0000\u0006\b\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u0006\r\u000e\u0000\u0004Z\u0000\u0001\u0004&\u0004>\u000e\u000e\u0005\u0004\r\u000e\u0000\u0002=\u0000\u0003\u0004&\u0004+\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004&\u0004)\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004'\u0004)\u0003\u000b\u0003\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000e\u0000\u0001o\u0000\u0000\u0004&\u0004'\u0002\u000b\u0002\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0004)\u0004*\u0001\n\u0001\u0000\u0004\nnull\r\u000e\u0000\u0003R\u0000\u0000\u0004.\u0004:\u0000\u000e\u000e\n\u0000\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000e\u0000\u0001m\u0000\u0000\u00046\u00049\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000T\u0000s\u0000t\u0000o\u0000r\u0000e\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u000e\u0000\u0003\u000e\n\u0000\u0004\nerrn\r\u000e\u0000\u0001m\u0000\u0000\u00042\u00045\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004C\u0004C\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0000\u0004C\u0004\u000e\u000e\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004C\u0004G\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004D\u0004F\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000e\u0000\u0001o\u0000\u0000\u0004C\u0004D\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001k\u0000\u0000\u0004J\u0004S\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0004J\u0004Q\u000e\u000e\r\u000e\u0000\u0003I\u0000\u0000\u0004K\u0004Q\u000e\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004K\u0004L\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0001m\u0000\u0000\u0004L\u0004M\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000e\u0000\u0000f\u0000\u0000\u0004J\u0004K\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004R\u0004R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0001H\u0000\u0000\u0004V\u0004Z\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004V\u0004Y\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004W\u0004Y\u000b\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000e\u0000\u0001o\u0000\u0000\u0004V\u0004W\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0001k\u0000\u0000\u0004]\u0004f\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0004]\u0004d\u000f\u0000\u000f\u0001\r\u000f\u0000\u0000\u0003I\u0000\u0000\u0004^\u0004d\u000f\u0002\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0002\u0000\u0002\u000f\u0003\u000f\u0004\r\u000f\u0003\u0000\u0001o\u0000\u0000\u0004^\u0004_\u000b\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000f\u0004\u0000\u0002\u000f\u0005\r\u000f\u0005\u0000\u0001m\u0000\u0000\u0004_\u0004`\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0001\u0000\u0000f\u0000\u0000\u0004]\u0004^\u0002\u000e\u0000\u0002\u000f\u0006\r\u000f\u0006\u0000\u0003l\u0000\u0002\u0004e\u0004e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0003\u0004i\u0004\u000f\u0007\u000f\b\u000f\t\r\u000f\u0007\u0000\u0001k\u0000\u0000\u0004i\u0004\u000f\n\u0002\u000f\n\u0000\u0002\u000f\u000b\u000f\f\r\u000f\u000b\u0000\u0002n\u0000\u0001\u0004i\u0004p\u000f\r\u000f\u000e\r\u000f\r\u0000\u0003I\u0000\u0000\u0004j\u0004p\u000f\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u000f\u0000\u0002\u000f\u0010\u000f\u0011\r\u000f\u0010\u0000\u0001o\u0000\u0000\u0004j\u0004k\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000f\u0011\u0000\u0002\u000f\u0012\r\u000f\u0012\u0000\u0001m\u0000\u0000\u0004k\u0004l\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u000e\u0000\u0000f\u0000\u0000\u0004i\u0004j\u0002\u000f\f\u0000\u0002\u000f\u0013\u000f\u0014\r\u000f\u0013\u0000\u0002n\u0000\u0001\u0004q\u0004x\u000f\u0015\u000f\u0016\r\u000f\u0015\u0000\u0003I\u0000\u0000\u0004r\u0004x\u000f\u0017\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0017\u0000\u0002\u000f\u0018\u000f\u0019\r\u000f\u0018\u0000\u0001o\u0000\u0000\u0004r\u0004s\u000b\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000f\u0019\u0000\u0002\u000f\u001a\r\u000f\u001a\u0000\u0001m\u0000\u0000\u0004s\u0004t\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0016\u0000\u0000f\u0000\u0000\u0004q\u0004r\u0002\u000f\u0014\u0000\u0002\u000f\u001b\u000f\u001c\r\u000f\u001b\u0000\u0003l\u0000\u0002\u0004y\u0004y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u001c\u0000\u0002\u000f\u001d\u000f\u001e\r\u000f\u001d\u0000\u0003l\u0000\u0001\u0004y\u0004y\u000f\u001f\u000f \u0001\u0000\u0000\f\u000f\u001f\u0000;\u00005 Then see which one of the Indexing choices is needed\u0000\u0002\u0000\u0000\u000e\u000f \u0000\u0001\u000f!\u0011\u000f!\u0000j\u0000 \u0000T\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000o\u0000i\u0000c\u0000e\u0000s\u0000 \u0000i\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u000f\u001e\u0000\u0002\u000f\"\r\u000f\"\u0000\u0004Z\u0000\u0000\u0004y\u0004\u000f#\u000f$\u000f%\r\u000f#\u0000\u0002=\u0000\u0003\u0004y\u0004\u000f&\u000f'\r\u000f&\u0000\u0002n\u0000\u0000\u0004y\u0004~\u000f(\u000f)\r\u000f(\u0000\u0001o\u0000\u0000\u0004z\u0004~\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000f)\u0000\u0001o\u0000\u0000\u0004y\u0004z\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f'\u0000\u0001m\u0000\u0000\u0004~\u0004\u000f*\u000e\u000f*\u0000\u0001\u000f+\u0011\u000f+\u0000\b\u0000N\u0000o\u0000n\u0000e\r\u000f$\u0000\u0001k\u0000\u0000\u0004\u0004\u000f,\u0002\u000f,\u0000\u0002\u000f-\u000f.\r\u000f-\u0000\u0002n\u0000\u0001\u0004\u0004\u000f\/\u000f0\r\u000f\/\u0000\u0003I\u0000\u0000\u0004\u0004\u000f1\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f1\u0000\u0002\u000f2\u000f3\r\u000f2\u0000\u0002n\u0000\u0000\u0004\u0004\u000f4\u000f5\r\u000f4\u0000\u00024\u0000\u0000\u0004\u0004\u000f6\n\u0000\u0004\nchbx\r\u000f6\u0000\u0001m\u0000\u0000\u0004\u0004\u000f7\u000e\u000f7\u0000\u0001\u000f8\u0011\u000f8\u0000\u0016\u0000N\u0000o\u0000n\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00003\r\u000f5\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000f3\u0000\u0002\u000f9\r\u000f9\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f0\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000f.\u0000\u0002\u000f:\r\u000f:\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000f%\u0000\u0002\u000f;\u000f<\r\u000f;\u0000\u0002=\u0000\u0003\u0004\u0004\u000f=\u000f>\r\u000f=\u0000\u0002n\u0000\u0000\u0004\u0004\u000f?\u000f@\r\u000f?\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000f@\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f>\u0000\u0001m\u0000\u0000\u0004\u0004\u000fA\u000e\u000fA\u0000\u0001\u000fB\u0011\u000fB\u0000\u000e\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0002\u000f<\u0000\u0002\u000fC\u000fD\r\u000fC\u0000\u0001k\u0000\u0000\u0004\u0004\u000fE\u0002\u000fE\u0000\u0002\u000fF\u000fG\r\u000fF\u0000\u0002n\u0000\u0001\u0004\u0004\u000fH\u000fI\r\u000fH\u0000\u0003I\u0000\u0000\u0004\u0004\u000fJ\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000fJ\u0000\u0002\u000fK\u000fL\r\u000fK\u0000\u0002n\u0000\u0000\u0004\u0004\u000fM\u000fN\r\u000fM\u0000\u00024\u0000\u0000\u0004\u0004\u000fO\n\u0000\u0004\nchbx\r\u000fO\u0000\u0001m\u0000\u0000\u0004\u0004\u000fP\u000e\u000fP\u0000\u0001\u000fQ\u0011\u000fQ\u0000\u001c\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00003\r\u000fN\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000fL\u0000\u0002\u000fR\r\u000fR\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fI\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000fG\u0000\u0002\u000fS\r\u000fS\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000fD\u0000\u0002\u000fT\u000fU\r\u000fT\u0000\u0002=\u0000\u0003\u0004\u0004\u000fV\u000fW\r\u000fV\u0000\u0002n\u0000\u0000\u0004\u0004\u000fX\u000fY\r\u000fX\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000fY\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000fW\u0000\u0001m\u0000\u0000\u0004\u0004\u000fZ\u000e\u000fZ\u0000\u0001\u000f[\u0011\u000f[\u0000\u0006\u0000A\u0000l\u0000l\u0002\u000fU\u0000\u0002\u000f\\\r\u000f\\\u0000\u0001k\u0000\u0000\u0004\u0004\u000f]\u0002\u000f]\u0000\u0002\u000f^\u000f_\r\u000f^\u0000\u0002n\u0000\u0001\u0004\u0004\u000f`\u000fa\r\u000f`\u0000\u0003I\u0000\u0000\u0004\u0004\u000fb\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000fb\u0000\u0002\u000fc\u000fd\r\u000fc\u0000\u0002n\u0000\u0000\u0004\u0004\u000fe\u000ff\r\u000fe\u0000\u00024\u0000\u0000\u0004\u0004\u000fg\n\u0000\u0004\nchbx\r\u000fg\u0000\u0001m\u0000\u0000\u0004\u0004\u000fh\u000e\u000fh\u0000\u0001\u000fi\u0011\u000fi\u0000\u0014\u0000A\u0000l\u0000l\u0000 \u00003\u0000 \u0000o\u0000f\u0000 \u00003\r\u000ff\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000fd\u0000\u0002\u000fj\r\u000fj\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fa\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000f_\u0000\u0002\u000fk\r\u000fk\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u000f\b\u00002\u0000, NOT EITHER OF THOSE, SO UNCHECK THEM FIRST:\u0000\u0002\u0000\u0000\u000e\u000f\t\u0000\u0001\u000fl\u0011\u000fl\u0000X\u0000 \u0000N\u0000O\u0000T\u0000 \u0000E\u0000I\u0000T\u0000H\u0000E\u0000R\u0000 \u0000O\u0000F\u0000 \u0000T\u0000H\u0000O\u0000S\u0000E\u0000,\u0000 \u0000S\u0000O\u0000 \u0000U\u0000N\u0000C\u0000H\u0000E\u0000C\u0000K\u0000 \u0000T\u0000H\u0000E\u0000M\u0000 \u0000F\u0000I\u0000R\u0000S\u0000T\u0000:\u0002\u000e\u0000\u0002\u000fm\u000fn\r\u000fm\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000fn\u0000\u0002\u000fo\u000fp\r\u000fo\u0000\u0004Z\u0000\u0000\u0004\u0005\u0005\u000fq\u000fr\r\u000fq\u0000\u0002>\u0001\u0000\u0004\u0004\u000fs\u000ft\r\u000fs\u0000\u0002n\u0000\u0000\u0004\u0004\u000fu\u000fv\r\u000fu\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000fv\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000ft\u0000\u0001m\u0000\u0000\u0004\u0004\n\u0000\u0004\nnull\r\u000fr\u0000\u0002n\u0000\u0001\u0004\u0005\u0001\u000fw\u000fx\r\u000fw\u0000\u0003I\u0000\u0000\u0004\u0005\u0001\u000fy\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u000fy\u0000\u0002\u000fz\u000f{\r\u000fz\u0000\u00026\u0001\u0000\u0004\u0004\u000f|\u000f}\r\u000f|\u0000\u0002n\u0000\u0000\u0004\u0004\u000f~\u000f\r\u000f~\u0000\u00024\u0000\u0001\u0004\u0004\u000f\n\u0000\u0004\npopB\r\u000f\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f}\u0000\u0002E\u0000\u0000\u0004\u0004\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0004\u0004\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000l\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0002\u000f{\u0000\u0002\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0004\u0004\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fx\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000fp\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0006\u0005\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0004Z\u0000\u0000\u0005\u0006\u0005H\u000f\u000f\r\u000f\u0000\u0002>\u0001\u0000\u0005\u0006\u0005\r\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0006\u0005\u000b\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0007\u0005\u000b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0006\u0005\u0007\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f\u0000\u0001m\u0000\u0000\u0005\u000b\u0005\f\n\u0000\u0004\nnull\r\u000f\u0000\u0001k\u0000\u0000\u0005\u0010\u0005D\u000f\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0005\u0010\u0005'\u000f\u000f\r\u000f\u0000\u00026\u0001\u0000\u0005\u0010\u0005%\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0010\u0005\u0016\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005\u0011\u0005\u0016\u000f\n\u0000\u0004\nchbx\r\u000f\u0000\u0001m\u0000\u0000\u0005\u0014\u0005\u0015\u0003\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0010\u0005\u0011\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005\u0019\u0005$\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0005\u001a\u0005\u001e\n\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0005\u001f\u0005#\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\u001c\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0004Z\u0000\u0000\u0005(\u0005B\u000f\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005(\u0005.\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005)\u0005-\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000f\u0000\u0001o\u0000\u0000\u0005(\u0005)\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f\u0000\u0002n\u0000\u0001\u00051\u00058\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u00052\u00058\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u00052\u00053\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0001m\u0000\u0000\u00053\u00054\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u00051\u00052\u0002\u0000\u0000\r\u000f\u0000\u0002n\u0000\u0001\u0005;\u0005B\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005<\u0005B\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005<\u0005=\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0001m\u0000\u0000\u0005=\u0005>\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005;\u0005<\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005C\u0005C\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005I\u0005I~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005I\u0005I{\u000f\u000f\u0001{\u0000\u0000\f\u000f\u0000%\u0000\u001f click OK for Storage Options: \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000>\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005I\u0005c\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005J\u0005cz\u000fy\u000bz\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000f\u0000\u0002\u000fx\r\u000f\u0000\u00026\u0001\u0000\u0005J\u0005_\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005J\u0005P\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005K\u0005Pw\u000f\nw\u0000\u0004\nbutT\r\u000f\u0000\u0001m\u0000\u0000\u0005N\u0005Ov\u0003v\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005J\u0005Ku\u000bu\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005S\u0005^\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0005T\u0005Xt\nt\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0005Y\u0005]\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\u0004\u0000O\u0000K\u0002x\u0000\u0000\u0002y\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005I\u0005J\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005d\u0005dsrq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005d\u0005\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005e\u0005p\u000fo\u000bp\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000f\u0000\u0002\u000fn\r\u000f\u0000\u0001K\u0000\u0000\u0005e\u0005{\u000f\u0006\u000f\u0000\u0003m\u000f\u000f\u000bm\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000f\u0000\u0001m\u0000\u0000\u0005h\u0005k\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000&\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u000f\u0000\u0003l\u000f\u000f\u000bl\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000f\u0000\u0001m\u0000\u0000\u0005n\u0005q\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u000f\u0000\u0003k\u000fj\u000bk\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000f\u0000\u0001m\u0000\u0000\u0005t\u0005w\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006j\u0000\u0000\u0002n\u0000\u0000\u0002o\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005d\u0005e\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u000f\u0000\u0002\u000ff\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005e\u000f\u000f\u0001e\u0000\u0000\f\u000f\u0000\u001e\u0000\u0018 END OF: STORAGE OPTIONS\u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u00000\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0002f\u0000\u0000\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002\u000eB\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005\u000f\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0005\u0005a\u000f\na\u0000\u0004\ncwin\r\u000f\u0000\u0001m\u0000\u0000\u0005\u0005`\u0003`\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\f\u000f\u0000+\u0000% need reference to NEW first window. \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000J\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000t\u0000o\u0000 \u0000N\u0000E\u0000W\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005[\u000f\u000f\u0001[\u0000\u0000\f\u000f\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005\u0005\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005\u0005Z\u000fY\u000bZ\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000f\u0000\u0002\u000fX\r\u000f\u0000\u00026\u0001\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005\u0005W\u0010\u0000\nW\u0000\u0004\nbutT\r\u0010\u0000\u0000\u0001m\u0000\u0000\u0005\u0005V\u0003V\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0005U\u000bU\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005\u0005\u0010\u0001\u0010\u0002\r\u0010\u0001\u0000\u00011\u0000\u0000\u0005\u0005T\nT\u0000\u0004\npnam\r\u0010\u0002\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0003\u000e\u0010\u0003\u0000\u0001\u0010\u0004\u0011\u0010\u0004\u0000\u0004\u0000O\u0000K\u0002X\u0000\u0000\u0002Y\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005\u0005\u0002\u000f\u0000\u0002\u0010\u0005\u0010\u0006\r\u0010\u0005\u0000\u0003l\u0000\u0002\u0005\u0005SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0010\u0006\u0000\u0002\u0010\u0007\u0010\b\r\u0010\u0007\u0000\u0002n\u0000\u0001\u0005\u0005\u0010\t\u0010\n\r\u0010\t\u0000\u0003I\u0000\u0000\u0005\u0005P\u0010\u000bO\u000bP\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0010\u000b\u0000\u0002\u0010\fN\r\u0010\f\u0000\u0001K\u0000\u0000\u0005\u0005\u0010\r\u0006\u0010\r\u0000\u0003M\u0010\u000e\u0010\u000f\u000bM\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0010\u000e\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0010\u000e\u0010\u0010\u0000\u0001\u0010\u0011\u0011\u0010\u0011\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0010\u000f\u0000\u0003L\u0010\u0012\u0010\u0013\u000bL\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0010\u0012\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0014\u000e\u0010\u0014\u0000\u0001\u0010\u0015\u0011\u0010\u0015\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0010\u0013\u0000\u0003K\u0010\u0016J\u000bK\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0010\u0016\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0017\u000e\u0010\u0017\u0000\u0001\u0010\u0018\u0011\u0010\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006J\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u0010\n\u0000\u0000f\u0000\u0000\u0005\u0005\u0002\u0010\b\u0000\u0002\u0010\u0019\u0010\u001a\r\u0010\u0019\u0000\u0003l\u0000\u0002\u0005\u0005IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0010\u001a\u0000\u0002\u0010\u001b\u0010\u001c\r\u0010\u001b\u0000\u0001L\u0000\u0000\u0005\u0005\u0010\u001d\r\u0010\u001d\u0000\u0001m\u0000\u0000\u0005\u0005F\nF\u0000\b\u000bboovtrue\u0002\u0010\u001c\u0000\u0002\u0010\u001e\u0010\u001f\r\u0010\u001e\u0000\u0003l\u0000\u0002\u0005\u0005EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0010\u001f\u0000\u0002\u0010 \u0010!\r\u0010 \u0000\u0003l\u0000\u0002\u0005\u0005BA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0010!\u0000\u0002\u0010\"?\r\u0010\"\u0000\u0003l\u0000\u0002\u0005\u0005>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u0002\f\u0000\u0002\u0010#\u0010$\r\u0010#\u0000\u0002=\u0000\u0003\u0005\u0005\u0010%\u0010&\r\u0010%\u0000\u0002n\u0000\u0000\u0005\u0005\u0010'\u0010(\r\u0010'\u0000\u0001o\u0000\u0000\u0005\u0005;\u000b;\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u0010(\u0000\u0001o\u0000\u0000\u0005\u0005:\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010&\u0000\u0001m\u0000\u0000\u0005\u0005\u0010)\u000e\u0010)\u0000\u0001\u0010*\u0011\u0010*\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\u0010$\u0000\u0002\u0010+\u0010,\r\u0010+\u0000\u0001k\u0000\u0000\u0005\u0005\u0010-\u0002\u0010-\u0000\u0002\u0010.\u0010\/\r\u0010.\u0000\u0003l\u0000\u0002\u0005\u0005987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0010\/\u0000\u0002\u00100\u00101\r\u00100\u0000\u0003l\u0000\u0001\u0005\u00056\u00102\u00103\u00016\u0000\u0000\f\u00102\u0000\u0012\u0000\f IF SUMMARY:\u0000\u0002\u0000\u0000\u000e\u00103\u0000\u0001\u00104\u0011\u00104\u0000\u0018\u0000 \u0000I\u0000F\u0000 \u0000S\u0000U\u0000M\u0000M\u0000A\u0000R\u0000Y\u0000:\u0002\u00101\u0000\u0002\u00105\u00106\r\u00105\u0000\u0003l\u0000\u0001\u0005\u00055\u00107\u00108\u00015\u0000\u0000\f\u00107\u0000\u001b\u0000\u0015 Field Type = Summary\u0000\u0002\u0000\u0000\u000e\u00108\u0000\u0001\u00109\u0011\u00109\u0000*\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000=\u0000 \u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\u00106\u0000\u0002\u0010:\u0010;\r\u0010:\u0000\u0003l\u0000\u0001\u0005\u00054\u0010<\u0010=\u00014\u0000\u0000\f\u0010<\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\u0010=\u0000\u0001\u0010>\u0011\u0010>\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\u0010;\u0000\u0002\u0010?\u0010@\r\u0010?\u0000\u0003l\u0000\u0001\u0005\u00053\u0010A\u0010B\u00013\u0000\u0000\f\u0010A\u0000\/\u0000) Data Type: popup \"Calculation result is\"\u0000\u0002\u0000\u0000\u000e\u0010B\u0000\u0001\u0010C\u0011\u0010C\u0000R\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0000:\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000\"\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000\"\u0002\u0010@\u0000\u0002\u0010D\u0010E\r\u0010D\u0000\u0003l\u0000\u0001\u0005\u00052\u0010F\u0010G\u00012\u0000\u0000\f\u0010F\u0000\u0019\u0000\u0013 Calc Context Table\u0000\u0002\u0000\u0000\u000e\u0010G\u0000\u0001\u0010H\u0011\u0010H\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\u0010E\u0000\u0002\u0010I\u0010J\r\u0010I\u0000\u0003l\u0000\u0001\u0005\u00051\u0010K\u0010L\u00011\u0000\u0000\f\u0010K\u0000\u0019\u0000\u0013 Calculation itself\u0000\u0002\u0000\u0000\u000e\u0010L\u0000\u0001\u0010M\u0011\u0010M\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\u0010J\u0000\u0002\u0010N\u0010O\r\u0010N\u0000\u0003l\u0000\u0001\u0005\u00050\u0010P\u0010Q\u00010\u0000\u0000\f\u0010P\u0000\u0017\u0000\u0011 Do Not Evaluate\u0000\u0002\u0000\u0000\u000e\u0010Q\u0000\u0001\u0010R\u0011\u0010R\u0000\"\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\u0010O\u0000\u0002\u0010S\u0010T\r\u0010S\u0000\u0003l\u0000\u0001\u0005\u0005\/\u0010U\u0010V\u0001\/\u0000\u0000\f\u0010U\u0000\u000f\u0000\t Storage:\u0000\u0002\u0000\u0000\u000e\u0010V\u0000\u0001\u0010W\u0011\u0010W\u0000\u0012\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\u0010T\u0000\u0002\u0010X\u0010Y\r\u0010X\u0000\u0003l\u0000\u0001\u0005\u0005.\u0010Z\u0010[\u0001.\u0000\u0000\f\u0010Z\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\u0010[\u0000\u0001\u0010\\\u0011\u0010\\\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\u0010Y\u0000\u0002\u0010]\u0010^\r\u0010]\u0000\u0003l\u0000\u0002\u0005\u0005-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002\u0010^\u0000\u0002\u0010_\u0010`\r\u0010_\u0000\u0003l\u0000\u0001\u0005\u0005*\u0010a\u0010b\u0001*\u0000\u0000\f\u0010a\u0000p\u0000j if existing field was NOT ALREADY a summary, will get a warning message. Need to handle that possibility.\u0000\u0002\u0000\u0000\u000e\u0010b\u0000\u0001\u0010c\u0011\u0010c\u0000\u0000 \u0000i\u0000f\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000w\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000a\u0000 \u0000s\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0000,\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000.\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000.\u0002\u0010`\u0000\u0002\u0010d\u0010e\r\u0010d\u0000\u0003l\u0000\u0002\u0005\u0005)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0010e\u0000\u0002\u0010f\u0010g\r\u0010f\u0000\u0003l\u0000\u0001\u0005\u0005&\u0010h\u0010i\u0001&\u0000\u0000\f\u0010h\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010i\u0000\u0001\u0010j\u0011\u0010j\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010g\u0000\u0002\u0010k\u0010l\r\u0010k\u0000\u0003l\u0000\u0001\u0005\u0005%\u0010m\u0010n\u0001%\u0000\u0000\f\u0010m\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010n\u0000\u0001\u0010o\u0011\u0010o\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010l\u0000\u0002\u0010p\u0010q\r\u0010p\u0000\u0003l\u0000\u0001\u0005\u0005$\u0010r\u0010s\u0001$\u0000\u0000\f\u0010r\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010s\u0000\u0001\u0010t\u0011\u0010t\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010q\u0000\u0002\u0010u\u0010v\r\u0010u\u0000\u0003l\u0000\u0002\u0005\u0005#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0010v\u0000\u0002\u0010w \r\u0010w\u0000\u0003l\u0000\u0002\u0005\u0005\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002 \u0000\u0000\u0002\u0010,\u0000\u0002\u0010x\u0010y\r\u0010x\u0000\u0002=\u0000\u0003\u0005\u0005\u0010z\u0010{\r\u0010z\u0000\u0002n\u0000\u0000\u0005\u0005\u0010|\u0010}\r\u0010|\u0000\u0001o\u0000\u0000\u0005\u0005\u001c\u000b\u001c\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u0010}\u0000\u0001o\u0000\u0000\u0005\u0005\u001b\u000b\u001b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010{\u0000\u0001m\u0000\u0000\u0005\u0005\u0010~\u000e\u0010~\u0000\u0001\u0010\u0011\u0010\u0000\f\u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\u0002\u0010y\u0000\u0002\u0010\u001a\r\u0010\u0000\u0001k\u0000\u0000\u0005\u000f\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0019\u0010\u0010\u0001\u0019\u0000\u0000\f\u0010\u0000\/\u0000)ELSE IF NOT CALC (Field Type is Normal):\t\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000R\u0000E\u0000L\u0000S\u0000E\u0000 \u0000I\u0000F\u0000 \u0000N\u0000O\u0000T\u0000 \u0000C\u0000A\u0000L\u0000C\u0000 \u0000(\u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000i\u0000s\u0000 \u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\u0000)\u0000:\u0000\t\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0018\u0010\u0010\u0001\u0018\u0000\u0000\f\u0010\u0000\u0010\u0000\n Data Type\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u0014\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0017\u0010\u0010\u0001\u0017\u0000\u0000\f\u0010\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0016\u0010\u0010\u0001\u0016\u0000\u0000\f\u0010\u0000\u0014\u0000\u000e TAB: Storage:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u001c\u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0015\u0010\u0010\u0001\u0015\u0000\u0000\f\u0010\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0014\u0010\u0010\u0001\u0014\u0000\u0000\f\u0010\u0000\u0016\u0000\u0010 TAB: Auto-Enter\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000 \u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000A\u0000u\u0000t\u0000o\u0000-\u0000E\u0000n\u0000t\u0000e\u0000r\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0013\u0010\u0010\u0001\u0013\u0000\u0000\f\u0010\u0000-\u0000'\tCreation, Modification, Serial, Data, \u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000N\u0000\t\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000,\u0000 \u0000D\u0000a\u0000t\u0000a\u0000,\u0000 \u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0012\u0010\u0010\u0001\u0012\u0000\u0000\f\u0010\u0000\u0019\u0000\u0013\tCalculated Value: \u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000&\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0011\u0010\u0010\u0001\u0011\u0000\u0000\f\u0010\u0000\u001b\u0000\u0015 \t\tCalc Context Table\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000*\u0000 \u0000\t\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0010\u0010\u0010\u0001\u0010\u0000\u0000\f\u0010\u0000\u001b\u0000\u0015 \t\tCalculation itself\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000*\u0000 \u0000\t\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000f\u0010\u0010\u0001\u000f\u0000\u0000\f\u0010\u0000\u0019\u0000\u0013 \t\tDo Not Evaluate\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000&\u0000 \u0000\t\u0000\t\u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000e\u0010\u0010\u0001\u000e\u0000\u0000\f\u0010\u0000%\u0000\u001f\tDo not replace existing value\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000>\u0000\t\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\r\u0010\u0010\u0001\r\u0000\u0000\f\u0010\u0000\u0017\u0000\u0011 TAB: Validation:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\"\u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\f\u0010\u0010\u0001\f\u0000\u0000\f\u0010\u0000\u0015\u0000\u000f\t[Skip for now]\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u001e\u0000\t\u0000[\u0000S\u0000k\u0000i\u0000p\u0000 \u0000f\u0000o\u0000r\u0000 \u0000n\u0000o\u0000w\u0000]\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000b\u0010\u0010\u0001\u000b\u0000\u0000\f\u0010\u0000\u001d\u0000\u0017 Prohibit modification\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000.\u0000 \u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\n\t\b\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0001\u0010\u0010\u0001\u0001\u0000\u0000\f\u0010\u0000\u0017\u0000\u0011 field DATA TYPE:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\"\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000D\u0000A\u0000T\u0000A\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0004Z\u0000\u0000\u0005\u0006|\u0010\u0010\u0000\r\u0010\u0000\u0002G\u0000\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0002=\u0000\u0003\u0005\u0005\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u0010\u0000\u0002>\u0001\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\n\u0000\u0004\nnull\r\u0010\u0000\u0001k\u0000\u0000\u0005\u0006x\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0005\u0006\r\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0006\u000b\u0010\u0010\r\u0010\u0000\u00024\u0000\u0000\u0006\u0004\u0006\u000b\u0010\n\u0000\u0004\npopB\r\u0010\u0000\u0001m\u0000\u0000\u0006\u0007\u0006\n\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0006\u0004\u0010\u0010\r\u0010\u0000\u00024\u0000\u0000\u0005\u0006\u0004\u0010\n\u0000\u0004\ntabg\r\u0010\u0000\u0001m\u0000\u0000\u0006\u0002\u0006\u0003\u0003\u0000\u0001\r\u0010\u0000\u00024\u0000\u0000\u0005\u0005\u0010\n\u0000\u0004\ncwin\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\u0003\u0000\u0001\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0004Z\u0000\u0000\u0006\u000e\u0006x\u0010\u0010\r\u0010\u0000\u0002>\u0001\u0000\u0006\u000e\u0006\u0017\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0006\u000e\u0006\u0013\u0010\u0010\r\u0010\u0000\u00011\u0000\u0000\u0006\u000f\u0006\u0013\n\u0000\u0004\nvalL\r\u0010\u0000\u0001o\u0000\u0000\u0006\u000e\u0006\u000f\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\r\u0010\u0000\u0002n\u0000\u0000\u0006\u0013\u0006\u0016\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0006\u0014\u0006\u0016\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0010\u0000\u0001o\u0000\u0000\u0006\u0013\u0006\u0014\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010\u0000\u0001k\u0000\u0000\u0006\u001a\u0006t\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0001\u0006\u001a\u0006#\u0011\u0000\u0011\u0001\r\u0011\u0000\u0000\u0003I\u0000\u0000\u0006\u001b\u0006#\u0011\u0002\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0011\u0002\u0000\u0002\u0011\u0003\u0011\u0004\r\u0011\u0003\u0000\u0001o\u0000\u0000\u0006\u001b\u0006\u001c\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u0002\u0011\u0004\u0000\u0002\u0011\u0005\r\u0011\u0005\u0000\u0002n\u0000\u0000\u0006\u001c\u0006\u001f\u0011\u0006\u0011\u0007\r\u0011\u0006\u0000\u0001o\u0000\u0000\u0006\u001d\u0006\u001f\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0011\u0007\u0000\u0001o\u0000\u0000\u0006\u001c\u0006\u001d\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u0001\u0000\u0000f\u0000\u0000\u0006\u001a\u0006\u001b\u0002\u0010\u0000\u0002\u0011\b\u0011\t\r\u0011\b\u0000\u0003l\u0000\u0002\u0006$\u0006$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\t\u0000\u0002\u0011\n\u0011\u000b\r\u0011\n\u0000\u0003l\u0000\u0001\u0006$\u0006$\u0011\f\u0011\r\u0001\u0000\u0000\f\u0011\f\u0000*\u0000$ click CHANGE to save the data type.\u0000\u0002\u0000\u0000\u000e\u0011\r\u0000\u0001\u0011\u000e\u0011\u0011\u000e\u0000H\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000C\u0000H\u0000A\u0000N\u0000G\u0000E\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000t\u0000y\u0000p\u0000e\u0000.\u0002\u0011\u000b\u0000\u0002\u0011\u000f\u0011\u0010\r\u0011\u000f\u0000\u0002n\u0000\u0001\u0006$\u0006;\u0011\u0011\u0011\u0012\r\u0011\u0011\u0000\u0003I\u0000\u0000\u0006%\u0006;\u0011\u0013\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011\u0013\u0000\u0002\u0011\u0014\r\u0011\u0014\u0000\u0002n\u0000\u0000\u0006%\u00067\u0011\u0015\u0011\u0016\r\u0011\u0015\u0000\u00024\u0000\u0000\u00060\u00067\u0011\u0017\n\u0000\u0004\nbutT\r\u0011\u0017\u0000\u0001m\u0000\u0000\u00063\u00066\u0011\u0018\u000e\u0011\u0018\u0000\u0001\u0011\u0019\u0011\u0011\u0019\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\u0011\u0016\u0000\u0002n\u0000\u0000\u0006%\u00060\u0011\u001a\u0011\u001b\r\u0011\u001a\u0000\u00024\u0000\u0000\u0006+\u00060\u0011\u001c\n\u0000\u0004\ntabg\r\u0011\u001c\u0000\u0001m\u0000\u0000\u0006.\u0006\/\u0003\u0000\u0001\r\u0011\u001b\u0000\u00024\u0000\u0000\u0006%\u0006+\u0011\u001d\n\u0000\u0004\ncwin\r\u0011\u001d\u0000\u0001m\u0000\u0000\u0006)\u0006*\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u0012\u0000\u0000f\u0000\u0000\u0006$\u0006%\u0002\u0011\u0010\u0000\u0002\u0011\u001e\u0011\u001f\r\u0011\u001e\u0000\u0003l\u0000\u0002\u0006<\u0006<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u001f\u0000\u0002\u0011 \u0011!\r\u0011 \u0000\u0003I\u0000\u0002\u0006<\u0006C\u0011\"\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0011\"\u0000\u0001m\u0000\u0000\u0006<\u0006?\u0011#\b\u0011#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0011!\u0000\u0002\u0011$\u0011%\r\u0011$\u0000\u0003l\u0000\u0002\u0006D\u0006D\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011%\u0000\u0002\u0011&\u0011'\r\u0011&\u0000\u0003l\u0000\u0001\u0006D\u0006D\u0011(\u0011)\u0001\u0000\u0000\f\u0011(\u00009\u00003 MIGHT open a dialog warning about type conversion:\u0000\u0002\u0000\u0000\u000e\u0011)\u0000\u0001\u0011*\u0011\u0011*\u0000f\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0002\u0011'\u0000\u0002\u0011+\r\u0011+\u0000\u0004Z\u0000\u0000\u0006D\u0006t\u0011,\u0011-\r\u0011,\u0000\u0001H\u0000\u0000\u0006D\u0006S\u0011.\r\u0011.\u0000\u0002C\u0000\u0000\u0006D\u0006R\u0011\/\u00110\r\u0011\/\u0000\u0002n\u0000\u0000\u0006D\u0006N\u00111\u00112\r\u00111\u0000\u00011\u0000\u0000\u0006J\u0006N\n\u0000\u0004\npnam\r\u00112\u0000\u00024\u0000\u0000\u0006D\u0006J\u00113\n\u0000\u0004\ncwin\r\u00113\u0000\u0001m\u0000\u0000\u0006H\u0006I\u0003\u0000\u0001\r\u00110\u0000\u0001m\u0000\u0000\u0006N\u0006Q\u00114\u000e\u00114\u0000\u0001\u00115\u0011\u00115\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000F\u0000o\u0000r\r\u0011-\u0000\u0001k\u0000\u0000\u0006V\u0006p\u00116\u0002\u00116\u0000\u0002\u00117\u00118\r\u00117\u0000\u0003l\u0000\u0001\u0006V\u0006V\u00119\u0011:\u0001\u0000\u0000\f\u00119\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0011:\u0000\u0001\u0011;\u0011\u0011;\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u00118\u0000\u0002\u0011<\u0011=\r\u0011<\u0000\u0002n\u0000\u0001\u0006V\u0006h\u0011>\u0011?\r\u0011>\u0000\u0003I\u0000\u0000\u0006W\u0006h\u0011@\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011@\u0000\u0002\u0011A\r\u0011A\u0000\u0002n\u0000\u0000\u0006W\u0006d\u0011B\u0011C\r\u0011B\u0000\u00024\u0000\u0000\u0006]\u0006d\u0011D\n\u0000\u0004\nbutT\r\u0011D\u0000\u0001m\u0000\u0000\u0006`\u0006c\u0011E\u000e\u0011E\u0000\u0001\u0011F\u0011\u0011F\u0000\u0004\u0000O\u0000K\r\u0011C\u0000\u00024\u0000\u0000\u0006W\u0006]\u0011G\n\u0000\u0004\ncwin\r\u0011G\u0000\u0001m\u0000\u0000\u0006[\u0006\\\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011?\u0000\u0000f\u0000\u0000\u0006V\u0006W\u0002\u0011=\u0000\u0002\u0011H\u0011I\r\u0011H\u0000\u0003l\u0000\u0002\u0006i\u0006i\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011I\u0000\u0002\u0011J\r\u0011J\u0000\u0003I\u0000\u0002\u0006i\u0006p\u0011K\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0011K\u0000\u0001m\u0000\u0000\u0006i\u0006l\u0011L\b\u0011L\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0011M\u0011N\r\u0011M\u0000\u0003l\u0000\u0002\u0006}\u0006}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011N\u0000\u0002\u0011O\u0011P\r\u0011O\u0000\u0003l\u0000\u0002\u0006}\u0006}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011P\u0000\u0002\u0011Q\u0011R\r\u0011Q\u0000\u0003l\u0000\u0001\u0006}\u0006}\u0011S\u0011T\u0001\u0000\u0000\f\u0011S\u0000\u0016\u0000\u0010 click Options: \u0000\u0002\u0000\u0000\u000e\u0011T\u0000\u0001\u0011U\u0011\u0011U\u0000 \u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u0011R\u0000\u0002\u0011V\u0011W\r\u0011V\u0000\u0002n\u0000\u0001\u0006}\u0006\u0011X\u0011Y\r\u0011X\u0000\u0003I\u0000\u0000\u0006~\u0006\u0011Z\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011Z\u0000\u0002\u0011[\r\u0011[\u0000\u00026\u0001\u0000\u0006~\u0006\u0011\\\u0011]\r\u0011\\\u0000\u0002n\u0000\u0000\u0006~\u0006\u0011^\u0011_\r\u0011^\u0000\u00024\u0000\u0001\u0006\u0006\u0011`\n\u0000\u0004\nbutT\r\u0011`\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011_\u0000\u0002n\u0000\u0000\u0006~\u0006\u0011a\u0011b\r\u0011a\u0000\u00024\u0000\u0000\u0006\u0006\u0011c\n\u0000\u0004\ntabg\r\u0011c\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011b\u0000\u00024\u0000\u0000\u0006~\u0006\u0011d\n\u0000\u0004\ncwin\r\u0011d\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011]\u0000\u0002C\u0000\u0000\u0006\u0006\u0011e\u0011f\r\u0011e\u0000\u00011\u0000\u0000\u0006\u0006\n\u0000\u0004\npnam\r\u0011f\u0000\u0001m\u0000\u0000\u0006\u0006\u0011g\u000e\u0011g\u0000\u0001\u0011h\u0011\u0011h\u0000\u000e\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011Y\u0000\u0000f\u0000\u0000\u0006}\u0006~\u0002\u0011W\u0000\u0002\u0011i\u0011j\r\u0011i\u0000\u0002n\u0000\u0001\u0006\u0006\u0011k\u0011l\r\u0011k\u0000\u0003I\u0000\u0000\u0006\u0006\u0011m\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0011m\u0000\u0002\u0011n\r\u0011n\u0000\u0001K\u0000\u0000\u0006\u0006\u0011o\u0006\u0011o\u0000\u0003\u0011p\u0011q\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0011p\u0000\u0001m\u0000\u0000\u0006\u0006\u0011r\u000e\u0011r\u0000\u0001\u0011s\u0011\u0011s\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0011q\u0000\u0003\u0011t\u0011u\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0011t\u0000\u0001m\u0000\u0000\u0006\u0006\u0011v\u000e\u0011v\u0000\u0001\u0011w\u0011\u0011w\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0011u\u0000\u0003\u0011x\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0011x\u0000\u0001m\u0000\u0000\u0006\u0006\u0011y\u000e\u0011y\u0000\u0001\u0011z\u0011\u0011z\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011l\u0000\u0000f\u0000\u0000\u0006\u0006\u0002\u0011j\u0000\u0002\u0011{\u0011|\r\u0011{\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011|\u0000\u0002\u0011}\u0011~\r\u0011}\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011~\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002r\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u00024\u0000\u0000\u0006\u0006\u0011\n\u0000\u0004\ntabg\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011\u0000\u00024\u0000\u0000\u0006\u0006\u0011\n\u0000\u0004\ncwin\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000\u0013\u0000\r STORAGE TAB:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0004Z\u0000\u0000\u0006\t\u001e\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0007\u0007\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002=\u0000\u0003\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0011\u0000\u0003l\u0000\t\u0006\u0006\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006~\n~\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006}\u000b}\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006|\u000b|\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011{z\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006y\ny\u0000\u0004\nnull\u0001{\u0000\u0000\u0001z\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006x\u000bx\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006w\u000bw\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011vu\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006t\nt\u0000\u0004\nnull\u0001v\u0000\u0000\u0001u\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0007\u0003\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0007\u0001\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0007\u0001s\u000bs\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006r\u000br\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0007\u0001\u0007\u0002\u0011qp\r\u0011\u0000\u0001m\u0000\u0000\u0007\u0001\u0007\u0002o\no\u0000\u0004\nnull\u0001q\u0000\u0000\u0001p\u0000\u0000\r\u0011\u0000\u0001k\u0000\u0000\u0007\n\t\u001a\u0011\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0007\n\u0007\nnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0002\u0007\n\u0007\u0016k\u0011j\nk\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0011\u0000\u0002n\u0000\u0000\u0007\n\u0007\u0012\u0011\u0011\r\u0011\u0000\u00024\u0000\u0000\u0007\u000b\u0007\u0012i\u0011\ni\u0000\u0004\nradB\r\u0011\u0000\u0001m\u0000\u0000\u0007\u000e\u0007\u0011\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u0011\u0000\u0001o\u0000\u0000\u0007\n\u0007\u000bh\u000bh\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002j\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0007\u0017\u0007\u0017gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0007\u0017\u0007\u0017d\u0011\u0011\u0001d\u0000\u0000\f\u0011\u0000\u0013\u0000\r Repetitions:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000R\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0001\u0007\u0017\u00076\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0007\u0018\u00076c\u0011b\u000bc\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u00026\u0001\u0000\u0007\u0018\u0007-\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0007\u0018\u0007\u001e\u0011\u0011\r\u0011\u0000\u00024\u0000\u0001\u0007\u0019\u0007\u001ea\u0011\na\u0000\u0004\ntxtf\r\u0011\u0000\u0001m\u0000\u0000\u0007\u001c\u0007\u001d`\u0003`\u0000\u0001\r\u0011\u0000\u0001o\u0000\u0000\u0007\u0018\u0007\u0019_\u000b_\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0011\u0000\u0002E\u0000\u0000\u0007!\u0007,\u0011\u0011\r\u0011\u0000\u00011\u0000\u0000\u0007\"\u0007&^\n^\u0000\u0004\npnam\r\u0011\u0000\u0001m\u0000\u0000\u0007'\u0007+\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0016\u0000r\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0011\u0000\u0002\u0011]\r\u0011\u0000\u0002n\u0000\u0000\u0007-\u00072\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0007.\u00072\\\u000b\\\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u0011\u0000\u0001o\u0000\u0000\u0007-\u0007.[\u000b[\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002]\u0000\u0000\u0002b\u0000\u0000\r\u0011\u0000\u0000f\u0000\u0000\u0007\u0017\u0007\u0018\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u00077\u00077ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u00077\u00077W\u0011\u0011\u0001W\u0000\u0000\f\u0011\u0000\u000e\u0000\b Global:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0010\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000:\u0002\u0011\u0000\u0002\u0012\u0000\u0012\u0001\r\u0012\u0000\u0000\u0002r\u0000\u0000\u00077\u0007N\u0012\u0002\u0012\u0003\r\u0012\u0002\u0000\u00026\u0001\u0000\u00077\u0007L\u0012\u0004\u0012\u0005\r\u0012\u0004\u0000\u0002n\u0000\u0000\u00077\u0007=\u0012\u0006\u0012\u0007\r\u0012\u0006\u0000\u00024\u0000\u0001\u00078\u0007=V\u0012\b\nV\u0000\u0004\nchbx\r\u0012\b\u0000\u0001m\u0000\u0000\u0007;\u0007<U\u0003U\u0000\u0001\r\u0012\u0007\u0000\u0001o\u0000\u0000\u00077\u00078T\u000bT\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0012\u0005\u0000\u0002E\u0000\u0000\u0007@\u0007K\u0012\t\u0012\n\r\u0012\t\u0000\u00011\u0000\u0000\u0007A\u0007ES\nS\u0000\u0004\npnam\r\u0012\n\u0000\u0001m\u0000\u0000\u0007F\u0007J\u0012\u000b\u000e\u0012\u000b\u0000\u0001\u0012\f\u0011\u0012\f\u0000\u001c\u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u0012\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u0012\u0001\u0000\u0002\u0012\r\u0012\u000e\r\u0012\r\u0000\u0003l\u0000\u0002\u0007O\u0007OQPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002\u0012\u000e\u0000\u0002\u0012\u000f\u0012\u0010\r\u0012\u000f\u0000\u0004Z\u0000\u0000\u0007O\u0007s\u0012\u0011\u0012\u0012NM\r\u0012\u0011\u0000\u0002=\u0000\u0003\u0007O\u0007T\u0012\u0013\u0012\u0014\r\u0012\u0013\u0000\u0001o\u0000\u0000\u0007O\u0007PL\u000bL\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0012\u0014\u0000\u0001m\u0000\u0000\u0007P\u0007S\u0012\u0015\u000e\u0012\u0015\u0000\u0001\u0012\u0016\u0011\u0012\u0016\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u0012\u0012\u0000\u0001k\u0000\u0000\u0007W\u0007o\u0012\u0017\u0002\u0012\u0017\u0000\u0002\u0012\u0018\u0012\u0019\r\u0012\u0018\u0000\u0003l\u0000\u0001\u0007W\u0007WK\u0012\u001a\u0012\u001b\u0001K\u0000\u0000\f\u0012\u001a\u0000D\u0000> This CANNOT BE NULL, if we are making field conform!!!!!\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012\u001b\u0000\u0001\u0012\u001c\u0011\u0012\u001c\u0000|\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000C\u0000A\u0000N\u0000N\u0000O\u0000T\u0000 \u0000B\u0000E\u0000 \u0000N\u0000U\u0000L\u0000L\u0000,\u0000 \u0000i\u0000f\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000c\u0000o\u0000n\u0000f\u0000o\u0000r\u0000m\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012\u0019\u0000\u0002\u0012\u001dJ\r\u0012\u001d\u0000\u0004Z\u0000\u0001\u0007W\u0007o\u0012\u001e\u0012\u001fIH\r\u0012\u001e\u0000\u0002=\u0000\u0003\u0007W\u0007\\\u0012 \u0012!\r\u0012 \u0000\u0002n\u0000\u0000\u0007W\u0007Z\u0012\"\u0012#\r\u0012\"\u0000\u0001o\u0000\u0000\u0007X\u0007ZG\u000bG\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u0012#\u0000\u0001o\u0000\u0000\u0007W\u0007XF\u000bF\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0012!\u0000\u0001m\u0000\u0000\u0007Z\u0007[E\nE\u0000\u0004\nnull\r\u0012\u001f\u0000\u0003R\u0000\u0000\u0007_\u0007kD\u0012$\u0012%\nD\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0012$\u0000\u0001m\u0000\u0000\u0007g\u0007j\u0012&\u000e\u0012&\u0000\u0001\u0012'\u0011\u0012'\u0000@\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u0012%\u0000\u0003C\u0012(B\nC\u0000\u0004\nerrn\r\u0012(\u0000\u0001m\u0000\u0000\u0007c\u0007fA\u0003A\u0004\u0000\u0006B\u0000\u0000\u0002I\u0000\u0000\u0001H\u0000\u0000\u0002J\u0000\u0000\u0002N\u0000\u0000\u0001M\u0000\u0000\u0002\u0012\u0010\u0000\u0002\u0012)\u0012*\r\u0012)\u0000\u0003l\u0000\u0002\u0007t\u0007t@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0012*\u0000\u0002\u0012+\u0012,\r\u0012+\u0000\u0003l\u0000\u0002\u0007t\u0007t=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0012,\u0000\u0002\u0012-\u0012.\r\u0012-\u0000\u0003l\u0000\u0002\u0007t\u0007t:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0012.\u0000\u0002\u0012\/\u00120\r\u0012\/\u0000\u0004Z\u0000\u0000\u0007t\b\u00121\u001227\u00123\r\u00121\u0000\u0002n\u0000\u0000\u0007t\u0007x\u00124\u00125\r\u00124\u0000\u0001o\u0000\u0000\u0007u\u0007w6\u000b6\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u00125\u0000\u0001o\u0000\u0000\u0007t\u0007u5\u000b5\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00122\u0000\u0001k\u0000\u0000\u0007{\u0007\u00126\u0002\u00126\u0000\u0002\u00127\u00128\r\u00127\u0000\u0003l\u0000\u0002\u0007{\u0007{432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u00128\u0000\u0002\u00129\u0012:\r\u00129\u0000\u0004Z\u0000\u0000\u0007{\u0007\u0012;\u0012<10\r\u0012;\u0000\u0002>\u0001\u0000\u0007{\u0007\u0012=\u0012>\r\u0012=\u0000\u0002n\u0000\u0000\u0007{\u0007\u0012?\u0012@\r\u0012?\u0000\u00011\u0000\u0000\u0007|\u0007\/\n\/\u0000\u0004\nvalL\r\u0012@\u0000\u0001o\u0000\u0000\u0007{\u0007|.\u000b.\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\r\u0012>\u0000\u0001m\u0000\u0000\u0007\u0007-\u0003-\u0000\u0001\r\u0012<\u0000\u0001k\u0000\u0000\u0007\u0007\u0012A\u0002\u0012A\u0000\u0002\u0012B\u0012C\r\u0012B\u0000\u0003l\u0000\u0001\u0007\u0007,\u0012D\u0012E\u0001,\u0000\u0000\f\u0012D\u0000(\u0000\" should be GLOBAL, but is NOT yet:\u0000\u0002\u0000\u0000\u000e\u0012E\u0000\u0001\u0012F\u0011\u0012F\u0000D\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000G\u0000L\u0000O\u0000B\u0000A\u0000L\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000i\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000y\u0000e\u0000t\u0000:\u0002\u0012C\u0000\u0002\u0012G\u0012H\r\u0012G\u0000\u0002n\u0000\u0001\u0007\u0007\u0012I\u0012J\r\u0012I\u0000\u0003I\u0000\u0000\u0007\u0007+\u0012K*\u000b+\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002\u0012K\u0000\u0002\u0012L)\r\u0012L\u0000\u0001o\u0000\u0000\u0007\u0007(\u000b(\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002)\u0000\u0000\u0002*\u0000\u0000\r\u0012J\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012H\u0000\u0002\u0012M\u0012N\r\u0012M\u0000\u0003I\u0000\u0002\u0007\u0007'\u0012O&\n'\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0012O\u0000\u0001m\u0000\u0000\u0007\u0007\u0012P\b\u0012P\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002&\u0000\u0000\u0002\u0012N\u0000\u0002\u0012Q\u0012R\r\u0012Q\u0000\u0003l\u0000\u0002\u0007\u0007%$#\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0012R\u0000\u0002\u0012S\u0012T\r\u0012S\u0000\u0003l\u0000\u0001\u0007\u0007\"\u0012U\u0012V\u0001\"\u0000\u0000\f\u0012U\u0000G\u0000A MIGHT open a dialog warning about change to global status:\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012V\u0000\u0001\u0012W\u0011\u0012W\u0000\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000o\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000:\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012T\u0000\u0002\u0012X!\r\u0012X\u0000\u0004Z\u0000\u0000\u0007\u0007\u0012Y\u0012Z \u001f\r\u0012Y\u0000\u0001H\u0000\u0000\u0007\u0007\u0012[\r\u0012[\u0000\u0002C\u0000\u0000\u0007\u0007\u0012\\\u0012]\r\u0012\\\u0000\u0002n\u0000\u0000\u0007\u0007\u0012^\u0012_\r\u0012^\u0000\u00011\u0000\u0000\u0007\u0007\u001e\n\u001e\u0000\u0004\npnam\r\u0012_\u0000\u00024\u0000\u0000\u0007\u0007\u001d\u0012`\n\u001d\u0000\u0004\ncwin\r\u0012`\u0000\u0001m\u0000\u0000\u0007\u0007\u001c\u0003\u001c\u0000\u0001\r\u0012]\u0000\u0001m\u0000\u0000\u0007\u0007\u0012a\u000e\u0012a\u0000\u0001\u0012b\u0011\u0012b\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\r\u0012Z\u0000\u0001k\u0000\u0000\u0007\u0007\u0012c\u0002\u0012c\u0000\u0002\u0012d\u0012e\r\u0012d\u0000\u0003l\u0000\u0001\u0007\u0007\u001b\u0012f\u0012g\u0001\u001b\u0000\u0000\f\u0012f\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0012g\u0000\u0001\u0012h\u0011\u0012h\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u0012e\u0000\u0002\u0012i\u0012j\r\u0012i\u0000\u0002n\u0000\u0001\u0007\u0007\u0012k\u0012l\r\u0012k\u0000\u0003I\u0000\u0000\u0007\u0007\u001a\u0012m\u0019\u000b\u001a\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0012m\u0000\u0002\u0012n\u0018\r\u0012n\u0000\u0002n\u0000\u0000\u0007\u0007\u0012o\u0012p\r\u0012o\u0000\u00024\u0000\u0000\u0007\u0007\u0017\u0012q\n\u0017\u0000\u0004\nbutT\r\u0012q\u0000\u0001m\u0000\u0000\u0007\u0007\u0012r\u000e\u0012r\u0000\u0001\u0012s\u0011\u0012s\u0000\u0004\u0000O\u0000K\r\u0012p\u0000\u00024\u0000\u0000\u0007\u0007\u0016\u0012t\n\u0016\u0000\u0004\ncwin\r\u0012t\u0000\u0001m\u0000\u0000\u0007\u0007\u0015\u0003\u0015\u0000\u0001\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\r\u0012l\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012j\u0000\u0002\u0012u\u0012v\r\u0012u\u0000\u0003l\u0000\u0002\u0007\u0007\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0012v\u0000\u0002\u0012w\u0012x\r\u0012w\u0000\u0003l\u0000\u0001\u0007\u0007\u0011\u0012y\u0012z\u0001\u0011\u0000\u0000\f\u0012y\u0000<\u00006 wait until back to normal \"Options for Field\" window:\u0000\u0002\u0000\u0000\u000e\u0012z\u0000\u0001\u0012{\u0011\u0012{\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000\"\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000\"\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0012x\u0000\u0002\u0012|\u0012}\r\u0012|\u0000\u0002n\u0000\u0001\u0007\u0007\u0012~\u0012\r\u0012~\u0000\u0003I\u0000\u0000\u0007\u0007\u0010\u0012\u000f\u000b\u0010\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0012\u0000\u0002\u0012\u000e\r\u0012\u0000\u0001K\u0000\u0000\u0007\u0007\u0012\u0006\u0012\u0000\u0003\r\u0012\u0012\u000b\r\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0012\u0000\u0003\f\u0012\u0012\u000b\f\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0012\u0000\u0003\u000b\u0012\n\u000b\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\n\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u000f\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012}\u0000\u0002\u0012\t\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\t\u0000\u0000\u0002 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0012:\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0002\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u00027\u0000\u0000\r\u00123\u0000\u0003l\u0000\u0003\u0007\b\u0012\u0012\u0012\r\u0012\u0000\u0001k\u0000\u0000\u0007\b\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0004Z\u0000\u0000\u0007\bH\u0012\u0012\r\u0012\u0000\u0002>\u0001\u0000\u0007\u0007\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\u0007\u0007\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0007\u0007\n\u0000\u0004\nvalL\r\u0012\u0000\u0001o\u0000\u0000\u0007\u0007\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0003\u0000\u0000\r\u0012\u0000\u0001k\u0000\u0000\u0007\bD\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0007\u0007\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000$\u0000\u001e IS GLOBAL, but should NOT be:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000<\u0000 \u0000I\u0000S\u0000 \u0000G\u0000L\u0000O\u0000B\u0000A\u0000L\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000N\u0000O\u0000T\u0000 \u0000b\u0000e\u0000:\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\u0007\u0007\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0007\u0007\u0012\u000b\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0007\u0007\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0002\u0007\u0007\u0012\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\b\u0012\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0007\u0007\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000G\u0000A MIGHT open a dialog warning about change to global status:\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000o\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000:\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0004Z\u0000\u0000\u0007\bB\u0012\u0012\r\u0012\u0000\u0001H\u0000\u0000\u0007\b\u000b\u0012\r\u0012\u0000\u0002C\u0000\u0000\u0007\b\n\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\u0007\b\u0006\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\b\u0002\b\u0006\n\u0000\u0004\npnam\r\u0012\u0000\u00024\u0000\u0000\u0007\b\u0002\u0012\n\u0000\u0004\ncwin\r\u0012\u0000\u0001m\u0000\u0000\b\u0000\b\u0001\u0003\u0000\u0001\r\u0012\u0000\u0001m\u0000\u0000\b\u0006\b\t\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\r\u0012\u0000\u0001k\u0000\u0000\b\u000e\b>\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\b\u000e\b\u000e\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\b\u000e\b \u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\b\u000f\b \u0012\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0002n\u0000\u0000\b\u000f\b\u001c\u0012\u0012\r\u0012\u0000\u00024\u0000\u0000\b\u0015\b\u001c\u0012\n\u0000\u0004\nbutT\r\u0012\u0000\u0001m\u0000\u0000\b\u0018\b\u001b\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0004\u0000O\u0000K\r\u0012\u0000\u00024\u0000\u0000\b\u000f\b\u0015\u0012\n\u0000\u0004\ncwin\r\u0012\u0000\u0001m\u0000\u0000\b\u0013\b\u0014\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\b\u000e\b\u000f\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\b!\b!\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\b!\b!\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000<\u00006 wait until back to normal \"Options for Field\" window:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000\"\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000\"\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\b!\b<\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\b\"\b<\u0012\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001K\u0000\u0000\b\"\b8\u0012\u0006\u0012\u0000\u0003\u0012\u0012\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0012\u0000\u0001m\u0000\u0000\b%\b(\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0012\u0000\u0003\u0012\u0012\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0012\u0000\u0001m\u0000\u0000\b+\b.\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0012\u0000\u0003\u0012\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0012\u0000\u0001m\u0000\u0000\b1\b4\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\b!\b\"\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003l\u0000\u0002\b=\b=\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003l\u0000\u0002\bC\bC\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\bI\bI\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\bI\bI\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\bI\bI\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000;\u00005 Then see which one of the Indexing choices is needed\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000j\u0000 \u0000T\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000o\u0000i\u0000c\u0000e\u0000s\u0000 \u0000i\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0004Z\u0000\u0000\bI\b\u0012\u0012\u0012\r\u0012\u0000\u0002=\u0000\u0003\bI\bR\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\bI\bN\u0012\u0013\u0000\r\u0012\u0000\u0001o\u0000\u0000\bJ\bN\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0013\u0000\u0000\u0001o\u0000\u0000\bI\bJ\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0012\u0000\u0001m\u0000\u0000\bN\bQ\u0013\u0001\u000e\u0013\u0001\u0000\u0001\u0013\u0002\u0011\u0013\u0002\u0000\b\u0000N\u0000o\u0000n\u0000e\r\u0012\u0000\u0001k\u0000\u0000\bU\be\u0013\u0003\u0002\u0013\u0003\u0000\u0002\u0013\u0004\u0013\u0005\r\u0013\u0004\u0000\u0002n\u0000\u0001\bU\bc\u0013\u0006\u0013\u0007\r\u0013\u0006\u0000\u0003I\u0000\u0000\bV\bc\u0013\b\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\b\u0000\u0002\u0013\t\u0013\n\r\u0013\t\u0000\u0002n\u0000\u0000\bV\b^\u0013\u000b\u0013\f\r\u0013\u000b\u0000\u00024\u0000\u0000\bW\b^\u0013\r\n\u0000\u0004\nchbx\r\u0013\r\u0000\u0001m\u0000\u0000\bZ\b]\u0013\u000e\u000e\u0013\u000e\u0000\u0001\u0013\u000f\u0011\u0013\u000f\u0000\u0016\u0000N\u0000o\u0000n\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013\f\u0000\u0001o\u0000\u0000\bV\bW\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\n\u0000\u0002\u0013\u0010\r\u0013\u0010\u0000\u0001m\u0000\u0000\b^\b_\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013\u0007\u0000\u0000f\u0000\u0000\bU\bV\u0002\u0013\u0005\u0000\u0002\u0013\u0011\r\u0013\u0011\u0000\u0001o\u0000\u0000\bd\be\u000b\u0000\u000b0\u0000\u0007fdsfdsf\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0013\u0012\u0013\u0013\r\u0013\u0012\u0000\u0002=\u0000\u0003\bh\bq\u0013\u0014\u0013\u0015\r\u0013\u0014\u0000\u0002n\u0000\u0000\bh\bm\u0013\u0016\u0013\u0017\r\u0013\u0016\u0000\u0001o\u0000\u0000\bi\bm\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0013\u0017\u0000\u0001o\u0000\u0000\bh\bi\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0015\u0000\u0001m\u0000\u0000\bm\bp\u0013\u0018\u000e\u0013\u0018\u0000\u0001\u0013\u0019\u0011\u0013\u0019\u0000\u000e\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0002\u0013\u0013\u0000\u0002\u0013\u001a\u0013\u001b\r\u0013\u001a\u0000\u0001k\u0000\u0000\bt\b\u0013\u001c\u0002\u0013\u001c\u0000\u0002\u0013\u001d\u0013\u001e\r\u0013\u001d\u0000\u0002n\u0000\u0001\bt\b\u0013\u001f\u0013 \r\u0013\u001f\u0000\u0003I\u0000\u0000\bu\b\u0013!\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013!\u0000\u0002\u0013\"\u0013#\r\u0013\"\u0000\u0002n\u0000\u0000\bu\b}\u0013$\u0013%\r\u0013$\u0000\u00024\u0000\u0000\bv\b}\u0013&\n\u0000\u0004\nchbx\r\u0013&\u0000\u0001m\u0000\u0000\by\b|\u0013'\u000e\u0013'\u0000\u0001\u0013(\u0011\u0013(\u0000\u001c\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013%\u0000\u0001o\u0000\u0000\bu\bv\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013#\u0000\u0002\u0013)\r\u0013)\u0000\u0001m\u0000\u0000\b}\b~\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013 \u0000\u0000f\u0000\u0000\bt\bu\u0002\u0013\u001e\u0000\u0002\u0013*\r\u0013*\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0013\u001b\u0000\u0002\u0013+\u0013,\r\u0013+\u0000\u0002=\u0000\u0003\b\b\u0013-\u0013.\r\u0013-\u0000\u0002n\u0000\u0000\b\b\u0013\/\u00130\r\u0013\/\u0000\u0001o\u0000\u0000\b\b\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u00130\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013.\u0000\u0001m\u0000\u0000\b\b\u00131\u000e\u00131\u0000\u0001\u00132\u0011\u00132\u0000\u0006\u0000A\u0000l\u0000l\u0002\u0013,\u0000\u0002\u00133\r\u00133\u0000\u0001k\u0000\u0000\b\b\u00134\u0002\u00134\u0000\u0002\u00135\u00136\r\u00135\u0000\u0002n\u0000\u0001\b\b\u00137\u00138\r\u00137\u0000\u0003I\u0000\u0000\b\b\u00139\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u00139\u0000\u0002\u0013:\u0013;\r\u0013:\u0000\u0002n\u0000\u0000\b\b\u0013<\u0013=\r\u0013<\u0000\u00024\u0000\u0000\b\b\u0013>\n\u0000\u0004\nchbx\r\u0013>\u0000\u0001m\u0000\u0000\b\b\u0013?\u000e\u0013?\u0000\u0001\u0013@\u0011\u0013@\u0000\u0014\u0000A\u0000l\u0000l\u0000 \u00003\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013=\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013;\u0000\u0002\u0013A\r\u0013A\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u00138\u0000\u0000f\u0000\u0000\b\b\u0002\u00136\u0000\u0002\u0013B\r\u0013B\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u0012\u0000'\u0000! NOT global, SO UNCHECK it FIRST:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0013C\u0011\u0013C\u0000B\u0000 \u0000N\u0000O\u0000T\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000S\u0000O\u0000 \u0000U\u0000N\u0000C\u0000H\u0000E\u0000C\u0000K\u0000 \u0000i\u0000t\u0000 \u0000F\u0000I\u0000R\u0000S\u0000T\u0000:\u0002\u00120\u0000\u0002\u0013D\u0013E\r\u0013D\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0013E\u0000\u0002\u0013F\u0013G\r\u0013F\u0000\u0003l\u0000\u0001\b\b\u0013H\u0013I\u0001\u0000\u0000\f\u0013H\u0000\u0017\u0000\u0011 Index Language: \u0000\u0002\u0000\u0000\u000e\u0013I\u0000\u0001\u0013J\u0011\u0013J\u0000\"\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000 \u0000L\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0000:\u0000 \u0002\u0013G\u0000\u0002\u0013K\u0013L\r\u0013K\u0000\u0004Z\u0000\u0000\b\b\u0013M\u0013N\r\u0013M\u0000\u0002>\u0001\u0000\b\b\u0013O\u0013P\r\u0013O\u0000\u0002n\u0000\u0000\b\b\u0013Q\u0013R\r\u0013Q\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0013R\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013P\u0000\u0001m\u0000\u0000\b\b\n\u0000\u0004\nnull\r\u0013N\u0000\u0002n\u0000\u0001\b\b\u0013S\u0013T\r\u0013S\u0000\u0003I\u0000\u0000\b\b\u0013U\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0013U\u0000\u0002\u0013V\u0013W\r\u0013V\u0000\u00026\u0001\u0000\b\b\u0013X\u0013Y\r\u0013X\u0000\u0002n\u0000\u0000\b\b\u0013Z\u0013[\r\u0013Z\u0000\u00024\u0000\u0001\b\b\u0013\\\n\u0000\u0004\npopB\r\u0013\\\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\r\u0013[\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0013Y\u0000\u0002E\u0000\u0000\b\b\u0013]\u0013^\r\u0013]\u0000\u00011\u0000\u0000\b\b\n\u0000\u0004\npnam\r\u0013^\u0000\u0001m\u0000\u0000\b\b\u0013_\u000e\u0013_\u0000\u0001\u0013`\u0011\u0013`\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000l\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0002\u0013W\u0000\u0002\u0013a\r\u0013a\u0000\u0002n\u0000\u0000\b\b\u0013b\u0013c\r\u0013b\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0013c\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013T\u0000\u0000f\u0000\u0000\b\b\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0013L\u0000\u0002\u0013d\u0013e\r\u0013d\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0013e\u0000\u0002\u0013f\u0013g\r\u0013f\u0000\u0003l\u0000\u0001\b\b\u0013h\u0013i\u0001\u0000\u0000\f\u0013h\u0000%\u0000\u001f Create indexes automatically: \u0000\u0002\u0000\u0000\u000e\u0013i\u0000\u0001\u0013j\u0011\u0013j\u0000>\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\u0000 \u0000a\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000:\u0000 \u0002\u0013g\u0000\u0002\u0013k\u0013l\r\u0013k\u0000\u0004Z\u0000\u0000\b\t\u0018\u0013m\u0013n\r\u0013m\u0000\u0002>\u0001\u0000\b\b\u0013o\u0013p\r\u0013o\u0000\u0002n\u0000\u0000\b\b\u0013q\u0013r\r\u0013q\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0013r\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013p\u0000\u0001m\u0000\u0000\b\b\n\u0000\u0004\nnull\r\u0013n\u0000\u0001k\u0000\u0000\b\t\u0014\u0013s\u0002\u0013s\u0000\u0002\u0013t\u0013u\r\u0013t\u0000\u0002r\u0000\u0000\b\b\u0013v\u0013w\r\u0013v\u0000\u00026\u0001\u0000\b\b\u0013x\u0013y\r\u0013x\u0000\u0002n\u0000\u0000\b\b\u0013z\u0013{\r\u0013z\u0000\u00024\u0000\u0001\b\b\u0013|\n\u0000\u0004\nchbx\r\u0013|\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\r\u0013{\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0013y\u0000\u0002E\u0000\u0000\b\b\u0013}\u0013~\r\u0013}\u0000\u00011\u0000\u0000\b\b\n\u0000\u0004\npnam\r\u0013~\u0000\u0001m\u0000\u0000\b\b\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001c\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\r\u0013w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013u\u0000\u0002\u0013\u0013\r\u0013\u0000\u0004Z\u0000\u0000\b\t\u0012\u0013\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\b\b\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0013\u0000\u0001o\u0000\u0000\b\b~\u000b~\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0002n\u0000\u0001\t\u0001\t\b\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\t\u0002\t\b}\u0013|\u000b}\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t\u0002\t\u0003{\u000b{\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013\u0000\u0002\u0013z\r\u0013\u0000\u0001m\u0000\u0000\t\u0003\t\u0004y\u0003y\u0000\u0001\u0002z\u0000\u0000\u0002|\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\t\u0001\t\u0002\u0002\u0000\u0000\r\u0013\u0000\u0002n\u0000\u0001\t\u000b\t\u0012\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\t\f\t\u0012x\u0013w\u000bx\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t\f\t\rv\u000bv\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013\u0000\u0002\u0013u\r\u0013\u0000\u0001m\u0000\u0000\t\r\t\u000et\u0003t\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\t\u000b\t\f\u0002\u0013\u0000\u0002\u0013s\r\u0013\u0000\u0003l\u0000\u0002\t\u0013\t\u0013rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002s\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0013l\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t\u0019\t\u0019onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0013\u0000\u0002\u0013l\r\u0013\u0000\u0003l\u0000\u0001\t\u0019\t\u0019k\u0013\u0013\u0001k\u0000\u0000\f\u0013\u0000\u001b\u0000\u0015 END OF: Storage Tab.\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000*\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000T\u0000a\u0000b\u0000.\u0002l\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t\u001f\t\u001fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fg\u0013\u0013\u0001g\u0000\u0000\f\u0013\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001ff\u0013\u0013\u0001f\u0000\u0000\f\u0013\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fe\u0013\u0013\u0001e\u0000\u0000\f\u0013\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fd\u0013\u0013\u0001d\u0000\u0000\f\u0013\u0000\u0016\u0000\u0010 AUTO-ENTER TAB:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000 \u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000E\u0000N\u0000T\u0000E\u0000R\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fc\u0013\u0013\u0001c\u0000\u0000\f\u0013\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002r\u0000\u0000\t\u001f\t,\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\t\u001f\t*\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\t%\t*b\u0013\nb\u0000\u0004\ntabg\r\u0013\u0000\u0001m\u0000\u0000\t(\t)a\u0003a\u0000\u0001\r\u0013\u0000\u00024\u0000\u0000\t\u001f\t%`\u0013\n`\u0000\u0004\ncwin\r\u0013\u0000\u0001m\u0000\u0000\t#\t$_\u0003_\u0000\u0001\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0002\t-\t9]\u0013\\\n]\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0013\u0000\u0002n\u0000\u0000\t-\t5\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\t.\t5[\u0013\n[\u0000\u0004\nradB\r\u0013\u0000\u0001m\u0000\u0000\t1\t4\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000-\u0000E\u0000n\u0000t\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\t-\t.Z\u000bZ\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\\\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t:\t:YXW\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t:\t:V\u0013\u0013\u0001V\u0000\u0000\f\u0013\u0000\u0015\u0000\u000f Serial Number:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001e\u0000 \u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000N\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0004Z\u0000\u0000\t:\n\u0005\u0013\u0013UT\r\u0013\u0000\u0002>\u0001\u0000\t:\tA\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\t:\t?\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t;\t?S\u000bS\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0013\u0000\u0001o\u0000\u0000\t:\t;R\u000bR\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\t?\t@Q\nQ\u0000\u0004\nnull\r\u0013\u0000\u0004Z\u0000\u0000\tD\n\u0001\u0013\u0013P\u0013\r\u0013\u0000\u0002=\u0000\u0003\tD\tQ\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tD\tM\u0013\u0013\r\u0013\u0000\u0001m\u0000\u0000\tI\tMO\nO\u0000\u0004\npcls\r\u0013\u0000\u0002n\u0000\u0000\tD\tI\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\tE\tIN\u000bN\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0013\u0000\u0001o\u0000\u0000\tD\tEM\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\tM\tPL\nL\u0000\u0004\nbool\r\u0013\u0000\u0002n\u0000\u0001\tT\tb\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\tU\tbK\u0013J\u000bK\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tU\t]\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\tV\t]I\u0013\nI\u0000\u0004\nchbx\r\u0013\u0000\u0001m\u0000\u0000\tY\t\\\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\tU\tVH\u000bH\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013G\r\u0013\u0000\u0001m\u0000\u0000\t]\t^F\u0003F\u0000\u0000\u0002G\u0000\u0000\u0002J\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\tT\tU\u0002P\u0000\u0000\r\u0013\u0000\u0001k\u0000\u0000\te\n\u0001\u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\te\teE\u0013\u0013\u0001E\u0000\u0000\f\u0013\u0000*\u0000$ autoSerial is a RECORD of settings:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000H\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000i\u0000s\u0000 \u0000a\u0000 \u0000R\u0000E\u0000C\u0000O\u0000R\u0000D\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0001\te\ts\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\tf\tsD\u0013C\u000bD\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tf\tn\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\tg\tnB\u0013\nB\u0000\u0004\nchbx\r\u0013\u0000\u0001m\u0000\u0000\tj\tm\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\tf\tgA\u000bA\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013@\r\u0013\u0000\u0001m\u0000\u0000\tn\to?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0002C\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\te\tf\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\tt\tt>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\tt\tt;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0013\u0000\u0002\u0014\u0000\u0014\u0001\r\u0014\u0000\u0000\u0002n\u0000\u0001\tt\t\u0014\u0002\u0014\u0003\r\u0014\u0002\u0000\u0003I\u0000\u0000\tu\t8\u0014\u00047\u000b8\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0014\u0004\u0000\u0002\u0014\u0005\u0014\u0006\r\u0014\u0005\u0000\u00026\u0001\u0000\tu\t\u0014\u0007\u0014\b\r\u0014\u0007\u0000\u0002n\u0000\u0000\tu\t{\u0014\t\u0014\n\r\u0014\t\u0000\u00024\u0000\u0001\tv\t{6\u0014\u000b\n6\u0000\u0004\ntxtf\r\u0014\u000b\u0000\u0001m\u0000\u0000\ty\tz5\u00035\u0000\u0001\r\u0014\n\u0000\u0001o\u0000\u0000\tu\tv4\u000b4\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\b\u0000\u0002E\u0000\u0000\t~\t\u0014\f\u0014\r\r\u0014\f\u0000\u00011\u0000\u0000\t\t3\n3\u0000\u0004\npnam\r\u0014\r\u0000\u0001m\u0000\u0000\t\t\u0014\u000e\u000e\u0014\u000e\u0000\u0001\u0014\u000f\u0011\u0014\u000f\u0000\u0014\u0000n\u0000e\u0000x\u0000t\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0002\u0014\u0006\u0000\u0002\u0014\u00102\r\u0014\u0010\u0000\u0002n\u0000\u0000\t\t\u0014\u0011\u0014\u0012\r\u0014\u0011\u0000\u0001o\u0000\u0000\t\t1\u000b1\u0000\u001e0\u0000\rautonextvalue\u0000\rautoNextValue\r\u0014\u0012\u0000\u0002n\u0000\u0000\t\t\u0014\u0013\u0014\u0014\r\u0014\u0013\u0000\u0001o\u0000\u0000\t\t0\u000b0\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014\u0014\u0000\u0001o\u0000\u0000\t\t\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022\u0000\u0000\u00027\u0000\u0000\r\u0014\u0003\u0000\u0000f\u0000\u0000\tt\tu\u0002\u0014\u0001\u0000\u0002\u0014\u0015\u0014\u0016\r\u0014\u0015\u0000\u0003l\u0000\u0002\t\t.-,\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0002\u0014\u0016\u0000\u0002\u0014\u0017\u0014\u0018\r\u0014\u0017\u0000\u0002n\u0000\u0001\t\t\u0014\u0019\u0014\u001a\r\u0014\u0019\u0000\u0003I\u0000\u0000\t\t+\u0014\u001b*\u000b+\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0014\u001b\u0000\u0002\u0014\u001c\u0014\u001d\r\u0014\u001c\u0000\u00026\u0001\u0000\t\t\u0014\u001e\u0014\u001f\r\u0014\u001e\u0000\u0002n\u0000\u0000\t\t\u0014 \u0014!\r\u0014 \u0000\u00024\u0000\u0001\t\t)\u0014\"\n)\u0000\u0004\ntxtf\r\u0014\"\u0000\u0001m\u0000\u0000\t\t(\u0003(\u0000\u0001\r\u0014!\u0000\u0001o\u0000\u0000\t\t'\u000b'\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\u001f\u0000\u0002E\u0000\u0000\t\t\u0014#\u0014$\r\u0014#\u0000\u00011\u0000\u0000\t\t&\n&\u0000\u0004\npnam\r\u0014$\u0000\u0001m\u0000\u0000\t\t\u0014%\u000e\u0014%\u0000\u0001\u0014&\u0011\u0014&\u0000\u0012\u0000i\u0000n\u0000c\u0000r\u0000e\u0000m\u0000e\u0000n\u0000t\u0002\u0014\u001d\u0000\u0002\u0014'%\r\u0014'\u0000\u0002n\u0000\u0000\t\t\u0014(\u0014)\r\u0014(\u0000\u0001o\u0000\u0000\t\t$\u000b$\u0000\u001e0\u0000\rautoincrement\u0000\rautoIncrement\r\u0014)\u0000\u0002n\u0000\u0000\t\t\u0014*\u0014+\r\u0014*\u0000\u0001o\u0000\u0000\t\t#\u000b#\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014+\u0000\u0001o\u0000\u0000\t\t\"\u000b\"\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0000\u0000\u0002*\u0000\u0000\r\u0014\u001a\u0000\u0000f\u0000\u0000\t\t\u0002\u0014\u0018\u0000\u0002\u0014,\u0014-\r\u0014,\u0000\u0003l\u0000\u0002\t\t! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0014-\u0000\u0002\u0014.\u0014\/\r\u0014.\u0000\u0004Z\u0000\u0000\t\t\u00140\u00141\u00142\u001e\r\u00140\u0000\u0002=\u0000\u0003\t\t\u00143\u00144\r\u00143\u0000\u0002n\u0000\u0000\t\t\u00145\u00146\r\u00145\u0000\u0001o\u0000\u0000\t\t\u001d\u000b\u001d\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\r\u00146\u0000\u0002n\u0000\u0000\t\t\u00147\u00148\r\u00147\u0000\u0001o\u0000\u0000\t\t\u001c\u000b\u001c\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u00148\u0000\u0001o\u0000\u0000\t\t\u001b\u000b\u001b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00144\u0000\u0001m\u0000\u0000\t\t\u00149\u000e\u00149\u0000\u0001\u0014:\u0011\u0014:\u0000\u0014\u0000O\u0000n\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\r\u00141\u0000\u0002n\u0000\u0001\t\t\u0014;\u0014<\r\u0014;\u0000\u0003I\u0000\u0000\t\t\u001a\u0014=\u0019\u000b\u001a\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014=\u0000\u0002\u0014>\u0014?\r\u0014>\u0000\u0002n\u0000\u0000\t\t\u0014@\u0014A\r\u0014@\u0000\u00024\u0000\u0000\t\t\u0018\u0014B\n\u0018\u0000\u0004\nchbx\r\u0014B\u0000\u0001m\u0000\u0000\t\t\u0014C\u000e\u0014C\u0000\u0001\u0014D\u0011\u0014D\u0000$\u0000O\u0000n\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00002\r\u0014A\u0000\u0001o\u0000\u0000\t\t\u0017\u000b\u0017\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014?\u0000\u0002\u0014E\u0016\r\u0014E\u0000\u0001m\u0000\u0000\t\t\u0015\u0003\u0015\u0000\u0001\u0002\u0016\u0000\u0000\u0002\u0019\u0000\u0000\r\u0014<\u0000\u0000f\u0000\u0000\t\t\u0002\u00142\u0000\u0002\u0014F\u0014G\r\u0014F\u0000\u0002=\u0000\u0003\t\t\u0014H\u0014I\r\u0014H\u0000\u0002n\u0000\u0000\t\t\u0014J\u0014K\r\u0014J\u0000\u0001o\u0000\u0000\t\t\u0014\u000b\u0014\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\r\u0014K\u0000\u0002n\u0000\u0000\t\t\u0014L\u0014M\r\u0014L\u0000\u0001o\u0000\u0000\t\t\u0013\u000b\u0013\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014M\u0000\u0001o\u0000\u0000\t\t\u0012\u000b\u0012\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014I\u0000\u0001m\u0000\u0000\t\t\u0014N\u000e\u0014N\u0000\u0001\u0014O\u0011\u0014O\u0000\u0010\u0000O\u0000n\u0000C\u0000o\u0000m\u0000m\u0000i\u0000t\u0002\u0014G\u0000\u0002\u0014P\u0011\r\u0014P\u0000\u0002n\u0000\u0001\t\t\u0014Q\u0014R\r\u0014Q\u0000\u0003I\u0000\u0000\t\t\u0010\u0014S\u000f\u000b\u0010\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014S\u0000\u0002\u0014T\u0014U\r\u0014T\u0000\u0002n\u0000\u0000\t\t\u0014V\u0014W\r\u0014V\u0000\u00024\u0000\u0000\t\t\u000e\u0014X\n\u000e\u0000\u0004\nchbx\r\u0014X\u0000\u0001m\u0000\u0000\t\t\u0014Y\u000e\u0014Y\u0000\u0001\u0014Z\u0011\u0014Z\u0000 \u0000O\u0000n\u0000 \u0000c\u0000o\u0000m\u0000m\u0000i\u0000t\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00002\r\u0014W\u0000\u0001o\u0000\u0000\t\t\r\u000b\r\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014U\u0000\u0002\u0014[\f\r\u0014[\u0000\u0001m\u0000\u0000\t\t\u000b\u0003\u000b\u0000\u0001\u0002\f\u0000\u0000\u0002\u000f\u0000\u0000\r\u0014R\u0000\u0000f\u0000\u0000\t\t\u0002\u0011\u0000\u0000\u0001\u001e\u0000\u0000\u0002\u0014\/\u0000\u0002\u0014\\\n\r\u0014\\\u0000\u0003l\u0000\u0002\n\u0000\n\u0000\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\n\u0000\u0000\u0002U\u0000\u0000\u0001T\u0000\u0000\u0002\u0013\u0000\u0002\u0014]\u0014^\r\u0014]\u0000\u0003l\u0000\u0002\n\u0006\n\u0006\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0014^\u0000\u0002\u0014_\u0014`\r\u0014_\u0000\u0003l\u0000\u0002\n\u0006\n\u0006\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0014`\u0000\u0002\u0014a\u0014b\r\u0014a\u0000\u0003l\u0000\u0001\n\u0006\n\u0006\u0000\u0014c\u0014d\u0001\u0000\u0000\u0000\f\u0014c\u0000A\u0000; Special Value (creation,modification,last visited record):\u0000\u0002\u0000\u0000\u000e\u0014d\u0000\u0001\u0014e\u0011\u0014e\u0000v\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000V\u0000a\u0000l\u0000u\u0000e\u0000 \u0000(\u0000c\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000)\u0000:\u0002\u0014b\u0000\u0002\u0014f\u0014g\r\u0014f\u0000\u0004Z\u0000\u0000\n\u0006\u000b\u0014h\u0014i\r\u0014h\u0000\u0002>\u0001\u0000\n\u0006\n\r\u0014j\u0014k\r\u0014j\u0000\u0002n\u0000\u0000\n\u0006\n\u000b\u0014l\u0014m\r\u0014l\u0000\u0001o\u0000\u0000\n\u0007\n\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014m\u0000\u0001o\u0000\u0000\n\u0006\n\u0007\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014k\u0000\u0001m\u0000\u0000\n\u000b\n\f\n\u0000\u0004\nnull\r\u0014i\u0000\u0001k\u0000\u0000\n\u0010\u000b\u0014n\u0002\u0014n\u0000\u0002\u0014o\u0014p\r\u0014o\u0000\u0003l\u0000\u0001\n\u0010\n\u0010\u0014q\u0014r\u0001\u0000\u0000\f\u0014q\u0000\u0000 autoEnterSpecialValue: keywords used in FM-XML: PreviousRecord, CreationAccountName, CreationUserName,CreationTimestamp, ModificationAccountName, et al.\u0000\u0002\u0000\u0000\u000e\u0014r\u0000\u0001\u0014s\u0011\u0014s\u00012\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000-\u0000X\u0000M\u0000L\u0000:\u0000 \u0000P\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\u0000,\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000t\u0000 \u0000a\u0000l\u0000.\u0002\u0014p\u0000\u0002\u0014t\u0014u\r\u0014t\u0000\u0004Z\u0000\u0000\n\u0010\u000b\u0014v\u0014w\u0014x\r\u0014v\u0000\u0002=\u0000\u0003\n\u0010\n\u0019\u0014y\u0014z\r\u0014y\u0000\u0002n\u0000\u0000\n\u0010\n\u0015\u0014{\u0014|\r\u0014{\u0000\u0001o\u0000\u0000\n\u0011\n\u0015\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014|\u0000\u0001o\u0000\u0000\n\u0010\n\u0011\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014z\u0000\u0001m\u0000\u0000\n\u0015\n\u0018\u0014}\u000e\u0014}\u0000\u0001\u0014~\u0011\u0014~\u0000\u001c\u0000P\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\r\u0014w\u0000\u0001k\u0000\u0000\n\u001c\n9\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\n\u001c\n7\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\n\u001d\n7\u0014\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u00026\u0001\u0000\n\u001d\n2\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\u001d\n#\u0014\u0014\r\u0014\u0000\u00024\u0000\u0001\n\u001e\n#\u0014\n\u0000\u0004\nchbx\r\u0014\u0000\u0001m\u0000\u0000\n!\n\"\u0003\u0000\u0001\r\u0014\u0000\u0001o\u0000\u0000\n\u001d\n\u001e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\u0000\u0002E\u0000\u0000\n&\n1\u0014\u0014\r\u0014\u0000\u00011\u0000\u0000\n'\n+\n\u0000\u0004\npnam\r\u0014\u0000\u0001m\u0000\u0000\n,\n0\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0001m\u0000\u0000\n2\n3\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\n\u001c\n\u001d\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0003l\u0000\u0002\n8\n8\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0014x\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002C\u0000\u0000\n<\nE\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n<\nA\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n=\nA\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n<\n=\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nA\nD\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001k\u0000\u0000\nH\n\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0004Z\u0000\u0000\nH\n\u0014\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\nH\nQ\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\nH\nM\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\nI\nM\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\nH\nI\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nM\nP\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0002r\u0000\u0000\nT\nY\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\nT\nW\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\\\ne\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\\\na\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n]\na\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\\\n]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\na\nd\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000N\u0000a\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\nh\nm\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\nh\nk\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\np\ny\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\np\nu\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\nq\nu\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\np\nq\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nu\nx\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000&\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n|\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n|\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\"\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u00002\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000 \u0000(\u0000D\u0000a\u0000t\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000T\u0000i\u0000m\u0000e\u0000)\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000T\u0000i\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000D\u0000a\u0000t\u0000e\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000D\u0000a\u0000t\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\n\n\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\n\n\u0014\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u00024\u0000\u0000\n\n\u0014\n\u0000\u0004\npopB\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\n\n\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0003l\u0000\u0002\n\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0015\u0000\r\u0014\u0000\u0002C\u0000\u0000\n\n\u0015\u0001\u0015\u0002\r\u0015\u0001\u0000\u0002n\u0000\u0000\n\n\u0015\u0003\u0015\u0004\r\u0015\u0003\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0004\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0002\u0000\u0001m\u0000\u0000\n\n\u0015\u0005\u000e\u0015\u0005\u0000\u0001\u0015\u0006\u0011\u0015\u0006\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0000\u0002\u0015\u0007\u0015\b\r\u0015\u0007\u0000\u0001k\u0000\u0000\n\u000bk\u0015\t\u0002\u0015\t\u0000\u0002\u0015\n\u0015\u000b\r\u0015\n\u0000\u0004Z\u0000\u0000\n\u000bZ\u0015\f\u0015\r\u0015\u000e\r\u0015\f\u0000\u0002=\u0000\u0003\n\n\u0015\u000f\u0015\u0010\r\u0015\u000f\u0000\u0002n\u0000\u0000\n\n\u0015\u0011\u0015\u0012\r\u0015\u0011\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0012\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0010\u0000\u0001m\u0000\u0000\n\n\u0015\u0013\u000e\u0015\u0013\u0000\u0001\u0015\u0014\u0011\u0015\u0014\u0000(\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\r\u0015\r\u0000\u0002r\u0000\u0000\n\n\u0015\u0015\u0015\u0016\r\u0015\u0015\u0000\u0001m\u0000\u0000\n\n\u0015\u0017\u000e\u0015\u0017\u0000\u0001\u0015\u0018\u0011\u0015\u0018\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0015\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015\u000e\u0000\u0002\u0015\u0019\u0015\u001a\r\u0015\u0019\u0000\u0002=\u0000\u0003\n\n\u0015\u001b\u0015\u001c\r\u0015\u001b\u0000\u0002n\u0000\u0000\n\n\u0015\u001d\u0015\u001e\r\u0015\u001d\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u001e\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u001c\u0000\u0001m\u0000\u0000\n\n\u0015\u001f\u000e\u0015\u001f\u0000\u0001\u0015 \u0011\u0015 \u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000N\u0000a\u0000m\u0000e\u0002\u0015\u001a\u0000\u0002\u0015!\u0015\"\r\u0015!\u0000\u0002r\u0000\u0000\u000b\u0001\u000b\u0006\u0015#\u0015$\r\u0015#\u0000\u0001m\u0000\u0000\u000b\u0001\u000b\u0004\u0015%\u000e\u0015%\u0000\u0001\u0015&\u0011\u0015&\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0015$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015\"\u0000\u0002\u0015'\u0015(\r\u0015'\u0000\u0002=\u0000\u0003\u000b\t\u000b\u0012\u0015)\u0015*\r\u0015)\u0000\u0002n\u0000\u0000\u000b\t\u000b\u000e\u0015+\u0015,\r\u0015+\u0000\u0001o\u0000\u0000\u000b\n\u000b\u000e\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015,\u0000\u0001o\u0000\u0000\u000b\t\u000b\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015*\u0000\u0001m\u0000\u0000\u000b\u000e\u000b\u0011\u0015-\u000e\u0015-\u0000\u0001\u0015.\u0011\u0015.\u0000.\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0002\u0015(\u0000\u0002\u0015\/\u00150\r\u0015\/\u0000\u0002r\u0000\u0000\u000b\u0015\u000b\u001a\u00151\u00152\r\u00151\u0000\u0001m\u0000\u0000\u000b\u0015\u000b\u0018\u00153\u000e\u00153\u0000\u0001\u00154\u0011\u00154\u0000\u0018\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\r\u00152\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u00150\u0000\u0002\u00155\u00156\r\u00155\u0000\u0002=\u0000\u0003\u000b\u001d\u000b&\u00157\u00158\r\u00157\u0000\u0002n\u0000\u0000\u000b\u001d\u000b\"\u00159\u0015:\r\u00159\u0000\u0001o\u0000\u0000\u000b\u001e\u000b\"\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015:\u0000\u0001o\u0000\u0000\u000b\u001d\u000b\u001e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00158\u0000\u0001m\u0000\u0000\u000b\"\u000b%\u0015;\u000e\u0015;\u0000\u0001\u0015<\u0011\u0015<\u0000*\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u00156\u0000\u0002\u0015=\u0015>\r\u0015=\u0000\u0002r\u0000\u0000\u000b)\u000b.\u0015?\u0015@\r\u0015?\u0000\u0001m\u0000\u0000\u000b)\u000b,\u0015A\u000e\u0015A\u0000\u0001\u0015B\u0011\u0015B\u00002\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000 \u0000(\u0000D\u0000a\u0000t\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000T\u0000i\u0000m\u0000e\u0000)\r\u0015@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015>\u0000\u0002\u0015C\u0015D\r\u0015C\u0000\u0002=\u0000\u0003\u000b1\u000b:\u0015E\u0015F\r\u0015E\u0000\u0002n\u0000\u0000\u000b1\u000b6\u0015G\u0015H\r\u0015G\u0000\u0001o\u0000\u0000\u000b2\u000b6\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015H\u0000\u0001o\u0000\u0000\u000b1\u000b2\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015F\u0000\u0001m\u0000\u0000\u000b6\u000b9\u0015I\u000e\u0015I\u0000\u0001\u0015J\u0011\u0015J\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0002\u0015D\u0000\u0002\u0015K\u0015L\r\u0015K\u0000\u0002r\u0000\u0000\u000b=\u000bB\u0015M\u0015N\r\u0015M\u0000\u0001m\u0000\u0000\u000b=\u000b@\u0015O\u000e\u0015O\u0000\u0001\u0015P\u0011\u0015P\u0000\b\u0000T\u0000i\u0000m\u0000e\r\u0015N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015L\u0000\u0002\u0015Q\u0015R\r\u0015Q\u0000\u0002=\u0000\u0003\u000bE\u000bN\u0015S\u0015T\r\u0015S\u0000\u0002n\u0000\u0000\u000bE\u000bJ\u0015U\u0015V\r\u0015U\u0000\u0001o\u0000\u0000\u000bF\u000bJ\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015V\u0000\u0001o\u0000\u0000\u000bE\u000bF\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015T\u0000\u0001m\u0000\u0000\u000bJ\u000bM\u0015W\u000e\u0015W\u0000\u0001\u0015X\u0011\u0015X\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000D\u0000a\u0000t\u0000e\u0002\u0015R\u0000\u0002\u0015Y\r\u0015Y\u0000\u0002r\u0000\u0000\u000bQ\u000bV\u0015Z\u0015[\r\u0015Z\u0000\u0001m\u0000\u0000\u000bQ\u000bT\u0015\\\u000e\u0015\\\u0000\u0001\u0015]\u0011\u0015]\u0000\b\u0000D\u0000a\u0000t\u0000e\r\u0015[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u000b\u0000\u0002\u0015^\u0015_\r\u0015^\u0000\u0002n\u0000\u0001\u000b[\u000bi\u0015`\u0015a\r\u0015`\u0000\u0003I\u0000\u0000\u000b\\\u000bi\u0015b\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0015b\u0000\u0002\u0015c\u0015d\r\u0015c\u0000\u0002n\u0000\u0000\u000b\\\u000bd\u0015e\u0015f\r\u0015e\u0000\u00024\u0000\u0000\u000b]\u000bd\u0015g\n\u0000\u0004\npopB\r\u0015g\u0000\u0001m\u0000\u0000\u000b`\u000bc\u0015h\u000e\u0015h\u0000\u0001\u0015i\u0011\u0015i\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0015f\u0000\u0001o\u0000\u0000\u000b\\\u000b]\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0015d\u0000\u0002\u0015j\r\u0015j\u0000\u0001o\u0000\u0000\u000bd\u000be\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015a\u0000\u0000f\u0000\u0000\u000b[\u000b\\\u0002\u0015_\u0000\u0002\u0015k\u0015l\r\u0015k\u0000\u0003l\u0000\u0002\u000bj\u000bj\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015l\u0000\u0002\u0015m\r\u0015m\u0000\u0003l\u0000\u0002\u000bj\u000bj\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0015\b\u0000\u0002\u0015n\u0015o\r\u0015n\u0000\u0002=\u0000\u0001\u000bn\u000bw\u0015p\u0015q\r\u0015p\u0000\u0002n\u0000\u0000\u000bn\u000bs\u0015r\u0015s\r\u0015r\u0000\u0001o\u0000\u0000\u000bo\u000bs\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015s\u0000\u0001o\u0000\u0000\u000bn\u000bo\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015q\u0000\u0001m\u0000\u0000\u000bs\u000bv\u0015t\u000e\u0015t\u0000\u0001\u0015u\u0011\u0015u\u0000\b\u0000N\u0000O\u0000N\u0000E\u0002\u0015o\u0000\u0002\u0015v\u0015w\r\u0015v\u0000\u0001k\u0000\u0000\u000bz\u000b\u0015x\u0002\u0015x\u0000\u0002\u0015y\u0015z\r\u0015y\u0000\u0003l\u0000\u0001\u000bz\u000bz\u0015{\u0015|\u0001\u0000\u0000\f\u0015{\u0000:\u00004 need to make sure NO special values are checked on:\u0000\u0002\u0000\u0000\u000e\u0015|\u0000\u0001\u0015}\u0011\u0015}\u0000h\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000N\u0000O\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0000 \u0000a\u0000r\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000 \u0000o\u0000n\u0000:\u0002\u0015z\u0000\u0002\u0015~\u0015\r\u0015~\u0000\u0002n\u0000\u0001\u000bz\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b{\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b{\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b{\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b|\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b{\u000b|\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002=\u0000\u0003\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\ntitl\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000bz\u000b{\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002=\u0000\u0003\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\ntitl\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000b\u000b\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002E\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\npnam\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0018\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000b\u000b\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0015w\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002=\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\n\u0000\u0004\nnull\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0001\u000b\u000b\u0015\u0015\u0001\u0000\u0000\f\u0015\u0000*\u0000$ do not change any of the checkboxes\u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000H\u0000 \u0000d\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000a\u0000n\u0000y\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014u\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014g\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0001\u000b\u000by\u0015\u0015\u0001y\u0000\u0000\f\u0015\u0000\u0011\u0000\u000b Constant: \u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0016\u0000 \u0000C\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000:\u0000 \u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0004Z\u0000\u0000\u000b\fR\u0015\u0015xw\r\u0015\u0000\u0002>\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bv\u000bv\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bu\u000bu\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000bt\nt\u0000\u0004\nnull\r\u0015\u0000\u0001k\u0000\u0000\u000b\fN\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002r\u0000\u0000\u000b\f\t\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\f\u0007\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000bs\u0015\ns\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000br\u0003r\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bq\u000bq\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002E\u0000\u0000\u000b\f\u0006\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\f\u0000p\np\u0000\u0004\npnam\r\u0015\u0000\u0001m\u0000\u0000\f\u0001\f\u0005\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\b\u0000D\u0000a\u0000t\u0000a\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0004Z\u0000\u0000\f\n\fL\u0015\u0015n\u0015\r\u0015\u0000\u0002n\u0000\u0000\f\n\f\u0010\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u000b\f\u000fm\u000bm\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u0015\u0000\u0001o\u0000\u0000\f\n\f\u000bl\u000bl\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001k\u0000\u0000\f\u0013\fB\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\f\u0013\f\u001a\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\f\u0014\f\u001ak\u0015j\u000bk\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u0014\f\u0015i\u000bi\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0015\u0000\u0002\u0015h\r\u0015\u0000\u0001m\u0000\u0000\f\u0015\f\u0016g\u0003g\u0000\u0001\u0002h\u0000\u0000\u0002j\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\f\u0013\f\u0014\u0002\u0015\u0000\u0002\u0015f\r\u0015\u0000\u0004Z\u0000\u0000\f\u001b\fB\u0015\u0015e\u0015\r\u0015\u0000\u0002=\u0000\u0003\f\u001b\f\"\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\f\u001b\f \u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u001c\f d\u000bd\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u0015\u0000\u0001o\u0000\u0000\f\u001b\f\u001cc\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\f \f!b\nb\u0000\u0004\nnull\r\u0015\u0000\u0003l\u0000\u0001\f%\f%a\u0015\u0015\u0001a\u0000\u0000\f\u0015\u00007\u00001 Possibly null if autoEnterIsConstant is false...\u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000b\u0000 \u0000P\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000y\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000i\u0000f\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000I\u0000s\u0000C\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000 \u0000i\u0000s\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000.\u0000.\u0000.\u0002e\u0000\u0000\r\u0015\u0000\u0002n\u0000\u0001\f)\fB\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\f*\fB`\u0015_\u000b`\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\f*\f9\u0015\u0015\r\u0015\u0000\u00024\u0000\u0000\f2\f9^\u0015\n^\u0000\u0004\ntxta\r\u0015\u0000\u0001m\u0000\u0000\f5\f8\u0015\u000e\u0015\u0000\u0001\u0016\u0000\u0011\u0016\u0000\u0000\n\u0000D\u0000a\u0000t\u0000a\u0000:\r\u0015\u0000\u0002n\u0000\u0000\f*\f2\u0016\u0001\u0016\u0002\r\u0016\u0001\u0000\u00024\u0000\u0000\f+\f2]\u0016\u0003\n]\u0000\u0004\nscra\r\u0016\u0003\u0000\u0001m\u0000\u0000\f.\f1\u0016\u0004\u000e\u0016\u0004\u0000\u0001\u0016\u0005\u0011\u0016\u0005\u0000\n\u0000D\u0000a\u0000t\u0000a\u0000:\r\u0016\u0002\u0000\u0001o\u0000\u0000\f*\f+\\\u000b\\\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0015\u0000\u0002\u0016\u0006[\r\u0016\u0006\u0000\u0002n\u0000\u0000\f9\f>\u0016\u0007\u0016\b\r\u0016\u0007\u0000\u0001o\u0000\u0000\f:\f>Z\u000bZ\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u0016\b\u0000\u0001o\u0000\u0000\f9\f:Y\u000bY\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002[\u0000\u0000\u0002_\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\f)\f*\u0002f\u0000\u0000\u0002n\u0000\u0000\r\u0015\u0000\u0002n\u0000\u0001\fE\fL\u0016\t\u0016\n\r\u0016\t\u0000\u0003I\u0000\u0000\fF\fLX\u0016\u000bW\u000bX\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0016\u000b\u0000\u0002\u0016\f\u0016\r\r\u0016\f\u0000\u0001o\u0000\u0000\fF\fGV\u000bV\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0016\r\u0000\u0002\u0016\u000eU\r\u0016\u000e\u0000\u0001m\u0000\u0000\fG\fHT\u0003T\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\r\u0016\n\u0000\u0000f\u0000\u0000\fE\fF\u0002\u0015\u0000\u0002\u0016\u000f\u0016\u0010\r\u0016\u000f\u0000\u0003l\u0000\u0002\fM\fMSRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0016\u0010\u0000\u0002\u0016\u0011\u0016\u0012\r\u0016\u0011\u0000\u0003l\u0000\u0002\fM\fMPON\u0001P\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0016\u0012\u0000\u0002\u0016\u0013M\r\u0016\u0013\u0000\u0003l\u0000\u0002\fM\fMLKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002M\u0000\u0000\u0002x\u0000\u0000\u0001w\u0000\u0000\u0002\u0015\u0000\u0002\u0016\u0014\u0016\u0015\r\u0016\u0014\u0000\u0003l\u0000\u0002\fS\fSIHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0016\u0015\u0000\u0002\u0016\u0016\u0016\u0017\r\u0016\u0016\u0000\u0004Z\u0000\u0000\fS\fb\u0016\u0018\u0016\u0019FE\r\u0016\u0018\u0000\u0002>\u0001\u0000\fS\fZ\u0016\u001a\u0016\u001b\r\u0016\u001a\u0000\u0002n\u0000\u0000\fS\fX\u0016\u001c\u0016\u001d\r\u0016\u001c\u0000\u0001o\u0000\u0000\fT\fXD\u000bD\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\r\u0016\u001d\u0000\u0001o\u0000\u0000\fS\fTC\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u001b\u0000\u0001m\u0000\u0000\fX\fYB\nB\u0000\u0004\nnull\r\u0016\u0019\u0000\u0001k\u0000\u0000\f]\f]\u0016\u001e\u0002\u0016\u001e\u0000\u0002\u0016\u001f\u0016 \r\u0016\u001f\u0000\u0003l\u0000\u0001\f]\f]A\u0016!\u0016\"\u0001A\u0000\u0000\f\u0016!\u0000\u001e\u0000\u0018 NOT YET SUPPORTED!!!!!\t\u0000\u0002\u0000\u0000\u000e\u0016\"\u0000\u0001\u0016#\u0011\u0016#\u00000\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0002\u0016 \u0000\u0002\u0016$\u0016%\r\u0016$\u0000\u0003l\u0000\u0001\f]\f]@\u0016&\u0016'\u0001@\u0000\u0000\f\u0016&\u0000\u001e\u0000\u0018 NOT YET SUPPORTED!!!!!\t\u0000\u0002\u0000\u0000\u000e\u0016'\u0000\u0001\u0016(\u0011\u0016(\u00000\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0002\u0016%\u0000\u0002\u0016)?\r\u0016)\u0000\u0003l\u0000\u0001\f]\f]>\u0016*\u0016+\u0001>\u0000\u0000\f\u0016*\u0000$\u0000\u001e NOT YET SUPPORTED!!!!!\t\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0016+\u0000\u0001\u0016,\u0011\u0016,\u0000<\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002?\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u0016\u0017\u0000\u0002\u0016-\u0016.\r\u0016-\u0000\u0003l\u0000\u0002\fc\fc=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0016.\u0000\u0002\u0016\/\u00160\r\u0016\/\u0000\u0003l\u0000\u0002\fc\fc:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00160\u0000\u0002\u00161\u00162\r\u00161\u0000\u0003l\u0000\u0001\fc\fc7\u00163\u00164\u00017\u0000\u0000\f\u00163\u0000\u001e\u0000\u0018 AutoEnter Calculation: \u0000\u0002\u0000\u0000\u000e\u00164\u0000\u0001\u00165\u0011\u00165\u00000\u0000 \u0000A\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u00162\u0000\u0002\u00166\u00167\r\u00166\u0000\u0004Z\u0000\u0000\fc\u000e\f\u00168\u0016965\r\u00168\u0000\u0002>\u0001\u0000\fc\fj\u0016:\u0016;\r\u0016:\u0000\u0002n\u0000\u0000\fc\fh\u0016<\u0016=\r\u0016<\u0000\u0001o\u0000\u0000\fd\fh4\u000b4\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u0016=\u0000\u0001o\u0000\u0000\fc\fd3\u000b3\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016;\u0000\u0001m\u0000\u0000\fh\fi2\n2\u0000\u0004\nnull\r\u00169\u0000\u0001k\u0000\u0000\fm\u000e\b\u0016>\u0002\u0016>\u0000\u0002\u0016?\u0016@\r\u0016?\u0000\u0004Z\u0000\u0000\fm\u000e\u0006\u0016A\u0016B1\u0016C\r\u0016A\u0000\u0001H\u0000\u0000\fm\fs\u0016D\r\u0016D\u0000\u0002n\u0000\u0000\fm\fr\u0016E\u0016F\r\u0016E\u0000\u0001o\u0000\u0000\fn\fr0\u000b0\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u0016F\u0000\u0001o\u0000\u0000\fm\fn\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016B\u0000\u0001k\u0000\u0000\fv\f\u0016G\u0002\u0016G\u0000\u0002\u0016H\u0016I\r\u0016H\u0000\u0003l\u0000\u0001\fv\fv.\u0016J\u0016K\u0001.\u0000\u0000\f\u0016J\u0000+\u0000% Need to make sure it is NOT checked:\u0000\u0002\u0000\u0000\u000e\u0016K\u0000\u0001\u0016L\u0011\u0016L\u0000J\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000:\u0002\u0016I\u0000\u0002\u0016M\u0016N\r\u0016M\u0000\u0002n\u0000\u0001\fv\f\u0016O\u0016P\r\u0016O\u0000\u0003I\u0000\u0000\fw\f-\u0016Q,\u000b-\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0016Q\u0000\u0002\u0016R\u0016S\r\u0016R\u0000\u0002n\u0000\u0000\fw\f\u0016T\u0016U\r\u0016T\u0000\u00024\u0000\u0000\fx\f+\u0016V\n+\u0000\u0004\nchbx\r\u0016V\u0000\u0001m\u0000\u0000\f{\f~\u0016W\u000e\u0016W\u0000\u0001\u0016X\u0011\u0016X\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\r\u0016U\u0000\u0001o\u0000\u0000\fw\fx*\u000b*\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0016S\u0000\u0002\u0016Y)\r\u0016Y\u0000\u0001m\u0000\u0000\f\f(\u0003(\u0000\u0000\u0002)\u0000\u0000\u0002,\u0000\u0000\r\u0016P\u0000\u0000f\u0000\u0000\fv\fw\u0002\u0016N\u0000\u0002\u0016Z'\r\u0016Z\u0000\u0003l\u0000\u0002\f\f&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002'\u0000\u0000\u00021\u0000\u0000\r\u0016C\u0000\u0003l\u0000\u0003\f\u000e\u0006\u0016[\u0016\\\u0016]\r\u0016[\u0000\u0001k\u0000\u0000\f\u000e\u0006\u0016^\u0002\u0016^\u0000\u0002\u0016_\u0016`\r\u0016_\u0000\u0002r\u0000\u0000\f\f\u0016a\u0016b\r\u0016a\u0000\u0002n\u0000\u0000\f\f\u0016c\u0016d\r\u0016c\u0000\u00024\u0000\u0000\f\f#\u0016e\n#\u0000\u0004\nchbx\r\u0016e\u0000\u0001m\u0000\u0000\f\f\u0016f\u000e\u0016f\u0000\u0001\u0016g\u0011\u0016g\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\r\u0016d\u0000\u0001o\u0000\u0000\f\f\"\u000b\"\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000!\u000b!\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u0002\u0016`\u0000\u0002\u0016h\u0016i\r\u0016h\u0000\u0003l\u0000\u0001\f\f \u0016j\u0016k\u0001 \u0000\u0000\f\u0016j\u0000G\u0000A if the checkbox is already checked, need to click Specify button\u0000\u0002\u0000\u0000\u000e\u0016k\u0000\u0001\u0016l\u0011\u0016l\u0000\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000 \u0000i\u0000s\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000,\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0016i\u0000\u0002\u0016m\u0016n\r\u0016m\u0000\u0003l\u0000\u0001\f\f\u001f\u0016o\u0016p\u0001\u001f\u0000\u0000\f\u0016o\u0000^\u0000X if not already checked, checking it opens the window, so use special function for click\u0000\u0002\u0000\u0000\u000e\u0016p\u0000\u0001\u0016q\u0011\u0016q\u0000\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000,\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000i\u0000n\u0000g\u0000 \u0000i\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000,\u0000 \u0000s\u0000o\u0000 \u0000u\u0000s\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000o\u0000r\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0002\u0016n\u0000\u0002\u0016r\u0016s\r\u0016r\u0000\u0004Z\u0000\u0000\f\f\u0016t\u0016u\u001e\u0016v\r\u0016t\u0000\u0002>\u0001\u0000\f\f\u0016w\u0016x\r\u0016w\u0000\u0002n\u0000\u0000\f\f\u0016y\u0016z\r\u0016y\u0000\u00011\u0000\u0000\f\f\u001d\n\u001d\u0000\u0004\nvalL\r\u0016z\u0000\u0001o\u0000\u0000\f\f\u001c\u000b\u001c\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\r\u0016x\u0000\u0001m\u0000\u0000\f\f\u001b\u0003\u001b\u0000\u0001\r\u0016u\u0000\u0002n\u0000\u0001\f\f\u0016{\u0016|\r\u0016{\u0000\u0003I\u0000\u0000\f\f\u001a\u0016}\u0019\u000b\u001a\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0016}\u0000\u0002\u0016~\u0018\r\u0016~\u0000\u0001o\u0000\u0000\f\f\u0017\u000b\u0017\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\r\u0016|\u0000\u0000f\u0000\u0000\f\f\u0002\u001e\u0000\u0000\r\u0016v\u0000\u0001k\u0000\u0000\f\f\u0016\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\u0016\u0016\u0016\u0001\u0016\u0000\u0000\f\u0016\u0000\\\u0000V there are TWO buttons named \"Specify\" - the first is for CALC, second is for lookup:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000T\u0000W\u0000O\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000n\u0000a\u0000m\u0000e\u0000d\u0000 \u0000\"\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y &\u0000\"\u0000 \u0000-\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000C\u0000A\u0000L\u0000C\u0000,\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000u\u0000p\u0000:\u0002\u0016\u0000\u0002\u0016\u0015\r\u0016\u0000\u0002n\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\f\u0014\u0016\u0013\u000b\u0014\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0016\u0000\u0002\u0016\u0012\r\u0016\u0000\u00026\u0001\u0000\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00024\u0000\u0001\f\f\u0011\u0016\n\u0011\u0000\u0004\nbutT\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0010\u0003\u0010\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000f\u000b\u000f\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016\u0000\u0002C\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\f\f\u000e\n\u000e\u0000\u0004\npnam\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u000e\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0002\u0012\u0000\u0000\u0002\u0013\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0015\u0000\u0000\u0002\u0016s\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\n\u0016\u0016\u0001\n\u0000\u0000\f\u0016\u0000+\u0000% wait for Specify Calculation window:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000J\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\f\t\u0016\b\u000b\t\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\u0016\u0000\u0002\u0016\u0007\r\u0016\u0000\u0001K\u0000\u0000\f\f\u0016\u0006\u0016\u0000\u0003\u0006\u0016\u0005\u000b\u0006\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0005\u0000\u0000\u0002\u0007\u0000\u0000\u0002\b\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\f\f\u0001\u0016\n\u0001\u0000\u0004\ncwin\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0000\u0003\u0000\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000\u0018\u0000\u0012 CALCULATION CODE:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000$\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0004Z\u0000\u0000\f\f\u0016\u0016\u0016\r\u0016\u0000\u0002=\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\f\f\n\u0000\u0004\nleng\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0003\u0000\u0000\r\u0016\u0000\u0001k\u0000\u0000\f\f\u0016\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0000\f\f\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000\u0000 if for some reason an empty string is specified, we want to force an error in FM's syntax checker for the validation calc box instead of silently allowing an empty string as the validation calc. \u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0001\u0000 \u0000i\u0000f\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000r\u0000e\u0000a\u0000s\u0000o\u0000n\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000c\u0000e\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000'\u0000s\u0000 \u0000s\u0000y\u0000n\u0000t\u0000a\u0000x\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000b\u0000o\u0000x\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0000 \u0000o\u0000f\u0000 \u0000s\u0000i\u0000l\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000.\u0000 \u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0001\u001a\u0000i\u0000f\u0000 \u0000(\u0000 \u0000\/\u0000*\u0000 \u0000a\u0000u\u0000t\u0000o\u0000-\u0000e\u0000n\u0000t\u0000e\u0000r\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000r\u0000a\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000a\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000c\u0000a\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000b\u0000u\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000t\u0000o\u0000o\u0000l\u0000.\u0000 \u0000*\u0000\/\u0000 \u0000)\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0001\f\r\u0011\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\r\u0011\u0016\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\r\n\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\r\u0005\r\n\u0016\n\u0000\u0004\ntxta\r\u0016\u0000\u0001m\u0000\u0000\r\b\r\t\u0003\u0000\u0001\r\u0016\u0000\u0002n\u0000\u0000\f\r\u0005\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\f\r\u0005\u0016\n\u0000\u0004\nscra\r\u0016\u0000\u0001m\u0000\u0000\r\u0001\r\u0004\u0003\u0000\u0004\r\u0016\u0000\u00024\u0000\u0000\f\f\u0016\n\u0000\u0004\ncwin\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0003\u0000\u0001\u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0001o\u0000\u0000\r\n\r\r\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\r\u0012\r\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\r\u0012\r\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\r\u0012\r\u0012\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0004Z\u0000\u0000\r\u0012\r;\u0016\u0016\r\u0016\u0000\u0002>\u0001\u0000\r\u0012\r\u0017\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\r\u0012\r\u0015\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\r\u0013\r\u0015\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u0016\u0000\u0001o\u0000\u0000\r\u0012\r\u0013\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\r\u0015\r\u0016\n\u0000\u0004\nnull\r\u0016\u0000\u0002n\u0000\u0001\r\u001a\r7\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\r\u001b\r7\u0016\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u00026\u0001\u0000\r\u001b\r0\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\r\u001b\r!\u0016\u0016\r\u0016\u0000\u00024\u0000\u0001\r\u001c\r!\u0016\n\u0000\u0004\npopB\r\u0016\u0000\u0001m\u0000\u0000\r\u001f\r \u0003\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\r\u001b\r\u001c\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016\u0000\u0002E\u0000\u0000\r$\r\/\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\r%\r)\n\u0000\u0004\npnam\r\u0016\u0000\u0001m\u0000\u0000\r*\r.\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0002n\u0000\u0000\r0\r3\u0016\u0017\u0000\r\u0016\u0000\u0001o\u0000\u0000\r1\r3\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u0017\u0000\u0000\u0001o\u0000\u0000\r0\r1\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\r\u001a\r\u001b\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0017\u0001\u0017\u0002\r\u0017\u0001\u0000\u0003l\u0000\u0002\r<\r<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017\u0002\u0000\u0002\u0017\u0003\u0017\u0004\r\u0017\u0003\u0000\u0003l\u0000\u0001\r<\r<\u0017\u0005\u0017\u0006\u0001\u0000\u0000\f\u0017\u0005\u00009\u00003 Do Not Evaluate if all referenced field are empty:\u0000\u0002\u0000\u0000\u000e\u0017\u0006\u0000\u0001\u0017\u0007\u0011\u0017\u0007\u0000f\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000a\u0000r\u0000e\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000:\u0002\u0017\u0004\u0000\u0002\u0017\b\u0017\t\r\u0017\b\u0000\u0004Z\u0000\u0000\r<\rx\u0017\n\u0017\u000b\r\u0017\n\u0000\u0002>\u0001\u0000\r<\rA\u0017\f\u0017\r\r\u0017\f\u0000\u0002n\u0000\u0000\r<\r?\u0017\u000e\u0017\u000f\r\u0017\u000e\u0000\u0001o\u0000\u0000\r=\r?\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u0017\u000f\u0000\u0001o\u0000\u0000\r<\r=\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\r\u0000\u0001m\u0000\u0000\r?\r@\n\u0000\u0004\nnull\r\u0017\u000b\u0000\u0001k\u0000\u0000\rD\rt\u0017\u0010\u0002\u0017\u0010\u0000\u0002\u0017\u0011\u0017\u0012\r\u0017\u0011\u0000\u0002r\u0000\u0000\rD\r[\u0017\u0013\u0017\u0014\r\u0017\u0013\u0000\u00026\u0001\u0000\rD\rY\u0017\u0015\u0017\u0016\r\u0017\u0015\u0000\u0002n\u0000\u0000\rD\rJ\u0017\u0017\u0017\u0018\r\u0017\u0017\u0000\u00024\u0000\u0001\rE\rJ\u0017\u0019\n\u0000\u0004\nchbx\r\u0017\u0019\u0000\u0001m\u0000\u0000\rH\rI\u0003\u0000\u0001\r\u0017\u0018\u0000\u0001o\u0000\u0000\rD\rE\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017\u0016\u0000\u0002E\u0000\u0000\rM\rX\u0017\u001a\u0017\u001b\r\u0017\u001a\u0000\u00011\u0000\u0000\rN\rR\n\u0000\u0004\npnam\r\u0017\u001b\u0000\u0001m\u0000\u0000\rS\rW\u0017\u001c\u000e\u0017\u001c\u0000\u0001\u0017\u001d\u0011\u0017\u001d\u0000J\u0000n\u0000o\u0000t\u0000 \u0000e\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000s\r\u0017\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017\u0012\u0000\u0002\u0017\u001e\r\u0017\u001e\u0000\u0004Z\u0000\u0000\r\\\rt\u0017\u001f\u0017 \u0017!\r\u0017\u001f\u0000\u0002n\u0000\u0000\r\\\r`\u0017\"\u0017#\r\u0017\"\u0000\u0001o\u0000\u0000\r]\r_\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u0017#\u0000\u0001o\u0000\u0000\r\\\r]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017 \u0000\u0002n\u0000\u0001\rc\rj\u0017$\u0017%\r\u0017$\u0000\u0003I\u0000\u0000\rd\rj\u0017&\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017&\u0000\u0002\u0017'\u0017(\r\u0017'\u0000\u0001o\u0000\u0000\rd\re\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017(\u0000\u0002\u0017)\r\u0017)\u0000\u0001m\u0000\u0000\re\rf\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017%\u0000\u0000f\u0000\u0000\rc\rd\u0002\u0000\u0000\r\u0017!\u0000\u0002n\u0000\u0001\rm\rt\u0017*\u0017+\r\u0017*\u0000\u0003I\u0000\u0000\rn\rt\u0017,\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017,\u0000\u0002\u0017-\u0017.\r\u0017-\u0000\u0001o\u0000\u0000\rn\ro\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017.\u0000\u0002\u0017\/\r\u0017\/\u0000\u0001m\u0000\u0000\ro\rp\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017+\u0000\u0000f\u0000\u0000\rm\rn\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0017\t\u0000\u0002\u00170\u00171\r\u00170\u0000\u0003l\u0000\u0002\ry\ry\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00171\u0000\u0002\u00172\u00173\r\u00172\u0000\u0003l\u0000\u0002\ry\ry\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00173\u0000\u0002\u00174\u00175\r\u00174\u0000\u0003l\u0000\u0001\ry\ry\u00176\u00177\u0001\u0000\u0000\f\u00176\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u00177\u0000\u0001\u00178\u0011\u00178\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u00175\u0000\u0002\u00179\u0017:\r\u00179\u0000\u0002n\u0000\u0001\ry\r\u0017;\u0017<\r\u0017;\u0000\u0003I\u0000\u0000\rz\r\u0017=\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0017=\u0000\u0002\u0017>\r\u0017>\u0000\u00026\u0001\u0000\rz\r\u0017?\u0017@\r\u0017?\u0000\u0002n\u0000\u0000\rz\r\u0017A\u0017B\r\u0017A\u0000\u00024\u0000\u0001\r{\r\u0017C\n\u0000\u0004\nbutT\r\u0017C\u0000\u0001m\u0000\u0000\r~\r\u0003\u0000\u0001\r\u0017B\u0000\u0001o\u0000\u0000\rz\r{\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017@\u0000\u0002E\u0000\u0000\r\r\u0017D\u0017E\r\u0017D\u0000\u00011\u0000\u0000\r\r\n\u0000\u0004\npnam\r\u0017E\u0000\u0001m\u0000\u0000\r\r\u0017F\u000e\u0017F\u0000\u0001\u0017G\u0011\u0017G\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017<\u0000\u0000f\u0000\u0000\ry\rz\u0002\u0017:\u0000\u0002\u0017H\u0017I\r\u0017H\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017I\u0000\u0002\u0017J\u0017K\r\u0017J\u0000\u0002n\u0000\u0001\r\r\u0017L\u0017M\r\u0017L\u0000\u0003I\u0000\u0000\r\r\u0017N\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0017N\u0000\u0002\u0017O\r\u0017O\u0000\u0001K\u0000\u0000\r\r\u0017P\u0006\u0017P\u0000\u0003\u0017Q\u0017R\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0017Q\u0000\u0001m\u0000\u0000\r\r\u0017S\u000e\u0017S\u0000\u0001\u0017T\u0011\u0017T\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0017R\u0000\u0003\u0017U\u0017V\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0017U\u0000\u0001m\u0000\u0000\r\r\u0017W\u000e\u0017W\u0000\u0001\u0017X\u0011\u0017X\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0017V\u0000\u0003\u0017Y\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0017Y\u0000\u0001m\u0000\u0000\r\r\u0017Z\u000e\u0017Z\u0000\u0001\u0017[\u0011\u0017[\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017M\u0000\u0000f\u0000\u0000\r\r\u0002\u0017K\u0000\u0002\u0017\\\u0017]\r\u0017\\\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017]\u0000\u0002\u0017^\u0017_\r\u0017^\u0000\u0002r\u0000\u0000\r\r\u0017`\u0017a\r\u0017`\u0000\u0002n\u0000\u0000\r\r\u0017b\u0017c\r\u0017b\u0000\u00024\u0000\u0000\r\r\u0017d\n\u0000\u0004\ntabg\r\u0017d\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017c\u0000\u00024\u0000\u0000\r\r\u0017e\n\u0000\u0004\ncwin\r\u0017e\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0017_\u0000\u0002\u0017f\u0017g\r\u0017f\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017g\u0000\u0002\u0017h\u0017i\r\u0017h\u0000\u0003l\u0000\u0001\r\r\u0017j\u0017k\u0001\u0000\u0000\f\u0017j\u00007\u00001 Do not replace existing value of field (if any):\u0000\u0002\u0000\u0000\u000e\u0017k\u0000\u0001\u0017l\u0011\u0017l\u0000b\u0000 \u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000(\u0000i\u0000f\u0000 \u0000a\u0000n\u0000y\u0000)\u0000:\u0002\u0017i\u0000\u0002\u0017m\u0017n\r\u0017m\u0000\u0004Z\u0000\u0000\r\u000e\u0004\u0017o\u0017p\r\u0017o\u0000\u0002>\u0001\u0000\r\r\u0017q\u0017r\r\u0017q\u0000\u0002n\u0000\u0000\r\r\u0017s\u0017t\r\u0017s\u0000\u0001o\u0000\u0000\r\r\u000b\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u0017t\u0000\u0001o\u0000\u0000\r\r\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017r\u0000\u0001m\u0000\u0000\r\r\n\u0000\u0004\nnull\r\u0017p\u0000\u0001k\u0000\u0000\r\u000e\u0000\u0017u\u0002\u0017u\u0000\u0002\u0017v\u0017w\r\u0017v\u0000\u0002r\u0000\u0000\r\r\u0017x\u0017y\r\u0017x\u0000\u00026\u0001\u0000\r\r\u0017z\u0017{\r\u0017z\u0000\u0002n\u0000\u0000\r\r\u0017|\u0017}\r\u0017|\u0000\u00024\u0000\u0001\r\r\u0017~\n\u0000\u0004\nchbx\r\u0017~\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017}\u0000\u0001o\u0000\u0000\r\r\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017{\u0000\u0002E\u0000\u0000\r\r\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\r\r\n\u0000\u0004\npnam\r\u0017\u0000\u0001m\u0000\u0000\r\r\u0017\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000.\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\r\u0017y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017w\u0000\u0002\u0017\r\u0017\u0000\u0004Z\u0000\u0000\r\u000e\u0000\u0017\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\r\r\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\r~\u000b~\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u0017\u0000\u0001o\u0000\u0000\r\r}\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\r\r\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\r\r|\u0017{\u000b|\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\rz\u000bz\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017\u0000\u0002\u0017y\r\u0017\u0000\u0001m\u0000\u0000\r\rx\u0003x\u0000\u0000\u0002y\u0000\u0000\u0002{\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\r\r\u0002\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\r\u000e\u0000\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\r\u000e\u0000w\u0017v\u000bw\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\ru\u000bu\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017\u0000\u0002\u0017t\r\u0017\u0000\u0001m\u0000\u0000\r\rs\u0003s\u0000\u0001\u0002t\u0000\u0000\u0002v\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\r\r\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0017n\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0005\u000e\u0005rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0017\u0000\u0002\u0017o\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0005\u000e\u0005nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002o\u0000\u0000\f\u0016\\\u0000\u0017\u0000\u0011 there IS a Calc:\u0000\u0002\u0000\u0000\u000e\u0016]\u0000\u0001\u0017\u0011\u0017\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000C\u0000a\u0000l\u0000c\u0000:\u0002\u0016@\u0000\u0002\u0017k\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0007\u000e\u0007jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u00026\u0000\u0000\u00015\u0000\u0000\u0002\u00167\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\r\u000e\rgfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\r\u000e\rdcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000e\r\u000e\ra\u0017\u0017\u0001a\u0000\u0000\f\u0017\u00008\u00002 Prohibit modification of value during data entry:\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000d\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000e\u0000n\u0000t\u0000r\u0000y\u0000:\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0004Z\u0000\u0000\u000e\r\u000eS\u0017\u0017`_\r\u0017\u0000\u0002>\u0001\u0000\u000e\r\u000e\u0014\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e\r\u000e\u0012\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e\u000e\u000e\u0012^\u000b^\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u0017\u0000\u0001o\u0000\u0000\u000e\r\u000e\u000e]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u000e\u0012\u000e\u0013\\\n\\\u0000\u0004\nnull\r\u0017\u0000\u0001k\u0000\u0000\u000e\u0017\u000eO\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002r\u0000\u0000\u000e\u0017\u000e0\u0017\u0017\r\u0017\u0000\u00026\u0001\u0000\u000e\u0017\u000e,\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e\u0017\u000e\u001d\u0017\u0017\r\u0017\u0000\u00024\u0000\u0001\u000e\u0018\u000e\u001d[\u0017\n[\u0000\u0004\nchbx\r\u0017\u0000\u0001m\u0000\u0000\u000e\u001b\u000e\u001cZ\u0003Z\u0000\u0001\r\u0017\u0000\u0001o\u0000\u0000\u000e\u0017\u000e\u0018Y\u000bY\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017\u0000\u0002E\u0000\u0000\u000e \u000e+\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u000e!\u000e%X\nX\u0000\u0004\npnam\r\u0017\u0000\u0001m\u0000\u0000\u000e&\u000e*\u0017\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000*\u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017V\r\u0017\u0000\u0004Z\u0000\u0000\u000e1\u000eO\u0017\u0017U\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e1\u000e7\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e2\u000e6T\u000bT\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u0017\u0000\u0001o\u0000\u0000\u000e1\u000e2S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\u000e:\u000eC\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u000e;\u000eCR\u0017Q\u000bR\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e;\u000e>P\u000bP\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017O\r\u0017\u0000\u0001m\u0000\u0000\u000e>\u000e?N\u0003N\u0000\u0000\u0002O\u0000\u0000\u0002Q\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\u000e:\u000e;\u0002U\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\u000eF\u000eO\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u000eG\u000eOM\u0017L\u000bM\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000eG\u000eJK\u000bK\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017J\r\u0017\u0000\u0001m\u0000\u0000\u000eJ\u000eKI\u0003I\u0000\u0001\u0002J\u0000\u0000\u0002L\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\u000eF\u000eG\u0002V\u0000\u0000\u0002`\u0000\u0000\u0001_\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eTHGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eTEDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eTB\u0017\u0017\u0001B\u0000\u0000\f\u0017\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eTA\u0017\u0017\u0001A\u0000\u0000\f\u0017\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT@\u0017\u0017\u0001@\u0000\u0000\f\u0017\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT?\u0017\u0017\u0001?\u0000\u0000\f\u0017\u0000\u0016\u0000\u0010 VALIDATION TAB:\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000 \u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT>\u0017\u0017\u0001>\u0000\u0000\f\u0017\u0000T\u0000N--------------------------------------------------------------------------\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eT=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT:\u0017\u0017\u0001:\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT9\u0017\u0017\u00019\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT8\u0017\u0017\u00018\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eT765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0002\u000eT\u000e`4\u00173\n4\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0017\u0000\u0002n\u0000\u0000\u000eT\u000e\\\u0017\u0017\r\u0017\u0000\u00024\u0000\u0000\u000eU\u000e\\2\u0018\u0000\n2\u0000\u0004\nradB\r\u0018\u0000\u0000\u0001m\u0000\u0000\u000eX\u000e[\u0018\u0001\u000e\u0018\u0001\u0000\u0001\u0018\u0002\u0011\u0018\u0002\u0000\u0014\u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0017\u0000\u0001o\u0000\u0000\u000eT\u000eU1\u000b1\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u00023\u0000\u0000\u0002\u0017\u0000\u0002\u0018\u0003\u0018\u0004\r\u0018\u0003\u0000\u0003l\u0000\u0002\u000ea\u000ea0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0018\u0004\u0000\u0002\u0018\u0005\u0018\u0006\r\u0018\u0005\u0000\u0004Z\u0000\u0000\u000ea\u000fE\u0018\u0007\u0018\b-,\r\u0018\u0007\u0000\u0002>\u0001\u0000\u000ea\u000eh\u0018\t\u0018\n\r\u0018\t\u0000\u0002n\u0000\u0000\u000ea\u000ef\u0018\u000b\u0018\f\r\u0018\u000b\u0000\u0001o\u0000\u0000\u000eb\u000ef+\u000b+\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018\f\u0000\u0001o\u0000\u0000\u000ea\u000eb*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018\n\u0000\u0001m\u0000\u0000\u000ef\u000eg)\n)\u0000\u0004\nnull\r\u0018\b\u0000\u0001k\u0000\u0000\u000ek\u000fA\u0018\r\u0002\u0018\r\u0000\u0002\u0018\u000e\u0018\u000f\r\u0018\u000e\u0000\u0003l\u0000\u0002\u000ek\u000ek('&\u0001(\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0018\u000f\u0000\u0002\u0018\u0010\u0018\u0011\r\u0018\u0010\u0000\u0002n\u0000\u0001\u000ek\u000ex\u0018\u0012\u0018\u0013\r\u0018\u0012\u0000\u0003I\u0000\u0000\u000el\u000ex%\u0018\u0014$\u000b%\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0014\u0000\u0002\u0018\u0015#\r\u0018\u0015\u0000\u0002n\u0000\u0000\u000el\u000et\u0018\u0016\u0018\u0017\r\u0018\u0016\u0000\u00024\u0000\u0000\u000em\u000et\"\u0018\u0018\n\"\u0000\u0004\nbutT\r\u0018\u0018\u0000\u0001m\u0000\u0000\u000ep\u000es\u0018\u0019\u000e\u0018\u0019\u0000\u0001\u0018\u001a\u0011\u0018\u001a\u0000\u0010\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y &\r\u0018\u0017\u0000\u0001o\u0000\u0000\u000el\u000em!\u000b!\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002#\u0000\u0000\u0002$\u0000\u0000\r\u0018\u0013\u0000\u0000f\u0000\u0000\u000ek\u000el\u0002\u0018\u0011\u0000\u0002\u0018\u001b\u0018\u001c\r\u0018\u001b\u0000\u0003l\u0000\u0002\u000ey\u000ey \u001f\u001e\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0002\u0018\u001c\u0000\u0002\u0018\u001d\u0018\u001e\r\u0018\u001d\u0000\u0003l\u0000\u0001\u000ey\u000ey\u001d\u0018\u001f\u0018 \u0001\u001d\u0000\u0000\f\u0018\u001f\u0000+\u0000% wait for Specify Calculation window:\u0000\u0002\u0000\u0000\u000e\u0018 \u0000\u0001\u0018!\u0011\u0018!\u0000J\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0018\u001e\u0000\u0002\u0018\"\u0018#\r\u0018\"\u0000\u0002n\u0000\u0001\u000ey\u000e\u0018$\u0018%\r\u0018$\u0000\u0003I\u0000\u0000\u000ez\u000e\u001c\u0018&\u001b\u000b\u001c\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\u0018&\u0000\u0002\u0018'\u001a\r\u0018'\u0000\u0001K\u0000\u0000\u000ez\u000e\u0018(\u0006\u0018(\u0000\u0003\u0019\u0018)\u0018\u000b\u0019\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018)\u0000\u0001m\u0000\u0000\u000e}\u000e\u0018*\u000e\u0018*\u0000\u0001\u0018+\u0011\u0018+\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0018\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u001b\u0000\u0000\r\u0018%\u0000\u0000f\u0000\u0000\u000ey\u000ez\u0002\u0018#\u0000\u0002\u0018,\u0018-\r\u0018,\u0000\u0003l\u0000\u0002\u000e\u000e\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0018-\u0000\u0002\u0018.\u0018\/\r\u0018.\u0000\u0002r\u0000\u0000\u000e\u000e\u00180\u00181\r\u00180\u0000\u00024\u0000\u0000\u000e\u000e\u0014\u00182\n\u0014\u0000\u0004\ncwin\r\u00182\u0000\u0001m\u0000\u0000\u000e\u000e\u0013\u0003\u0013\u0000\u0001\r\u00181\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0018\/\u0000\u0002\u00183\u00184\r\u00183\u0000\u0003l\u0000\u0002\u000e\u000e\u0011\u0010\u000f\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u00184\u0000\u0002\u00185\u00186\r\u00185\u0000\u0003l\u0000\u0001\u000e\u000e\u000e\u00187\u00188\u0001\u000e\u0000\u0000\f\u00187\u0000\u0019\u0000\u0013 CALCULATION CODE: \u0000\u0002\u0000\u0000\u000e\u00188\u0000\u0001\u00189\u0011\u00189\u0000&\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0000 \u0002\u00186\u0000\u0002\u0018:\u0018;\r\u0018:\u0000\u0004Z\u0000\u0000\u000e\u000e\u0018<\u0018=\r\u0018>\r\u0018<\u0000\u0002=\u0000\u0001\u000e\u000e\u0018?\u0018@\r\u0018?\u0000\u0002n\u0000\u0000\u000e\u000e\u0018A\u0018B\r\u0018A\u0000\u00011\u0000\u0000\u000e\u000e\f\n\f\u0000\u0004\nleng\r\u0018B\u0000\u0002n\u0000\u0000\u000e\u000e\u0018C\u0018D\r\u0018C\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000b\u000b\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018D\u0000\u0001o\u0000\u0000\u000e\u000e\n\u000b\n\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018@\u0000\u0001m\u0000\u0000\u000e\u000e\t\u0003\t\u0000\u0000\r\u0018=\u0000\u0001k\u0000\u0000\u000e\u000e\u0018E\u0002\u0018E\u0000\u0002\u0018F\u0018G\r\u0018F\u0000\u0003l\u0000\u0000\u000e\u000e\b\u0018H\u0018I\u0001\b\u0000\u0000\f\u0018H\u0000\u0000 if for some reason an empty string is specified, we want to force an error in FM's syntax checker for the validation calc box instead of silently allowing an empty string as the validation calc. \u0000\u0002\u0000\u0000\u000e\u0018I\u0000\u0001\u0018J\u0011\u0018J\u0001\u0000 \u0000i\u0000f\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000r\u0000e\u0000a\u0000s\u0000o\u0000n\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000c\u0000e\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000'\u0000s\u0000 \u0000s\u0000y\u0000n\u0000t\u0000a\u0000x\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000b\u0000o\u0000x\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0000 \u0000o\u0000f\u0000 \u0000s\u0000i\u0000l\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000.\u0000 \u0002\u0018G\u0000\u0002\u0018K\u0007\r\u0018K\u0000\u0002r\u0000\u0000\u000e\u000e\u0018L\u0018M\r\u0018L\u0000\u0001m\u0000\u0000\u000e\u000e\u0018N\u000e\u0018N\u0000\u0001\u0018O\u0011\u0018O\u0001\u001a\u0000i\u0000f\u0000 \u0000(\u0000 \u0000\/\u0000*\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000r\u0000a\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000a\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000c\u0000a\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000b\u0000u\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000t\u0000o\u0000o\u0000l\u0000.\u0000 \u0000*\u0000\/\u0000 \u0000)\r\u0018M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0007\u0000\u0000\u0002\r\u0000\u0000\r\u0018>\u0000\u0002r\u0000\u0000\u000e\u000e\u0018P\u0018Q\r\u0018P\u0000\u0002n\u0000\u0000\u000e\u000e\u0018R\u0018S\r\u0018R\u0000\u0001o\u0000\u0000\u000e\u000e\u0005\u000b\u0005\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018S\u0000\u0001o\u0000\u0000\u000e\u000e\u0004\u000b\u0004\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0018;\u0000\u0002\u0018T\u0018U\r\u0018T\u0000\u0003l\u0000\u0002\u000e\u000e\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0018U\u0000\u0002\u0018V\u0018W\r\u0018V\u0000\u0002n\u0000\u0001\u000e\u000e\u0018X\u0018Y\r\u0018X\u0000\u0003I\u0000\u0000\u000e\u000e\u0018Z\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0018Z\u0000\u0002\u0018[\u0018\\\r\u0018[\u0000\u0002n\u0000\u0000\u000e\u000e\u0018]\u0018^\r\u0018]\u0000\u00024\u0000\u0000\u000e\u000e\u0018_\n\u0000\u0004\ntxta\r\u0018_\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\r\u0018^\u0000\u0002n\u0000\u0000\u000e\u000e\u0018`\u0018a\r\u0018`\u0000\u00024\u0000\u0000\u000e\u000e\u0018b\n\u0000\u0004\nscra\r\u0018b\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0004\r\u0018a\u0000\u00024\u0000\u0000\u000e\u000e\u0018c\n\u0000\u0004\ncwin\r\u0018c\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\u0002\u0018\\\u0000\u0002\u0018d\r\u0018d\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018Y\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0018W\u0000\u0002\u0018e\u0018f\r\u0018e\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018f\u0000\u0002\u0018g\u0018h\r\u0018g\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018h\u0000\u0002\u0018i\u0018j\r\u0018i\u0000\u0003l\u0000\u0001\u000e\u000e\u0018k\u0018l\u0001\u0000\u0000\f\u0018k\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\u0018l\u0000\u0001\u0018m\u0011\u0018m\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\u0018j\u0000\u0002\u0018n\u0018o\r\u0018n\u0000\u0004Z\u0000\u0000\u000e\u000e\u0018p\u0018q\r\u0018p\u0000\u0002>\u0001\u0000\u000e\u000e\u0018r\u0018s\r\u0018r\u0000\u0002n\u0000\u0000\u000e\u000e\u0018t\u0018u\r\u0018t\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u0018u\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018s\u0000\u0001m\u0000\u0000\u000e\u000e\n\u0000\u0004\nnull\r\u0018q\u0000\u0002n\u0000\u0001\u000e\u000e\u0018v\u0018w\r\u0018v\u0000\u0003I\u0000\u0000\u000e\u000e\u0018x\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0018x\u0000\u0002\u0018y\u0018z\r\u0018y\u0000\u00026\u0001\u0000\u000e\u000e\u0018{\u0018|\r\u0018{\u0000\u0002n\u0000\u0000\u000e\u000e\u0018}\u0018~\r\u0018}\u0000\u00024\u0000\u0001\u000e\u000e\u0018\n\u0000\u0004\npopB\r\u0018\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\r\u0018~\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0018|\u0000\u0002E\u0000\u0000\u000e\u000e\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000e\u000e\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000e\u000e\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\u0018z\u0000\u0002\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000e\u000e\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018w\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0018o\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000e\u000e\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000e\u000f\u0015\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000e\u000f\u0015\u0018\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u00026\u0001\u0000\u000e\u000f\u0011\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000e\u000f\u0002\u0018\u0018\r\u0018\u0000\u00024\u0000\u0001\u000e\u000f\u0002\u0018\n\u0000\u0004\nbutT\r\u0018\u0000\u0001m\u0000\u0000\u000f\u0000\u000f\u0001\u0003\u0000\u0001\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0018\u0000\u0002E\u0000\u0000\u000f\u0005\u000f\u0010\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000f\u0006\u000f\n\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000f\u000b\u000f\u000f\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u0016\u000f\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000f\u0016\u000f1\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000f\u0017\u000f1\u0018\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001K\u0000\u0000\u000f\u0017\u000f-\u0018\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018\u0000\u0001m\u0000\u0000\u000f\u001a\u000f\u001d\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0018\u0000\u0001m\u0000\u0000\u000f \u000f#\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0018\u0000\u0003\u0018\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0018\u0000\u0001m\u0000\u0000\u000f&\u000f)\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000f\u0016\u000f\u0017\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f2\u000f2\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u000f2\u000f?\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000f2\u000f=\u0018\u0018\r\u0018\u0000\u00024\u0000\u0000\u000f8\u000f=\u0018\n\u0000\u0004\ntabg\r\u0018\u0000\u0001m\u0000\u0000\u000f;\u000f<\u0003\u0000\u0001\r\u0018\u0000\u00024\u0000\u0000\u000f2\u000f8\u0018\n\u0000\u0004\ncwin\r\u0018\u0000\u0001m\u0000\u0000\u000f6\u000f7\u0003\u0000\u0001\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f@\u000f@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000f@\u000f@\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000\u001b\u0000\u0015 END OF: Validation. \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000*\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000 \u0002\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0018\u0006\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000fF\u000fF\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000fF\u000fF\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000fF\u000fF\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000#\u0000\u001d SAVE NORMAL FIELD - OPTIONS:\u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000:\u0000 \u0000S\u0000A\u0000V\u0000E\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0000 \u0000-\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0000:\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000fF\u000fF\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000#\u0000\u001d click OK for field Options: \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000:\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000fF\u000fe\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000fG\u000fe\u0018\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u00026\u0001\u0000\u000fG\u000fa\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000fG\u000fR\u0018\u0018\r\u0018\u0000\u00024\u0000\u0001\u000fM\u000fR\u0018\n\u0000\u0004\nbutT\r\u0018\u0000\u0001m\u0000\u0000\u000fP\u000fQ\u0003\u0000\u0001\r\u0018\u0000\u00024\u0000\u0000\u000fG\u000fM\u0018\n\u0000\u0004\ncwin\r\u0018\u0000\u0001m\u0000\u0000\u000fK\u000fL\u0003\u0000\u0001\r\u0018\u0000\u0002E\u0000\u0000\u000fU\u000f`\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000fV\u000fZ\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000f[\u000f_\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000fF\u000fG\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000ff\u000ff\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000ff\u000f\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000fg\u000f\u0018\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001K\u0000\u0000\u000fg\u000f}\u0018\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018\u0000\u0001m\u0000\u0000\u000fj\u000fm\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0018\u0000\u0001m\u0000\u0000\u000fp\u000fs\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0018\u0000\u0003\u0018\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0018\u0000\u0001m\u0000\u0000\u000fv\u000fy\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000ff\u000fg\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0001L\u0000\u0000\u000f\u000f\u0018\r\u0018\u0000\u0001m\u0000\u0000\u000f\u000f\n\u0000\b\u000bboovtrue\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001a\u0000\u0000\u0001E\u0000\u0000\u0002\f\u0000\u0002\u0018\u0019\u0000\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u0019\u0001\u0019\u0002\r\u0019\u0001\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0002\u0000\u0002\u0019\u0003\u0019\u0004\r\u0019\u0003\u0000\u0001L\u0000\u0000\u000f\u000f\u0019\u0005\r\u0019\u0005\u0000\u0001m\u0000\u0000\u000f\u000f\n\u0000\b\u000bboovtrue\u0002\u0019\u0004\u0000\u0002\u0019\u0006\r\u0019\u0006\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u00024\u0000\u0000\u0000\u0000\u0019\u0007\n\u0000\u0004\npcap\r\u0019\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0019\b\u000e\u0019\b\u0000\u0001\u0019\t\u0011\u0019\t\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0019\n\u000f\u0019\n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000b\u0000\u0002\u0019\u000b\u0019\f\r\u0019\u000b\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\f\u0000\u0002\u0019\r\u0019\u000e\r\u0019\r\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u000e\u0000\u0002\u0019\u000f\u0019\u0010\r\u0019\u000f\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0010\u0000\u0002\u0019\u0011~\r\u0019\u0011\u0000\u0003l\u0000\u0000\u000f\u000f}\u0019\u0012\u0019\u0013\u0001}\u0000\u0000\f\u0019\u0012\u0000\u0000 DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \nDEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \n\u0000\u0002\u0000\u0000\u000e\u0019\u0013\u0000\u0001\u0019\u0014\u0011\u0019\u0014\u0001B\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0002~\u0000\u0000\r\u000b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000|\u0019\u0015\u0019\u0016\n|\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0016\u0000\u0003z\u0019\u0017y\nz\u0000\u0004\nerrn\r\u0019\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006y\u0000\u0000\r\u000b\u0000\u0003R\u0000\u0000\u000f\u000fw\u0019\u0018\u0019\u0019\nw\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0018\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001a\u0019\u001b\r\u0019\u001a\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001c\u0019\u001d\r\u0019\u001c\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001e\u0019\u001f\r\u0019\u001e\u0000\u0001m\u0000\u0000\u000f\u000f\u0019 \u000e\u0019 \u0000\u0001\u0019!\u0011\u0019!\u00000\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000d\u0000i\u0000t\u0000 \u0000a\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r\u0019\u001f\u0000\u0003I\u0000\u0000\u000f\u000fv\u0019\"u\u000bv\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0019\"\u0000\u0002\u0019#t\r\u0019#\u0000\u0001o\u0000\u0000\u000f\u000fs\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002t\u0000\u0000\u0002u\u0000\u0000\r\u0019\u001d\u0000\u0001m\u0000\u0000\u000f\u000f\u0019$\u000e\u0019$\u0000\u0001\u0019%\u0011\u0019%\u0000\u0006\u0000 \u0000-\u0000 \r\u0019\u001b\u0000\u0001o\u0000\u0000\u000f\u000fr\u000br\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0019\u0000\u0003q\u0019&p\nq\u0000\u0004\nerrn\r\u0019&\u0000\u0001o\u0000\u0000\u000f\u000fo\u000bo\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006p\u0000\u0000\u0002\u000b\u0000\u0002\u0019'\u0019(\r\u0019'\u0000\u0003l\u0000\u0002\u000f\u000fnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0019(\u0000\u0002\u0019)k\r\u0019)\u0000\u0003l\u0000\u0002\u000f\u000fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u000bE\u0000\u0002\u0019*\u0019+\r\u0019*\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0019+\u0000\u0002\u0019,\u0019-\r\u0019,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0019-\u0000\u0002\u0019.\u0019\/\r\u0019.\u0000\u0002i\u0000\u0000\u0000W\u0000Z\u00190\u00191\r\u00190\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000a\u00192`\u000ba\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u0002\u00192\u0000\u0002\u00193_\r\u00193\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002_\u0000\u0000\u0002`\u0000\u0000\r\u00191\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00194\u0002\u00194\u0000\u0002\u00195\u00196\r\u00195\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000]\u00197\u00198\u0001]\u0000\u0000\f\u00197\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u00198\u0000\u0001\u00199\u0011\u00199\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u00196\u0000\u0002\u0019:\u0019;\r\u0019:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\u0019;\u0000\u0002\u0019<\u0019=\r\u0019<\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\n\u0019>\u0019?\r\u0019>\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\b\u0019@\u0006\u0019@\u0000\u0003Y\u0019A\u0019B\u000bY\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u0019A\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002X\nX\u0000\u0004\nnull\u0006\u0019B\u0000\u0003W\u0019C\u0019D\u000bW\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019C\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004V\nV\u0000\u0004\nnull\u0006\u0019D\u0000\u0003U\u0019ET\u000bU\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u0019E\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006S\nS\u0000\u0004\nnull\u0006T\u0000\u0000\r\u0019?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0019=\u0000\u0002\u0019F\u0019G\r\u0019F\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0019H\u0019I\r\u0019H\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0019J\u0019K\r\u0019J\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\fQ\u000bQ\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0019K\u0000\u0001o\u0000\u0000\u0000\f\u0000\rP\u000bP\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u0019I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0019G\u0000\u0002\u0019L\u0019M\r\u0019L\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0019M\u0000\u0002\u0019N\u0019O\r\u0019N\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011K\u0019P\u0019Q\u0001K\u0000\u0000\f\u0019P\u0000\u0012\u0000\f CONSTANTS: \u0000\u0002\u0000\u0000\u000e\u0019Q\u0000\u0001\u0019R\u0011\u0019R\u0000\u0018\u0000 \u0000C\u0000O\u0000N\u0000S\u0000T\u0000A\u0000N\u0000T\u0000S\u0000:\u0000 \u0002\u0019O\u0000\u0002\u0019S\u0019T\r\u0019S\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u001a\u0019U\u0019V\r\u0019U\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0018\u0019W\u0019X\r\u0019W\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0016\u0019Y\u0019Z\r\u0019Y\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0014\u0019[\u0019\\\r\u0019[\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0019]\u000e\u0019]\u0000\u0001\u0019^\u0011\u0019^\u0000@\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\r\u0019\\\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013J\nJ\u0000\u0004\nret \r\u0019Z\u0000\u0003l\u0000\t\u0000\u0014\u0000\u0015\u0019_IH\r\u0019_\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0019`\u000e\u0019`\u0000\u0001\u0019a\u0011\u0019a\u0000b\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000\"\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000\"\u0001I\u0000\u0000\u0001H\u0000\u0000\r\u0019X\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017G\nG\u0000\u0004\nret \r\u0019V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\u0002\u0019T\u0000\u0002\u0019b\u0019c\r\u0019b\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0019d\u0019e\r\u0019d\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0019f\u000e\u0019f\u0000\u0001\u0019g\u0011\u0019g\u0000\u0010\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000(\r\u0019e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00180\u0000\nselectcode\u0000\nselectCode\u0002\u0019c\u0000\u0002\u0019h\u0019i\r\u0019h\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0019j\u0019k\r\u0019j\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0019l\u000e\u0019l\u0000\u0001\u0019m\u0011\u0019m\u0000\u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000r\u0000o\u0000w\u0000 \u0000o\u0000f\u0000 \u0000(\u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000o\u0000l\u0000l\u0000 \u0000a\u0000r\u0000e\u0000a\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0000)\r\u0019k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\u0002\u0019i\u0000\u0002\u0019n\u0019o\r\u0019n\u0000\u0002r\u0000\u0000\u0000#\u0000&\u0019p\u0019q\r\u0019p\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0019r\u000e\u0019r\u0000\u0001\u0019s\u0011\u0019s\u0000\u000e\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \r\u0019q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\u0002\u0019o\u0000\u0002\u0019t\u0019u\r\u0019t\u0000\u0002r\u0000\u0000\u0000'\u0000*\u0019v\u0019w\r\u0019v\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0019x\u000e\u0019x\u0000\u0001\u0019y\u0011\u0019y\u0000,\u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u00001\r\u0019w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\u0002\u0019u\u0000\u0002\u0019z\u0019{\r\u0019z\u0000\u0003l\u0000\u0001\u0000+\u0000+A\u0019|\u0019}\u0001A\u0000\u0000\f\u0019|\u0000(\u0000\" (then some test will be inserted)\u0000\u0002\u0000\u0000\u000e\u0019}\u0000\u0001\u0019~\u0011\u0019~\u0000D\u0000 \u0000(\u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000s\u0000e\u0000r\u0000t\u0000e\u0000d\u0000)\u0002\u0019{\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u0000+\u0000.\u0019\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\n\u0000 \u0000a\u0000n\u0000d\u0000 \r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0001\u0000\/\u0000\/?\u0019\u0019\u0001?\u0000\u0000\f\u0019\u00007\u00001 (then possibly some other test will be inserted)\u0000\u0002\u0000\u0000\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000b\u0000 \u0000(\u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000y\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000s\u0000e\u0000r\u0000t\u0000e\u0000d\u0000)\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u0000\/\u00002\u0019\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0002\u0000)\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u00003\u0000<\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u0000:\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u00008\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u00006\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u00003\u00004=\n=\u0000\u0004\nret \r\u0019\u0000\u0001m\u0000\u0000\u00004\u00005\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0019\u0000\u0001o\u0000\u0000\u00006\u00007<\n<\u0000\u0004\nret \r\u0019\u0000\u0001m\u0000\u0000\u00008\u00009\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000=\u0000=:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003Q\u0000\u0000\u0000=\u0001\u0019\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000@\u0001\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000@\u0000@765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003I\u0000\u0000\u0000@\u0000G4\u00193\u000b4\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u0002\u0019\u0000\u0002\u00192\r\u0019\u0000\u0001J\u0000\u0000\u0000A\u0000C1\u00021\u0000\u0000\u00022\u0000\u0000\u00023\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000H\u0000H0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0004Z\u0000\u0001\u0000H\u0000\\\u0019\u0019-,\r\u0019\u0000\u0002>\u0001\u0000\u0000H\u0000M\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000H\u0000K\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000I\u0000K+\u000b+\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019\u0000\u0001o\u0000\u0000\u0000H\u0000I*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000K\u0000L)\n)\u0000\u0004\nnull\r\u0019\u0000\u0003I\u0000\u0000\u0000P\u0000X(\u0019'\u000b(\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u0019\u0000\u0002\u0019&\r\u0019\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000R\u0000T%\u000b%\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019\u0000\u0001o\u0000\u0000\u0000Q\u0000R$\u000b$\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002&\u0000\u0000\u0002'\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000]\u0000]#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003I\u0000\u0000\u0000]\u0000b \u001f\u001e\u000b \u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u001f\u0000\u0000\u0002\u001e\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000c\u0000c\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003Q\u0000\u0000\u0000c\u0001\u0019\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000f\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002O\u0000\u0000\u0000f\u0000\u0019\u0019\r\u0019\u0000\u0002O\u0000\u0000\u0000l\u0000\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000w\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000w\u0000w\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0017\r\u0019\u0000\u0003I\u0000\u0002\u0000w\u0000\u0016\u0019\u0015\n\u0016\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r\u0019\u0000\u0003l\u0000\u0005\u0000w\u0000\u0019\u0014\u0013\r\u0019\u0000\u00026\u0001\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0001\u0000\u0000\u0012\u0019\n\u0012\u0000\u0004\ncrow\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0011\u0003\u0011\u0000\u0001\r\u0019\u0000\u0003l\u0000\u0005\u0000w\u0000\u0019\u0010\u000f\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\u000e\u0019\n\u000e\u0000\u0004\ntabB\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\r\u0003\r\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\f\u0019\n\f\u0000\u0004\nscra\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u0003\u000b\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000}\u0000\n\u0019\n\n\u0000\u0004\ntabg\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\t\u0003\t\u0000\u0001\r\u0019\u0000\u00024\u0000\u0000\u0000w\u0000}\b\u0019\n\b\u0000\u0004\ncwin\r\u0019\u0000\u0001m\u0000\u0000\u0000{\u0000|\u0007\u0003\u0007\u0000\u0001\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0019\u0000\u0002=\u0000\u0003\u0000\u0000\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u00011\u0000\u0000\u0000\u0000\u0006\n\u0006\u0000\u0004\nvalL\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\u0005\u0019\n\u0005\u0000\u0004\nsttx\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0004\u0003\u0004\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0015\u0000\u0000\u0002\u0017\u0000\u0000\r\u0019\u0000\u00024\u0000\u0000\u0000l\u0000t\u0001\u0019\n\u0001\u0000\u0004\npcap\r\u0019\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u0019\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0019\u000f\u0019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0000\r\u0019\u0000\u0001L\u0000\u0000\u0000\u0000\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0000\u0003\u0019\n\u0000\u0004\nerrn\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0019\u0000\u0004Z\u0000\u0000\u0000\u0001\u0019\u0019\u0019\r\u0019\u0000\u0002>\u0001\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0003I\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0001\u0000\u0000\u0019\u0019\u0001\u0000\u0000\f\u0019\u0000\/\u0000) some error OTHER than not found in list:\u0000\u0002\u0000\u0000\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000R\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000i\u0000n\u0000 \u0000l\u0000i\u0000s\u0000t\u0000:\u0002\u0019\u0000\u0002\u0019\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0019\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0000\u0003\u001a\u0000\n\u0000\u0004\nerrn\r\u001a\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u0001\u0002\u001a\u0001\u0000\u0002\u001a\u0002\u001a\u0003\r\u001a\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u001a\u0004\u001a\u0005\u0001\u0000\u0000\f\u001a\u0004\u0000*\u0000$ NOT FOUND, so try each altPattern: \u0000\u0002\u0000\u0000\u000e\u001a\u0005\u0000\u0001\u001a\u0006\u0011\u001a\u0006\u0000H\u0000 \u0000N\u0000O\u0000T\u0000 \u0000F\u0000O\u0000U\u0000N\u0000D\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000r\u0000y\u0000 \u0000e\u0000a\u0000c\u0000h\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000:\u0000 \u0002\u001a\u0003\u0000\u0002\u001a\u0007\u001a\b\r\u001a\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u001a\t\u001a\n\r\u001a\t\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001a\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u001a\b\u0000\u0002\u001a\u000b\u001a\f\r\u001a\u000b\u0000\u0003X\u0000\u0000\u0000\u0001\u001a\r\u001a\u000e\r\u001a\r\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u000f\u0002\u001a\u000f\u0000\u0002\u001a\u0010\u001a\u0011\r\u001a\u0010\u0000\u0002r\u0000\u0000\u0000\u0000\u001a\u0012\u001a\u0013\r\u001a\u0012\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u0014\u001a\u0015\r\u001a\u0014\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u001a\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u0016\u001a\u0017\r\u001a\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007pattern\u0000\u0000\r\u001a\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\r\u001a\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestlist\u0000\btestList\u0002\u001a\u0011\u0000\u0002\u001a\u0018\u001a\u0019\r\u001a\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0019\u0000\u0002\u001a\u001a\u001a\u001b\r\u001a\u001a\u0000\u0003Q\u0000\u0000\u0000\u0001\u001a\u001c\u001a\u001d\u001a\u001e\r\u001a\u001c\u0000\u0001k\u0000\u0000\u0000\u0001l\u001a\u001f\u0002\u001a\u001f\u0000\u0002\u001a \u001a!\r\u001a \u0000\u0003l\u0000\u0001\u0000\u0000\u001a\"\u001a#\u0001\u0000\u0000\f\u001a\"\u0000!\u0000\u001b BEGIN: try oneAltPattern: \u0000\u0002\u0000\u0000\u000e\u001a#\u0000\u0001\u001a$\u0011\u001a$\u00006\u0000 \u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000:\u0000 \u0002\u001a!\u0000\u0002\u001a%\u001a&\r\u001a%\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a&\u0000\u0002\u001a'\u001a(\r\u001a'\u0000\u0002r\u0000\u0000\u0000\u0000\u001a)\u001a*\r\u001a)\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u001a*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001a(\u0000\u0002\u001a+\u001a,\r\u001a+\u0000\u0003X\u0000\u0000\u0000\u0001\/\u001a-\u001a.\r\u001a-\u0000\u0002s\u0000\u0000\u0001\u000b\u0001*\u001a\/\u001a0\r\u001a\/\u0000\u0003l\u0000\u0005\u0001\u000b\u0001'\u001a1\r\u001a1\u0000\u0002b\u0000\u0000\u0001\u000b\u0001'\u001a2\u001a3\r\u001a2\u0000\u0002b\u0000\u0000\u0001\u000b\u0001\u001a\u001a4\u001a5\r\u001a4\u0000\u0002b\u0000\u0000\u0001\u000b\u0001\u0016\u001a6\u001a7\r\u001a6\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u001a8\u000e\u001a8\u0000\u0001\u001a9\u0011\u001a9\u0000\u0000\r\u001a7\u0000\u0002n\u0000\u0000\u0001\u000e\u0001\u0015\u001a:\u001a;\r\u001a:\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0015\u000b\u0000\u00140\u0000\btesttype\u0000\btestType\r\u001a;\u0000\u0001o\u0000\u0000\u0001\u000e\u0001\u0011\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\r\u001a5\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0019\u001a<\u000e\u001a<\u0000\u0001\u001a=\u0011\u001a=\u0000\u0002\u0000 \r\u001a3\u0000\u0002n\u0000\u0001\u0001\u001a\u0001&\u001a>\u001a?\r\u001a>\u0000\u0003I\u0000\u0000\u0001\u001b\u0001&\u001a@\u000b\u0000\u001a0\u0000\u000bquotestring\u0000\u000bquoteString\u0002\u001a@\u0000\u0002\u001aA\r\u001aA\u0000\u0002n\u0000\u0000\u0001\u001b\u0001\"\u001aB\u001aC\r\u001aB\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"\u000b\u0000\u00160\u0000\ttestmatch\u0000\ttestMatch\r\u001aC\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001e\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a?\u0000\u0000f\u0000\u0000\u0001\u001a\u0001\u001b\u0001\u0000\u0000\u0001\u0000\u0000\r\u001a0\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001aD\u001aE\r\u001aD\u0000\u0000;\u0000\u0000\u0001(\u0001)\r\u001aE\u0000\u0001o\u0000\u0000\u0001'\u0001(\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\r\u001a.\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestlist\u0000\btestList\u0002\u001a,\u0000\u0002\u001aF\u001aG\r\u001aF\u0000\u0003l\u0000\u0002\u00010\u00010\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001aG\u0000\u0002\u001aH\u001aI\r\u001aH\u0000\u0002r\u0000\u0000\u00010\u0001?\u001aJ\u001aK\r\u001aJ\u0000\u0002n\u0000\u0001\u00010\u0001=\u001aL\u001aM\r\u001aL\u0000\u0003I\u0000\u0000\u00011\u0001=\u001aN\u000b\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u0002\u001aN\u0000\u0002\u001aO\u001aP\r\u001aO\u0000\u0001o\u0000\u0000\u00011\u00012\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aP\u0000\u0002\u001aQ\r\u001aQ\u0000\u0002b\u0000\u0000\u00012\u00019\u001aR\u001aS\r\u001aR\u0000\u0002b\u0000\u0000\u00012\u00015\u001aT\u001aU\r\u001aT\u0000\u0001o\u0000\u0000\u00012\u00013\u000b\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\r\u001aU\u0000\u0001o\u0000\u0000\u00013\u00014\u000b\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\r\u001aS\u0000\u0001m\u0000\u0000\u00015\u00018\u001aV\u000e\u001aV\u0000\u0001\u001aW\u0011\u001aW\u0000\u0002\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u001aM\u0000\u0000f\u0000\u0000\u00010\u00011\r\u001aK\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aI\u0000\u0002\u001aX\u001aY\r\u001aX\u0000\u0003l\u0000\u0002\u0001@\u0001@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001aY\u0000\u0002\u001aZ\u001a[\r\u001aZ\u0000\u0003l\u0000\u0002\u0001@\u0001@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a[\u0000\u0002\u001a\\\u001a]\r\u001a\\\u0000\u0002r\u0000\u0000\u0001@\u0001Q\u001a^\u001a_\r\u001a^\u0000\u0002b\u0000\u0000\u0001@\u0001O\u001a`\u001aa\r\u001a`\u0000\u0002b\u0000\u0000\u0001@\u0001M\u001ab\u001ac\r\u001ab\u0000\u0002b\u0000\u0000\u0001@\u0001K\u001ad\u001ae\r\u001ad\u0000\u0002b\u0000\u0000\u0001@\u0001G\u001af\u001ag\r\u001af\u0000\u0002b\u0000\u0000\u0001@\u0001E\u001ah\u001ai\r\u001ah\u0000\u0002b\u0000\u0000\u0001@\u0001C\u001aj\u001ak\r\u001aj\u0000\u0001o\u0000\u0000\u0001@\u0001A\u000b\u0000\u00180\u0000\nselectcode\u0000\nselectCode\r\u001ak\u0000\u0001o\u0000\u0000\u0001A\u0001B\u000b\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\r\u001ai\u0000\u0001o\u0000\u0000\u0001C\u0001D\u000b\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\r\u001ag\u0000\u0001o\u0000\u0000\u0001E\u0001F\u000b\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\r\u001ae\u0000\u0001m\u0000\u0000\u0001G\u0001J\u001al\u000e\u001al\u0000\u0001\u001am\u0011\u001am\u0000\u0002\u0000 \r\u001ac\u0000\u0001o\u0000\u0000\u0001K\u0001L\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\r\u001aa\u0000\u0001o\u0000\u0000\u0001M\u0001N\u000b\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\r\u001a_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001a]\u0000\u0002\u001an\u001ao\r\u001an\u0000\u0003l\u0000\u0002\u0001R\u0001R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001ao\u0000\u0002\u001ap\u001aq\r\u001ap\u0000\u0002r\u0000\u0000\u0001R\u0001Y\u001ar\u001as\r\u001ar\u0000\u0002b\u0000\u0000\u0001R\u0001W\u001at\u001au\r\u001at\u0000\u0002b\u0000\u0000\u0001R\u0001U\u001av\u001aw\r\u001av\u0000\u0001o\u0000\u0000\u0001R\u0001S\u000b\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\r\u001aw\u0000\u0001o\u0000\u0000\u0001S\u0001T\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\r\u001au\u0000\u0001o\u0000\u0000\u0001U\u0001V\u000b\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\r\u001as\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aq\u0000\u0002\u001ax\u001ay\r\u001ax\u0000\u0003l\u0000\u0002\u0001Z\u0001Z\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001ay\u0000\u0002\u001az\u001a{\r\u001az\u0000\u0003l\u0000\u0002\u0001Z\u0001Z\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a{\u0000\u0002\u001a|\u001a}\r\u001a|\u0000\u0002O\u0000\u0001\u0001Z\u0001d\u001a~\u001a\r\u001a~\u0000\u0003I\u0000\u0002\u0001^\u0001c\u001a\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u001a\u0000\u0001o\u0000\u0000\u0001^\u0001_\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0001Z\u0001[\u0002\u001a}\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001e\u0001e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001e\u0001h\u001a\u001a\u001a\r\u001a\u0000\u0002r\u0000\u0000\u0001e\u0001h\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0001e\u0001f\n\u0000\b\u000bboovtrue\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\f\u001a\u0000#\u0000\u001d no error, so we selected it.\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000:\u0000 \u0000n\u0000o\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000 \u0000i\u0000t\u0000.\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001i\u0001j\u001a\u001a\u001a\r\u001a\u0000\u0000S\u0000\u0000\u0001i\u0001j\f\u001a\u0000+\u0000% no need to keep checking altPatterns\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000J\u0000 \u0000n\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000k\u0000e\u0000e\u0000p\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000i\u0000n\u0000g\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000s\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001k\u0001k\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001k\u0001k\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000!\u0000\u001b ERROR: try oneAltPattern. \u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00006\u0000 \u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000.\u0000 \u0002\u0000\u0000\r\u001a\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u001a\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003\u001a\n\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001a\u001e\u0000\u0001k\u0000\u0000\u0001t\u0001\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0000\u0001t\u0001\u001a\u001a\u001a\r\u001a\u0000\u0002>\u0001\u0000\u0001t\u0001y\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0001t\u0001u\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u001a\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0003I\r\u001a\u0000\u0001k\u0000\u0000\u0001|\u0001\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001|\u0001|\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000\/\u0000) some error OTHER than not found in list:\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000R\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000i\u0000n\u0000 \u0000l\u0000i\u0000s\u0000t\u0000:\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003R\u0000\u0000\u0001|\u0001\u001a\u001a\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003\u001a\n\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a\u0000\u0003l\u0000\u0001\u0001\u0001\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000=\u00007 just try the next altPattern, so continue repeat loop.\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000n\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000e\u0000x\u0000t\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000p\u0000.\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001\u0001\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000\"\u0000\u001c END OF: try oneAltPattern. \u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00008\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000.\u0000 \u0002\u0000\u0000\u0002\u001a\u001b\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\r\u001a\u000e\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001a\f\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0001L\u0000\u0000\u0001\u0001\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0019\u0000\u0002\u001a~\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002~\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000z\u001a\u001a\nz\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000y\u000by\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003x\u001aw\nx\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006w\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0001\u0001u\u001a\u001a\nu\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r\u001a\u0000\u0003I\u0000\u0000\u0001\u0001t\u001as\u000bt\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u001a\u0000\u0002\u001ar\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001q\u000bq\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002r\u0000\u0000\u0002s\u0000\u0000\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\u0006\u0000 \u0000-\u0000 \r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001p\u000bp\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003o\u001an\no\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001m\u000bm\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006n\u0000\u0000\u0002\u0019\u0000\u0002\u001al\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002l\u0000\u0000\u0002\u0019\/\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002i\u0000\u0000\u0000[\u0000^\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u001aa\u000bb\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u0002\u001a\u0000\u0002\u001a`\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000F\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u001a\u001a\u0001^\u0000\u0000\f\u001a\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000D\u001a\u001a\u001a\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0003\u00004\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\nZ\u001aY\u000bZ\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001a\u0000\u0002\u001aX\r\u001a\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006W\u0002W\u0000\u0000\u0002X\u0000\u0000\u0002Y\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000bVUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002O\u0000\u0000\u0000\u000b\u00002\u001a\u001a\r\u001a\u0000\u0002O\u0000\u0000\u0000\u000f\u00001\u001a\u001a\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0016\u00000\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001bSRQ\u000bS\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002R\u0000\u0000\u0002Q\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002r\u0000\u0000\u0000\u001c\u0000-\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001dP\nP\u0000\b\u000bboovtrue\r\u001a\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u001b\u0000\r\u001a\u0000\u00011\u0000\u0000\u0000*\u0000,O\nO\u0000\u0004\nfocu\r\u001b\u0000\u0000\u0003l\u0000\u0005\u0000\u001d\u0000*\u001b\u0001NM\r\u001b\u0001\u0000\u0002n\u0000\u0000\u0000\u001d\u0000*\u001b\u0002\u001b\u0003\r\u001b\u0002\u0000\u00024\u0000\u0000\u0000'\u0000*L\u001b\u0004\nL\u0000\u0004\ntabB\r\u001b\u0004\u0000\u0001m\u0000\u0000\u0000(\u0000)K\u0003K\u0000\u0001\r\u001b\u0003\u0000\u0002n\u0000\u0000\u0000\u001d\u0000'\u001b\u0005\u001b\u0006\r\u001b\u0005\u0000\u00024\u0000\u0000\u0000$\u0000'J\u001b\u0007\nJ\u0000\u0004\nscra\r\u001b\u0007\u0000\u0001m\u0000\u0000\u0000%\u0000&I\u0003I\u0000\u0001\r\u001b\u0006\u0000\u0002n\u0000\u0000\u0000\u001d\u0000$\u001b\b\u001b\t\r\u001b\b\u0000\u00024\u0000\u0000\u0000!\u0000$H\u001b\n\nH\u0000\u0004\ntabg\r\u001b\n\u0000\u0001m\u0000\u0000\u0000\"\u0000#G\u0003G\u0000\u0001\r\u001b\t\u0000\u00024\u0000\u0000\u0000\u001d\u0000!F\u001b\u000b\nF\u0000\u0004\ncwin\r\u001b\u000b\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 E\u0003E\u0000\u0001\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u001a\u0000\u0002\u001b\fD\r\u001b\f\u0000\u0001L\u0000\u0000\u0000.\u00000\u001b\r\r\u001b\r\u0000\u0001m\u0000\u0000\u0000.\u0000\/C\nC\u0000\b\u000bboovtrue\u0002D\u0000\u0000\r\u001a\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013B\u001b\u000e\nB\u0000\u0004\npcap\r\u001b\u000e\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001b\u000f\u000e\u001b\u000f\u0000\u0001\u001b\u0010\u0011\u001b\u0010\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001a\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001b\u0011\u000f\u001b\u0011\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u0012A\r\u001b\u0012\u0000\u0003l\u0000\u0002\u00003\u00003@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002A\u0000\u0000\r\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000=\u001b\u0013\u001b\u0014\n=\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0014\u0000\u0003;\u001b\u0015:\n;\u0000\u0004\nerrn\r\u001b\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006:\u0000\u0000\r\u001a\u0000\u0003R\u0000\u0000\u0000<\u0000D8\u001b\u0016\u001b\u0017\n8\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0016\u0000\u0002b\u0000\u0000\u0000@\u0000C\u001b\u0018\u001b\u0019\r\u001b\u0018\u0000\u0001m\u0000\u0000\u0000@\u0000A\u001b\u001a\u000e\u001b\u001a\u0000\u0001\u001b\u001b\u0011\u001b\u001b\u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000o\u0000c\u0000u\u0000s\u0000 \u0000o\u0000n\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000-\u0000 \r\u001b\u0019\u0000\u0001o\u0000\u0000\u0000A\u0000B7\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0017\u0000\u00036\u001b\u001c5\n6\u0000\u0004\nerrn\r\u001b\u001c\u0000\u0001o\u0000\u0000\u0000>\u0000?4\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00065\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u001d3\r\u001b\u001d\u0000\u0003l\u0000\u0002\u0000E\u0000E210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u00023\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u001e\u001b\u001f\r\u001b\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\/.-\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0002\u001b\u001f\u0000\u0002\u001b \u001b!\r\u001b \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u001b!\u0000\u0002\u001b\"\u001b#\r\u001b\"\u0000\u0002i\u0000\u0000\u0000_\u0000b\u001b$\u001b%\r\u001b$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000)\u001b&(\u000b)\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u001b&\u0000\u0002\u001b''\r\u001b'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002'\u0000\u0000\u0002(\u0000\u0000\r\u001b%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000A\u001b(\u0002\u001b(\u0000\u0002\u001b)\u001b*\r\u001b)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000%\u001b+\u001b,\u0001%\u0000\u0000\f\u001b+\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u001b,\u0000\u0001\u001b-\u0011\u001b-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u001b*\u0000\u0002\u001b.\u001b\/\r\u001b.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u001b\/\u0000\u0002\u001b0\u001b1\r\u001b0\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000?\u001b2\u001b3\u001b4\r\u001b2\u0000\u0001k\u0000\u0000\u0000\u0003\u0000+\u001b5\u0002\u001b5\u0000\u0002\u001b6\u001b7\r\u001b6\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\n!\u001b8 \u000b!\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001b8\u0000\u0002\u001b9\u001f\r\u001b9\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006\u001e\u0002\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002 \u0000\u0000\u0002\u001b7\u0000\u0002\u001b:\u001d\r\u001b:\u0000\u0002O\u0000\u0000\u0000\u000b\u0000+\u001b;\u001b<\r\u001b;\u0000\u0002O\u0000\u0000\u0000\u000f\u0000*\u001b=\u001b>\r\u001b=\u0000\u0001k\u0000\u0000\u0000\u0016\u0000)\u001b?\u0002\u001b?\u0000\u0002\u001b@\u001bA\r\u001b@\u0000\u0002n\u0000\u0001\u0000\u0016\u0000&\u001bB\u001bC\r\u001bB\u0000\u0003I\u0000\u0000\u0000\u0017\u0000&\u001c\u001bD\u001b\u000b\u001c\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u001bD\u0000\u0002\u001bE\u001bF\r\u001bE\u0000\u0002n\u0000\u0000\u0000\u0017\u0000!\u001bG\u001bH\r\u001bG\u0000\u00024\u0000\u0000\u0000\u001e\u0000!\u001a\u001bI\n\u001a\u0000\u0004\npopB\r\u001bI\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u001bJ\u000e\u001bJ\u0000\u0001\u001bK\u0011\u001bK\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000:\r\u001bH\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001e\u001bL\u001bM\r\u001bL\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0019\u001bN\n\u0019\u0000\u0004\ntabg\r\u001bN\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0018\u0003\u0018\u0000\u0001\r\u001bM\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001b\u0017\u001bO\n\u0017\u0000\u0004\ncwin\r\u001bO\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0016\u0003\u0016\u0000\u0001\u0002\u001bF\u0000\u0002\u001bP\u0015\r\u001bP\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u0014\u000b\u0014\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0015\u0000\u0000\u0002\u001b\u0000\u0000\r\u001bC\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001bA\u0000\u0002\u001bQ\u0013\r\u001bQ\u0000\u0001L\u0000\u0000\u0000'\u0000)\u001bR\r\u001bR\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0012\n\u0012\u0000\b\u000bboovtrue\u0002\u0013\u0000\u0000\r\u001b>\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0011\u001bS\n\u0011\u0000\u0004\npcap\r\u001bS\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001bT\u000e\u001bT\u0000\u0001\u001bU\u0011\u001bU\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001b<\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001bV\u000f\u001bV\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001d\u0000\u0000\r\u001b3\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u001bW\u001bX\n\u0010\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001bW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001bX\u0000\u0003\u000e\u001bY\r\n\u000e\u0000\u0004\nerrn\r\u001bY\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\r\u0000\u0000\r\u001b4\u0000\u0003R\u0000\u0000\u00003\u0000?\u000b\u001bZ\u001b[\n\u000b\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001bZ\u0000\u0002b\u0000\u0000\u00007\u0000>\u001b\\\u001b]\r\u001b\\\u0000\u0002b\u0000\u0000\u00007\u0000<\u001b^\u001b_\r\u001b^\u0000\u0002b\u0000\u0000\u00007\u0000:\u001b`\u001ba\r\u001b`\u0000\u0001m\u0000\u0000\u00007\u00008\u001bb\u000e\u001bb\u0000\u0001\u001bc\u0011\u001bc\u0000.\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000'\r\u001ba\u0000\u0001o\u0000\u0000\u00008\u00009\n\u000b\n\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001b_\u0000\u0001m\u0000\u0000\u0000:\u0000;\u001bd\u000e\u001bd\u0000\u0001\u001be\u0011\u001be\u0000\b\u0000'\u0000 \u0000-\u0000 \r\u001b]\u0000\u0001o\u0000\u0000\u0000<\u0000=\t\u000b\t\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b[\u0000\u0003\b\u001bf\u0007\n\b\u0000\u0004\nerrn\r\u001bf\u0000\u0001o\u0000\u0000\u00005\u00006\u0006\u000b\u0006\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0007\u0000\u0000\u0002\u001b1\u0000\u0002\u001bg\u0005\r\u001bg\u0000\u0003l\u0000\u0002\u0000@\u0000@\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0005\u0000\u0000\u0002\u001b#\u0000\u0002\u001bh\u001bi\r\u001bh\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u001bi\u0000\u0002\u001bj\u001bk\r\u001bj\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001bk\u0000\u0002\u001bl\u001bm\r\u001bl\u0000\u0002i\u0000\u0000\u0000c\u0000f\u001bn\u001bo\r\u001bn\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001bp\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001bp\u0000\u0002\u001bq\r\u001bq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001bo\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u001br\u0002\u001br\u0000\u0002\u001bs\u001bt\r\u001bs\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001bu\u001bv\u0001\u0000\u0000\f\u001bu\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u001bv\u0000\u0001\u001bw\u0011\u001bw\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u001bt\u0000\u0002\u001bx\u001by\r\u001bx\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001by\u0000\u0002\u001bz\u001b{\r\u001bz\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u001b|\u001b}\r\u001b|\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\u001b~\u0006\u001b~\u0000\u0003\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000s\u0006\u0000\u0000\r\u001b}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001b{\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001b\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003Q\u0000\u0000\u0000\r\u0000t\u001b\u001b\u001b\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0010\u0000X\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0015\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d\u001b\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002O\u0000\u0000\u0000\u001e\u0000X\u001b\u001b\r\u001b\u0000\u0002O\u0000\u0000\u0000\"\u0000W\u001b\u001b\r\u001b\u0000\u0001k\u0000\u0000\u0000)\u0000V\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000)\u0000A\u001b\u001b\r\u001b\u0000\u0001N\u0000\u0000\u0000)\u0000?\u001b\r\u001b\u0000\u0003l\u0000\u0005\u0000)\u0000>\u001b\r\u001b\u0000\u00026\u0001\u0000\u0000)\u0000>\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000)\u00003\u001b\u001b\r\u001b\u0000\u00024\u0000\u0001\u00000\u00003\u001b\n\u0000\u0004\nradB\r\u001b\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r\u001b\u0000\u0002n\u0000\u0000\u0000)\u00000\u001b\u001b\r\u001b\u0000\u00024\u0000\u0000\u0000-\u00000\u001b\n\u0000\u0004\ntabg\r\u001b\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r\u001b\u0000\u00024\u0000\u0000\u0000)\u0000-\u001b\n\u0000\u0004\ncwin\r\u001b\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u001b\u0000\u0002E\u0000\u0000\u00004\u0000=\u001b\u001b\r\u001b\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\ntitl\r\u001b\u0000\u0002n\u0000\u0000\u00008\u0000<\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0004Z\u0000\u0000\u0000B\u0000S\u001b\u001b\r\u001b\u0000\u0002>\u0001\u0000\u0000B\u0000G\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000B\u0000E\u001b\u001b\r\u001b\u0000\u00011\u0000\u0000\u0000C\u0000E\n\u0000\u0004\nvalL\r\u001b\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\r\u001b\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0001\r\u001b\u0000\u0003I\u0000\u0002\u0000J\u0000O\u001b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001b\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001L\u0000\u0000\u0000T\u0000V\u001b\r\u001b\u0000\u0001m\u0000\u0000\u0000T\u0000U\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u001b\u0000\u00024\u0000\u0000\u0000\"\u0000&\u001b\n\u0000\u0004\npcap\r\u001b\u0000\u0001m\u0000\u0000\u0000$\u0000%\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001b\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u001b\u000f\u001b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u001b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0000\u0003\u001b\n\u0000\u0004\nerrn\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001b\u0000\u0003R\u0000\u0000\u0000`\u0000t\u001b\u001b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000s\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000q\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000m\u001b\u001b\r\u001b\u0000\u0001m\u0000\u0000\u0000f\u0000i\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000(\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000'\r\u001b\u0000\u0002n\u0000\u0000\u0000i\u0000l\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000j\u0000l\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000m\u0000p\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0010\u0000'\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\u001b\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0000\u0003\u001b\n\u0000\u0004\nerrn\r\u001b\u0000\u0001o\u0000\u0000\u0000d\u0000e\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001bm\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002i\u0000\u0000\u0000g\u0000j\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b\u001b\u0001\u0000\u0000\f\u001b\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t\u001b\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001b\u0006\u001b\u0000\u0003\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000F\u0000i\u0000e\u0000l\u0000d\u0000s\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002i\u0000\u0000\u0000k\u0000n\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b\u001b\u0001\u0000\u0000\f\u001b\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t\u001c\u0000\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001c\u0000\u0000\u0002\u001c\u0001\r\u001c\u0001\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001c\u0002\u0006\u001c\u0002\u0000\u0003\u001c\u0003\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001c\u0003\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001c\u0004\u000e\u001c\u0004\u0000\u0001\u001c\u0005\u0011\u001c\u0005\u0000\u001a\u0000R\u0000e\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000h\u0000i\u0000p\u0000s\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001c\u0006\u001c\u0007\r\u001c\u0006\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0007\u0000\u0002\u001c\b\r\u001c\b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001c\t\u001c\n\r\u001c\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\n\u0000\u0002\u001c\u000b\u001c\f\r\u001c\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\f\u0000\u0002\u001c\r\u001c\u000e\r\u001c\r\u0000\u0002i\u0000\u0000\u0000o\u0000r\u001c\u000f\u001c\u0010\r\u001c\u000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u0011\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c\u0011\u0000\u0002\u001c\u0012\r\u001c\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c\u0010\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001c\u0013\u0002\u001c\u0013\u0000\u0002\u001c\u0014\u001c\u0015\r\u001c\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c\u0016\u001c\u0017\u0001\u0000\u0000\f\u001c\u0016\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001c\u0017\u0000\u0001\u001c\u0018\u0011\u001c\u0018\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001c\u0015\u0000\u0002\u001c\u0019\u001c\u001a\r\u001c\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u001c\u001a\u0000\u0002\u001c\u001b\u001c\u001c\r\u001c\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t|\u001c\u001d{\u000b|\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001c\u001d\u0000\u0002\u001c\u001ez\r\u001c\u001e\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001c\u001f\u0006\u001c\u001f\u0000\u0003y\u001c x\u000by\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001c \u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001c!\u000e\u001c!\u0000\u0001\u001c\"\u0011\u001c\"\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000s\u0006x\u0000\u0000\u0002z\u0000\u0000\u0002{\u0000\u0000\u0002\u001c\u001c\u0000\u0002\u001c#w\r\u001c#\u0000\u0003l\u0000\u0002\u0000\n\u0000\nvut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002w\u0000\u0000\u0002\u001c\u000e\u0000\u0002\u001c$\u001c%\r\u001c$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u001c%\u0000\u0002\u001c&\u001c'\r\u001c&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000pon\u0001p\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u001c'\u0000\u0002\u001c(\u001c)\r\u001c(\u0000\u0002i\u0000\u0000\u0000s\u0000v\u001c*\u001c+\r\u001c*\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000m\u001c,l\u000bm\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u0002\u001c,\u0000\u0002\u001c-k\r\u001c-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002k\u0000\u0000\u0002l\u0000\u0000\r\u001c+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000a\u001c.\u0002\u001c.\u0000\u0002\u001c\/\u001c0\r\u001c\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000i\u001c1\u001c2\u0001i\u0000\u0000\f\u001c1\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c2\u0000\u0001\u001c3\u0011\u001c3\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c0\u0000\u0002\u001c4\u001c5\r\u001c4\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u001c5\u0000\u0002\u001c6\u001c7\r\u001c6\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000_\u001c8\u001c9\u001c:\r\u001c8\u0000\u0001k\u0000\u0000\u0000\u0003\u0000K\u001c;\u0002\u001c;\u0000\u0002\u001c<\u001c=\r\u001c<\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\ne\u001c>d\u000be\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c>\u0000\u0002\u001c?c\r\u001c?\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006b\u0002b\u0000\u0000\u0002c\u0000\u0000\u0002d\u0000\u0000\u0002\u001c=\u0000\u0002\u001c@a\r\u001c@\u0000\u0002O\u0000\u0000\u0000\u000b\u0000K\u001cA\u001cB\r\u001cA\u0000\u0002O\u0000\u0000\u0000\u000f\u0000J\u001cC\u001cD\r\u001cC\u0000\u0001k\u0000\u0000\u0000\u0016\u0000I\u001cE\u0002\u001cE\u0000\u0002\u001cF\u001cG\r\u001cF\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001cH\u001cI\r\u001cH\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001b`_^\u000b`\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002_\u0000\u0000\u0002^\u0000\u0000\r\u001cI\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001cG\u0000\u0002\u001cJ\u001cK\r\u001cJ\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u001cK\u0000\u0002\u001cL\u001cM\r\u001cL\u0000\u0002r\u0000\u0000\u0000\u001c\u0000>\u001cN\u001cO\r\u001cN\u0000\u0002n\u0000\u0000\u0000\u001c\u0000<\u001cP\u001cQ\r\u001cP\u0000\u00011\u0000\u0000\u0000:\u0000<Z\nZ\u0000\u0004\nvalL\r\u001cQ\u0000\u0002n\u0000\u0000\u0000\u001c\u0000:\u001cR\u001cS\r\u001cR\u0000\u00024\u0000\u0000\u00007\u0000:Y\u001cT\nY\u0000\u0004\nsttx\r\u001cT\u0000\u0001m\u0000\u0000\u00008\u00009X\u0003X\u0000\u0001\r\u001cS\u0000\u0003l\u0000\u0005\u0000\u001c\u00007\u001cUWV\r\u001cU\u0000\u00026\u0001\u0000\u0000\u001c\u00007\u001cV\u001cW\r\u001cV\u0000\u0002n\u0000\u0000\u0000\u001c\u0000+\u001cX\u001cY\r\u001cX\u0000\u00012\u0000\u0000\u0000)\u0000+U\nU\u0000\u0004\ncrow\r\u001cY\u0000\u0003l\u0000\u0005\u0000\u001c\u0000)\u001cZTS\r\u001cZ\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\u001c[\u001c\\\r\u001c[\u0000\u00024\u0000\u0000\u0000&\u0000)R\u001c]\nR\u0000\u0004\ntabB\r\u001c]\u0000\u0001m\u0000\u0000\u0000'\u0000(Q\u0003Q\u0000\u0001\r\u001c\\\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\u001c^\u001c_\r\u001c^\u0000\u00024\u0000\u0000\u0000#\u0000&P\u001c`\nP\u0000\u0004\nscra\r\u001c`\u0000\u0001m\u0000\u0000\u0000$\u0000%O\u0003O\u0000\u0001\r\u001c_\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\u001ca\u001cb\r\u001ca\u0000\u00024\u0000\u0000\u0000 \u0000#N\u001cc\nN\u0000\u0004\ntabg\r\u001cc\u0000\u0001m\u0000\u0000\u0000!\u0000\"M\u0003M\u0000\u0001\r\u001cb\u0000\u00024\u0000\u0000\u0000\u001c\u0000 L\u001cd\nL\u0000\u0004\ncwin\r\u001cd\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fK\u0003K\u0000\u0001\u0001T\u0000\u0000\u0001S\u0000\u0000\r\u001cW\u0000\u0002=\u0000\u0003\u0000,\u00006\u001ce\u001cf\r\u001ce\u0000\u0002n\u0000\u0000\u0000-\u00002\u001cg\u001ch\r\u001cg\u0000\u00011\u0000\u0000\u00000\u00002J\nJ\u0000\u0004\nvalL\r\u001ch\u0000\u00024\u0000\u0000\u0000-\u00000I\u001ci\nI\u0000\u0004\nsttx\r\u001ci\u0000\u0001m\u0000\u0000\u0000.\u0000\/H\u0003H\u0000\u0002\r\u001cf\u0000\u0001m\u0000\u0000\u00003\u00005\u001cj\u000e\u001cj\u0000\u0001\u001ck\u0011\u001ck\u0000\u0012\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u001cO\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u0002\u001cM\u0000\u0002\u001cl\u001cm\r\u001cl\u0000\u0002n\u0000\u0001\u0000?\u0000F\u001cn\u001co\r\u001cn\u0000\u0003I\u0000\u0000\u0000@\u0000FF\u001cpE\u000bF\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001cp\u0000\u0002\u001cqD\r\u001cq\u0000\u0001J\u0000\u0000\u0000@\u0000BC\u0002C\u0000\u0000\u0002D\u0000\u0000\u0002E\u0000\u0000\r\u001co\u0000\u0000f\u0000\u0000\u0000?\u0000@\u0002\u001cm\u0000\u0002\u001crB\r\u001cr\u0000\u0001L\u0000\u0000\u0000G\u0000I\u001cs\r\u001cs\u0000\u0001o\u0000\u0000\u0000G\u0000HA\u000bA\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u0002B\u0000\u0000\r\u001cD\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013@\u001ct\n@\u0000\u0004\npcap\r\u001ct\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001cu\u000e\u001cu\u0000\u0001\u001cv\u0011\u001cv\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001cB\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001cw\u000f\u001cw\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002a\u0000\u0000\r\u001c9\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000?\u001cx\u001cy\n?\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001cx\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001cy\u0000\u0003=\u001cz<\n=\u0000\u0004\nerrn\r\u001cz\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006<\u0000\u0000\r\u001c:\u0000\u0003R\u0000\u0000\u0000S\u0000_:\u001c{\u001c|\n:\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c{\u0000\u0002b\u0000\u0000\u0000Y\u0000^\u001c}\u001c~\r\u001c}\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000F\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000-\u0000 \r\u001c~\u0000\u0001o\u0000\u0000\u0000\\\u0000]9\u000b9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c|\u0000\u00038\u001c7\n8\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000W\u0000X6\u000b6\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00067\u0000\u0000\u0002\u001c7\u0000\u0002\u001c5\r\u001c\u0000\u0003l\u0000\u0002\u0000`\u0000`432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u00025\u0000\u0000\u0002\u001c)\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000010\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000.-,\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002i\u0000\u0000\u0000w\u0000z\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u001c*\u000b+\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u0002\u001c\u0000\u0002\u001c)\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002)\u0000\u0000\u0002*\u0000\u0000\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0000a\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000'\u001c\u001c\u0001'\u0000\u0000\f\u001c\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000_\u001c\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0003\u0000K\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\n#\u001c\"\u000b#\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c\u0000\u0002\u001c!\r\u001c\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006 \u0002 \u0000\u0000\u0002!\u0000\u0000\u0002\"\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001f\r\u001c\u0000\u0002O\u0000\u0000\u0000\u000b\u0000K\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u000f\u0000J\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0016\u0000I\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001b\u001e\u001d\u001c\u000b\u001e\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u001d\u0000\u0000\u0002\u001c\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0000\u001c\u0000>\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000<\u001c\u001c\r\u001c\u0000\u00011\u0000\u0000\u0000:\u0000<\u0018\n\u0018\u0000\u0004\nvalL\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000:\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u00007\u0000:\u0017\u001c\n\u0017\u0000\u0004\nsttx\r\u001c\u0000\u0001m\u0000\u0000\u00008\u00009\u0016\u0003\u0016\u0000\u0001\r\u001c\u0000\u0003l\u0000\u0005\u0000\u001c\u00007\u001c\u0015\u0014\r\u001c\u0000\u00026\u0001\u0000\u0000\u001c\u00007\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000+\u001c\u001c\r\u001c\u0000\u00012\u0000\u0000\u0000)\u0000+\u0013\n\u0013\u0000\u0004\ncrow\r\u001c\u0000\u0003l\u0000\u0005\u0000\u001c\u0000)\u001c\u0012\u0011\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000&\u0000)\u0010\u001c\n\u0010\u0000\u0004\ntabB\r\u001c\u0000\u0001m\u0000\u0000\u0000'\u0000(\u000f\u0003\u000f\u0000\u0001\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000#\u0000&\u000e\u001c\n\u000e\u0000\u0004\nscra\r\u001c\u0000\u0001m\u0000\u0000\u0000$\u0000%\r\u0003\r\u0000\u0001\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000 \u0000#\f\u001c\n\f\u0000\u0004\ntabg\r\u001c\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u000b\u0003\u000b\u0000\u0001\r\u001c\u0000\u00024\u0000\u0000\u0000\u001c\u0000 \n\u001c\n\n\u0000\u0004\ncwin\r\u001c\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\t\u0003\t\u0000\u0001\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\r\u001c\u0000\u0002>\u0001\u0000\u0000,\u00006\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000-\u00002\u001c\u001c\r\u001c\u0000\u00011\u0000\u0000\u00000\u00002\b\n\b\u0000\u0004\nvalL\r\u001c\u0000\u00024\u0000\u0000\u0000-\u00000\u0007\u001c\n\u0007\u0000\u0004\nsttx\r\u001c\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0006\u0003\u0006\u0000\u0002\r\u001c\u0000\u0001m\u0000\u0000\u00003\u00005\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0012\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000?\u0000F\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000@\u0000F\u0004\u001c\u0003\u000b\u0004\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001c\u0000\u0002\u001c\u0002\r\u001c\u0000\u0001J\u0000\u0000\u0000@\u0000B\u0001\u0002\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0003\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000?\u0000@\u0002\u001c\u0000\u0002\u001c\u0000\r\u001c\u0000\u0001L\u0000\u0000\u0000G\u0000I\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u0002\u0000\u0000\u0000\r\u001c\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\n\u0000\u0004\npcap\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001c\u000f\u001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001f\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c\u0000\u0003\u001c\n\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000S\u0000_\u001c\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c\u0000\u0002b\u0000\u0000\u0000Y\u0000^\u001c\u001c\r\u001c\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000F\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000-\u0000 \r\u001c\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c\u0000\u0003\u001c\n\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001c\u0000\u0002\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000`\u0000`\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002i\u0000\u0000\u0000{\u0000~\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u0002\u001c\u0000\u0002\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c\u001c\u0001\u0000\u0000\f\u001c\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0001\u001c\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u0003\u0001\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u0007\u0001\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u000e\u0001\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\u001d\u0000\u001d\u0001\r\u001d\u0000\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0001\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\u001c\u0000\u0002\u001d\u0002\u001d\u0003\r\u001d\u0002\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d\u0003\u0000\u0002\u001d\u0004\u001d\u0005\r\u001d\u0004\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\u001d\u0006\u001d\u0007\u0001\u0000\u0000\f\u001d\u0006\u0000\u001c\u0000\u0016 try to open Manage DB\u0000\u0002\u0000\u0000\u000e\u001d\u0007\u0000\u0001\u001d\b\u0011\u001d\b\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0002\u001d\u0005\u0000\u0002\u001d\t\r\u001d\t\u0000\u0004Z\u0000\u0000\u0000\u0014\u0001\u001d\n\u001d\u000b\u001d\f\r\u001d\n\u0000\u0002C\u0000\u0000\u0000\u0014\u0000\u001c\u001d\r\u001d\u000e\r\u001d\r\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u001d\u000f\u001d\u0010\r\u001d\u000f\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r\u001d\u0010\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\u001d\u0011\n\u0000\u0004\ncwin\r\u001d\u0011\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r\u001d\u000e\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u001d\u0012\u000e\u001d\u0012\u0000\u0001\u001d\u0013\u0011\u001d\u0013\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000o\u0000r\r\u001d\u000b\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!\u001d\u0014\r\u001d\u0014\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u001d\f\u0000\u0001k\u0000\u0000\u0000$\u0001\u001d\u0015\u0002\u001d\u0015\u0000\u0002\u001d\u0016\u001d\u0017\r\u001d\u0016\u0000\u0003I\u0000\u0002\u0000$\u0000D\u001d\u0018\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0018\u0000\u0003l\u0000\u0005\u0000$\u0000@\u001d\u0019\r\u001d\u0019\u0000\u00026\u0001\u0000\u0000$\u0000@\u001d\u001a\u001d\u001b\r\u001d\u001a\u0000\u0002n\u0000\u0000\u0000$\u00007\u001d\u001c\u001d\u001d\r\u001d\u001c\u0000\u00024\u0000\u0001\u00004\u00007\u001d\u001e\n\u0000\u0004\nmenI\r\u001d\u001e\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0001\r\u001d\u001d\u0000\u0002n\u0000\u0000\u0000$\u00004\u001d\u001f\u001d \r\u001d\u001f\u0000\u00024\u0000\u0000\u00001\u00004\u001d!\n\u0000\u0004\nmenE\r\u001d!\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r\u001d \u0000\u0002n\u0000\u0000\u0000$\u00001\u001d\"\u001d#\r\u001d\"\u0000\u00024\u0000\u0000\u0000.\u00001\u001d$\n\u0000\u0004\nmenI\r\u001d$\u0000\u0001m\u0000\u0000\u0000\/\u00000\u001d%\u000e\u001d%\u0000\u0001\u001d&\u0011\u001d&\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r\u001d#\u0000\u0002n\u0000\u0000\u0000$\u0000.\u001d'\u001d(\r\u001d'\u0000\u00024\u0000\u0000\u0000+\u0000.\u001d)\n\u0000\u0004\nmenE\r\u001d)\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\r\u001d(\u0000\u0002n\u0000\u0000\u0000$\u0000+\u001d*\u001d+\r\u001d*\u0000\u00024\u0000\u0000\u0000(\u0000+\u001d,\n\u0000\u0004\nmbri\r\u001d,\u0000\u0001m\u0000\u0000\u0000)\u0000*\u001d-\u000e\u001d-\u0000\u0001\u001d.\u0011\u001d.\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u001d+\u0000\u00024\u0000\u0000\u0000$\u0000(\u001d\/\n\u0000\u0004\nmbar\r\u001d\/\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\r\u001d\u001b\u0000\u0002C\u0000\u0000\u00008\u0000?\u001d0\u001d1\r\u001d0\u0000\u00011\u0000\u0000\u00009\u0000;\n\u0000\u0004\npnam\r\u001d1\u0000\u0001m\u0000\u0000\u0000<\u0000>\u001d2\u000e\u001d2\u0000\u0001\u001d3\u0011\u001d3\u0000\u0010\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001d\u0017\u0000\u0002\u001d4\u001d5\r\u001d4\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d5\u0000\u0002\u001d6\u001d7\r\u001d6\u0000\u0003l\u0000\u0001\u0000E\u0000E\u001d8\u001d9\u0001\u0000\u0000\f\u001d8\u00003\u0000- do this in case already on relationships tab\u0000\u0002\u0000\u0000\u000e\u001d9\u0000\u0001\u001d:\u0011\u001d:\u0000Z\u0000 \u0000d\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000c\u0000a\u0000s\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000o\u0000n\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000h\u0000i\u0000p\u0000s\u0000 \u0000t\u0000a\u0000b\u0002\u001d7\u0000\u0002\u001d;\u001d<\r\u001d;\u0000\u0003l\u0000\u0001\u0000E\u0000J\u001d=\u001d>\u001d?\r\u001d=\u0000\u0003I\u0000\u0002\u0000E\u0000J\u001d@\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d@\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d>\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d?\u0000\u0001\u001dA\u0011\u001dA\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001d<\u0000\u0002\u001dB\u001dC\r\u001dB\u0000\u0002r\u0000\u0000\u0000K\u0000N\u001dD\u001dE\r\u001dD\u0000\u0001m\u0000\u0000\u0000K\u0000L\n\u0000\b\u000bboovtrue\r\u001dE\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001dC\u0000\u0002\u001dF\u001dG\r\u001dF\u0000\u0002V\u0000\u0000\u0000O\u0000\u001dH\u001dI\r\u001dH\u0000\u0004Z\u0000\u0000\u0000U\u0000\u001dJ\u001dK\u001dL\r\u001dJ\u0000\u0002C\u0001\u0000\u0000U\u0000_\u001dM\u001dN\r\u001dM\u0000\u0002n\u0000\u0000\u0000U\u0000[\u001dO\u001dP\r\u001dO\u0000\u00011\u0000\u0000\u0000Y\u0000[\n\u0000\u0004\npnam\r\u001dP\u0000\u00024\u0000\u0000\u0000U\u0000Y\u001dQ\n\u0000\u0004\ncwin\r\u001dQ\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u001dN\u0000\u0001m\u0000\u0000\u0000[\u0000^\u001dR\u000e\u001dR\u0000\u0001\u001dS\u0011\u001dS\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001dK\u0000\u0001k\u0000\u0000\u0000b\u0000\u001dT\u0002\u001dT\u0000\u0002\u001dU\u001dV\r\u001dU\u0000\u0003I\u0000\u0002\u0000b\u0000z\u001dW\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001dW\u0000\u0003l\u0000\u0005\u0000b\u0000v\u001dX\r\u001dX\u0000\u00026\u0001\u0000\u0000b\u0000v\u001dY\u001dZ\r\u001dY\u0000\u0002n\u0000\u0000\u0000b\u0000k\u001d[\u001d\\\r\u001d[\u0000\u00024\u0000\u0001\u0000f\u0000k\u001d]\n\u0000\u0004\nbutT\r\u001d]\u0000\u0001m\u0000\u0000\u0000i\u0000j\u0003\u0000\u0001\r\u001d\\\u0000\u00024\u0000\u0000\u0000b\u0000f\u001d^\n\u0000\u0004\ncwin\r\u001d^\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\r\u001dZ\u0000\u0002=\u0000\u0003\u0000l\u0000u\u001d_\u001d`\r\u001d_\u0000\u00011\u0000\u0000\u0000m\u0000o\n\u0000\u0004\npnam\r\u001d`\u0000\u0001m\u0000\u0000\u0000p\u0000t\u001da\u000e\u001da\u0000\u0001\u001db\u0011\u001db\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001dV\u0000\u0002\u001dc\r\u001dc\u0000\u0003l\u0000\u0001\u0000{\u0000\u001dd\u001de\u001df\r\u001dd\u0000\u0003I\u0000\u0002\u0000{\u0000\u001dg\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001dg\u0000\u0001m\u0000\u0000\u0000{\u0000|\u0003\u0000\u0001\u0002\u0000\u0000\f\u001de\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001df\u0000\u0001\u001dh\u0011\u001dh\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u001dL\u0000\u0002r\u0000\u0000\u0000\u0000\u001di\u001dj\r\u001di\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001dj\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001dI\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001dG\u0000\u0002\u001dk\u001dl\r\u001dk\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001dl\u0000\u0002\u001dm\u001dn\r\u001dm\u0000\u0003l\u0000\u0001\u0000\u0000\u001do\u001dp\u0001\u0000\u0000\f\u001do\u0000P\u0000J to to the TOs tab and dismiss any xDBC connections that failed to connect\u0000\u0002\u0000\u0000\u000e\u001dp\u0000\u0001\u001dq\u0011\u001dq\u0000\u0000 \u0000t\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000T\u0000O\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000 \u0000a\u0000n\u0000y\u0000 \u0000x\u0000D\u0000B\u0000C\u0000 \u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0002\u001dn\u0000\u0002\u001dr\u001ds\r\u001dr\u0000\u0002n\u0000\u0001\u0000\u0000\u001dt\u001du\r\u001dt\u0000\u0003I\u0000\u0000\u0000\u0000\u001dv\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001dv\u0000\u0002\u001dw\r\u001dw\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001du\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001ds\u0000\u0002\u001dx\u001dy\r\u001dx\u0000\u0003l\u0000\u0001\u0000\u0000\u001dz\u001d{\u001d|\r\u001dz\u0000\u0003I\u0000\u0002\u0000\u0000\u001d}\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d}\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d{\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d|\u0000\u0001\u001d~\u0011\u001d~\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001dy\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002V\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0004Z\u0000\u0000\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0002C\u0001\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000\u001d\n\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0000\u0003l\u0000\u0005\u0000\u0000\u001d\r\u001d\u0000\u00026\u0001\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00024\u0000\u0001\u0000\u0000\u001d\n\u0000\u0004\nbutT\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000\u001d\n\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u0002=\u0000\u0003\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u0001\u0000\u0000\f\u001d\u0000M\u0000Gzoom out to show all TOs and dismiss any that weren't already dismissed\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0000z\u0000o\u0000o\u0000m\u0000 \u0000o\u0000u\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000h\u0000o\u0000w\u0000 \u0000a\u0000l\u0000l\u0000 \u0000T\u0000O\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000 \u0000a\u0000n\u0000y\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000r\u0000e\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000e\u0000d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\u001d\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0002\u0000i\u0006\u001d\u0000\u0003\u001d\n\u0000\u0004\nfaal\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKcmd\u0006\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d~\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000}\u0003}\u0000\u0001\u0002~\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000|\n|\u0000\b\u000bboovtrue\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002V\u0000\u0000\u0000\u0001&\u001d\u001d\r\u001d\u0000\u0004Z\u0000\u0000\u0000\u0001!\u001d\u001dz\u001d\r\u001d\u0000\u0002C\u0001\u0000\u0000\u0001\u0003\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000y\ny\u0000\u0004\npnam\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000x\u001d\nx\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000w\u0003w\u0000\u0001\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0001\u0002\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001d\u0000\u0001k\u0000\u0000\u0001\u0006\u0001\u001b\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0006\u0001\u0015v\u001du\nv\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\u0011\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0001\n\u0001\u0011t\u001d\nt\u0000\u0004\nbutT\r\u001d\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u001d\u0000\u00024\u0000\u0000\u0001\u0006\u0001\ns\u001d\ns\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0001\b\u0001\tr\u0003r\u0000\u0001\u0002u\u0000\u0000\u0002\u001d\u0000\u0002\u001dq\r\u001d\u0000\u0003l\u0000\u0001\u0001\u0016\u0001\u001b\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0016\u0001\u001bp\u001do\np\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0017n\u0003n\u0000\u0001\u0002o\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002q\u0000\u0000\u0002z\u0000\u0000\r\u001d\u0000\u0002r\u0000\u0000\u0001\u001e\u0001!\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0001\u001e\u0001\u001fm\nm\u0000\b\u000bboovfals\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0002\u0001'\u0001'jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0001'\u0001'g\u001d\u001d\u0001g\u0000\u0000\f\u001d\u0000\u0013\u0000\r zoom back in\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u001a\u0000 \u0000z\u0000o\u0000o\u0000m\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000i\u0000n\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0001'\u00017\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0001'\u00015\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u00010\u00015f\u001d\nf\u0000\u0004\ntxtf\r\u001d\u0000\u0001m\u0000\u0000\u00013\u00014e\u0003e\u0000\u0001\r\u001d\u0000\u0002n\u0000\u0000\u0001'\u00010\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0001+\u00010d\u001d\nd\u0000\u0004\ntabg\r\u001d\u0000\u0001m\u0000\u0000\u0001.\u0001\/c\u0003c\u0000\u0001\r\u001d\u0000\u00024\u0000\u0000\u0001'\u0001+b\u001d\nb\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0001)\u0001*a\u0003a\u0000\u0001\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u00018\u0001?\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u00018\u00019_\n_\u0000\b\u000bboovtrue\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0001:\u0001>^\n^\u0000\u0004\nfocu\r\u001d\u0000\u0001o\u0000\u0000\u00019\u0001:]\u000b]\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0001@\u0001I\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0001@\u0001C\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0006\u00001\u00000\u00000\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001e\u0000\r\u001d\u0000\u00011\u0000\u0000\u0001D\u0001H\\\n\\\u0000\u0004\nvalL\r\u001e\u0000\u0000\u0001o\u0000\u0000\u0001C\u0001D[\u000b[\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001e\u0001\u001e\u0002\r\u001e\u0001\u0000\u0002r\u0000\u0000\u0001J\u0001^\u001e\u0003\u001e\u0004\r\u001e\u0003\u0000\u0001m\u0000\u0000\u0001J\u0001KZ\nZ\u0000\b\u000bboovtrue\r\u001e\u0004\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0005\u001e\u0006\r\u001e\u0005\u0000\u00011\u0000\u0000\u0001Y\u0001]Y\nY\u0000\u0004\nfocu\r\u001e\u0006\u0000\u0002n\u0000\u0000\u0001K\u0001Y\u001e\u0007\u001e\b\r\u001e\u0007\u0000\u00024\u0000\u0000\u0001T\u0001YX\u001e\t\nX\u0000\u0004\nscra\r\u001e\t\u0000\u0001m\u0000\u0000\u0001W\u0001XW\u0003W\u0000\u0001\r\u001e\b\u0000\u0002n\u0000\u0000\u0001K\u0001T\u001e\n\u001e\u000b\r\u001e\n\u0000\u00024\u0000\u0000\u0001O\u0001TV\u001e\f\nV\u0000\u0004\ntabg\r\u001e\f\u0000\u0001m\u0000\u0000\u0001R\u0001SU\u0003U\u0000\u0001\r\u001e\u000b\u0000\u00024\u0000\u0000\u0001K\u0001OT\u001e\r\nT\u0000\u0004\ncwin\r\u001e\r\u0000\u0001m\u0000\u0000\u0001M\u0001NS\u0003S\u0000\u0001\u0002\u001e\u0002\u0000\u0002\u001e\u000e\u001e\u000f\r\u001e\u000e\u0000\u0002r\u0000\u0000\u0001_\u0001x\u001e\u0010\u001e\u0011\r\u001e\u0010\u0000\u0001m\u0000\u0000\u0001_\u0001`R\u0003R\u0000\u0000\r\u001e\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0012\u001e\u0013\r\u001e\u0012\u0000\u00011\u0000\u0000\u0001s\u0001wQ\nQ\u0000\u0004\nvalL\r\u001e\u0013\u0000\u0002n\u0000\u0000\u0001`\u0001s\u001e\u0014\u001e\u0015\r\u001e\u0014\u0000\u00024\u0000\u0000\u0001n\u0001sP\u001e\u0016\nP\u0000\u0004\nscrb\r\u001e\u0016\u0000\u0001m\u0000\u0000\u0001q\u0001rO\u0003O\u0000\u0001\r\u001e\u0015\u0000\u0002n\u0000\u0000\u0001`\u0001n\u001e\u0017\u001e\u0018\r\u001e\u0017\u0000\u00024\u0000\u0000\u0001i\u0001nN\u001e\u0019\nN\u0000\u0004\nscra\r\u001e\u0019\u0000\u0001m\u0000\u0000\u0001l\u0001mM\u0003M\u0000\u0001\r\u001e\u0018\u0000\u0002n\u0000\u0000\u0001`\u0001i\u001e\u001a\u001e\u001b\r\u001e\u001a\u0000\u00024\u0000\u0000\u0001d\u0001iL\u001e\u001c\nL\u0000\u0004\ntabg\r\u001e\u001c\u0000\u0001m\u0000\u0000\u0001g\u0001hK\u0003K\u0000\u0001\r\u001e\u001b\u0000\u00024\u0000\u0000\u0001`\u0001dJ\u001e\u001d\nJ\u0000\u0004\ncwin\r\u001e\u001d\u0000\u0001m\u0000\u0000\u0001b\u0001cI\u0003I\u0000\u0001\u0002\u001e\u000f\u0000\u0002\u001e\u001e\u001e\u001f\r\u001e\u001e\u0000\u0002r\u0000\u0000\u0001y\u0001\u001e \u001e!\r\u001e \u0000\u0001m\u0000\u0000\u0001y\u0001zH\u0003H\u0000\u0000\r\u001e!\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\"\u001e#\r\u001e\"\u0000\u00011\u0000\u0000\u0001\u0001G\nG\u0000\u0004\nvalL\r\u001e#\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e$\u001e%\r\u001e$\u0000\u00024\u0000\u0000\u0001\u0001F\u001e&\nF\u0000\u0004\nscrb\r\u001e&\u0000\u0001m\u0000\u0000\u0001\u0001E\u0003E\u0000\u0002\r\u001e%\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e'\u001e(\r\u001e'\u0000\u00024\u0000\u0000\u0001\u0001D\u001e)\nD\u0000\u0004\nscra\r\u001e)\u0000\u0001m\u0000\u0000\u0001\u0001C\u0003C\u0000\u0001\r\u001e(\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e*\u001e+\r\u001e*\u0000\u00024\u0000\u0000\u0001~\u0001B\u001e,\nB\u0000\u0004\ntabg\r\u001e,\u0000\u0001m\u0000\u0000\u0001\u0001A\u0003A\u0000\u0001\r\u001e+\u0000\u00024\u0000\u0000\u0001z\u0001~@\u001e-\n@\u0000\u0004\ncwin\r\u001e-\u0000\u0001m\u0000\u0000\u0001|\u0001}?\u0003?\u0000\u0001\u0002\u001e\u001f\u0000\u0002\u001e.\u001e\/\r\u001e.\u0000\u0003l\u0000\u0002\u0001\u0001>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u001e\/\u0000\u0002\u001e0;\r\u001e0\u0000\u0001L\u0000\u0000\u0001\u0001\u001e1\r\u001e1\u0000\u0001m\u0000\u0000\u0001\u0001:\n:\u0000\b\u000bboovtrue\u0002;\u0000\u0000\u0002\u0000\u0000\r\u001c\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b9\u001e2\n9\u0000\u0004\npcap\r\u001e2\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u001e3\u000e\u001e3\u0000\u0001\u001e4\u0011\u001e4\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u001e5\u000f\u001e5\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00008\u001e6\u001e7\n8\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e6\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e7\u0000\u00036\u001e85\n6\u0000\u0004\nerrn\r\u001e8\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00065\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0001\u00013\u001e9\u001e:\n3\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e9\u0000\u0002b\u0000\u0000\u0001\u0001\u001e;\u001e<\r\u001e;\u0000\u0001m\u0000\u0000\u0001\u0001\u001e=\u000e\u001e=\u0000\u0001\u001e>\u0011\u001e>\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0000 \u0000-\u0000 \r\u001e<\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e:\u0000\u00031\u001e?0\n1\u0000\u0004\nerrn\r\u001e?\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00060\u0000\u0000\u0002\u001c\u0000\u0002\u001e@.\r\u001e@\u0000\u0003l\u0000\u0002\u0001\u0001-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002.\u0000\u0000\u0002\u001c\u0000\u0002\u001eA\u001eB\r\u001eA\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u001eB\u0000\u0002\u001eC\u001eD\r\u001eC\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002\u001eD\u0000\u0002\u001eE\u001eF\r\u001eE\u0000\u0002i\u0000\u0000\u0000\u0000\u001eG\u001eH\r\u001eG\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$\u001eI#\u000b$\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001eI\u0000\u0002\u001eJ\"\r\u001eJ\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000!\u000b!\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\"\u0000\u0000\u0002#\u0000\u0000\r\u001eH\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001eK\u0002\u001eK\u0000\u0002\u001eL\u001eM\r\u001eL\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000 \u001eN\u001eO\u0001 \u0000\u0000\f\u001eN\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001eO\u0000\u0001\u001eP\u0011\u001eP\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001eM\u0000\u0002\u001eQ\u001eR\r\u001eQ\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u001eR\u0000\u0002\u001eS\u001eT\r\u001eS\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u001eU\u001eV\r\u001eU\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\u001eW\u0006\u001eW\u0000\u0003\u001c\u001eX\u001b\u000b\u001c\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\r\u001eX\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u001a\n\u001a\u0000\b\u000bboovtrue\u0006\u001b\u0000\u0000\r\u001eV\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001eT\u0000\u0002\u001eY\u001eZ\r\u001eY\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u001eZ\u0000\u0002\u001e[\u001e\\\r\u001e[\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\u001e]\u001e^\r\u001e]\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\u001e_\u001e`\r\u001e_\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u0015\u000b\u0015\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001e`\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u0014\u000b\u0014\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001e^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001e\\\u0000\u0002\u001ea\u001eb\r\u001ea\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u001eb\u0000\u0002\u001ec\u001ed\r\u001ec\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u000f\u000e\r\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002\u001ed\u0000\u0002\u001ee\u001ef\r\u001ee\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u001eg\u001eh\r\u001eg\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u001ei\u000e\u001ei\u0000\u0001\u001ej\u0011\u001ej\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000o\u0000r\r\u001eh\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\u0002\u001ef\u0000\u0002\u001ek\u001el\r\u001ek\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0014\u001em\u001en\u001eo\r\u001em\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0014\u001ep\u001eq\r\u001ep\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0003\u000b\u0000\n\r\u001eq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\f\u001en\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001eo\u0000\u0001\u001er\u0011\u001er\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001el\u0000\u0002\u001es\u001et\r\u001es\u0000\u0003l\u0000\u0001\u0000\u0015\u0000\u001a\u001eu\u001ev\u001ew\r\u001eu\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\u001ex\u001ey\r\u001ex\u0000\u0002]\u0000\u0000\u0000\u0015\u0000\u0018\u001ez\u001e{\r\u001ez\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\t\u0003\t\u0000<\r\u001e{\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\b\n\b\u0000\u0004\nmin \r\u001ey\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\f\u001ev\u0000\r\u0000\u0007seconds\u0000\u0002\u0000\u0000\u000e\u001ew\u0000\u0001\u001e|\u0011\u001e|\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001et\u0000\u0002\u001e}\u001e~\r\u001e}\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u001e~\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002r\u0000\u0000\u0000\u001b\u0000&\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000\u001b\u0000$\u0003\u001e\u001e\n\u0003\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u001e\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\u001e\u001e\u0002\u0001\r\u001e\u0000\u0002^\u0000\u0000\u0000\u001b\u0000\u001e\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000b\u0000\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\ndire\r\u001e\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bolierndD\u0006\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003Q\u0000\u0000\u0000'\u0000\u001e\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000*\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002O\u0000\u0000\u0000*\u0000\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000.\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002O\u0000\u0000\u0000.\u0000\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u00005\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u00005\u00005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0001\u00005\u0000:\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0000\u00006\u0000:\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0000f\u0000\u0000\u00005\u00006\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0000\u0000;\u0000\u001e\u001e\u001e\r\u001e\u0000\u0002C\u0000\u0000\u0000;\u0000C\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000;\u0000A\u001e\u001e\r\u001e\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npnam\r\u001e\u0000\u00024\u0000\u0000\u0000;\u0000?\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\r\u001e\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\r\u001e\u0000\u0003Q\u0000\u0000\u0000F\u0000y\u001e\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000I\u0000e\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002r\u0000\u0000\u0000I\u0000Q\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000I\u0000O\u001e\u001e\r\u001e\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npnam\r\u001e\u0000\u00024\u0000\u0000\u0000I\u0000M\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0000\u0001\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000R\u0000]\u001e\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001e\u0000\u0003l\u0000\u0005\u0000R\u0000Y\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000R\u0000Y\u001e\u001e\r\u001e\u0000\u00024\u0000\u0000\u0000V\u0000Y\u001e\n\u0000\u0004\nbutT\r\u001e\u0000\u0001m\u0000\u0000\u0000W\u0000X\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0004\u0000O\u0000K\r\u001e\u0000\u00024\u0000\u0000\u0000R\u0000V\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000^\u0000c\u001e\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000^\u0000c\u001e\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001e\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\u0002\u0000\u0000\f\u001e\u0000\u001a\u0000\u0014 let click register.\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000(\u0000 \u0000l\u0000e\u0000t\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000.\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000d\u0000d\u001e\u001e\u0001\u0000\u0000\f\u001e\u00006\u00000 will continue below to wait for window to close\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000`\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000d\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000m\u0000y\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0002b\u0000\u0000\u0000s\u0000x\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000s\u0000v\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000-\u0000 \r\u001e\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0004Z\u0000\u0000\u0000|\u0000\u001e\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000|\u0000\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000}\u0000\u000b\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\r\u001e\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000p\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000w\u0000a\u0000s\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000.\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0001k\u0000\u0000\u0000\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u001e\u001e\u0001\u0000\u0000\f\u001e\u0000.\u0000( Not in Manage Database, but that is OK.\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000P\u0000 \u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000O\u0000K\u0000.\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0001L\u0000\u0000\u0000\u0000\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u00024\u0000\u0000\u0000.\u00002\u001e\n\u0000\u0004\npcap\r\u001e\u0000\u0001m\u0000\u0000\u00000\u00001\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0001\u0000\u0000\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u001e\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0001K\u0000\u0000\u0000\u0000\u001e\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0000\u000e\u001f\u0000\u0000\u0001\u001f\u0001\u0011\u001f\u0001\u0000\u0006\u0000a\u0000n\u0000y\u0006\u001e\u0000\u0003\u001f\u0002\u001f\u0003\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u001f\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0006\u001f\u0003\u0000\u0003\u001f\u0004\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r\u001f\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001e\u0000\u0002\u001f\u0005\u001f\u0006\r\u001f\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0006\u0000\u0002\u001f\u0007\u001f\b\r\u001f\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u001f\t\u001f\n\u001f\u000b\r\u001f\t\u0000\u0003I\u0000\u0002\u0000\u0000\u001f\f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001f\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001f\n\u0000(\u0000\" let normal window come to front. \u0000\u0002\u0000\u0000\u000e\u001f\u000b\u0000\u0001\u001f\r\u0011\u001f\r\u0000D\u0000 \u0000l\u0000e\u0000t\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0000 \u0002\u001f\b\u0000\u0002\u001f\u000e\u001f\u000f\r\u001f\u000e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u000f\u0000\u0002\u001f\u0010\u001f\u0011\r\u001f\u0010\u0000\u0001L\u0000\u0000\u0000\u0000\u001f\u0012\r\u001f\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u001f\u0011\u0000\u0002\u001f\u0013\r\u001f\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000*\u0000+\u001f\u0014\u000f\u001f\u0014\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001e\u0000\u0002\u001f\u0015\u001f\u0016\r\u001f\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0016\u0000\u0002\u001f\u0017\r\u001f\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0018\u001f\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0019\u0000\u0003\u001f\u001a\n\u0000\u0004\nerrn\r\u001f\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u001f\u001b\u001f\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001f\u001d\u001f\u001e\r\u001f\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u001f\u000e\u001f\u001f\u0000\u0001\u001f \u0011\u001f \u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000-\u0000 \r\u001f\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u001c\u0000\u0003\u001f!\n\u0000\u0004\nerrn\r\u001f!\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001e\u0000\u0002\u001f\"\r\u001f\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001eF\u0000\u0002\u001f#\u001f$\r\u001f#\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f$\u0000\u0002\u001f%\u001f&\r\u001f%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f&\u0000\u0002\u001f'\u001f(\r\u001f'\u0000\u0002i\u0000\u0000\u0000\u0000\u001f)\u001f*\r\u001f)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001f+\u000b\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u0002\u001f+\u0000\u0002\u001f,\r\u001f,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f*\u0000\u0001k\u0000\u0000\u0000\u0000\u0000H\u001f-\u0002\u001f-\u0000\u0002\u001f.\u001f\/\r\u001f.\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001f0\u001f1\u0001\u0000\u0000\f\u001f0\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001f1\u0000\u0001\u001f2\u0011\u001f2\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001f\/\u0000\u0002\u001f3\u001f4\r\u001f3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u001f4\u0000\u0002\u001f5\u001f6\r\u001f5\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000F\u001f7\u001f8\u001f9\r\u001f7\u0000\u0001k\u0000\u0000\u0000\u0003\u00000\u001f:\u0002\u001f:\u0000\u0002\u001f;\u001f<\r\u001f;\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t}\u001f=|\u000b}\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u001f=\u0000\u0002\u001f>{\r\u001f>\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005z\u000bz\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002{\u0000\u0000\u0002|\u0000\u0000\u0002\u001f<\u0000\u0002\u001f?\u001f@\r\u001f?\u0000\u0003l\u0000\u0002\u0000\n\u0000\nyxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u001f@\u0000\u0002\u001fAv\r\u001fA\u0000\u0002O\u0000\u0000\u0000\n\u00000\u001fB\u001fC\r\u001fB\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\/\u001fD\u001fE\r\u001fD\u0000\u0001k\u0000\u0000\u0000\u0015\u0000.\u001fF\u0002\u001fF\u0000\u0002\u001fG\u001fH\r\u001fG\u0000\u0002n\u0000\u0000\u0000\u0015\u0000*\u001fI\u001fJ\r\u001fI\u0000\u00011\u0000\u0000\u0000'\u0000)u\nu\u0000\u0004\nvalL\r\u001fJ\u0000\u0002n\u0000\u0000\u0000\u0015\u0000'\u001fK\u001fL\r\u001fK\u0000\u00024\u0000\u0000\u0000$\u0000't\u001fM\nt\u0000\u0004\nsttx\r\u001fM\u0000\u0001m\u0000\u0000\u0000%\u0000&s\u0003s\u0000\u0001\r\u001fL\u0000\u0002n\u0000\u0000\u0000\u0015\u0000$\u001fN\u001fO\r\u001fN\u0000\u00012\u0000\u0000\u0000\"\u0000$r\nr\u0000\u0004\ncrow\r\u001fO\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\"\u001fP\u001fQ\r\u001fP\u0000\u00024\u0000\u0000\u0000\u001f\u0000\"q\u001fR\nq\u0000\u0004\ntabB\r\u001fR\u0000\u0001m\u0000\u0000\u0000 \u0000!p\u0003p\u0000\u0001\r\u001fQ\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f\u001fS\u001fT\r\u001fS\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001fo\u001fU\no\u0000\u0004\nscra\r\u001fU\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001en\u0003n\u0000\u0001\r\u001fT\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001c\u001fV\u001fW\r\u001fV\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001cm\u001fX\nm\u0000\u0004\ntabg\r\u001fX\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001bl\u0003l\u0000\u0001\r\u001fW\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019k\u001fY\nk\u0000\u0004\ncwin\r\u001fY\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018j\u0003j\u0000\u0001\u0002\u001fH\u0000\u0002\u001fZi\r\u001fZ\u0000\u0001L\u0000\u0000\u0000+\u0000.\u001f[\r\u001f[\u0000\u00011\u0000\u0000\u0000+\u0000-h\nh\u0000\u0004\nrslt\u0002i\u0000\u0000\r\u001fE\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012g\u001f\\\ng\u0000\u0004\npcap\r\u001f\\\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u001f]\u000e\u001f]\u0000\u0001\u001f^\u0011\u001f^\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001fC\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u001f_\u000f\u001f_\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002v\u0000\u0000\r\u001f8\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000f\u001f`\u001fa\nf\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001fa\u0000\u0003d\u001fbc\nd\u0000\u0004\nerrn\r\u001fb\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006c\u0000\u0000\r\u001f9\u0000\u0003R\u0000\u0000\u00008\u0000Fa\u001fc\u001fd\na\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001fc\u0000\u0002b\u0000\u0000\u0000<\u0000E\u001fe\u001ff\r\u001fe\u0000\u0002b\u0000\u0000\u0000<\u0000C\u001fg\u001fh\r\u001fg\u0000\u0002b\u0000\u0000\u0000<\u0000?\u001fi\u001fj\r\u001fi\u0000\u0001m\u0000\u0000\u0000<\u0000=\u001fk\u000e\u001fk\u0000\u0001\u001fl\u0011\u001fl\u0000X\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000'\r\u001fj\u0000\u0001o\u0000\u0000\u0000=\u0000>`\u000b`\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001fh\u0000\u0001m\u0000\u0000\u0000?\u0000B\u001fm\u000e\u001fm\u0000\u0001\u001fn\u0011\u001fn\u0000\b\u0000'\u0000 \u0000-\u0000 \r\u001ff\u0000\u0001o\u0000\u0000\u0000C\u0000D_\u000b_\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001fd\u0000\u0003^\u001fo]\n^\u0000\u0004\nerrn\r\u001fo\u0000\u0001o\u0000\u0000\u0000:\u0000;\\\u000b\\\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006]\u0000\u0000\u0002\u001f6\u0000\u0002\u001fp[\r\u001fp\u0000\u0003l\u0000\u0002\u0000G\u0000GZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002[\u0000\u0000\u0002\u001f(\u0000\u0002\u001fq\u001fr\r\u001fq\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u001fr\u0000\u0002\u001fs\u001ft\r\u001fs\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u001ft\u0000\u0002\u001fu\u001fv\r\u001fu\u0000\u0002i\u0000\u0000\u0000\u0000\u001fw\u001fx\r\u001fw\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000Q\u001fyP\u000bQ\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u0002\u001fy\u0000\u0002\u001fzO\r\u001fz\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002O\u0000\u0000\u0002P\u0000\u0000\r\u001fx\u0000\u0001k\u0000\u0000\u0000\u0000\u0000@\u001f{\u0002\u001f{\u0000\u0002\u001f|\u001f}\r\u001f|\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000M\u001f~\u001f\u0001M\u0000\u0000\f\u001f~\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001f}\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000>\u001f\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0003\u0000.\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\nI\u001fH\u000bI\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001f\u0000\u0002\u001fG\r\u001f\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006F\u0002F\u0000\u0000\u0002G\u0000\u0000\u0002H\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000bEDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u000b\u0000,\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u000f\u0000+\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0016\u0000*\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000'\u001f\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017B\nB\u0000\b\u000bboovtrue\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u00011\u0000\u0000\u0000$\u0000&A\nA\u0000\u0004\nfocu\r\u001f\u0000\u0003l\u0000\u0005\u0000\u0017\u0000$\u001f@?\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000$\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000!\u0000$>\u001f\n>\u0000\u0004\ntabB\r\u001f\u0000\u0001m\u0000\u0000\u0000\"\u0000#=\u0003=\u0000\u0001\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000!\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000\u001e\u0000!<\u001f\n<\u0000\u0004\nscra\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 ;\u0003;\u0000\u0001\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001e\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e:\u001f\n:\u0000\u0004\ntabg\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d9\u00039\u0000\u0001\r\u001f\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001b8\u001f\n8\u0000\u0004\ncwin\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a7\u00037\u0000\u0001\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u001f\u0000\u0002\u001f6\r\u001f\u0000\u0001L\u0000\u0000\u0000(\u0000*\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000(\u0000)5\n5\u0000\b\u000bboovtrue\u00026\u0000\u0000\r\u001f\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u00134\u001f\n4\u0000\u0004\npcap\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001f\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001f\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001f\u000f\u001f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001f\u0000\u0002\u001f3\r\u001f\u0000\u0003l\u0000\u0002\u0000-\u0000-210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u00023\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/\u001f\u001f\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0000\u0003-\u001f,\n-\u0000\u0004\nerrn\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006,\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u00006\u0000>*\u001f\u001f\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0002b\u0000\u0000\u0000:\u0000=\u001f\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000:\u0000;\u001f\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000o\u0000c\u0000u\u0000s\u0000 \u0000o\u0000n\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000-\u0000 \r\u001f\u0000\u0001o\u0000\u0000\u0000;\u0000<)\u000b)\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0000\u0003(\u001f'\n(\u0000\u0004\nerrn\r\u001f\u0000\u0001o\u0000\u0000\u00008\u00009&\u000b&\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006'\u0000\u0000\u0002\u001f\u0000\u0002\u001f%\r\u001f\u0000\u0003l\u0000\u0002\u0000?\u0000?$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002%\u0000\u0000\u0002\u001fv\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002i\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u001f\u001a\u000b\u001b\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u0002\u001f\u0000\u0002\u001f\u0019\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0001O\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0017\u001f\u001f\u0001\u0017\u0000\u0000\f\u001f\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f\u001f\u001f\r\u001f\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\n\u001f\u0006\u001f\u0000\u0003\u0013\u001f\u001f\u000b\u0013\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0012\n\u0012\u0000\u0004\nnull\u0006\u001f\u0000\u0003\u0011\u001f\u001f\u000b\u0011\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0010\n\u0010\u0000\u0004\nnull\u0006\u001f\u0000\u0003\u000f\u001f\u001f\u000b\u000f\u0000*0\u0000\u0013donotchangeexisting\u0000\u0013doNotChangeExisting\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u000e\n\u000e\u0000\b\u000bboovfals\u0006\u001f\u0000\u0003\r\u001f\f\u000b\r\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u000b\n\u000b\u0000\u0004\nnull\u0006\f\u0000\u0000\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0012\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000\r\u0000\u0010\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u0006\u000b\u0006\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001f\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u0005\u000b\u0005\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003Q\u0000\u0000\u0000\u0013\u0001M\u001f\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0016\u00019\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d\u001f\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u001e\u00019\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\"\u00018\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000)\u00017\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000)\u0000.\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000*\u0000.\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000)\u0000*\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\/\u0000F\u001f\u001f\r\u001f\u0000\u00026\u0001\u0000\u0000\/\u0000D\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0000\u0000\/\u00009\u001f \u0000\r\u001f\u0000\u00024\u0000\u0001\u00006\u00009 \u0001\n\u0000\u0004\nbutT\r \u0001\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0001\r \u0000\u0000\u0002n\u0000\u0000\u0000\/\u00006 \u0002 \u0003\r \u0002\u0000\u00024\u0000\u0000\u00003\u00006 \u0004\n\u0000\u0004\ntabg\r \u0004\u0000\u0001m\u0000\u0000\u00004\u00005\u0003\u0000\u0001\r \u0003\u0000\u00024\u0000\u0000\u0000\/\u00003 \u0005\n\u0000\u0004\ncwin\r \u0005\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r\u001f\u0000\u0002E\u0000\u0000\u0000:\u0000C \u0006 \u0007\r \u0006\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ndesc\r \u0007\u0000\u0001m\u0000\u0000\u0000>\u0000B \b\u000e \b\u0000\u0001 \t\u0011 \t\u0000\u0016\u0000A\u0000d\u0000d\u0000 \u0000a\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u0002\u001f\u0000\u0002 \n \u000b\r \n\u0000\u0002n\u0000\u0001\u0000G\u0000M \f \r\r \f\u0000\u0003I\u0000\u0000\u0000H\u0000M \u000e\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002 \u000e\u0000\u0002 \u000f\r \u000f\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u0002\u0000\u0000\u0002\u0000\u0000\r \r\u0000\u0000f\u0000\u0000\u0000G\u0000H\u0002 \u000b\u0000\u0002 \u0010 \u0011\r \u0010\u0000\u0003I\u0000\u0002\u0000N\u0000S \u0012\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r \u0012\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0003\u0000\u0001\u0002\u0000\u0000\u0002 \u0011\u0000\u0002 \u0013 \u0014\r \u0013\u0000\u0003Q\u0000\u0000\u0000T\u0001\u0011 \u0015 \u0016 \u0017\r \u0015\u0000\u0001k\u0000\u0000\u0000W\u0000 \u0018\u0002 \u0018\u0000\u0002 \u0019 \u001a\r \u0019\u0000\u0002n\u0000\u0001\u0000W\u0000j \u001b \u001c\r \u001b\u0000\u0003I\u0000\u0000\u0000X\u0000j \u001d\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 \u001d\u0000\u0002 \u001e \u001f\r \u001e\u0000\u0002n\u0000\u0000\u0000X\u0000c !\r \u0000\u00024\u0000\u0000\u0000\\\u0000c \"\n\u0000\u0004\npopB\r \"\u0000\u0001m\u0000\u0000\u0000_\u0000b #\u000e #\u0000\u0001 $\u0011 $\u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r !\u0000\u00024\u0000\u0000\u0000X\u0000\\ %\n\u0000\u0004\ncwin\r %\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0003\u0000\u0001\u0002 \u001f\u0000\u0002 &\r &\u0000\u0002n\u0000\u0000\u0000c\u0000f ' (\r '\u0000\u0001o\u0000\u0000\u0000d\u0000f\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r (\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u001c\u0000\u0000f\u0000\u0000\u0000W\u0000X\u0002 \u001a\u0000\u0002 )\r )\u0000\u0003I\u0000\u0002\u0000k\u0000 *\n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r *\u0000\u0003l\u0000\u0005\u0000k\u0000 +\r +\u0000\u00026\u0001\u0000\u0000k\u0000 , -\r ,\u0000\u0002n\u0000\u0000\u0000k\u0000~ . \/\r .\u0000\u00024\u0000\u0001\u0000y\u0000~ 0\n\u0000\u0004\ncrow\r 0\u0000\u0001m\u0000\u0000\u0000|\u0000}\u0003\u0000\u0001\r \/\u0000\u0002n\u0000\u0000\u0000k\u0000y 1 2\r 1\u0000\u00024\u0000\u0000\u0000t\u0000y 3\n\u0000\u0004\ntabB\r 3\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0003\u0000\u0001\r 2\u0000\u0002n\u0000\u0000\u0000k\u0000t 4 5\r 4\u0000\u00024\u0000\u0000\u0000o\u0000t 6\n\u0000\u0004\nscra\r 6\u0000\u0001m\u0000\u0000\u0000r\u0000s\u0003\u0000\u0001\r 5\u0000\u00024\u0000\u0000\u0000k\u0000o 7\n\u0000\u0004\ncwin\r 7\u0000\u0001m\u0000\u0000\u0000m\u0000n\u0003\u0000\u0001\r -\u0000\u0002=\u0000\u0003\u0000\u0000 8 9\r 8\u0000\u0002n\u0000\u0000\u0000\u0000 : ;\r :\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r ;\u0000\u00024\u0000\u0000\u0000\u0000 <\n\u0000\u0004\nsttx\r <\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r 9\u0000\u0002n\u0000\u0000\u0000\u0000 = >\r =\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r >\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0016\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r \u0017\u0000\u0001k\u0000\u0000\u0000\u0001\u0011 ?\u0002 ?\u0000\u0002 @ A\r @\u0000\u0003l\u0000\u0001\u0000\u0000 B C\u0001\u0000\u0000\f B\u0000\/\u0000)Not an existing data source, so create it\u0000\u0002\u0000\u0000\u000e C\u0000\u0001 D\u0011 D\u0000R\u0000N\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0002 A\u0000\u0002 E F\r E\u0000\u0003l\u0000\u0001\u0000\u0000 G H I\r G\u0000\u0003I\u0000\u0002\u0000\u0000 J\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r J\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u00005\u0002\u0000\u0000\f H\u0000!\u0000\u001b Hit 'Esc' to close pop up.\u0000\u0002\u0000\u0000\u000e I\u0000\u0001 K\u0011 K\u00006\u0000 \u0000H\u0000i\u0000t\u0000 \u0000'\u0000E\u0000s\u0000c\u0000'\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000p\u0000o\u0000p\u0000 \u0000u\u0000p\u0000.\u0002 F\u0000\u0002 L M\r L\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 M\u0000\u0002 N O\r N\u0000\u0003l\u0000\u0001\u0000\u0000 P Q\u0001\u0000\u0000\f P\u00009\u00003 add data source from within adding a new TO window\u0000\u0002\u0000\u0000\u000e Q\u0000\u0001 R\u0011 R\u0000f\u0000 \u0000a\u0000d\u0000d\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000w\u0000i\u0000t\u0000h\u0000i\u0000n\u0000 \u0000a\u0000d\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000T\u0000O\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002 O\u0000\u0002 S T\r S\u0000\u0002n\u0000\u0001\u0000\u0000 U V\r U\u0000\u0003I\u0000\u0000\u0000\u0000 W\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 W\u0000\u0002 X Y\r X\u0000\u0002n\u0000\u0000\u0000\u0000 Z [\r Z\u0000\u00024\u0000\u0000\u0000\u0000 \\\n\u0000\u0004\npopB\r \\\u0000\u0001m\u0000\u0000\u0000\u0000 ]\u000e ]\u0000\u0001 ^\u0011 ^\u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r [\u0000\u00024\u0000\u0000\u0000\u0000 _\n\u0000\u0004\ncwin\r _\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002 Y\u0000\u0002 `\r `\u0000\u0001m\u0000\u0000\u0000\u0000 a\u000e a\u0000\u0001 b\u0011 b\u0000(\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s &\u0002\u0000\u0000\u0002\u0000\u0000\r V\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 T\u0000\u0002 c d\r c\u0000\u0002n\u0000\u0001\u0000\u0000 e f\r e\u0000\u0003I\u0000\u0000\u0000\u0000 g\u000b\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u0002 g\u0000\u0002 h\r h\u0000\u0001K\u0000\u0000\u0000\u0000 i\u0006 i\u0000\u0003 j\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r j\u0000\u0002n\u0000\u0000\u0000\u0000 k l\r k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r l\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 d\u0000\u0002 m n\r m\u0000\u0002n\u0000\u0001\u0000\u0000 o p\r o\u0000\u0003I\u0000\u0000\u0000\u0000 q\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u0002 q\u0000\u0002 r\r r\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r p\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 n\u0000\u0002 s t\r s\u0000\u0003I\u0000\u0002\u0000\u0000 u\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r u\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002 t\u0000\u0002 v w\r v\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 w\u0000\u0002 x y\r x\u0000\u0003l\u0000\u0001\u0000\u0000 z {\u0001\u0000\u0000\f z\u00009\u00003 now that we've added the data source, try again...\u0000\u0002\u0000\u0000\u000e {\u0000\u0001 |\u0011 |\u0000f\u0000 \u0000n\u0000o\u0000w\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000'\u0000v\u0000e\u0000 \u0000a\u0000d\u0000d\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000.\u0000.\u0000.\u0002 y\u0000\u0002 } ~\r }\u0000\u0002n\u0000\u0001\u0000\u0000  \r \u0000\u0003I\u0000\u0000\u0000\u0000 \u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\npopB\r \u0000\u0001m\u0000\u0000\u0000\u0000 \u000e \u0000\u0001 \u0011 \u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r \u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0000\u0000\u0002 ~\u0000\u0002 \r \u0000\u0003I\u0000\u0002\u0000\u0001\u0011 \n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r \u0000\u0003l\u0000\u0005\u0000\u0001\r \r \u0000\u00026\u0001\u0000\u0000\u0001\r \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0001\u0000\u0000 \n\u0000\u0004\ncrow\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ntabB\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\nscra\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002=\u0000\u0003\u0000\u0001\f \r \u0000\u0002n\u0000\u0000\u0000\u0001\u0006 \r \u0000\u00011\u0000\u0000\u0001\u0002\u0001\u0006\n\u0000\u0004\nvalL\r \u0000\u00024\u0000\u0000\u0000\u0001\u0002 \n\u0000\u0004\nsttx\r \u0000\u0001m\u0000\u0000\u0001\u0000\u0001\u0001\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0001\u0007\u0001\u000b \r \u0000\u0001o\u0000\u0000\u0001\t\u0001\u000b\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r \u0000\u0001o\u0000\u0000\u0001\u0007\u0001\t\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002 \u0014\u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0001\u0012\u0001% \r \u0000\u0002n\u0000\u0000\u0001\u0012\u0001\u0015 \r \u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0015\u000b\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\r \u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000 \r \u0000\u00011\u0000\u0000\u0001 \u0001$\n\u0000\u0004\nvalL\r \u0000\u0002n\u0000\u0000\u0001\u0015\u0001 \r \u0000\u00024\u0000\u0000\u0001\u0019\u0001 \n\u0000\u0004\ntxtf\r \u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f \u000e \u0000\u0001 \u0011 \u0000\b\u0000N\u0000a\u0000m\u0000e\r \u0000\u00024\u0000\u0000\u0001\u0015\u0001\u0019 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\u0003\u0000\u0001\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0001\u0001&\u00014 \r \u0000\u0003I\u0000\u0000\u0001'\u00014 \u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0001'\u00010 \r \u0000\u00024\u0000\u0000\u0001+\u00010 \n\u0000\u0004\nbutT\r \u0000\u0001m\u0000\u0000\u0001,\u0001\/ \u000e \u0000\u0001 \u0011 \u0000\u0004\u0000O\u0000K\r \u0000\u00024\u0000\u0000\u0001'\u0001+ \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0001)\u0001*~\u0003~\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0001&\u0001'\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u00015\u00015}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002 \u0000\u0002 z\r \u0000\u0001L\u0000\u0000\u00015\u00017 \r \u0000\u0001m\u0000\u0000\u00015\u00016y\ny\u0000\b\u000bboovtrue\u0002z\u0000\u0000\r\u001f\u0000\u00024\u0000\u0000\u0000\"\u0000&x \nx\u0000\u0004\npcap\r \u0000\u0001m\u0000\u0000\u0000$\u0000% \u000e \u0000\u0001 \u0011 \u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f \u000f \u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000w \nw\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006 \u0000\u0003u t\nu\u0000\u0004\nerrn\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006t\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0001A\u0001Mr \nr\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r \u0000\u0002b\u0000\u0000\u0001G\u0001L \r \u0000\u0001m\u0000\u0000\u0001G\u0001J \u000e \u0000\u0001 \u0011 \u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000a\u0000d\u0000d\u0000 \u0000T\u0000O\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0000 \u0000-\u0000 \r \u0000\u0001o\u0000\u0000\u0001J\u0001Kq\u000bq\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006 \u0000\u0003p o\np\u0000\u0004\nerrn\r \u0000\u0001o\u0000\u0000\u0001E\u0001Fn\u000bn\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006o\u0000\u0000\u0002\u001f\u0000\u0002 m\r \u0000\u0003l\u0000\u0002\u0001N\u0001Nlkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002m\u0000\u0000\u0002\u001f\u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002i\u0000\u0000\u0000\u0000 \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000c b\u000bc\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u0002 \u0000\u0002 a\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002a\u0000\u0000\u0002b\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000 \u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000_ \u0001_\u0000\u0000\f \u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e \u0000\u0001 \u0011 \u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006 \r \u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004 \u0006 \u0000\u0003[ Z\u000b[\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\r \u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002 \u000e \u0000\u0001 \u0011 \u0000\u0000\u0006Z\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f \r \u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n \r \u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bX\u000bX\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\b\u0000\tW\u000bW\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\r\u0000\rUTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003Q\u0000\u0000\u0000\r\u0000 \r \u0000\u0001k\u0000\u0000\u0000\u0010\u0000 \u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015 \r \u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013 \r \u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0013R\u000bR\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\r \u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011Q\u000bQ\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002 \u0000\u0002!\u0000!\u0001\r!\u0000\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\"!\u0002!\u0003\r!\u0002\u0000\u0003I\u0000\u0000\u0000\u0016\u0000 O!\u0004N\u000bO\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002!\u0004\u0000\u0002!\u0005M\r!\u0005\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u001c!\u0006\u0002!\u0006\u0000\u0002!\u0007!\b\r!\u0007\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018L\u000bL\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\b\u0000\u0002!\t!\n\r!\t\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019K\u000bK\u0000\b0\u0000\u0002cr\u0000\u0002CR\u0002!\n\u0000\u0002!\u000bJ\r!\u000b\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aI\u000bI\u0000\b0\u0000\u0002lf\u0000\u0002LF\u0002J\u0000\u0000\u0002M\u0000\u0000\u0002N\u0000\u0000\r!\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\u0001\u0000\u0002!\f!\r\r!\f\u0000\u0002r\u0000\u0000\u0000#\u00000!\u000e!\u000f\r!\u000e\u0000\u0003I\u0000\u0000\u0000#\u0000.G!\u0010F\u000bG\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u0002!\u0010\u0000\u0002!\u0011E\r!\u0011\u0000\u0001K\u0000\u0000\u0000$\u0000*!\u0012\u0006!\u0012\u0000\u0003D!\u0013!\u0014\u000bD\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r!\u0013\u0000\u0001o\u0000\u0000\u0000%\u0000&C\u000bC\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0006!\u0014\u0000\u0003B!\u0015A\u000bB\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r!\u0015\u0000\u0001o\u0000\u0000\u0000'\u0000(@\u000b@\u0000\b0\u0000\u0002lf\u0000\u0002LF\u0006A\u0000\u0000\u0002E\u0000\u0000\u0002F\u0000\u0000\r!\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000?\u000b?\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\r\u0000\u0002!\u0016!\u0017\r!\u0016\u0000\u0003l\u0000\u0002\u00001\u00001>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002!\u0017\u0000\u0002!\u0018!\u0019\r!\u0018\u0000\u0004Z\u0000\u0000\u00001\u0000!\u001a!\u001b;:\r!\u001a\u0000\u0002?\u0000\u0001\u00001\u00008!\u001c!\u001d\r!\u001c\u0000\u0003l\u0000\u0005\u00001\u00006!\u001e98\r!\u001e\u0000\u0003I\u0000\u0001\u00001\u000067!\u001f6\n7\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r!\u001f\u0000\u0001o\u0000\u0000\u00001\u000025\u000b5\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\r!\u001d\u0000\u0001m\u0000\u0000\u00006\u000074\u00034\u0000\u0000\r!\u001b\u0000\u0001k\u0000\u0000\u0000;\u0000! \u0002! \u0000\u0002!!!\"\r!!\u0000\u0003l\u0000\u0002\u0000;\u0000;321\u00013\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002!\"\u0000\u0002!#!$\r!#\u0000\u0003l\u0000\u0001\u0000;\u0000;0!%!&\u00010\u0000\u0000\f!%\u0000H\u0000B loop over and get list of DBs that need to exist as data sources.\u0000\u0002\u0000\u0000\u000e!&\u0000\u0001!'\u0011!'\u0000\u0000 \u0000l\u0000o\u0000o\u0000p\u0000 \u0000o\u0000v\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000D\u0000B\u0000s\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000.\u0002!$\u0000\u0002!(!)\r!(\u0000\u0003X\u0000\u0000\u0000;\u0000!*\/!+\r!*\u0000\u0001k\u0000\u0000\u0000K\u0000|!,\u0002!,\u0000\u0002!-!.\r!-\u0000\u0002r\u0000\u0000\u0000K\u0000X!\/!0\r!\/\u0000\u0003I\u0000\u0000\u0000K\u0000V.!1-\u000b.\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u0002!1\u0000\u0002!2,\r!2\u0000\u0001K\u0000\u0000\u0000L\u0000R!3\u0006!3\u0000\u0003+!4!5\u000b+\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r!4\u0000\u0001o\u0000\u0000\u0000M\u0000N*\u000b*\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\u0006!5\u0000\u0003)!6(\u000b)\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r!6\u0000\u0001m\u0000\u0000\u0000O\u0000P!7\u000e!7\u0000\u0001!8\u0011!8\u0000\u0004\u0000|\u0000|\u0006(\u0000\u0000\u0002,\u0000\u0000\u0002-\u0000\u0000\r!0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\u0002!.\u0000\u0002!9!:\r!9\u0000\u0002r\u0000\u0000\u0000Y\u0000_!;!<\r!;\u0000\u0002n\u0000\u0000\u0000Y\u0000]!=!>\r!=\u0000\u00024\u0000\u0000\u0000Z\u0000]&!?\n&\u0000\u0004\ncobj\r!?\u0000\u0001m\u0000\u0000\u0000[\u0000\\%\u0003%\u0000\u0001\r!>\u0000\u0001o\u0000\u0000\u0000Y\u0000Z$\u000b$\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\r!<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u0002!:\u0000\u0002!@!A\r!@\u0000\u0002r\u0000\u0000\u0000`\u0000f!B!C\r!B\u0000\u0002n\u0000\u0000\u0000`\u0000d!D!E\r!D\u0000\u00024\u0000\u0000\u0000a\u0000d\"!F\n\"\u0000\u0004\ncobj\r!F\u0000\u0001m\u0000\u0000\u0000b\u0000c!\u0003!\u0000\u0002\r!E\u0000\u0001o\u0000\u0000\u0000`\u0000a \u000b \u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\r!C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0002!A\u0000\u0002!G!H\r!G\u0000\u0002r\u0000\u0000\u0000g\u0000u!I!J\r!I\u0000\u0001K\u0000\u0000\u0000g\u0000s!K\u0006!K\u0000\u0003\u001e!L!M\u000b\u001e\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r!L\u0000\u0001o\u0000\u0000\u0000h\u0000i\u001d\u000b\u001d\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u0006!M\u0000\u0003\u001c!N!O\u000b\u001c\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r!N\u0000\u0001o\u0000\u0000\u0000j\u0000k\u001b\u000b\u001b\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0006!O\u0000\u0003\u001a!P\u0019\u000b\u001a\u0000\u00100\u0000\u0006toname\u0000\u0006TOName\r!P\u0000\u0002b\u0000\u0000\u0000l\u0000q!Q!R\r!Q\u0000\u0002b\u0000\u0000\u0000l\u0000o!S!T\r!S\u0000\u0001o\u0000\u0000\u0000l\u0000m\u0018\u000b\u0018\u0000\u00160\u0000\tonedbname\u0000\toneDBName\r!T\u0000\u0001m\u0000\u0000\u0000m\u0000n!U\u000e!U\u0000\u0001!V\u0011!V\u0000\u0004\u0000_\u0000_\r!R\u0000\u0001o\u0000\u0000\u0000o\u0000p\u0017\u000b\u0017\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0006\u0019\u0000\u0000\r!J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u0002!H\u0000\u0002!W!X\r!W\u0000\u0003l\u0000\u0002\u0000v\u0000v\u0015\u0014\u0013\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002!X\u0000\u0002!Y\u0012\r!Y\u0000\u0003I\u0000\u0000\u0000v\u0000|\u0011!Z\u0010\u000b\u0011\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u0002!Z\u0000\u0002![\u000f\r![\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000e\u000b\u000e\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u0002\u000f\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\u000b\/\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\r!+\u0000\u0001o\u0000\u0000\u0000>\u0000?\r\u000b\r\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!)\u0000\u0002!\\!]\r!\\\u0000\u0003l\u0000\u0002\u0000\u0000\f\u000b\n\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0002!]\u0000\u0002!^\t\r!^\u0000\u0003I\u0000\u0000\u0000\u0000\b!_\u0007\u000b\b\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002!_\u0000\u0002!`\u0006\r!`\u0000\u0001J\u0000\u0000\u0000\u0000\u0005\u0002\u0005\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002!\u0019\u0000\u0002!a\u0004\r!a\u0000\u0001L\u0000\u0000\u0000\u0000!b\r!b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\n\u0003\u0000\b\u000bboovtrue\u0002\u0004\u0000\u0000\r \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0002!c!d\n\u0002\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006!d\u0000\u0003\u0000!e\n\u0000\u0000\u0004\nerrn\r!e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r \u0000\u0003R\u0000\u0000\u0000\u0000!f!g\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!f\u0000\u0002b\u0000\u0000\u0000\u0000!h!i\r!h\u0000\u0001m\u0000\u0000\u0000\u0000!j\u000e!j\u0000\u0001!k\u0011!k\u0000J\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000m\u0000G\u0000U\u0000I\u0000_\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000D\u0000B\u0000_\u0000T\u0000O\u0000_\u0000L\u0000i\u0000s\u0000t\u0000A\u0000d\u0000d\u0000 \u0000-\u0000 \r!i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006!g\u0000\u0003!l\n\u0000\u0004\nerrn\r!l\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002 \u0000\u0002!m\r!m\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002 \u0000\u0002!n!o\r!n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!o\u0000\u0002!p!q\r!p\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!q\u0000\u0002!r!s\r!r\u0000\u0002i\u0000\u0000\u0000\u0000!t!u\r!t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000!v\u000b\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u0002!v\u0000\u0002!w\r!w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0000\u0000\u0002\u0000\u0000\r!u\u0000\u0001k\u0000\u0000\u0000\u0000\u00007!x\u0002!x\u0000\u0002!y!z\r!y\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000!{!|\u0001\u0000\u0000\f!{\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e!|\u0000\u0001!}\u0011!}\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002!z\u0000\u0002!~!\r!~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002O\u0000\u0000\u0000\u0000\u00005!!\r!\u0000\u0001k\u0000\u0000\u0000\b\u00004!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0004Z\u0000\u0000\u0000\b\u0000'!!!\r!\u0000\u0002=\u0000\u0001\u0000\b\u0000\u0014!!\r!\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0012!\r!\u0000\u0003I\u0000\u0001\u0000\b\u0000\u0012!\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r!\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000e!!\r!\u0000\u00012\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\ncSCP\r!\u0000\u00024\u0000\u0000\u0000\b\u0000\f!\n\u0000\u0004\ncDB \r!\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0000\r!\u0000\u0001L\u0000\u0000\u0000\u0017\u0000\u001a!\r!\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0001L\u0000\u0000\u0000\u001d\u0000'!\r!\u0000\u0002n\u0000\u0000\u0000\u001d\u0000&!!\r!\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\npnam\r!\u0000\u0002n\u0000\u0000\u0000\u001d\u0000#!!\r!\u0000\u00012\u0000\u0000\u0000!\u0000#\n\u0000\u0004\ncSCP\r!\u0000\u00024\u0000\u0000\u0000\u001d\u0000!!\n\u0000\u0004\ncDB \r!\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003R\u0000\u0000\u0000(\u00002!!\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!\u0000\u0002b\u0000\u0000\u0000,\u00001!!\r!\u0000\u0002b\u0000\u0000\u0000,\u0000\/!!\r!\u0000\u0001m\u0000\u0000\u0000,\u0000-!\u000e!\u0000\u0001!\u0011!\u0000\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000_\u0000L\u0000i\u0000s\u0000t\u0000O\u0000f\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000:\u0000 \r!\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\r!\u0000\u0001m\u0000\u0000\u0000\/\u00000!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000.\u0006!\u0000\u0003!\n\u0000\u0004\nerrn\r!\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0004\u0000\u0006\u0000\u0000\u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r!\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005!\n\u0000\u0004\ncapp\r!\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003!\u000e!\u0000\u0001!\u0011!\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\n\u0000\b\u000bkfrmID \u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u00006\u00006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!s\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002i\u0000\u0000\u0000\u0000!!\r!\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000!\u000b\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002!\u0000\u0002!\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0001k\u0000\u0000\u0000\u0000\u0000]!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000!!\u0001\u0000\u0000\f!\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e!\u0000\u0001!\u0011!\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006!!\r!\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004!\u0006!\u0000\u0003!\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r!\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002!\u000e!\u0000\u0001!\u0011!\u0000\u0010\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0006\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f!!\r!\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n!!\r!\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003Q\u0000\u0000\u0000\r\u0000[!!!\r!\u0000\u0001k\u0000\u0000\u0000\u0010\u0000I!\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0015\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d!\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u0002!\u0000\u0002!\r!\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!\r!\u0000\u0002O\u0000\u0000\u0000\u001e\u0000I!!\r!\u0000\u0002O\u0000\u0000\u0000\"\u0000H!!\r!\u0000\u0001k\u0000\u0000\u0000)\u0000G!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000)\u0000)\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0002\u0000)\u0000B!\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r!\u0000\u0003l\u0000\u0005\u0000)\u0000>!\r!\u0000\u00026\u0001\u0000\u0000)\u0000>!!\r!\u0000\u0002n\u0000\u0000\u0000)\u00003!!\r!\u0000\u00024\u0000\u0001\u00000\u00003!\n\u0000\u0004\nradB\r!\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r!\u0000\u0002n\u0000\u0000\u0000)\u00000!!\r!\u0000\u00024\u0000\u0000\u0000-\u00000!\n\u0000\u0004\ntabg\r!\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r!\u0000\u00024\u0000\u0000\u0000)\u0000-!\n\u0000\u0004\ncwin\r!\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r!\u0000\u0002=\u0000\u0003\u00004\u0000=!!\r!\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npnam\r!\u0000\u0002n\u0000\u0000\u00008\u0000<!!\r!\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r!\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0001L\u0000\u0000\u0000C\u0000E!\r!\u0000\u0001m\u0000\u0000\u0000C\u0000D\n\u0000\b\u000bboovtrue\u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r!\u0000\u00024\u0000\u0000\u0000\"\u0000&!\n\u0000\u0004\npcap\r!\u0000\u0001m\u0000\u0000\u0000$\u0000%!\u000e!\u0000\u0001!\u0011!\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r!\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f!\u000f!\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000!\"\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0000\u0003\"\u0001\n\u0000\u0004\nerrn\r\"\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r!\u0000\u0003R\u0000\u0000\u0000Q\u0000[\"\u0002\"\u0003\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0002\u0000\u0002b\u0000\u0000\u0000U\u0000Z\"\u0004\"\u0005\r\"\u0004\u0000\u0001m\u0000\u0000\u0000U\u0000X\"\u0006\u000e\"\u0006\u0000\u0001\"\u0007\u0011\"\u0007\u0000P\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000a\u0000b\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r\"\u0005\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0003\u0000\u0003\"\b\n\u0000\u0004\nerrn\r\"\b\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002!\u0000\u0002\"\t\r\"\t\u0000\u0003l\u0000\u0002\u0000\\\u0000\\~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002\"\n\"\u000b\r\"\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\"\u000b\u0000\u0002\"\f\"\r\r\"\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000zyx\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\"\r\u0000\u0002\"\u000e\"\u000f\r\"\u000e\u0000\u0002i\u0000\u0000\u0000\u0000\"\u0010\"\u0011\r\"\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000w\"\u0012v\u000bw\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u0002\"\u0012\u0000\u0002\"\u0013u\r\"\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002u\u0000\u0000\u0002v\u0000\u0000\r\"\u0011\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\"\u0014\u0002\"\u0014\u0000\u0002\"\u0015\"\u0016\r\"\u0015\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000s\"\u0017\"\u0018\u0001s\u0000\u0000\f\"\u0017\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"\u0018\u0000\u0001\"\u0019\u0011\"\u0019\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\"\u0016\u0000\u0002\"\u001a\"\u001b\r\"\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\"\u001b\u0000\u0002\"\u001c\"\u001d\r\"\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001c\"\u001e\"\u001f\" \r\"\u001e\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\fo\"!n\u000bo\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002\"!\u0000\u0002\"\"m\r\"\"\u0000\u0001K\u0000\u0000\u0000\u0004\u0000\b\"#\u0006\"#\u0000\u0003l\"$k\u000bl\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\"$\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\"%\u000e\"%\u0000\u0001\"&\u0011\"&\u0000\u0010\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0006k\u0000\u0000\u0002m\u0000\u0000\u0002n\u0000\u0000\r\"\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000j\"'\"(\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"(\u0000\u0003h\")g\nh\u0000\u0004\nerrn\r\")\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006g\u0000\u0000\r\" \u0000\u0003R\u0000\u0000\u0000\u0014\u0000\u001ce\"*\"+\ne\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"*\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\",\"-\r\",\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\".\u000e\".\u0000\u0001\"\/\u0011\"\/\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\"-\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001ad\u000bd\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"+\u0000\u0003c\"0b\nc\u0000\u0004\nerrn\r\"0\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017a\u000ba\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006b\u0000\u0000\u0002\"\u001d\u0000\u0002\"1`\r\"1\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d_^]\u0001_\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\u0002`\u0000\u0000\u0002\"\u000f\u0000\u0002\"2\"3\r\"2\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\"3\u0000\u0002\"4\"5\r\"4\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000YXW\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\"5\u0000\u0002\"6\"7\r\"6\u0000\u0002i\u0000\u0000\u0000\u0000\"8\"9\r\"8\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000V\":U\u000bV\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u0002\":\u0000\u0002\";T\r\";\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002T\u0000\u0000\u0002U\u0000\u0000\r\"9\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\"<\u0002\"<\u0000\u0002\"=\">\r\"=\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000R\"?\"@\u0001R\u0000\u0000\f\"?\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"@\u0000\u0001\"A\u0011\"A\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\">\u0000\u0002\"B\"C\r\"B\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002\"C\u0000\u0002\"D\"E\r\"D\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001c\"F\"G\"H\r\"F\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\fN\"IM\u000bN\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002\"I\u0000\u0002\"JL\r\"J\u0000\u0001K\u0000\u0000\u0000\u0004\u0000\b\"K\u0006\"K\u0000\u0003K\"LJ\u000bK\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\"L\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\"M\u000e\"M\u0000\u0001\"N\u0011\"N\u0000\u001c\u0000P\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000 \u0000S\u0000e\u0000t\u0000s\u0006J\u0000\u0000\u0002L\u0000\u0000\u0002M\u0000\u0000\r\"G\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000I\"O\"P\nI\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"P\u0000\u0003G\"QF\nG\u0000\u0004\nerrn\r\"Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006F\u0000\u0000\r\"H\u0000\u0003R\u0000\u0000\u0000\u0014\u0000\u001cD\"R\"S\nD\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"R\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\"T\"U\r\"T\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\"V\u000e\"V\u0000\u0001\"W\u0011\"W\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\"U\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aC\u000bC\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"S\u0000\u0003B\"XA\nB\u0000\u0004\nerrn\r\"X\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017@\u000b@\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006A\u0000\u0000\u0002\"E\u0000\u0002\"Y?\r\"Y\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u0002\"7\u0000\u0002\"Z\"[\r\"Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\"[\u0000\u0002\"\\\"]\r\"\\\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\"]\u0000\u0002\"^\"_\r\"^\u0000\u0002i\u0000\u0000\u0000\u0000\"`\"a\r\"`\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00005\"b4\u000b5\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u0002\"b\u0000\u0002\"c3\r\"c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023\u0000\u0000\u00024\u0000\u0000\r\"a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"d\u0002\"d\u0000\u0002\"e\"f\r\"e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00001\"g\"h\u00011\u0000\u0000\f\"g\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\"h\u0000\u0001\"i\u0011\"i\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\"f\u0000\u0002\"j\"k\r\"j\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u00000\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\"k\u0000\u0002\"l\"m\r\"l\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\"n\"o\"p\r\"n\u0000\u0001k\u0000\u0000\u0000\u0003\u0000r\"q\u0002\"q\u0000\u0002\"r\"s\r\"r\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b-,+\u000b-\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002,\u0000\u0000\u0002+\u0000\u0000\u0002\"s\u0000\u0002\"t\"u\r\"t\u0000\u0003I\u0000\u0000\u0000\t\u0000\u0010*\"v)\u000b*\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u0002\"v\u0000\u0002\"w(\r\"w\u0000\u0001J\u0000\u0000\u0000\n\u0000\f'\u0002'\u0000\u0000\u0002(\u0000\u0000\u0002)\u0000\u0000\u0002\"u\u0000\u0002\"x\"y\r\"x\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002\"y\u0000\u0002\"z#\r\"z\u0000\u0002O\u0000\u0000\u0000\u0011\u0000r\"{\"|\r\"{\u0000\u0002O\u0000\u0000\u0000\u0015\u0000q\"}\"~\r\"}\u0000\u0001k\u0000\u0000\u0000\u001c\u0000p\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u001c\u0000+\"\"\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\"\"\r\"\u0000\u00024\u0000\u0000\u0000&\u0000)\"\"\n\"\u0000\u0004\ntabB\r\"\u0000\u0001m\u0000\u0000\u0000'\u0000(!\u0003!\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\"\"\r\"\u0000\u00024\u0000\u0000\u0000#\u0000& \"\n \u0000\u0004\nscra\r\"\u0000\u0001m\u0000\u0000\u0000$\u0000%\u001f\u0003\u001f\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\"\"\r\"\u0000\u00024\u0000\u0000\u0000 \u0000#\u001e\"\n\u001e\u0000\u0004\ntabg\r\"\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u001d\u0003\u001d\u0000\u0001\r\"\u0000\u00024\u0000\u0000\u0000\u001c\u0000 \u001c\"\n\u001c\u0000\u0004\ncwin\r\"\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u001b\u0003\u001b\u0000\u0001\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000,\u00006\"\"\r\"\u0000\u0002n\u0000\u0000\u0000,\u00004\"\"\r\"\u0000\u00011\u0000\u0000\u00002\u00004\u0016\n\u0016\u0000\u0004\nvalL\r\"\u0000\u0002n\u0000\u0000\u0000,\u00002\"\"\r\"\u0000\u00024\u0000\u0000\u0000\/\u00002\u0015\"\n\u0015\u0000\u0004\nsttx\r\"\u0000\u0001m\u0000\u0000\u00000\u00001\u0014\u0003\u0014\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000,\u0000\/\"\"\r\"\u0000\u00012\u0000\u0000\u0000-\u0000\/\u0013\n\u0013\u0000\u0004\ncrow\r\"\u0000\u0001o\u0000\u0000\u0000,\u0000-\u0012\u000b\u0012\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u00007\u0000A\"\"\r\"\u0000\u0002n\u0000\u0000\u00007\u0000?\"\"\r\"\u0000\u00011\u0000\u0000\u0000=\u0000?\u0010\n\u0010\u0000\u0004\nvalL\r\"\u0000\u0002n\u0000\u0000\u00007\u0000=\"\"\r\"\u0000\u00024\u0000\u0000\u0000:\u0000=\u000f\"\n\u000f\u0000\u0004\nsttx\r\"\u0000\u0001m\u0000\u0000\u0000;\u0000<\u000e\u0003\u000e\u0000\u0003\r\"\u0000\u0002n\u0000\u0000\u00007\u0000:\"\"\r\"\u0000\u00012\u0000\u0000\u00008\u0000:\r\n\r\u0000\u0004\ncrow\r\"\u0000\u0001o\u0000\u0000\u00007\u00008\f\u000b\f\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000B\u0000B\n\t\b\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000B\u0000F\"\"\r\"\u0000\u0001J\u0000\u0000\u0000B\u0000D\u0007\u0002\u0007\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0005Y\u0000\u0000\u0000G\u0000k\"\u0005\"\"\u0004\r\"\u0000\u0001k\u0000\u0000\u0000U\u0000f\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000U\u0000a\"\"\r\"\u0000\u0001J\u0000\u0000\u0000U\u0000_\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002n\u0000\u0000\u0000U\u0000Y\"\"\r\"\u0000\u00024\u0000\u0000\u0000V\u0000Y\u0003\"\n\u0003\u0000\u0004\ncobj\r\"\u0000\u0001o\u0000\u0000\u0000W\u0000X\u0002\u000b\u0002\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000U\u0000V\u0001\u000b\u0001\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\"\u0000\u0002\"\u0000\r\"\u0000\u0002n\u0000\u0000\u0000Y\u0000]\"\"\r\"\u0000\u00024\u0000\u0000\u0000Z\u0000]\"\n\u0000\u0004\ncobj\r\"\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u000b\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u0002\u0000\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\u0002\"\u0000\u0002\"\r\"\u0000\u0002r\u0000\u0000\u0000b\u0000f\"\"\r\"\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\r\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0000;\u0000\u0000\u0000d\u0000e\r\"\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\u0000\u0000\u000b\u0005\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\r\"\u0000\u0003I\u0000\u0001\u0000K\u0000P\"\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\"\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\u0000\u0000\u0001\u0004\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0001L\u0000\u0000\u0000l\u0000n\"\r\"\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\"\u0000\u0002\"\r\"\u0000\u0003l\u0000\u0002\u0000o\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\"~\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019\"\n\u0000\u0004\nprcs\r\"\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\"|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\"\u000f\"\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002#\u0000\u0000\r\"o\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\"\"\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0003\"\n\u0000\u0004\nerrn\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\"p\u0000\u0003R\u0000\u0000\u0000z\u0000\"\"\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000p\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000a\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\u0000 \u0000P\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000 \u0000S\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000s\u0000 \u0000-\u0000 \r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0003\"\n\u0000\u0004\nerrn\r\"\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\"m\u0000\u0002\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\"_\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002i\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u0002\"\u0000\u0002\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\"\"\u0001\u0000\u0000\f\"\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"\u0000\u0001\"\u0011\"\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000]\"\"\"\r\"\u0000\u0002O\u0000\u0000\u0000\u0003\u0000I\"\"\r\"\u0000\u0002O\u0000\u0000\u0000\u0007\u0000H\"\"\r\"\u0000\u0001k\u0000\u0000\u0000\u000e\u0000G\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\r\"\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000G\"\"\r\"\u0000\u0001H\u0000\u0000\u0000\u0014\u0000\u001d#\u0000\r#\u0000\u0000\u0002E\u0000\u0000\u0000\u0014\u0000\u001c#\u0001#\u0002\r#\u0001\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a#\u0003#\u0004\r#\u0003\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r#\u0004\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018#\u0005\n\u0000\u0004\ncwin\r#\u0005\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r#\u0002\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b#\u0006\u000e#\u0006\u0000\u0001#\u0007\u0011#\u0007\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r\"\u0000\u0001k\u0000\u0000\u0000 \u0000C#\b\u0002#\b\u0000\u0002#\t#\n\r#\t\u0000\u0003I\u0000\u0002\u0000 \u0000@#\u000b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r#\u000b\u0000\u0003l\u0000\u0005\u0000 \u0000<#\f\r#\f\u0000\u00026\u0001\u0000\u0000 \u0000<#\r#\u000e\r#\r\u0000\u0002n\u0000\u0000\u0000 \u00003#\u000f#\u0010\r#\u000f\u0000\u00024\u0000\u0001\u00000\u00003#\u0011\n\u0000\u0004\nmenI\r#\u0011\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r#\u0010\u0000\u0002n\u0000\u0000\u0000 \u00000#\u0012#\u0013\r#\u0012\u0000\u00024\u0000\u0000\u0000-\u00000#\u0014\n\u0000\u0004\nmenE\r#\u0014\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r#\u0013\u0000\u0002n\u0000\u0000\u0000 \u0000-#\u0015#\u0016\r#\u0015\u0000\u00024\u0000\u0000\u0000*\u0000-#\u0017\n\u0000\u0004\nmenI\r#\u0017\u0000\u0001m\u0000\u0000\u0000+\u0000,#\u0018\u000e#\u0018\u0000\u0001#\u0019\u0011#\u0019\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r#\u0016\u0000\u0002n\u0000\u0000\u0000 \u0000*#\u001a#\u001b\r#\u001a\u0000\u00024\u0000\u0000\u0000'\u0000*#\u001c\n\u0000\u0004\nmenE\r#\u001c\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\r#\u001b\u0000\u0002n\u0000\u0000\u0000 \u0000'#\u001d#\u001e\r#\u001d\u0000\u00024\u0000\u0000\u0000$\u0000'#\u001f\n\u0000\u0004\nmbri\r#\u001f\u0000\u0001m\u0000\u0000\u0000%\u0000&# \u000e# \u0000\u0001#!\u0011#!\u0000\b\u0000F\u0000i\u0000l\u0000e\r#\u001e\u0000\u00024\u0000\u0000\u0000 \u0000$#\"\n\u0000\u0004\nmbar\r#\"\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\r#\u000e\u0000\u0002C\u0000\u0000\u00004\u0000;###$\r##\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npnam\r#$\u0000\u0001m\u0000\u0000\u00008\u0000:#%\u000e#%\u0000\u0001#&\u0011#&\u0000\u0010\u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002#\n\u0000\u0002#'\r#'\u0000\u0001L\u0000\u0000\u0000A\u0000C#(\r#(\u0000\u0001m\u0000\u0000\u0000A\u0000B\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b#)\n\u0000\u0004\npcap\r#)\u0000\u0001m\u0000\u0000\u0000\t\u0000\n#*\u000e#*\u0000\u0001#+\u0011#+\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\"\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#,\u000f#,\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\"\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000#-#.\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#.\u0000\u0003#\/\n\u0000\u0004\nerrn\r#\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\"\u0000\u0003R\u0000\u0000\u0000Q\u0000]#0#1\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#0\u0000\u0002b\u0000\u0000\u0000W\u0000\\#2#3\r#2\u0000\u0001m\u0000\u0000\u0000W\u0000Z#4\u000e#4\u0000\u0001#5\u0011#5\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r#3\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#1\u0000\u0003#6\n\u0000\u0004\nerrn\r#6\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\"\u0000\u0002#7\r#7\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\"\u0000\u0002#8#9\r#8\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#9\u0000\u0002#:#;\r#:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#;\u0000\u0002#<#=\r#<\u0000\u0002i\u0000\u0000\u0000\u0000#>#?\r#>\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000#@\u000b\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u0002#@\u0000\u0002#A\r#A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r#?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#B\u0002#B\u0000\u0002#C#D\r#C\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000#E#F\u0001\u0000\u0000\f#E\u0000\u0011\u0000\u000bversion 1.3\u0000\u0002\u0000\u0000\u000e#F\u0000\u0001#G\u0011#G\u0000\u0016\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002#D\u0000\u0002#H#I\r#H\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#I\u0000\u0002#J#K\r#J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b#L#M\r#L\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006#N\u0006#N\u0000\u0003#O#P\u000b\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\r#O\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006#P\u0000\u0003#Q\u000b\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\r#Q\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006\u0000\u0000\r#M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\u0002#K\u0000\u0002#R#S\r#R\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e#T#U\r#T\u0000\u0002b\u0000\u0000\u0000\t\u0000\f#V#W\r#V\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r#W\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\r#U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002#S\u0000\u0002#X#Y\r#X\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#Y\u0000\u0002#Z#[\r#Z\u0000\u0003Q\u0000\u0000\u0000\u000f\u0000#\\#]#^\r#\\\u0000\u0002O\u0000\u0000\u0000\u0012\u0000#_#`\r#_\u0000\u0002O\u0000\u0000\u0000\u0016\u0000#a#b\r#a\u0000\u0001k\u0000\u0000\u0000\u001d\u0000#c\u0002#c\u0000\u0002#d#e\r#d\u0000\u0002n\u0000\u0001\u0000\u001d\u0000\"#f#g\r#f\u0000\u0003I\u0000\u0000\u0000\u001e\u0000\"\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r#g\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0002#e\u0000\u0002#h#i\r#h\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#i\u0000\u0002#j#k\r#j\u0000\u0004Z\u0000\u0000\u0000#\u00009#l#m\r#l\u0000\u0001H\u0000\u0000\u0000#\u0000,#n\r#n\u0000\u0002E\u0000\u0000\u0000#\u0000+#o#p\r#o\u0000\u0002n\u0000\u0000\u0000#\u0000)#q#r\r#q\u0000\u00011\u0000\u0000\u0000'\u0000)\n\u0000\u0004\npnam\r#r\u0000\u00024\u0000\u0000\u0000#\u0000'#s\n\u0000\u0004\ncwin\r#s\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r#p\u0000\u0001m\u0000\u0000\u0000)\u0000*#t\u000e#t\u0000\u0001#u\u0011#u\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r#m\u0000\u0003R\u0000\u0000\u0000\/\u00005~#v#w\n~\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#v\u0000\u0001m\u0000\u0000\u00003\u00004#x\u000e#x\u0000\u0001#y\u0011#y\u0000F\u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000m\u0000a\u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0006#w\u0000\u0003}#z|\n}\u0000\u0004\nerrn\r#z\u0000\u0001m\u0000\u0000\u00001\u00002{\u0003{\u0004\u0000\u0006|\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002#k\u0000\u0002#{#|\r#{\u0000\u0003l\u0000\u0002\u0000:\u0000:zyx\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002#|\u0000\u0002#}#~\r#}\u0000\u0003l\u0000\u0001\u0000:\u0000:w##\u0001w\u0000\u0000\f#\u0000\u001b\u0000\u0015 SAVE edits: click OK\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000*\u0000 \u0000S\u0000A\u0000V\u0000E\u0000 \u0000e\u0000d\u0000i\u0000t\u0000s\u0000:\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0002#~\u0000\u0002##\r#\u0000\u0002U\u0000\u0000\u0000:\u0000y##\r#\u0000\u0001k\u0000\u0000\u0000A\u0000t#\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0001\u0000A\u0000Av##\u0001v\u0000\u0000\f#\u0000+\u0000% give a bit of extra time, if needed:\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000J\u0000 \u0000g\u0000i\u0000v\u0000e\u0000 \u0000a\u0000 \u0000b\u0000i\u0000t\u0000 \u0000o\u0000f\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000t\u0000i\u0000m\u0000e\u0000,\u0000 \u0000i\u0000f\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0000:\u0002#\u0000\u0002##\r#\u0000\u0002n\u0000\u0001\u0000A\u0000Z##\r#\u0000\u0003I\u0000\u0000\u0000B\u0000Zu#t\u000bu\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002#\u0000\u0002#s\r#\u0000\u00026\u0001\u0000\u0000B\u0000V##\r#\u0000\u0002n\u0000\u0000\u0000B\u0000I##\r#\u0000\u00024\u0000\u0001\u0000F\u0000Ir#\nr\u0000\u0004\nbutT\r#\u0000\u0001m\u0000\u0000\u0000G\u0000Hq\u0003q\u0000\u0001\r#\u0000\u00024\u0000\u0000\u0000B\u0000Fp#\np\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000D\u0000Eo\u0003o\u0000\u0001\r#\u0000\u0002=\u0000\u0003\u0000L\u0000U##\r#\u0000\u00011\u0000\u0000\u0000M\u0000On\nn\u0000\u0004\npnam\r#\u0000\u0001m\u0000\u0000\u0000P\u0000T#\u000e#\u0000\u0001#\u0011#\u0000\u0004\u0000O\u0000K\u0002s\u0000\u0000\u0002t\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0000\u0000[\u0000n##ml\r#\u0000\u0001H\u0000\u0000\u0000[\u0000f#\r#\u0000\u0002C\u0000\u0000\u0000[\u0000e##\r#\u0000\u0002n\u0000\u0000\u0000[\u0000a##\r#\u0000\u00011\u0000\u0000\u0000_\u0000ak\nk\u0000\u0004\npnam\r#\u0000\u00024\u0000\u0000\u0000[\u0000_j#\nj\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000]\u0000^i\u0003i\u0000\u0001\r#\u0000\u0001m\u0000\u0000\u0000a\u0000d#\u000e#\u0000\u0001#\u0011#\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r#\u0000\u0001k\u0000\u0000\u0000i\u0000j#\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0001\u0000i\u0000ih##\u0001h\u0000\u0000\f#\u0000.\u0000( finished closing the window, can leave.\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000P\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000,\u0000 \u0000c\u0000a\u0000n\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000.\u0002#\u0000\u0002#g\r#\u0000\u0000S\u0000\u0000\u0000i\u0000j\u0002g\u0000\u0000\u0002m\u0000\u0000\u0001l\u0000\u0000\u0002#\u0000\u0002#f\r#\u0000\u0003I\u0000\u0002\u0000o\u0000te#d\ne\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000o\u0000pc\u0003c\u0000\u0001\u0002d\u0000\u0000\u0002f\u0000\u0000\r#\u0000\u0001m\u0000\u0000\u0000=\u0000>b\u0003b\u0000\u0005\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000z\u0000za`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003I\u0000\u0002\u0000z\u0000^#]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000z\u0000}#\b#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002]\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0000\u0000\u0000##YX\r#\u0000\u0002=\u0000\u0003\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000W\nW\u0000\u0004\npnam\r#\u0000\u00024\u0000\u0000\u0000\u0000V#\nV\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000U\u0003U\u0000\u0001\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u00002\u0000C\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000L\u0000o\u0000g\u0000i\u0000n\r#\u0000\u0001k\u0000\u0000\u0000\u0000#\u0002#\u0000\u0002##\r#\u0000\u0002r\u0000\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\r#\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r#\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000R\nR\u0000\u0004\nvalL\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0000\u0000\u0000Q#\nQ\u0000\u0004\ntxtf\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000(\u0000F\u0000u\u0000l\u0000l\u0000 \u0000A\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000:\r#\u0000\u00024\u0000\u0000\u0000\u0000P#\nP\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u0001\u0002#\u0000\u0002##\r#\u0000\u0002r\u0000\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u0001o\u0000\u0000\u0000\u0000N\u000bN\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\r#\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\r#\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000L\nL\u0000\u0004\nvalL\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0000\u0000\u0000K#\nK\u0000\u0004\ntxtf\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000\u0012\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000:\r#\u0000\u00024\u0000\u0000\u0000\u0000J#\nJ\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000I\u0003I\u0000\u0001\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0002n\u0000\u0001\u0000\u0000##\r#\u0000\u0003I\u0000\u0000\u0000\u0000E#D\u000bE\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002#\u0000\u0002#C\r#\u0000\u00026\u0001\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0001\u0000\u0000B#\nB\u0000\u0004\nbutT\r#\u0000\u0001m\u0000\u0000\u0000\u0000A\u0003A\u0000\u0001\r#\u0000\u00024\u0000\u0000\u0000\u0000@#\n@\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000?\u0003?\u0000\u0001\r#\u0000\u0002=\u0000\u0003\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000>\n>\u0000\u0004\npnam\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000\u0004\u0000O\u0000K\u0002C\u0000\u0000\u0002D\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000\u0000\u0002#\u0000\u0002#=\r#\u0000\u0003I\u0000\u0002\u0000\u0000<#;\n<\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\b#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002#\u0000\u0002#7\r#\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u00027\u0000\u0000\r#b\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a3#\n3\u0000\u0004\npcap\r#\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019#\u000e#\u0000\u0001#\u0011#\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r#`\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013#\u000f#\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r#]\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00002##\n2\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#\u0000\u00030#\/\n0\u0000\u0004\nerrn\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\/\u0000\u0000\r#^\u0000\u0003R\u0000\u0000\u0000\u0000-$\u0000$\u0001\n-\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0000\u0002b\u0000\u0000\u0000\u0000$\u0002$\u0003\r$\u0002\u0000\u0001m\u0000\u0000\u0000\u0000$\u0004\u000e$\u0004\u0000\u0001$\u0005\u0011$\u0005\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r$\u0003\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0001\u0000\u0003+$\u0006*\n+\u0000\u0004\nerrn\r$\u0006\u0000\u0001o\u0000\u0000\u0000\u0000)\u000b)\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006*\u0000\u0000\u0002#[\u0000\u0002$\u0007(\r$\u0007\u0000\u0003l\u0000\u0002\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002(\u0000\u0000\u0002#=\u0000\u0002$\b$\t\r$\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\t\u0000\u0002$\n$\u000b\r$\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002$\u000b\u0000\u0002$\f$\r\r$\f\u0000\u0002i\u0000\u0000\u0000\u0000$\u000e$\u000f\r$\u000e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001e$\u0010\u001d\u000b\u001e\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002$\u0010\u0000\u0002$\u0011$\u0012\r$\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u0002$\u0012\u0000\u0002$\u0013\u001b\r$\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\r$\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u00009$\u0014\u0002$\u0014\u0000\u0002$\u0015$\u0016\r$\u0015\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0019$\u0017$\u0018\u0001\u0019\u0000\u0000\f$\u0017\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$\u0018\u0000\u0001$\u0019\u0011$\u0019\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$\u0016\u0000\u0002$\u001a$\u001b\r$\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002$\u001b\u0000\u0002$\u001c\u0015\r$\u001c\u0000\u0002w\u0000\u0000\u0000\u0000\u00009$\u001d$\u001e\r$\u001d\u0000\u0003Q\u0000\u0000\u0000\u0002\u00009$\u001f$ $!\r$\u001f\u0000\u0001k\u0000\u0000\u0000\u0005\u0000%$\"\u0002$\"\u0000\u0002$#$$\r$#\u0000\u0004Z\u0000\u0000\u0000\u0005\u0000 $%$&\u0014\u0013\r$%\u0000\u0002>\u0001\u0000\u0000\u0005\u0000\b$'$(\r$'\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u0012\u000b\u0012\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$(\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0011\n\u0011\u0000\u0004\nnull\r$&\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000\u001c$)$*\u0010\u000f\r$)\u0000\u0002>\u0001\u0000\u0000\u000b\u0000\u0010$+$,\r$+\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e$-$.\r$-\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\u000e\n\u000e\u0000\u0004\nvalL\r$.\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\r\u000b\r\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\r$,\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\f\u000b\f\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$*\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u000b$\/\n\n\u000b\u0000\u0018.prcsclicnull\u0000\u0000uiel\r$\/\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\t\u000b\t\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u0002\n\u0000\u0000\u0002\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002$$\u0000\u0002$0$1\r$0\u0000\u0001L\u0000\u0000\u0000!\u0000#$2\r$2\u0000\u0001m\u0000\u0000\u0000!\u0000\"\b\n\b\u0000\b\u000bboovtrue\u0002$1\u0000\u0002$3\u0007\r$3\u0000\u0003l\u0000\u0002\u0000$\u0000$\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\r$ \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0003$4$5\n\u0003\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$5\u0000\u0003\u0001$6\u0000\n\u0001\u0000\u0004\nerrn\r$6\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0000\r$!\u0000\u0003R\u0000\u0000\u0000-\u00009$7$8\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$7\u0000\u0002b\u0000\u0000\u00001\u00008$9$:\r$9\u0000\u0002b\u0000\u0000\u00001\u00006$;$<\r$;\u0000\u0002b\u0000\u0000\u00001\u00004$=$>\r$=\u0000\u0001m\u0000\u0000\u00001\u00002$?\u000e$?\u0000\u0001$@\u0011$@\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r$>\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$<\u0000\u0001m\u0000\u0000\u00004\u00005$A\u000e$A\u0000\u0001$B\u0011$B\u0000\"\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000 \u0000-\u0000 \r$:\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$8\u0000\u0003$C\n\u0000\u0004\nerrn\r$C\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u000f$\u001e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0015\u0000\u0000\u0002$\r\u0000\u0002$D$E\r$D\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$E\u0000\u0002$F$G\r$F\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$G\u0000\u0002$H$I\r$H\u0000\u0002i\u0000\u0000\u0000\u0000$J$K\r$J\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$L\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002$L\u0000\u0002$M\r$M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002\u0000\u0000\u0002\u0000\u0000\r$K\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\n$N\u0002$N\u0000\u0002$O$P\r$O\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$Q$R\u0001\u0000\u0000\f$Q\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$R\u0000\u0001$S\u0011$S\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$P\u0000\u0002$T$U\r$T\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$U\u0000\u0002$V$W\r$V\u0000\u0002w\u0000\u0000\u0000\u0000\u0000\b$X$Y\r$X\u0000\u0002n\u0000\u0001\u0000\u0002\u0000\b$Z$[\r$Z\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b$\\\u000b\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002$\\\u0000\u0002$]\r$]\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002\u0000\u0000\u0002\u0000\u0000\r$[\u0000\u0000f\u0000\u0000\u0000\u0002\u0000\u0003\u000f$Y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002$W\u0000\u0002$^\r$^\u0000\u0003l\u0000\u0002\u0000\t\u0000\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002$I\u0000\u0002$_$`\r$_\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$`\u0000\u0002$a$b\r$a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$b\u0000\u0002$c$d\r$c\u0000\u0002i\u0000\u0000\u0000\u0000$e$f\r$e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u0002\u0000\u0000\u0002\u0000\u0000\r$f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000$g\u0002$g\u0000\u0002$h$i\r$h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$j$k\u0001\u0000\u0000\f$j\u0000 \u0000\u001a version 1.0, Erik Shagdar\u0000\u0002\u0000\u0000\u000e$k\u0000\u0001$l\u0011$l\u00004\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0000,\u0000 \u0000E\u0000r\u0000i\u0000k\u0000 \u0000S\u0000h\u0000a\u0000g\u0000d\u0000a\u0000r\u0002$i\u0000\u0002$m$n\r$m\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$n\u0000\u0002$o$p\r$o\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003$q$r\r$q\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\r$r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$p\u0000\u0002$s$t\r$s\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$t\u0000\u0002$u$v\r$u\u0000\u0002O\u0000\u0000\u0000\u0004\u0000~$w$x\r$w\u0000\u0002O\u0000\u0000\u0000\b\u0000}$y$z\r$y\u0000\u0001k\u0000\u0000\u0000\u000f\u0000|${\u0002${\u0000\u0002$|$}\r$|\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$}\u0000\u0002$~$\r$~\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014$$\r$\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000\u0015\u0000-$$\r$\u0000\u00026\u0001\u0000\u0000\u0015\u0000+$$\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\"$$\r$\u0000\u00024\u0000\u0001\u0000\u001f\u0000\"$\n\u0000\u0004\nmenI\r$\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0001\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f$$\r$\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001f$\n\u0000\u0004\nmenE\r$\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0003\u0000\u0001\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001c$$\r$\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001c$\n\u0000\u0004\nmbri\r$\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b$\u000e$\u0000\u0001$\u0011$\u0000\b\u0000E\u0000d\u0000i\u0000t\r$\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019$\n\u0000\u0004\nmbar\r$\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0001\r$\u0000\u0002=\u0000\u0003\u0000#\u0000*$$\r$\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\npnam\r$\u0000\u0001m\u0000\u0000\u0000'\u0000)$\u000e$\u0000\u0001$\u0011$\u0000\n\u0000P\u0000a\u0000s\u0000t\u0000e\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002$\u0000\u0002$$\r$\u0000\u0003Q\u0000\u0000\u0000.\u0000H$$$\r$\u0000\u0003I\u0000\u0002\u00001\u00006$\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r$\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000$$\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0000\u0003$\n\u0000\u0004\nerrn\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000>\u0000H$$\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0002b\u0000\u0000\u0000B\u0000G$$\r$\u0000\u0001m\u0000\u0000\u0000B\u0000E$\u000e$\u0000\u0001$\u0011$\u0000R\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r$\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0000\u0003$\n\u0000\u0004\nerrn\r$\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0001\u0000I\u0000I$$\u0001\u0000\u0000\f$\u0000G\u0000A waiting until the paste item exists suggests the paste completed\u0000\u0002\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000s\u0000u\u0000g\u0000g\u0000e\u0000s\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000d\u0002$\u0000\u0002$\r$\u0000\u0002U\u0000\u0000\u0000I\u0000|$$\r$\u0000\u0001k\u0000\u0000\u0000R\u0000w$\u0002$\u0000\u0002$$\r$\u0000\u0003Q\u0000\u0000\u0000R\u0000o$$\r$\u0000\u0004Z\u0000\u0000\u0000U\u0000f$$\r$\u0000\u0003I\u0000\u0002\u0000U\u0000Z$\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002\u0000\u0000\r$\u0000\u0001k\u0000\u0000\u0000]\u0000b$\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000]\u0000`$$\r$\u0000\u0001m\u0000\u0000\u0000]\u0000^\n\u0000\b\u000bboovtrue\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$\u0000\u0002$\r$\u0000\u0000S\u0000\u0000\u0000a\u0000b\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$\r$\u0000\u0003I\u0000\u0002\u0000p\u0000w$\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r$\u0000\u0001m\u0000\u0000\u0000p\u0000s$\b$\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0003\u0000\u0014\u0002\u0000\u0000\r$z\u0000\u00024\u0000\u0000\u0000\b\u0000\f$\n\u0000\u0004\npcap\r$\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b$\u000e$\u0000\u0001$\u0011$\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r$x\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005$\u000f$\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002$v\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0001L\u0000\u0000\u0000\u0000$\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$\u0000\u0002$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002$d\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002i\u0000\u0000\u0000\u0000$$\r$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$\u000b\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u0002$\u0000\u0002$\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0005$\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$$\u0001\u0000\u0000\f$\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f$$\r$\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\n$\u0006$\u0000\u0003$$\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r$\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006$\u0000\u0003$$\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r$\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006$\u0000\u0003~$$\u000b~\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r$\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006$\u000e$\u0000\u0001$\u0011$\u0000\u0004\u0000i\u0000s\u0006$\u0000\u0003}$|\u000b}\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r$\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b{\n{\u0000\b\u000bboovfals\u0006|\u0000\u0000\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\r\u0000\ryxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0004Z\u0000\u0000\u0000\r\u0000,$$vu\r$\u0000\u0002=\u0000\u0001\u0000\r\u0000\u0017$$\r$\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0010$$\r$\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u0010t\nt\u0000\u0004\npcls\r$\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000es\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\r$\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0016$$\r$\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0016r\nr\u0000\u0004\npcls\r$\u0000\u0001J\u0000\u0000\u0000\u0010\u0000\u0014$\u0002$\u0000\u0002$$\r$\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011%\u0000\u000e%\u0000\u0000\u0001%\u0001\u0011%\u0001\u0000\u0002\u0000a\u0002$\u0000\u0002%\u0002q\r%\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012p\u0003p\u0000\u0002\u0002q\u0000\u0000\r$\u0000\u0002r\u0000\u0000\u0000\u001a\u0000(%\u0003%\u0004\r%\u0003\u0000\u0001K\u0000\u0000\u0000\u001a\u0000&%\u0005\u0006%\u0005\u0000\u0003o%\u0006%\u0007\u000bo\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0006\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001f%\b%\t\r%\b\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001fn%\n\nn\u0000\u0004\ncobj\r%\n\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001em\u0003m\u0000\u0001\r%\t\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001cl\u000bl\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006%\u0007\u0000\u0003k%\u000bj\u000bk\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u000b\u0000\u0002n\u0000\u0000\u0000 \u0000$%\f%\r\r%\f\u0000\u00024\u0000\u0000\u0000!\u0000$i%\u000e\ni\u0000\u0004\ncobj\r%\u000e\u0000\u0001m\u0000\u0000\u0000\"\u0000#h\u0003h\u0000\u0002\r%\r\u0000\u0001o\u0000\u0000\u0000 \u0000!g\u000bg\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006j\u0000\u0000\r%\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002v\u0000\u0000\u0001u\u0000\u0000\u0002$\u0000\u0002%\u000f%\u0010\r%\u000f\u0000\u0003l\u0000\u0002\u0000-\u0000-edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002%\u0010\u0000\u0002%\u0011%\u0012\r%\u0011\u0000\u0003l\u0000\u0002\u0000-\u0000-ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002%\u0012\u0000\u0002%\u0013%\u0014\r%\u0013\u0000\u0002r\u0000\u0000\u0000-\u00002%\u0015%\u0016\r%\u0015\u0000\u0002b\u0000\u0000\u0000-\u00000%\u0017%\u0018\r%\u0017\u0000\u0001o\u0000\u0000\u0000-\u0000._\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\r%\u0018\u0000\u0001o\u0000\u0000\u0000.\u0000\/^\u000b^\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r%\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0014\u0000\u0002%\u0019%\u001a\r%\u0019\u0000\u0003l\u0000\u0002\u00003\u00003\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002%\u001a\u0000\u0002%\u001b%\u001c\r%\u001b\u0000\u0002r\u0000\u0000\u00003\u00008%\u001d%\u001e\r%\u001d\u0000\u0002n\u0000\u0000\u00003\u00006%\u001f% \r%\u001f\u0000\u0001o\u0000\u0000\u00004\u00006Y\u000bY\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r% \u0000\u0001o\u0000\u0000\u00003\u00004X\u000bX\u0000\t0\u0000\u0005prefs\u0000\u0000\r%\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002%\u001c\u0000\u0002%!%\"\r%!\u0000\u0002r\u0000\u0000\u00009\u0000>%#%$\r%#\u0000\u0002n\u0000\u0000\u00009\u0000<%%%&\r%%\u0000\u0001o\u0000\u0000\u0000:\u0000<V\u000bV\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%&\u0000\u0001o\u0000\u0000\u00009\u0000:U\u000bU\u0000\t0\u0000\u0005prefs\u0000\u0000\r%$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u0002%\"\u0000\u0002%'%(\r%'\u0000\u0002r\u0000\u0000\u0000?\u0000D%)%*\r%)\u0000\u0002n\u0000\u0000\u0000?\u0000B%+%,\r%+\u0000\u0001o\u0000\u0000\u0000@\u0000BS\u000bS\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%,\u0000\u0001o\u0000\u0000\u0000?\u0000@R\u000bR\u0000\t0\u0000\u0005prefs\u0000\u0000\r%*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002%(\u0000\u0002%-%.\r%-\u0000\u0003l\u0000\u0001\u0000E\u0000J%\/%0%1\r%\/\u0000\u0002r\u0000\u0000\u0000E\u0000J%2%3\r%2\u0000\u0002n\u0000\u0000\u0000E\u0000H%4%5\r%4\u0000\u0001o\u0000\u0000\u0000F\u0000HP\u000bP\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r%5\u0000\u0001o\u0000\u0000\u0000E\u0000FO\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\r%3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\f%0\u00006\u00000 re-select even if popup is the requested value.\u0000\u0002\u0000\u0000\u000e%1\u0000\u0001%6\u0011%6\u0000`\u0000 \u0000r\u0000e\u0000-\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000i\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000.\u0002%.\u0000\u0002%7%8\r%7\u0000\u0003l\u0000\u0002\u0000K\u0000KMLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002%8\u0000\u0002%9%:\r%9\u0000\u0003l\u0000\u0002\u0000K\u0000KJIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002%:\u0000\u0002%;G\r%;\u0000\u0002w\u0000\u0000\u0000K\u0002\u0005%<%=\r%<\u0000\u0003Q\u0000\u0000\u0000M\u0002\u0005%>%?%@\r%>\u0000\u0004Z\u0000\u0000\u0000P\u0001%A%BF%C\r%A\u0000\u0001H\u0000\u0000\u0000P\u0000V%D\r%D\u0000\u0003l\u0000\u0005\u0000P\u0000U%EED\r%E\u0000\u0003I\u0000\u0002\u0000P\u0000UC%FB\nC\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r%F\u0000\u0001o\u0000\u0000\u0000P\u0000QA\u000bA\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\r%B\u0000\u0001k\u0000\u0000\u0000Y\u0000a%G\u0002%G\u0000\u0002%H%I\r%H\u0000\u0003l\u0000\u0001\u0000Y\u0000Y@%J%K\u0001@\u0000\u0000\f%J\u0000*\u0000$ does NOT exist, so error with that:\u0000\u0002\u0000\u0000\u000e%K\u0000\u0001%L\u0011%L\u0000H\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000a\u0000t\u0000:\u0002%I\u0000\u0002%M%N\r%M\u0000\u0003R\u0000\u0000\u0000Y\u0000_?%O%P\n?\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r%O\u0000\u0001m\u0000\u0000\u0000]\u0000^%Q\u000e%Q\u0000\u0001%R\u0011%R\u0000R\u0000T\u0000h\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0006%P\u0000\u0003>%S=\n>\u0000\u0004\nerrn\r%S\u0000\u0001m\u0000\u0000\u0000[\u0000\\<\u0003<\u0004\u0000\u0006=\u0000\u0000\u0002%N\u0000\u0002%T;\r%T\u0000\u0003l\u0000\u0002\u0000`\u0000`:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002;\u0000\u0000\u0002F\u0000\u0000\r%C\u0000\u0001k\u0000\u0000\u0000d\u0001%U\u0002%U\u0000\u0002%V%W\r%V\u0000\u0003l\u0000\u0001\u0000d\u0000d7%X%Y\u00017\u0000\u0000\f%X\u0000!\u0000\u001b the popupObject DOES exist\u0000\u0002\u0000\u0000\u000e%Y\u0000\u0001%Z\u0011%Z\u00006\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0002%W\u0000\u0002%[%\\\r%[\u0000\u0002r\u0000\u0000\u0000d\u0000g%]%^\r%]\u0000\u0001m\u0000\u0000\u0000d\u0000e6\n6\u0000\b\u000bboovfals\r%^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%\\\u0000\u0002%_%`\r%_\u0000\u0004Z\u0000\u0000\u0000h\u0001$%a%b4%c\r%a\u0000\u0001H\u0000\u0000\u0000h\u0000r%d\r%d\u0000\u0003l\u0000\u0005\u0000h\u0000q%e32\r%e\u0000\u0003I\u0000\u0002\u0000h\u0000q1%f0\n1\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r%f\u0000\u0002n\u0000\u0000\u0000h\u0000m%g%h\r%g\u0000\u00011\u0000\u0000\u0000i\u0000m\/\n\/\u0000\u0004\nvalL\r%h\u0000\u0001o\u0000\u0000\u0000h\u0000i.\u000b.\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u00020\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\r%b\u0000\u0001k\u0000\u0000\u0000u\u0000z%i\u0002%i\u0000\u0002%j%k\r%j\u0000\u0003l\u0000\u0001\u0000u\u0000u-%l%m\u0001-\u0000\u0000\f%l\u0000i\u0000c first check if the value of the popupObject exists - if it doesn't, then we can't test it directly\u0000\u0002\u0000\u0000\u000e%m\u0000\u0001%n\u0011%n\u0000\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000-\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000'\u0000t\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0002%k\u0000\u0002%o%p\r%o\u0000\u0002r\u0000\u0000\u0000u\u0000x%q%r\r%q\u0000\u0001m\u0000\u0000\u0000u\u0000v,\n,\u0000\b\u000bboovtrue\r%r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%p\u0000\u0002%s*\r%s\u0000\u0003l\u0000\u0002\u0000y\u0000y)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\u00024\u0000\u0000\r%c\u0000\u0003l\u0000\u0003\u0000}\u0001$%t%u%v\r%t\u0000\u0001k\u0000\u0000\u0000}\u0001$%w\u0002%w\u0000\u0002%x%y\r%x\u0000\u0003l\u0000\u0001\u0000}\u0000}&%z%{\u0001&\u0000\u0000\f%z\u0000K\u0000E note that our selection might be one of several 'matching' commands:\u0000\u0002\u0000\u0000\u000e%{\u0000\u0001%|\u0011%|\u0000\u0000 \u0000n\u0000o\u0000t\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000m\u0000i\u0000g\u0000h\u0000t\u0000 \u0000b\u0000e\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000a\u0000l\u0000 \u0000'\u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000'\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000s\u0000:\u0002%y\u0000\u0002%}%\r%}\u0000\u0004Z\u0000\u0000\u0000}\u0001$%~%%$\r%~\u0000\u0001o\u0000\u0000\u0000}\u0000~#\u000b#\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0003l\u0000\u0001\u0000\u0000\"%%\u0001\"\u0000\u0000\f%\u0000>\u00008 RE-SELECT even if popup already is the requested value.\u0000\u0002\u0000\u0000\u000e%\u0000\u0001%\u0011%\u0000p\u0000 \u0000R\u0000E\u0000-\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000i\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000.\u0002%\u0000\u0002%%\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000!\n!\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%\u0000\u0002%\u001f\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001f\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0004\u0000i\u0000s\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u001a\u0019\r%\u0000\u0002>\u0001\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\u0018\n\u0018\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\n\u0015\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002%\u0000\u0002%\u0013\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u0013\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u000e\r\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002E\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\f\n\f\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\t\n\t\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002%\u0000\u0002%\u0007\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0014\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u0002\u0001\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002C\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0014\u0000b\u0000e\u0000g\u0000i\u0000n\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0001\u0001%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002C\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0001\u0004\u0001\t%%\r%\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\b%\u000e%\u0000\u0001%\u0011%\u0000\u0010\u0000e\u0000n\u0000d\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%\r%\u0000\u0001k\u0000\u0000\u0001\f\u0001 %\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0001\f\u0001\u001e%%\r%\u0000\u0001H\u0000\u0000\u0001\f\u0001\u0014%\r%\u0000\u0002D\u0000\u0000\u0001\f\u0001\u0013%%\r%\u0000\u0002n\u0000\u0000\u0001\f\u0001\u0011%%\r%\u0000\u00011\u0000\u0000\u0001\r\u0001\u0011\n\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0001\f\u0001\r\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0001\u0017\u0001\u001a%%\r%\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0001\u001f\u0001\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001$\u0000\u0000\u0002%\u0000\u0000\f%u\u0000C\u0000= we can see the value without 'picking' the menu, so test it:\u0000\u0002\u0000\u0000\u000e%v\u0000\u0001%\u0011%\u0000z\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000'\u0000p\u0000i\u0000c\u0000k\u0000i\u0000n\u0000g\u0000'\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000n\u0000u\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000t\u0000:\u0002%`\u0000\u0002%%\r%\u0000\u0003l\u0000\u0002\u0001%\u0001%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0001%\u0001%%\r%\u0000\u0001o\u0000\u0000\u0001%\u0001&\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\r%\u0000\u0004Z\u0000\u0000\u0001)\u0001%%\r%\u0000\u0002>\u0001\u0000\u0001)\u0001,%%\r%\u0000\u0001o\u0000\u0000\u0001)\u0001*\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0001m\u0000\u0000\u0001*\u0001+\n\u0000\u0004\nnull\r%\u0000\u0001k\u0000\u0000\u0001\/\u0001%\u0002%\u0000\u0002%&\u0000\r%\u0000\u0003I\u0000\u0002\u0001\/\u00014&\u0001\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u0001\u0000\u0001o\u0000\u0000\u0001\/\u00010\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002\u0000\u0000\u0002&\u0000\u0000\u0002&\u0002&\u0003\r&\u0002\u0000\u0004Z\u0000\u0000\u00015\u0001&\u0004&\u0005&\u0006\r&\u0004\u0000\u0002=\u0000\u0001\u00015\u0001:&\u0007&\b\r&\u0007\u0000\u0001o\u0000\u0000\u00015\u00016\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\b\u0000\u0001m\u0000\u0000\u00016\u00019&\t\u000e&\t\u0000\u0001&\n\u0011&\n\u0000\u0004\u0000i\u0000s\r&\u0005\u0000\u0003I\u0000\u0002\u0001=\u0001Y&\u000b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u000b\u0000\u0003l\u0000\u0005\u0001=\u0001U&\f\r&\f\u0000\u00026\u0001\u0000\u0001=\u0001U&\r&\u000e\r&\r\u0000\u0002n\u0000\u0000\u0001=\u0001H&\u000f&\u0010\r&\u000f\u0000\u00024\u0000\u0001\u0001C\u0001H&\u0011\n\u0000\u0004\nmenI\r&\u0011\u0000\u0001m\u0000\u0000\u0001F\u0001G\u0003\u0000\u0001\r&\u0010\u0000\u0002n\u0000\u0000\u0001=\u0001C&\u0012&\u0013\r&\u0012\u0000\u00024\u0000\u0000\u0001>\u0001C&\u0014\n\u0000\u0004\nmenE\r&\u0014\u0000\u0001m\u0000\u0000\u0001A\u0001B\u0003\u0000\u0001\r&\u0013\u0000\u0001o\u0000\u0000\u0001=\u0001>\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&\u000e\u0000\u0002=\u0000\u0003\u0001K\u0001T&\u0015&\u0016\r&\u0015\u0000\u00011\u0000\u0000\u0001L\u0001P\n\u0000\u0004\npnam\r&\u0016\u0000\u0001o\u0000\u0000\u0001Q\u0001S\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u0006\u0000\u0002&\u0017&\u0018\r&\u0017\u0000\u0002=\u0000\u0001\u0001\\\u0001a&\u0019&\u001a\r&\u0019\u0000\u0001o\u0000\u0000\u0001\\\u0001]\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\u001a\u0000\u0001m\u0000\u0000\u0001]\u0001`&\u001b\u000e&\u001b\u0000\u0001&\u001c\u0011&\u001c\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0002&\u0018\u0000\u0002&\u001d&\u001e\r&\u001d\u0000\u0001k\u0000\u0000\u0001d\u0001&\u001f\u0002&\u001f\u0000\u0002& &!\r& \u0000\u0003I\u0000\u0002\u0001d\u0001&\"\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\"\u0000\u0003l\u0000\u0005\u0001d\u0001|&#\r&#\u0000\u00026\u0001\u0000\u0001d\u0001|&$&%\r&$\u0000\u0002n\u0000\u0000\u0001d\u0001o&&&'\r&&\u0000\u00024\u0000\u0001\u0001j\u0001o&(\n\u0000\u0004\nmenI\r&(\u0000\u0001m\u0000\u0000\u0001m\u0001n\u0003\u0000\u0001\r&'\u0000\u0002n\u0000\u0000\u0001d\u0001j&)&*\r&)\u0000\u00024\u0000\u0000\u0001e\u0001j&+\n\u0000\u0004\nmenE\r&+\u0000\u0001m\u0000\u0000\u0001h\u0001i\u0003\u0000\u0001\r&*\u0000\u0001o\u0000\u0000\u0001d\u0001e\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&%\u0000\u0002E\u0000\u0000\u0001r\u0001{&,&-\r&,\u0000\u00011\u0000\u0000\u0001s\u0001w\n\u0000\u0004\npnam\r&-\u0000\u0001o\u0000\u0000\u0001x\u0001z\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&!\u0000\u0002&.\r&.\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u001e\u0000\u0002&\/&0\r&\/\u0000\u0002=\u0000\u0001\u0001\u0001&1&2\r&1\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&2\u0000\u0001m\u0000\u0000\u0001\u0001&3\u000e&3\u0000\u0001&4\u0011&4\u0000\u0014\u0000b\u0000e\u0000g\u0000i\u0000n\u0000s\u0000W\u0000i\u0000t\u0000h\u0002&0\u0000\u0002&5&6\r&5\u0000\u0001k\u0000\u0000\u0001\u0001&7\u0002&7\u0000\u0002&8&9\r&8\u0000\u0003I\u0000\u0002\u0001\u0001&:\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&:\u0000\u0003l\u0000\u0005\u0001\u0001&;\r&;\u0000\u00026\u0001\u0000\u0001\u0001&<&=\r&<\u0000\u0002n\u0000\u0000\u0001\u0001&>&?\r&>\u0000\u00024\u0000\u0001\u0001\u0001&@\n\u0000\u0004\nmenI\r&@\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&?\u0000\u0002n\u0000\u0000\u0001\u0001&A&B\r&A\u0000\u00024\u0000\u0000\u0001\u0001&C\n\u0000\u0004\nmenE\r&C\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&B\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&=\u0000\u0002C\u0000\u0000\u0001\u0001&D&E\r&D\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\npnam\r&E\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&9\u0000\u0002&F\r&F\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&6\u0000\u0002&G&H\r&G\u0000\u0002=\u0000\u0001\u0001\u0001&I&J\r&I\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&J\u0000\u0001m\u0000\u0000\u0001\u0001&K\u000e&K\u0000\u0001&L\u0011&L\u0000\u0010\u0000e\u0000n\u0000d\u0000s\u0000W\u0000i\u0000t\u0000h\u0002&H\u0000\u0002&M\r&M\u0000\u0001k\u0000\u0000\u0001\u0001&N\u0002&N\u0000\u0002&O&P\r&O\u0000\u0003I\u0000\u0002\u0001\u0001&Q\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&Q\u0000\u0003l\u0000\u0005\u0001\u0001&R\r&R\u0000\u00026\u0001\u0000\u0001\u0001&S&T\r&S\u0000\u0002n\u0000\u0000\u0001\u0001&U&V\r&U\u0000\u00024\u0000\u0001\u0001\u0001&W\n\u0000\u0004\nmenI\r&W\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&V\u0000\u0002n\u0000\u0000\u0001\u0001&X&Y\r&X\u0000\u00024\u0000\u0000\u0001\u0001&Z\n\u0000\u0004\nmenE\r&Z\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&Y\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&T\u0000\u0002D\u0000\u0000\u0001\u0001&[&\\\r&[\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\npnam\r&\\\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&P\u0000\u0002&]\r&]\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002&\u0003\u0000\u0002&^\r&^\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002&_&`\r&_\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002&`\u0000\u0002&a&b\r&a\u0000\u0001L\u0000\u0000\u0001\u0001&c\r&c\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovtrue\u0002&b\u0000\u0002&d\r&d\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r%?\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&e&f\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&f\u0000\u0003&g\n\u0000\u0004\nerrn\r&g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r%@\u0000\u0003R\u0000\u0000\u0001\u0002\u0005&h&i\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&h\u0000\u0002b\u0000\u0000\u0001\u0002\u0004&j&k\r&j\u0000\u0002b\u0000\u0000\u0001\u0002\u0002&l&m\r&l\u0000\u0002b\u0000\u0000\u0001\u0001&n&o\r&n\u0000\u0002b\u0000\u0000\u0001\u0001&p&q\r&p\u0000\u0002b\u0000\u0000\u0001\u0001&r&s\r&r\u0000\u0001m\u0000\u0000\u0001\u0001&t\u000e&t\u0000\u0001&u\u0011&u\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000_\r&s\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&q\u0000\u0001m\u0000\u0000\u0001\u0001&v\u000e&v\u0000\u0001&w\u0011&w\u0000\u0006\u0000_\u0000 \u0000'\r&o\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&m\u0000\u0001m\u0000\u0000\u0001\u0002\u0001&x\u000e&x\u0000\u0001&y\u0011&y\u0000\u001a\u0000'\u0000 \u0000i\u0000n\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000-\u0000 \r&k\u0000\u0001o\u0000\u0000\u0002\u0002\u0002\u0003\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&i\u0000\u0003~&z}\n~\u0000\u0004\nerrn\r&z\u0000\u0001o\u0000\u0000\u0001\u0001|\u000b|\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006}\u0000\u0000\u000f%=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002G\u0000\u0000\u0002$\u0000\u0002&{&|\r&{\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002&|\u0000\u0002&}&~\r&}\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000xwv\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002&~\u0000\u0002&&\r&\u0000\u0002i\u0000\u0000\u0000\u0000&&\r&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000u&t\u000bu\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002&\u0000\u0002&&\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002&\u0000\u0002&r\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002r\u0000\u0000\u0002t\u0000\u0000\r&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000,&\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p&&\u0001p\u0000\u0000\f&\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e&\u0000\u0001&\u0011&\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002&\u0000\u0002&l\r&\u0000\u0002w\u0000\u0000\u0000\u0000\u0000,&&\r&\u0000\u0003Q\u0000\u0000\u0000\u0002\u0000,&&&\r&\u0000\u0001k\u0000\u0000\u0000\u0005\u0000\u0018&\u0002&\u0000\u0002&&\r&\u0000\u0003I\u0000\u0000\u0000\u0005\u0000\u0012k&j\u000bk\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u0002&\u0000\u0002&i\r&\u0000\u0001K\u0000\u0000\u0000\u0006\u0000\u000e&\u0006&\u0000\u0003h&&\u000bh\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bg\u000bg\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0006&\u0000\u0003f&&\u000bf\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&\u0000\u0001o\u0000\u0000\u0000\t\u0000\ne\u000be\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0006&\u0000\u0003d&c\u000bd\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f&\u000e&\u0000\u0001&\u0011&\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0006c\u0000\u0000\u0002i\u0000\u0000\u0002j\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0016&\r&\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015b\nb\u0000\u0004\nrslt\u0002&\u0000\u0002&a\r&\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002a\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000]&&\n]\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003[&Z\n[\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006Z\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000 \u0000,X&&\nX\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0002b\u0000\u0000\u0000$\u0000+&&\r&\u0000\u0002b\u0000\u0000\u0000$\u0000)&&\r&\u0000\u0002b\u0000\u0000\u0000$\u0000'&&\r&\u0000\u0001m\u0000\u0000\u0000$\u0000%&\u000e&\u0000\u0001&\u0011&\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r&\u0000\u0001o\u0000\u0000\u0000%\u0000&W\u000bW\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&\u0000\u0001m\u0000\u0000\u0000'\u0000(&\u000e&\u0000\u0001&\u0011&\u0000\u001a\u0000'\u0000 \u0000i\u0000n\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000-\u0000 \r&\u0000\u0001o\u0000\u0000\u0000)\u0000*V\u000bV\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003U&T\nU\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\"\u0000#S\u000bS\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006T\u0000\u0000\u000f&\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002l\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002i\u0000\u0000\u0000\u0000&&\r&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000LKJ\u000bL\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u0002K\u0000\u0000\u0002J\u0000\u0000\r&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000&\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I&&\u0001I\u0000\u0000\f&\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e&\u0000\u0001&\u0011&\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005E&D\nE\u0000\u0018.JonspClpnull\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001&\u000e&\u0000\u0001&\u0011&\u0000\u0000\u0002D\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t&&\r&\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007C\nC\u0000\b\u000bboovfals\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\n\u0000\nA@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002O\u0000\u0000\u0000\n\u0000&&\r&\u0000\u0002O\u0000\u0000\u0000\u000e\u0000&&\r&\u0000\u0001k\u0000\u0000\u0000\u0015\u0000&\u0002&\u0000\u0002&&\r&\u0000\u0002n\u0000\u0001\u0000\u0015\u0000\u001a&&\r&\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001a>=<\u000b>\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002=\u0000\u0000\u0002<\u0000\u0000\r&\u0000\u0000f\u0000\u0000\u0000\u0015\u0000\u0016\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003Q\u0000\u0000\u0000\u001b\u0000L&&&\r&\u0000\u0003I\u0000\u0002\u0000\u001e\u000088&7\n8\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u0000\u0003l\u0000\u0005\u0000\u001e\u00004&65\r&\u0000\u00026\u0001\u0000\u0000\u001e\u00004&&\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000+&&\r&\u0000\u00024\u0000\u0001\u0000(\u0000+4&\n4\u0000\u0004\nmenI\r&\u0000\u0001m\u0000\u0000\u0000)\u0000*3\u00033\u0000\u0001\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000(&&\r&\u0000\u00024\u0000\u0000\u0000%\u0000(2&\n2\u0000\u0004\nmenE\r&\u0000\u0001m\u0000\u0000\u0000&\u0000'1\u00031\u0000\u0001\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000%&&\r&\u0000\u00024\u0000\u0000\u0000\"\u0000%0&\n0\u0000\u0004\nmbri\r&\u0000\u0001m\u0000\u0000\u0000#\u0000$&\u000e&\u0000\u0001&\u0011&\u0000\b\u0000E\u0000d\u0000i\u0000t\r&\u0000\u00024\u0000\u0000\u0000\u001e\u0000\"\/&\n\/\u0000\u0004\nmbar\r&\u0000\u0001m\u0000\u0000\u0000 \u0000!.\u0003.\u0000\u0001\r&\u0000\u0002=\u0000\u0003\u0000,\u00003&&\r&\u0000\u00011\u0000\u0000\u0000-\u0000\/-\n-\u0000\u0004\npnam\r&\u0000\u0001m\u0000\u0000\u00000\u00002&\u000e&\u0000\u0001&\u0011&\u0000\u0014\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u00016\u0000\u0000\u00015\u0000\u0000\u00027\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000,&&\n,\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003*&)\n*\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006)\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000@\u0000L'&&\n'\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0002b\u0000\u0000\u0000F\u0000K&&\r&\u0000\u0001m\u0000\u0000\u0000F\u0000I&\u000e&\u0000\u0001&\u0011&\u0000R\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r&\u0000\u0001o\u0000\u0000\u0000I\u0000J&\u000b&\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003%'\u0000$\n%\u0000\u0004\nerrn\r'\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E#\u000b#\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006$\u0000\u0000\u0002&\u0000\u0002'\u0001'\u0002\r'\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002'\u0002\u0000\u0002'\u0003'\u0004\r'\u0003\u0000\u0003Q\u0000\u0000\u0000M\u0000y'\u0005'\u0006'\u0007\r'\u0005\u0000\u0003I\u0000\u0002\u0000P\u0000e\u001f'\b\u001e\n\u001f\u0000\u0018.prcsclicnull\u0000\u0000uiel\r'\b\u0000\u0003l\u0000\u0005\u0000P\u0000a'\t\u001d\u001c\r'\t\u0000\u0002n\u0000\u0000\u0000P\u0000a'\n'\u000b\r'\n\u0000\u00024\u0000\u0000\u0000\\\u0000a\u001b'\f\n\u001b\u0000\u0004\nmenI\r'\f\u0000\u0001m\u0000\u0000\u0000]\u0000`'\r\u000e'\r\u0000\u0001'\u000e\u0011'\u000e\u0000\b\u0000C\u0000o\u0000p\u0000y\r'\u000b\u0000\u0002n\u0000\u0000\u0000P\u0000\\'\u000f'\u0010\r'\u000f\u0000\u00024\u0000\u0000\u0000Y\u0000\\\u001a'\u0011\n\u001a\u0000\u0004\nmenE\r'\u0011\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0019\u0003\u0019\u0000\u0001\r'\u0010\u0000\u0002n\u0000\u0000\u0000P\u0000Y'\u0012'\u0013\r'\u0012\u0000\u00024\u0000\u0000\u0000T\u0000Y\u0018'\u0014\n\u0018\u0000\u0004\nmbri\r'\u0014\u0000\u0001m\u0000\u0000\u0000U\u0000X'\u0015\u000e'\u0015\u0000\u0001'\u0016\u0011'\u0016\u0000\b\u0000E\u0000d\u0000i\u0000t\r'\u0013\u0000\u00024\u0000\u0000\u0000P\u0000T\u0017'\u0017\n\u0017\u0000\u0004\nmbar\r'\u0017\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0016\u0003\u0016\u0000\u0001\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001e\u0000\u0000\r'\u0006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0015'\u0018'\u0019\n\u0015\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0019\u0000\u0003\u0013'\u001a\u0012\n\u0013\u0000\u0004\nerrn\r'\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0012\u0000\u0000\r'\u0007\u0000\u0003R\u0000\u0000\u0000m\u0000y\u0010'\u001b'\u001c\n\u0010\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u001b\u0000\u0002b\u0000\u0000\u0000s\u0000x'\u001d'\u001e\r'\u001d\u0000\u0001m\u0000\u0000\u0000s\u0000v'\u001f\u000e'\u001f\u0000\u0001' \u0011' \u0000F\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000C\u0000o\u0000p\u0000y\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r'\u001e\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000f\u000b\u000f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u001c\u0000\u0003\u000e'!\r\n\u000e\u0000\u0004\nerrn\r'!\u0000\u0001o\u0000\u0000\u0000q\u0000r\f\u000b\f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\r\u0000\u0000\u0002'\u0004\u0000\u0002'\"'#\r'\"\u0000\u0003l\u0000\u0002\u0000z\u0000z\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002'#\u0000\u0002'$'%\r'$\u0000\u0003l\u0000\u0002\u0000z\u0000z\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002'%\u0000\u0002'&''\r'&\u0000\u0002U\u0000\u0000\u0000z\u0000'(')\r'(\u0000\u0001k\u0000\u0000\u0000\u0000'*\u0002'*\u0000\u0002'+',\r'+\u0000\u0003Q\u0000\u0000\u0000\u0000'-'.'\/\r'-\u0000\u0001k\u0000\u0000\u0000\u0000'0\u0002'0\u0000\u0002'1'2\r'1\u0000\u0003l\u0000\u0001\u0000\u0000\u0005'3'4\u0001\u0005\u0000\u0000\f'3\u0000\u0000 We set the clipboard to an empty string. Once utf8 is no longer in it (or isn't empty), we must have picked up the objects copied above.\u0000\u0002\u0000\u0000\u000e'4\u0000\u0001'5\u0011'5\u0001\u0012\u0000 \u0000W\u0000e\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000i\u0000p\u0000b\u0000o\u0000a\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000.\u0000 \u0000O\u0000n\u0000c\u0000e\u0000 \u0000u\u0000t\u0000f\u00008\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000i\u0000n\u0000 \u0000i\u0000t\u0000 \u0000(\u0000o\u0000r\u0000 \u0000i\u0000s\u0000n\u0000'\u0000t\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000)\u0000,\u0000 \u0000w\u0000e\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000p\u0000i\u0000c\u0000k\u0000e\u0000d\u0000 \u0000u\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000s\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000d\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000.\u0002'2\u0000\u0002'6'7\r'6\u0000\u0001e\u0000\u0000\u0000\u0000'8\r'8\u0000\u0003I\u0000\u0002\u0000\u0000\u0004\u0003'9\n\u0004\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001\u0003\u0000\u0000\u0006'9\u0000\u0003\u0002':\u0001\n\u0002\u0000\u0004\nrtyp\r':\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\u0004\nutf8\u0006\u0001\u0000\u0000\u0002'7\u0000\u0002';\r';\u0000\u0004Z\u0000\u0000\u0000\u0000'<'=\r'<\u0000\u0002?\u0000\u0001\u0000\u0000'>'?\r'>\u0000\u0002n\u0000\u0000\u0000\u0000'@'A\r'@\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nleng\r'A\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\r'?\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r'=\u0000\u0001k\u0000\u0000\u0000\u0000'B\u0002'B\u0000\u0002'C'D\r'C\u0000\u0002r\u0000\u0000\u0000\u0000'E'F\r'E\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r'F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'D\u0000\u0002'G\r'G\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r'.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r'\/\u0000\u0001k\u0000\u0000\u0000\u0000'H\u0002'H\u0000\u0002'I'J\r'I\u0000\u0002r\u0000\u0000\u0000\u0000'K'L\r'K\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r'L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'J\u0000\u0002'M\r'M\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002',\u0000\u0002'N\r'N\u0000\u0003I\u0000\u0002\u0000\u0000'O\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'O\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r')\u0000\u0001m\u0000\u0000\u0000}\u0000\u0003\u0000\n\u0002''\u0000\u0002'P\r'P\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r&\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012'Q\n\u0000\u0004\npcap\r'Q\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011'R\u000e'R\u0000\u0001'S\u0011'S\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r&\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b'T\u000f'T\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002&\u0000\u0002'U'V\r'U\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'V\u0000\u0002'W'X\r'W\u0000\u0001L\u0000\u0000\u0000\u0000'Y\r'Y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'X\u0000\u0002'Z\r'Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u0000\u0002'['\\\r'[\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\\\u0000\u0002']'^\r']\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'^\u0000\u0002'_'`\r'_\u0000\u0002i\u0000\u0000\u0000\u0000'a'b\r'a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000'c\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002'c\u0000\u0002'd'e\r'd\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002'e\u0000\u0002'f\r'f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0002\u0000\u0000\u0002\u0000\u0000\r'b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000@'g\u0002'g\u0000\u0002'h'i\r'h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000'j'k\u0001\u0000\u0000\f'j\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e'k\u0000\u0001'l\u0011'l\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002'i\u0000\u0002'm'n\r'm\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'n\u0000\u0002'o\r'o\u0000\u0002w\u0000\u0000\u0000\u0000\u0000@'p'q\r'p\u0000\u0003Q\u0000\u0000\u0000\u0002\u0000@'r's't\r'r\u0000\u0001k\u0000\u0000\u0000\u0005\u0000,'u\u0002'u\u0000\u0002'v'w\r'v\u0000\u0004Z\u0000\u0000\u0000\u0005\u0000''x'y\r'x\u0000\u0002>\u0001\u0000\u0000\u0005\u0000\b'z'{\r'z\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'{\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nnull\r'y\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000#'|'}'~\r'|\u0000\u0002>\u0000\u0001\u0000\u000b\u0000\u0010''\r'\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e''\r'\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nvalL\r'\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\r'\u0000\u0003l\u0000\u0005\u0000\u000e\u0000\u000f'\r'\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0001\u0000\u0000\u0001\u0000\u0000\r'}\u0000\u0001k\u0000\u0000\u0000\u0013\u0000\u001e'\u0002'\u0000\u0002''\r'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018''\r'\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovtrue\r'\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000''\r'\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\nfocu\r'\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002'\u0000\u0002'\r'\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e''\r'\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000''\r'\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nvalL\r'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002\u0000\u0000\u0002\u0000\u0000\r'~\u0000\u0003l\u0000\u0001\u0000!\u0000#'''\r'\u0000\u0001L\u0000\u0000\u0000!\u0000#'\r'\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\b\u000bboovfals\f'\u0000\u001e\u0000\u0018 did not need to change.\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u00000\u0000 \u0000d\u0000i\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0002'w\u0000\u0002''\r'\u0000\u0001L\u0000\u0000\u0000(\u0000*'\r'\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\b\u000bboovtrue\u0002'\u0000\u0002'\r'\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r's\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000''\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0000\u0003'\n\u0000\u0004\nerrn\r'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r't\u0000\u0003R\u0000\u0000\u00004\u0000@''\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0000\u0002b\u0000\u0000\u00008\u0000?''\r'\u0000\u0002b\u0000\u0000\u00008\u0000=''\r'\u0000\u0002b\u0000\u0000\u00008\u0000;''\r'\u0000\u0001m\u0000\u0000\u00008\u00009'\u000e'\u0000\u0001'\u0011'\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r'\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'\u0000\u0001m\u0000\u0000\u0000;\u0000<'\u000e'\u0000\u0001'\u0011'\u0000&\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r'\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0000\u0003'\n\u0000\u0004\nerrn\r'\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u000f'q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002'`\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0002i\u0000\u0000\u0000\u0000''\r'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000E'\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000''\u0001\u0000\u0000\f'\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002'\r'\u0000\u0002O\u0000\u0000\u0000\u0000\u0000E''\r'\u0000\u0002O\u0000\u0000\u0000\u0004\u0000D''\r'\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000C''\r'\u0000\u0002>\u0001\u0000\u0000\u000b\u0000\u0010''\r'\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npisf\r'\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\n\u0000\b\u000bboovtrue\r'\u0000\u0001k\u0000\u0000\u0000\u0013\u0000?'\u0002'\u0000\u0002''\r'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018''\r'\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovtrue\r'\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0017\n\u0000\u0004\npisf\u0002'\u0000\u0002''\r'\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e'\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u001f\u0000\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f''\u0001\u0000\u0000\f'\u0000)\u0000#close FMEmpower window if it's open\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000F\u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000F\u0000M\u0000E\u0000m\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000o\u0000p\u0000e\u0000n\u0002'\u0000\u0002'\r'\u0000\u0004Z\u0000\u0000\u0000\u001f\u0000?''\r'\u0000\u0002=\u0000\u0001\u0000\u001f\u0000'''\r'\u0000\u0002n\u0000\u0000\u0000\u001f\u0000%''\r'\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\npnam\r'\u0000\u00024\u0000\u0000\u0000\u001f\u0000#'\n\u0000\u0004\ncwin\r'\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r'\u0000\u0001m\u0000\u0000\u0000%\u0000&'\u000e'\u0000\u0001'\u0011'\u0000$\u00002\u0000e\u0000m\u0000p\u0000o\u0000w\u0000e\u0000r\u0000F\u0000M\u0000 \u0000T\u0000o\u0000o\u0000l\u0000b\u0000o\u0000x\r'\u0000\u0001k\u0000\u0000\u0000*\u0000;'\u0002'\u0000\u0002''\r'\u0000\u0003I\u0000\u0002\u0000*\u00005'\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r'\u0000\u0002n\u0000\u0000\u0000*\u00001''\r'\u0000\u00024\u0000\u0000\u0000.\u00001'\n\u0000\u0004\nbutT\r'\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0003\u0000\u0001\r'\u0000\u00024\u0000\u0000\u0000*\u0000.'\n\u0000\u0004\ncwin\r'\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\u0002\u0000\u0000\u0002'\u0000\u0002'\r'\u0000\u0003I\u0000\u0002\u00006\u0000;'\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'\u0000\u0001m\u0000\u0000\u00006\u00007\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b'\n\u0000\u0004\npcap\r'\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007'\u000e'\u0000\u0001'\u0011'\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r'\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001'\u000f'\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0002i\u0000\u0000\u0000\u0000''\r'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000zyx\u000bz\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u0002y\u0000\u0000\u0002x\u0000\u0000\r'\u0000\u0001k\u0000\u0000\u0000\u0000\u00003'\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000w''\u0001w\u0000\u0000\f'\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002'\u0000\u0002's\r'\u0000\u0002O\u0000\u0000\u0000\u0000\u00003''\r'\u0000\u0002O\u0000\u0000\u0000\u0004\u00002''\r'\u0000\u0001k\u0000\u0000\u0000\u000b\u00001'\u0002'\u0000\u0002'(\u0000\r'\u0000\u0002n\u0000\u0001\u0000\u000b\u0000\u0010(\u0001(\u0002\r(\u0001\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0010rqp\u000br\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002q\u0000\u0000\u0002p\u0000\u0000\r(\u0002\u0000\u0000f\u0000\u0000\u0000\u000b\u0000\f\u0002(\u0000\u0000\u0002(\u0003o\r(\u0003\u0000\u0003Q\u0000\u0000\u0000\u0011\u00001(\u0004(\u0005n\r(\u0004\u0000\u0003I\u0000\u0002\u0000\u0014\u0000(m(\u0006l\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(\u0006\u0000\u0002n\u0000\u0000\u0000\u0014\u0000$(\u0007(\b\r(\u0007\u0000\u00024\u0000\u0000\u0000!\u0000$k(\t\nk\u0000\u0004\nbutT\r(\t\u0000\u0001m\u0000\u0000\u0000\"\u0000#j\u0003j\u0000\u0001\r(\b\u0000\u0003l\u0000\u0005\u0000\u0014\u0000!(\nih\r(\n\u0000\u00026\u0001\u0000\u0000\u0014\u0000!(\u000b(\f\r(\u000b\u0000\u00024\u0000\u0001\u0000\u0014\u0000\u0018g(\r\ng\u0000\u0004\ncwin\r(\r\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017f\u0003f\u0000\u0001\r(\f\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 (\u000e(\u000f\r(\u000e\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001ce\ne\u0000\u0004\npnam\r(\u000f\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f(\u0010\u000e(\u0010\u0000\u0001(\u0011\u0011(\u0011\u0000\u0016\u0000D\u0000a\u0000t\u0000a\u0000 \u0000V\u0000i\u0000e\u0000w\u0000e\u0000r\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002l\u0000\u0000\r(\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000dcb\nd\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001c\u0000\u0000\u0002b\u0000\u0000\u0001n\u0000\u0000\u0002o\u0000\u0000\r'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\ba(\u0012\na\u0000\u0004\npcap\r(\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007(\u0013\u000e(\u0013\u0000\u0001(\u0014\u0011(\u0014\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r'\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001(\u0015\u000f(\u0015\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002s\u0000\u0000\u0002'\u0000\u0002(\u0016(\u0017\r(\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002(\u0017\u0000\u0002(\u0018(\u0019\r(\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002(\u0019\u0000\u0002(\u001a(\u001b\r(\u001a\u0000\u0002i\u0000\u0000\u0000\u0000(\u001c(\u001d\r(\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000ZYX\u000bZ\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002Y\u0000\u0000\u0002X\u0000\u0000\r(\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000r(\u001e\u0002(\u001e\u0000\u0002(\u001f( \r(\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W(!(\"\u0001W\u0000\u0000\f(!\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\"\u0000\u0001(#\u0011(#\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002( \u0000\u0002($(%\r($\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002(%\u0000\u0002(&S\r(&\u0000\u0002O\u0000\u0000\u0000\u0000\u0000r('((\r('\u0000\u0002O\u0000\u0000\u0000\u0004\u0000q()(*\r()\u0000\u0001k\u0000\u0000\u0000\u000b\u0000p(+\u0002(+\u0000\u0002(,(-\r(,\u0000\u0002n\u0000\u0001\u0000\u000b\u0000\u0010(.(\/\r(.\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0010RQP\u000bR\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002Q\u0000\u0000\u0002P\u0000\u0000\r(\/\u0000\u0000f\u0000\u0000\u0000\u000b\u0000\f\u0002(-\u0000\u0002(0(1\r(0\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011O(2(3\u0001O\u0000\u0000\f(2\u0000I\u0000C try the click twice in case the first only brings window to front.\u0000\u0002\u0000\u0000\u000e(3\u0000\u0001(4\u0011(4\u0000\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000t\u0000w\u0000i\u0000c\u0000e\u0000 \u0000i\u0000n\u0000 \u0000c\u0000a\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000o\u0000n\u0000l\u0000y\u0000 \u0000b\u0000r\u0000i\u0000n\u0000g\u0000s\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0002(1\u0000\u0002(5(6\r(5\u0000\u0003Q\u0000\u0000\u0000\u0011\u0000.(7(8N\r(7\u0000\u0002r\u0000\u0000\u0000\u0014\u0000%(9(:\r(9\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015M\u0003M\u0000\u0001\r(:\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000(;(<\r(;\u0000\u00011\u0000\u0000\u0000\"\u0000$L\nL\u0000\u0004\npidx\r(<\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\"(=KJ\r(=\u0000\u00026\u0001\u0000\u0000\u0015\u0000\"(>(?\r(>\u0000\u00024\u0000\u0001\u0000\u0015\u0000\u0019I(@\nI\u0000\u0004\ncwin\r(@\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018H\u0003H\u0000\u0001\r(?\u0000\u0002=\u0000\u0003\u0000\u001a\u0000!(A(B\r(A\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001dG\nG\u0000\u0004\npnam\r(B\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 (C\u000e(C\u0000\u0001(D\u0011(D\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001K\u0000\u0000\u0001J\u0000\u0000\r(8\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000FED\nF\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001E\u0000\u0000\u0002D\u0000\u0000\u0001N\u0000\u0000\u0002(6\u0000\u0002(E(F\r(E\u0000\u0003Q\u0000\u0000\u0000\/\u0000O(G(HC\r(G\u0000\u0003I\u0000\u0002\u00002\u0000FB(IA\nB\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(I\u0000\u0002n\u0000\u0000\u00002\u0000B(J(K\r(J\u0000\u00024\u0000\u0000\u0000?\u0000B@(L\n@\u0000\u0004\nbutT\r(L\u0000\u0001m\u0000\u0000\u0000@\u0000A?\u0003?\u0000\u0001\r(K\u0000\u0003l\u0000\u0005\u00002\u0000?(M>=\r(M\u0000\u00026\u0001\u0000\u00002\u0000?(N(O\r(N\u0000\u00024\u0000\u0001\u00002\u00006<(P\n<\u0000\u0004\ncwin\r(P\u0000\u0001m\u0000\u0000\u00004\u00005;\u0003;\u0000\u0001\r(O\u0000\u0002=\u0000\u0003\u00007\u0000>(Q(R\r(Q\u0000\u00011\u0000\u0000\u00008\u0000::\n:\u0000\u0004\npnam\r(R\u0000\u0001m\u0000\u0000\u0000;\u0000=(S\u000e(S\u0000\u0001(T\u0011(T\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002A\u0000\u0000\r(H\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000987\n9\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00018\u0000\u0000\u00027\u0000\u0000\u0001C\u0000\u0000\u0002(F\u0000\u0002(U6\r(U\u0000\u0003Q\u0000\u0000\u0000P\u0000p(V(W5\r(V\u0000\u0003I\u0000\u0002\u0000S\u0000g4(X3\n4\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(X\u0000\u0002n\u0000\u0000\u0000S\u0000c(Y(Z\r(Y\u0000\u00024\u0000\u0000\u0000`\u0000c2([\n2\u0000\u0004\nbutT\r([\u0000\u0001m\u0000\u0000\u0000a\u0000b1\u00031\u0000\u0001\r(Z\u0000\u0003l\u0000\u0005\u0000S\u0000`(\\0\/\r(\\\u0000\u00026\u0001\u0000\u0000S\u0000`(](^\r(]\u0000\u00024\u0000\u0001\u0000S\u0000W.(_\n.\u0000\u0004\ncwin\r(_\u0000\u0001m\u0000\u0000\u0000U\u0000V-\u0003-\u0000\u0001\r(^\u0000\u0002=\u0000\u0003\u0000X\u0000_(`(a\r(`\u0000\u00011\u0000\u0000\u0000Y\u0000[,\n,\u0000\u0004\npnam\r(a\u0000\u0001m\u0000\u0000\u0000\\\u0000^(b\u000e(b\u0000\u0001(c\u0011(c\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u00010\u0000\u0000\u0001\/\u0000\u0000\u00023\u0000\u0000\r(W\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000+*)\n+\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001*\u0000\u0000\u0002)\u0000\u0000\u00015\u0000\u0000\u00026\u0000\u0000\r(*\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b((d\n(\u0000\u0004\npcap\r(d\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007(e\u000e(e\u0000\u0001(f\u0011(f\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r((\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001(g\u000f(g\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002S\u0000\u0000\u0002(\u001b\u0000\u0002(h(i\r(h\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002(i\u0000\u0002(j(k\r(j\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002(k\u0000\u0002(l(m\r(l\u0000\u0002i\u0000\u0000\u0000\u0000(n(o\r(n\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000! \u001f\u000b!\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u0002 \u0000\u0000\u0002\u001f\u0000\u0000\r(o\u0000\u0001k\u0000\u0000\u0000\u0000\u0000h(p\u0002(p\u0000\u0002(q(r\r(q\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001e(s(t\u0001\u001e\u0000\u0000\f(s\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e(t\u0000\u0001(u\u0011(u\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002(r\u0000\u0002(v(w\r(v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002(w\u0000\u0002(x(y\r(x\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000f(z({(|\r(z\u0000\u0001k\u0000\u0000\u0000\u0003\u0000R(}\u0002(}\u0000\u0002(~(\r(~\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b\u001a\u0019\u0018\u000b\u001a\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0002(\u0000\u0002(\u0017\r(\u0000\u0002O\u0000\u0000\u0000\t\u0000R((\r(\u0000\u0002O\u0000\u0000\u0000\r\u0000Q((\r(\u0000\u0001k\u0000\u0000\u0000\u0014\u0000P(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002n\u0000\u0001\u0000\u0014\u0000\u0019((\r(\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u0019\u0013\u0012\u0011\u000b\u0013\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0012\u0000\u0000\u0002\u0011\u0000\u0000\r(\u0000\u0000f\u0000\u0000\u0000\u0014\u0000\u0015\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001a\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0004Z\u0000\u0000\u0000\u001a\u0000M((\r\f\r(\u0000\u0001H\u0000\u0000\u0000\u001a\u0000,(\r(\u0000\u0003l\u0000\u0005\u0000\u001a\u0000+(\u000b\n\r(\u0000\u0003I\u0000\u0002\u0000\u001a\u0000+\t(\b\n\t\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0003l\u0000\u0005\u0000\u001a\u0000'(\u0007\u0006\r(\u0000\u00026\u0001\u0000\u0000\u001a\u0000'((\r(\u0000\u00024\u0000\u0001\u0000\u001a\u0000\u001e\u0005(\n\u0005\u0000\u0004\ncwin\r(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0004\u0003\u0004\u0000\u0001\r(\u0000\u0002E\u0000\u0000\u0000\u001f\u0000&((\r(\u0000\u00011\u0000\u0000\u0000 \u0000\"\u0003\n\u0003\u0000\u0004\npnam\r(\u0000\u0001m\u0000\u0000\u0000#\u0000%(\u000e(\u0000\u0001(\u0011(\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\b\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\r(\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0002(\u0001\n\u0002\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(\u0000\u0003l\u0000\u0005\u0000\/\u0000E(\u0000\r(\u0000\u00026\u0001\u0000\u0000\/\u0000E((\r(\u0000\u0002n\u0000\u0000\u0000\/\u0000<((\r(\u0000\u00024\u0000\u0001\u00009\u0000<(\n\u0000\u0004\nmenI\r(\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0000\u0001\r(\u0000\u0002n\u0000\u0000\u0000\/\u00009((\r(\u0000\u00024\u0000\u0000\u00006\u00009(\n\u0000\u0004\nmenE\r(\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0001\r(\u0000\u0002n\u0000\u0000\u0000\/\u00006((\r(\u0000\u00024\u0000\u0000\u00003\u00006(\n\u0000\u0004\nmbri\r(\u0000\u0001m\u0000\u0000\u00004\u00005(\u000e(\u0000\u0001(\u0011(\u0000\b\u0000V\u0000i\u0000e\u0000w\r(\u0000\u00024\u0000\u0000\u0000\/\u00003(\n\u0000\u0004\nmbar\r(\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r(\u0000\u0002=\u0000\u0003\u0000=\u0000D((\r(\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npnam\r(\u0000\u0001m\u0000\u0000\u0000A\u0000C(\u000e(\u0000\u0001(\u0011(\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0000\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0001L\u0000\u0000\u0000N\u0000P(\r(\u0000\u0001m\u0000\u0000\u0000N\u0000O\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r(\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011(\n\u0000\u0004\npcap\r(\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010(\u000e(\u0000\u0001(\u0011(\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r(\u0000\u0001m\u0000\u0000\u0000\t\u0000\n(\u000f(\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0017\u0000\u0000\r({\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r(|\u0000\u0003R\u0000\u0000\u0000Z\u0000f((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0002b\u0000\u0000\u0000`\u0000e((\r(\u0000\u0001m\u0000\u0000\u0000`\u0000c(\u000e(\u0000\u0001(\u0011(\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0000 \u0000-\u0000 \r(\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(y\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(m\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002i\u0000\u0000\u0000\u0000((\r(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u0002\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000((\u0001\u0000\u0000\f(\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\u0000\u0001(\u0011(\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b(((\r(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b(\u0002(\u0000\u0002((\r(\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t(\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002(\u0000\u0002(\r(\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005(\u000e(\u0000\u0001(\u0011(\u0000\f\u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a((\r(\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018(\u000e(\u0000\u0001(\u0011(\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r(\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002i\u0000\u0000\u0000\u0000((\r(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u0002\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000((\u0001\u0000\u0000\f(\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\u0000\u0001(\u0011(\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b(()\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b)\u0001\u0002)\u0001\u0000\u0002)\u0002)\u0003\r)\u0002\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t)\u0004\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002)\u0004\u0000\u0002)\u0005\r)\u0005\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005)\u0006\u000e)\u0006\u0000\u0001)\u0007\u0011)\u0007\u0000\b\u0000F\u0000i\u0000n\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002)\u0003\u0000\u0002)\b\r)\b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000)\t)\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\n\u0000\u0003)\u000b\n\u0000\u0004\nerrn\r)\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r)\u0000\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b)\f)\r\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\f\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a)\u000e)\u000f\r)\u000e\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018)\u0010\u000e)\u0010\u0000\u0001)\u0011\u0011)\u0011\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r)\u000f\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\r\u0000\u0003)\u0012\n\u0000\u0004\nerrn\r)\u0012\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(\u0000\u0002)\u0013)\u0014\r)\u0013\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0014\u0000\u0002)\u0015\r)\u0015\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002)\u0016)\u0017\r)\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0017\u0000\u0002)\u0018)\u0019\r)\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0019\u0000\u0002)\u001a)\u001b\r)\u001a\u0000\u0002i\u0000\u0000\u0000\u0000)\u001c)\u001d\r)\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002\u0000\u0000\u0002\u0000\u0000\r)\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d)\u001e\u0002)\u001e\u0000\u0002)\u001f) \r)\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000)!)\"\u0001\u0000\u0000\f)!\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e)\"\u0000\u0001)#\u0011)#\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002) \u0000\u0002)$)%\r)$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)%\u0000\u0002)&)'\r)&\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b)()))*\r)(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b)+\u0002)+\u0000\u0002),)-\r),\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t).\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002).\u0000\u0002)\/\r)\/\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005)0\u000e)0\u0000\u0001)1\u0011)1\u0000\f\u0000L\u0000a\u0000y\u0000o\u0000u\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\u0002)-\u0000\u0002)2\r)2\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r))\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000)3)4\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)4\u0000\u0003)5\n\u0000\u0004\nerrn\r)5\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r)*\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b)6)7\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)6\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a)8)9\r)8\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018):\u000e):\u0000\u0001);\u0011);\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r)9\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)7\u0000\u0003)<\n\u0000\u0004\nerrn\r)<\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016~\u000b~\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002)'\u0000\u0002)=}\r)=\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002}\u0000\u0000\u0002)\u001b\u0000\u0002)>)?\r)>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000yxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002)?\u0000\u0002)@)A\r)@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002)A\u0000\u0002)B)C\r)B\u0000\u0002i\u0000\u0000\u0000\u0000)D)E\r)D\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000s)Fr\u000bs\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002)F\u0000\u0002)Gq\r)G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u0002q\u0000\u0000\u0002r\u0000\u0000\r)E\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)H\u0002)H\u0000\u0002)I)J\r)I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000o)K)L\u0001o\u0000\u0000\f)K\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e)L\u0000\u0001)M\u0011)M\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002)J\u0000\u0002)N)O\r)N\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002)O\u0000\u0002)Pk\r)P\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000)Q)R)S\r)Q\u0000\u0002O\u0000\u0000\u0000\u0003\u0000r)T)U\r)T\u0000\u0002O\u0000\u0000\u0000\u0007\u0000q)V)W\r)V\u0000\u0001k\u0000\u0000\u0000\u000e\u0000p)X\u0002)X\u0000\u0002)Y)Z\r)Y\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013)[)\\\r)[\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013jih\u000bj\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002i\u0000\u0000\u0002h\u0000\u0000\r)\\\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002)Z\u0000\u0002)])^\r)]\u0000\u0002n\u0000\u0001\u0000\u0014\u0000\u0019)_)`\r)_\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u0019gfe\u000bg\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002f\u0000\u0000\u0002e\u0000\u0000\r)`\u0000\u0000f\u0000\u0000\u0000\u0014\u0000\u0015\u0002)^\u0000\u0002)a)b\r)a\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001adcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002)b\u0000\u0002)c)d\r)c\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aa)e)f\u0001a\u0000\u0000\f)e\u0000@\u0000: Need to click in upper-left corner of area before pasting\u0000\u0002\u0000\u0000\u000e)f\u0000\u0001)g\u0011)g\u0000t\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000i\u0000n\u0000 \u0000u\u0000p\u0000p\u0000e\u0000r\u0000-\u0000l\u0000e\u0000f\u0000t\u0000 \u0000c\u0000o\u0000r\u0000n\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000e\u0000a\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000i\u0000n\u0000g\u0002)d\u0000\u0002)h)i\r)h\u0000\u0002r\u0000\u0000\u0000\u001a\u0000 )j)k\r)j\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001e`)l\n`\u0000\u0004\ncwin\r)l\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d_\u0003_\u0000\u0001\r)k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\u0002)i\u0000\u0002)m)n\r)m\u0000\u0002r\u0000\u0000\u0000!\u00000)o)p\r)o\u0000\u00026\u0001\u0000\u0000!\u0000.)q)r\r)q\u0000\u0002n\u0000\u0000\u0000!\u0000%)s)t\r)s\u0000\u00024\u0000\u0001\u0000\"\u0000%])u\n]\u0000\u0004\nsgrp\r)u\u0000\u0001m\u0000\u0000\u0000#\u0000$\\\u0003\\\u0000\u0001\r)t\u0000\u0001o\u0000\u0000\u0000!\u0000\"[\u000b[\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\r)r\u0000\u0002D\u0000\u0000\u0000&\u0000-)v)w\r)v\u0000\u00011\u0000\u0000\u0000'\u0000)Z\nZ\u0000\u0004\ndesc\r)w\u0000\u0001m\u0000\u0000\u0000*\u0000,)x\u000e)x\u0000\u0001)y\u0011)y\u0000\"\u0000M\u0000o\u0000d\u0000e\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000A\u0000r\u0000e\u0000a\r)p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\u0002)n\u0000\u0002)z){\r)z\u0000\u0002r\u0000\u0000\u00001\u00006)|)}\r)|\u0000\u0002n\u0000\u0000\u00001\u00004)~)\r)~\u0000\u00011\u0000\u0000\u00002\u00004X\nX\u0000\u0004\ndesc\r)\u0000\u0001o\u0000\u0000\u00001\u00002W\u000bW\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\r)}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\u0002){\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u00007\u0000=))\r)\u0000\u0002n\u0000\u0000\u00007\u0000;))\r)\u0000\u00024\u0000\u0001\u00008\u0000;U)\nU\u0000\u0004\ncwor\r)\u0000\u0001m\u0000\u0000\u00009\u0000:T\u0003T\u0000\u0001\r)\u0000\u0001o\u0000\u0000\u00007\u00008S\u000bS\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000>\u0000>QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0004Z\u0000\u0000\u0000>\u0000k))NM\r)\u0000\u0002>\u0000\u0001\u0000>\u0000A))\r)\u0000\u0001o\u0000\u0000\u0000>\u0000?L\u000bL\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\r)\u0000\u0001o\u0000\u0000\u0000?\u0000@K\u000bK\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001k\u0000\u0000\u0000D\u0000g)\u0002)\u0000\u0002))\r)\u0000\u0003I\u0000\u0002\u0000D\u0000IJ)I\nJ\u0000\u0018.sysodelanull\u0000\u0000nmbr\r)\u0000\u0001m\u0000\u0000\u0000D\u0000E)\b)\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002I\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u0000J\u0000O))\r)\u0000\u0002b\u0000\u0000\u0000J\u0000M))\r)\u0000\u0001o\u0000\u0000\u0000J\u0000KH\u000bH\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001m\u0000\u0000\u0000K\u0000L)\u000e)\u0000\u0001)\u0011)\u0000\n\u0000 \u0000M\u0000o\u0000d\u0000e\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\u0002)\u0000\u0002)F\r)\u0000\u0003I\u0000\u0002\u0000P\u0000gE)D\nE\u0000\u0018.prcsclicnull\u0000\u0000uiel\r)\u0000\u0003l\u0000\u0005\u0000P\u0000c)CB\r)\u0000\u0002n\u0000\u0000\u0000P\u0000c))\r)\u0000\u00024\u0000\u0000\u0000^\u0000cA)\nA\u0000\u0004\nmenI\r)\u0000\u0001o\u0000\u0000\u0000a\u0000b@\u000b@\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\r)\u0000\u0002n\u0000\u0000\u0000P\u0000^))\r)\u0000\u00024\u0000\u0000\u0000Y\u0000^?)\n?\u0000\u0004\nmenE\r)\u0000\u0001m\u0000\u0000\u0000\\\u0000]>\u0003>\u0000\u0001\r)\u0000\u0002n\u0000\u0000\u0000P\u0000Y))\r)\u0000\u00024\u0000\u0000\u0000T\u0000Y=)\n=\u0000\u0004\nmbri\r)\u0000\u0001m\u0000\u0000\u0000U\u0000X)\u000e)\u0000\u0001)\u0011)\u0000\b\u0000V\u0000i\u0000e\u0000w\r)\u0000\u00024\u0000\u0000\u0000P\u0000T<)\n<\u0000\u0004\nmbar\r)\u0000\u0001m\u0000\u0000\u0000R\u0000S;\u0003;\u0000\u0001\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002D\u0000\u0000\u0002F\u0000\u0000\u0002N\u0000\u0000\u0001M\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000l\u0000l:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0001L\u0000\u0000\u0000l\u0000n)\r)\u0000\u0001m\u0000\u0000\u0000l\u0000m7\n7\u0000\b\u000bboovtrue\u0002)\u0000\u0002)6\r)\u0000\u0003l\u0000\u0002\u0000o\u0000o543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00026\u0000\u0000\r)W\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b2)\n2\u0000\u0004\npcap\r)\u0000\u0001m\u0000\u0000\u0000\t\u0000\n)\u000e)\u0000\u0001)\u0011)\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r)U\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004)\u000f)\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r)R\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00001))\n1\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\u0000\u0003\/).\n\/\u0000\u0004\nerrn\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006.\u0000\u0000\r)S\u0000\u0003R\u0000\u0000\u0000z\u0000,))\n,\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0001m\u0000\u0000\u0000\u0000)\u000e)\u0000\u0001)\u0011)\u00002\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000w\u0000i\u0000t\u0000c\u0000h\u0000 \u0000t\u0000o\u0000 \u0000m\u0000o\u0000d\u0000e\u0000 \u0000'\r)\u0000\u0001o\u0000\u0000\u0000\u0000+\u000b+\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001m\u0000\u0000\u0000\u0000)\u000e)\u0000\u0001)\u0011)\u0000\b\u0000'\u0000 \u0000-\u0000 \r)\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\u0000\u0003))(\n)\u0000\u0004\nerrn\r)\u0000\u0001o\u0000\u0000\u0000~\u0000'\u000b'\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006(\u0000\u0000\u0002k\u0000\u0000\u0002)C\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002i\u0000\u0000\u0000\u0000))\r)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 )\u001f\u000b \u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u0002)\u0000\u0002)\u001e\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002\u001e\u0000\u0000\u0002\u001f\u0000\u0000\r)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c))\u0001\u001c\u0000\u0000\f)\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e)\u0000\u0001)\u0011)\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0013))\r)\u0000\u0001k\u0000\u0000\u0000\b\u0000\u0012)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003I\u0000\u0002\u0000\b\u0000\u0010\u0015)\u0014\n\u0015\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r)\u0000\u00024\u0000\u0000\u0000\b\u0000\f\u0013)\n\u0013\u0000\u0004\ncwin\r)\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u0012\u000b\u0012\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002\u0014\u0000\u0000\u0002)\u0000\u0002)\u0011\r)\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0011\u0000\u0000\r)\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005\r)\f\n\r\u0000\u0004\ncapp\r)\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003)\u000e)\u0000\u0001)\u0011)\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\n\f\u0000\b\u000bkfrmID \u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016)\r)\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\b\n\b\u0000\b\u000bboovtrue\u0002)\u0000\u0002)\u0007\r)\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002i\u0000\u0000\u0000\u0000))\r)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002)\u0000\u0002)\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r)\u0000\u0001k\u0000\u0000\u0000\u0000\u0001C)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000))\u0001\u0000\u0000\f)\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e)\u0000\u0001)\u0011)\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e*\u0000*\u0001\r*\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f*\u0002\u0006*\u0002\u0000\u0003*\u0003*\u0004\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r*\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006*\u0004\u0000\u0003*\u0005*\u0006\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0005\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004*\u0007\u000e*\u0007\u0000\u0001*\b\u0011*\b\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0006*\u0006\u0000\u0003*\t*\n\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*\t\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006*\u000b\u000e*\u000b\u0000\u0001*\f\u0011*\f\u0000\u0006\u0000a\u0000n\u0000y\u0006*\n\u0000\u0003*\r*\u000e\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r*\r\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b*\u000f\b*\u000f\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0006*\u000e\u0000\u0003*\u0010\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r*\u0010\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0014\u0006\u0000\u0000\r*\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002)\u0000\u0002*\u0011*\u0012\r*\u0011\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014*\u0013*\u0014\r*\u0013\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012*\u0015*\u0016\r*\u0015\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\u0016\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r*\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002*\u0012\u0000\u0002*\u0017*\u0018\r*\u0017\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*\u0018\u0000\u0002*\u0019*\u001a\r*\u0019\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a*\u001b*\u001c\r*\u001b\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018*\u001d*\u001e\r*\u001d\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r*\u001e\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0002*\u001a\u0000\u0002*\u001f* \r*\u001f\u0000\u0002r\u0000\u0000\u0000\u001b\u0000 *!*\"\r*!\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e*#*$\r*#\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001e\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*$\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u0002* \u0000\u0002*%*&\r*%\u0000\u0002r\u0000\u0000\u0000!\u0000&*'*(\r*'\u0000\u0002n\u0000\u0000\u0000!\u0000$*)**\r*)\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r**\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u0002*&\u0000\u0002*+*,\r*+\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*,\u0000\u0002*-*.\r*-\u0000\u0002r\u0000\u0000\u0000'\u0000**\/*0\r*\/\u0000\u0001m\u0000\u0000\u0000'\u0000(\n\u0000\b\u000bboovfals\r*0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*.\u0000\u0002*1*2\r*1\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*2\u0000\u0002*3*4\r*3\u0000\u0002U\u0000\u0000\u0000+\u0001>*5*6\r*5\u0000\u0001k\u0000\u0000\u00005\u00019*7\u0002*7\u0000\u0002*8*9\r*8\u0000\u0002O\u0000\u0000\u00005\u0000*:*;\r*:\u0000\u0004Z\u0000\u0000\u00009\u0000*<*=*>*?\r*<\u0000\u0002=\u0000\u0003\u00009\u0000<*@*A\r*@\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*A\u0000\u0001m\u0000\u0000\u0000:\u0000;*B\u000e*B\u0000\u0001*C\u0011*C\u0000\u0006\u0000a\u0000n\u0000y\r*=\u0000\u0002r\u0000\u0000\u0000?\u0000K*D*E\r*D\u0000\u0002n\u0000\u0000\u0000?\u0000I*F*G\r*F\u0000\u00011\u0000\u0000\u0000E\u0000I\n\u0000\u0004\npnam\r*G\u0000\u0002n\u0000\u0000\u0000?\u0000E*H*I\r*H\u0000\u00012\u0000\u0000\u0000C\u0000E\n\u0000\u0004\ncwin\r*I\u0000\u00024\u0000\u0000\u0000?\u0000C*J\n\u0000\u0004\npcap\r*J\u0000\u0001m\u0000\u0000\u0000A\u0000B*K\u000e*K\u0000\u0001*L\u0011*L\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002*>\u0000\u0002*M*N\r*M\u0000\u0002=\u0000\u0003\u0000N\u0000S*O*P\r*O\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*P\u0000\u0001m\u0000\u0000\u0000O\u0000R*Q\u000e*Q\u0000\u0001*R\u0011*R\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0002*N\u0000\u0002*S\r*S\u0000\u0002r\u0000\u0000\u0000V\u0000e*T*U\r*T\u0000\u0002n\u0000\u0000\u0000V\u0000c*V*W\r*V\u0000\u00011\u0000\u0000\u0000_\u0000c\n\u0000\u0004\npnam\r*W\u0000\u0002n\u0000\u0000\u0000V\u0000_*X*Y\r*X\u0000\u00024\u0000\u0000\u0000\\\u0000_*Z\n\u0000\u0004\ncwin\r*Z\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u0000\u0001\r*Y\u0000\u00024\u0000\u0000\u0000V\u0000\\*[\n\u0000\u0004\npcap\r*[\u0000\u0001m\u0000\u0000\u0000X\u0000[*\\\u000e*\\\u0000\u0001*]\u0011*]\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002\u0000\u0000\r*?\u0000\u0003l\u0000\u0003\u0000h\u0000*^*_*`\r*^\u0000\u0001k\u0000\u0000\u0000h\u0000*a\u0002*a\u0000\u0002*b*c\r*b\u0000\u0002r\u0000\u0000\u0000h\u0000o*d*e\r*d\u0000\u0002c\u0000\u0000\u0000h\u0000m*f*g\r*f\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*g\u0000\u0001m\u0000\u0000\u0000i\u0000l\n\u0000\u0004\nnmbr\r*e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\u0002*c\u0000\u0002*h\r*h\u0000\u0002r\u0000\u0000\u0000p\u0000*i*j\r*i\u0000\u0002n\u0000\u0000\u0000p\u0000}*k*l\r*k\u0000\u00011\u0000\u0000\u0000y\u0000}\n\u0000\u0004\npnam\r*l\u0000\u0002n\u0000\u0000\u0000p\u0000y*m*n\r*m\u0000\u00024\u0000\u0000\u0000v\u0000y*o\n\u0000\u0004\ncwin\r*o\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\r*n\u0000\u00024\u0000\u0000\u0000p\u0000v*p\n\u0000\u0004\npcap\r*p\u0000\u0001m\u0000\u0000\u0000r\u0000u*q\u000e*q\u0000\u0001*r\u0011*r\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002\u0000\u0000\f*_\u0000+\u0000% whichWindow is window index number:\u0000\u0002\u0000\u0000\u000e*`\u0000\u0001*s\u0011*s\u0000J\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000 \u0000i\u0000s\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\r*;\u0000\u0001m\u0000\u0000\u00005\u00006*t\u000f*t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002*9\u0000\u0002*u*v\r*u\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*v\u0000\u0002*w*x\r*w\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*x\u0000\u0002*y*z\r*y\u0000\u0004Z\u0000\u0000\u0000\u0001%*{*|*}\r*{\u0000\u0002=\u0000\u0003\u0000\u0000*~*\r*~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\r*|\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002E\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*}\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0001H\u0000\u0000\u0000\u0000*\r*\u0000\u0002E\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\f\u0000e\u0000q\u0000u\u0000a\u0000l\u0000s\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002=\u0000\u0001\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0004\u0000i\u0000s\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002=\u0000\u0001\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002C\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0001H\u0000\u0000\u0000\u0000*\r*\u0000\u0002C\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0012\u0000e\u0000n\u0000d\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*|{\r*\u0000\u0002D\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000z\u000bz\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001|\u0000\u0000\u0001{\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*w\r*\u0000\u0003l\u0000\u0002\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002w\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0006**\r*\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0002s\u000bs\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0005*\u000e*\u0000\u0001*\u0011*\u0000\"\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0001\t\u0001\u000f**\r*\u0000\u0003l\u0000\u0005\u0001\t\u0001\r*rq\r*\u0000\u0001H\u0000\u0000\u0001\t\u0001\r*\r*\u0000\u0002D\u0000\u0000\u0001\t\u0001\f*+\u0000\r*\u0000\u0001o\u0000\u0000\u0001\t\u0001\np\u000bp\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r+\u0000\u0000\u0001o\u0000\u0000\u0001\n\u0001\u000bo\u000bo\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001r\u0000\u0000\u0001q\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002+\u0001+\u0002\r+\u0001\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017+\u0003+\u0004\r+\u0003\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013m\u000bm\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r+\u0004\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016+\u0005\u000e+\u0005\u0000\u0001+\u0006\u0011+\u0006\u0000\f\u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0002+\u0002\u0000\u0002+\u0007l\r+\u0007\u0000\u0001k\u0000\u0000\u0001\u001a\u0001!+\b\u0002+\b\u0000\u0002+\t+\n\r+\t\u0000\u0002r\u0000\u0000\u0001\u001a\u0001\u001f+\u000b+\f\r+\u000b\u0000\u0003l\u0000\u0005\u0001\u001a\u0001\u001d+\rkj\r+\r\u0000\u0002>\u0001\u0000\u0001\u001a\u0001\u001d+\u000e+\u000f\r+\u000e\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001bi\u000bi\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r+\u000f\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001ch\u000bh\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001k\u0000\u0000\u0001j\u0000\u0000\r+\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002+\n\u0000\u0002+\u0010f\r+\u0010\u0000\u0003l\u0000\u0002\u0001 \u0001 edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002f\u0000\u0000\u0002l\u0000\u0000\u0001\u0000\u0000\u0002*z\u0000\u0002+\u0011+\u0012\r+\u0011\u0000\u0003l\u0000\u0002\u0001&\u0001&ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002+\u0012\u0000\u0002+\u0013+\u0014\r+\u0013\u0000\u0004Z\u0000\u0001\u0001&\u0001\/+\u0015+\u0016_^\r+\u0015\u0000\u0001o\u0000\u0000\u0001&\u0001']\u000b]\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\r+\u0016\u0000\u0000S\u0000\u0000\u0001*\u0001+\u0002_\u0000\u0000\u0001^\u0000\u0000\u0002+\u0014\u0000\u0002+\u0017+\u0018\r+\u0017\u0000\u0003l\u0000\u0002\u00010\u00010\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002+\u0018\u0000\u0002+\u0019+\u001a\r+\u0019\u0000\u0003I\u0000\u0002\u00010\u00017Y+\u001bX\nY\u0000\u0018.sysodelanull\u0000\u0000nmbr\r+\u001b\u0000\u0002n\u0000\u0000\u00010\u00013+\u001c+\u001d\r+\u001c\u0000\u0001o\u0000\u0000\u00011\u00013W\u000bW\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r+\u001d\u0000\u0001o\u0000\u0000\u00010\u00011V\u000bV\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002X\u0000\u0000\u0002+\u001a\u0000\u0002+\u001e+\u001f\r+\u001e\u0000\u0003l\u0000\u0002\u00018\u00018UTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002+\u001f\u0000\u0002+ R\r+ \u0000\u0003l\u0000\u0002\u00018\u00018QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002R\u0000\u0000\r*6\u0000\u0002n\u0000\u0000\u0000.\u00002+!+\"\r+!\u0000\u0001o\u0000\u0000\u0000\/\u00001N\u000bN\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r+\"\u0000\u0001o\u0000\u0000\u0000.\u0000\/M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002*4\u0000\u0002+#+$\r+#\u0000\u0003l\u0000\u0002\u0001?\u0001?LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002+$\u0000\u0002+%+&\r+%\u0000\u0001L\u0000\u0000\u0001?\u0001A+'\r+'\u0000\u0001o\u0000\u0000\u0001?\u0001@I\u000bI\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002+&\u0000\u0002+(H\r+(\u0000\u0003l\u0000\u0002\u0001B\u0001BGFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u0002)\u0000\u0002+)+*\r+)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000DCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002+*\u0000\u0002+++,\r++\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002+,\u0000\u0002+-+.\r+-\u0000\u0002i\u0000\u0000\u0000\u0000+\/+0\r+\/\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000>+1=\u000b>\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002+1\u0000\u0002+2<\r+2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002<\u0000\u0000\u0002=\u0000\u0000\r+0\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e+3\u0002+3\u0000\u0002+4+5\r+4\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000:+6+7\u0001:\u0000\u0000\f+6\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+7\u0000\u0001+8\u0011+8\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+5\u0000\u0002+9+:\r+9\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002+:\u0000\u0002+;+<\r+;\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e+=+>\r+=\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f+?\u0006+?\u0000\u00036+@+A\u000b6\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r+@\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u00025\n5\u0000\u0004\nnull\u0006+A\u0000\u00034+B+C\u000b4\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r+B\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004+D\u000e+D\u0000\u0001+E\u0011+E\u0000\u0004\u0000i\u0000s\u0006+C\u0000\u00033+F+G\u000b3\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r+F\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006+H\u000e+H\u0000\u0001+I\u0011+I\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006+G\u0000\u00032+J+K\u000b2\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r+J\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b+L\b+L\u0000\b?\u0006+K\u0000\u00031+M0\u000b1\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r+M\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\/\u0003\/\u0000d\u00060\u0000\u0000\r+>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002+<\u0000\u0002+N+O\r+N\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014+P+Q\r+P\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012+R+S\r+R\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010-\u000b-\u0000\t0\u0000\u0005prefs\u0000\u0000\r+S\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011,\u000b,\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r+Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002+O\u0000\u0002+T+U\r+T\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002+U\u0000\u0002+V+W\r+V\u0000\u0001L\u0000\u0000\u0000\u0015\u0000\u001c+X\r+X\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u001b'+Y&\u000b'\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002+Y\u0000\u0002+Z%\r+Z\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017$\u000b$\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0000\u0000\u0002&\u0000\u0000\u0002+W\u0000\u0002+[+\\\r+[\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002+\\\u0000\u0002+] \r+]\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002 \u0000\u0000\u0002+.\u0000\u0002+^+_\r+^\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001c\u001b\u001a\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002+_\u0000\u0002+`+a\r+`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002+a\u0000\u0002+b+c\r+b\u0000\u0002i\u0000\u0000\u0000\u0000+d+e\r+d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0016+f\u0015\u000b\u0016\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u0002+f\u0000\u0002+g+h\r+g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+h\u0000\u0002+i\u0013\r+i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u0002\u0013\u0000\u0000\u0002\u0015\u0000\u0000\r+e\u0000\u0001k\u0000\u0000\u0000\u0000\u00008+j\u0002+j\u0000\u0002+k+l\r+k\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0011+m+n\u0001\u0011\u0000\u0000\f+m\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+n\u0000\u0001+o\u0011+o\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+l\u0000\u0002+p+q\r+p\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002+q\u0000\u0002+r+s\r+r\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\r+t+u\r\f\r+t\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0004+v\r+v\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0003+w+x\r+w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u000b\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\r+x\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\n\u000b\n\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\r+u\u0000\u0001L\u0000\u0000\u0000\u0007\u0000\t+y\r+y\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\t\u0003\t\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002+s\u0000\u0002+z+{\r+z\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002+{\u0000\u0002+|+}\r+|\u0000\u0005Y\u0000\u0000\u0000\u000e\u00006+~\u0005++\u0004\r+~\u0000\u0001k\u0000\u0000\u0000\u001c\u00001+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\"++\r+\u0000\u0002n\u0000\u0000\u0000\u001c\u0000 ++\r+\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0003+\n\u0003\u0000\u0004\ncobj\r+\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u0002\u000b\u0002\u0000\u00050\u0000\u0001i\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u0001\u000b\u0001\u0000\u00140\u0000\bsomelist\u0000\bsomeList\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0004Z\u0000\u0001\u0000#\u0000\/++\r+\u0000\u0002=\u0000\u0003\u0000#\u0000&++\r+\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\r+\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\r+\u0000\u0001L\u0000\u0000\u0000)\u0000++\r+\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0005\u0000\u00050\u0000\u0001i\u0000\u0000\r+\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r+\u0000\u0003I\u0000\u0001\u0000\u0012\u0000\u0017+\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r+\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002\u0000\u0000\u0001\u0004\u0000\u0000\u0002+}\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u00007\u00007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+c\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002i\u0000\u0000\u0000\u0000++\r+\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u000b\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u0002+\u0000\u0002++\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+\u0000\u0002+\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u0002\u0000\u0000\u0002\u0000\u0000\r+\u0000\u0001k\u0000\u0000\u0000\u0000\u00000+\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000++\u0001\u0000\u0000\f+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+\u0000\u0001+\u0011+\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003X\u0000\u0000\u0000\u0000\u0000+++\r+\u0000\u0001k\u0000\u0000\u0000\u0010\u0000&+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015++\r+\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013++\r+\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcnt\r+\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u0002+\u0000\u0002++\r+\u0000\u0004Z\u0000\u0000\u0000\u0016\u0000$++\r+\u0000\u0002=\u0000\u0001\u0000\u0016\u0000\u0019++\r+\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\r+\u0000\u0001k\u0000\u0000\u0000\u001c\u0000 +\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e+\r+\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovtrue\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000\u001f\u0000\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0001L\u0000\u0000\u0000,\u0000.+\r+\u0000\u0001m\u0000\u0000\u0000,\u0000-\n\u0000\b\u000bboovfals\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002i\u0000\u0000\u0000\u0001\u0002++\r+\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u000b\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u0002+\u0000\u0002+\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000:+\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000++\u0001\u0000\u0000\f+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+\u0000\u0001+\u0011+\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005++\r+\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003++\r+\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0003\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\n++\r+\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\b\u0002\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003X\u0000\u0000\u0000\u000b\u00005++\r+\u0000\u0001k\u0000\u0000\u0000\u001b\u00000+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u001b\u0000 ++\r+\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e++\r+\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcnt\r+\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u0002+\u0000\u0002+\r+\u0000\u0004Z\u0000\u0000\u0000!\u00000++\r+\u0000\u0001H\u0000\u0000\u0000!\u0000%+\r+\u0000\u0002E\u0000\u0000\u0000!\u0000$++\r+\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\r+\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0002s\u0000\u0000\u0000(\u0000,++\r+\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000+,\u0000\r+\u0000\u0000;\u0000\u0000\u0000*\u0000+\r,\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\u0002+\u0000\u0002,\u0001,\u0002\r,\u0001\u0000\u0003l\u0000\u0002\u00006\u00006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0002\u0000\u0002,\u0003,\u0004\r,\u0003\u0000\u0001L\u0000\u0000\u00006\u00008,\u0005\r,\u0005\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002,\u0004\u0000\u0002,\u0006\r,\u0006\u0000\u0003l\u0000\u0002\u00009\u00009\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+\u0000\u0002,\u0007,\b\r,\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\b\u0000\u0002,\t,\n\r,\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\n\u0000\u0002,\u000b,\f\r,\u000b\u0000\u0002i\u0000\u0000\u0001\u0003\u0001\u0006,\r,\u000e\r,\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000,\u000f\u000b\u0000\b0\u0000\u0004sort\u0000\u0000\u0002,\u000f\u0000\u0002,\u0010\r,\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u0002\u0000\u0000\u0002\u0000\u0000\r,\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000D,\u0011\u0002,\u0011\u0000\u0002,\u0012,\u0013\r,\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000,\u0014,\u0015\u0001\u0000\u0000\f,\u0014\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e,\u0015\u0000\u0001,\u0016\u0011,\u0016\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002,\u0013\u0000\u0002,\u0017,\u0018\r,\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0018\u0000\u0002,\u0019,\u001a\r,\u0019\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u001b,\u001b,\u001c\r,\u001b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\n,\u001d\u0002,\u001d\u0000\u0002,\u001e,\u001f\r,\u001e\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003, ,!\r, \u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003~\n~\u0000\u0004\ntxdl\r,!\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001}\n}\u0000\u0004\nascr\u0002,\u001f\u0000\u0002,\"|\r,\"\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b{,#z\n{\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r,#\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004y\u0003y\u0000\n\u0002z\u0000\u0000\u0002|\u0000\u0000\r,\u001c\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000,$\u0002,$\u0000\u0002,%,&\r,%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00060\u0000\u0002od\u0000\u0000\u0002,&\u0000\u0002,'w\r,'\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,(,)\r,(\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019v\nv\u0000\u0004\ntxdl\r,)\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017u\nu\u0000\u0004\nascr\u0002w\u0000\u0000\u0002,\u001a\u0000\u0002,*,+\r,*\u0000\u0002r\u0000\u0000\u0000\u001c\u0000!,,,-\r,,\u0000\u0002c\u0000\u0000\u0000\u001c\u0000\u001f,.,\/\r,.\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001dt\u000bt\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\r,\/\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001es\ns\u0000\u0004\nTEXT\r,-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\u0002,+\u0000\u0002,0,1\r,0\u0000\u0002r\u0000\u0000\u0000\"\u0000\/,2,3\r,2\u0000\u0003I\u0000\u0002\u0000\"\u0000-q,4p\nq\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r,4\u0000\u0002b\u0000\u0000\u0000\"\u0000),5,6\r,5\u0000\u0002b\u0000\u0000\u0000\"\u0000',7,8\r,7\u0000\u0001m\u0000\u0000\u0000\"\u0000#,9\u000e,9\u0000\u0001,:\u0011,:\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r,8\u0000\u0002n\u0000\u0000\u0000#\u0000&,;,<\r,;\u0000\u00011\u0000\u0000\u0000$\u0000&o\no\u0000\u0004\nstrq\r,<\u0000\u0001o\u0000\u0000\u0000#\u0000$n\u000bn\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\r,6\u0000\u0001m\u0000\u0000\u0000'\u0000(,=\u000e,=\u0000\u0001,>\u0011,>\u0000\u000e\u0000 \u0000|\u0000 \u0000s\u0000o\u0000r\u0000t\u0002p\u0000\u0000\r,3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\u0002,1\u0000\u0002,?,@\r,?\u0000\u0002r\u0000\u0000\u00000\u00005,A,B\r,A\u0000\u0001o\u0000\u0000\u00000\u00001l\nl\u0000\u0004\nret \r,B\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,C,D\r,C\u0000\u00011\u0000\u0000\u00002\u00004k\nk\u0000\u0004\ntxdl\r,D\u0000\u00011\u0000\u0000\u00001\u00002j\nj\u0000\u0004\nascr\u0002,@\u0000\u0002,E,F\r,E\u0000\u0002r\u0000\u0000\u00006\u0000;,G,H\r,G\u0000\u0002n\u0000\u0000\u00006\u00009,I,J\r,I\u0000\u00012\u0000\u0000\u00007\u00009i\ni\u0000\u0004\ncitm\r,J\u0000\u0001o\u0000\u0000\u00006\u00007h\u000bh\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\r,H\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u0002,F\u0000\u0002,K,L\r,K\u0000\u0002r\u0000\u0000\u0000<\u0000A,M,N\r,M\u0000\u0001o\u0000\u0000\u0000<\u0000=f\u000bf\u0000\u00060\u0000\u0002od\u0000\u0000\r,N\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,O,P\r,O\u0000\u00011\u0000\u0000\u0000>\u0000@e\ne\u0000\u0004\ntxdl\r,P\u0000\u00011\u0000\u0000\u0000=\u0000>d\nd\u0000\u0004\nascr\u0002,L\u0000\u0002,Q,R\r,Q\u0000\u0003l\u0000\u0002\u0000B\u0000Bcba\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0002,R\u0000\u0002,S`\r,S\u0000\u0001L\u0000\u0000\u0000B\u0000D,T\r,T\u0000\u0001o\u0000\u0000\u0000B\u0000C_\u000b_\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u0002`\u0000\u0000\u0002,\f\u0000\u0002,U,V\r,U\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002,V\u0000\u0002,W,X\r,W\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000[ZY\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002,X\u0000\u0002,Y,Z\r,Y\u0000\u0002i\u0000\u0000\u0001\u0007\u0001\n,[,\\\r,[\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000X,]W\u000bX\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002,]\u0000\u0002,^,_\r,^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u0002,_\u0000\u0002,`U\r,`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002U\u0000\u0000\u0002W\u0000\u0000\r,\\\u0000\u0001k\u0000\u0000\u0000\u0000\u0000H,a\u0002,a\u0000\u0002,b,c\r,b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000S,d,e\u0001S\u0000\u0000\f,d\u0000\u0012\u0000\f version 2.0\u0000\u0002\u0000\u0000\u000e,e\u0000\u0001,f\u0011,f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00002\u0000.\u00000\u0002,c\u0000\u0002,g,h\r,g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002,h\u0000\u0002,i,j\r,i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b,k,l\r,k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006O,mN\u000bO\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002,m\u0000\u0002,nM\r,n\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002L\u000bL\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002M\u0000\u0000\u0002N\u0000\u0000\r,l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002,j\u0000\u0002,o,p\r,o\u0000\u0003l\u0000\u0001\u0000\t\u0000\u0019,q,r,s\r,q\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0019,t,u\r,t\u0000\u0003I\u0000\u0000\u0000\t\u0000\u0017J,vI\u000bJ\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002,v\u0000\u0002,wH\r,w\u0000\u0001J\u0000\u0000\u0000\n\u0000\u0013,x\u0002,x\u0000\u0002,y,z\r,y\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000bG\u000bG\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002,z\u0000\u0002,{,|\r,{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010F,}E\nF\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r,}\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\fD\u0003D\u0000\u0000\u0002E\u0000\u0000\u0002,|\u0000\u0002,~C\r,~\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011,\u000e,\u0000\u0001,\u0011,\u0000\u0000\u0002C\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r,u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\f,r\u0000%\u0000\u001f ASCII 0 breaks shell scripting\u0000\u0002\u0000\u0000\u000e,s\u0000\u0001,\u0011,\u0000>\u0000 \u0000A\u0000S\u0000C\u0000I\u0000I\u0000 \u00000\u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000s\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0002,p\u0000\u0002,,\r,\u0000\u0004Z\u0000\u0000\u0000\u001a\u0000),,A@\r,\u0000\u0002=\u0000\u0003\u0000\u001a\u0000\u001f,,\r,\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001d,,\r,\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d?\n?\u0000\u0004\nleng\r,\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b>\u000b>\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\r,\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e=\u0003=\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\"\u0000%,\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0001\u0000\"\u0000\"<,,\u0001<\u0000\u0000\f,\u0000H\u0000B we still want this function to log that an empty string was sent:\u0000\u0002\u0000\u0000\u000e,\u0000\u0001,\u0011,\u0000\u0000 \u0000w\u0000e\u0000 \u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000e\u0000n\u0000t\u0000:\u0002,\u0000\u0002,;\r,\u0000\u0002r\u0000\u0000\u0000\"\u0000%,,\r,\u0000\u0001m\u0000\u0000\u0000\"\u0000#,\u000e,\u0000\u0001,\u0011,\u0000\u001c\u0000[\u0000E\u0000M\u0000P\u0000T\u0000Y\u0000 \u0000S\u0000T\u0000R\u0000I\u0000N\u0000G\u0000]\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002;\u0000\u0000\u0002A\u0000\u0000\u0001@\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000*\u0000=,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000;,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00007,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00005,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00001,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000\/,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000-,,\r,\u0000\u0001m\u0000\u0000\u0000*\u0000+,\u000e,\u0000\u0001,\u0011,\u0000\f\u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\r,\u0000\u00011\u0000\u0000\u0000+\u0000,9\n9\u0000\u0004\nspac\r,\u0000\u0001m\u0000\u0000\u0000-\u0000.,\u000e,\u0000\u0001,\u0011,\u0000\u0004\u0000-\u0000t\r,\u0000\u00011\u0000\u0000\u0000\/\u000008\n8\u0000\u0004\nspac\r,\u0000\u0002n\u0000\u0000\u00001\u00004,,\r,\u0000\u00011\u0000\u0000\u00002\u000047\n7\u0000\u0004\nstrq\r,\u0000\u0001o\u0000\u0000\u00001\u000026\u000b6\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\r,\u0000\u00011\u0000\u0000\u00005\u000065\n5\u0000\u0004\nspac\r,\u0000\u0002n\u0000\u0000\u00007\u0000:,,\r,\u0000\u00011\u0000\u0000\u00008\u0000:4\n4\u0000\u0004\nstrq\r,\u0000\u0001o\u0000\u0000\u00007\u000083\u000b3\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000>\u0000>10\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003I\u0000\u0002\u0000>\u0000C.,-\n.\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r,\u0000\u0001o\u0000\u0000\u0000>\u0000?,\u000b,\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002-\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0001L\u0000\u0000\u0000D\u0000F,\r,\u0000\u0001o\u0000\u0000\u0000D\u0000E+\u000b+\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002,\u0000\u0002,*\r,\u0000\u0003l\u0000\u0002\u0000G\u0000G)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\u0002,Z\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002i\u0000\u0000\u0001\u000b\u0001\u000e,,\r,\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 ,\u001f\u000b \u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002,\u0000\u0002,,\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\t0\u0000\u0005level\u0000\u0000\u0002,\u0000\u0002,\u001d\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\u0000\u00004,\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b,,\u0001\u001b\u0000\u0000\f,\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e,\u0000\u0001,\u0011,\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003,,\r,\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0017\u0003\u0017\u0000\u0005\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r,,\r,\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\u000b,,\r,\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\t\u0015\u000b\u0015\u0000\u00180\u0000\nscriptname\u0000\nScriptName\r,\u0000\u0001m\u0000\u0000\u0000\t\u0000\n,\u000e,\u0000\u0001,\u0011,\u0000\u0002\u0000_\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0015,,\r,\u0000\u0002[\u0000\u0000\u0000\u000e\u0000\u0013,,\r,\u0000\u0002\\\u0000\u0000\u0000\u000e\u0000\u0011,,\r,\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u0013\u000b\u0013\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\r,\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u0012\u000b\u0012\u0000\t0\u0000\u0005level\u0000\u0000\r,\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0011\u0003\u0011\u0000\u0001\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u000f\u000e\r\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0005Y\u0000\u0000\u0000\u0016\u0000*,\f,,\u000b\r,\u0000\u0002r\u0000\u0000\u0000 \u0000%,,\r,\u0000\u0002b\u0000\u0000\u0000 \u0000#,,\r,\u0000\u0001o\u0000\u0000\u0000 \u0000!\n\u000b\n\u0000\u00120\u0000\u0007logname\u0000\u0007logName\r,\u0000\u0001m\u0000\u0000\u0000!\u0000\",\u000e,\u0000\u0001,\u0011,\u0000\u0002\u0000X\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r,\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\b\u0003\b\u0000\u0001\r,\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u0007\u000b\u0007\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u0001\u000b\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003I\u0000\u0000\u0000+\u00002\u0003,\u0002\u000b\u0003\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002,\u0000\u0002,,\r,\u0000\u0001o\u0000\u0000\u0000,\u0000-\u0001\u000b\u0001\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u0002,\u0000\u0002,\u0000\r,\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0002,\u0000\u0002,\r,\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002i\u0000\u0000\u0001\u000f\u0001\u0012,,\r,\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000,\u000b\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u0002,\u0000\u0002,\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0002\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0007,\u0002,\u0000\u0002,-\u0000\r,\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-\u0001-\u0002\u0001\u0000\u0000\f-\u0001\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u0002\u0000\u0001-\u0003\u0011-\u0003\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u0000\u0000\u0002-\u0004-\u0005\r-\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0005\u0000\u0002-\u0006\r-\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0007-\u0007-\b-\t\r-\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0007-\n\u000b\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002-\n\u0000\u0002-\u000b-\f\r-\u000b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000\u0000\u0002-\f\u0000\u0002-\r\r-\r\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0002\u0000\u0000\f-\b\u0000 \u0000\u001a log at highest importance\u0000\u0002\u0000\u0000\u000e-\t\u0000\u0001-\u000e\u0011-\u000e\u00004\u0000 \u0000l\u0000o\u0000g\u0000 \u0000a\u0000t\u0000 \u0000h\u0000i\u0000g\u0000h\u0000e\u0000s\u0000t\u0000 \u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000a\u0000n\u0000c\u0000e\u0002\u0000\u0000\u0002,\u0000\u0002-\u000f-\u0010\r-\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0010\u0000\u0002-\u0011-\u0012\r-\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0012\u0000\u0002-\u0013-\u0014\r-\u0013\u0000\u0002i\u0000\u0000\u0001\u0013\u0001\u0016-\u0015-\u0016\r-\u0015\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000-\u0017\u000b\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u0002-\u0017\u0000\u0002-\u0018\r-\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r-\u0016\u0000\u0001k\u0000\u0000\u0000\u0000\u0000F-\u0019\u0002-\u0019\u0000\u0002-\u001a-\u001b\r-\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-\u001c-\u001d\u0001\u0000\u0000\f-\u001c\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u001d\u0000\u0001-\u001e\u0011-\u001e\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u001b\u0000\u0002-\u001f- \r-\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002- \u0000\u0002-!-\"\r-!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e-#-$\r-#\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f-%\u0006-%\u0000\u0003-&-'\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-&\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002-(\u000e-(\u0000\u0001-)\u0011-)\u0000\u0000\u0006-'\u0000\u0003-*-+\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-*\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004-,\u000e-,\u0000\u0001--\u0011--\u0000\u0000\u0006-+\u0000\u0003-.-\/\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-.\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006-0\u000e-0\u0000\u0001-1\u0011-1\u0000\u0000\u0006-\/\u0000\u0003-2-3\u000b\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\r-2\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b-4\u000e-4\u0000\u0001-5\u0011-5\u0000\u000e\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0006-3\u0000\u0003-6\u000b\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\r-6\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nnull\u0006\u0000\u0000\r-$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002-\"\u0000\u0002-7-8\r-7\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014-9-:\r-9\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012-;-<\r-;\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-<\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r-:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-8\u0000\u0002-=->\r-=\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002->\u0000\u0002-?-@\r-?\u0000\u0004Z\u0000\u0000\u0000\u0015\u0000D-A-B-C\r-A\u0000\u0002>\u0001\u0000\u0000\u0015\u0000\u001a-D-E\r-D\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018-F-G\r-F\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\r-G\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-E\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nnull\r-B\u0000\u0003I\u0000\u0002\u0000\u001d\u0000,-H-I\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r-H\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 -J-K\r-J\u0000\u0001o\u0000\u0000\u0000\u001e\u0000 \u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-K\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-I\u0000\u0003-L-M\n\u0000\u0004\nappr\r-L\u0000\u0002n\u0000\u0000\u0000!\u0000$-N-O\r-N\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-O\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-M\u0000\u0003-P\n\u0000\u0004\nsubt\r-P\u0000\u0002n\u0000\u0000\u0000%\u0000(-Q-R\r-Q\u0000\u0001o\u0000\u0000\u0000&\u0000(\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-R\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r-C\u0000\u0003I\u0000\u0002\u0000\/\u0000D-S-T\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r-S\u0000\u0002n\u0000\u0000\u0000\/\u00002-U-V\r-U\u0000\u0001o\u0000\u0000\u00000\u00002\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-V\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-T\u0000\u0003-W-X\n\u0000\u0004\nappr\r-W\u0000\u0002n\u0000\u0000\u00003\u00006-Y-Z\r-Y\u0000\u0001o\u0000\u0000\u00004\u00006\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-Z\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-X\u0000\u0003-[-\\\n\u0000\u0004\nsubt\r-[\u0000\u0002n\u0000\u0000\u00007\u0000:-]-^\r-]\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-^\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-\\\u0000\u0003-_\n\u0000\u0004\nnsou\r-_\u0000\u0002n\u0000\u0000\u0000;\u0000>-`-a\r-`\u0000\u0001o\u0000\u0000\u0000<\u0000>\u000b\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\r-a\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002-@\u0000\u0002-b-c\r-b\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-c\u0000\u0002-d\r-d\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002-\u0014\u0000\u0002-e-f\r-e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-f\u0000\u0002-g-h\r-g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-h\u0000\u0002-i-j\r-i\u0000\u0002i\u0000\u0000\u0001\u0017\u0001\u001a-k-l\r-k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000-m\u000b\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u0002-m\u0000\u0002-n\r-n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r-l\u0000\u0001k\u0000\u0000\u0000\u0000\u0000-o\u0002-o\u0000\u0002-p-q\r-p\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-r-s\u0001\u0000\u0000\f-r\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-s\u0000\u0001-t\u0011-t\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-q\u0000\u0002-u-v\r-u\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-v\u0000\u0002-w-x\r-w\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0012-y-z\r-y\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0010-{\u0006-{\u0000\u0003-|-}\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-|\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006-}\u0000\u0003-~-\u000b\u0000\u00140\u0000\bfilename\u0000\bfileName\r-~\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006-\u0000\u0003--\u000b\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\r-\u0000\u0002c\u0000\u0000\u0000\u0005\u0000\f--\r-\u0000\u0003l\u0000\u0005\u0000\u0005\u0000\n-\r-\u0000\u0003I\u0000\u0002\u0000\u0005\u0000\n-\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r-\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\b\u000bafdrdesk\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\u0004\nTEXT\u0006-\u0000\u0003-\u000b\u0000\u00180\u0000\noutputtext\u0000\noutputText\r-\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nnull\u0006\u0000\u0000\r-z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002-x\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018--\r-\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u0016--\r-\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u0019\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019--\u0001\u0000\u0000\f-\u0000\u001a\u0000\u0014 determine file path\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000(\u0000 \u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0002-\u0000\u0002--\r-\u0000\u0004Z\u0000\u0000\u0000\u0019\u0000H----\r-\u0000\u0002>\u0001\u0000\u0000\u0019\u0000\u001e--\r-\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001c--\r-\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001c\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\u0004\nnull\r-\u0000\u0002r\u0000\u0000\u0000!\u0000&--\r-\u0000\u0002n\u0000\u0000\u0000!\u0000$--\r-\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002-\u0000\u0002--\r-\u0000\u0002>\u0001\u0000\u0000)\u0000.--\r-\u0000\u0002n\u0000\u0000\u0000)\u0000,--\r-\u0000\u0001o\u0000\u0000\u0000*\u0000,~\u000b~\u0000\u00140\u0000\bfilename\u0000\bfileName\r-\u0000\u0001o\u0000\u0000\u0000)\u0000*}\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000,\u0000-|\n|\u0000\u0004\nnull\u0002-\u0000\u0002-{\r-\u0000\u0002r\u0000\u0000\u00001\u0000:--\r-\u0000\u0002b\u0000\u0000\u00001\u00008--\r-\u0000\u0002n\u0000\u0000\u00001\u00004--\r-\u0000\u0001o\u0000\u0000\u00002\u00004z\u000bz\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\r-\u0000\u0001o\u0000\u0000\u00001\u00002y\u000by\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0002n\u0000\u0000\u00004\u00007--\r-\u0000\u0001o\u0000\u0000\u00005\u00007x\u000bx\u0000\u00140\u0000\bfilename\u0000\bfileName\r-\u0000\u0001o\u0000\u0000\u00004\u00005w\u000bw\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002{\u0000\u0000\r-\u0000\u0002r\u0000\u0000\u0000=\u0000H--\r-\u0000\u0002b\u0000\u0000\u0000=\u0000F--\r-\u0000\u0003l\u0000\u0005\u0000=\u0000D-ut\r-\u0000\u0002c\u0000\u0000\u0000=\u0000D--\r-\u0000\u0003l\u0000\u0005\u0000=\u0000B-sr\r-\u0000\u0003I\u0000\u0002\u0000=\u0000Bq-p\nq\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r-\u0000\u0001m\u0000\u0000\u0000=\u0000>o\no\u0000\b\u000bafdrdesk\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000B\u0000Cn\nn\u0000\u0004\nTEXT\u0001u\u0000\u0000\u0001t\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000D\u0000E-\u000e-\u0000\u0001-\u0011-\u00002\u0000A\u0000S\u0000F\u0000i\u0000l\u0000e\u0000W\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000B\u0000y\u0000_\u0000f\u0000m\u0000G\u0000U\u0000I\u0000.\u0000t\u0000x\u0000t\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000I\u0000Ilkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000I\u0000Iihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000I\u0000If--\u0001f\u0000\u0000\f-\u0000$\u0000\u001e now write output text to file\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000<\u0000 \u0000n\u0000o\u0000w\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000o\u0000u\u0000t\u0000p\u0000u\u0000t\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000i\u0000l\u0000e\u0002-\u0000\u0002-e\r-\u0000\u0003Q\u0000\u0000\u0000I\u0000---\r-\u0000\u0001k\u0000\u0000\u0000L\u0000h-\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000L\u0000X--\r-\u0000\u0003I\u0000\u0002\u0000L\u0000Vd--\nd\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r-\u0000\u00024\u0000\u0000\u0000L\u0000Pc-\nc\u0000\u0004\nfile\r-\u0000\u0001o\u0000\u0000\u0000N\u0000Ob\u000bb\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0006-\u0000\u0003a-`\na\u0000\u0004\nperm\r-\u0000\u0001m\u0000\u0000\u0000Q\u0000R_\n_\u0000\b\u000bboovtrue\u0006`\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0002-\u0000\u0002--\r-\u0000\u0003I\u0000\u0002\u0000Y\u0000b]--\n]\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u0002n\u0000\u0000\u0000Y\u0000\\--\r-\u0000\u0001o\u0000\u0000\u0000Z\u0000\\\\\u000b\\\u0000\u00180\u0000\noutputtext\u0000\noutputText\r-\u0000\u0001o\u0000\u0000\u0000Y\u0000Z[\u000b[\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-\u0000\u0003Z-Y\nZ\u0000\u0004\nrefn\r-\u0000\u0001o\u0000\u0000\u0000]\u0000^X\u000bX\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0006Y\u0000\u0000\u0002-\u0000\u0002-W\r-\u0000\u0003I\u0000\u0002\u0000c\u0000hV-U\nV\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u0001o\u0000\u0000\u0000c\u0000dT\u000bT\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0002U\u0000\u0000\u0002W\u0000\u0000\r-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000SRQ\nS\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001R\u0000\u0000\u0002Q\u0000\u0000\r-\u0000\u0003Q\u0000\u0000\u0000p\u0000--P\r-\u0000\u0003I\u0000\u0002\u0000s\u0000{O-N\nO\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u00024\u0000\u0000\u0000s\u0000wM-\nM\u0000\u0004\nfile\r-\u0000\u0001o\u0000\u0000\u0000u\u0000vL\u000bL\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002N\u0000\u0000\r-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000KJI\nK\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001J\u0000\u0000\u0002I\u0000\u0000\u0001P\u0000\u0000\u0002e\u0000\u0000\u0002-j\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0002i\u0000\u0000\u0001\u001b\u0001\u001e--\r-\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000B-A\u000bB\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0002-\u0000\u0002--\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002-\u0000\u0002-?\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002?\u0000\u0000\u0002A\u0000\u0000\r-\u0000\u0001k\u0000\u0000\u0000\u0000\u00000-\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000=--\u0001=\u0000\u0000\f-\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t--\r-\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u00079--\n9\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00018\u000b8\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0006-\u0000\u00037-6\n7\u0000\u0004\ndire\r-\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u00035\n5\u0000\b\u000bolierndD\u00066\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013--\r-\u0000\u0003I\u0000\u0002\u0000\n\u0000\u00113--\n3\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r-\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b2\u000b2\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0006-\u0000\u00031.\u00000\n1\u0000\u0004\ndire\r.\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\/\n\/\u0000\b\u000bolierndD\u00060\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002-\u0000\u0002.\u0001.\u0002\r.\u0001\u0000\u0003I\u0000\u0002\u0000\u0014\u0000'-.\u0003,\n-\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r.\u0003\u0000\u0002b\u0000\u0000\u0000\u0014\u0000#.\u0004.\u0005\r.\u0004\u0000\u0002b\u0000\u0000\u0000\u0014\u0000!.\u0006.\u0007\r.\u0006\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001f.\b.\t\r.\b\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001d.\n.\u000b\r.\n\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001b.\f.\r\r.\f\u0000\u00011\u0000\u0000\u0000\u0019\u0000\u001b+\n+\u0000\u0004\nstrq\r.\r\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019*\u000b*\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\r.\u000b\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c.\u000e\u000e.\u000e\u0000\u0001.\u000f\u0011.\u000f\u0000\f\u0000 \u0000-\u0000r\u0000 \u0000c\u0000:\r.\t\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e)\u000b)\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\r.\u0007\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 .\u0010\u000e.\u0010\u0000\u0001.\u0011\u0011.\u0011\u0000\u0002\u0000,\r.\u0005\u0000\u0001o\u0000\u0000\u0000!\u0000\"(\u000b(\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002,\u0000\u0000\u0002.\u0002\u0000\u0002.\u0012'\r.\u0012\u0000\u0001L\u0000\u0000\u0000(\u00000.\u0013\r.\u0013\u0000\u0003l\u0000\u0005\u0000(\u0000\/.\u0014&%\r.\u0014\u0000\u0002b\u0000\u0000\u0000(\u0000\/.\u0015.\u0016\r.\u0015\u0000\u0002b\u0000\u0000\u0000(\u0000-.\u0017.\u0018\r.\u0017\u0000\u0003l\u0000\u0005\u0000(\u0000+.\u0019$#\r.\u0019\u0000\u0002c\u0000\u0000\u0000(\u0000+.\u001a.\u001b\r.\u001a\u0000\u0001o\u0000\u0000\u0000(\u0000)\"\u000b\"\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\r.\u001b\u0000\u0001m\u0000\u0000\u0000)\u0000*!\n!\u0000\u0004\nTEXT\u0001$\u0000\u0000\u0001#\u0000\u0000\r.\u0018\u0000\u0001m\u0000\u0000\u0000+\u0000,.\u001c\u000e.\u001c\u0000\u0001.\u001d\u0011.\u001d\u0000\u0002\u0000,\r.\u0016\u0000\u0001o\u0000\u0000\u0000-\u0000. \u000b \u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002'\u0000\u0000\u0002-\u0000\u0002.\u001e.\u001f\r.\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002.\u001f\u0000\u0002. .!\r. \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001c\u001b\u001a\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002.!\u0000\u0002.\".#\r.\"\u0000\u0002i\u0000\u0000\u0001\u001f\u0001\".$.%\r.$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0019.&\u0018\u000b\u0019\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002.&\u0000\u0002.'\u0017\r.'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u0002\u0017\u0000\u0000\u0002\u0018\u0000\u0000\r.%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000M.(\u0002.(\u0000\u0002.).*\r.)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0015.+.,\u0001\u0015\u0000\u0000\f.+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e.,\u0000\u0001.-\u0011.-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002.*\u0000\u0002...\/\r..\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002.\/\u0000\u0002.0.1\r.0\u0000\u0002w\u0000\u0000\u0000\u0000\u0000'.2.3\r.2\u0000\u0001k\u0000\u0000\u0000\u0002\u0000'.4\u0002.4\u0000\u0002.5.6\r.5\u0000\u0002r\u0000\u0000\u0000\u0002\u0000\u0014.7.8\r.7\u0000\u0002n\u0000\u0000\u0000\u0002\u0000\u0005.9.:\r.9\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0005\u0011\n\u0011\u0000\u0004\nposn\r.:\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u0010\u000b\u0010\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\r.8\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000.;\u0002.;\u0000\u0002.<.=\r.<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\u0002.=\u0000\u0002.>\u000e\r.>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\u0002\u000e\u0000\u0000\u0002.6\u0000\u0002.?\f\r.?\u0000\u0002r\u0000\u0000\u0000\u0015\u0000'.@.A\r.@\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018.B.C\r.B\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\u000b\n\u000b\u0000\u0004\nptsz\r.C\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\n\u000b\n\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\r.A\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000.D\u0002.D\u0000\u0002.E.F\r.E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\u0002.F\u0000\u0002.G\b\r.G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\u0002\b\u0000\u0000\u0002\f\u0000\u0000\u000f.3\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMacintosh SSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0400\u0002gH+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001a4]\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0400H\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000~\u0000\u0000\u0000}\u0000\u0002\u0000>Macintosh SSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002.1\u0000\u0002.H.I\r.H\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002.I\u0000\u0002.J.K\r.J\u0000\u0003l\u0000\u0001\u0000(\u00005.L.M.N\r.L\u0000\u0002r\u0000\u0000\u0000(\u00005.O.P\r.O\u0000\u0003I\u0000\u0002\u0000(\u00003\u0003.Q.R\n\u0003\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r.Q\u0000\u0003l\u0000\u0005\u0000(\u0000-.S\u0002\u0001\r.S\u0000\u0002[\u0000\u0000\u0000(\u0000-.T.U\r.T\u0000\u0001o\u0000\u0000\u0000(\u0000)\u0000\u000b\u0000\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\r.U\u0000\u0002^\u0000\u0000\u0000)\u0000,.V.W\r.V\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\r.W\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0006.R\u0000\u0003.X\n\u0000\u0004\ndire\r.X\u0000\u0001m\u0000\u0000\u0000.\u0000\/\n\u0000\b\u000bolierndD\u0006\u0000\u0000\r.P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\f.M\u0000\r\u0000\u0007 middle\u0000\u0002\u0000\u0000\u000e.N\u0000\u0001.Y\u0011.Y\u0000\u000e\u0000 \u0000m\u0000i\u0000d\u0000d\u0000l\u0000e\u0002.K\u0000\u0002.Z.[\r.Z\u0000\u0003l\u0000\u0001\u00006\u0000C.\\.].^\r.\\\u0000\u0002r\u0000\u0000\u00006\u0000C._.`\r._\u0000\u0003I\u0000\u0002\u00006\u0000A.a.b\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r.a\u0000\u0003l\u0000\u0005\u00006\u0000;.c\r.c\u0000\u0002[\u0000\u0000\u00006\u0000;.d.e\r.d\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\r.e\u0000\u0002^\u0000\u0000\u00007\u0000:.f.g\r.f\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\r.g\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0006.b\u0000\u0003.h\n\u0000\u0004\ndire\r.h\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\b\u000bolierndD\u0006\u0000\u0000\r.`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\f.]\u0000\r\u0000\u0007 middle\u0000\u0002\u0000\u0000\u000e.^\u0000\u0001.i\u0011.i\u0000\u000e\u0000 \u0000m\u0000i\u0000d\u0000d\u0000l\u0000e\u0002.[\u0000\u0002.j.k\r.j\u0000\u0003l\u0000\u0002\u0000D\u0000D\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.k\u0000\u0002.l.m\r.l\u0000\u0003I\u0000\u0000\u0000D\u0000K.n\u000b\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0002.n\u0000\u0002.o.p\r.o\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002.p\u0000\u0002.q\r.q\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002\u0000\u0000\u0002\u0000\u0000\u0002.m\u0000\u0002.r\r.r\u0000\u0003l\u0000\u0002\u0000L\u0000L\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002.#\u0000\u0002.s.t\r.s\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.t\u0000\u0002.u.v\r.u\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.v\u0000\u0002.w.x\r.w\u0000\u0002i\u0000\u0000\u0001#\u0001&.y.z\r.y\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000.{\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002.{\u0000\u0002.|\r.|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\u0000\u0000\u0002\u0000\u0000\r.z\u0000\u0001k\u0000\u0000\u0000\u0000\u0001.}\u0002.}\u0000\u0002.~.\r.~\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000..\u0001\u0000\u0000\f.\u0000\u0012\u0000\f version 2.2\u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00002\u0000.\u00002\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001....\r.\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0005..\r.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003..\r.\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nTEXT\r.\u0000\u0001k\u0000\u0000\u0000\b\u0000\u0015.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000\b\u0000\u0012..\r.\u0000\u0003l\u0000\u0005\u0000\b\u0000\u000b.\r.\u0000\u0002c\u0000\u0000\u0000\b\u0000\u000b..\r.\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0015.\r.\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u0000\u0018\u0000\u001d..\r.\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001b..\r.\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001b\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nlong\u0002.\u0000\u0002..\r.\u0000\u0001k\u0000\u0000\u0000 \u0000\/.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000 \u0000*..\r.\u0000\u0003l\u0000\u0005\u0000 \u0000#.\r.\u0000\u0002c\u0000\u0000\u0000 \u0000#..\r.\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000+\u0000\/.\r.\u0000\u0002c\u0000\u0000\u0000+\u0000...\r.\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000,\u0000-\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u00002\u00007..\r.\u0000\u0002n\u0000\u0000\u00002\u00005..\r.\u0000\u0001m\u0000\u0000\u00003\u00005\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u00005\u00006\n\u0000\u0004\ndoub\u0002.\u0000\u0002..\r.\u0000\u0001k\u0000\u0000\u0000:\u0000I.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000:\u0000D..\r.\u0000\u0003l\u0000\u0005\u0000:\u0000=.\r.\u0000\u0002c\u0000\u0000\u0000:\u0000=..\r.\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000;\u0000<\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000E\u0000I.\r.\u0000\u0002c\u0000\u0000\u0000E\u0000H..\r.\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000F\u0000G\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u0000L\u0000Q..\r.\u0000\u0002n\u0000\u0000\u0000L\u0000O..\r.\u0000\u0001m\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nutxt\u0002.\u0000\u0002.\r.\u0000\u0001k\u0000\u0000\u0000T\u0000c.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000T\u0000^..\r.\u0000\u0003l\u0000\u0005\u0000T\u0000W.\r.\u0000\u0002c\u0000\u0000\u0000T\u0000W..\r.\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000U\u0000V\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000_\u0000c.\r.\u0000\u0002c\u0000\u0000\u0000_\u0000b..\r.\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000`\u0000a\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002\u0000\u0000\r.\u0000\u0001k\u0000\u0000\u0000f\u0001.\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0001\u0000f\u0000f..\u0001\u0000\u0000\f.\u0000,\u0000& LIST, RECORD, styled text, or unknown\u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000L\u0000 \u0000L\u0000I\u0000S\u0000T\u0000,\u0000 \u0000R\u0000E\u0000C\u0000O\u0000R\u0000D\u0000,\u0000 \u0000s\u0000t\u0000y\u0000l\u0000e\u0000d\u0000 \u0000t\u0000e\u0000x\u0000t\u0000,\u0000 \u0000o\u0000r\u0000 \u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0002.\u0000\u0002..\r.\u0000\u0003Q\u0000\u0000\u0000f\u0001~...\r.\u0000\u0001k\u0000\u0000\u0000i\u0000.\u0002.\u0000\u0002..\r.\u0000\u0003Q\u0000\u0000\u0000i\u0000...\r.\u0000\u0001k\u0000\u0000\u0000l\u0000s.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000l\u0000q..\r.\u0000\u0001m\u0000\u0000\u0000l\u0000m.\u000e.\u0000\u0001.\u0011.\u0000`\u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000V\u0000a\u0000l\u0000u\u0000e\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\r.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000..\r.\u0000\u0001o\u0000\u0000\u0000n\u0000p\u000b\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\r.\u0000\u0001m\u0000\u0000\u0000m\u0000n.\u000e.\u0000\u0001.\u0011.\u0000\b\u0000X\u0000X\u0000X\u0000X\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0002\u0000r\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0001\u0000r\u0000r..\u0001\u0000\u0000\f.\u0000V\u0000P GENERATE the error message for a known 'object' (here, a string) so we can get \u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000\u0000 \u0000G\u0000E\u0000N\u0000E\u0000R\u0000A\u0000T\u0000E\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000 \u0000k\u0000n\u0000o\u0000w\u0000n\u0000 \u0000'\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000'\u0000 \u0000(\u0000h\u0000e\u0000r\u0000e\u0000,\u0000 \u0000a\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000 \u0000g\u0000e\u0000t\u0000 \u0002.\u0000\u0002.\r.\u0000\u0003l\u0000\u0001\u0000r\u0000r.\/\u0000\u0001\u0000\u0000\f.\u00007\u00001 the 'lead' and 'trail' part of the error message\u0000\u0002\u0000\u0000\u000e\/\u0000\u0000\u0001\/\u0001\u0011\/\u0001\u0000b\u0000 \u0000t\u0000h\u0000e\u0000 \u0000'\u0000l\u0000e\u0000a\u0000d\u0000'\u0000 \u0000a\u0000n\u0000d\u0000 \u0000'\u0000t\u0000r\u0000a\u0000i\u0000l\u0000'\u0000 \u0000p\u0000a\u0000r\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0000\r.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0003\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\/\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\/\u0003\u0000\u0003\/\u0004\n\u0000\u0004\nerrn\r\/\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r.\u0000\u0001k\u0000\u0000\u0000{\u0000\/\u0005\u0002\/\u0005\u0000\u0002\/\u0006\/\u0007\r\/\u0006\u0000\u0002r\u0000\u0000\u0000{\u0000\/\b\/\t\r\/\b\u0000\u0001J\u0000\u0000\u0000{\u0000\/\n\u0002\/\n\u0000\u0002\/\u000b\/\f\r\/\u000b\u0000\u0002n\u0000\u0003\u0000{\u0000~\/\r\/\u000e\r\/\r\u0000\u00011\u0000\u0000\u0000|\u0000~\n\u0000\u0004\ntxdl\r\/\u000e\u0000\u00011\u0000\u0000\u0000{\u0000|\n\u0000\u0004\nascr\u0002\/\f\u0000\u0002\/\u000f\r\/\u000f\u0000\u0001J\u0000\u0000\u0000~\u0000\/\u0010\u0002\/\u0010\u0000\u0002\/\u0011\r\/\u0011\u0000\u0001m\u0000\u0000\u0000~\u0000\/\u0012\u000e\/\u0012\u0000\u0001\/\u0013\u0011\/\u0013\u0000\f\u0000\"\u0000X\u0000X\u0000X\u0000X\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\/\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0014\u0002\/\u0014\u0000\u0002\/\u0015\/\u0016\r\/\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\/\u0016\u0000\u0002\/\u0017\r\/\u0017\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\u0018\/\u0019\r\/\u0018\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\/\u0019\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\/\u0007\u0000\u0002\/\u001a\/\u001b\r\/\u001a\u0000\u0002r\u0000\u0000\u0000\u0000\/\u001c\/\u001d\r\/\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\/\u001e\/\u001f\r\/\u001e\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncitm\r\/\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/ \u0002\/ \u0000\u0002\/!\/\"\r\/!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002\/\"\u0000\u0002\/#\r\/#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002\u0000\u0000\u0002\/\u001b\u0000\u0002\/$\r\/$\u0000\u0002r\u0000\u0000\u0000\u0000\/%\/&\r\/%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\/&\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/'\/(\r\/'\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\/(\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002.\u0000\u0002\/)\/*\r\/)\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\/*\u0000\u0002\/+\/,\r\/+\u0000\u0003l\u0000\u0001\u0000\u0000\/-\/.\u0001\u0000\u0000\f\/-\u0000=\u00007 now, generate error message for the SPECIFIED object: \u0000\u0002\u0000\u0000\u000e\/.\u0000\u0001\/\/\u0011\/\/\u0000n\u0000 \u0000n\u0000o\u0000w\u0000,\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000P\u0000E\u0000C\u0000I\u0000F\u0000I\u0000E\u0000D\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000:\u0000 \u0002\/,\u0000\u0002\/0\/1\r\/0\u0000\u0002r\u0000\u0000\u0000\u0000\/2\/3\r\/2\u0000\u0001m\u0000\u0000\u0000\u0000\/4\u000e\/4\u0000\u0001\/5\u0011\/5\u0000`\u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000V\u0000a\u0000l\u0000u\u0000e\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\r\/3\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\/6\/7\r\/6\u0000\u0001o\u0000\u0000\u0000\u0000~\u000b~\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\r\/7\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\/1\u0000\u0002\/8\/9\r\/8\u0000\u0003l\u0000\u0002\u0000\u0000|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\/9\u0000\u0002\/:y\r\/:\u0000\u0003l\u0000\u0002\u0000\u0000xwv\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002y\u0000\u0000\r.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000u\/;t\nu\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\/;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0002t\u0000\u0000\r.\u0000\u0004Z\u0000\u0000\u0000\u0001~\/<\/=r\/>\r\/<\u0000\u0002F\u0000\u0000\u0000\u0000\/?\/@\r\/?\u0000\u0002C\u0000\u0000\u0000\u0000\/A\/B\r\/A\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/B\u0000\u0001m\u0000\u0000\u0000\u0000\/C\u000e\/C\u0000\u0001\/D\u0011\/D\u0000\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000 \u0000g\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000C\u0000a\u0000n \u0019\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000P\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\u0000 \u0000o\u0000f\u0000 \r\/@\u0000\u0002D\u0000\u0000\u0000\u0000\/E\/F\r\/E\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/F\u0000\u0001m\u0000\u0000\u0000\u0000\/G\u000e\/G\u0000\u0001\/H\u0011\/H\u0000(\u0000i\u0000n\u0000t\u0000o\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000r\u0000.\r\/=\u0000\u0001k\u0000\u0000\u0000\u0001\u0012\/I\u0002\/I\u0000\u0002\/J\/K\r\/J\u0000\u0002r\u0000\u0000\u0000\u0000\/L\/M\r\/L\u0000\u0001m\u0000\u0000\u0000\u0000\/N\u000e\/N\u0000\u0001\/O\u0011\/O\u0000\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000 \u0000g\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000C\u0000a\u0000n \u0019\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000P\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\u0000 \u0000o\u0000f\u0000 \r\/M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002\/K\u0000\u0002\/P\/Q\r\/P\u0000\u0002r\u0000\u0000\u0000\u0000\/R\/S\r\/R\u0000\u0001m\u0000\u0000\u0000\u0000\/T\u000e\/T\u0000\u0001\/U\u0011\/U\u0000*\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000r\u0000.\r\/S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002\/Q\u0000\u0002\/V\/W\r\/V\u0000\u0003l\u0000\u0002\u0000\u0000mlk\u0001m\u0000\u0000\u0001l\u0000\u0000\u0001k\u0000\u0000\u0002\/W\u0000\u0002\/X\/Y\r\/X\u0000\u0002r\u0000\u0000\u0000\u0000\/Z\/[\r\/Z\u0000\u0001J\u0000\u0000\u0000\u0000\/\\\u0002\/\\\u0000\u0002\/]\/^\r\/]\u0000\u0002n\u0000\u0003\u0000\u0000\/_\/`\r\/_\u0000\u00011\u0000\u0000\u0000\u0000j\nj\u0000\u0004\ntxdl\r\/`\u0000\u00011\u0000\u0000\u0000\u0000i\ni\u0000\u0004\nascr\u0002\/^\u0000\u0002\/ah\r\/a\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002h\u0000\u0000\r\/[\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/b\u0002\/b\u0000\u0002\/c\/d\r\/c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/d\u0000\u0002\/ee\r\/e\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/f\/g\r\/f\u0000\u00011\u0000\u0000\u0000\u0000d\nd\u0000\u0004\ntxdl\r\/g\u0000\u00011\u0000\u0000\u0000\u0000c\nc\u0000\u0004\nascr\u0002e\u0000\u0000\u0002\/Y\u0000\u0002\/h\/i\r\/h\u0000\u0003l\u0000\u0002\u0000\u0000ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\/i\u0000\u0002\/j\/k\r\/j\u0000\u0002r\u0000\u0000\u0000\u0000\/l\/m\r\/l\u0000\u0002n\u0000\u0000\u0000\u0000\/n\/o\r\/n\u0000\u00024\u0000\u0000\u0000\u0000_\/p\n_\u0000\u0004\ncitm\r\/p\u0000\u0001m\u0000\u0000\u0000\u0000^\u0003^\u0000\u0002\r\/o\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/k\u0000\u0002\/q\/r\r\/q\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\/s\/t\r\/s\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/t\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/u\/v\r\/u\u0000\u00011\u0000\u0000\u0001\u0000\u0001\u0002Z\nZ\u0000\u0004\ntxdl\r\/v\u0000\u00011\u0000\u0000\u0000\u0001\u0000Y\nY\u0000\u0004\nascr\u0002\/r\u0000\u0002\/w\/x\r\/w\u0000\u0003l\u0000\u0002\u0001\u0004\u0001\u0004XWV\u0001X\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002\/x\u0000\u0002\/y\/z\r\/y\u0000\u0002r\u0000\u0000\u0001\u0004\u0001\n\/{\/|\r\/{\u0000\u0002n\u0000\u0000\u0001\u0004\u0001\b\/}\/~\r\/}\u0000\u00024\u0000\u0000\u0001\u0005\u0001\bU\/\nU\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\u0007T\u0003T\u0000\u0001\r\/~\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005S\u000bS\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/z\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u000b\u0001\u0010\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u000b\u0001\fQ\u000bQ\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001\r\u0001\u000fP\nP\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001\f\u0001\rO\nO\u0000\u0004\nascr\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011KJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002\/\u0000\u0002\/H\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u0002r\u0000\u0000\r\/>\u0000\u0001k\u0000\u0000\u0001\u0015\u0001~\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0001\u0001\u0015\u0001\u0015D\/\/\u0001D\u0000\u0000\f\/\u0000\u001b\u0000\u0015tell me to log errMsg\u0000\u0002\u0000\u0000\u000e\/\u0000\u0001\/\u0011\/\u0000*\u0000t\u0000e\u0000l\u0000l\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000e\u0000r\u0000r\u0000M\u0000s\u0000g\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u0015\u0001\u0018\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016C\u000bC\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0019\u0001\u0019A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0004Z\u0000\u0000\u0001\u0019\u0001G\/\/>=\r\/\u0000\u0002E\u0000\u0000\u0001\u0019\u0001\u001c\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001a<\u000b<\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b;\u000b;\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\r\/\u0000\u0001k\u0000\u0000\u0001\u001f\u0001C\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u001f\u00016\/\/\r\/\u0000\u0001J\u0000\u0000\u0001\u001f\u0001%\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002n\u0000\u0003\u0001\u001f\u0001\"\/\/\r\/\u0000\u00011\u0000\u0000\u0001 \u0001\":\n:\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001\u001f\u0001 9\n9\u0000\u0004\nascr\u0002\/\u0000\u0002\/8\r\/\u0000\u0001o\u0000\u0000\u0001\"\u0001#7\u000b7\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u00028\u0000\u0000\r\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00006\u000b6\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/\u0000\u0002\/5\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u00012\u000144\n4\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u00011\u000123\n3\u0000\u0004\nascr\u00025\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u00017\u0001=\/\/\r\/\u0000\u0002n\u0000\u0000\u00017\u0001;\/\/\r\/\u0000\u00024\u0000\u0000\u00018\u0001;2\/\n2\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u00019\u0001:1\u00031\u0000\u0002\r\/\u0000\u0001o\u0000\u0000\u00017\u000180\u000b0\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/.\r\/\u0000\u0002r\u0000\u0000\u0001>\u0001C\/\/\r\/\u0000\u0001o\u0000\u0000\u0001>\u0001?-\u000b-\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001@\u0001B,\n,\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001?\u0001@+\n+\u0000\u0004\nascr\u0002.\u0000\u0000\u0002>\u0000\u0000\u0001=\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001H\u0001H*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0004Z\u0000\u0000\u0001H\u0001|\/\/'&\r\/\u0000\u0002E\u0000\u0000\u0001H\u0001K\/\/\r\/\u0000\u0001o\u0000\u0000\u0001H\u0001I%\u000b%\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0001I\u0001J$\u000b$\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/\u0000\u0001k\u0000\u0000\u0001N\u0001x\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001N\u0001e\/\/\r\/\u0000\u0001J\u0000\u0000\u0001N\u0001T\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002n\u0000\u0003\u0001N\u0001Q\/\/\r\/\u0000\u00011\u0000\u0000\u0001O\u0001Q#\n#\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001N\u0001O\"\n\"\u0000\u0004\nascr\u0002\/\u0000\u0002\/!\r\/\u0000\u0001o\u0000\u0000\u0001Q\u0001R \u000b \u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002!\u0000\u0000\r\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/\u0000\u0002\/\u001e\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001a\u0001c\u001d\n\u001d\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001`\u0001a\u001c\n\u001c\u0000\u0004\nascr\u0002\u001e\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001f\u0001k\/\/\r\/\u0000\u0001o\u0000\u0000\u0001f\u0001g\u001b\u000b\u001b\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001h\u0001j\u001a\n\u001a\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001g\u0001h\u0019\n\u0019\u0000\u0004\nascr\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001l\u0001r\/\/\r\/\u0000\u0002n\u0000\u0000\u0001l\u0001p\/\/\r\/\u0000\u00024\u0000\u0000\u0001m\u0001p\u0018\/\n\u0018\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u0001n\u0001o\u0017\u0003\u0017\u0000\u0001\r\/\u0000\u0001o\u0000\u0000\u0001l\u0001m\u0016\u000b\u0016\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/\u0014\r\/\u0000\u0002r\u0000\u0000\u0001s\u0001x\/\/\r\/\u0000\u0001o\u0000\u0000\u0001s\u0001t\u0013\u000b\u0013\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001u\u0001w\u0012\n\u0012\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001t\u0001u\u0011\n\u0011\u0000\u0004\nascr\u0002\u0014\u0000\u0000\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001}\u0001}\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\/\u0000\u0002\/\r\r\/\u0000\u0003l\u0000\u0001\u0001}\u0001}\f\/\/\u0001\f\u0000\u0000\f\/\u0000O\u0000Iset {text:objectString} to (objectString as string) -- what does THIS do?\u0000\u0002\u0000\u0000\u000e\/\u0000\u0001\/\u0011\/\u0000\u0000s\u0000e\u0000t\u0000 \u0000{\u0000t\u0000e\u0000x\u0000t\u0000:\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000}\u0000 \u0000t\u0000o\u0000 \u0000(\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\u0000 \u0000-\u0000-\u0000 \u0000w\u0000h\u0000a\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000T\u0000H\u0000I\u0000S\u0000 \u0000d\u0000o\u0000?\u0002\r\u0000\u0000\u0002.\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0001\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002\/\u0000\u0002\/\b\r\/\u0000\u0001L\u0000\u0000\u0001\u0001\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0001\u0007\u000b\u0007\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\b\u0000\u0000\u0002\u0000\u0000\u0002.x\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002i\u0000\u0000\u0001'\u0001*\/\/\r\/\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\u0000\u0000\u001c0\u0000\fgettextafter\u0000\fgetTextAfter\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u0002\/\u0000\u0002\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tafterthis\u0000\tafterThis\u0002\u0000\u0000\u0002\u0000\u0000\r\/\u0000\u0001k\u0000\u0000\u0000\u0000\u0000h\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\/\/\u0001\u0000\u0000\f\/\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\/\u0000\u00010\u0000\u00110\u0000\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\/\u0000\u00020\u00010\u0002\r0\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0002\u0000\u00020\u0003\r0\u0003\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000h0\u00040\u00050\u0006\r0\u0004\u0000\u0001k\u0000\u0000\u0000\u0003\u0000X0\u0007\u00020\u0007\u0000\u00020\b0\t\r0\b\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001c0\n0\u000b\r0\n\u0000\u0001J\u0000\u0000\u0000\u0003\u0000\u000b0\f\u00020\f\u0000\u00020\r0\u000e\r0\r\u0000\u0002n\u0000\u0003\u0000\u0003\u0000\u00060\u000f0\u0010\r0\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\ntxdl\r0\u0010\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nascr\u00020\u000e\u0000\u00020\u0011\r0\u0011\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\t0\u0012\u00020\u0012\u0000\u00020\u0013\r0\u0013\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00160\u0000\tafterthis\u0000\tafterThis\u0002\u0000\u0000\u0002\u0000\u0000\r0\u000b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00000\u0014\u00020\u0014\u0000\u00020\u00150\u0016\r0\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00020\u0016\u0000\u00020\u0017\r0\u0017\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000\u00180\u0019\r0\u0018\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\ntxdl\r0\u0019\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\u0004\nascr\u0002\u0000\u0000\u00020\t\u0000\u00020\u001a0\u001b\r0\u001a\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u001b\u0000\u00020\u001c0\u001d\r0\u001c\u0000\u0004Z\u0000\u0000\u0000\u001d\u0000A0\u001e0\u001f0 \r0\u001e\u0000\u0002=\u0000\u0003\u0000\u001d\u0000&0!0\"\r0!\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$0#\r0#\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$0$\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r0$\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 0%0&\r0%\u0000\u00012\u0000\u0001\u0000\u001e\u0000 \n\u0000\u0004\ncitm\r0&\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r0\"\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r0\u001f\u0000\u0001k\u0000\u0000\u0000)\u000010'\u00020'\u0000\u00020(0)\r0(\u0000\u0003l\u0000\u0001\u0000)\u0000)0*0+\u0001\u0000\u0000\f0*\u0000,\u0000& the split-string didn't appear at all\u0000\u0002\u0000\u0000\u000e0+\u0000\u00010,\u00110,\u0000L\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000p\u0000l\u0000i\u0000t\u0000-\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000d\u0000n\u0000'\u0000t\u0000 \u0000a\u0000p\u0000p\u0000e\u0000a\u0000r\u0000 \u0000a\u0000t\u0000 \u0000a\u0000l\u0000l\u00020)\u0000\u00020-0.\r0-\u0000\u0002r\u0000\u0000\u0000)\u0000.0\/00\r0\/\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r00\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000102\r01\u0000\u00011\u0000\u0000\u0000+\u0000-\n\u0000\u0004\ntxdl\r02\u0000\u00011\u0000\u0000\u0000*\u0000+\n\u0000\u0004\nascr\u00020.\u0000\u000203\r03\u0000\u0001L\u0000\u0000\u0000\/\u0000104\r04\u0000\u0001m\u0000\u0000\u0000\/\u0000005\u000e05\u0000\u000106\u001106\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r0 \u0000\u0002r\u0000\u0000\u00004\u0000A0708\r07\u0000\u0002n\u0000\u0000\u00004\u0000?090:\r09\u0000\u00037\u0001\u0000\u00005\u0000?0;0<\n\u0000\u0004\ncitm\r0;\u0000\u0001m\u0000\u0000\u00009\u0000;\u0003\u0000\u0002\r0<\u0000\u0001m\u0000\u0000\u0000<\u0000>\u0003\r0:\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r08\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00000=\r0=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fresultaslist\u0000\fresultAsList\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u001d\u0000\u00020>0?\r0>\u0000\u0002r\u0000\u0000\u0000B\u0000I0@0A\r0@\u0000\u0001J\u0000\u0000\u0000B\u0000E0B\u00020B\u0000\u00020C\r0C\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\tafterthis\u0000\tafterThis\u0002\u0000\u0000\r0A\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000D0E\r0D\u0000\u00011\u0000\u0000\u0000F\u0000H\n\u0000\u0004\ntxdl\r0E\u0000\u00011\u0000\u0000\u0000E\u0000F\n\u0000\u0004\nascr\u00020?\u0000\u00020F0G\r0F\u0000\u0002r\u0000\u0000\u0000J\u0000O0H0I\r0H\u0000\u0002c\u0000\u0000\u0000J\u0000M0J0K\r0J\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u001c0\u0000\fresultaslist\u0000\fresultAsList\r0K\u0000\u0001m\u0000\u0000\u0000K\u0000L\n\u0000\u0004\nTEXT\r0I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u00020G\u0000\u00020L0M\r0L\u0000\u0002r\u0000\u0000\u0000P\u0000U0N0O\r0N\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0O\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000P0Q\r0P\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\ntxdl\r0Q\u0000\u00011\u0000\u0000\u0000Q\u0000R\n\u0000\u0004\nascr\u00020M\u0000\u00020R\r0R\u0000\u0001L\u0000\u0000\u0000V\u0000X0S\r0S\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0002\u0000\u0000\r0\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000T0U\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r0T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00060U\u0000\u00030V\n\u0000\u0004\nerrn\r0V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r0\u0006\u0000\u0001k\u0000\u0000\u0000`\u0000h0W\u00020W\u0000\u00020X0Y\r0X\u0000\u0002r\u0000\u0000\u0000`\u0000e0Z0[\r0Z\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0[\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000\\0]\r0\\\u0000\u00011\u0000\u0000\u0000b\u0000d\n\u0000\u0004\ntxdl\r0]\u0000\u00011\u0000\u0000\u0000a\u0000b\n\u0000\u0004\nascr\u00020Y\u0000\u00020^\r0^\u0000\u0003l\u0000\u0001\u0000f\u0000h0_0`0a\r0_\u0000\u0001L\u0000\u0000\u0000f\u0000h0b\r0b\u0000\u0001m\u0000\u0000\u0000f\u0000g0c\u000e0c\u0000\u00010d\u00110d\u0000\u0000\f0`\u00003\u0000- return nothing if the stop text is not found\u0000\u0002\u0000\u0000\u000e0a\u0000\u00010e\u00110e\u0000Z\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002\/\u0000\u00020f0g\r0f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020g\u0000\u00020h0i\r0h\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020i\u0000\u00020j0k\r0j\u0000\u0002i\u0000\u0000\u0001+\u0001.0l0m\r0l\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00000n\u000b\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u00020n\u0000\u00020o0p\r0o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00020p\u0000\u00020q\r0q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u0000\u0000\u0002\u0000\u0000\r0m\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q0r\u00020r\u0000\u00020s0t\r0s\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00000u0v\u0001\u0000\u0000\f0u\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e0v\u0000\u00010w\u00110w\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u00020t\u0000\u00020x0y\r0x\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020y\u0000\u00020z\r0z\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000Q0{0|0}\r0{\u0000\u0001k\u0000\u0000\u0000\u0003\u0000A0~\u00020~\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a00\r0\u0000\u0001J\u0000\u0000\u0000\u0003\u0000\t0\u00020\u0000\u000200\r0\u0000\u0002n\u0000\u0003\u0000\u0003\u0000\u000600\r0\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nascr\u00020\u0000\u00020\r0\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u0000\u0000\r0\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00000\u00020\u0000\u000200\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00020\u0000\u00020\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nascr\u0002\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0004Z\u0000\u0000\u0000\u001b\u00008000\r0\u0000\u0002=\u0000\u0003\u0000\u001b\u0000$00\r0\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\"0\r0\u0000\u0003I\u0000\u0001\u0000\u001b\u0000\"0\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r0\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e00\r0\u0000\u00012\u0000\u0001\u0000\u001c\u0000\u001e\n\u0000\u0004\ncitm\r0\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r0\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\r0\u0000\u0001k\u0000\u0000\u0000'\u0000\/0\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000'\u0000,00\r0\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000(\u0000)\n\u0000\u0004\nascr\u00020\u0000\u00020\r0\u0000\u0001L\u0000\u0000\u0000-\u0000\/0\r0\u0000\u0001m\u0000\u0000\u0000-\u0000.0\u000e0\u0000\u00010\u00110\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r0\u0000\u0002r\u0000\u0000\u00002\u0000800\r0\u0000\u0002n\u0000\u0000\u00002\u0000600\r0\u0000\u00024\u0000\u0000\u00003\u000060\n\u0000\u0004\ncitm\r0\u0000\u0001m\u0000\u0000\u00004\u00005\u0003\u0000\u0001\r0\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r0\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u00009\u0000>00\r0\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nascr\u00020\u0000\u00020\r0\u0000\u0001L\u0000\u0000\u0000?\u0000A0\r0\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0002\u0000\u0000\r0|\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u000000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00060\u0000\u00030\n\u0000\u0004\nerrn\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r0}\u0000\u0001k\u0000\u0000\u0000I\u0000Q0\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000I\u0000N00\r0\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000K\u0000M\n\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nascr\u00020\u0000\u00020\r0\u0000\u0003l\u0000\u0001\u0000O\u0000Q000\r0\u0000\u0001L\u0000\u0000\u0000O\u0000Q0\r0\u0000\u0001m\u0000\u0000\u0000O\u0000P0\u000e0\u0000\u00010\u00110\u0000\u0000\f0\u00003\u0000- return nothing if the stop text is not found\u0000\u0002\u0000\u0000\u000e0\u0000\u00010\u00110\u0000Z\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u00020k\u0000\u000200\r0\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0002i\u0000\u0000\u0001\/\u0001200\r0\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00000\u000b\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u00020\u0000\u00020\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r0\u0000\u0001k\u0000\u0000\u0000\u0000\u00000\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u000000\u0001\u0000\u0000\f0\u0000\u0012\u0000\f version 1.6\u0000\u0002\u0000\u0000\u000e0\u0000\u00010\u00110\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00006\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b00\r0\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00060\u00060\u0000\u0003{00\u000b{\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r0\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002z\u0003z\u0000\u0002\u00060\u0000\u0003y0x\u000by\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r0\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004w\nw\u0000\b\u000bboovfals\u0006x\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0002\u0000\t\u0000\tuts\u0001u\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0004Z\u0000\u0000\u0000\t\u0000'00rq\r0\u0000\u0002F\u0000\u0000\u0000\t\u0000\u001a00\r0\u0000\u0003l\u0000\u0005\u0000\t\u0000\u000e0po\r0\u0000\u0002>\u0001\u0000\u0000\t\u0000\u000e00\r0\u0000\u0002n\u0000\u0000\u0000\t\u0000\f00\r0\u0000\u0001m\u0000\u0000\u0000\n\u0000\fn\nn\u0000\u0004\npcls\r0\u0000\u0001o\u0000\u0000\u0000\t\u0000\nm\u000bm\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001m\u0000\u0000\u0000\f\u0000\rl\nl\u0000\u0004\nlist\u0001p\u0000\u0000\u0001o\u0000\u0000\r0\u0000\u0003l\u0000\u0005\u0000\u0011\u0000\u00180kj\r0\u0000\u0002>\u0001\u0000\u0000\u0011\u0000\u001800\r0\u0000\u0002c\u0000\u0000\u0000\u0011\u0000\u001600\r0\u0000\u0003l\u0000\u0005\u0000\u0011\u0000\u00140ih\r0\u0000\u0002n\u0000\u0000\u0000\u0011\u0000\u001400\r0\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0014g\ng\u0000\u0004\npcls\r0\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012f\u000bf\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\r0\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015e\ne\u0000\u0004\nTEXT\r0\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u00170\u000e0\u0000\u00010\u00110\u0000\f\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0001k\u0000\u0000\u0001j\u0000\u0000\r0\u0000\u0003R\u0000\u0000\u0000\u001d\u0000#d00\nd\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r0\u0000\u0001m\u0000\u0000\u0000!\u0000\"0\u000e0\u0000\u00010\u00110\u0001\u0014\u0000g\u0000e\u0000t\u0000T\u0000e\u0000x\u0000t\u0000B\u0000e\u0000t\u0000w\u0000e\u0000e\u0000n\u0000 \u0000F\u0000A\u0000I\u0000L\u0000E\u0000D\u0000:\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000m\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000,\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u00060\u0000\u0003c0b\nc\u0000\u0004\nerrn\r0\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 a\u0003a\u0004\u0000\u0006b\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0004Z\u0000\u0000\u0000(\u0000`00`_\r0\u0000\u0002=\u0000\u0003\u0000(\u0000-01\u0000\r0\u0000\u0002n\u0000\u0000\u0000(\u0000+1\u00011\u0002\r1\u0001\u0000\u0001m\u0000\u0000\u0000)\u0000+^\n^\u0000\u0004\npcls\r1\u0002\u0000\u0001o\u0000\u0000\u0000(\u0000)]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0000\u0001m\u0000\u0000\u0000+\u0000,\\\n\\\u0000\u0004\nlist\r0\u0000\u0001k\u0000\u0000\u00000\u0000\\1\u0003\u00021\u0003\u0000\u00021\u00041\u0005\r1\u0004\u0000\u0004Z\u0000\u0000\u00000\u0000F1\u00061\u0007[Z\r1\u0006\u0000\u0002=\u0000\u0003\u00000\u000071\b1\t\r1\b\u0000\u0003l\u0000\u0005\u00000\u000051\nYX\r1\n\u0000\u0003I\u0000\u0001\u00000\u00005W1\u000bV\nW\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r1\u000b\u0000\u0001o\u0000\u0000\u00000\u00001U\u000bU\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002V\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\r1\t\u0000\u0001m\u0000\u0000\u00005\u00006T\u0003T\u0000\u0004\r1\u0007\u0000\u0002r\u0000\u0000\u0000:\u0000B1\f1\r\r1\f\u0000\u0002n\u0000\u0000\u0000:\u0000>1\u000e1\u000f\r1\u000e\u0000\u00024\u0000\u0000\u0000;\u0000>S1\u0010\nS\u0000\u0004\ncobj\r1\u0010\u0000\u0001m\u0000\u0000\u0000<\u0000=R\u0003R\u0000\u0004\r1\u000f\u0000\u0001o\u0000\u0000\u0000:\u0000;Q\u000bQ\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u00001\u00111\u0012\r1\u0011\u0000\u0001o\u0000\u0000\u0000?\u0000AP\u000bP\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r1\u0012\u0000\u0001o\u0000\u0000\u0000>\u0000?O\u000bO\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002[\u0000\u0000\u0001Z\u0000\u0000\u00021\u0005\u0000\u00021\u0013N\r1\u0013\u0000\u0002r\u0000\u0000\u0000G\u0000\\1\u00141\u0015\r1\u0014\u0000\u0001K\u0000\u0000\u0000G\u0000Z1\u0016\u00061\u0016\u0000\u0003M1\u00171\u0018\u000bM\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0017\u0000\u0002n\u0000\u0000\u0000H\u0000L1\u00191\u001a\r1\u0019\u0000\u00024\u0000\u0000\u0000I\u0000LL1\u001b\nL\u0000\u0004\ncobj\r1\u001b\u0000\u0001m\u0000\u0000\u0000J\u0000KK\u0003K\u0000\u0001\r1\u001a\u0000\u0001o\u0000\u0000\u0000H\u0000IJ\u000bJ\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u0018\u0000\u0003I1\u001c1\u001d\u000bI\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r1\u001c\u0000\u0002n\u0000\u0000\u0000M\u0000Q1\u001e1\u001f\r1\u001e\u0000\u00024\u0000\u0000\u0000N\u0000QH1 \nH\u0000\u0004\ncobj\r1 \u0000\u0001m\u0000\u0000\u0000O\u0000PG\u0003G\u0000\u0002\r1\u001f\u0000\u0001o\u0000\u0000\u0000M\u0000NF\u000bF\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u001d\u0000\u0003E1!D\u000bE\u0000\u00160\u0000\taftertext\u0000\tafterText\r1!\u0000\u0002n\u0000\u0000\u0000R\u0000V1\"1#\r1\"\u0000\u00024\u0000\u0000\u0000S\u0000VC1$\nC\u0000\u0004\ncobj\r1$\u0000\u0001m\u0000\u0000\u0000T\u0000UB\u0003B\u0000\u0003\r1#\u0000\u0001o\u0000\u0000\u0000R\u0000SA\u000bA\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006D\u0000\u0000\r1\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002N\u0000\u0000\u0002`\u0000\u0000\u0001_\u0000\u0000\u00020\u0000\u00021%1&\r1%\u0000\u0003l\u0000\u0001\u0000a\u0000f1'1(1)\r1'\u0000\u0002r\u0000\u0000\u0000a\u0000f1*1+\r1*\u0000\u0002b\u0000\u0000\u0000a\u0000d1,1-\r1,\u0000\u0001o\u0000\u0000\u0000a\u0000b?\u000b?\u0000\t0\u0000\u0005prefs\u0000\u0000\r1-\u0000\u0001o\u0000\u0000\u0000b\u0000c>\u000b>\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r1+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\t0\u0000\u0005prefs\u0000\u0000\f1(\u0000,\u0000& add on default preferences, if needed\u0000\u0002\u0000\u0000\u000e1)\u0000\u00011.\u00111.\u0000L\u0000 \u0000a\u0000d\u0000d\u0000 \u0000o\u0000n\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000,\u0000 \u0000i\u0000f\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u00021&\u0000\u00021\/10\r1\/\u0000\u0002r\u0000\u0000\u0000g\u0000l1112\r11\u0000\u0002n\u0000\u0000\u0000g\u0000j1314\r13\u0000\u0001o\u0000\u0000\u0000h\u0000j<\u000b<\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r14\u0000\u0001o\u0000\u0000\u0000g\u0000h;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\r12\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000210\u0000\u00021516\r15\u0000\u0002r\u0000\u0000\u0000m\u0000r1718\r17\u0000\u0002n\u0000\u0000\u0000m\u0000p191:\r19\u0000\u0001o\u0000\u0000\u0000n\u0000p9\u000b9\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r1:\u0000\u0001o\u0000\u0000\u0000m\u0000n8\u000b8\u0000\t0\u0000\u0005prefs\u0000\u0000\r18\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u000216\u0000\u00021;1<\r1;\u0000\u0002r\u0000\u0000\u0000s\u0000x1=1>\r1=\u0000\u0002n\u0000\u0000\u0000s\u0000v1?1@\r1?\u0000\u0001o\u0000\u0000\u0000t\u0000v6\u000b6\u0000\u00160\u0000\taftertext\u0000\tafterText\r1@\u0000\u0001o\u0000\u0000\u0000s\u0000t5\u000b5\u0000\t0\u0000\u0005prefs\u0000\u0000\r1>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00160\u0000\taftertext\u0000\tafterText\u00021<\u0000\u00021A1B\r1A\u0000\u0002r\u0000\u0000\u0000y\u0000~1C1D\r1C\u0000\u0002n\u0000\u0000\u0000y\u0000|1E1F\r1E\u0000\u0001o\u0000\u0000\u0000z\u0000|3\u000b3\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r1F\u0000\u0001o\u0000\u0000\u0000y\u0000z2\u000b2\u0000\t0\u0000\u0005prefs\u0000\u0000\r1D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u00021B\u0000\u00021G1H\r1G\u0000\u0002r\u0000\u0000\u0000\u00001I1J\r1I\u0000\u0002n\u0000\u0000\u0000\u00001K1L\r1K\u0000\u0001o\u0000\u0000\u0000\u00000\u000b0\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r1L\u0000\u0001o\u0000\u0000\u0000\u0000\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\r1J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u00021H\u0000\u00021M1N\r1M\u0000\u0003l\u0000\u0002\u0000\u0000-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u00021N\u0000\u00021O1P\r1O\u0000\u0003Q\u0000\u0000\u0000\u00001Q1R1S\r1Q\u0000\u0001k\u0000\u0000\u0000\u00001T\u00021T\u0000\u00021U1V\r1U\u0000\u0002r\u0000\u0000\u0000\u00001W1X\r1W\u0000\u0001J\u0000\u0000\u0000\u00001Y\u00021Y\u0000\u00021Z1[\r1Z\u0000\u0002n\u0000\u0003\u0000\u00001\\1]\r1\\\u0000\u00011\u0000\u0000\u0000\u0000*\n*\u0000\u0004\ntxdl\r1]\u0000\u00011\u0000\u0000\u0000\u0000)\n)\u0000\u0004\nascr\u00021[\u0000\u00021^(\r1^\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u0002(\u0000\u0000\r1X\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00001_\u00021_\u0000\u00021`1a\r1`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00021a\u0000\u00021b%\r1b\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00001c1d\r1c\u0000\u00011\u0000\u0000\u0000\u0000$\n$\u0000\u0004\ntxdl\r1d\u0000\u00011\u0000\u0000\u0000\u0000#\n#\u0000\u0004\nascr\u0002%\u0000\u0000\u00021V\u0000\u00021e1f\r1e\u0000\u0002r\u0000\u0000\u0000\u00001g1h\r1g\u0000\u0002n\u0000\u0000\u0000\u00001i1j\r1i\u0000\u00024\u0000\u0000\u0000\u0000\"1k\n\"\u0000\u0004\ncitm\r1k\u0000\u0001o\u0000\u0000\u0000\u0000!\u000b!\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r1j\u0000\u0001o\u0000\u0000\u0000\u0000 \u000b \u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1h\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001l\u001f\u001e\r1l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u00021f\u0000\u00021m1n\r1m\u0000\u0002r\u0000\u0000\u0000\u00001o1p\r1o\u0000\u0001o\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00160\u0000\taftertext\u0000\tafterText\r1p\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00001q1r\r1q\u0000\u00011\u0000\u0000\u0000\u0000\u001b\n\u001b\u0000\u0004\ntxdl\r1r\u0000\u00011\u0000\u0000\u0000\u0000\u001a\n\u001a\u0000\u0004\nascr\u00021n\u0000\u00021s1t\r1s\u0000\u0002r\u0000\u0000\u0000\u00001u1v\r1u\u0000\u0002n\u0000\u0000\u0000\u00001w1x\r1w\u0000\u00024\u0000\u0000\u0000\u0000\u00191y\n\u0019\u0000\u0004\ncitm\r1y\u0000\u0001m\u0000\u0000\u0000\u0000\u0018\u0003\u0018\u0000\u0001\r1x\u0000\u0001o\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\r1v\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001z\u0016\u0015\r1z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u00021t\u0000\u00021{1|\r1{\u0000\u0002r\u0000\u0000\u0000\u00001}1~\r1}\u0000\u0001o\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r1~\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000011\r1\u0000\u00011\u0000\u0000\u0000\u0000\u0012\n\u0012\u0000\u0004\ntxdl\r1\u0000\u00011\u0000\u0000\u0000\u0000\u0011\n\u0011\u0000\u0004\nascr\u00021|\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0004Z\u0000\u0001\u0000\u000011\r\f\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0002b\u0000\u0000\u0000\u000011\r1\u0000\u0002b\u0000\u0000\u0000\u000011\r1\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r1\u0000\u0001o\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\r1\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00160\u0000\taftertext\u0000\tafterText\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u00021\u0000\u00021\u0006\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0006\u0000\u0000\r1R\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u000211\n\u0002\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00061\u0000\u0003\u00001\n\u0000\u0000\u0004\nerrn\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r1S\u0000\u0001k\u0000\u0000\u0000\u00001\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r1\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000011\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0001\u0000\u000011\u0001\u0000\u0000\f1\u0000>\u00008 \ttell me to log \"Error in getTextBetween() : \" & errMsg\u0000\u0002\u0000\u0000\u000e1\u0000\u00011\u00111\u0000p\u0000 \u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000\"\u0000E\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000g\u0000e\u0000t\u0000T\u0000e\u0000x\u0000t\u0000B\u0000e\u0000t\u0000w\u0000e\u0000e\u0000n\u0000(\u0000)\u0000 \u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000e\u0000r\u0000r\u0000M\u0000s\u0000g\u00021\u0000\u00021\r1\u0000\u0003l\u0000\u0001\u0000\u0000111\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0001m\u0000\u0000\u0000\u00001\u000e1\u0000\u00011\u00111\u0000\u0000\r1\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001\u0000\u0000\u0001\u0000\u0000\f1\u0000:\u00004 return nothing if the surrounding text is not found\u0000\u0002\u0000\u0000\u000e1\u0000\u00011\u00111\u0000h\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000u\u0000r\u0000r\u0000o\u0000u\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002\u0000\u0000\u00021P\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0001L\u0000\u0000\u0000\u00001\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u00021\u0000\u00021\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00020\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002i\u0000\u0000\u00013\u0001611\r1\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00001\u000b\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u00021\u0000\u00021\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r1\u0000\u0001k\u0000\u0000\u0000\u0000\u00001\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u000011\u0001\u0000\u0000\f1\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e1\u0000\u00011\u00111\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000611\r1\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00041\u00061\u0000\u00031\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0004Z\u0000\u0000\u0000\u0007\u0000[111\r1\u0000\u0002=\u0000\u0003\u0000\u0007\u0000\f11\r1\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\n11\r1\u0000\u0001m\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npcls\r1\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\u0004\nlist\r1\u0000\u0001k\u0000\u0000\u0000\u000f\u0000?1\u00021\u0000\u000211\r1\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000=111\r1\u0000\u0002?\u0000\u0001\u0000\u000f\u0000\u001611\r1\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u00141\r1\u0000\u0003I\u0000\u0001\u0000\u000f\u0000\u00141\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r1\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r1\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0002\r1\u0000\u0001k\u0000\u0000\u0000\u0019\u0000,1\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u001911\u0001\u0000\u0000\f1\u0000-\u0000' get any parameters after the initial 3\u0000\u0002\u0000\u0000\u000e1\u0000\u00011\u00111\u0000N\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000 \u00003\u00021\u0000\u00021\r1\u0000\u0002r\u0000\u0000\u0000\u0019\u0000,11\r1\u0000\u0001K\u0000\u0000\u0000\u0019\u0000*1\u00061\u0000\u000311\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e11\r1\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e1\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0001\r1\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u0000\u000311\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1\u0000\u0002n\u0000\u0000\u0000\u001f\u0000#11\r1\u0000\u00024\u0000\u0000\u0000 \u0000#1\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0002\r1\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u0000\u00031\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1\u0000\u0002n\u0000\u0000\u0000$\u0000(11\r1\u0000\u00024\u0000\u0000\u0000%\u0000(1\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0003\r1\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r1\u0000\u0002r\u0000\u0000\u0000\/\u0000=11\r1\u0000\u0001K\u0000\u0000\u0000\/\u0000;1\u00061\u0000\u000311\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0002n\u0000\u0000\u00000\u0000411\r1\u0000\u00024\u0000\u0000\u00001\u000041\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r1\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u0000\u00031\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1\u0000\u0002n\u0000\u0000\u00005\u0000912\u0000\r1\u0000\u00024\u0000\u0000\u00006\u000092\u0001\n\u0000\u0004\ncobj\r2\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0002\r2\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00021\u0000\u00022\u0002\r2\u0002\u0000\u0003l\u0000\u0002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00021\u0000\u00022\u00032\u0004\r2\u0003\u0000\u0002>\u0000\u0001\u0000B\u0000L2\u00052\u0006\r2\u0005\u0000\u0002n\u0000\u0000\u0000B\u0000E2\u00072\b\r2\u0007\u0000\u0001m\u0000\u0000\u0000C\u0000E\n\u0000\u0004\npcls\r2\b\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0006\u0000\u0003l\u0000\u0005\u0000E\u0000K2\t\r2\t\u0000\u0002n\u0000\u0000\u0000E\u0000K2\n2\u000b\r2\n\u0000\u0001m\u0000\u0000\u0000I\u0000K\n\u0000\u0004\npcls\r2\u000b\u0000\u0001K\u0000\u0000\u0000E\u0000I2\f\u00062\f\u0000\u00032\r\u000b\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\r2\r\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u0003\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0004\u0000\u00022\u000e\r2\u000e\u0000\u0001k\u0000\u0000\u0000O\u0000W2\u000f\u00022\u000f\u0000\u00022\u00102\u0011\r2\u0010\u0000\u0003l\u0000\u0001\u0000O\u0000O2\u00122\u0013\u0001\u0000\u0000\f2\u0012\u0000x\u0000r Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\u0000\u0002\u0000\u0000\u000e2\u0013\u0000\u00012\u0014\u00112\u0014\u0000\u0000 \u0000T\u0000e\u0000s\u0000t\u0000 \u0000b\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000v\u0000o\u0000i\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000c\u0000o\u0000n\u0000f\u0000l\u0000i\u0000c\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000r\u0000m\u0000 \u0000\"\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000\"\u00022\u0011\u0000\u00022\u00152\u0016\r2\u0015\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0016\u0000\u00022\u00172\u0018\r2\u0017\u0000\u0003R\u0000\u0000\u0000O\u0000U2\u00192\u001a\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u0019\u0000\u0001m\u0000\u0000\u0000S\u0000T2\u001b\u000e2\u001b\u0000\u00012\u001c\u00112\u001c\u0001>\u0000T\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000'\u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000'\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000a\u0000t\u0000 \u0000l\u0000e\u0000a\u0000s\u0000t\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000r\u0000a\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000(\u0000s\u0000)\u0000 \u0000i\u0000n\u0000 \u0000c\u0000u\u0000r\u0000l\u0000y\u0000 \u0000b\u0000r\u0000a\u0000c\u0000k\u0000e\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000e\u0000a\u0000s\u0000y\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000'\u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0000.\u0000 \u00062\u001a\u0000\u00032\u001d\n\u0000\u0004\nerrn\r2\u001d\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0003\u0004\u0000\u0006\u0000\u0000\u00022\u0018\u0000\u00022\u001e\r2\u001e\u0000\u0003l\u0000\u0002\u0000V\u0000V\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u00022\u001f2 \r2\u001f\u0000\u0003l\u0000\u0002\u0000\\\u0000\\\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022 \u0000\u00022!2\"\r2!\u0000\u0003l\u0000\u0002\u0000\\\u0000\\\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\"\u0000\u00022#2$\r2#\u0000\u0002r\u0000\u0000\u0000\\\u0000a2%2&\r2%\u0000\u0002b\u0000\u0000\u0000\\\u0000_2'2(\r2'\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r2(\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r2&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022$\u0000\u00022)2*\r2)\u0000\u0003l\u0000\u0002\u0000b\u0000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022*\u0000\u00022+2,\r2+\u0000\u0003l\u0000\u0002\u0000b\u0000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022,\u0000\u00022-2.\r2-\u0000\u0002r\u0000\u0000\u0000b\u0000g2\/20\r2\/\u0000\u0002n\u0000\u0000\u0000b\u0000e2122\r21\u0000\u0001o\u0000\u0000\u0000c\u0000e\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r22\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r20\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00022.\u0000\u00022324\r23\u0000\u0002r\u0000\u0000\u0000h\u0000m2526\r25\u0000\u0002n\u0000\u0000\u0000h\u0000k2728\r27\u0000\u0001o\u0000\u0000\u0000i\u0000k\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r28\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r26\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u000224\u0000\u0002292:\r29\u0000\u0002r\u0000\u0000\u0000n\u0000s2;2<\r2;\u0000\u0002n\u0000\u0000\u0000n\u0000q2=2>\r2=\u0000\u0001o\u0000\u0000\u0000o\u0000q\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2>\u0000\u0001o\u0000\u0000\u0000n\u0000o~\u000b~\u0000\t0\u0000\u0005prefs\u0000\u0000\r2<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000}\u000b}\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u00022:\u0000\u00022?2@\r2?\u0000\u0003l\u0000\u0002\u0000t\u0000t|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u00022@\u0000\u00022A2B\r2A\u0000\u0003l\u0000\u0002\u0000t\u0000tyxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u00022B\u0000\u00022C2D\r2C\u0000\u0002r\u0000\u0000\u0000t\u0000y2E2F\r2E\u0000\u0002n\u0000\u0003\u0000t\u0000w2G2H\r2G\u0000\u00011\u0000\u0000\u0000u\u0000wv\nv\u0000\u0004\ntxdl\r2H\u0000\u00011\u0000\u0000\u0000t\u0000uu\nu\u0000\u0004\nascr\r2F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00022D\u0000\u00022Is\r2I\u0000\u0003Q\u0000\u0000\u0000z\u00002J2K2L\r2J\u0000\u0001k\u0000\u0000\u0000}\u00002M\u00022M\u0000\u00022N2O\r2N\u0000\u0002r\u0000\u0000\u0000}\u00002P2Q\r2P\u0000\u0003l\u0001\u0000\u0000}\u00002Rrq\r2R\u0000\u0001J\u0000\u0000\u0000}\u00002S\u00022S\u0000\u00022Tp\r2T\u0000\u0002c\u0000\u0000\u0000}\u00002U2V\r2U\u0000\u0001o\u0000\u0000\u0000}\u0000~o\u000bo\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r2V\u0000\u0001m\u0000\u0000\u0000~\u0000n\nn\u0000\u0004\nTEXT\u0002p\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\r2Q\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00002W2X\r2W\u0000\u00011\u0000\u0000\u0000\u0000m\nm\u0000\u0004\ntxdl\r2X\u0000\u00011\u0000\u0000\u0000\u0000l\nl\u0000\u0004\nascr\u00022O\u0000\u00022Y2Z\r2Y\u0000\u0003l\u0000\u0002\u0000\u0000kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u00022Z\u0000\u00022[2\\\r2[\u0000\u0004Z\u0000\u0000\u0000\u00002]2^h2_\r2]\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2^\u0000\u0003P\u0000\u0000\u0000\u00002`2af\r2`\u0000\u0002r\u0000\u0000\u0000\u00002b2c\r2b\u0000\u0002n\u0000\u0000\u0000\u00002d2e\r2d\u0000\u00012\u0000\u0000\u0000\u0000e\ne\u0000\u0004\ncitm\r2e\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2c\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00002fcb\r2f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000a\u000ba\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001c\u0000\u0000\u0001b\u0000\u0000\u00022a\u0000\u0002`_\n`\u0000\b\u000bconscase\u0002_\u0000\u0000\u0002f\u0000\u0000\u0002h\u0000\u0000\r2_\u0000\u0003P\u0000\u0000\u0000\u00002g^2h\r2g\u0000\u0002r\u0000\u0000\u0000\u00002i2j\r2i\u0000\u0002n\u0000\u0000\u0000\u00002k2l\r2k\u0000\u00012\u0000\u0000\u0000\u0000]\n]\u0000\u0004\ncitm\r2l\u0000\u0001o\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2j\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00002m[Z\r2m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002^\u0000\u0000\u00022h\u0000\u0002XW\nX\u0000\b\u000bconscase\u0002W\u0000\u0000\u00022\\\u0000\u00022n2o\r2n\u0000\u0003l\u0000\u0002\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u00022o\u0000\u00022p2q\r2p\u0000\u0002r\u0000\u0000\u0000\u00002r2s\r2r\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r2s\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00002t2u\r2t\u0000\u00011\u0000\u0000\u0000\u0000R\nR\u0000\u0004\ntxdl\r2u\u0000\u00011\u0000\u0000\u0000\u0000Q\nQ\u0000\u0004\nascr\u00022q\u0000\u00022vP\r2v\u0000\u0001L\u0000\u0000\u0000\u00002w\r2w\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0002P\u0000\u0000\r2K\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000N2x2y\nN\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00062y\u0000\u0003L2zK\nL\u0000\u0004\nerrn\r2z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006K\u0000\u0000\r2L\u0000\u0001k\u0000\u0000\u0000\u00002{\u00022{\u0000\u00022|2}\r2|\u0000\u0003Q\u0000\u0000\u0000\u00002~2I\r2~\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r2\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000022\r2\u0000\u00011\u0000\u0000\u0000\u0000G\nG\u0000\u0004\ntxdl\r2\u0000\u00011\u0000\u0000\u0000\u0000F\nF\u0000\u0004\nascr\r2\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000EDC\nE\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001D\u0000\u0000\u0002C\u0000\u0000\u0001I\u0000\u0000\u00022}\u0000\u00022B\r2\u0000\u0003R\u0000\u0000\u0000\u0000A22\nA\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u0000\u0002b\u0000\u0000\u0000\u000022\r2\u0000\u0001m\u0000\u0000\u0000\u00002\u000e2\u0000\u00012\u00112\u0000:\u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000:\u0000 \r2\u0000\u0001o\u0000\u0000\u0000\u0000@\u000b@\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00062\u0000\u0003?2>\n?\u0000\u0004\nerrn\r2\u0000\u0001o\u0000\u0000\u0000\u0000=\u000b=\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006>\u0000\u0000\u0002B\u0000\u0000\u0002s\u0000\u0000\u00021\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002i\u0000\u0000\u00017\u0001:22\r2\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000625\u000b6\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u00022\u0000\u000224\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00003\u000b3\u0000\t0\u0000\u0005prefs\u0000\u0000\u00024\u0000\u0000\u00025\u0000\u0000\r2\u0000\u0001k\u0000\u0000\u0000\u0000\u00002\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000222\u00012\u0000\u0000\f2\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e2\u0000\u00012\u00112\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000010\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000622\r2\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00042\u00062\u0000\u0003.2-\u000b.\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002,\n,\u0000\b\u000bboovtrue\u0006-\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0004Z\u0000\u0000\u0000\u0007\u0000e222'\r2\u0000\u0002=\u0000\u0003\u0000\u0007\u0000\f22\r2\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\n22\r2\u0000\u0001m\u0000\u0000\u0000\b\u0000\n&\n&\u0000\u0004\npcls\r2\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b%\u000b%\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b$\n$\u0000\u0004\nlist\r2\u0000\u0001k\u0000\u0000\u0000\u000f\u0000I2\u00022\u0000\u000222\r2\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000G22#2\r2\u0000\u0002?\u0000\u0001\u0000\u000f\u0000\u001622\r2\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u00142\"!\r2\u0000\u0003I\u0000\u0001\u0000\u000f\u0000\u0014 2\u001f\n \u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r2\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u001e\u000b\u001e\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001f\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\r2\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u001d\u0003\u001d\u0000\u0003\r2\u0000\u0001k\u0000\u0000\u0000\u0019\u000012\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\u001c22\u0001\u001c\u0000\u0000\f2\u0000-\u0000' get any parameters after the initial 3\u0000\u0002\u0000\u0000\u000e2\u0000\u00012\u00112\u0000N\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000 \u00003\u00022\u0000\u00022\u001b\r2\u0000\u0002r\u0000\u0000\u0000\u0019\u0000122\r2\u0000\u0001K\u0000\u0000\u0000\u0019\u0000\/2\u00062\u0000\u0003\u001a22\u000b\u001a\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e22\r2\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u00192\n\u0019\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0018\u0003\u0018\u0000\u0001\r2\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u0017\u000b\u0017\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062\u0000\u0003\u001622\u000b\u0016\u0000\u00140\u0000\boldchars\u0000\boldChars\r2\u0000\u0002n\u0000\u0000\u0000\u001f\u0000#22\r2\u0000\u00024\u0000\u0000\u0000 \u0000#\u00152\n\u0015\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0014\u0003\u0014\u0000\u0002\r2\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u0013\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062\u0000\u0003\u001222\u000b\u0012\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2\u0000\u0002n\u0000\u0000\u0000$\u0000(22\r2\u0000\u00024\u0000\u0000\u0000%\u0000(\u00112\n\u0011\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0010\u0003\u0010\u0000\u0003\r2\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000f\u000b\u000f\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062\u0000\u0003\u000e2\r\u000b\u000e\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2\u0000\u0002n\u0000\u0000\u0000)\u0000-22\r2\u0000\u00024\u0000\u0000\u0000*\u0000-\f2\n\f\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000+\u0000,\u000b\u0003\u000b\u0000\u0004\r2\u0000\u0001o\u0000\u0000\u0000)\u0000*\n\u000b\n\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\r\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001b\u0000\u0000\u0002#\u0000\u0000\r2\u0000\u0002r\u0000\u0000\u00004\u0000G22\r2\u0000\u0001K\u0000\u0000\u00004\u0000E2\u00062\u0000\u0003\b22\u000b\b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0002n\u0000\u0000\u00005\u0000922\r2\u0000\u00024\u0000\u0000\u00006\u00009\u00072\n\u0007\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u00007\u00008\u0006\u0003\u0006\u0000\u0001\r2\u0000\u0001o\u0000\u0000\u00005\u00006\u0005\u000b\u0005\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062\u0000\u0003\u000422\u000b\u0004\u0000\u00140\u0000\boldchars\u0000\boldChars\r2\u0000\u0002n\u0000\u0000\u0000:\u0000>22\r2\u0000\u00024\u0000\u0000\u0000;\u0000>\u00032\n\u0003\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0002\u0003\u0002\u0000\u0002\r2\u0000\u0001o\u0000\u0000\u0000:\u0000;\u0001\u000b\u0001\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062\u0000\u0003\u00002\u000b\u0000\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2\u0000\u0002n\u0000\u0000\u0000?\u0000C22\r2\u0000\u00024\u0000\u0000\u0000@\u0000C2\n\u0000\u0004\ncobj\r2\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0003\u0000\u0003\r2\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022\u0000\u00022\r2\u0000\u0003l\u0000\u0002\u0000H\u0000H\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002>\u0000\u0001\u0000L\u0000V22\r2\u0000\u0002n\u0000\u0000\u0000L\u0000O22\r2\u0000\u0001m\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npcls\r2\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0003l\u0000\u0005\u0000O\u0000U2\r2\u0000\u0002n\u0000\u0000\u0000O\u0000U22\r2\u0000\u0001m\u0000\u0000\u0000S\u0000U\n\u0000\u0004\npcls\r2\u0000\u0001K\u0000\u0000\u0000O\u0000S2\u00062\u0000\u00032\u000b\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\r2\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\u0003\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0000\u00022\r2\u0000\u0001k\u0000\u0000\u0000Y\u0000a2\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0001\u0000Y\u0000Y22\u0001\u0000\u0000\f2\u0000x\u0000r Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\u0000\u0002\u0000\u0000\u000e2\u0000\u00012\u00112\u0000\u0000 \u0000T\u0000e\u0000s\u0000t\u0000 \u0000b\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000v\u0000o\u0000i\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000c\u0000o\u0000n\u0000f\u0000l\u0000i\u0000c\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000r\u0000m\u0000 \u0000\"\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000\"\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000Y\u0000Y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003R\u0000\u0000\u0000Y\u0000_22\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u0000\u0001m\u0000\u0000\u0000]\u0000^3\u0000\u000e3\u0000\u0000\u00013\u0001\u00113\u0001\u0001J\u0000T\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000'\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000(\u0000)\u0000'\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000a\u0000t\u0000 \u0000l\u0000e\u0000a\u0000s\u0000t\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000r\u0000a\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000(\u0000s\u0000)\u0000 \u0000i\u0000n\u0000 \u0000c\u0000u\u0000r\u0000l\u0000y\u0000 \u0000b\u0000r\u0000a\u0000c\u0000k\u0000e\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000e\u0000a\u0000s\u0000y\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000'\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000(\u0000)\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0000.\u0000 \u00062\u0000\u00033\u0002\n\u0000\u0004\nerrn\r3\u0002\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0003\u0004\u0000\u0006\u0000\u0000\u00022\u0000\u00023\u0003\r3\u0003\u0000\u0003l\u0000\u0002\u0000`\u0000`\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001'\u0000\u0000\u00022\u0000\u00023\u00043\u0005\r3\u0004\u0000\u0003l\u0000\u0002\u0000f\u0000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00023\u0005\u0000\u00023\u00063\u0007\r3\u0006\u0000\u0003l\u0000\u0002\u0000f\u0000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00023\u0007\u0000\u00023\b3\t\r3\b\u0000\u0002r\u0000\u0000\u0000f\u0000k3\n3\u000b\r3\n\u0000\u0002b\u0000\u0000\u0000f\u0000i3\f3\r\r3\f\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r3\r\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r3\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023\t\u0000\u00023\u000e3\u000f\r3\u000e\u0000\u0003l\u0000\u0002\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00023\u000f\u0000\u00023\u00103\u0011\r3\u0010\u0000\u0003l\u0000\u0002\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00023\u0011\u0000\u00023\u00123\u0013\r3\u0012\u0000\u0002r\u0000\u0000\u0000l\u0000q3\u00143\u0015\r3\u0014\u0000\u0002n\u0000\u0000\u0000l\u0000o3\u00163\u0017\r3\u0016\u0000\u0001o\u0000\u0000\u0000m\u0000o\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r3\u0017\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r3\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u00023\u0013\u0000\u00023\u00183\u0019\r3\u0018\u0000\u0002r\u0000\u0000\u0000r\u0000w3\u001a3\u001b\r3\u001a\u0000\u0002n\u0000\u0000\u0000r\u0000u3\u001c3\u001d\r3\u001c\u0000\u0001o\u0000\u0000\u0000s\u0000u\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r3\u001d\u0000\u0001o\u0000\u0000\u0000r\u0000s\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r3\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00023\u0019\u0000\u00023\u001e3\u001f\r3\u001e\u0000\u0002r\u0000\u0000\u0000x\u0000}3 3!\r3 \u0000\u0002n\u0000\u0000\u0000x\u0000{3\"3#\r3\"\u0000\u0001o\u0000\u0000\u0000y\u0000{\u000b\u0000\u00140\u0000\boldchars\u0000\boldChars\r3#\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r3!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\boldchars\u0000\boldChars\u00023\u001f\u0000\u00023$3%\r3$\u0000\u0002r\u0000\u0000\u0000~\u00003&3'\r3&\u0000\u0002n\u0000\u0000\u0000~\u00003(3)\r3(\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r3)\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r3'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u00023%\u0000\u00023*3+\r3*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00023+\u0000\u00023,3-\r3,\u0000\u0002r\u0000\u0000\u0000\u00003.3\/\r3.\u0000\u0002c\u0000\u0000\u0000\u00003031\r30\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r31\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r3\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00023-\u0000\u00023233\r32\u0000\u0003l\u0000\u0002\u0000\u0000\u07ff\u07fe\u0001\u0000\u0000\u0001\u07ff\u0000\u0000\u0001\u07fe\u0000\u0000\u000233\u0000\u00023435\r34\u0000\u0002r\u0000\u0000\u0000\u00003637\r36\u0000\u0002n\u0000\u0003\u0000\u00003839\r38\u0000\u00011\u0000\u0000\u0000\u0000\u07fd\n\u07fd\u0000\u0004\ntxdl\r39\u0000\u00011\u0000\u0000\u0000\u0000\u07fc\n\u07fc\u0000\u0004\nascr\r37\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07fb\u000b\u07fb\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000235\u0000\u00023:3;\r3:\u0000\u0002r\u0000\u0000\u0000\u00003<3=\r3<\u0000\u0003l\u0001\u0000\u0000\u00003>\u07fa\u07f9\r3>\u0000\u0001o\u0000\u0000\u0000\u0000\u07f8\u000b\u07f8\u0000\u00140\u0000\boldchars\u0000\boldChars\u0001\u07fa\u0000\u0000\u0001\u07f9\u0000\u0000\r3=\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003?3@\r3?\u0000\u00011\u0000\u0000\u0000\u0000\u07f7\n\u07f7\u0000\u0004\ntxdl\r3@\u0000\u00011\u0000\u0000\u0000\u0000\u07f6\n\u07f6\u0000\u0004\nascr\u00023;\u0000\u00023A3B\r3A\u0000\u0004Z\u0000\u0000\u0000\u00003C3D\u07f53E\r3C\u0000\u0001o\u0000\u0000\u0000\u0000\u07f4\u000b\u07f4\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r3D\u0000\u0003P\u0000\u0000\u0000\u00003F3G\u07f3\r3F\u0000\u0001k\u0000\u0000\u0000\u00003H\u00023H\u0000\u00023I3J\r3I\u0000\u0002r\u0000\u0000\u0000\u00003K3L\r3K\u0000\u0002n\u0000\u0000\u0000\u00003M3N\r3M\u0000\u00012\u0000\u0000\u0000\u0000\u07f2\n\u07f2\u0000\u0004\ncitm\r3N\u0000\u0001o\u0000\u0000\u0000\u0000\u07f1\u000b\u07f1\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r3L\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003O\u07f0\u07ef\r3O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07ee\u000b\u07ee\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u07f0\u0000\u0000\u0001\u07ef\u0000\u0000\u00023J\u0000\u00023P3Q\r3P\u0000\u0002r\u0000\u0000\u0000\u00003R3S\r3R\u0000\u0003l\u0001\u0000\u0000\u00003T\u07ed\u07ec\r3T\u0000\u0001J\u0000\u0000\u0000\u00003U\u00023U\u0000\u00023V\u07eb\r3V\u0000\u0003l\u0000\u0005\u0000\u00003W\u07ea\u07e9\r3W\u0000\u0002c\u0000\u0000\u0000\u00003X3Y\r3X\u0000\u0001o\u0000\u0000\u0000\u0000\u07e8\u000b\u07e8\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r3Y\u0000\u0001m\u0000\u0000\u0000\u0000\u07e7\n\u07e7\u0000\u0004\nTEXT\u0001\u07ea\u0000\u0000\u0001\u07e9\u0000\u0000\u0002\u07eb\u0000\u0000\u0001\u07ed\u0000\u0000\u0001\u07ec\u0000\u0000\r3S\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003Z3[\r3Z\u0000\u00011\u0000\u0000\u0000\u0000\u07e6\n\u07e6\u0000\u0004\ntxdl\r3[\u0000\u00011\u0000\u0000\u0000\u0000\u07e5\n\u07e5\u0000\u0004\nascr\u00023Q\u0000\u00023\\\u07e4\r3\\\u0000\u0002r\u0000\u0000\u0000\u00003]3^\r3]\u0000\u0002c\u0000\u0000\u0000\u00003_3`\r3_\u0000\u0003l\u0001\u0000\u0000\u00003a\u07e3\u07e2\r3a\u0000\u0001o\u0000\u0000\u0000\u0000\u07e1\u000b\u07e1\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u07e3\u0000\u0000\u0001\u07e2\u0000\u0000\r3`\u0000\u0001m\u0000\u0000\u0000\u0000\u07e0\n\u07e0\u0000\u0004\nTEXT\r3^\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003b\u07df\u07de\r3b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07dd\u000b\u07dd\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u0001\u07df\u0000\u0000\u0001\u07de\u0000\u0000\u0002\u07e4\u0000\u0000\u00023G\u0000\u0002\u07dc\u07db\n\u07dc\u0000\b\u000bconscase\u0002\u07db\u0000\u0000\u0002\u07f3\u0000\u0000\u0002\u07f5\u0000\u0000\r3E\u0000\u0003P\u0000\u0000\u0000\u00003c\u07da3d\r3c\u0000\u0001k\u0000\u0000\u0000\u00003e\u00023e\u0000\u00023f3g\r3f\u0000\u0002r\u0000\u0000\u0000\u00003h3i\r3h\u0000\u0002n\u0000\u0000\u0000\u00003j3k\r3j\u0000\u00012\u0000\u0000\u0000\u0000\u07d9\n\u07d9\u0000\u0004\ncitm\r3k\u0000\u0001o\u0000\u0000\u0000\u0000\u07d8\u000b\u07d8\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r3i\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003l\u07d7\u07d6\r3l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07d5\u000b\u07d5\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u07d7\u0000\u0000\u0001\u07d6\u0000\u0000\u00023g\u0000\u00023m3n\r3m\u0000\u0002r\u0000\u0000\u0000\u00003o3p\r3o\u0000\u0003l\u0001\u0000\u0000\u00003q\u07d4\u07d3\r3q\u0000\u0001J\u0000\u0000\u0000\u00003r\u00023r\u0000\u00023s\u07d2\r3s\u0000\u0003l\u0000\u0005\u0000\u00003t\u07d1\u07d0\r3t\u0000\u0002c\u0000\u0000\u0000\u00003u3v\r3u\u0000\u0001o\u0000\u0000\u0000\u0000\u07cf\u000b\u07cf\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r3v\u0000\u0001m\u0000\u0000\u0000\u0000\u07ce\n\u07ce\u0000\u0004\nTEXT\u0001\u07d1\u0000\u0000\u0001\u07d0\u0000\u0000\u0002\u07d2\u0000\u0000\u0001\u07d4\u0000\u0000\u0001\u07d3\u0000\u0000\r3p\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003w3x\r3w\u0000\u00011\u0000\u0000\u0000\u0000\u07cd\n\u07cd\u0000\u0004\ntxdl\r3x\u0000\u00011\u0000\u0000\u0000\u0000\u07cc\n\u07cc\u0000\u0004\nascr\u00023n\u0000\u00023y\u07cb\r3y\u0000\u0002r\u0000\u0000\u0000\u00003z3{\r3z\u0000\u0002c\u0000\u0000\u0000\u00003|3}\r3|\u0000\u0003l\u0001\u0000\u0000\u00003~\u07ca\u07c9\r3~\u0000\u0001o\u0000\u0000\u0000\u0000\u07c8\u000b\u07c8\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u07ca\u0000\u0000\u0001\u07c9\u0000\u0000\r3}\u0000\u0001m\u0000\u0000\u0000\u0000\u07c7\n\u07c7\u0000\u0004\nTEXT\r3{\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003\u07c6\u07c5\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07c4\u000b\u07c4\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u0001\u07c6\u0000\u0000\u0001\u07c5\u0000\u0000\u0002\u07cb\u0000\u0000\u0002\u07da\u0000\u0000\u00023d\u0000\u0002\u07c3\u07c2\n\u07c3\u0000\b\u000bconscase\u0002\u07c2\u0000\u0000\u00023B\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u000033\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u07c1\u000b\u07c1\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000\u0000\u07c0\n\u07c0\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00023\u0000\u000233\r3\u0000\u0001L\u0000\u0000\u0000\u00003\r3\u0000\u0001o\u0000\u0000\u0000\u0000~\u000b~\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u00023\u0000\u00023}\r3\u0000\u0003l\u0000\u0002\u0000\u0000|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002}\u0000\u0000\u00022\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000yxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002i\u0000\u0000\u0001;\u0001>33\r3\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000s3r\u000bs\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u00023\u0000\u000233\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u00140\u0000\bthislist\u0000\bthisList\u00023\u0000\u00023p\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u0002p\u0000\u0000\u0002r\u0000\u0000\r3\u0000\u0001k\u0000\u0000\u0000\u0000\u0000C3\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000n33\u0001n\u0000\u0000\f3\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e3\u0000\u00013\u00113\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000mlk\u0001m\u0000\u0000\u0001l\u0000\u0000\u0001k\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000533\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000333\r3\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003j\nj\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001i\ni\u0000\u0004\nascr\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00023\u0000\u00023g\r3\u0000\u0003Q\u0000\u0000\u0000\u0006\u0000C333\r3\u0000\u0001k\u0000\u0000\u0000\t\u0000!3\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\t\u0000\u001233\r3\u0000\u0003l\u0001\u0000\u0000\t\u0000\u000e3fe\r3\u0000\u0001J\u0000\u0000\u0000\t\u0000\u000e3\u00023\u0000\u00023d\r3\u0000\u0002c\u0000\u0000\u0000\t\u0000\f33\r3\u0000\u0001o\u0000\u0000\u0000\t\u0000\nc\u000bc\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\r3\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000bb\nb\u0000\u0004\nTEXT\u0002d\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011a\na\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u000f`\n`\u0000\u0004\nascr\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001833\r3\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u001633\r3\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014_\u000b_\u0000\u00140\u0000\bthislist\u0000\bthisList\r3\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015^\n^\u0000\u0004\nTEXT\r3\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003]\\\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u0001]\u0000\u0000\u0001\\\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e33\r3\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aZ\u000bZ\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001dY\nY\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001bX\nX\u0000\u0004\nascr\u00023\u0000\u00023W\r3\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!3\r3\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 V\u000bV\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u0002W\u0000\u0000\r3\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000U33\nU\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00063\u0000\u0003S3R\nS\u0000\u0004\nerrn\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006R\u0000\u0000\r3\u0000\u0001k\u0000\u0000\u0000)\u0000C3\u00023\u0000\u000233\r3\u0000\u0003Q\u0000\u0000\u0000)\u0000:33P\r3\u0000\u0002r\u0000\u0000\u0000,\u0000133\r3\u0000\u0001o\u0000\u0000\u0000,\u0000-O\u000bO\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000.\u00000N\nN\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000-\u0000.M\nM\u0000\u0004\nascr\r3\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000LKJ\nL\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001K\u0000\u0000\u0002J\u0000\u0000\u0001P\u0000\u0000\u00023\u0000\u00023I\r3\u0000\u0003R\u0000\u0000\u0000;\u0000CH33\nH\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r3\u0000\u0002b\u0000\u0000\u0000?\u0000B33\r3\u0000\u0001m\u0000\u0000\u0000?\u0000@3\u000e3\u0000\u00013\u00113\u0000>\u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000u\u0000n\u0000P\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000:\u0000 \r3\u0000\u0001o\u0000\u0000\u0000@\u0000AG\u000bG\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00063\u0000\u0003F3E\nF\u0000\u0004\nerrn\r3\u0000\u0001o\u0000\u0000\u0000=\u0000>D\u000bD\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006E\u0000\u0000\u0002I\u0000\u0000\u0002g\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000CBA\u0001C\u0000\u0000\u0001B\u0000\u0000\u0001A\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002i\u0000\u0000\u0001?\u0001B33\r3\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000=3<\u000b=\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\u00023\u0000\u00023;\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002;\u0000\u0000\u0002<\u0000\u0000\r3\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00063\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\n33\r3\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\b3\u00063\u0000\u0003633\u000b6\u0000\u00060\u0000\u0002v1\u0000\u0000\r3\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u00025\n5\u0000\u0004\nnull\u00063\u0000\u0003433\u000b4\u0000\u00060\u0000\u0002v2\u0000\u0000\r3\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u00043\n3\u0000\u0004\nnull\u00063\u0000\u0003231\u000b2\u0000\t0\u0000\u0005delim\u0000\u0000\r3\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u00063\u000e3\u0000\u00013\u00113\u0000\u0002\u0000.\u00061\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u001033\r3\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e33\r3\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\f\u0000\r.\u000b.\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0011\u0000*33\r3\u0000\u0001J\u0000\u0000\u0000\u0011\u0000\u00193\u00023\u0000\u000233\r3\u0000\u0002n\u0000\u0003\u0000\u0011\u0000\u001434\u0000\r3\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0014)\n)\u0000\u0004\ntxdl\r4\u0000\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0012(\n(\u0000\u0004\nascr\u00023\u0000\u00024\u0001'\r4\u0001\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u00174\u00024\u0003\r4\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0017&\u000b&\u0000\t0\u0000\u0005delim\u0000\u0000\r4\u0003\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015%\u000b%\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002'\u0000\u0000\r3\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00004\u0004\u00024\u0004\u0000\u00024\u00054\u0006\r4\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\u00060\u0000\u0002od\u0000\u0000\u00024\u0006\u0000\u00024\u0007#\r4\u0007\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00004\b4\t\r4\b\u0000\u00011\u0000\u0000\u0000&\u0000(\"\n\"\u0000\u0004\ntxdl\r4\t\u0000\u00011\u0000\u0000\u0000%\u0000&!\n!\u0000\u0004\nascr\u0002#\u0000\u0000\u00023\u0000\u00024\n4\u000b\r4\n\u0000\u0002r\u0000\u0000\u0000+\u0000F4\f4\r\r4\f\u0000\u0001J\u0000\u0000\u0000+\u000074\u000e\u00024\u000e\u0000\u00024\u000f4\u0010\r4\u000f\u0000\u0002n\u0000\u0000\u0000+\u000004\u00114\u0012\r4\u0011\u0000\u00012\u0000\u0000\u0000.\u00000 \n \u0000\u0004\ncitm\r4\u0012\u0000\u0002n\u0000\u0000\u0000+\u0000.4\u00134\u0014\r4\u0013\u0000\u0001o\u0000\u0000\u0000,\u0000.\u001f\u000b\u001f\u0000\u00060\u0000\u0002v1\u0000\u0000\r4\u0014\u0000\u0001o\u0000\u0000\u0000+\u0000,\u001e\u000b\u001e\u0000\t0\u0000\u0005prefs\u0000\u0000\u00024\u0010\u0000\u00024\u0015\u001d\r4\u0015\u0000\u0002n\u0000\u0000\u00000\u000054\u00164\u0017\r4\u0016\u0000\u00012\u0000\u0000\u00003\u00005\u001c\n\u001c\u0000\u0004\ncitm\r4\u0017\u0000\u0002n\u0000\u0000\u00000\u000034\u00184\u0019\r4\u0018\u0000\u0001o\u0000\u0000\u00001\u00003\u001b\u000b\u001b\u0000\u00060\u0000\u0002v2\u0000\u0000\r4\u0019\u0000\u0001o\u0000\u0000\u00000\u00001\u001a\u000b\u001a\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001d\u0000\u0000\r4\r\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00004\u001a\u00024\u001a\u0000\u00024\u001b4\u001c\r4\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u00024\u001c\u0000\u00024\u001d\u0018\r4\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u0002\u0018\u0000\u0000\u00024\u000b\u0000\u00024\u001e4\u001f\r4\u001e\u0000\u0002r\u0000\u0000\u0000G\u0000L4 4!\r4 \u0000\u0001o\u0000\u0000\u0000G\u0000H\u0016\u000b\u0016\u0000\u00060\u0000\u0002od\u0000\u0000\r4!\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00004\"4#\r4\"\u0000\u00011\u0000\u0000\u0000I\u0000K\u0015\n\u0015\u0000\u0004\ntxdl\r4#\u0000\u00011\u0000\u0000\u0000H\u0000I\u0014\n\u0014\u0000\u0004\nascr\u00024\u001f\u0000\u00024$4%\r4$\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u00024%\u0000\u00024&4'\r4&\u0000\u0002r\u0000\u0000\u0000M\u0000h4(4)\r4(\u0000\u0001J\u0000\u0000\u0000M\u0000Y4*\u00024*\u0000\u00024+4,\r4+\u0000\u0003I\u0000\u0001\u0000M\u0000R\u00104-\u000f\n\u0010\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r4-\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000e\u000b\u000e\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u0002\u000f\u0000\u0000\u00024,\u0000\u00024.\r\r4.\u0000\u0003I\u0000\u0001\u0000R\u0000W\f4\/\u000b\n\f\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r4\/\u0000\u0001o\u0000\u0000\u0000R\u0000S\n\u000b\n\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u0002\u000b\u0000\u0000\u0002\r\u0000\u0000\r4)\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u000040\u000240\u0000\u00024142\r41\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\f0\u0000\bv1_count\u0000\u0000\u000242\u0000\u000243\b\r43\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\f0\u0000\bv2_count\u0000\u0000\u0002\b\u0000\u0000\u00024'\u0000\u00024445\r44\u0000\u0004Z\u0000\u0000\u0000i\u0000x4647\u000648\r46\u0000\u0002?\u0000\u0001\u0000i\u0000l494:\r49\u0000\u0001o\u0000\u0000\u0000i\u0000j\u0005\u000b\u0005\u0000\f0\u0000\bv1_count\u0000\u0000\r4:\u0000\u0001o\u0000\u0000\u0000j\u0000k\u0004\u000b\u0004\u0000\f0\u0000\bv2_count\u0000\u0000\r47\u0000\u0002r\u0000\u0000\u0000o\u0000r4;4<\r4;\u0000\u0001o\u0000\u0000\u0000o\u0000p\u0003\u000b\u0003\u0000\f0\u0000\bv1_count\u0000\u0000\r4<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u0002\u0006\u0000\u0000\r48\u0000\u0002r\u0000\u0000\u0000u\u0000x4=4>\r4=\u0000\u0001o\u0000\u0000\u0000u\u0000v\u0001\u000b\u0001\u0000\f0\u0000\bv2_count\u0000\u0000\r4>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u000245\u0000\u00024?4@\r4?\u0000\u0003l\u0000\u0002\u0000y\u0000y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00024@\u0000\u00024A4B\r4A\u0000\u0002r\u0000\u0000\u0000y\u0000|4C4D\r4C\u0000\u0001m\u0000\u0000\u0000y\u0000z4E\u000e4E\u0000\u00014F\u00114F\u0000\u0000\r4D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024B\u0000\u00024G4H\r4G\u0000\u0005Y\u0000\u0000\u0000}\u00004I4J4K\r4I\u0000\u0001k\u0000\u0000\u0000\u00004L\u00024L\u0000\u00024M4N\r4M\u0000\u0004Z\u0000\u0001\u0000\u00004O4P\r4O\u0000\u0002>\u0001\u0000\u0000\u00004Q4R\r4Q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\r4R\u0000\u0001m\u0000\u0000\u0000\u00004S\u000e4S\u0000\u00014T\u00114T\u0000\u0000\r4P\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u00024N\u0000\u00024U4V\r4U\u0000\u0004Z\u0000\u0000\u0000\u00004W4X4Y\r4W\u0000\u0002B\u0000\u0000\u0000\u00004Z4[\r4Z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r4[\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bv1_count\u0000\u0000\r4X\u0000\u0002r\u0000\u0000\u0000\u00004\\4]\r4\\\u0000\u0002n\u0000\u0000\u0000\u00004^4_\r4^\u0000\u00024\u0000\u0000\u0000\u00004`\n\u0000\u0004\ncobj\r4`\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r4_\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\r4]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u0002\u0000\u0000\r4Y\u0000\u0002r\u0000\u0000\u0000\u00004a4b\r4a\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r4b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u00024V\u0000\u00024c4d\r4c\u0000\u0004Z\u0000\u0000\u0000\u00004e4f4g\r4e\u0000\u0002B\u0000\u0000\u0000\u00004h4i\r4h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r4i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bv2_count\u0000\u0000\r4f\u0000\u0002r\u0000\u0000\u0000\u00004j4k\r4j\u0000\u0002n\u0000\u0000\u0000\u00004l4m\r4l\u0000\u00024\u0000\u0000\u0000\u00004n\n\u0000\u0004\ncobj\r4n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r4m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\r4k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u0002\u0000\u0000\r4g\u0000\u0002r\u0000\u0000\u0000\u00004o4p\r4o\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r4p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u00024d\u0000\u00024q4r\r4q\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00024r\u0000\u00024s4t\r4s\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00024t\u0000\u00024u4v\r4u\u0000\u0003Q\u0000\u0000\u0000\u00004w4x4y\r4w\u0000\u0001k\u0000\u0000\u0000\u00004z\u00024z\u0000\u00024{4|\r4{\u0000\u0003l\u0000\u0001\u0000\u00004}4~\u0001\u0000\u0000\f4}\u0000>\u00008log (\"v1_part: \" & v1_part & \" | v2_part: \" & v2_part)\u0000\u0002\u0000\u0000\u000e4~\u0000\u00014\u00114\u0000p\u0000l\u0000o\u0000g\u0000 \u0000(\u0000\"\u0000v\u00001\u0000_\u0000p\u0000a\u0000r\u0000t\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000v\u00001\u0000_\u0000p\u0000a\u0000r\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000 \u0000 \u0000|\u0000 \u0000v\u00002\u0000_\u0000p\u0000a\u0000r\u0000t\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000v\u00002\u0000_\u0000p\u0000a\u0000r\u0000t\u0000)\u00024|\u0000\u00024\r4\u0000\u0004Z\u0000\u0000\u0000\u00004444\r4\u0000\u0002?\u0000\u0001\u0000\u000044\r4\u0000\u0003l\u0000\u0005\u0000\u00004\r4\u0000\u0002c\u0000\u0000\u0000\u000044\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\r4\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\u0001\u0000\u0000\u0001\u0000\u0000\r4\u0000\u0003l\u0000\u0005\u0000\u00004\r4\u0000\u0002c\u0000\u0000\u0000\u000044\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\r4\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\u0001\u0000\u0000\u0001\u0000\u0000\r4\u0000\u0002r\u0000\u0000\u0000\u000044\r4\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024\u0000\u000244\r4\u0000\u0002A\u0000\u0001\u0000\u000044\r4\u0000\u0003l\u0000\u0005\u0000\u00004\r4\u0000\u0002c\u0000\u0000\u0000\u000044\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\r4\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\u0001\u0000\u0000\u0001\u0000\u0000\r4\u0000\u0003l\u0000\u0005\u0000\u00004\r4\u0000\u0002c\u0000\u0000\u0000\u000044\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\r4\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\u0001\u0000\u0000\u0001\u0000\u0000\u00024\u0000\u00024\r4\u0000\u0002r\u0000\u0000\u0000\u000044\r4\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u0002\u0000\u0000\r4\u0000\u0003l\u0000\u0001\u0000\u000044\u0001\u0000\u0000\f4\u00001\u0000+ the two versions are the same, so continue\u0000\u0002\u0000\u0000\u000e4\u0000\u00014\u00114\u0000V\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000r\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000a\u0000m\u0000e\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0002\u0000\u0000\r4x\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r4y\u0000\u0002r\u0000\u0000\u0000\u000044\r4\u0000\u0001m\u0000\u0000\u0000\u00004\u000e4\u0000\u00014\u00114\u0000\u0002\u0000?\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024v\u0000\u000244\r4\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00024\u0000\u00024\u07bf\r4\u0000\u0003l\u0000\u0002\u0000\u0000\u07be\u07bd\u07bc\u0001\u07be\u0000\u0000\u0001\u07bd\u0000\u0000\u0001\u07bc\u0000\u0000\u0002\u07bf\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r4J\u0000\u0001m\u0000\u0000\u0000\u0000\u07bb\u0003\u07bb\u0000\u0001\r4K\u0000\u0001o\u0000\u0000\u0000\u0000\u07ba\u000b\u07ba\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u0001\u0000\u0000\u00024H\u0000\u000244\r4\u0000\u0003l\u0000\u0002\u0000\u0000\u07b9\u07b8\u07b7\u0001\u07b9\u0000\u0000\u0001\u07b8\u0000\u0000\u0001\u07b7\u0000\u0000\u00024\u0000\u000244\r4\u0000\u0004Z\u0000\u0001\u0000\u0001\u000144\u07b6\u07b5\r4\u0000\u0002=\u0000\u0003\u0000\u000044\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u07b4\u000b\u07b4\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\r4\u0000\u0001m\u0000\u0000\u0000\u00004\u000e4\u0000\u00014\u00114\u0000\u0000\r4\u0000\u0002r\u0000\u0000\u0000\u000044\r4\u0000\u0001m\u0000\u0000\u0000\u0000\u07b3\u0003\u07b3\u0000\u0000\r4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07b2\u000b\u07b2\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u0002\u07b6\u0000\u0000\u0001\u07b5\u0000\u0000\u00024\u0000\u000244\r4\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\u0002\u07b1\u07b0\u07af\u0001\u07b1\u0000\u0000\u0001\u07b0\u0000\u0000\u0001\u07af\u0000\u0000\u00024\u0000\u000244\r4\u0000\u0001L\u0000\u0000\u0001\u0002\u0001\u00044\r4\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003\u07ae\u000b\u07ae\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024\u0000\u00024\u07ad\r4\u0000\u0003l\u0000\u0002\u0001\u0005\u0001\u0005\u07ac\u07ab\u07aa\u0001\u07ac\u0000\u0000\u0001\u07ab\u0000\u0000\u0001\u07aa\u0000\u0000\u0002\u07ad\u0000\u0000\u00023\u0000\u00024\u07a9\r4\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07a8\u07a7\u07a6\u0001\u07a8\u0000\u0000\u0001\u07a7\u0000\u0000\u0001\u07a6\u0000\u0000\u0002\u07a9\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000Q\u07a54\u07a4\u0000(44444444444444444444444444444444444444444444444444444444444444444444445\u00005\u00015\u00025\u00035\u00045\u00055\u0006\u0001\u07a5\u0000\u0000\u00104\u0000O\u07a3\u07a2\u07a1\u07a0\u079f\u079e\u079d\u079c\u079b\u079a\u0799\u0798\u0797\u0796\u0795\u0794\u0793\u0792\u0791\u0790\u078f\u078e\u078d\u078c\u078b\u078a\u0789\u0788\u0787\u0786\u0785\u0784\u0783\u0782\u0781\u0780~}|{zyxwvutsrqponmlkjihgfedcba`_^]\\[ZYXWVU\u000b\u07a3\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\u000b\u07a2\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u000b\u07a1\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\u000b\u07a0\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u000b\u079f\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000b\u079e\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u000b\u079d\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u000b\u079c\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u000b\u079b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000b\u079a\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u000b\u0799\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u000b\u0798\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u000b\u0797\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u000b\u0796\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u000b\u0795\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u000b\u0794\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000b\u0793\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u000b\u0792\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u000b\u0791\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u000b\u0790\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u000b\u078f\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u000b\u078e\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000b\u078d\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000b\u078c\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u000b\u078b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u000b\u078a\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u000b\u0789\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u000b\u0788\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u000b\u0787\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u000b\u0786\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u000b\u0785\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u0784\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u000b\u0783\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u000b\u0782\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000b\u0781\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u000b\u0780\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u000b\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000b~\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u000b}\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u000b|\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u000b{\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u000bz\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u000by\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000bx\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u000bw\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u000bv\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u000bu\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000bt\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u000bs\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u000br\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000bq\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u000bp\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u000bo\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u000bn\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u000bm\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u000bl\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u000bk\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000bj\u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u000bi\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u000bh\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u000bg\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u000bf\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u000be\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u000bd\u0000\b0\u0000\u0004sort\u0000\u0000\u000bc\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000bb\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000ba\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u000b`\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u000b_\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u000b^\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u000b]\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u000b\\\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000b[\u0000\u001c0\u0000\fgettextafter\u0000\fgetTextAfter\u000bZ\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u000bY\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u000bX\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u000bW\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000bV\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u000bU\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\n\u07a4\u0000\b\u000bboovfals\u000e4\u0000\u00015\u0007\u00115\u0007\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000d\u0000s\u0000h\u0000o\u0000c\u0000k\u0000l\u0000e\u0000y\u0000\/\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u000e4\u0000\u0007\u0010T\u0000@SR5\b5\tQ\u000bT\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u000eS\u0000\u0002\u0004P5\n\u0003P\u0000\u0001\u000e5\n\u0000\u0001\u0000O\u000bO\u0000\r0\u0000\tthis_char\u0000\u0000\u0002R\u0000\u0000\u00105\b\u0000\u0005NMLKJ\u000bN\u0000\r0\u0000\tthis_char\u0000\u0000\u000bM\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\u000bL\u0000\f0\u0000\bhex_list\u0000\u0000\u000bK\u0000\u00050\u0000\u0001x\u0000\u0000\u000bJ\u0000\u00050\u0000\u0001y\u0000\u0000\u00105\t\u0000\u0015I\u0000Z\u0000^\u0000b\u0000f\u0000j\u0000n\u0000r\u0000v\u0000z\u0000~\u0000\u0000\u0000\u0000\u0000\u0000HG\u0000F\nI\u0000\u0018.sysoctonshor\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000TEXT\u0003H\u0000\u0010\nG\u0000\u0004\ncobj\nF\u0000\u0004\nTEXT\u0011Q\u0000Lj\f\u0000\u0000EOa\u0000\u0010a\u0000\u0011vEOa\u0000\u0012a\u0000\u0011\"k\u001e\/EOa\u0000\u0012a\u0000\u0011#k\u001e\/EOa\u0000\u0013%%a\u0000\u0014&\u000f\u000f\u000e4\u0000\u0007\u0010E\u0000DC5\u000b5\fB\u000bE\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000eD\u0000\u0002\u0004A5\r\u0003A\u0000\u0003\u000e5\r\u0000\u0003\u0000@?>\u000b@\u0000\r0\u0000\tthis_text\u0000\u0000\u000b?\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u000b>\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u0002C\u0000\u0000\u00105\u000b\u0000\t=<;:98765\u000b=\u0000\r0\u0000\tthis_text\u0000\u0000\u000b<\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u000b;\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u000b:\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u000b9\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u000b8\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u000b7\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u000b6\u0000\u00100\u0000\fencoded_text\u0000\u0000\u000b5\u0000\r0\u0000\tthis_char\u0000\u0000\u00105\f\u0000\t\u0000\u0000\u0000\u0001\u001743210\n4\u0000\u0004\nkocl\n3\u0000\u0004\ncobj\n2\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b1\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\n0\u0000\u0004\nTEXT\u0011B\u0000gEOEOEOEOf\u0000\u001d\u0000\n%EY\u0000\u0003hOf\u0000\u001d\u0000\n%EY\u0000\u0003hOEO\u0017\u0000.[l\f\u0000\u0006kh\u001b\u0000\b\b\u001d\u0000\n%EY\u0000\u000e*k+\u0000\u0007%&E[OYO\u000f\u000f\u000e4\u0000\u0007\u0010\/\u0001@.-5\u000e5\u000f,\u000b\/\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u000e.\u0000\u0002\u0004+5\u0010\u0003+\u0000\u0001\u000e5\u0010\u0000\u0001\u0000*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-\u0000\u0000\u00105\u000e\u0000\n)('&%$#\"! \u000b)\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b(\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000b'\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u000b&\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u000b%\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\u000b$\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u000b#\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u000b\"\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\u000b!\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u000b \u0000\u00160\u0000\tinputdata\u0000\tinputData\u00105\u000f\u0000\u0019\u001f\u001e\u001d\u0001]\u0001e\u0001k\u001c\u0001\u001b5\u0011\u001a\u0001\u0001\u0001\u0019\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0018\u000b\u001f\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0001\u001e\u0000\u0000\u0002\u001d\u0000\u0000\n\u001c\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u001b\u0000\u0004\npcap\u000e5\u0011\u0000\u0000\u0013\n\u001a\u0000\u0004\ndnam\n\u0019\u0000\u0004\nret \n\u0018\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011,\u0000\u0014\u0000\n,EW\u0000\nX\u0000\u0001\u0000\u0002EOEOEO)j\f\u0000\u0006\b\u000b\u001d\u0000Y\u0012\u0000\u0013*k\/[,\\Z>1,EUO\u0000\u001d\u0000\u000e%%%EY\u0000%\u0000\u001d\u0000\fa\u0000\u0010%EY\u0000\u0015a\u0000\u0011\u0000\u001d\u0000\fa\u0000\u0012%EY\u0000\u0003hOa\u0000\u0013%EY\u0000\ra\u0000\u0014EOa\u0000\u0015EOa\u0000\u0016%a\u0000\u0017%EO%%EOj\f\u0000\u0018EO\u000f\u000f\u000e4\u0000\u0007\u0010\u0017\u0001\u0016\u00155\u00125\u0013\u0014\u000b\u0017\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u000e\u0016\u0000\u0002\u0004\u00135\u0014\u0003\u0013\u0000\u0001\u000e5\u0014\u0000\u0001\u0000\u0012\u000b\u0012\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002\u0015\u0000\u0000\u00105\u0012\u0000\f\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u0006\u000b\u0011\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u000b\u0010\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000b\u000f\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u000b\u000e\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u000b\r\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\u000b\f\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u000b\u000b\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u000b\n\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u000b\t\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\b\u0000\r0\u0000\tbackslash\u0000\u0000\u000b\u0007\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\u000b\u0006\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u00105\u0013\u0000#\u0005\u0004\u0003\u0002\u0002\u0015\u0002\u001d\u0002#\u0001\u0002>\u00005\u0011\u0002F\u0002P\u0002R\u0002X\u0002`\u0002f\u0002m\u0002v\u0002}\u0002\u0002\u0002\u0002\u0002\u0002\u000b\u0005\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000b\u0004\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0001\u0003\u0000\u0000\u0002\u0002\u0000\u0000\n\u0001\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0000\u0004\npcap\n\u0000\u0004\ndnam\n\u0000\u0004\nret \n\u0000\u0004\nTEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\u0003\u0000\\\n\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\n\u0000\u0004\ncitm\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011\u0014\u0001*\u0014\u0000\u0010,EO,EW\u0000\nX\u0000\u0002\u0000\u0003EOEOEO)j\f\u0000\u0007\b\u000b\u001d\u0000[\u0012\u0000\u0013*k\/[,\\Z>1,EUO\u0000\u001d\u0000\u000e%%%EY\u0000'a\u0000\u0010\u0000\u001d\u0000\fa\u0000\u0011%EY\u0000\u0015a\u0000\u0012\u0000\u001d\u0000\fa\u0000\u0013%EY\u0000\u0003hOa\u0000\u0014%EY\u0000\ra\u0000\u0015EOa\u0000\u0016EOa\u0000\u0017&EO_\u0000\u0018a\u0000\u0019,EOa\u0000\u001aj\f\u0000\u001bEO_\u0000\u0018a\u0000\u0019,FOa\u0000\u001c-EO%_\u0000\u0018a\u0000\u0019,FOa\u0000\u0017&EOa\u0000\u001d_\u0000\u0018a\u0000\u0019,FOa\u0000\u001c-EOa\u0000\u001e%_\u0000\u0018a\u0000\u0019,FOa\u0000\u0017&EO_\u0000\u0018a\u0000\u0019,FOa\u0000\u001f%a\u0000 %%a\u0000!%EO%%EOj\f\u0000\"OP\u000f\u000e4\u0000\u0007\u0010\u0003\u00165\u00155\u0016\u000b\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u000e\u0000\u0002\u00045\u0017\u0003\u0000\u0001\u000e5\u0017\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\u0015\u0000\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u000b\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u000b\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u00105\u0016\u0000;\u0003(\u00033\u0003\u0003\u00035\u0018\u0003\u0003\u0003\u0003\u0003\u0004a\u0003\u00035\u0011\u0004%\u00046\u0004J\u0004O\u0004Q\u077f\u0004i\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0003\u0000\n\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\n\u0000\u0004\nmin \u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\n\u0000\u0004\nnull\u000b\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\n\u0000\u0004\ndire\n\u0000\b\u000bolierndD\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u0000\u0004\ncDB \n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0018\u0000\u0003\u077e\u077d\u077c\n\u077e\u0000\u0004\nerrn\u000b\u077d\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u077c\u0000\u0000\u0003\u0000\u0005\u000b\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\npcap\n\u0000\u0004\nmbar\n\u0000\u0004\nmbri\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0004\nenaB\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u000040\u0000\u0018fmgui_managescripts_open\u0000\u0018fmGUI_ManageScripts_Open\u000b\u0000\u001c0\u0000\ffmscriptname\u0000\ffmScriptName\u000b\u0000J0\u0000#fmgui_managescripts_fmscript_select\u0000#fmGUI_ManageScripts_FmScript_Select\n\u0000\u0004\ncwin\n\u0000\u0004\nbutT\n\u0000\u0004\ndesc\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0000\u0004\npnam\n\u0000\u0004\nerrn\u0003\u0004\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u077f\u000060\u0000\u0019fmgui_managescripts_close\u0000\u0019fmGUI_ManageScripts_Close\u0011\u0001 \u000eEO%EO,EO,EO,EO!l\f\u0000\fEO\u0014\u0001,\u0001\u001d\u0000_\u0014\u00005\u0012\u0000-*\/j\f\u0000\u000fOb\u0000\u0001\u0000\u0000\u001d\u0000\u0018)b\u0000\u0001\u0000\u0001a\u0000\u0010%a\u0000\u0011%l+\u0000\u0012Y\u0000\u0003hOe\u000fUW\u0000&X\u0000\u0013\u0000\u0014b\u0000\u0001\u0000\u0000\u001d\u0000\u0018)a\u0000\u0015a\u0000\u0016%a\u0000\u0017%%l+\u0000\u0018Y\u0000\u0003hY\u0000\u0003hO*j+\u0000\u0019O,a\u0000\u001a\u0000\u001d\u0000\na\u0000\u001bEY\u0000\u0007a\u0000\u001cEOa\u0000\u001d\u0012\u0000*a\u0000\u001e\/\u0012\u0000fEO\u0017\u0000:kh\u0018*a\u0000\u001fk\/a\u0000 a\u0000!\/a\u0000\"k\/a\u0000#a\u0000$\/a\u0000%,EO\u001d\u0000\u0006\u0016Y\u0000\u0003hOj\f\u0000&[OYO\u0014\u0000_\u001d\u0000=)jvk+\u0000'O)a\u0000(,l\u000ek+\u0000)O*a\u0000*k\/a\u0000+k\/a\u0000,[a\u0000-,\\Za\u0000.81EOj\f\u0000\/Y\u0000\u001d*a\u0000*k\/a\u00000,EO)a\u00001a\u00002la\u00003%\u0015W\u0000FX\u00004\u00005b\u0000\u0001\u0000\u0000\u001d\u0000 *b\u0000\u0001\u0000\u0001a\u00006,%a\u00007%%a\u00008%l+\u0000\u0012Y\u0000\u0003hO)jvk+\u00009O*a\u0000*k\/a\u0000+k\/j\f\u0000\/OPUUW\u0000\u0013X\u0000\u0013\u0000\u0014)a\u00001la\u0000:%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u077b\u0004t\u077a\u07795\u00195\u001a\u0778\u000b\u077b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000e\u077a\u0000\u0002\u0004\u07775\u001b\u0003\u0777\u0000\u0001\u000e5\u001b\u0000\u0001\u0000\u0776\u000b\u0776\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0779\u0000\u0000\u00105\u0019\u0000\f\u0775\u0774\u0773\u0772\u0771\u0770\u076f\u076e\u076d\u076c\u076b\u076a\u000b\u0775\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0774\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0773\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0772\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b\u0771\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0770\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u076f\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u000b\u076e\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u000b\u076d\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u076c\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b\u076b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u000b\u076a\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u00105\u001a\u00000\u0769\u0004\u0768\u0767\u0766\u0765\u0764\u0004\u0763\u0762\u0761\u0760\u075f\u075e\u0004\u0004\u0004\u075d\u0004\u075c\u075b\u075a\u07595\u001c\u0758\u0757\u0005\u0016\u0756\u0755\u0754\u0753\u0752\u0751\u0750\u074f\u074e\u074d\u074c\u0005E\u074b\u074a\u0749\u0748\u0005_\u0747\u0005\u0005\u0005\u000b\u0769\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u000b\u0768\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0003\u0767\u0000\u0005\u000b\u0766\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\n\u0765\u0000\u0004\nmin \u0003\u0764\u0000\u0006\u000b\u0763\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000b\u0762\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u0761\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\n\u0760\u0000\u0004\ndire\n\u075f\u0000\b\u000bolierndD\n\u075e\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u075d\u0000\u0004\nnull\n\u075c\u0000\u0004\ncapp\n\u075b\u0000\b\u000bkfrmID \n\u075a\u0000\u0004\ndocu\u000b\u0759\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u001c\u0000\u0003\u0746\u0745\u0744\n\u0746\u0000\u0004\nerrn\u000b\u0745\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0744\u0000\u0000\u0003\u0758\n\u0757\u0000\u0004\nerrn\n\u0756\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0755\u0000\u0004\nkocl\n\u0754\u0000\u0004\ncobj\n\u0753\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0752\u0000\u0004\npnam\n\u0751\u0000\u0004\ncha \n\u0750\u0000\u0004\nrvse\n\u074f\u0000\u0004\nTEXT\n\u074e\u0000\u0004\nrslt\n\u074d\u0000\u0004\nctxt\n\u074c\u0000\u0004\npsof\n\u074b\u0000\u0004\npsin\u0003\u074a\u0000\u0004\n\u0749\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0748\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0747\u0000\u0018.miscmvisnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0778\u0001\u0014\u0001l \u000eEO%EOb\u0000\u0001\u0000\u0000\u001d\u0000\u0017*b\u0000\u0001\u0000\u0001*k+\u0000\b%l+\u0000\tY\u0000\u0003hO,EO,EO,EO!l\f\u0000\rEO,\u0000\u001d\u0000\bEY\u0000\u0007a\u0000\u0010EO\u0017\u0000bkh\u0018a\u0000\u0011EO\u0014\u0000-a\u0000\u0012Z*a\u0000\u0013a\u0000\u00140\u0012\u0000\t*a\u0000\u0015-EUOa\u0000\u0011\u0001\u001d\u0000\u0006\u0016Y\u0000\u0003hOPW\u0000\u001fX\u0000\u0016\u0000\u0017a\u0000\u0018\u0000\u001d\u0000\u0006hY\u0000\u000e)a\u0000\u0019la\u0000\u001a%\u0015Oj\f\u0000\u001b[OYO\u0017\u0000\u07e7[a\u0000\u001ca\u0000\u001dl\f\u0000\u001ekh\u001b\u0000\na\u0000\u001f,EOa\u0000 -a\u0000!,a\u0000\"&O_\u0000#[a\u0000$\\[Z*a\u0000%a\u0000&a\u0000'_\u0000#a\u0000(\f\u0000)k\u001e\\Zi2EO_\u0000#a\u0000 -a\u0000!,a\u0000\"&EOb\u0000\u0001\u0000\u0000\u001d\u0000\nj\f\u0000*Y\u0000\u0003hOb\u0000\u0001\u0000\u0000\u001d\u0000\nj\f\u0000*Y\u0000\u0003hOga\u0000+\u0013\u0000Qa\u0000\"&a\u0000\"&\u0000\u001d\u0000Aa\u0000\u0012Z*a\u0000\u0013a\u0000\u00140\u0012\u0000*j\f\u0000,Ob\u0000\u0001\u0000\u0000\u001d\u0000\u0019)b\u0000\u0001\u0000\u0001a\u0000-)k+\u0000\b%l+\u0000\tY\u0000\u0003hOPUOe\u000fY\u0000\u0003hV[OY3Of\u000fOPW\u0000\u0019X\u0000\u0016\u0000\u0017)a\u0000\u0019la\u0000.%a\u0000\/%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0743\u0005\u0742\u07415\u001d5\u001e\u0740\u000b\u0743\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u000e\u0742\u0000\u0002\u00045\u001f\u0003\u0000\u0001\u000e5\u001f\u0000\u0001\u0000~\u000b~\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0741\u0000\u0000\u00105\u001d\u0000\u0003}|{\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b|\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b{\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u00105\u001e\u0000\rzy\u0005xw\u0005v\u0006\u0007u\u0006\u001at\u0006%\u00061\u000bz\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000by\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u0003x\u0000\u0004\u000bw\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000bv\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000bu\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\nt\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0740\u0000,EO*\u000ek+\u0000\u0004EOb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO\u001d\u0000\u0007e\u000fY\u0000Zb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO*k+\u0000\b\u001d\u00005j\f\u0000\nOb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO*\u000ek+\u0000\u0004EO\u000fY\u0000\u0004f\u000f\u000f\u000e4\u0000\u0007\u0010s\u0006Drq5 5!p\u000bs\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u000er\u0000\u0002\u0004o5\"\u0003o\u0000\u0001\u000e5\"\u0000\u0001\u0000n\u000bn\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002q\u0000\u0000\u00105 \u0000\u0005mlkji\u000bm\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bl\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u000bk\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u000bj\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bi\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105!\u0000\u0016\u0006]h\u0006a\u0006\u0006~g\u0006f\u0006e\u0006d\u0006\u0006c\u0006\u0006\u0006ba`5#\u000bh\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000bg\u0000\u00140\u0000\bserverip\u0000\bserverIP\u000bf\u0000\u00180\u0000\nmaindbname\u0000\nmainDbName\u000be\u0000<0\u0000\u001ccustomlinkreceiverscriptname\u0000\u001ccustomLinkReceiverScriptName\u000bd\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000bc\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000bb\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\na\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b`\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065#\u0000\u0003_^]\n_\u0000\u0004\nerrn\u000b^\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006]\u0000\u0000\u0011p\u0000\u0014\u0000w,%%EO\u0012\u0000`,%%,%%,%%)efm+\u0000\u000b%EO)mvk+\u0000\u000eEO)a\u0000\u0010mvk+\u0000\u000eEOb\u0000\u0001\u0000\u0000\u001d\u0000\u0014)b\u0000\u0001\u0000\u0001a\u0000\u0011%l+\u0000\u0012Y\u0000\u0003hOj\f\u0000\u0013OPUOe\u000fOPW\u0000\u000bX\u0000\u0014\u0000\u0015\u000fOPOP\u000f\u000e4\u0000\u0007\u0010\\\u0006[Z5$5%Y\u000b\\\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u000e[\u0000\u0002\u0004X5&\u0003X\u0000\u0002\u000e5&\u0000\u0002\u0000WV\u000bW\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u000bV\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002Z\u0000\u0000\u00105$\u0000\u0007UTSRQPO\u000bU\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u000bT\u0000\u00140\u0000\bitemname\u0000\bitemName\u000bS\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u000bR\u0000\u00160\u0000\tendstring\u0000\tendString\u000bQ\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000bP\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\u000bO\u0000\u00160\u0000\titemvalue\u0000\titemValue\u00105%\u0000\n\u0007\u000eN\u0007\u0012\u0007\u0018\u0007%MLK\u0007EJ\u000bN\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\nM\u0000\u0004\nascr\nL\u0000\u0004\ntxdl\nK\u0000\u0004\ncitm\u000bJ\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0011Y\u0000Y*k+\u0000\u0001%%EOEO\b\u000b\u001d\u0000\u0007\u000fY\u00003,EO,FOl\/EO\b\u000b\u001d\u0000\u0007\u000fY\u0000\u0014,FOk\/EO,FO*k+\u0000\t\u000fOP\u000f\u000e4\u0000\u0007\u0010I\u0007lHG5'5(F\u000bI\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u000eH\u0000\u0002\u0004E5)\u0003E\u0000\u0002\u000e5)\u0000\u0002\u0000DC\u000bD\u0000\u00140\u0000\bitemname\u0000\bitemName\u000bC\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002G\u0000\u0000\u00105'\u0000\u0002BA\u000bB\u0000\u00140\u0000\bitemname\u0000\bitemName\u000bA\u0000\u00160\u0000\titemvalue\u0000\titemValue\u00105(\u0000\u0004\u0007@\u0007\u0007\u000b@\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0011F\u0000\u0015*k+\u0000\u0001%%*k+\u0000\u0001%%\u000f\u000f\u000e4\u0000\u0007\u0010?\u0007>=5*5+<\u000b?\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u000e>\u0000\u0002\u0004;5,\u0003;\u0000\u0001\u000e5,\u0000\u0001\u0000:\u000b:\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002=\u0000\u0000\u00105*\u0000\u0003987\u000b9\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u000b8\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u000b7\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u00105+\u0000\n\u0007\u0007\u0007\u00076543\u00072\u00036\u0000\u0004\n5\u0000\u0004\nkocl\n4\u0000\u0004\ncobj\n3\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b2\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0011<\u00004vEO\u0017\u0000$[l\f\u0000\u0007kh\u001b\u0000\u0002*%mvk+\u0000\tEOP[OYO\u000fOP\u000f\u000e4\u0000\u0007\u00101\u00070\/5-5..\u000b1\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u000e0\u0000\u0002\u0004-5\/\u0003-\u0000\u0001\u000e5\/\u0000\u0001\u0000,\u000b,\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\/\u0000\u0000\u00105-\u0000\u0003+*)\u000b+\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u000b*\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u000b)\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u00105.\u0000\n\u0007\u0007\u0007\u0007('&%\b\u000b$\u0003(\u0000\u0004\n'\u0000\u0004\nkocl\n&\u0000\u0004\ncobj\n%\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b$\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0011.\u00004vEO\u0017\u0000$[l\f\u0000\u0007kh\u001b\u0000\u0002*%mvk+\u0000\tEOP[OYO\u000fOP\u000f\u000e4\u0000\u0007\u0010#\b\u001c\"!5051 \u000b#\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000e\"\u0000\u0002\u0004\u001f52\u0003\u001f\u0000\u0001\u000e52\u0000\u0001\u0000\u001e\u000b\u001e\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002!\u0000\u0000\u001050\u0000\u0006\u001d\u001c\u001b\u001a\u0019\u0018\u000b\u001d\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u001c\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u001b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b\u001a\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u000b\u0019\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0018\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u001051\u0000\"\u0017\u0016\u0015\u0014\bT\u0013\b\u0012\b\u0011\u0010\u000f\u000e\r5\u0011\f\u000b\n\t\b\b\b\u0007\u0006\u0005\u0004\b\b\b\u000353\u0002\b\b\u000b\u0017\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\n\u0016\u0000\u0004\nnull\u000b\u0015\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0003\u0014\u0000\u0004\u000b\u0013\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\n\u0012\u0000\u0004\npcap\u000b\u0011\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0010\u0000\u0004\ncwin\n\u000f\u0000\u0004\nscra\n\u000e\u0000\u0004\ntabB\n\r\u0000\u0004\ncrow\n\f\u0000\u0004\nsttx\n\u000b\u0000\u0004\npnam\n\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n\t\u0000\u0004\nbutT\u000b\b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n\u0007\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0006\u0000\u0004\ntxtf\n\u0005\u0000\u0004\nvalL\n\u0004\u0000\u0004\ntxta\u000b\u0003\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000653\u0000\u0003\u0001\u0000\n\u0001\u0000\u0004\nerrn\u000b\u0000\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0002\u0000\u0004\nerrn\u0011 \u0001\u0005\u000eEO%EO,EO,EO\u0000\u001d\u0000\n%EY\u0000\u0003hO\u0014\u0000*jvk+\u0000\u0005O\u0012\u0000*\/\u0012\u0000)j+\u0000\tO*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0011\u000b\u001d\u0000v)*k\/a\u0000\u0012k\/[a\u0000\u0010,\\Za\u0000\u0013>1k+\u0000\u0014Oa\u0000\u0015j\f\u0000\u0016O*k\/a\u0000\u0017k\/a\u0000\u0018,FO*k\/k\/a\u0000\u0019k\/a\u0000\u0018,FO)*k\/a\u0000\u0012k\/[a\u0000\u0010,\\Za\u0000\u001a>1k+\u0000\u0014Oa\u0000\u0015j\f\u0000\u0016Oa\u0000\u001b%\u000fY\u0000\ba\u0000\u001c%\u000fUUOPW\u0000\u0019X\u0000\u001d\u0000\u001e)a\u0000\u001fla\u0000 %a\u0000!%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\t\u00075455\u000b\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u000e\u0000\u0002\u000456\u0003\u0000\u0001\u000e56\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u001054\u0000\u0006\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u001055\u0000#\t?\t\t5\u0011\t\t\t\t\t57\t\t\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\n\u0000\u0004\nnull\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0003\u0000\u0004\u000b\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\ntabB\n\u0000\u0004\ncrow\n\u0000\u0004\nsttx\n\u0000\u0004\npnam\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\n\u0000\u0004\nbutT\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\ntxtf\n\u0000\u0004\nvalL\n\u0000\u0004\ntxta\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000657\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0001&\u000eEO%EO,EO,EO\u0000\u001d\u0000\n%EY\u0000\u0003hO\u0014\u0000*jvk+\u0000\u0005O\u0012\u0000*\/\u0012\u0000)j+\u0000\tO*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0011\u001d\u0000*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0012O)*k\/a\u0000\u0013k\/[a\u0000\u0010,\\Za\u0000\u0014>1k+\u0000\u0015Oa\u0000\u0016j\f\u0000\u0017O*k\/a\u0000\u0018k\/a\u0000\u0019,FO*k\/k\/a\u0000\u001ak\/a\u0000\u0019,FO)*k\/a\u0000\u0013k\/[a\u0000\u0010,\\Za\u0000\u001b>1k+\u0000\u0015Oa\u0000\u0016j\f\u0000\u0017Oa\u0000\u001c%\u000fY\u0000\na\u0000\u001d%\u000fOPUUOPW\u0000\u0019X\u0000\u001e\u0000\u001f)a\u0000 la\u0000!%a\u0000\"%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\n\u00045859\u000b\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u000e\u0000\u0002\u00045:\u0003\u0000\u0001\u000e5:\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u001058\u0000\u0003\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u001059\u0000\u0014\nT\nR\n-\nH\n@5\u0011\nM5;\n\\\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\npnam\n\u0000\u0004\nmbar\n\u0000\u0004\nmbri\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065;\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000`\u0014\u0000K\u0012\u0000C*\/\u0012\u0000;)j+\u0000\u0003O*k\/,\u0006\u001d\u0000\u0007e\u000fY\u0000%*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOe\u000fUUW\u0000\u0013X\u0000\u0010\u0000\u0011)a\u0000\u0012la\u0000\u0013%\u0015OP\u000f\u000e4\u0000\u0007\u0010\ng\u073f5<5=\u073e\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u000e\u0000\u0002\u0004\u073d5>\u0003\u073d\u0000\u0001\u000e5>\u0000\u0001\u0000\u073c\u000b\u073c\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u073f\u0000\u0000\u00105<\u0000\t\u073b\u073a\u0739\u0738\u0737\u0736\u0735\u0734\u0733\u000b\u073b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u073a\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0739\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\u000b\u0738\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0737\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b\u0736\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u0735\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u000b\u0734\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0733\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105=\u0000!\u0732\n\u0731\u0730\u072f\u072e\u072d\u000b4\u072c\u000b\u0007\u072b\u072a\u0729\u0728\n\u0727\u0726\u07255?\u0724\n\u0723\n\u0722\u0721\u000b\u0018\u0720\u000b\u001c\u071f\u071e\u071d\u071c\u000b<\u000b\u0732\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\u0003\u0731\u0000\u0005\n\u0730\u0000\u0004\nmin \n\u072f\u0000\u0004\ndire\n\u072e\u0000\b\u000bolierndD\n\u072d\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u072c\u0000\u0004\npcap\u000b\u072b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u072a\u0000\u0004\ncwin\n\u0729\u0000\u0004\npnam\n\u0728\u0000\u0004\nbutT\n\u0727\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0726\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0725\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065?\u0000\u0003\u071b\u071a\u0719\n\u071b\u0000\u0004\nerrn\u000b\u071a\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0719\u0000\u0000\n\u0724\u0000\u0004\nerrn\u0003\u0723\u0004\u0000\u000b\u0722\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b\u0721\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0720\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u071f\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u071e\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u071d\u0000\n\u000b\u071c\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011\u073e\u0000el\u000eEO%EOEOEO EO!l\f\u0000\u0006EO\u0014\u0000\u0012\u0000*\/\u0012\u0000c)j+\u0000\nO*k\/,\u0006\u001d\u00008\u0014\u0000!*k\/,EO*k\/\/j\f\u0000\u000fOkj\f\u0000\u0010OPW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000\u0014%\u0015Y\u0000\u001a,E\u001d\u0000\u0011)a\u0000\u0013a\u0000\u0015la\u0000\u0016\u0015Y\u0000\u0004e\u000fOPUO)a\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000ek+\u0000\u001fOkj\f\u0000\u0010Oe\u000fOPUW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000 %\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0718\u000bG\u0717\u07165@5A\u0715\u000b\u0718\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u000e\u0717\u0000\u0002\u0004\u07145B\u0003\u0714\u0000\u0001\u000e5B\u0000\u0001\u0000\u0713\u000b\u0713\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0716\u0000\u0000\u00105@\u0000\u0016\u0712\u0711\u0710\u070f\u070e\u070d\u070c\u070b\u070a\u0709\u0708\u0707\u0706\u0705\u0704\u0703\u0702\u0701\u0700~}\u000b\u0712\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0711\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0710\u0000\u00140\u0000\beditmode\u0000\beditMode\u000b\u070f\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u000b\u070e\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u000b\u070d\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u000b\u070c\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u000b\u070b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u000b\u070a\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u000b\u0709\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u000b\u0708\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u000b\u0707\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u000b\u0706\u0000\u000b0\u0000\u0007fdsfdsf\u0000\u0000\u000b\u0705\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u000b\u0704\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u000b\u0703\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u000b\u0702\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u000b\u0701\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u000b\u0700\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u000b\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u000b~\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b}\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105A\u0000|\u000b`{zyxwvutsrqponmlkjihgfedcba`_^\u0019\n]\u0019\b\\[ZY5\u0011X\f\u0017W\f5VU\fCT\fNSR\faQ\fp\ft\f~\f\fPO\f\f\f\f\r\u0003N\r\u0015ML\r2\rC\rhK\rtJ\rIHG\r\rF\u000e\u0000E\u000e#\u000e6\u000eP\u000e\u000eD\u000eC\u000eBA\u000e\u000e\u000e\u000e\u000e\u000f*\u000f7\u000fA\u000fP\u000fZ\u000fh\u000f\u000f\u000f\u000f\u000f\u000f\u0010\u0003\u0010\u0010\u0010\u0014\u0010\u0017\u0010)\u0010~\u0010\u0010\u0011\u0018\u00114\u0011E\u0011g\u0011r\u0011v\u0011y\u0011@\u0011\u0011\u0012\u000b\u0012\u0015\u0012&?\u0012a\u0012r\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0013\u0001\u0013\u000e\u0013\u0018\u0013'\u00131\u0013?\u0013_\u0013\u0013>\u0013\u0013\u0014\u000e=\u0014%<;\u00149\u0014C\u0014N\u0014Y\u0014}\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0015\u0005\u0015\u0013\u0015\u0017\u0015\u001f\u0015%\u0015-\u00153\u0015;\u0015A\u0015I\u0015O\u0015W\u0015\\\u0015h\u0015t\u0015\u0015\u0015\u0015\u0016\u0004\u0015\u0016W\u0016f\u0016\u0016:\u0016\u0016\u0017\u001c\u0017F\u0017S\u0017W\u0017Z\u0017\u0017\u0018\u0001\u0018\u0019\u0018*\u0018N\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u001895C\u0019 8\u0019$\u000b|\u0000\u00140\u0000\beditmode\u0000\beditMode\u000b{\u0000\u00160\u0000\ttablename\u0000\ttableName\nz\u0000\u0004\nnull\u000by\u0000\u00160\u0000\tfieldname\u0000\tfieldName\u000bx\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\u000bw\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\u000bv\u0000\u00140\u0000\bdatatype\u0000\bdataType\u000bu\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\u000bt\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\u000bs\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\u000br\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\u000bq\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\u000bp\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\u000bo\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\u000bn\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\u000bm\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\u000bl\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\u000bk\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\u000bj\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\u000bi\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\u000bh\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\u000bg\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\u000bf\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\u000be\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\u000bd\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\u000bc\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\u000bb\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\u000ba\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\u000b`\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\u0003_\u00008\u000b^\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\n]\u0000\u0004\npcap\u000b\\\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n[\u0000\u0004\ncwin\nZ\u0000\u0004\ntabg\nY\u0000\u0004\nbutT\nX\u0000\u0004\ntitl\nW\u0000\u0004\ntxtf\u000bV\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\nU\u0000\u0018.prcsclicnull\u0000\u0000uiel\nT\u0000\u0018.sysodelanull\u0000\u0000nmbr\nS\u0000\u0004\nbool\nR\u0000\u0004\npopB\nQ\u0000\u0004\nvalL\nP\u0000\u0004\nerrn\u0003O\u0004\u0000\u000bN\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000bM\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\nL\u0000\u0004\npnam\u000bK\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000bJ\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\nI\u0000\u0004\nscra\u0003H\u0000\u0004\nG\u0000\u0004\ntxta\nF\u0000\u0004\nchbx\u000bE\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000bD\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000bC\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u0003B\u0000\u0006\u000bA\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\n@\u0000\u0004\nradB\u000b?\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\n>\u0000\u0004\npcls\u000b=\u0000\u001e0\u0000\rautonextvalue\u0000\rautoNextValue\u000b<\u0000\u001e0\u0000\rautoincrement\u0000\rautoIncrement\u000b;\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\n:\u0000\u0004\nleng\u000b9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065C\u0000\u0003765\n7\u0000\u0004\nerrn\u000b6\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00065\u0000\u0000\u000b8\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0011\u0715\u000fa\u0000\u0010a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000eEO%EO,EO,\u0001\u001d\u0000\fea\u0000\u0017,FY\u0000\u0003hO\u0014\u000f\u001a*k+\u0000\u001fEO\u000b\u001d\u0000\u0007f\u000fY\u0000\u0003hOa\u0000 \u0012\u000e*a\u0000!a\u0000\"\/\u0012\u000e)j+\u0000#O*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000(,\\Za\u0000)81EO,\u0001\u001d\u00003)*a\u0000$k\/a\u0000%k\/a\u0000*a\u0000+\/,l+\u0000,\u001d\u0000\nj\f\u0000-Y\u0000\u0003hOa\u0000.j\f\u0000\/Y\u0000\u0003hOa\u00000\u0000\t\u0000\u000b,\u0000a\u00001&\u001d\u0000M*a\u0000$k\/a\u0000%k\/a\u00002a\u00003\/EOa\u00004,a\u00005\u0000\u001d\u0000\fa\u00006,FY\u0000\u001fa\u00004,a\u00007\u0000\u001d\u0000\fa\u00008,FY\u0000\ta\u00009,FY\u0000\u0003hO,\u0000\u001d\u0000\u0013)a\u0000:a\u0000;la\u0000<\u0015OPY\u000e\u000b,a\u0000=\u0000\u001d\u0004D*a\u0000$k\/a\u0000%k\/a\u00002a\u0000>\/EOa\u00004,a\u0000?\u0001\u001d\u0000c)a\u0000@l+\u0000AO)*a\u0000$k\/a\u0000%k\/a\u0000&a\u0000B\/k+\u0000COa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000E\u0006\u000b\u001d\u0000!)*a\u0000$k\/a\u0000&a\u0000F\/k+\u0000COa\u0000.j\f\u0000\/OPY\u0000\u0003hOPY\u00006)*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000G>1k+\u0000CO)a\u0000Ha\u0000Il\u000ek+\u0000JOPOa\u0000K\u0000\n\u0000\u000b,\u0001a\u00001&\u001d\u0000\u001f)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/,l+\u0000,Y\u0000\u0003hO,\u0001\u001d\u0000')*a\u0000$k\/a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000O@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u0000')*a\u0000$k\/a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000P@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u0000:*a\u0000$k\/a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000R@1EO,E\u001d\u0000\f)jl+\u0000SY\u0000\t)kl+\u0000SY\u0000\u0003hOa\u0000T\u0000\n\u0000\ra\u0000\u0012,\u0001a\u00001&\u001d\u0000))*a\u0000$k\/a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000U@1a\u0000\u0012,l+\u0000,Y\u0000\u0003hOa\u0000V\u0000\n\u0000\u000b,\u0001a\u00001&\n\u0000\u000b,\u0001a\u00001&\n\u0000\ra\u0000\u0013,\u0001a\u00001&\n\u0000\ra\u0000\u0011,\u0001a\u00001&\u001d\u0001)*a\u0000$k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000W@1k+\u0000CO)a\u0000Ha\u0000Xa\u0000Ya\u0000Za\u0000[a\u0000\\a\u0000]\u000ek+\u0000^O*a\u0000$k\/EOa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000_@1EOa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000`@1EOa\u0000a\u0000\u001d\u00006,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000b\u0015Y\u0000\u0003hO,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000c\u0015Y\u0000\u0003hY\u0000\u0003hO,E\u001d\u0000\u000e)kl+\u0000SOPY\u0000,\u000b\u001d\u0000\u000e)kl+\u0000SOPY\u0000p)jl+\u0000SO)jl+\u0000SOa\u0000\u0010,a\u0000d\u0000\u001d\u0000\u0015)a\u0000Qa\u0000e\/kl+\u0000SOPY\u0000Aa\u0000\u0010,a\u0000f\u0000\u001d\u0000\u0015)a\u0000Qa\u0000g\/kl+\u0000SOPY\u0000\"a\u0000\u0010,a\u0000h\u0000\u001d\u0000\u0015)a\u0000Qa\u0000i\/kl+\u0000SOPY\u0000\u0003hOa\u0000\u0013,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000j@1a\u0000\u0013,l+\u0000AY\u0000\u0003hOa\u0000\u0011,\u0001\u001d\u00009a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000k@1EOa\u0000\u0011,E\u001d\u0000\f)kl+\u0000SY\u0000\t)jl+\u0000SOPY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000l@1k+\u0000CO)a\u0000Ha\u0000ma\u0000Ya\u0000na\u0000[a\u0000oa\u0000]\u000ek+\u0000^OPY\u0000\u0003hO*a\u0000$k\/EO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000p@1k+\u0000CO)a\u0000Ha\u0000qa\u0000Ya\u0000ra\u0000[a\u0000sa\u0000]\u000ek+\u0000^Oe\u000fOPY\t,a\u0000t\u0000\u001d\u0000\u0006hY\t,a\u0000u\u0000\u001d\ta\u0000v\u0000\n\u0000\u000b,\u0001a\u00001&\u001d\u0000*a\u0000$k\/a\u0000%k\/a\u00002a\u0000w\/EOa\u00004,,\u0001\u001d\u0000_),l+\u0000AO)*a\u0000$k\/a\u0000%k\/a\u0000&a\u0000x\/k+\u0000COa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000y\u0006\u000b\u001d\u0000\u001f)*a\u0000$k\/a\u0000&a\u0000z\/k+\u0000COa\u0000.j\f\u0000\/Y\u0000\u0003hY\u0000\u0003hY\u0000\u0003hO)*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000{>1k+\u0000CO)a\u0000Ha\u0000|a\u0000Ya\u0000}a\u0000[a\u0000~a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOa\u0000\u0000\n\u0000\u000b,\u0001a\u00001&\n\u0000\ra\u0000\u0010,\u0001a\u00001&\n\u0000\ra\u0000\u0013,\u0001a\u00001&\n\u0000\ra\u0000\u0011,\u0001a\u00001&\u001d\u0002\u0015a\u0000a\u0000\/j\f\u0000-O)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u0012,l+\u0000,Oa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0000\u001d\u0000\u001d,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000\u0015Y\u0000\u0003hY\u0000\u0003hO,E\u001d\u0000ja\u00004,k\u0001\u001d\u0000Z)k+\u0000Oa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000\u0006\u000b\u001d\u00005)*a\u0000$k\/a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^OPY\u0000\u0003hY\u0000\u0003hOPY\u0000\u01a8a\u00004,j\u0001\u001d\u0000\\)k+\u0000Oa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000\u0006\u000b\u001d\u00005)*a\u0000$k\/a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^OPY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOY\u0000Aa\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOPY\u0000\"a\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOPY\u0000\u0003hOa\u0000\u0013,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u0013,l+\u0000AY\u0000\u0003hOa\u0000\u0011,\u0001\u001d\u00009a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0011,E\u001d\u0000\f)kl+\u0000SY\u0000\t)jl+\u0000SOPY\u0000\u0003hOPY\u0000\u0003hO*a\u0000$k\/a\u0000%k\/EOa\u0000a\u0000\/j\f\u0000-Oa\u0000\u001a,\u0001\u001d\u0000\u00a0a\u0000\u001a,a\u0000,a\u00001\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/jl+\u0000SY\u0000)a\u0000Qa\u0000\/kl+\u0000SO)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001a,a\u0000,l+\u0000,O)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001a,a\u0000,l+\u0000,Oa\u0000\u001a,a\u0000,a\u0000\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/kl+\u0000SY\u0000$a\u0000\u001a,a\u0000,a\u0000\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/kl+\u0000SY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0019,\u0001\u001d\u0001\u0620a\u0000\u0019,a\u0000\u0000\u001d\u0000\")a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1kl+\u0000SOPY\u0001a\u0000\u0019,a\u0000\u0006\u001d\u0000a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000ga\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000Sa\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000?a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000+a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0017a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0003hO)a\u00002a\u0000\/l+\u0000AOPY\u0001\u000ea\u0000\u0019,a\u0000\u0006\u001d\u0000a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000ga\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000Sa\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000?a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000+a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0017a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0003hO)a\u00002a\u0000\/l+\u0000AOPY\u0000ua\u0000\u0019,a\u0000\u0000\u001d\u0000Z)a\u0000Qk\/a\u0000'[a\u0000(,\\Za\u000081jl+\u0000SO)a\u0000Qk\/a\u0000'[a\u0000(,\\Za\u000081jl+\u0000SO)a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1jl+\u0000SOPY\u0000\u0011a\u0000\u0019,\u0000\u001d\u0000\u0006hY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0016,\u0001\u001d\u0000aa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0016,E\u001d\u00004)kl+\u0000SOa\u0000\u001b,\u0000\u001d\u0000\u0006hY\u0000\u001b)a\u0000La\u0000\/a\u0000Na\u0000\/a\u0000\u001b,l+\u0000,Y\u0000\t)jl+\u0000SOPY\u0000\u0003hOa\u0000\u0018,\u0001\u001d\u0000\u0006hY\u0000\u0003hOa\u0000\u0017,\u0001\u001d\u0001a\u0000\u0017,\u000b\u001d\u0000\u0015)a\u0000Qa\u0000\/jl+\u0000SOPY\u0001a\u0000Qa\u0000\/EOa\u00004,k\u0001\u001d\u0000\u000b)k+\u0000CY\u0000\u001c)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000>1k+\u0000CO)a\u0000Ha\u0000l\u000ek+\u0000JO*a\u0000$k\/EO,a\u0000,j\u0000\u001d\u0000\fa\u0000E^\u0000\u0010Y\u0000\t,E^\u0000\u0010O)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/]\u0000\u0010l+\u0000,O,\u0001\u001d\u0000\")a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u00005a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EO,E\u001d\u0000\f)jl+\u0000SY\u0000\t)kl+\u0000SY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOa\u0000\u0015,\u0001\u001d\u0000=a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1E^\u0000\u0011Oa\u0000\u0015,E\u001d\u0000\u000e)]\u0000\u0011jl+\u0000SY\u0000\u000b)]\u0000\u0011kl+\u0000SY\u0000\u0003hOPOPY\u0000\u0003hOa\u0000\u0014,\u0001\u001d\u0000=a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1E^\u0000\u0012Oa\u0000\u0014,E\u001d\u0000\u000e)]\u0000\u0012jl+\u0000SY\u0000\u000b)]\u0000\u0012kl+\u0000SY\u0000\u0003hOa\u0000a\u0000\/j\f\u0000-Oa\u0000\u001c,\u0001\u001d\u0000)a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000l\u000ek+\u0000JO*a\u0000$k\/EOa\u0000\u001c,a\u0000,j\u0000\u001d\u0000\fa\u0000E^\u0000\u0013Y\u0000\u000ba\u0000\u001c,E^\u0000\u0013O)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/]\u0000\u0013l+\u0000,Oa\u0000\u001d,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001d,l+\u0000AY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOPY\u0000\u0003hO)*a\u0000$k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^Oe\u000fOPY\u0000\u0003hOe\u000fOPUUOPW\u0000\"X\u0000\u0000)a\u0000:]\u0000\u0015la\u0000*k+\u0000%a\u0000%]\u0000\u0014%\u0015OP\u000f\u000e4\u0000\u0007\u00104\u00191325D5E1\u000b4\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u000e3\u0000\u0002\u000405F\u00030\u0000\u0001\u000e5F\u0000\u0001\u0000\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022\u0000\u0000\u00105D\u0000\u0011.-,+*)('&%$#\"! \u001f\u001e\u000b.\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b-\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b,\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\u000b+\u0000\u00180\u0000\nselectcode\u0000\nselectCode\u000b*\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\u000b)\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\u000b(\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\u000b'\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\u000b&\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\u000b%\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\u000b$\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b#\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b\"\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u000b!\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\u000b \u0000\u00140\u0000\btestlist\u0000\btestList\u000b\u001f\u0000\u00140\u0000\btestcode\u0000\btestCode\u000b\u001e\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\u00105E\u00004\u001d\u001c\u001b\u001a\u0019\u0019]\u0018\u0019`\u0019f\u0019l\u0019r\u0019x\u0019\u0019\u0019\u0019\u0017\u0016\u0015\u0019\u0014\u0019\u0013\u0012\u0011\u0010\u000f5\u0011\u000e\r\f\u000b5G\n\t\b\u0007\u0006\u0005\u0004\u001a8\u0003\u001a<\u0002\u0001\u001aV\u0000\u001al\u001a\u001a\u000b\u001d\u0000\u00160\u0000\tfieldname\u0000\tfieldName\n\u001c\u0000\u0004\nnull\u000b\u001b\u0000\u00160\u0000\ttablename\u0000\ttableName\u000b\u001a\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\u0003\u0019\u0000\u0006\n\u0018\u0000\u0004\nret \u000b\u0017\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000b\u0016\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000b\u0015\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0014\u0000\u0004\npcap\n\u0013\u0000\u0004\ncwin\n\u0012\u0000\u0004\ntabg\n\u0011\u0000\u0004\nscra\n\u0010\u0000\u0004\ntabB\n\u000f\u0000\u0004\ncrow\n\u000e\u0000\u0004\nsttx\n\r\u0000\u0004\nvalL\n\f\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\u000b\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065G\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0003\nI\n\t\u0000\u0004\nerrn\n\b\u0000\u0004\nkocl\n\u0007\u0000\u0004\ncobj\n\u0006\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0005\u0000\u000b0\u0000\u0007pattern\u0000\u0000\n\u0004\u0000\u0004\npcnt\u000b\u0003\u0000\u00140\u0000\btesttype\u0000\btestType\u000b\u0002\u0000\u00160\u0000\ttestmatch\u0000\ttestMatch\u000b\u0001\u0000\u001a0\u0000\u000bquotestring\u0000\u000bquoteString\u000b\u0000\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u00111\u0001\u000eEO%EO%%%EOEOEOEOEOEOEO%%%EO\u0014\u0001]*jvk+\u0000\u0010O,\u0001\u001d\u0000\r*,k+\u0000\u0011Y\u0000\u0003hO*j+\u0000\u0012O\u0014\u0000Ma\u0000\u0013\u0012\u0000@*a\u0000\u0014a\u0000\u0015\/\u0012\u00004*a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001ak\/a\u0000\u001b[a\u0000\u001ck\/a\u0000\u001d,\\Z,81j\f\u0000\u001eUUOe\u000fW\u0000X\u0000\u001f\u0000 a\u0000!\u0001\u001d\u0000\r)a\u0000\"l\u0015Y\u0000fEO\u0017\u0000\u00e0,[a\u0000#a\u0000$l\f\u0000%kh\u001b\u0000\ra\u0000&,a\u0000',EO\u0014\u0000jvEO\u0017\u00007[a\u0000#a\u0000$l\f\u0000%kh\u001b\u0000\u0010a\u0000(]\u0000\u0010a\u0000),%a\u0000*%)]\u0000\u0010a\u0000+,k+\u0000,%6G[OYO)%a\u0000-%l+\u0000.EO%%%a\u0000\/%%%EO%%EO)\u0012\u0000\u0007j\f\u00000UOeEO\u0016OPW\u0000\u001dX\u0000\u001f\u0000 a\u0000!\u0001\u001d\u0000\r)a\u0000\"l\u0015Y\u0000\u0003hOPOP[OYQO\u000fOPOPW\u0000\u001eX\u0000\u001f\u0000 )a\u0000\"la\u00001*k+\u00002%a\u00003%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u001a5H5I\u000b\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000e\u0000\u0002\u00045J\u0003\u0000\u0001\u000e5J\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105H\u0000\u0003\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105I\u0000\u000e\u001b\u0011\u001b\u000f5K\u001b\u001a\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u0000\u0004\nscra\n\u0000\u0004\ntabB\n\u0000\u0004\nfocu\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065K\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000G\u0014\u00006*jvk+\u0000\u0000O\u0012\u0000$*\/\u0012\u0000\u001c)j+\u0000\u0004Oe*k\/k\/k\/k\/,FOe\u000fUUOPW\u0000\u000fX\u0000\n\u0000\u000b)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u001b%5L5M\u000b\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000e\u0000\u0002\u00045N\u0003\u0000\u0001\u000e5N\u0000\u0001\u0000\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0000\u0000\u00105L\u0000\u0003\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105M\u0000\u000e\u001bV\u001bT\u001bJ5O\u001bb\u001bd\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\n\u0000\u0004\npcap\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u0000\u0004\npopB\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065O\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000B\u0014\u0000-*jvk+\u0000\u0000O\u0012\u0000\u001d*\/\u0012\u0000\u0015)*k\/k\/\/l+\u0000\bOe\u000fUUW\u0000\u0013X\u0000\t\u0000\n)l%%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u001bo5P5Q\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u000e\u0000\u0002\u00045R\u0003\u0000\u0001\u000e5R\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105P\u0000\u0005\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105Q\u0000\u0013\u001b\u001b\u001b\u06ff5\u0011\u06fe\u06fd\u06fc\u06fb5S\u06fa\u001b\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\n\u0000\u0004\npcap\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u06ff\u0000\u0004\nradB\n\u06fe\u0000\u0004\ntitl\n\u06fd\u0000\u0004\nvalL\n\u06fc\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u06fb\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065S\u0000\u0003\u06f9\u06f8\u06f7\n\u06f9\u0000\u0004\nerrn\u000b\u06f8\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06f7\u0000\u0000\n\u06fa\u0000\u0004\nerrn\u0011\u0000wl\u000eEO%EO\u0014\u0000M*j+\u0000\u0002O*jvk+\u0000\u0003O\u0012\u00007*\/\u0012\u0000\/*k\/k\/k\/[,\\Z,@1\u0011EO,k\u0001\u001d\u0000\nj\f\u0000\rY\u0000\u0003hOe\u000fUUW\u0000\u001bX\u0000\u000e\u0000\u000f)a\u0000\u0010la\u0000\u0011,%a\u0000\u0012%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u06f6\u001b\u06f5\u06f45T5U\u06f3\u000b\u06f6\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u000e\u06f5\u0000\u0002\u0004\u06f25V\u0003\u06f2\u0000\u0001\u000e5V\u0000\u0001\u0000\u06f1\u000b\u06f1\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06f4\u0000\u0000\u00105T\u0000\u0001\u06f0\u000b\u06f0\u0000\t0\u0000\u0005prefs\u0000\u0000\u00105U\u0000\u0003\u06ef\u001b\u06ee\u000b\u06ef\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u06ee\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u06f3\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4\u0000\u0007\u0010\u06ed\u001b\u06ec\u06eb5W5X\u06ea\u000b\u06ed\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u000e\u06ec\u0000\u0002\u0004\u06e95Y\u0003\u06e9\u0000\u0001\u000e5Y\u0000\u0001\u0000\u06e8\u000b\u06e8\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06eb\u0000\u0000\u00105W\u0000\u0001\u06e7\u000b\u06e7\u0000\t0\u0000\u0005prefs\u0000\u0000\u00105X\u0000\u0003\u06e6\u001c\u0004\u06e5\u000b\u06e6\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u06e5\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u06ea\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4\u0000\u0007\u0010\u06e4\u001c\u0010\u06e3\u06e25Z5[\u06e1\u000b\u06e4\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u000e\u06e3\u0000\u0002\u0004\u06e05\\\u0003\u06e0\u0000\u0001\u000e5\\\u0000\u0001\u0000\u06df\u000b\u06df\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06e2\u0000\u0000\u00105Z\u0000\u0001\u06de\u000b\u06de\u0000\t0\u0000\u0005prefs\u0000\u0000\u00105[\u0000\u0003\u06dd\u001c!\u06dc\u000b\u06dd\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u06dc\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u06e1\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4\u0000\u0007\u0010\u06db\u001c+\u06da\u06d95]5^\u06d8\u000b\u06db\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u000e\u06da\u0000\u0002\u0004\u06d75_\u0003\u06d7\u0000\u0001\u000e5_\u0000\u0001\u0000\u06d6\u000b\u06d6\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06d9\u0000\u0000\u00105]\u0000\u0004\u06d5\u06d4\u06d3\u06d2\u000b\u06d5\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u06d4\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u000b\u06d3\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u06d2\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105^\u0000\u0013\u06d1\u001cw\u06d0\u001cu\u06cf\u06ce\u06cd\u06cc\u06cb\u06ca5\u0011\u06c9\u06c8\u001cj\u06c7\u06c65`\u06c5\u001c\u000b\u06d1\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\n\u06d0\u0000\u0004\npcap\u000b\u06cf\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u06ce\u0000\u0004\ncwin\n\u06cd\u0000\u0004\ntabg\n\u06cc\u0000\u0004\nscra\n\u06cb\u0000\u0004\ntabB\n\u06ca\u0000\u0004\ncrow\n\u06c9\u0000\u0004\nsttx\n\u06c8\u0000\u0004\nvalL\u000b\u06c7\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u06c6\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065`\u0000\u0003\u06c4\u06c3\u06c2\n\u06c4\u0000\u0004\nerrn\u000b\u06c3\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06c2\u0000\u0000\n\u06c5\u0000\u0004\nerrn\u0011\u06d8\u0000b\u0014\u0000M*jvk+\u0000\u0000O\u0012\u0000=*\/\u0012\u00005)j+\u0000\u0004O*k\/k\/k\/k\/-[l\/,\\Z81k\/,EO)jvk+\u0000\u000eO\u000fUUW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u06c1\u001c\u06c05a5b~\u000b\u06c1\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u000e\u06c0\u0000\u0002\u0004}5c\u0003}\u0000\u0001\u000e5c\u0000\u0001\u0000|\u000b|\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105a\u0000\u0004{zyx\u000b{\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bz\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u000by\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bx\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105b\u0000\u0013w\u001cv\u001cutsrqp5\u0011on\u001cml5dk\u001c\u000bw\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\nv\u0000\u0004\npcap\u000bu\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nt\u0000\u0004\ncwin\ns\u0000\u0004\ntabg\nr\u0000\u0004\nscra\nq\u0000\u0004\ntabB\np\u0000\u0004\ncrow\no\u0000\u0004\nsttx\nn\u0000\u0004\nvalL\u000bm\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000bl\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065d\u0000\u0003jih\nj\u0000\u0004\nerrn\u000bi\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006h\u0000\u0000\nk\u0000\u0004\nerrn\u0011~\u0000b\u0014\u0000M*jvk+\u0000\u0000O\u0012\u0000=*\/\u0012\u00005)j+\u0000\u0004O*k\/k\/k\/k\/-[l\/,\\Z91k\/,EO)jvk+\u0000\u000eO\u000fUUW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015OP\u000f\u000e4\u0000\u0007\u0010g\u001cfe5e5fd\u000bg\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u000ef\u0000\u0002\u0004c5g\u0003c\u0000\u0001\u000e5g\u0000\u0001\u0000b\u000bb\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002e\u0000\u0000\u00105e\u0000\u0005a`_^]\u000ba\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b`\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u000b_\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u000b^\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b]\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105f\u0000(\u001e5\\\u001e3[ZY\u001d\u0012XW\u001d-VU\u001d%5\u0011\u001d2TS\u001dRR\u001daQ\u001d\u001d\u001dPON\u001d\u001dMLK\u001dJIHG5hF\u001e=\n\\\u0000\u0004\npcap\u000b[\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nZ\u0000\u0004\ncwin\nY\u0000\u0004\npnam\nX\u0000\u0004\nmbar\nW\u0000\u0004\nmbri\nV\u0000\u0004\nmenE\nU\u0000\u0004\nmenI\nT\u0000\u0018.prcsclicnull\u0000\u0000uiel\nS\u0000\u0018.sysodelanull\u0000\u0000nmbr\nR\u0000\u0004\nbutT\u000bQ\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\nP\u0000\u0004\nfaal\nO\u0000\b\u000beMdsKcmd\nN\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\nM\u0000\u0004\ntabg\nL\u0000\u0004\ntxtf\nK\u0000\u0004\nfocu\nJ\u0000\u0004\nvalL\nI\u0000\u0004\nscra\nH\u0000\u0004\nscrb\u000bG\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065h\u0000\u0003EDC\nE\u0000\u0004\nerrn\u000bD\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006C\u0000\u0000\nF\u0000\u0004\nerrn\u0011d\u0001\u0014\u0001\u0012\u0001*\/\u0012\u0001)j+\u0000\u0003O*k\/,\u0006\u001d\u0000\u0007e\u000fY\u0001s*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOkj\f\u0000\u0010OeEO\u0017\u0000;h\u0019*k\/,a\u0000\u0011\u0006\u001d\u0000#*k\/a\u0000\u0012k\/[,\\Za\u0000\u001381j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYO)jvk+\u0000\u0014Okj\f\u0000\u0010OeEO\u0017\u0000;h\u0019*k\/,a\u0000\u0015\u0006\u001d\u0000#*k\/a\u0000\u0012k\/[,\\Za\u0000\u001681j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYOa\u0000\u0017a\u0000\u0018a\u0000\u0019l\f\u0000\u001aOkj\f\u0000\u0010OeEO\u0017\u00002h\u0019*k\/,a\u0000\u001b\u0006\u001d\u0000\u001a*k\/a\u0000\u0012a\u0000\u001c\/j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYO*k\/a\u0000\u001dk\/a\u0000\u001ek\/EOea\u0000\u001f,FOa\u0000 a\u0000!,FOe*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000\u001f,FOj*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000#k\/a\u0000!,FOj*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000#l\/a\u0000!,FOe\u000fUUW\u0000\u0013X\u0000$\u0000%)a\u0000&la\u0000'%\u0015OP\u000f\u000e4\u0000\u0007\u0010B\u001eHA@5i5j?\u000bB\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000eA\u0000\u0002\u0004>5k\u0003>\u0000\u0001\u000e5k\u0000\u0001\u0000=\u000b=\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002@\u0000\u0000\u00105i\u0000\t<;:987654\u000b<\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b;\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b:\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\u000b9\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b8\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b7\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b6\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u000b5\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105j\u0000!3\u001ei210\/.-\u001f\u0014,\u001e+*)(\u001e'&%5l$\u001e#\u001e\"!\u001e \u001f\u0000\u001f\u001e\u001d\u001f\u001f\u000b3\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\u00032\u0000\n\u00031\u0000<\n0\u0000\u0004\nmin \n\/\u0000\u0004\ndire\n.\u0000\b\u000bolierndD\n-\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n,\u0000\u0004\npcap\u000b+\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n*\u0000\u0004\ncwin\n)\u0000\u0004\npnam\n(\u0000\u0004\nbutT\n'\u0000\u0018.prcsclicnull\u0000\u0000uiel\n&\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b%\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065l\u0000\u0003\u001c\u001b\u001a\n\u001c\u0000\u0004\nerrn\u000b\u001b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001a\u0000\u0000\n$\u0000\u0004\nerrn\u0003#\u0004\u0000\u000b\"\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b!\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b \u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u001f\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u001e\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u001d\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011?\u0000el\u000eEO%EOEOEO EO!l\f\u0000\u0007EO\u0014\u0000\u0012\u0000*\/\u0012\u0000c)j+\u0000\u000bO*k\/,\u0006\u001d\u00008\u0014\u0000!*k\/,EO*k\/\/j\f\u0000\u0010Okj\f\u0000\u0011OPW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000\u0015%\u0015Y\u0000\u001a,E\u001d\u0000\u0011)a\u0000\u0014a\u0000\u0016la\u0000\u0017\u0015Y\u0000\u0004e\u000fOPUO)a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000ek+\u0000\u001fOkj\f\u0000\u0011Oe\u000fOPUOPW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000 %\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0019\u001f*\u0018\u00175m5n\u0016\u000b\u0019\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u000e\u0018\u0000\u0002\u0004\u00155o\u0003\u0015\u0000\u0001\u000e5o\u0000\u0001\u0000\u0014\u000b\u0014\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0017\u0000\u0000\u00105m\u0000\u0003\u0013\u0012\u0011\u000b\u0013\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000b\u0012\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0011\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105n\u0000\u0011\u0010\u001f_\u000f\u001f]\u000e\r\f\u000b\n\t\b\u0007\u00065p\u0005\u001fk\u001fm\u000b\u0010\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\n\u000f\u0000\u0004\npcap\n\u000e\u0000\u0004\ncwin\n\r\u0000\u0004\ntabg\n\f\u0000\u0004\nscra\n\u000b\u0000\u0004\ntabB\n\n\u0000\u0004\ncrow\n\t\u0000\u0004\nsttx\n\b\u0000\u0004\nvalL\n\u0007\u0000\u0004\nrslt\u000b\u0006\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065p\u0000\u0003\u0004\u0003\u0002\n\u0004\u0000\u0004\nerrn\u000b\u0003\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0002\u0000\u0000\n\u0005\u0000\u0004\nerrn\u0011\u0016\u0000I\u0014\u00002*k+\u0000\u0000O\u0012\u0000#*\/\u0012\u0000\u001b*k\/k\/k\/k\/-k\/,EOE\u000fUUW\u0000\u0015X\u0000\f\u0000\r)l%a\u0000\u0010%%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0001\u001fx\u00005q5r\u000b\u0001\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u000e\u0000\u0000\u0002\u00045s\u0003\u0000\u0001\u000e5s\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105q\u0000\u0003\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105r\u0000\r\u001f\u001f5t\u001f\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\n\u0000\u0004\npcap\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u0000\u0004\nscra\n\u0000\u0004\ntabB\n\u0000\u0004\nfocu\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065t\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000A\u0014\u00000*jvk+\u0000\u0000O\u0012\u0000\u001e*\/\u0012\u0000\u0016e*k\/k\/k\/k\/,FOe\u000fUUOPW\u0000\u000fX\u0000\t\u0000\n)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u001f5u5v\u000b\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000e\u0000\u0002\u00045w\u0003\u0000\u0001\u000e5w\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105u\u0000\u0005\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105v\u0000- 5\u0011 \b # ] a 5x \u000b\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\n\u0000\u0004\nnull\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0000*0\u0000\u0013donotchangeexisting\u0000\u0013doNotChangeExisting\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0003\u0000\b\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u0000\u0004\nbutT\n\u0000\u0004\ndesc\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npopB\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\n\u0000\u0004\nscra\n\u0000\u0004\ntabB\n\u0000\u0004\ncrow\n\u0000\u0004\nsttx\n\u0000\u0004\nvalL\n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0000\u0000\u0002\u0000\u0000\u0003\u00005\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\n\u0000\u0004\ntxtf\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065x\u0000\u0003\u06bf\u06be\n\u0000\u0004\nerrn\u000b\u06bf\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06be\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0001Pf\u000eEO%EO\u0014\u0001(*jvk+\u0000\u0006O\u0012\u0001\u0018*\/\u0012\u0001\u0010)j+\u0000\nO*k\/k\/k\/[,\\Za\u0000\u0010@1EO)k+\u0000\u0011Okj\f\u0000\u0012O\u0014\u0000B)*k\/a\u0000\u0013a\u0000\u0014\/,l+\u0000\u0015O*k\/a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/[a\u0000\u0019k\/a\u0000\u001a,\\Z,81j\f\u0000\u001bW\u0000|X\u0000\u001c\u0000\u001da\u0000\u001ej\f\u0000\u001fO)*k\/a\u0000\u0013a\u0000 \/a\u0000!l+\u0000\u0015O)a\u0000\",l\u000ek+\u0000#O)jvk+\u0000$Okj\f\u0000\u0012O)*k\/a\u0000\u0013a\u0000%\/,l+\u0000\u0015O*k\/a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/[a\u0000\u0019k\/a\u0000\u001a,\\Z,81j\f\u0000\u001bO,*k\/a\u0000&a\u0000'\/a\u0000\u001a,FO)*k\/a\u0000(\/k+\u0000\u0011Oe\u000fUUW\u0000\u0013X\u0000)\u0000*)a\u0000+la\u0000,%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u06bd \u06bc\u06bb5y5z\u06ba\u000b\u06bd\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u000e\u06bc\u0000\u0002\u0004\u06b95{\u0003\u06b9\u0000\u0001\u000e5{\u0000\u0001\u0000\u06b8\u000b\u06b8\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06bb\u0000\u0000\u00105y\u0000\f\u06b7\u06b6\u06b5\u06b4\u06b3\u06b2\u06b1\u06b0\u06af\u06ae\u06ad\u06ac\u000b\u06b7\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u06b6\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u06b5\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u000b\u06b4\u0000\b0\u0000\u0002cr\u0000\u0002CR\u000b\u06b3\u0000\b0\u0000\u0002lf\u0000\u0002LF\u000b\u06b2\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\u000b\u06b1\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\u000b\u06b0\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u000b\u06af\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u000b\u06ae\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u000b\u06ad\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u06ac\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105z\u0000\u0016\u06ab \u06aa\u06a9\u06a8\u06a7\u06a6\u06a5\u06a4\u06a3!7\u06a2\u06a1\u06a0!U\u069f\u069e\u069d\u069c5|\u069b!j\u000b\u06ab\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u000b\u06aa\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000b\u06a9\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u06a8\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u0003\u06a7\u0000\u0004\u000b\u06a6\u0000\u00180\u0000\nparsechars\u0000\nparseChars\n\u06a5\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u06a4\u0000\u0004\nkocl\n\u06a3\u0000\u0004\ncobj\u000b\u06a2\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u06a1\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000b\u06a0\u0000\u00100\u0000\u0006toname\u0000\u0006TOName\u0003\u069f\u0000\u0006\u000b\u069e\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000b\u069d\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u069c\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065|\u0000\u0003\u069a\u0699\u0698\n\u069a\u0000\u0004\nerrn\u000b\u0699\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0698\u0000\u0000\n\u069b\u0000\u0004\nerrn\u0011\u06ba\u0000l\u000eEO%EO\u0014\u0000,EO*mvk+\u0000\u0002EO*\u000ek+\u0000\u0006EOj\f\u0000\u0007j\u0002\u001d\u0000S\u0017\u0000E[l\f\u0000\u0007kh\u001b\u0000\u0005*\u000ek+\u0000\u0006EOk\/EOl\/EO%%\u000eEO*k+\u0000\u0010[OYO*jvk+\u0000\u0011Y\u0000\u0003hOe\u000fW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000\u0015%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0697!u\u0696\u06955}5~\u0694\u000b\u0697\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u000e\u0696\u0000\u0002\u0004\u06935\u0003\u0693\u0000\u0001\u000e5\u0000\u0001\u0000\u0692\u000b\u0692\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0695\u0000\u0000\u00105}\u0000\u0001\u0691\u000b\u0691\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u00105~\u0000\u000b\u0690!\u068f\u068e\u068d\u068c\u068b\u068a\u0689!!\n\u0690\u0000\u0004\ncapp\n\u068f\u0000\b\u000bkfrmID \n\u068e\u0000\u0004\ncDB \n\u068d\u0000\u0004\ncSCP\n\u068c\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u068b\u0000\u0004\npnam\n\u068a\u0000\u0004\nerrn\u0003\u0689\u0004\u0000\u0011\u0694\u00008)0\u0012\u0000.*\/-j\f\u0000\u0005j\u0000\u001d\u0000\bjv\u000fY\u0000\f*\/-,E\u000fO)l%%\u0015OPUOP\u000f\u000e4\u0000\u0007\u0010\u0688!\u0687\u068655\u0685\u000b\u0688\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000e\u0687\u0000\u0002\u0004\u06845\u0003\u0684\u0000\u0001\u000e5\u0000\u0001\u0000\u0683\u000b\u0683\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0686\u0000\u0000\u00105\u0000\u0004\u0682\u0681\u0680\u000b\u0682\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0681\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0680\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0011~!}|!{!zyx5\u0011wvu5t\"\u0006\u000b~\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b}\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b|\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\n{\u0000\u0004\npcap\nz\u0000\u0004\ncwin\ny\u0000\u0004\ntabg\nx\u0000\u0004\nradB\nw\u0000\u0004\npnam\nv\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000bu\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003srq\ns\u0000\u0004\nerrn\u000br\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006q\u0000\u0000\nt\u0000\u0004\nerrn\u0011\u0685\u0000^l\u000eEO%EO\u0014\u0000>*j+\u0000\u0002O*jvk+\u0000\u0003O\u0012\u0000(*\/\u0012\u0000 *k\/k\/k\/[,\\Z,81j\f\u0000\fOe\u000fOPUUW\u0000\u0011X\u0000\r\u0000\u000e)la\u0000\u0010%\u0015OP\u000f\u000e4\u0000\u0007\u0010p\"\u0011on55m\u000bp\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u000eo\u0000\u0002\u0004l5\u0003l\u0000\u0001\u000e5\u0000\u0001\u0000k\u000bk\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002n\u0000\u0000\u00105\u0000\u0003jih\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bi\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bh\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0007g\"%fe5d\".\u000bg\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000bf\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000be\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003cba\nc\u0000\u0004\nerrn\u000bb\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006a\u0000\u0000\nd\u0000\u0004\nerrn\u0011m\u0000\u001f\u0014\u0000\u000e*l\u000ek+\u0000\u0002W\u0000\u000fX\u0000\u0003\u0000\u0004)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010`\"9_^55]\u000b`\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u000e_\u0000\u0002\u0004\\5\u0003\\\u0000\u0001\u000e5\u0000\u0001\u0000[\u000b[\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002^\u0000\u0000\u00105\u0000\u0003ZYX\u000bZ\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bY\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bX\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0007W\"MVU5T\"V\u000bW\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000bV\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000bU\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003SRQ\nS\u0000\u0004\nerrn\u000bR\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006Q\u0000\u0000\nT\u0000\u0004\nerrn\u0011]\u0000\u001f\u0014\u0000\u000e*l\u000ek+\u0000\u0002W\u0000\u000fX\u0000\u0003\u0000\u0004)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010P\"aON55M\u000bP\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u000eO\u0000\u0002\u0004L5\u0003L\u0000\u0001\u000e5\u0000\u0001\u0000K\u000bK\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002N\u0000\u0000\u00105\u0000\tJIHGFEDCB\u000bJ\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bI\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\u000bH\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u000bG\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u000bF\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u000bE\u0000\u00050\u0000\u0001i\u0000\u0000\u000bD\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\u000bC\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bB\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0012A@\"?\">=<;:9876554\"\u000bA\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b@\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\n?\u0000\u0004\nprcs\n>\u0000\u0004\ncwin\n=\u0000\u0004\ntabg\n<\u0000\u0004\nscra\n;\u0000\u0004\ntabB\n:\u0000\u0004\ncrow\n9\u0000\u0004\nsttx\n8\u0000\u0004\nvalL\n7\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n6\u0000\u0004\ncobj\u000b5\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003321\n3\u0000\u0004\nerrn\u000b2\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00061\u0000\u0000\n4\u0000\u0004\nerrn\u0011M\u0000\u0014\u0000t*j+\u0000\u0000O*jvk+\u0000\u0001O\u0012\u0000^*\/\u0012\u0000V*k\/k\/k\/k\/EO-k\/,EO-m\/,EOjvEO\u0017\u0000#kj\f\u0000\fkh\u001c\u0000\u0005\/\/lvEO6F[OYO\u000fOPUUW\u0000\u0013X\u0000\u000e\u0000\u000f)a\u0000\u0010la\u0000\u0011%\u0015OP\u000f\u000e4\u0000\u0007\u00100\"\/.55-\u000b0\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u000e\/\u0000\u0002\u0004,5\u0003,\u0000\u0001\u000e5\u0000\u0001\u0000+\u000b+\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002.\u0000\u0000\u00105\u0000\u0003*)(\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b)\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b(\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0014#,'#*&%$#\u0006#\"# ! #\u00185\u0011#%\u001f\u001e5\u001d#4\n'\u0000\u0004\npcap\u000b&\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n%\u0000\u0004\ncwin\n$\u0000\u0004\npnam\n#\u0000\u0004\nmbar\n\"\u0000\u0004\nmbri\n!\u0000\u0004\nmenE\n \u0000\u0004\nmenI\n\u001f\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u001e\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u001c\u001b\u001a\n\u001c\u0000\u0004\nerrn\u000b\u001b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001a\u0000\u0000\n\u001d\u0000\u0004\nerrn\u0011-\u0000`\u0014\u0000K\u0012\u0000C*\/\u0012\u0000;)j+\u0000\u0003O*k\/,\b\u000b\u001d\u0000(*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOe\u000fY\u0000\u0003hUUW\u0000\u0013X\u0000\u0010\u0000\u0011)a\u0000\u0012la\u0000\u0013%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0019#?\u0018\u001755\u0016\u000b\u0019\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u000e\u0018\u0000\u0002\u0004\u00155\u0003\u0015\u0000\u0001\u000e5\u0000\u0001\u0000\u0014\u000b\u0014\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0017\u0000\u0000\u00105\u0000\u0004\u0013\u0012\u0011\u0010\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0012\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\u000b\u0011\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0010\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u001f\u000f\u000e\r\f#\u000b#\n\t\b#t\u0007\u0006#x\u0005\u00045\u0011#\u0003#\u0002##\u0001#\u0000##5$\u0004\u000b\u000f\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\n\u000e\u0000\u0004\nnull\u000b\r\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\u0003\f\u0000\u0004\n\u000b\u0000\u0004\npcap\u000b\n\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\t\u0000\u0004\ncwin\n\b\u0000\u0004\npnam\n\u0007\u0000\u0004\nerrn\u0003\u0006\u0004\u0000\u0003\u0005\u0000\u0005\n\u0004\u0000\u0004\nbutT\u000b\u0003\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\n\u0002\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0001\u0000\u0004\ntxtf\n\u0000\u0000\u0004\nvalL\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0011\u0016\u0000\u000eEO%EO\u0014\u0000\u0012\u0000*\/\u0012\u0000)j+\u0000\u0007O*k\/,\b\u000b\u001d\u0000\u000b)l\u0015Y\u0000\u0003hO\u0017\u0000>kh\u0018)*k\/k\/a\u0000\u0010[,\\Za\u0000\u001181k+\u0000\u0012O*k\/,a\u0000\u0013\u0006\u000b\u001d\u0000\u0006\u0016Y\u0000\u0003hOkj\f\u0000\u0014[OYOa\u0000\u0015j\f\u0000\u0014O*k\/,a\u0000\u0016\u0000\u001d\u0000N,*k\/a\u0000\u0017a\u0000\u0018\/a\u0000\u0019,FO,*k\/a\u0000\u0017a\u0000\u001a\/a\u0000\u0019,FO)*k\/k\/a\u0000\u0010[,\\Za\u0000\u001b81k+\u0000\u0012Oa\u0000\u0015j\f\u0000\u0014Y\u0000\u0003hOPUUW\u0000\u0011X\u0000\u001c\u0000\u001d)la\u0000\u001e%\u0015OP\u000f\u000e4\u0000\u0007\u0010$\u000f55\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000e\u0000\u0002\u00045\u0003\u0000\u0002\u000e5\u0000\u0002\u0000\u000b\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u000b\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u0002\u0000\u0000\u00105\u0000\u0004\u000b\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u000b\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\t$\u001e5$?$A\n\u0000\u0004\nnull\n\u0000\u0004\nvalL\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000:Z\u0014\u0000%\u0001\u001d\u0000\u0016,\u0001\u001d\u0000\nj\f\u0000\u0003Y\u0000\u0003hY\u0000\u0003hOe\u000fOPW\u0000\u0013X\u0000\u0004\u0000\u0005)l%%%\u0015\u000f\u000e4\u0000\u0007\u0010$K55\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002\u0000\u0000\u00105\u0000\u0001\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u00105\u0000\u0002$Y\u000b\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0011\u0000\u000bZ)k+\u0000\u0001OP\u000f\u000e4\u0000\u0007\u0010$f55\u000b\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u0002\u0000\u0000\u0002\u0000\u0000\u00105\u0000\u0004\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0017$$$5\u0011$5$$\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\nmbar\n\u0000\u0004\nmbri\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0004\npnam\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0003\u0000\u0014\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000fEO\u0012\u0000w*\/\u0012\u0000o)j+\u0000\u0003O*k\/\/k\/k\/[,\\Z81EO\u0014\u0000\nj\f\u0000\fW\u0000\u0011X\u0000\r\u0000\u000e)la\u0000\u0010%\u0015O\u0017\u00002a\u0000\u0011kh\u0018\u0014\u0000\u0016j\f\u0000\u0012\u001d\u0000\neEO\u0016Y\u0000\u0003hW\u0000\bX\u0000\u0013\u0000\u0014hOa\u0000\u0015j\f\u0000\u0016[OYUUO\u000fOP\u000f\u000e4\u0000\u0007\u0010$55\u000b\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\u0000\t\u067f\u067e\u067d\u067c\u067b\u067a\u0679\u0678\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u067f\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u067e\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u067d\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u000b\u067c\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u067b\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\u000b\u067a\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u000b\u0679\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0678\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000$\u0677\u0676\u0675\u0674$\u0673\u0672\u0671%\u0000\u0670\u066f%=\u066e\u066d\u066c%Q\u066b%%%%%\u066a&\t\u0669\u06685\u0011\u0667&\u001b&3&K\u06665&t&v&x\u000b\u0677\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\n\u0676\u0000\u0004\nnull\u000b\u0675\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0674\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u000b\u0673\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\u0003\u0672\u0000\b\n\u0671\u0000\u0004\npcls\n\u0670\u0000\u0004\ncobj\u0003\u066f\u0000\u0004\n\u066e\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n\u066d\u0000\u0004\nerrn\u0003\u066c\u0004\u0000\n\u066b\u0000\u0004\nvalL\n\u066a\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0669\u0000\u0004\nmenE\n\u0668\u0000\u0004\nmenI\n\u0667\u0000\u0004\npnam\u000b\u0666\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u0665\u0664\u0663\n\u0665\u0000\u0004\nerrn\u000b\u0664\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0663\u0000\u0000\u0011\u0002\u0006f\u000eEO,llv,\u0000\u001d\u0000\u0013k\/l\/\u000eEY\u0000\u0003hO%EO,EO,EO,EO,EOZ\u0014\u0001j\f\u0000\f\u000b\u001d\u0000\r)l\u0015OPY\u0001fEOa\u0000\u0010,j\f\u0000\f\u000b\u001d\u0000\neEOPY\u0000\u001d\u0000\neEOPY\u0000a\u0000\u0011\u0000\u001d\u0000\u0018a\u0000\u0010,\u0001\u001d\u0000\beEY\u0000\u0003hOPY\u0000a\u0000\u0012\u0000\u001d\u0000\u0019a\u0000\u0010,\b\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000`a\u0000\u0013\u0000\u001d\u0000\u0019a\u0000\u0010,\u0006\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000Aa\u0000\u0014\u0000\u001d\u0000\u0019a\u0000\u0010,\u0006\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000\"a\u0000\u0015\u0000\u001d\u0000\u0019a\u0000\u0010,\u0007\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000\u0003hO\u001d\u0000\u0001\u001d\u0000j\f\u0000\u0016Oa\u0000\u0017\u0000\u001d\u0000!a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z81j\f\u0000\u0016Y\u0000~a\u0000\u001c\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z@1j\f\u0000\u0016OPY\u0000Ua\u0000\u001d\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z>1j\f\u0000\u0016OPY\u0000,a\u0000\u001e\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z?1j\f\u0000\u0016OPY\u0000\u0003hOPY\u0000\u0003hY\u0000\u0003hOe\u000fOPW\u0000\u001dX\u0000\u001f\u0000 )la\u0000!%a\u0000\"%%a\u0000#%%\u0015\u000f\u000e4\u0000\u0007\u0010\u0662&\u0661\u066055\u065f\u000b\u0662\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000e\u0661\u0000\u0002\u0004\u065e5\u0003\u065e\u0000\u0002\u000e5\u0000\u0002\u0000\u065d\u065c\u000b\u065d\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u065c\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002\u0660\u0000\u0000\u00105\u0000\u0004\u065b\u065a\u0659\u0658\u000b\u065b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u065a\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0659\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0658\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\r&\u0657\u0656\u0655&\u0654\u0653\u0652\u06515\u0650&&\u000b\u0657\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u0656\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0655\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u0003\u0654\u0000\u0006\u000b\u0653\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\n\u0652\u0000\u0004\nrslt\u000b\u0651\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u064f\u064e\u064d\n\u064f\u0000\u0004\nerrn\u000b\u064e\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u064d\u0000\u0000\n\u0650\u0000\u0004\nerrn\u0011\u065f\u0000-Z\u0014\u0000\u0018*\u000ek+\u0000\u0006OE\u000fOPW\u0000\u0013X\u0000\b\u0000\t)l%%%\u0015\u000f\u000e4\u0000\u0007\u0010\u064c&\u064b\u064a55\u0649\u000b\u064c\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u0002\u064b\u0000\u0000\u0002\u064a\u0000\u0000\u00105\u0000\u0003\u0648\u0647\u0646\u000b\u0648\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u000b\u0647\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0646\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u001f&\u0645'T\u0644'R\u0643\u0642\u0641&\u06405\u0011~&}|5{&'\u0015'\r'\u001fzyxwvutsr\n\u0645\u0000\u0018.JonspClpnull\u0000\u0000\u0000\u0000\u0000****\n\u0644\u0000\u0004\npcap\u000b\u0643\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0642\u0000\u0004\nmbar\n\u0641\u0000\u0004\nmbri\n\u0640\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n~\u0000\u0004\npnam\n}\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b|\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003qpo\nq\u0000\u0004\nerrn\u000bp\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006o\u0000\u0000\n{\u0000\u0004\nerrn\u0003z\u0000\n\ny\u0000\u0004\nrtyp\nx\u0000\u0004\nutf8\nw\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\nv\u0000\u0004\nrslt\nu\u0000\u0004\nleng\u0001t\u0000\u0000\u0002s\u0000\u0000\nr\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0649\u0000j\f\u0000\u0001OfEO\u0012\u0000*\/\u0012\u0000)j+\u0000\u0005O\u0014\u0000\u001f*k\/\/k\/k\/[,\\Z81j\f\u0000\u000eW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015O\u0014\u0000\u001a*k\/a\u0000\u0013\/k\/a\u0000\u0014\/j\f\u0000\u000eW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0015%\u0015O\u0017\u0000Da\u0000\u0016kh\u0018\u0014\u0000&*a\u0000\u0017a\u0000\u0018l\f\u0000\u0019O_\u0000\u001aa\u0000\u001b,j\u0002\u001d\u0000\neEO\u0016Y\u0000\u0003hW\u0000\fX\u0000\u001c\u0000\u001deEO\u0016Okj\f\u0000\u001e[OYOPUUO\u000fOP\u000f\u000e4\u0000\u0007\u0010n'bml55k\u000bn\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u000em\u0000\u0002\u0004j5\u0003j\u0000\u0002\u000e5\u0000\u0002\u0000ih\u000bi\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u000bh\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0002l\u0000\u0000\u00105\u0000\u0004gfed\u000bg\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u000bf\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u000be\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bd\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\t'qcba`5_''\nc\u0000\u0004\nnull\nb\u0000\u0004\nvalL\na\u0000\u0004\nfocu\u000b`\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003^]\\\n^\u0000\u0004\nerrn\u000b]\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\\\u0000\u0000\n_\u0000\u0004\nerrn\u0011k\u0000AZ\u0014\u0000,\u0001\u001d\u0000\u001d,\u0001\u001d\u0000\u0010e,FO,FY\u0000\u0004f\u000fY\u0000\u0003hOe\u000fOPW\u0000\u0013X\u0000\u0004\u0000\u0005)l%%%\u0015\u000f\u000e4\u0000\u0007\u0010['ZY55X\u000b[\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002Z\u0000\u0000\u0002Y\u0000\u0000\u00105\u0000\u0000\u00105\u0000\n'W'VUTS'RQ\nW\u0000\u0004\npcap\nV\u0000\u0004\npisf\nU\u0000\u0018.sysodelanull\u0000\u0000nmbr\nT\u0000\u0004\ncwin\nS\u0000\u0004\npnam\nR\u0000\u0004\nbutT\nQ\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0011X\u0000F\u0012\u0000B*\/\u0012\u0000:*,e\u0001\u001d\u00001e*,FOkj\f\u0000\u0004O*k\/,\u0000\u001d\u0000\u0016*k\/k\/j\f\u0000\tOkj\f\u0000\u0004Y\u0000\u0003hY\u0000\u0003hUU\u000f\u000e4\u0000\u0007\u0010P'ON55M\u000bP\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u0002O\u0000\u0000\u0002N\u0000\u0000\u00105\u0000\u0000\u00105\u0000\f(\u0015L(\u0013KJ5\u0011I(\u0010HGFE\nL\u0000\u0004\npcap\u000bK\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nJ\u0000\u0004\ncwin\nI\u0000\u0004\npnam\nH\u0000\u0004\nbutT\nG\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0001F\u0000\u0000\u0002E\u0000\u0000\u0011M\u00004\u0012\u00000*\/\u0012\u0000()j+\u0000\u0003O\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\tW\u0000\bX\u0000\n\u0000\u000bhUU\u000f\u000e4\u0000\u0007\u0010D(\u001dCB55A\u000bD\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002C\u0000\u0000\u0002B\u0000\u0000\u00105\u0000\u0000\u00105\u0000\u000f(g@(e?>5\u0011=(C<;:(S98(b\n@\u0000\u0004\npcap\u000b?\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n>\u0000\u0004\ncwin\n=\u0000\u0004\npnam\n<\u0000\u0004\npidx\u0001;\u0000\u0000\u0002:\u0000\u0000\n9\u0000\u0004\nbutT\n8\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0011A\u0000s\u0012\u0000o*\/\u0012\u0000g)j+\u0000\u0003O\u0014\u0000\u0016k*k\/[,\\Z81,FW\u0000\bX\u0000\t\u0000\nhO\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\rW\u0000\bX\u0000\t\u0000\nhO\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\rW\u0000\bX\u0000\t\u0000\nhUU\u000f\u000e4\u0000\u0007\u00107(o65554\u000b7\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u00026\u0000\u0000\u00025\u0000\u0000\u00105\u0000\u000232\u000b3\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b2\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u00151(0(\/.5\u0011-(,+*()(('&5%(\u000b1\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\n0\u0000\u0004\npcap\u000b\/\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n.\u0000\u0004\ncwin\n-\u0000\u0004\npnam\n,\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n+\u0000\u0004\nmbar\n*\u0000\u0004\nmbri\n)\u0000\u0004\nmenE\n(\u0000\u0004\nmenI\n'\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b&\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003$#\"\n$\u0000\u0004\nerrn\u000b#\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\"\u0000\u0000\n%\u0000\u0004\nerrn\u00114\u0000i\u0014\u0000T*j+\u0000\u0000O\u0012\u0000F*\/\u0012\u0000>)j+\u0000\u0004O*k\/[,\\Z@1j\f\u0000\t\u000b\u001d\u0000\u001f*k\/\/k\/k\/[,\\Z81j\f\u0000\u0010Y\u0000\u0003hOe\u000fUUW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000\u0014%\u0015OP\u000f\u000e4\u0000\u0007\u0010!( \u001f55\u001e\u000b!\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u0002 \u0000\u0000\u0002\u001f\u0000\u0000\u00105\u0000\u0002\u001d\u001c\u000b\u001d\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u001c\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0006(\u001b\u001a5\u0019(\u000b\u001b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000b\u001a\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u0018\u0017\u0016\n\u0018\u0000\u0004\nerrn\u000b\u0017\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0016\u0000\u0000\n\u0019\u0000\u0004\nerrn\u0011\u001e\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010\u0015(\u0014\u001355\u0012\u000b\u0015\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u0002\u0014\u0000\u0000\u0002\u0013\u0000\u0000\u00105\u0000\u0002\u0011\u0010\u000b\u0011\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0010\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0006)\u0006\u000f\u000e5\r)\u0010\u000b\u000f\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000b\u000e\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\f\u000b\n\n\f\u0000\u0004\nerrn\u000b\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\n\u0000\u0000\n\r\u0000\u0004\nerrn\u0011\u0012\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010\t)\u001d\b\u000755\u0006\u000b\t\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002\b\u0000\u0000\u0002\u0007\u0000\u0000\u00105\u0000\u0002\u0005\u0004\u000b\u0005\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0004\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0006)0\u0003\u00025\u0001):\u000b\u0003\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000b\u0002\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u0000\n\u0000\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0001\u0000\u0004\nerrn\u0011\u0006\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4\u0000\u0007\u0010)E55\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u0002\u0000\u0000\u00105\u0000\b\u000b\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u000b\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\u000b\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\u000b\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\u000b\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\u000b\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0019))5\u0011)x)))5))\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\n\u0000\u0004\ncwin\n\u0000\u0004\nsgrp\n\u0000\u0004\ndesc\n\u0000\u0004\ncwor\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nmbar\n\u0000\u0004\nmbri\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000\u0014\u0000t\u0012\u0000l*\/\u0012\u0000d)j+\u0000\u0003O)j+\u0000\u0004O*k\/EOk\/[,\\Z?1EO,EOk\/EO\u0001\u001d\u0000(j\f\u0000\fO%EO*k\/a\u0000\u0010\/a\u0000\u0011k\/a\u0000\u0012\/j\f\u0000\u0013Y\u0000\u0003hOe\u000fOPUUW\u0000\u0019X\u0000\u0014\u0000\u0015)a\u0000\u0016la\u0000\u0017%a\u0000\u0018%%\u0015\u000f\u000e4\u0000\u0007\u0010)55\u000b\u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002\u0000\u0000\u00105\u0000\u0001\u000b\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u00105\u0000\u0005)\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncwin\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0019)0\u0012\u0000\f*\/j\f\u0000\u0004OPUOe\u000fOP\u000f\u000e4\u0000\u0007\u0010)55\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\u00105\u0000\u001f*\u0007*\u000b*\u000f\u063f\u063e\u063d*t*B\u063c*K\u063b\u063a*Q*\\\u0639*q********+\u0005\u0638\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\n\u0000\u0004\nnull\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u063f\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u063e\u0000\u0014\u0003\u063d\u0000\n\n\u063c\u0000\u0004\npcap\n\u063b\u0000\u0004\ncwin\n\u063a\u0000\u0004\npnam\n\u0639\u0000\u0004\nnmbr\n\u0638\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0001D\u000eEO%EO,EO,EO,EOfEO\u0017\u0001\u0012,Ekh\u0018\u0012\u0000H\u0000\u001d\u0000\u0011*\/-a\u0000\u0010,EY\u00003a\u0000\u0011\u0000\u001d\u0000\u0014*a\u0000\u0012\/k\/a\u0000\u0010,EY\u0000\u0019a\u0000\u0013&EO*a\u0000\u0014\/\/a\u0000\u0010,EUOa\u0000\u0015\u0000\u001d\u0000\f\bEOPY\u0000a\u0000\u0016\u0000\u001d\u0000\r\b\u000bEOPY\u0000a\u0000\u0017\u0000\u001d\u0000\f\u0000EOPY\u0000oa\u0000\u0018\u0000\u001d\u0000\f\u0000EOPY\u0000]a\u0000\u0019\u0000\u001d\u0000\f\u0006EOPY\u0000Ka\u0000\u001a\u0000\u001d\u0000\r\u0006\u000bEOPY\u00008a\u0000\u001b\u0000\u001d\u0000\f\u0007EOPY\u0000&a\u0000\u001c\u0000\u001d\u0000\u000b\u0007\u000bEY\u0000\u0015a\u0000\u001d\u0000\u001d\u0000\f\u0001EOPY\u0000\u0003hO\u001d\u0000\u0006\u0016Y\u0000\u0003hO,j\f\u0000\u001eOP[OYO\u000fOP\u000f\u000e4\u0000\u0007\u0010\u0637+0\u0636\u063555\u0634\u000b\u0637\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u000e\u0636\u0000\u0002\u0004\u06335\u0003\u0633\u0000\u0001\u000e5\u0000\u0001\u0000\u0632\u000b\u0632\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0635\u0000\u0000\u00105\u0000\u0002\u0631\u0630\u000b\u0631\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0630\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00105\u0000\f\u062f\u062e\u062d+D\u062c+H\u062b+L\u062a\u0629\u0628\u0627\u000b\u062f\u0000\u00180\u0000\nwindowname\u0000\nwindowName\n\u062e\u0000\u0004\nnull\u000b\u062d\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u062c\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u062b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u062a\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u0629\u0000d\u0003\u0628\u0000\n\u000b\u0627\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011\u0634\u0000\u001f\u000eEO%EO*k+\u0000\u000b\u000fOP\u000f\u000e4\u0000\u0007\u0010\u0626+e\u0625\u062455\u0623\u000b\u0626\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u000e\u0625\u0000\u0002\u0004\u06225\u0003\u0622\u0000\u0002\u000e5\u0000\u0002\u0000\u0621\u0620\u000b\u0621\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0620\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u0002\u0624\u0000\u0000\u00105\u0000\u0004\u061f\u061e\u061d\u061c\u000b\u061f\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u061e\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u000b\u061d\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u061c\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\u00105\u0000\u0002\u061b\u061a\n\u061b\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u061a\u0000\u0004\ncobj\u0011\u0623\u00009\b\u000b\u001d\u0000\u0007i\u000fY\u0000\u0003hO\u0017\u0000'kj\f\u0000\u0000kh\u001c\u0000\u0002\/EO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hOP[OYOP\u000f\u000e4\u0000\u0007\u0010\u0619+\u0618\u061755\u0616\u000b\u0619\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u000e\u0618\u0000\u0002\u0004\u06155\u0003\u0615\u0000\u0002\u000e5\u0000\u0002\u0000\u0614\u0613\u000b\u0614\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0613\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u0002\u0617\u0000\u0000\u00105\u0000\u0003\u0612\u0611\u0610\u000b\u0612\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0611\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u000b\u0610\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u00105\u0000\u0004\u060f\u060e\u060d\u060c\n\u060f\u0000\u0004\nkocl\n\u060e\u0000\u0004\ncobj\n\u060d\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u060c\u0000\u0004\npcnt\u0011\u0616\u00001\u0017\u0000*[l\f\u0000\u0002kh\u001b\u0000\u0002,EO\u0000\u001d\u0000\te\u000fOPY\u0000\u0003hOP[OYOf\u000fOP\u000f\u000e4\u0000\u0007\u0010\u060b+\u060a\u060955\u0608\u000b\u060b\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u000e\u060a\u0000\u0002\u0004\u06075\u0003\u0607\u0000\u0001\u000e5\u0000\u0001\u0000\u0606\u000b\u0606\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0609\u0000\u0000\u00105\u0000\u0004\u0605\u0604\u0603\u0602\u000b\u0605\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0604\u0000\u00160\u0000\tinputlist\u0000\tinputList\u000b\u0603\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u000b\u0602\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u00105\u0000\u0005\u0601\u0600~}\u000b\u0601\u0000\u00160\u0000\tinputlist\u0000\tinputList\n\u0600\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n~\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n}\u0000\u0004\npcnt\u0011\u0608\u0000;,EOjvEO\u0017\u0000)[l\f\u0000\u0003kh\u001b\u0000\u0003,EO\b\u000b\u001d\u0000\t6GY\u0000\u0003h[OYO\u000fOP\u000f\u000e4\u0000\u0007\u0010|,\u000e{z55y\u000b|\u0000\b0\u0000\u0004sort\u0000\u0000\u000e{\u0000\u0002\u0004x5\u0003x\u0000\u0001\u000e5\u0000\u0001\u0000w\u000bw\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u0002z\u0000\u0000\u00105\u0000\u0005vutsr\u000bv\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u000bu\u0000\u00060\u0000\u0002od\u0000\u0000\u000bt\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\u000bs\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\u000br\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u00105\u0000\fqponml,9k,=jih\nq\u0000\u0004\nascr\np\u0000\u0004\ntxdl\u0003o\u0000\n\nn\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\nm\u0000\u0004\ncobj\nl\u0000\u0004\nTEXT\nk\u0000\u0004\nstrq\nj\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\ni\u0000\u0004\nret \nh\u0000\u0004\ncitm\u0011y\u0000E,j\f\u0000\u0003lvE[k\/EZ[l\/,FZO&EO,%%j\f\u0000\tEO,FO-EO,FO\u000f\u000f\u000e4\u0000\u0007\u0010g,\\fe55d\u000bg\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000ef\u0000\u0002\u0004c5\u0003c\u0000\u0002\u000e5\u0000\u0002\u0000ba\u000bb\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u000ba\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002e\u0000\u0000\u00105\u0000\u0003`_^\u000b`\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u000b_\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u000b^\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u00105\u0000\u000b]\\,[Z,,Y,XW\u000b]\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\n\\\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\u000b[\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\nZ\u0000\u0004\nleng\nY\u0000\u0004\nspac\nX\u0000\u0004\nstrq\nW\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011d\u0000I*k+\u0000\u0000EO*jj\f\u0000\u0001mvk+\u0000\u0003EO,j\u0000\u001d\u0000\bEY\u0000\u0003hO%%%,%%,%EOj\f\u0000\nO\u000fOP\u000f\u000e4\u0000\u0007\u0010V,UT55S\u000bV\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000eU\u0000\u0002\u0004R5\u0003R\u0000\u0002\u000e5\u0000\u0002\u0000QP\u000bQ\u0000\t0\u0000\u0005level\u0000\u0000\u000bP\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002T\u0000\u0000\u00105\u0000\u0006ONMLKJ\u000bO\u0000\t0\u0000\u0005level\u0000\u0000\u000bN\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u000bM\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\u000bL\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u000bK\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u000bJ\u0000\u00050\u0000\u0001i\u0000\u0000\u00105\u0000\u0004I,,H\u0003I\u0000\u0005\u000bH\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0011S\u00005EOb\u0000\u0001\u0000\u0001%EO\u001fk\u001eEO\u0017\u0000\u0013kkh\u001c\u0000\u0005%E[OYO*l+\u0000\u0003OP\u000f\u000e4\u0000\u0007\u0010G,FE55D\u000bG\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u000eF\u0000\u0002\u0004C5\u0003C\u0000\u0001\u000e5\u0000\u0001\u0000B\u000bB\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002E\u0000\u0000\u00105\u0000\u0001A\u000bA\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u00105\u0000\u0001@\u000b@\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0011D\u0000\b*jl+\u0000\u0000\u000f\u000e4\u0000\u0007\u0010?-\u0016>=55<\u000b?\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u000e>\u0000\u0002\u0004;5\u0003;\u0000\u0001\u000e5\u0000\u0001\u0000:\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002=\u0000\u0000\u00105\u0000\u000298\u000b9\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b8\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00105\u0000\u00117-(6-,5-04-43210\/.-,+\u000b7\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b6\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\u000b5\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\u000b4\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\u000b3\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\n2\u0000\u0004\nnull\u00031\u0000\n\n0\u0000\u0004\nappr\n\/\u0000\u0004\nsubt\u0003.\u0000\u0004\n-\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n,\u0000\u0004\nnsou\u0003+\u0000\u0006\u0011<\u0000G\u000eEO%EO,\u0001\u001d\u0000\u0014,,,\f\u0000\u000eY\u0000\u0017,,,,a\u0000\u0010\f\u0000\u000eOP\u000f\u000e4\u0000\u0007\u0010*-l)(55'\u000b*\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u000e)\u0000\u0002\u0004&5\u0003&\u0000\u0001\u000e5\u0000\u0001\u0000%\u000b%\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002(\u0000\u0000\u00105\u0000\u0004$#\"!\u000b$\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b#\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\"\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u000b!\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u00105\u0000\u0012 \u001f\u001e\u001d\u001c\u001b\u001a\u0019\u0018-\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000b \u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\n\u001f\u0000\u0004\nnull\u000b\u001e\u0000\u00140\u0000\bfilename\u0000\bfileName\u000b\u001d\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\n\u001c\u0000\b\u000bafdrdesk\n\u001b\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u001a\u0000\u0004\nTEXT\u000b\u0019\u0000\u00180\u0000\noutputtext\u0000\noutputText\u0003\u0018\u0000\b\n\u0017\u0000\u0004\nfile\n\u0016\u0000\u0004\nperm\n\u0015\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\n\u0014\u0000\u0004\nrefn\n\u0013\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\n\u0012\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\u0001\u0011\u0000\u0000\u0002\u0010\u0000\u0000\u0011'\u0000j\f\u0000\u0005&\u000eEO%EO,\u0001\u001d\u0000\n,EY\u0000!,\u0001\u001d\u0000\u000e,,%EY\u0000\rj\f\u0000\u0005&%EO\u0014\u0000!*\/el\f\u0000\fEO,l\f\u0000\u000eOj\f\u0000\u000fW\u0000\u001bX\u0000\u0010\u0000\u0011\u0014\u0000\r*\/j\f\u0000\u000fW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e4\u0000\u0007\u0010\u000f-\u000e\r55\f\u000b\u000f\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u000e\u000e\u0000\u0002\u0004\u000b5\u0003\u000b\u0000\u0002\u000e5\u0000\u0002\u0000\n\t\u000b\n\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000b\t\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002\r\u0000\u0000\u00105\u0000\u0002\b\u0007\u000b\b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000b\u0007\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u00105\u0000\t\u0006\u0005\u0004\u0003.\u000e.\u0010\u0002\u0001.\u001c\n\u0006\u0000\u0004\ndire\n\u0005\u0000\b\u000bolierndD\n\u0004\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u0003\u0000\u0004\nstrq\n\u0002\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0001\u0000\u0004\nTEXT\u0011\f\u00001l\f\u0000\u0002EOl\f\u0000\u0002EOb\u0000\u0001\u0000\u0002,%%%%j\f\u0000\u0006O&%%\u000f\u000f\u000e4\u0000\u0007\u0010\u0000.%55\u000b\u0000\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u0002\u0000\u0000\u00105\u0000\u0007\u000b\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u000b\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\u000b\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\u000b\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\u000b\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\u000b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000b\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u00105\u0000\b.3\n\u0000\u0004\nposn\n\u0000\u0004\ncobj\n\u0000\u0004\nptsz\n\u0000\u0004\ndire\n\u0000\b\u000bolierndD\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\u000b\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0011\u0000NZ,E[k\/EZ[l\/EZO,E[k\/EZ[l\/EZOl!\u001el\f\u0000\u0006EOl!\u001el\f\u0000\u0006EO*l+\u0000\u0007OP\u000f\u000e4\u0000\u0007\u0010.z55\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\u0000\u0000\u00105\u0000\b\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u000b\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u000b\u0000\u00060\u0000\u0002od\u0000\u0000\u000b\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u00105\u0000\u0017..5\/\u0012\/4\/C\/G\/N\/T\n\u0000\u0004\npcls\n\u0000\u0004\nTEXT\n\u0000\u0004\nctxt\n\u0000\u0004\nlong\n\u0000\u0004\ndoub\n\u0000\u0004\nutxt\u000b\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0004\ncitm\u0002\u0000\u0000\n\u0000\u0004\nbool\u0011\u0001,\u0000\u001d\u0000\u0012&E[,EZO\u000fY\u0001k,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u0001Q,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u00017,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u0001\u001d\u0014\u0000S\u0014\u0000\f,FOPW\u00009X\u0000\t\u0000\n,kvlvE[k\/EZ[l\/,FZO-E[k\/EZ[l\/EZO,FOa\u0000\u0010,FOPW\u0000X\u0000\t\u0000\u0011a\u0000\u0012\u0006\t\u0000\u000ba\u0000\u0013\u0007a\u0000\u0014&\u001d\u0000Da\u0000\u0015EOa\u0000\u0016EO,lvE[k\/EZ[l\/,FZOl\/EO,FOk\/EO,FOPY\u0000kEO\b\u001d\u0000),lvE[k\/EZ[l\/,FZOl\/EO,FY\u0000\u0003hO\b\u001d\u0000\/,lvE[k\/EZ[l\/,FZO,FOk\/EO,FY\u0000\u0003hOPO\u000f\u000f\u000e5\u0000\u0000\u0007\u0010\/55\u000b\u0000\u001c0\u0000\fgettextafter\u0000\fgetTextAfter\u000e\u0000\u0002\u00045\u0003\u0000\u0002\u000e5\u0000\u0002\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u00160\u0000\tafterthis\u0000\tafterThis\u0002\u0000\u0000\u00105\u0000\u0007\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u00160\u0000\tafterthis\u0000\tafterThis\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u0000\u001c0\u0000\fresultaslist\u0000\fresultAsList\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\n\u05ff\u05fe\u05fd\u05fc\u05fb05\u05fa\u05f950c\n\u05ff\u0000\u0004\nascr\n\u05fe\u0000\u0004\ntxdl\n\u05fd\u0000\u0004\ncobj\n\u05fc\u0000\u0004\ncitm\n\u05fb\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u05fa\u0000\u0004\nTEXT\u000b\u05f9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u05f8\u05f7\u05f6\n\u05f8\u0000\u0004\nerrn\u000b\u05f7\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u05f6\u0000\u0000\u0011\u0000i\u0014\u0000Z,kvlvE[k\/EZ[l\/,FZO-j\f\u0000\u0004k\u0000\u001d\u0000\r,FO\u000fY\u0000\u000f[\\[Zl\\Zi2EOkv,FO&EO,FO\u000fW\u0000\u000fX\u0000\u0007\u0000\b,FO\u000f\u000f\u000e5\u0001\u0000\u0007\u0010\u05f50m\u05f4\u05f355\u05f2\u000b\u05f5\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u000e\u05f4\u0000\u0002\u0004\u05f15\u0003\u05f1\u0000\u0002\u000e5\u0000\u0002\u0000\u05f0\u05ef\u000b\u05f0\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u05ef\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u05f3\u0000\u0000\u00105\u0000\u0006\u05ee\u05ed\u05ec\u05eb\u05ea\u05e9\u000b\u05ee\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u05ed\u0000\u00140\u0000\bstophere\u0000\bstopHere\u000b\u05ec\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u05eb\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000b\u05ea\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u05e9\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\t\u05e8\u05e7\u05e6\u05e5\u05e40\u05e350\n\u05e8\u0000\u0004\nascr\n\u05e7\u0000\u0004\ntxdl\n\u05e6\u0000\u0004\ncobj\n\u05e5\u0000\u0004\ncitm\n\u05e4\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u05e3\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u05e2\u05e1\u05e0\n\u05e2\u0000\u0004\nerrn\u000b\u05e1\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u05e0\u0000\u0000\u0011\u05f2\u0000R\u0014\u0000C,lvE[k\/EZ[l\/,FZO-j\f\u0000\u0004k\u0000\u001d\u0000\r,FO\u000fY\u0000\bk\/EO,FO\u000fW\u0000\u000fX\u0000\u0006\u0000\u0007,FO\u000f\u000f\u000e5\u0002\u0000\u0007\u0010\u05df0\u05de\u05dd55\u05dc\u000b\u05df\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u000e\u05de\u0000\u0002\u0004\u05db5\u0003\u05db\u0000\u0001\u000e5\u0000\u0001\u0000\u05da\u000b\u05da\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u05dd\u0000\u0000\u00105\u0000\f\u05d9\u05d8\u05d7\u05d6\u05d5\u05d4\u05d3\u05d2\u05d1\u05d0\u05cf\u05ce\u000b\u05d9\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u05d8\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u05d7\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u05d6\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u000b\u05d5\u0000\u00160\u0000\taftertext\u0000\tafterText\u000b\u05d4\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u000b\u05d3\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u000b\u05d2\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u05d1\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\u000b\u05d0\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000b\u05cf\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u05ce\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0017\u05cd\u05cc\u05cb\u05ca\u05c9\u05c80\u05c7\u05c6\u05c50\u05c4\u05c3\u05c2\u05c1\u05c0~}|{6\u00001\u000b\u05cd\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u000b\u05cc\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u0003\u05cb\u0000\u0004\n\u05ca\u0000\u0004\npcls\n\u05c9\u0000\u0004\nlist\n\u05c8\u0000\u0004\nTEXT\n\u05c7\u0000\u0004\nbool\n\u05c6\u0000\u0004\nerrn\u0003\u05c5\u0004\u0000\n\u05c4\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u05c3\u0000\u0004\ncobj\u000b\u05c2\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u05c1\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u000b\u05c0\u0000\u00160\u0000\taftertext\u0000\tafterText\u0003\u0000\u0006\n~\u0000\u0004\nascr\n}\u0000\u0004\ntxdl\n|\u0000\u0004\ncitm\u000b{\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00066\u0000\u0000\u0003zyx\nz\u0000\u0004\nerrn\u000by\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006x\u0000\u0000\u0011\u05dc\u0000lf\u000eEO,\u0001\t\u0000\u000b,&\u0001&\u001d\u0000\u000b)l\u0015Y\u0000\u0003hO,\u0000\u001d\u00001j\f\u0000\u000b\u0000\u001d\u0000\r\/,FY\u0000\u0003hOk\/l\/m\/a\u0000\u0010\u000eEY\u0000\u0003hO%EO,EO,EO,EO,EO,EO\u0014\u0000\\_\u0000\u0011a\u0000\u0012,lvE[k\/EZ[l\/_\u0000\u0011a\u0000\u0012,FZOa\u0000\u0013\/EO_\u0000\u0011a\u0000\u0012,FOa\u0000\u0013k\/EO_\u0000\u0011a\u0000\u0012,FO\u001d\u0000\f%%EY\u0000\u0003hOPW\u0000\u0016X\u0000\u0014\u0000\u0015_\u0000\u0011a\u0000\u0012,FOa\u0000\u0016EO\u000fOP\u000f\u000e5\u0003\u0000\u0007\u0010w1vu6\u00016\u0002t\u000bw\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u000ev\u0000\u0002\u0004s6\u0003\u0003s\u0000\u0001\u000e6\u0003\u0000\u0001\u0000r\u000br\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002u\u0000\u0000\u00106\u0001\u0000\tqponmlkji\u000bq\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bp\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000bo\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000bn\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u000bm\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u000bl\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000bk\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u000bj\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bi\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00106\u0002\u0000\u0017hgfedcba`_^]2\u001b\\[Z2aYX6\u0004WV2\u000bh\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\ng\u0000\u0004\npcls\nf\u0000\u0004\nlist\ne\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bd\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\nc\u0000\u0004\ncobj\u000bb\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u0003a\u0000\u0006\u0003`\u0000\u0004\u000b_\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\n^\u0000\u0004\nerrn\u0003]\u0004\u0000\n\\\u0000\u0004\nascr\n[\u0000\u0004\ntxdl\nZ\u0000\u0004\nTEXT\nY\u0000\u0004\ncitm\u000bX\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00066\u0004\u0000\u0003UTS\nU\u0000\u0004\nerrn\u000bT\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006S\u0000\u0000\u0001W\u0000\u0000\u0002V\u0000\u0000\u0011t\u0000el\u000eEO,\u0000\u001d\u00005j\f\u0000\u0003l\u0002\u001d\u0000\u0018k\/l\/m\/\u000eEY\u0000\u0010k\/l\/\u000eEOPY\u0000\u001b,ml\u000e,\u0001\u001d\u0000\r)l\u0015OPY\u0000\u0003hO%EO,EO,EO,EO,EO\u0014\u0000=&kv,FO\u001d\u0000\u0014a\u0000\u0010g\u0013\u0000\na\u0000\u0011-EVY\u0000\u0011ga\u0000\u0010\u0013\u0000\na\u0000\u0011-EVO,FO\u000fW\u0000#X\u0000\u0012\u0000\u0013\u0014\u0000\n,FW\u0000\bX\u0000\u0014\u0000\u0015hO)la\u0000\u0016%\u0015\u000f\u000e5\u0004\u0000\u0007\u0010R2QP6\u00056\u0006O\u000bR\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000eQ\u0000\u0002\u0004N6\u0007\u0003N\u0000\u0001\u000e6\u0007\u0000\u0001\u0000M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002P\u0000\u0000\u00106\u0005\u0000\tLKJIHGFED\u000bL\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bK\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000bJ\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u000bI\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000bH\u0000\u00140\u0000\boldchars\u0000\boldChars\u000bG\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u000bF\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000bE\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u000bD\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u00106\u0006\u0000\u0014CBA@?>=<;:98763\u00005433G2\u000bC\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\nB\u0000\u0004\npcls\nA\u0000\u0004\nlist\n@\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b?\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\n>\u0000\u0004\ncobj\u000b=\u0000\u00140\u0000\boldchars\u0000\boldChars\u000b<\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u0003;\u0000\u0004\u0003:\u0000\b\u00039\u0000\u0006\u000b8\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\n7\u0000\u0004\nerrn\u00036\u0004\u0000\n5\u0000\u0004\nTEXT\n4\u0000\u0004\nascr\n3\u0000\u0004\ntxdl\n2\u0000\u0004\ncitm\u0011O\u0000el\u000eEO,\u0000\u001d\u0000?j\f\u0000\u0003m\u0002\u001d\u0000\u001dk\/l\/m\/\/\u000eEY\u0000\u0015k\/l\/m\/\u000eEOPY\u0000\u001b,ml\u000e,\u0001\u001d\u0000\r)l\u0015OPY\u0000\u0003hO%EO,EO,EO,EO,EO&EO_\u0000\u0010a\u0000\u0011,EO_\u0000\u0010a\u0000\u0011,FO\u001d\u0000(a\u0000\u0012g\u0013\u0000\u001ea\u0000\u0013-EO&kv_\u0000\u0010a\u0000\u0011,FO&EVY\u0000%ga\u0000\u0012\u0013\u0000\u001ea\u0000\u0013-EO&kv_\u0000\u0010a\u0000\u0011,FO&EVO_\u0000\u0010a\u0000\u0011,FO\u000fOP\u000f\u000e5\u0005\u0000\u0007\u0010130\/6\b6\t.\u000b1\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u000e0\u0000\u0002\u0004-6\n\u0003-\u0000\u0002\u000e6\n\u0000\u0002\u0000,+\u000b,\u0000\u00140\u0000\bthislist\u0000\bthisList\u000b+\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u0002\/\u0000\u0000\u00106\b\u0000\u0006*)('&%\u000b*\u0000\u00140\u0000\bthislist\u0000\bthisList\u000b)\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u000b(\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b'\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u000b&\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b%\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00106\t\u0000\t$#\"!6\u000b \u001f\u001e3\n$\u0000\u0004\nascr\n#\u0000\u0004\ntxdl\n\"\u0000\u0004\nTEXT\u000b!\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00066\u000b\u0000\u0003\u001d\u001c\u001b\n\u001d\u0000\u0004\nerrn\u000b\u001c\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001b\u0000\u0000\u0001 \u0000\u0000\u0002\u001f\u0000\u0000\n\u001e\u0000\u0004\nerrn\u0011.\u0000D,EO\u0014\u0000\u001d&kv,FO&EO,FO\u000fW\u0000!X\u0000\u0003\u0000\u0004\u0014\u0000\n,FW\u0000\bX\u0000\u0005\u0000\u0006hO)l%\u0015\u000f\u000e5\u0006\u0000\u0007\u0010\u001a3\u0019\u00186\f6\r\u0017\u000b\u001a\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\u000e\u0019\u0000\u0002\u0004\u00166\u000e\u0003\u0016\u0000\u0001\u000e6\u000e\u0000\u0001\u0000\u0015\u000b\u0015\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0018\u0000\u0000\u00106\f\u0000\f\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\u000b\u0014\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0013\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0012\u0000\u00060\u0000\u0002od\u0000\u0000\u000b\u0011\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u000b\u0010\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u000b\u000f\u0000\f0\u0000\bv1_count\u0000\u0000\u000b\u000e\u0000\f0\u0000\bv2_count\u0000\u0000\u000b\r\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u000b\f\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u000b\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\n\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u000b\t\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u00106\r\u0000\u0012\b\u0007\u0006\u00053\u0004\u0003\u0002\u0001\u00004E4S44\u000b\b\u0000\u00060\u0000\u0002v1\u0000\u0000\n\u0007\u0000\u0004\nnull\u000b\u0006\u0000\u00060\u0000\u0002v2\u0000\u0000\u000b\u0005\u0000\t0\u0000\u0005delim\u0000\u0000\u0003\u0004\u0000\u0006\n\u0003\u0000\u0004\nascr\n\u0002\u0000\u0004\ntxdl\n\u0001\u0000\u0004\ncobj\n\u0000\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nnmbr\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0017\u0001\u0007\u000eEO%EO,,lvE[k\/EZ[l\/,FZO,-,-lvE[k\/EZ[l\/EZO,FOj\f\u0000\nj\f\u0000\nlvE[k\/EZ[l\/EZO\u0002\u001d\u0000\bEY\u0000\u0005EOEO\u0017\u0000skkh\u001c\u0000\t\u0001\u001d\u0000\u0006\u0016Y\u0000\u0003hO\u0005\u001d\u0000\u000b\/EY\u0000\u0005jEO\u0005\u001d\u0000\u000b\/EY\u0000\u0005jEO\u0014\u0000&&&\u0002\u001d\u0000\bkEY\u0000\u0013&&\u0004\u001d\u0000\biEY\u0000\u0003hW\u0000\fX\u0000\u000e\u0000\u000fa\u0000\u0010EOP[OYOa\u0000\u0011\u0000\u001d\u0000\bjEY\u0000\u0003hO\u000fOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0012\u0000\f main script\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0018\u0000 \u0000m\u0000a\u0000i\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u001a\u0000\u0014 Erik Shagdar, NYHTC\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000(\u0000 \u0000E\u0000r\u0000i\u0000k\u0000 \u0000S\u0000h\u0000a\u0000g\u0000d\u0000a\u0000r\u0000,\u0000 \u0000N\u0000Y\u0000H\u0000T\u0000C\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0013\u0000\u0014\u0001\u0000\u0000\f\u0000\u0013\u0000%\u0000\u001f Generated: 2016-07-20 16:29:38\u0000\u0002\u0000\u0000\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000>\u0000 \u0000G\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000d\u0000:\u0000 \u00002\u00000\u00001\u00006\u0000-\u00000\u00007\u0000-\u00002\u00000\u0000 \u00001\u00006\u0000:\u00002\u00009\u0000:\u00003\u00008\u0002\u0000\u0012\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000n\u0000h Run 'main_helper.applescript' to after making changes in any .applescript file and after each git pull.\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0000 \u0000R\u0000u\u0000n\u0000 \u0000'\u0000m\u0000a\u0000i\u0000n\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000 \u0000t\u0000o\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000s\u0000 \u0000i\u0000n\u0000 \u0000a\u0000n\u0000y\u0000 \u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000e\u0000a\u0000c\u0000h\u0000 \u0000g\u0000i\u0000t\u0000 \u0000p\u0000u\u0000l\u0000l\u0000.\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u0000\u0000 Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0001\"\u0000 \u0000A\u0000s\u0000s\u0000u\u0000m\u0000e\u0000s\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000a\u0000t\u0000 \u0000'\u0000~\u0000\/\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000'\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000,\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000t\u0000o\u0000 \u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000P\u0000o\u0000s\u0000i\u0000x\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000'\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000.\u0000s\u0000h\u0000'\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000'\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0012\u0000m\u0000a\u0000i\u0000n\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0000&\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\u0012\u0000,\u000b\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\r\u0000,\u0000\u0002b\u0000\u0000\u0000\u0006\u0000\u0011\u0000-\u0000.\r\u0000-\u0000\u0002n\u0000\u0000\u0000\u0006\u0000\u000f\u0000\/\u00000\r\u0000\/\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u00000\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\r\u00001\r\u00001\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\r\u00002\r\u00002\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\r\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\u000b\u00005\r\u00005\u0000\u0003I\u0000\u0002\u0000\u0006\u0000\u000b\u00006\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bafdrcusr\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000f\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0002\u0000+\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002i\u0000\u0000\u0000\u0013\u0000\u0016\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000A\u000b\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u0002\u0000A\u0000\u0002\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_char\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000@\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000C\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0000G\u0001\u0000\u0000\f\u0000F\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0000E\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000O\r\u0000O\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0005\u0000P\r\u0000P\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000Q\n\u0000\u0018.sysoctonshor\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\r0\u0000\tthis_char\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000R\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000L\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000\b\u0000 \u0000U\u0000V\r\u0000U\u0000\u0001J\u0000\u0000\u0000\b\u0000\u001e\u0000W\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0002\u00000\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0002\u00001\u0002\u0000]\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000b\u000e\u0000b\u0000\u0001\u0000c\u0011\u0000c\u0000\u0002\u00002\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0002\u00003\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000j\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0000\u0002\u00004\u0002\u0000i\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0002\u00005\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\u0002\u00006\u0002\u0000q\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u0002\u00007\u0002\u0000u\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000z\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u0000\u0002\u00008\u0002\u0000y\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00009\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000A\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000B\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000C\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000D\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000E\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000F\u0002\u0000\u0000\r\u0000V\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000!\u0000\/\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000!\u0000-\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000-\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0003l\u0000\u0005\u0000%\u0000,\u0000\r\u0000\u0000\u0002[\u0000\u0000\u0000%\u0000,\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000%\u0000*\u0000\r\u0000\u0000\u0002_\u0000\u0000\u0000%\u0000*\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0003\u0000\u0010\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000!\u0000\"\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00000\u0000>\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u00000\u0000<\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00001\u0000<\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0003l\u0000\u0005\u00004\u0000;\u0000\r\u0000\u0000\u0002[\u0000\u0000\u00004\u0000;\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u00004\u00009\u0000\r\u0000\u0000\u0002`\u0000\u0000\u00004\u00009\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0003\u0000\u0010\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u00000\u00001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\f0\u0000\bhex_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000?\u0000K\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000?\u0000J\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000?\u0000F\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000?\u0000F\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000?\u0000D\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000?\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000%\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000I\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002\u0000>\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_text\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000f\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000) this sub-routine is used to encode text \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000u\u0000b\u0000-\u0000r\u0000o\u0000u\u0000t\u0000i\u0000n\u0000e\u0000 \u0000i\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000n\u0000c\u0000o\u0000d\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000H\u0000a\u0000b\u0000c\u0000d\u0000e\u0000f\u0000g\u0000h\u0000i\u0000j\u0000k\u0000l\u0000m\u0000n\u0000o\u0000p\u0000q\u0000r\u0000s\u0000t\u0000u\u0000v\u0000w\u0000x\u0000y\u0000z\u00000\u00001\u00002\u00003\u00004\u00005\u00006\u00007\u00008\u00009\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0007\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000$\u0000+\u0000!\u0000'\u0000\/\u0000?\u0000;\u0000&\u0000@\u0000=\u0000#\u0000%\u0000>\u0000<\u0000{\u0000}\u0000[\u0000]\u0000\"\u0000~\u0000`\u0000^\u0000\\\u0000|\u0000*\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u0001\u0000\u0000\u0001\u0000\u0000\f\u0000\u00006\u00000 double excape this since the code gets compiled\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000 \u0000e\u0000x\u0000c\u0000a\u0000p\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000i\u0000n\u0000c\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000d\u0000e\u0000 \u0000g\u0000e\u0000t\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000-\u0000_\u0000:\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\f\u0000\r\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001f\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000\u0001\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0001\u0000\u0000\u0016\u0000\u0017\u0001\u0003\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0002\u0000\u0003l\u0001\u0000\u0000\u0017\u0000\u0018\u0001\u0004\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0005\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0004Z\u0000\u0001\u0000 \u0000\/\u0001\b\u0001\t}|\r\u0001\b\u0000\u0002=\u0000\u0003\u0000 \u0000#\u0001\n\u0001\u000b\r\u0001\n\u0000\u0001o\u0000\u0000\u0000 \u0000!{\u000b{\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000!\u0000\"z\nz\u0000\b\u000bboovfals\r\u0001\t\u0000\u0002r\u0000\u0000\u0000&\u0000+\u0001\f\u0001\r\r\u0001\f\u0000\u0002b\u0000\u0000\u0000&\u0000)\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003l\u0001\u0000\u0000&\u0000'\u0001\u0010yx\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000&\u0000'w\u000bw\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\r\u0001\u000f\u0000\u0003l\u0001\u0000\u0000'\u0000(\u0001\u0011vu\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000'\u0000(t\u000bt\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u0001v\u0000\u0000\u0001u\u0000\u0000\r\u0001\r\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0012sr\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002r\u0000\u0000\u00000\u00003\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001m\u0000\u0000\u00000\u00001\u0001\u0017\u000e\u0001\u0017\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u0000\u0000\r\u0001\u0016\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0019po\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0003X\u0000\u0000\u00004\u0000c\u0001\u001cm\u0001\u001d\r\u0001\u001c\u0000\u0004Z\u0000\u0000\u0000D\u0000^\u0001\u001e\u0001\u001fl\u0001 \r\u0001\u001e\u0000\u0002E\u0000\u0001\u0000D\u0000G\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0001\u0000\u0000D\u0000E\u0001#kj\r\u0001#\u0000\u0001o\u0000\u0000\u0000D\u0000Ei\u000bi\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\r\u0001\"\u0000\u0001o\u0000\u0000\u0000E\u0000Fh\u000bh\u0000\r0\u0000\tthis_char\u0000\u0000\r\u0001\u001f\u0000\u0002r\u0000\u0000\u0000J\u0000O\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0005\u0000J\u0000M\u0001&gf\r\u0001&\u0000\u0002b\u0000\u0000\u0000J\u0000M\u0001'\u0001(\r\u0001'\u0000\u0003l\u0001\u0000\u0000J\u0000K\u0001)ed\r\u0001)\u0000\u0001o\u0000\u0000\u0000J\u0000Kc\u000bc\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\r\u0001(\u0000\u0001o\u0000\u0000\u0000K\u0000Lb\u000bb\u0000\r0\u0000\tthis_char\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\r\u0001%\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0001*a`\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002l\u0000\u0000\r\u0001 \u0000\u0002r\u0000\u0000\u0000R\u0000^\u0001+\u0001,\r\u0001+\u0000\u0002c\u0000\u0000\u0000R\u0000\\\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0005\u0000R\u0000Z\u0001\/^]\r\u0001\/\u0000\u0002b\u0000\u0000\u0000R\u0000Z\u00010\u00011\r\u00010\u0000\u0003l\u0001\u0000\u0000R\u0000S\u00012\\[\r\u00012\u0000\u0001o\u0000\u0000\u0000R\u0000SZ\u000bZ\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\r\u00011\u0000\u0003I\u0000\u0000\u0000S\u0000YY\u00013X\u000bY\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u0002\u00013\u0000\u0002\u00014W\r\u00014\u0000\u0001o\u0000\u0000\u0000T\u0000UV\u000bV\u0000\r0\u0000\tthis_char\u0000\u0000\u0002W\u0000\u0000\u0002X\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\r\u0001.\u0000\u0001m\u0000\u0000\u0000Z\u0000[U\nU\u0000\u0004\nTEXT\r\u0001,\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u00015TS\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u000bm\u0000\r0\u0000\tthis_char\u0000\u0000\r\u0001\u001d\u0000\u0001o\u0000\u0000\u00007\u00008Q\u000bQ\u0000\r0\u0000\tthis_text\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u00016P\r\u00016\u0000\u0001L\u0000\u0000\u0000d\u0000f\u00017\r\u00017\u0000\u0003l\u0001\u0000\u0000d\u0000e\u00018ON\r\u00018\u0000\u0001o\u0000\u0000\u0000d\u0000eM\u000bM\u0000\u00100\u0000\fencoded_text\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002P\u0000\u0000\u0002\u0000\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002i\u0000\u0000\u0000\u001b\u0000\u001e\u0001?\u0001@\r\u0001?\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000F\u0001AE\u000bF\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u0002\u0001A\u0000\u0002\u0001BD\r\u0001B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002D\u0000\u0000\u0002E\u0000\u0000\r\u0001@\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001C\u0002\u0001C\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000B\u0001F\u0001G\u0001B\u0000\u0000\f\u0001F\u0000\u0012\u0000\f version 1.8\u0000\u0002\u0000\u0000\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00008\u0002\u0001E\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001J\u0000\u0002\u0001K\u0001L\r\u0001K\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0013\u0001M\u0001N\u0001O\r\u0001M\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\b\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u0003>\u0001S\u0001T\u0001>\u0000\u0000\f\u0001S\u0000D\u0000> prefs MIGHT be a record that looks like this: {fmType:\"Adv\"} \u0000\u0002\u0000\u0000\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000|\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000k\u0000s\u0000 \u0000l\u0000i\u0000k\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000:\u0000 \u0000{\u0000f\u0000m\u0000T\u0000y\u0000p\u0000e\u0000:\u0000\"\u0000A\u0000d\u0000v\u0000\"\u0000}\u0000 \u0002\u0001R\u0000\u0002\u0001V=\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\b\u0001W\u0001X\r\u0001W\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0001Y\u0001Z\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0006<\u000b<\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001Z\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0001X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002=\u0000\u0000\r\u0001N\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000987\n9\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00018\u0000\u0000\u00027\u0000\u0000\r\u0001O\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0013\u0001[\u0001\\\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0006\u0000U\u0000n\u0000k\r\u0001\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00006\u000b6\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0001L\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u0002\u0001`\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0001c\u0001d\r\u0001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000D\u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000T\u0000r\u0000a\u0000n\u0000s\u0000f\u0000e\u0000r\u0000-\u0000D\u0000O\u0000_\u0000N\u0000O\u0000T\u0000_\u0000R\u0000E\u0000N\u0000A\u0000M\u0000E\r\u0001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u0002\u0001b\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001b\u0001i\u0001j\r\u0001i\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001k\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0001j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0002\u0001h\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0001n\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0004Z\u0000\u0000\u0000\u001c\u0000\u0001q\u0001r-\u0001s\r\u0001q\u0000\u0001H\u0000\u0000\u0000\u001c\u0000$\u0001t\r\u0001t\u0000\u0002E\u0000\u0000\u0000\u001c\u0000#\u0001u\u0001v\r\u0001u\u0000\u0003l\u0000\u0005\u0000\u001c\u0000!\u0001w,+\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u001c\u0000!*\u0001x)\n*\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001x\u0000\u0000f\u0000\u0000\u0000\u001c\u0000\u001d\u0002)\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\r\u0001v\u0000\u0001o\u0000\u0000\u0000!\u0000\"(\u000b(\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\r\u0001r\u0000\u0001k\u0000\u0000\u0000'\u0000{\u0001y\u0002\u0001y\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0002O\u0000\u0000\u0000'\u0000=\u0001|\u0001}\r\u0001|\u0000\u0002r\u0000\u0000\u0000+\u0000<\u0001~\u0001\r\u0001~\u0000\u0002n\u0000\u0000\u0000+\u0000:\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00008\u0000:'\n'\u0000\u0004\ndnam\r\u0001\u0000\u0003l\u0000\u0005\u0000+\u00008\u0001&%\r\u0001\u0000\u00026\u0001\u0000\u0000+\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0001\u0000+\u0000\/$\u0001\n$\u0000\u0004\npcap\r\u0001\u0000\u0001m\u0000\u0000\u0000-\u0000.#\u0003#\u0000\u0001\r\u0001\u0000\u0002C\u0001\u0000\u00000\u00007\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00001\u00003\"\n\"\u0000\u0004\ndnam\r\u0001\u0000\u0001o\u0000\u0000\u00004\u00006!\u000b!\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0001&\u0000\u0000\u0001%\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0001}\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001{\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000>\u0000s\u0001\u0001\u0001\u001f\r\u0001\u0000\u0002=\u0000\u0003\u0000>\u0000A\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000>\u0000?\u001e\u000b\u001e\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000U\u0000n\u0000k\r\u0001\u0000\u0002r\u0000\u0000\u0000D\u0000M\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000K\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000I\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000D\u0000G\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000E\u0000F\u001d\u000b\u001d\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0001\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000I\u0000J\u001c\n\u001c\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0000P\u0000S\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u001a\u000b\u001a\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000A\u0000d\u0000v\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000V\u0000]\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000V\u0000[\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000V\u0000Y\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000Z\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u0019\n\u0019\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0000`\u0000e\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000`\u0000a\u0017\u000b\u0017\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000P\u0000r\u0000o\u0002\u0001\u0000\u0002\u0001\u0016\r\u0001\u0000\u0002r\u0000\u0000\u0000h\u0000o\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000h\u0000m\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000k\u0000l\u0015\n\u0015\u0000\u0004\nret \r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0016\u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0013\r\u0001\u0000\u0002r\u0000\u0000\u0000t\u0000{\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000t\u0000y\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000t\u0000u\u0012\n\u0012\u0000\u0004\nret \r\u0001\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0013\u0000\u0000\u0002-\u0000\u0000\r\u0001s\u0000\u0001k\u0000\u0000\u0000~\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000~\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000~\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0001\u0000\u0002\u0001\u000f\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u000f\u0000\u0000\u0002\u0001p\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000$\u0000c\u0000e\u0000l\u0000l\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000l\u0000a\u0000y\u0000o\u0000u\u0000t\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u001a\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0004\u0001\u0003\n\u0004\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0003\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\u00160\u0000\tinputdata\u0000\tinputData\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tinputdata\u0000\tinputData\u0002\u0000\u0000\u0002\u0001>\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u001f\u0000\"\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001)\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000\u0012\u0000\f version 1.6\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00006\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0019\u0001\u0002\u0000\u0002\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000e\u0002\u0002\u0002\u0002\u0002\u0000\u0002\u0002\u0003\u0002\u0004\r\u0002\u0003\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u0003\u0002\u0005\u0002\u0006\u0001\u0000\u0000\f\u0002\u0005\u0000b\u0000\\ someData MIGHT be a record that looks like this: {fmType:\"Adv\", someData:\"BLAH BLAH BLAH\"} \u0000\u0002\u0000\u0000\u000e\u0002\u0006\u0000\u0001\u0002\u0007\u0011\u0002\u0007\u0000\u0000 \u0000s\u0000o\u0000m\u0000e\u0000D\u0000a\u0000t\u0000a\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000k\u0000s\u0000 \u0000l\u0000i\u0000k\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000:\u0000 \u0000{\u0000f\u0000m\u0000T\u0000y\u0000p\u0000e\u0000:\u0000\"\u0000A\u0000d\u0000v\u0000\"\u0000,\u0000 \u0000s\u0000o\u0000m\u0000e\u0000D\u0000a\u0000t\u0000a\u0000:\u0000\"\u0000B\u0000L\u0000A\u0000H\u0000 \u0000B\u0000L\u0000A\u0000H\u0000 \u0000B\u0000L\u0000A\u0000H\u0000\"\u0000}\u0000 \u0002\u0002\u0004\u0000\u0002\u0002\b\u0002\t\r\u0002\b\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\b\u0002\n\u0002\u000b\r\u0002\n\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0002\f\u0002\r\r\u0002\f\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0006\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002\r\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0002\t\u0000\u0002\u0002\u000e\r\u0002\u000e\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0002n\u0000\u0000\u0000\t\u0000\f\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0001o\u0000\u0000\u0000\n\u0000\f\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0012\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002\u0000\u0000\r\u0002\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u0015\u000e\u0002\u0015\u0000\u0001\u0002\u0016\u0011\u0002\u0016\u0000\u0006\u0000U\u0000n\u0000k\r\u0002\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0002\u0001\u0000\u0002\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001a\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u001b\u0002\u001c\r\u0002\u001b\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000D\u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000T\u0000r\u0000a\u0000n\u0000s\u0000f\u0000e\u0000r\u0000-\u0000D\u0000O\u0000_\u0000N\u0000O\u0000T\u0000_\u0000R\u0000E\u0000N\u0000A\u0000M\u0000E\r\u0002\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u0002\u0002\u001a\u0000\u0002\u0002\u001f\u0002 \r\u0002\u001f\u0000\u0002r\u0000\u0000\u0000\u001e\u0000!\u0002!\u0002\"\r\u0002!\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0002#\u000e\u0002#\u0000\u0001\u0002$\u0011\u0002$\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0002\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0002\u0002 \u0000\u0002\u0002%\u0002&\r\u0002%\u0000\u0004Z\u0000\u0000\u0000\"\u0000\u0002'\u0002(\u0002)\r\u0002'\u0000\u0001H\u0000\u0000\u0000\"\u0000*\u0002*\r\u0002*\u0000\u0002E\u0000\u0000\u0000\"\u0000)\u0002+\u0002,\r\u0002+\u0000\u0003l\u0000\u0005\u0000\"\u0000'\u0002-\r\u0002-\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0002.\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002.\u0000\u0000f\u0000\u0000\u0000\"\u0000#\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002,\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\r\u0002(\u0000\u0001k\u0000\u0000\u0000-\u0000\u0002\/\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0002O\u0000\u0000\u0000-\u0000C\u00022\u00023\r\u00022\u0000\u0002r\u0000\u0000\u00001\u0000B\u00024\u00025\r\u00024\u0000\u0002n\u0000\u0000\u00001\u0000@\u00026\u00027\r\u00026\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\ndnam\r\u00027\u0000\u0003l\u0000\u0005\u00001\u0000>\u00028\r\u00028\u0000\u00026\u0001\u0000\u00001\u0000>\u00029\u0002:\r\u00029\u0000\u00024\u0000\u0001\u00001\u00005\u0002;\n\u0000\u0004\npcap\r\u0002;\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0001\r\u0002:\u0000\u0002C\u0001\u0000\u00006\u0000=\u0002<\u0002=\r\u0002<\u0000\u00011\u0000\u0000\u00007\u00009\n\u0000\u0004\ndnam\r\u0002=\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u0001\u0000\u0000\u0001\u0000\u0000\r\u00025\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u00023\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0002>\u000f\u0002>\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00021\u0000\u0002\u0002?\u0002@\r\u0002?\u0000\u0004Z\u0000\u0000\u0000D\u0000{\u0002A\u0002B\u0002C\r\u0002A\u0000\u0002=\u0000\u0003\u0000D\u0000G\u0002D\u0002E\r\u0002D\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002E\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0002F\u000e\u0002F\u0000\u0001\u0002G\u0011\u0002G\u0000\u0006\u0000U\u0000n\u0000k\r\u0002B\u0000\u0002r\u0000\u0000\u0000J\u0000S\u0002H\u0002I\r\u0002H\u0000\u0002b\u0000\u0000\u0000J\u0000Q\u0002J\u0002K\r\u0002J\u0000\u0002b\u0000\u0000\u0000J\u0000O\u0002L\u0002M\r\u0002L\u0000\u0002b\u0000\u0000\u0000J\u0000M\u0002N\u0002O\r\u0002N\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0002P\u000e\u0002P\u0000\u0001\u0002Q\u0011\u0002Q\u0000\u0014\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000\"\r\u0002O\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\r\u0002M\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0002R\u000e\u0002R\u0000\u0001\u0002S\u0011\u0002S\u0000\u0002\u0000\"\r\u0002K\u0000\u0001o\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nret \r\u0002I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002C\u0000\u0002\u0002T\u0002U\r\u0002T\u0000\u0002=\u0000\u0003\u0000V\u0000[\u0002V\u0002W\r\u0002V\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002W\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0002X\u000e\u0002X\u0000\u0001\u0002Y\u0011\u0002Y\u0000\u0006\u0000A\u0000d\u0000v\u0002\u0002U\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0002r\u0000\u0000\u0000^\u0000e\u0002\\\u0002]\r\u0002\\\u0000\u0002b\u0000\u0000\u0000^\u0000c\u0002^\u0002_\r\u0002^\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0002`\u000e\u0002`\u0000\u0001\u0002a\u0011\u0002a\u0000Z\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\u0000\"\r\u0002_\u0000\u0001o\u0000\u0000\u0000a\u0000b\n\u0000\u0004\nret \r\u0002]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002[\u0000\u0002\u0002b\u0002c\r\u0002b\u0000\u0002=\u0000\u0003\u0000h\u0000m\u0002d\u0002e\r\u0002d\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\r\u0002e\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0002f\u000e\u0002f\u0000\u0001\u0002g\u0011\u0002g\u0000\u0006\u0000P\u0000r\u0000o\u0002\u0002c\u0000\u0002\u0002h\r\u0002h\u0000\u0002r\u0000\u0000\u0000p\u0000w\u0002i\u0002j\r\u0002i\u0000\u0002b\u0000\u0000\u0000p\u0000u\u0002k\u0002l\r\u0002k\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0002m\u000e\u0002m\u0000\u0001\u0002n\u0011\u0002n\u0000P\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\u0000\"\r\u0002l\u0000\u0001o\u0000\u0000\u0000s\u0000t\n\u0000\u0004\nret \r\u0002j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002@\u0000\u0002\u0002o\u0002p\r\u0002o\u0000\u0003l\u0000\u0002\u0000|\u0000|\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002p\u0000\u0002\u0002q\r\u0002q\u0000\u0002r\u0000\u0000\u0000|\u0000\u0002r\u0002s\r\u0002r\u0000\u0002b\u0000\u0000\u0000|\u0000\u0002t\u0002u\r\u0002t\u0000\u0001o\u0000\u0000\u0000|\u0000}\n\u0000\u0004\nret \r\u0002u\u0000\u0001m\u0000\u0000\u0000}\u0000\u0002v\u000e\u0002v\u0000\u0001\u0002w\u0011\u0002w\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0002s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002)\u0000\u0001k\u0000\u0000\u0000\u0000\u0002x\u0002\u0002x\u0000\u0002\u0002y\u0002z\r\u0002y\u0000\u0002r\u0000\u0000\u0000\u0000\u0002{\u0002|\r\u0002{\u0000\u0001m\u0000\u0000\u0000\u0000\u0002}\u000e\u0002}\u0000\u0001\u0002~\u0011\u0002~\u0000\u0000\r\u0002|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u0002\u0002z\u0000\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u0002\u0000\u0000\u0002\u0002&\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedata\u0000\bsomeData\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u001a\u0000\u0014 escape backslashes \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000(\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000s\u0000l\u0000a\u0000s\u0000h\u0000e\u0000s\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0002\u0000\u0000\u0002\n\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\\\u0002\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u001c\u0000\u0016 escape double-quotes \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000,\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000q\u0000u\u0000o\u0000t\u0000e\u0000s\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0002\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\u0000\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbackslash\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0002\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0002\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000)\u0000# reset the AppleScript delimiters\t \u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000F\u0000 \u0000r\u0000e\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000\t\u0000 \u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0001\u0007\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0001\u0002\u0001\u0006~\n~\u0000\u0004\ntxdl\r\u0002\u0000\u00011\u0000\u0000\u0000\u0001\u0002}\n}\u0000\u0004\nascr\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0001\b\u0001\b|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0001\b\u0001\u0019\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\u0011\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0001\b\u0001\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000,\u0000s\u0000e\u0000t\u0000 \u0000c\u0000e\u0000l\u0000l\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000l\u0000a\u0000y\u0000o\u0000u\u0000t\u0000 \u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0001\u000b\u0001\fy\u000by\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\r\u0002\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0000 \u0000t\u0000o\u0000 \u0000(\u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012x\u000bx\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\r\u0002\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0002\u000e\u0002\u0000\u0001\u0003\u0000\u0011\u0003\u0000\u0000\u0018\u0000\"\u0000 \u0000a\u0000s\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\u0002\u0002\u0000\u0002\u0003\u0001\u0003\u0002\r\u0003\u0001\u0000\u0002r\u0000\u0000\u0001\u001a\u0001!\u0003\u0003\u0003\u0004\r\u0003\u0003\u0000\u0002b\u0000\u0000\u0001\u001a\u0001\u001f\u0003\u0005\u0003\u0006\r\u0003\u0005\u0000\u0002b\u0000\u0000\u0001\u001a\u0001\u001d\u0003\u0007\u0003\b\r\u0003\u0007\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001bv\u000bv\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\r\u0003\b\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001cu\u000bu\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\r\u0003\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001et\u000bt\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\r\u0003\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002\u0003\u0002\u0000\u0002\u0003\t\u0003\n\r\u0003\t\u0000\u0003l\u0000\u0002\u0001\"\u0001\"rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0003\n\u0000\u0002\u0003\u000b\u0003\f\r\u0003\u000b\u0000\u0003I\u0000\u0002\u0001\"\u0001'o\u0003\rn\no\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0003\r\u0000\u0001o\u0000\u0000\u0001\"\u0001#m\u000bm\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u0002n\u0000\u0000\u0002\u0003\f\u0000\u0002\u0003\u000el\r\u0003\u000e\u0000\u0003l\u0000\u0002\u0001(\u0001(kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002l\u0000\u0000\u0002\u0001\u0000\u0002\u0003\u000f\u0003\u0010\r\u0003\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u0003\u0010\u0000\u0002\u0003\u0011\u0003\u0012\r\u0003\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0003\u0012\u0000\u0002\u0003\u0013\u0003\u0014\r\u0003\u0013\u0000\u0002i\u0000\u0000\u0000#\u0000&\u0003\u0015\u0003\u0016\r\u0003\u0015\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u0003\u0017a\u000bb\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u0002\u0003\u0017\u0000\u0002\u0003\u0018`\r\u0003\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u0003\u0016\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0003\u0019\u0002\u0003\u0019\u0000\u0002\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u0003\u001c\u0003\u001d\u0001^\u0000\u0000\f\u0003\u001c\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u0003\u001d\u0000\u0001\u0003\u001e\u0011\u0003\u001e\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u0003\u001b\u0000\u0002\u0003\u001f\u0003 \r\u0003\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0003 \u0000\u0002\u0003!\u0003\"\r\u0003!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0010\u0003#\u0003$\r\u0003#\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u000e\u0003%\u0006\u0003%\u0000\u0003Z\u0003&\u0003'\u000bZ\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0003&\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003(\u000e\u0003(\u0000\u0001\u0003)\u0011\u0003)\u0000\u0006\u0000P\u0000r\u0000o\u0006\u0003'\u0000\u0003Y\u0003*\u0003+\u000bY\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0003*\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004X\u0003X\u0000\n\u0006\u0003+\u0000\u0003W\u0003,\u0003-\u000bW\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003,\u0000\u0002]\u0000\u0000\u0000\u0005\u0000\b\u0003.\u0003\/\r\u0003.\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006V\u0003V\u0000\n\r\u0003\/\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007U\nU\u0000\u0004\nmin \u0006\u0003-\u0000\u0003T\u00030\u00031\u000bT\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u00030\u0000\u0001m\u0000\u0000\u0000\t\u0000\nS\nS\u0000\u0004\nnull\u0006\u00031\u0000\u0003R\u00032Q\u000bR\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u00032\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00033\u000e\u00033\u0000\u0001\u00034\u0011\u00034\u0000\u0018\u0000C\u0000L\u0000O\u0000S\u0000E\u0000_\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0006Q\u0000\u0000\r\u0003$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0003\"\u0000\u0002\u00035\u00036\r\u00035\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0016\u00037\u00038\r\u00037\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0014\u00039\u0003:\r\u00039\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012O\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003:\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013N\u000bN\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u00038\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u00036\u0000\u0002\u0003;\u0003<\r\u0003;\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0003<\u0000\u0002\u0003=\u0003>\r\u0003=\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0003?\u0003@\r\u0003?\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001a\u0003A\u0003B\r\u0003A\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u001aI\u000bI\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003B\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018H\u000bH\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u0002\u0003>\u0000\u0002\u0003C\u0003D\r\u0003C\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0003E\u0003F\r\u0003E\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0003G\u0003H\r\u0003G\u0000\u0001o\u0000\u0000\u0000\u001e\u0000 F\u000bF\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0003H\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001eE\u000bE\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0003D\u0000\u0002\u0003I\u0003J\r\u0003I\u0000\u0002r\u0000\u0000\u0000#\u0000(\u0003K\u0003L\r\u0003K\u0000\u0002n\u0000\u0000\u0000#\u0000&\u0003M\u0003N\r\u0003M\u0000\u0001o\u0000\u0000\u0000$\u0000&C\u000bC\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003N\u0000\u0001o\u0000\u0000\u0000#\u0000$B\u000bB\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0003J\u0000\u0002\u0003O\u0003P\r\u0003O\u0000\u0003l\u0000\u0002\u0000)\u0000)@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0003P\u0000\u0002\u0003Q\u0003R\r\u0003Q\u0000\u0002r\u0000\u0000\u0000)\u00004\u0003S\u0003T\r\u0003S\u0000\u0003I\u0000\u0002\u0000)\u00002=\u0003U\u0003V\n=\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u0003U\u0000\u0003l\u0000\u0005\u0000)\u0000,\u0003W<;\r\u0003W\u0000\u0002^\u0000\u0000\u0000)\u0000,\u0003X\u0003Y\r\u0003X\u0000\u0001o\u0000\u0000\u0000)\u0000*:\u000b:\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0003Y\u0000\u0001o\u0000\u0000\u0000*\u0000+9\u000b9\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001<\u0000\u0000\u0001;\u0000\u0000\u0006\u0003V\u0000\u00038\u0003Z7\n8\u0000\u0004\ndire\r\u0003Z\u0000\u0001m\u0000\u0000\u0000-\u0000.6\n6\u0000\b\u000bolierndD\u00067\u0000\u0000\r\u0003T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0003R\u0000\u0002\u0003[\u0003\\\r\u0003[\u0000\u0003l\u0000\u0002\u00005\u00005432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u0003\\\u0000\u0002\u0003]\u0003^\r\u0003]\u0000\u0003l\u0000\u0002\u00005\u0000510\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0003^\u0000\u0002\u0003_\u0003`\r\u0003_\u0000\u0003Q\u0000\u0000\u00005\u0001\u0003a\u0003b\u0003c\r\u0003a\u0000\u0001k\u0000\u0000\u00008\u0001\u0003d\u0002\u0003d\u0000\u0002\u0003e\u0003f\r\u0003e\u0000\u0003l\u0000\u0001\u00008\u00008.\u0003g\u0003h\u0001.\u0000\u0000\f\u0003g\u0000=\u00007 try closing the database by telling FileMaker to do it\u0000\u0002\u0000\u0000\u000e\u0003h\u0000\u0001\u0003i\u0011\u0003i\u0000n\u0000 \u0000t\u0000r\u0000y\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000y\u0000 \u0000t\u0000e\u0000l\u0000l\u0000i\u0000n\u0000g\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000i\u0000t\u0002\u0003f\u0000\u0002\u0003j\u0003k\r\u0003j\u0000\u0004Z\u0000\u0000\u00008\u0000\u0003l\u0003m-,\r\u0003l\u0000\u0002>\u0001\u0000\u00008\u0000=\u0003n\u0003o\r\u0003n\u0000\u0002n\u0000\u0000\u00008\u0000;\u0003p\u0003q\r\u0003p\u0000\u0001o\u0000\u0000\u00009\u0000;+\u000b+\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003q\u0000\u0001o\u0000\u0000\u00008\u00009*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003o\u0000\u0001m\u0000\u0000\u0000;\u0000<)\n)\u0000\u0004\nnull\r\u0003m\u0000\u0003Q\u0000\u0000\u0000@\u0000\u0003r\u0003s\u0003t\r\u0003r\u0000\u0002O\u0000\u0000\u0000C\u0000s\u0003u\u0003v\r\u0003u\u0000\u0001k\u0000\u0000\u0000G\u0000r\u0003w\u0002\u0003w\u0000\u0002\u0003x\u0003y\r\u0003x\u0000\u0003I\u0000\u0002\u0000G\u0000O(\u0003z'\n(\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r\u0003z\u0000\u00024\u0000\u0000\u0000G\u0000K&\u0003{\n&\u0000\u0004\ncDB \r\u0003{\u0000\u0001o\u0000\u0000\u0000I\u0000J%\u000b%\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002'\u0000\u0000\u0002\u0003y\u0000\u0002\u0003|\u0003}\r\u0003|\u0000\u0004Z\u0000\u0001\u0000P\u0000o\u0003~\u0003$#\r\u0003~\u0000\u0001o\u0000\u0000\u0000P\u0000U\"\u000b\"\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0003\u0000\u0002n\u0000\u0001\u0000X\u0000k\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000Y\u0000k!\u0003 \u000b!\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000Y\u0000^\u001f\u000b\u001f\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0003\u0000\u0002\u0003\u001e\r\u0003\u0000\u0002b\u0000\u0000\u0000^\u0000g\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000^\u0000c\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000D\u0000A\u0000T\u0000A\u0000B\u0000A\u0000S\u0000E\u0000 \u0000'\r\u0003\u0000\u0001o\u0000\u0000\u0000a\u0000b\u001d\u000b\u001d\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000$\u0000'\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000.\u0002\u001e\u0000\u0000\u0002 \u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000X\u0000Y\u0002$\u0000\u0000\u0001#\u0000\u0000\u0002\u0003}\u0000\u0002\u0003\u001c\r\u0003\u0000\u0001L\u0000\u0000\u0000p\u0000r\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000p\u0000q\u001b\n\u001b\u0000\b\u000bboovtrue\u0002\u001c\u0000\u0000\r\u0003v\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u000f\u0003\u00022\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u000f3\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f4\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u000f3\u0000\u0000\u0000\u0000\u0002\u0000PMacintoshSSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0003s\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u0003\u0003\n\u001a\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0003\u0000\u0003\u0018\u0003\u0017\n\u0018\u0000\u0004\nerrn\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0017\u0000\u0000\r\u0003t\u0000\u0004Z\u0000\u0001\u0000{\u0000\u0003\u0003\u0015\u0014\r\u0003\u0000\u0001o\u0000\u0000\u0000{\u0000\u0013\u000b\u0013\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0003\u0000\u0002n\u0000\u0001\u0000\u0000\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0012\u0003\u0011\u000b\u0012\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\u0003\u0010\u0000\u0005\u0002\u0003\u0000\u0002\u0003\u000f\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000D\u0000A\u0000T\u0000A\u0000B\u0000A\u0000S\u0000E\u0000 \u0000'\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000h\u0000'\u0000 \u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000,\u0000 \u0000t\u0000r\u0000y\u0000i\u0000n\u0000g\u0000 \u0000b\u0000y\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0002\u000f\u0000\u0000\u0002\u0011\u0000\u0000\r\u0003\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0003k\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\f\u000b\n\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0000\u0000\u0006\u0003\u0003\u0001\u0006\u0000\u0000\f\u0003\u0000=\u00007 unable to close directly, try to call the close script\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000n\u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u000b\u0005\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0004\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0006\u0000A\u0000d\u0000v\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u0002\u0000\u0000\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\r\u0003\u0000\u0002O\u0000\u0000\u0000\u0001\u0003\u0003\r\u0003\u0000\u0002O\u0000\u0000\u0000\u0001\u0003\u0003\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0001\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0000\u0000\u0003\u0003\u0001\u0000\u0000\f\u0003\u0000G\u0000A wait until Close Window is available ( menu item is available ):\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000 \u0000)\u0000:\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002U\u0000\u0000\u0000\u0001\u000b\u0003\u0003\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0001\u0006\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nenaB\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmenI\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmenE\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmbri\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\nmbar\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0001\u0000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\r\u0003\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\r\u0003\u0000\u0003I\u0000\u0002\u0001\u0001\u0001\u0006\u0003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0003\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0002\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0001\f\u0001\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0001\u0001\f\u0001\f\u0003\u0003\u0001\u0000\u0000\f\u0003\u0000\/\u0000) try to close by running the close script\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000R\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000b\u0000y\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0003\u0000\u0002\u0003\u0004\u0000\r\u0003\u0000\u0003Q\u0000\u0000\u0001\f\u0001\u0004\u0001\u0004\u0002\u0004\u0003\r\u0004\u0001\u0000\u0004Z\u0000\u0000\u0001\u000f\u0001i\u0004\u0004\u0004\u0005\u0004\u0006\r\u0004\u0004\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\u000b\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\r\u0004\u0005\u0000\u0001k\u0000\u0000\u0001\u0013\u0001K\u0004\u0007\u0002\u0004\u0007\u0000\u0002\u0004\b\u0004\t\r\u0004\b\u0000\u0002n\u0000\u0001\u0001\u0013\u0001\u001a\u0004\n\u0004\u000b\r\u0004\n\u0000\u0003I\u0000\u0000\u0001\u0014\u0001\u001a\u0004\f\u000b\u000040\u0000\u0018fmgui_managescripts_open\u0000\u0018fmGUI_ManageScripts_Open\u0002\u0004\f\u0000\u0002\u0004\r\r\u0004\r\u0000\u0001J\u0000\u0000\u0001\u0014\u0001\u0016\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u000b\u0000\u0000f\u0000\u0000\u0001\u0013\u0001\u0014\u0002\u0004\t\u0000\u0002\u0004\u000e\u0004\u000f\r\u0004\u000e\u0000\u0002n\u0000\u0001\u0001\u001b\u0001(\u0004\u0010\u0004\u0011\r\u0004\u0010\u0000\u0003I\u0000\u0000\u0001\u001c\u0001(\u0004\u0012\u000b\u0000J0\u0000#fmgui_managescripts_fmscript_select\u0000#fmGUI_ManageScripts_FmScript_Select\u0002\u0004\u0012\u0000\u0002\u0004\u0013\r\u0004\u0013\u0000\u0001K\u0000\u0000\u0001\u001c\u0001$\u0004\u0014\u0006\u0004\u0014\u0000\u0003\u0004\u0015\u000b\u0000\u001c0\u0000\ffmscriptname\u0000\ffmScriptName\r\u0004\u0015\u0000\u0003l\u0000\u0005\u0001\u001f\u0001\"\u0004\u0016\r\u0004\u0016\u0000\u0002n\u0000\u0000\u0001\u001f\u0001\"\u0004\u0017\u0004\u0018\r\u0004\u0017\u0000\u0001o\u0000\u0000\u0001 \u0001\"\u000b\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u0004\u0018\u0000\u0001o\u0000\u0000\u0001\u001f\u0001 \u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0011\u0000\u0000f\u0000\u0000\u0001\u001b\u0001\u001c\u0002\u0004\u000f\u0000\u0002\u0004\u0019\u0004\u001a\r\u0004\u0019\u0000\u0002r\u0000\u0000\u0001)\u0001E\u0004\u001b\u0004\u001c\r\u0004\u001b\u0000\u00026\u0001\u0000\u0001)\u0001C\u0004\u001d\u0004\u001e\r\u0004\u001d\u0000\u0002n\u0000\u0000\u0001)\u00014\u0004\u001f\u0004 \r\u0004\u001f\u0000\u00024\u0000\u0001\u0001\/\u00014\u0004!\n\u0000\u0004\nbutT\r\u0004!\u0000\u0001m\u0000\u0000\u00012\u00013\u0003\u0000\u0001\r\u0004 \u0000\u00024\u0000\u0000\u0001)\u0001\/\u0004\"\n\u0000\u0004\ncwin\r\u0004\"\u0000\u0001m\u0000\u0000\u0001-\u0001.\u0003\u0000\u0001\r\u0004\u001e\u0000\u0002=\u0000\u0003\u00017\u0001B\u0004#\u0004$\r\u0004#\u0000\u00011\u0000\u0000\u00018\u0001<\n\u0000\u0004\ndesc\r\u0004$\u0000\u0001m\u0000\u0000\u0001=\u0001A\u0004%\u000e\u0004%\u0000\u0001\u0004&\u0011\u0004&\u0000\u000e\u0000P\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\r\u0004\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u0002\u0004\u001a\u0000\u0002\u0004'\r\u0004'\u0000\u0003I\u0000\u0002\u0001F\u0001K\u0004(\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0004(\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0006\u0000\u0001k\u0000\u0000\u0001N\u0001i\u0004)\u0002\u0004)\u0000\u0002\u0004*\u0004+\r\u0004*\u0000\u0002r\u0000\u0000\u0001N\u0001Z\u0004,\u0004-\r\u0004,\u0000\u0002n\u0000\u0000\u0001N\u0001X\u0004.\u0004\/\r\u0004.\u0000\u00011\u0000\u0000\u0001T\u0001X\n\u0000\u0004\npnam\r\u0004\/\u0000\u00024\u0000\u0000\u0001N\u0001T\u00040\n\u0000\u0004\ncwin\r\u00040\u0000\u0001m\u0000\u0000\u0001R\u0001S\u0003\u0000\u0001\r\u0004-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u0002\u0004+\u0000\u0002\u00041\r\u00041\u0000\u0003R\u0000\u0000\u0001[\u0001i\u00042\u00043\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00042\u0000\u0002b\u0000\u0000\u0001c\u0001h\u00044\u00045\r\u00044\u0000\u0001m\u0000\u0000\u0001c\u0001f\u00046\u000e\u00046\u0000\u0001\u00047\u0011\u00047\u0000|\u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000w\u0000a\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000 \u0000-\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000s\u0000 \r\u00045\u0000\u0001o\u0000\u0000\u0001f\u0001g\u000b\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u0006\u00043\u0000\u0003\u00048\n\u0000\u0004\nerrn\r\u00048\u0000\u0001m\u0000\u0000\u0001_\u0001b\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0004\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0004\u0003\u0000\u0001k\u0000\u0000\u0001q\u0001\u00049\u0002\u00049\u0000\u0002\u0004:\u0004;\r\u0004:\u0000\u0004Z\u0000\u0001\u0001q\u0001\u0004<\u0004=\r\u0004<\u0000\u0001o\u0000\u0000\u0001q\u0001v\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0004=\u0000\u0003I\u0000\u0000\u0001y\u0001\u0004>\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0004>\u0000\u0002\u0004?\u0004@\r\u0004?\u0000\u0001o\u0000\u0000\u0001z\u0001\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0004@\u0000\u0002\u0004A\r\u0004A\u0000\u0002b\u0000\u0000\u0001\u0001\u0004B\u0004C\r\u0004B\u0000\u0002b\u0000\u0000\u0001\u0001\u0004D\u0004E\r\u0004D\u0000\u0002b\u0000\u0000\u0001\u0001\u0004F\u0004G\r\u0004F\u0000\u0002b\u0000\u0000\u0001\u0001\u0004H\u0004I\r\u0004H\u0000\u0001m\u0000\u0000\u0001\u0001\u0004J\u000e\u0004J\u0000\u0001\u0004K\u0011\u0004K\u0000\b\u0000N\u0000o\u0000 \u0000'\r\u0004I\u0000\u0003l\u0000\u0005\u0001\u0001\u0004L\r\u0004L\u0000\u0002n\u0000\u0000\u0001\u0001\u0004M\u0004N\r\u0004M\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\r\u0004N\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004G\u0000\u0001m\u0000\u0000\u0001\u0001\u0004O\u000e\u0004O\u0000\u0001\u0004P\u0011\u0004P\u0000\f\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0004E\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0004C\u0000\u0001m\u0000\u0000\u0001\u0001\u0004Q\u000e\u0004Q\u0000\u0001\u0004R\u0011\u0004R\u0000H\u0000,\u0000 \u0000a\u0000t\u0000t\u0000e\u0000m\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0004;\u0000\u0002\u0004S\u0004T\r\u0004S\u0000\u0002n\u0000\u0001\u0001\u0001\u0004U\u0004V\r\u0004U\u0000\u0003I\u0000\u0000\u0001\u0001\u0004W\u000b\u000060\u0000\u0019fmgui_managescripts_close\u0000\u0019fmGUI_ManageScripts_Close\u0002\u0004W\u0000\u0002\u0004X\r\u0004X\u0000\u0001J\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004V\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0004T\u0000\u0002\u0004Y\r\u0004Y\u0000\u0003I\u0000\u0002\u0001\u0001\u0004Z\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0004Z\u0000\u0002n\u0000\u0000\u0001\u0001\u0004[\u0004\\\r\u0004[\u0000\u00024\u0000\u0000\u0001\u0001\u0004]\n\u0000\u0004\nbutT\r\u0004]\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u0004\\\u0000\u00024\u0000\u0000\u0001\u0001\u0004^\n\u0000\u0004\ncwin\r\u0004^\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0004\u0000\u0000\u0002\u0004_\r\u0004_\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u00024\u0000\u0000\u0000\u0000\u0004`\n\u0000\u0004\npcap\r\u0004`\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0004a\u000f\u0004a\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0003b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0004b\u0004c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0004b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0004c\u0000\u0003\u0004d\n\u0000\u0004\nerrn\r\u0004d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0003c\u0000\u0003R\u0000\u0000\u0001\u0001\u0004e\u0004f\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0004e\u0000\u0002b\u0000\u0000\u0001\u0001\u0004g\u0004h\r\u0004g\u0000\u0001m\u0000\u0000\u0001\u0001\u0004i\u000e\u0004i\u0000\u0001\u0004j\u0011\u0004j\u00008\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0000 \r\u0004h\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0004f\u0000\u0003\u0004k\n\u0000\u0004\nerrn\r\u0004k\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0003`\u0000\u0002\u0004l\r\u0004l\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0003\u0014\u0000\u0002\u0004m\u0004n\r\u0004m\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0004n\u0000\u0002\u0004o\u0004p\r\u0004o\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0004p\u0000\u0002\u0004q\u0004r\r\u0004q\u0000\u0002i\u0000\u0000\u0000'\u0000*\u0004s\u0004t\r\u0004s\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0004u\u000b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0004u\u0000\u0002\u0004v\r\u0004v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004t\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0004w\u0002\u0004w\u0000\u0002\u0004x\u0004y\r\u0004x\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0004z\u0004{\u0001\u0000\u0000\f\u0004z\u0000\u0012\u0000\f version 1.5\u0000\u0002\u0000\u0000\u000e\u0004{\u0000\u0001\u0004|\u0011\u0004|\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00005\u0002\u0004y\u0000\u0002\u0004}\u0004~\r\u0004}\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0004~\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003Q\u0000\u0000\u0000\u0000\u0001\u0004\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000\u0003\u0001\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000f\u0004\u0004\r\u0004\u0000\u0001K\u0000\u0000\u0000\u0003\u0000\r\u0004\u0006\u0004\u0000\u0003}\u0004\u0004\u000b}\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0006\u0000P\u0000r\u0000o\u0006\u0004\u0000\u0003|\u0004\u0004\u000b|\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007{\u0003{\u0000\u0005\u0006\u0004\u0000\u0003z\u0004y\u000bz\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0002]\u0000\u0000\u0000\b\u0000\u000b\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000\b\u0000\tx\u0003x\u0000\u0002\r\u0004\u0000\u00011\u0000\u0000\u0000\t\u0000\nw\nw\u0000\u0004\nmin \u0006y\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011u\u000bu\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012t\u000bt\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0004Z\u0000\u0001\u0000\u0016\u00004\u0004\u0004on\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u001bm\u000bm\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0004\u0000\u0003I\u0000\u0000\u0000\u001e\u00000l\u0004k\u000bl\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$j\u000bj\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0004\u0000\u0002\u0004i\r\u0004\u0000\u0002b\u0000\u0000\u0000$\u0000,\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000@\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0000:\u0000 \r\u0004\u0000\u0003I\u0000\u0000\u0000%\u0000+h\u0004g\u000bh\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0004\u0000\u0002\u0004f\r\u0004\u0000\u0001o\u0000\u0000\u0000&\u0000'e\u000be\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002f\u0000\u0000\u0002g\u0000\u0000\u0002i\u0000\u0000\u0002k\u0000\u0000\u0002o\u0000\u0000\u0001n\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u00005\u00005dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u00005\u0000:\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u00005\u00008\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u00006\u00008a\u000ba\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0004\u0000\u0001o\u0000\u0000\u00005\u00006`\u000b`\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000;\u0000;^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000;\u0000@\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000;\u0000>\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000<\u0000>[\u000b[\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000;\u0000<Z\u000bZ\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000A\u0000D\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000B\u0000DX\u000bX\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000A\u0000BW\u000bW\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000G\u0000GUTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000G\u0000R\u0004\u0004\r\u0004\u0000\u0003I\u0000\u0002\u0000G\u0000PR\u0004\u0004\nR\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u0004\u0000\u0003l\u0000\u0005\u0000G\u0000J\u0004QP\r\u0004\u0000\u0002^\u0000\u0000\u0000G\u0000J\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000G\u0000HO\u000bO\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u0004\u0000\u0001o\u0000\u0000\u0000H\u0000IN\u000bN\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0004\u0000\u0003M\u0004L\nM\u0000\u0004\ndire\r\u0004\u0000\u0001m\u0000\u0000\u0000K\u0000LK\nK\u0000\b\u000bolierndD\u0006L\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000S\u0000SIHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0004Z\u0000\u0000\u0000S\u0000f\u0004\u0004F\u0004\r\u0004\u0000\u0002=\u0000\u0003\u0000S\u0000X\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0000\u0000S\u0000V\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000T\u0000VE\u000bE\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0004\u0000\u0001o\u0000\u0000\u0000S\u0000TD\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0006\u0000A\u0000d\u0000v\r\u0004\u0000\u0002r\u0000\u0000\u0000[\u0000^\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u0002F\u0000\u0000\r\u0004\u0000\u0002r\u0000\u0000\u0000a\u0000f\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u00004\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000p\u0000r\u0000o\u00001\u00002\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000g\u0000gA@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000g\u0000g>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002U\u0000\u0000\u0000g\u0000\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000n\u0000\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000n\u0000n;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000n\u0000s\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000n\u0000q8\n8\u0000\u0004\nnull\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003Q\u0000\u0000\u0000t\u0000\u0004\u0004\u0004\r\u0004\u0000\u0001k\u0000\u0000\u0000w\u0000\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002w\u0000\u0000\u0000w\u0000\u0004\u0004\r\u0004\u0000\u0002O\u0000\u0000\u0000{\u0000\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0000\u0004\u0004\r\u0004\u0000\u00012\u0000\u0000\u0000\u00006\n6\u0000\u0004\ndocu\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\r\u0004\u0000\u00035\u0000\u0000\u0000{\u00004\u00043\n4\u0000\u0004\ncapp\r\u0004\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\n3\u0000\b\u000bkfrmID \u000f\u0004\u00022\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u000f3\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f4\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u000f3\u0000\u0000\u0000\u0000\u0002\u0000PMacintoshSSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000\u000010\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0004\u0000\u0002\u0005\u0000\u0005\u0001\r\u0005\u0000\u0000\u0004Z\u0000\u0001\u0000\u0000\u0005\u0002\u0005\u0003.-\r\u0005\u0002\u0000\u0002>\u0001\u0000\u0000\u0000\u0005\u0004\u0005\u0005\r\u0005\u0004\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\r\u0005\u0005\u0000\u0001m\u0000\u0000\u0000\u0000+\n+\u0000\u0004\nnull\r\u0005\u0003\u0000\u0000S\u0000\u0000\u0000\u0000\u0002.\u0000\u0000\u0001-\u0000\u0000\u0002\u0005\u0001\u0000\u0002\u0005\u0006*\r\u0005\u0006\u0000\u0003l\u0000\u0002\u0000\u0000)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&\u0005\u0007\u0005\b\n&\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\b\u0000\u0003$\u0005\t#\n$\u0000\u0004\nerrn\r\u0005\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006#\u0000\u0000\r\u0004\u0000\u0004Z\u0000\u0000\u0000\u0000\u0005\n\u0005\u000b!\u0005\f\r\u0005\n\u0000\u0002=\u0000\u0003\u0000\u0000\u0005\r\u0005\u000e\r\u0005\r\u0000\u0001o\u0000\u0000\u0000\u0000 \u000b \u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u0005\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\r\u0005\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u001e\u0005\u000f\u0005\u0010\u0001\u001e\u0000\u0000\f\u0005\u000f\u0000\u0000 just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \u0000\u0002\u0000\u0000\u000e\u0005\u0010\u0000\u0001\u0005\u0011\u0011\u0005\u0011\u0001b\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000k\u0000e\u0000e\u0000p\u0000 \u0000t\u0000r\u0000y\u0000i\u0000n\u0000g\u0000 \u0000-\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000c\u0000a\u0000n\u0000 \u0000b\u0000e\u0000 \u0000c\u0000a\u0000u\u0000s\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000i\u0000s\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000a\u0000k\u0000e\u0000s\u0000 \u0000a\u0000 \u0000b\u0000i\u0000t\u0000 \u0000t\u0000o\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000,\u0000 \u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000F\u0000M\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000a\u0000c\u0000e\u0000 \u0000i\u0000s\u0000 \u0000s\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000s\u0000p\u0000o\u0000n\u0000d\u0000.\u0000 \u0002!\u0000\u0000\r\u0005\f\u0000\u0003R\u0000\u0000\u0000\u0000\u001d\u0005\u0012\u0005\u0013\n\u001d\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0005\u0014\u0005\u0015\r\u0005\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0005\u0016\u000e\u0005\u0016\u0000\u0001\u0005\u0017\u0011\u0005\u0017\u0000\\\u0000E\u0000r\u0000r\u0000o\u0000r\u0000 \u0000g\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000s\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000o\u0000p\u0000e\u0000n\u0000:\u0000 \r\u0005\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\u0013\u0000\u0003\u001b\u0005\u0018\u001a\n\u001b\u0000\u0004\nerrn\r\u0005\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001a\u0000\u0000\u0002\u0004\u0000\u0002\u0005\u0019\u0005\u001a\r\u0005\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u0005\u001a\u0000\u0002\u0005\u001b\u0015\r\u0005\u001b\u0000\u0003I\u0000\u0002\u0000\u0000\u0014\u0005\u001c\u0013\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0005\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0002\u0013\u0000\u0000\u0002\u0015\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000j\u0000k\u0011\u000b\u0011\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u0004\u0000\u0002\u0005\u001d\u0005\u001e\r\u0005\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0005\u001e\u0000\u0002\u0005\u001f\u0005 \r\u0005\u001f\u0000\u0003X\u0000\u0000\u0000\u0001\u0005!\r\u0005\"\r\u0005!\u0000\u0001k\u0000\u0000\u0000\u0001\u0005#\u0002\u0005#\u0000\u0002\u0005$\u0005%\r\u0005$\u0000\u0002r\u0000\u0000\u0000\u0000\u0005&\u0005'\r\u0005&\u0000\u0002n\u0000\u0000\u0000\u0000\u0005(\u0005)\r\u0005(\u0000\u00011\u0000\u0000\u0000\u0000\f\n\f\u0000\u0004\npnam\r\u0005)\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\r\u0005'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0005%\u0000\u0002\u0005*\u0005+\r\u0005*\u0000\u0003l\u0000\u0001\u0000\u0000\t\u0005,\u0005-\u0001\t\u0000\u0000\f\u0005,\u00000\u0000* get the name WITHOUT the file extension: \u0000\u0002\u0000\u0000\u000e\u0005-\u0000\u0001\u0005.\u0011\u0005.\u0000T\u0000 \u0000g\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000e\u0000x\u0000t\u0000e\u0000n\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u0005+\u0000\u0002\u0005\/\u00050\r\u0005\/\u0000\u0002c\u0000\u0000\u0000\u0000\u00051\u00052\r\u00051\u0000\u0003l\u0000\u0005\u0000\u0000\u00053\b\u0007\r\u00053\u0000\u0002n\u0000\u0000\u0000\u0000\u00054\u00055\r\u00054\u0000\u00011\u0000\u0000\u0000\u0000\u0006\n\u0006\u0000\u0004\nrvse\r\u00055\u0000\u0002n\u0000\u0000\u0000\u0000\u00056\u00057\r\u00056\u0000\u00012\u0000\u0001\u0000\u0000\u0005\n\u0005\u0000\u0004\ncha \r\u00057\u0000\u0001o\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\r\u00052\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\n\u0003\u0000\u0004\nTEXT\u0002\u00050\u0000\u0002\u00058\u00059\r\u00058\u0000\u0002n\u0000\u0000\u0000\u0001\u0019\u0005:\u0005;\r\u0005:\u0000\u00037\u0001\u0000\u0000\u0001\u0018\u0002\u0005<\u0005=\n\u0002\u0000\u0004\nctxt\r\u0005<\u0000\u0003l\u0000\u0005\u0000\u0001\u0014\u0005>\u0001\u0000\r\u0005>\u0000\u0002[\u0000\u0000\u0000\u0001\u0014\u0005?\u0005@\r\u0005?\u0000\u0003l\u0000\u0005\u0000\u0001\u0012\u0005A\r\u0005A\u0000\u0003I\u0000\u0002\u0000\u0001\u0012\u0005B\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0005B\u0000\u0003\u0005C\u0005D\n\u0000\u0004\npsof\r\u0005C\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0005E\u000e\u0005E\u0000\u0001\u0005F\u0011\u0005F\u0000\u0002\u0000.\u0006\u0005D\u0000\u0003\u0005G\n\u0000\u0004\npsin\r\u0005G\u0000\u00011\u0000\u0000\u0001\t\u0001\f\n\u0000\u0004\nrslt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005@\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0013\u0003\u0000\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r\u0005=\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0017\u0003\r\u0005;\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\u0002\u00059\u0000\u0002\u0005H\u0005I\r\u0005H\u0000\u0002r\u0000\u0000\u0001\u001a\u0001+\u0005J\u0005K\r\u0005J\u0000\u0002c\u0000\u0000\u0001\u001a\u0001)\u0005L\u0005M\r\u0005L\u0000\u0003l\u0000\u0005\u0001\u001a\u0001%\u0005N\r\u0005N\u0000\u0002n\u0000\u0000\u0001\u001a\u0001%\u0005O\u0005P\r\u0005O\u0000\u00011\u0000\u0000\u0001!\u0001%\n\u0000\u0004\nrvse\r\u0005P\u0000\u0002n\u0000\u0000\u0001\u001a\u0001!\u0005Q\u0005R\r\u0005Q\u0000\u00012\u0000\u0001\u0001\u001d\u0001!\n\u0000\u0004\ncha \r\u0005R\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001d\n\u0000\u0004\nrslt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005M\u0000\u0001m\u0000\u0000\u0001%\u0001(\n\u0000\u0004\nTEXT\r\u0005K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0005I\u0000\u0002\u0005S\u0005T\r\u0005S\u0000\u0004Z\u0000\u0001\u0001,\u0001=\u0005U\u0005V\r\u0005U\u0000\u0001o\u0000\u0000\u0001,\u00011\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005V\u0000\u0003I\u0000\u0002\u00014\u00019\u0005W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005W\u0000\u0001o\u0000\u0000\u00014\u00015\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005T\u0000\u0002\u0005X\u0005Y\r\u0005X\u0000\u0004Z\u0000\u0001\u0001>\u0001O\u0005Z\u0005[\r\u0005Z\u0000\u0001o\u0000\u0000\u0001>\u0001C\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005[\u0000\u0003I\u0000\u0002\u0001F\u0001K\u0005\\\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\\\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005Y\u0000\u0002\u0005]\r\u0005]\u0000\u0003P\u0000\u0000\u0001P\u0001\u0005^\u0005_\r\u0005^\u0000\u0001k\u0000\u0000\u0001W\u0001\u0005`\u0002\u0005`\u0000\u0002\u0005a\u0005b\r\u0005a\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005c\u0005d\u0001\u0000\u0000\f\u0005c\u0000w\u0000qif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase docName: \" & coerceToString(class of docName))\u0000\u0002\u0000\u0000\u000e\u0005d\u0000\u0001\u0005e\u0011\u0005e\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000d\u0000o\u0000c\u0000N\u0000a\u0000m\u0000e\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000c\u0000o\u0000e\u0000r\u0000c\u0000e\u0000T\u0000o\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000(\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000o\u0000c\u0000N\u0000a\u0000m\u0000e\u0000)\u0000)\u0002\u0005b\u0000\u0002\u0005f\u0005g\r\u0005f\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005h\u0005i\u0001\u0000\u0000\f\u0005h\u0000u\u0000oif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase dbName: \" & coerceToString(class of dbName))\u0000\u0002\u0000\u0000\u000e\u0005i\u0000\u0001\u0005j\u0011\u0005j\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000d\u0000b\u0000N\u0000a\u0000m\u0000e\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000c\u0000o\u0000e\u0000r\u0000c\u0000e\u0000T\u0000o\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000(\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000b\u0000N\u0000a\u0000m\u0000e\u0000)\u0000)\u0002\u0005g\u0000\u0002\u0005k\u0005l\r\u0005k\u0000\u0003l\u0000\u0002\u0001W\u0001W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005l\u0000\u0002\u0005m\u0005n\r\u0005m\u0000\u0003l\u0000\u0002\u0001W\u0001W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005n\u0000\u0002\u0005o\u0005p\r\u0005o\u0000\u0003l\u0000\u0001\u0001W\u0001W\u0005q\u0005r\u0001\u0000\u0000\f\u0005q\u0000s\u0000m apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\u0000\u0002\u0000\u0000\u000e\u0005r\u0000\u0001\u0005s\u0011\u0005s\u0000\u0000 \u0000a\u0000p\u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000t\u0000h\u0000e\u0000s\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000T\u0000E\u0000X\u0000T\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000s\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000f\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000(\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000t\u0000i\u0000n\u0000g\u0000?\u0000)\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000c\u0000a\u0000l\u0000 \u0000S\u0000T\u0000R\u0000I\u0000N\u0000G\u0000S\u0000:\u0002\u0005p\u0000\u0002\u0005t\r\u0005t\u0000\u0004Z\u0000\u0000\u0001W\u0001\u0005u\u0005v\u0005w\r\u0005u\u0000\u0002=\u0000\u0001\u0001W\u0001b\u0005x\u0005y\r\u0005x\u0000\u0003l\u0000\u0005\u0001W\u0001\\\u0005z\r\u0005z\u0000\u0002c\u0000\u0000\u0001W\u0001\\\u0005{\u0005|\r\u0005{\u0000\u0001o\u0000\u0000\u0001W\u0001X\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\r\u0005|\u0000\u0001m\u0000\u0000\u0001X\u0001[\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005y\u0000\u0003l\u0000\u0005\u0001\\\u0001a\u0005}\r\u0005}\u0000\u0002c\u0000\u0000\u0001\\\u0001a\u0005~\u0005\r\u0005~\u0000\u0001o\u0000\u0000\u0001\\\u0001]\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001m\u0000\u0000\u0001]\u0001`\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005v\u0000\u0001k\u0000\u0000\u0001e\u0001\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0001e\u0001e\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000\"\u0000\u001cif debugMode then log \"SAME\"\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u00008\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000 \u0000\"\u0000S\u0000A\u0000M\u0000E\u0000\"\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002w\u0000\u0000\u0001e\u0001\u0005\u0005\r\u0005\u0000\u0002O\u0000\u0000\u0001i\u0001\u0005\u0005\r\u0005\u0000\u0001k\u0000\u0000\u0001u\u0001\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0002\u0001u\u0001z\u0005\n\u0000\u0018.miscmvisnull\u0000\u0000\u0000\u0010\u0000obj \r\u0005\u0000\u0001o\u0000\u0000\u0001u\u0001v\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u0002\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u0001{\u0001\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001{\u0001\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005\u0000\u0002n\u0000\u0001\u0001\u0001\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001\u0001\u0005\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000B\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000o\u0000n\u0000e\u0000D\u0000o\u0000c\u0000:\u0000 \r\u0005\u0000\u0002n\u0000\u0001\u0001\u0001\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001\u0001\u0005\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0001\u0001\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000(\u0000\"if debugMode then log (path to it)\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000D\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000 \u0000(\u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000)\u0002\u0000\u0000\r\u0005\u0000\u00035\u0000\u0000\u0001i\u0001r\u0005\n\u0000\u0004\ncapp\r\u0005\u0000\u0001o\u0000\u0000\u0001m\u0001n\u000b\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\n\u0000\b\u000bkfrmID \u000f\u0005\u00022\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FM12\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u000f3\u001aFileMaker Pro Advanced.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f4\u0319Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019FileMaker Pro 12 Advanced\u0000\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031a\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u000f3\u0000\u0000\u0000\u0000\u0002\u0000PMacintoshSSD:Applications:\u0000FileMaker Pro 12 Advanced:\u0000FileMaker Pro Advanced.app\u0000\u000e\u00006\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000AApplications\/FileMaker Pro 12 Advanced\/FileMaker Pro Advanced.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001L\u0000\u0000\u0001\u0001\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005w\u0000\u0003l\u0000\u0001\u0001\u0001\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000P\u0000Jif debugMode then logConsole(ScriptName, \"displayFileMakerDatabase DIFF\" )\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0000i\u0000f\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000M\u0000o\u0000d\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000l\u0000o\u0000g\u0000C\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000(\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000\"\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000D\u0000I\u0000F\u0000F\u0000\"\u0000 \u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0005_\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u0002\u0000\u0000\u000b\r\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\r\u0005\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u0002\u0005 \u0000\u0002\u0005\u0005\r\u0005\u0000\u0001L\u0000\u0000\u0001\u0001\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovfals\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u0005\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0005\u0000\u0003\u0005\n\u0000\u0004\nerrn\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0004\u0000\u0003R\u0000\u0000\u0001\u0001\u0005\u0005\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0002b\u0000\u0000\u0001\u0001\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000@\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0001\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\"\u0000 \u0000-\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0005\u0000\u0003\u0005\n\u0000\u0004\nerrn\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0004\u0000\u0002\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0004r\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002i\u0000\u0000\u0000+\u0000.\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0005\u0005\u0001\u0000\u0000\f\u0005\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0003\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0001\u0000\u0006\u0000\u0013\u0005\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u0013\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u0011\u0005\u000b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0001K\u0000\u0000\u0000\u0007\u0000\r\u0005\u0006\u0005\u0000\u0003\u0005\u0005\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0005\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0006\u0005\u0000\u0003\u0005\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u0005\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0006\u0000A\u0000d\u0000v\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\f\u0005\u0000+\u0000% first, just see if one is available.\u0000\u0002\u0000\u0000\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000J\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000,\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000s\u0000e\u0000e\u0000 \u0000i\u0000f\u0000 \u0000o\u0000n\u0000e\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000.\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u0000\u0014\u0000-\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0005\u0000\u0003I\u0000\u0000\u0000\u001c\u0000)\u0005~\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"}\u000b}\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0005\u0000\u0002\u0005|\r\u0005\u0000\u0002b\u0000\u0000\u0000\"\u0000%\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000$\u0000T\u0000r\u0000i\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000:\u0000 \r\u0005\u0000\u0001o\u0000\u0000\u0000#\u0000${\u000b{\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002|\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0000\u0002\u0005z\r\u0005\u0000\u0004Z\u0000\u0000\u0000.\u0000\u0005\u0005y\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000.\u0000\/x\u000bx\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\r\u0005\u0000\u0001L\u0000\u0000\u00002\u00004\u0005\r\u0005\u0000\u0001m\u0000\u0000\u00002\u00003w\nw\u0000\b\u000bboovtrue\u0002y\u0000\u0000\r\u0005\u0000\u0001k\u0000\u0000\u00007\u0000\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0001\u00007\u0000P\u0005\u0006\u0000vu\r\u0005\u0000\u0001o\u0000\u0000\u00007\u0000<t\u000bt\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u0000\u0000\u0003I\u0000\u0000\u0000?\u0000Ls\u0006\u0001r\u000bs\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u0001\u0000\u0002\u0006\u0002\u0006\u0003\r\u0006\u0002\u0000\u0001o\u0000\u0000\u0000@\u0000Eq\u000bq\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006\u0003\u0000\u0002\u0006\u0004p\r\u0006\u0004\u0000\u0002b\u0000\u0000\u0000E\u0000H\u0006\u0005\u0006\u0006\r\u0006\u0005\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0006\u0007\u000e\u0006\u0007\u0000\u0001\u0006\b\u0011\u0006\b\u0000,\u0000A\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000:\u0000 \r\u0006\u0006\u0000\u0001o\u0000\u0000\u0000F\u0000Go\u000bo\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002p\u0000\u0000\u0002r\u0000\u0000\u0002v\u0000\u0000\u0001u\u0000\u0000\u0002\u0005\u0000\u0002\u0006\t\u0006\n\r\u0006\t\u0000\u0003l\u0000\u0002\u0000Q\u0000Qnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0006\n\u0000\u0002\u0006\u000bk\r\u0006\u000b\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0006\f\u0006\rj\u0006\u000e\r\u0006\f\u0000\u0003I\u0000\u0000\u0000Q\u0000Wi\u0006\u000fh\u000bi\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u0002\u0006\u000f\u0000\u0002\u0006\u0010g\r\u0006\u0010\u0000\u0001o\u0000\u0000\u0000R\u0000Sf\u000bf\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002g\u0000\u0000\u0002h\u0000\u0000\r\u0006\r\u0000\u0001k\u0000\u0000\u0000Z\u0000\u0006\u0011\u0002\u0006\u0011\u0000\u0002\u0006\u0012\u0006\u0013\r\u0006\u0012\u0000\u0003l\u0000\u0001\u0000Z\u0000Ze\u0006\u0014\u0006\u0015\u0001e\u0000\u0000\f\u0006\u0014\u00002\u0000, was able to open it, so NOW display window.\u0000\u0002\u0000\u0000\u000e\u0006\u0015\u0000\u0001\u0006\u0016\u0011\u0006\u0016\u0000X\u0000 \u0000w\u0000a\u0000s\u0000 \u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000N\u0000O\u0000W\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0002\u0006\u0013\u0000\u0002\u0006\u0017\u0006\u0018\r\u0006\u0017\u0000\u0003I\u0000\u0002\u0000Z\u0000_d\u0006\u0019c\nd\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0006\u0019\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0006\u001a\b\u0006\u001a\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002c\u0000\u0000\u0002\u0006\u0018\u0000\u0002\u0006\u001b\u0006\u001c\r\u0006\u001b\u0000\u0004Z\u0000\u0001\u0000`\u0000y\u0006\u001d\u0006\u001eba\r\u0006\u001d\u0000\u0001o\u0000\u0000\u0000`\u0000e`\u000b`\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u001e\u0000\u0003I\u0000\u0000\u0000h\u0000u_\u0006\u001f^\u000b_\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u001f\u0000\u0002\u0006 \u0006!\r\u0006 \u0000\u0001o\u0000\u0000\u0000i\u0000n]\u000b]\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006!\u0000\u0002\u0006\"\\\r\u0006\"\u0000\u0002b\u0000\u0000\u0000n\u0000q\u0006#\u0006$\r\u0006#\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0006%\u000e\u0006%\u0000\u0001\u0006&\u0011\u0006&\u0000R\u0000T\u0000r\u0000i\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000n\u0000o\u0000w\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000:\u0000 \r\u0006$\u0000\u0001o\u0000\u0000\u0000o\u0000p[\u000b[\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0002b\u0000\u0000\u0001a\u0000\u0000\u0002\u0006\u001c\u0000\u0002\u0006'\u0006(\r\u0006'\u0000\u0002r\u0000\u0000\u0000z\u0000\u0006)\u0006*\r\u0006)\u0000\u0003I\u0000\u0000\u0000z\u0000Z\u0006+Y\u000bZ\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u0002\u0006+\u0000\u0002\u0006,X\r\u0006,\u0000\u0001K\u0000\u0000\u0000{\u0000\u0006-\u0006\u0006-\u0000\u0003W\u0006.\u0006\/\u000bW\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0006.\u0000\u0001o\u0000\u0000\u0000|\u0000}V\u000bV\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u0006\u0006\/\u0000\u0003U\u00060T\u000bU\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\r\u00060\u0000\u0001m\u0000\u0000\u0000~\u0000\u00061\u000e\u00061\u0000\u0001\u00062\u0011\u00062\u0000\u0006\u0000A\u0000d\u0000v\u0006T\u0000\u0000\u0002X\u0000\u0000\u0002Y\u0000\u0000\r\u0006*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u0002\u0006(\u0000\u0002\u00063R\r\u00063\u0000\u0001L\u0000\u0000\u0000\u0000\u00064\r\u00064\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u0002R\u0000\u0000\u0002j\u0000\u0000\r\u0006\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u00065\u0002\u00065\u0000\u0002\u00066\u00067\r\u00066\u0000\u0003l\u0000\u0001\u0000\u0000P\u00068\u00069\u0001P\u0000\u0000\f\u00068\u00000\u0000* Was NOT able to open it, so return false.\u0000\u0002\u0000\u0000\u000e\u00069\u0000\u0001\u0006:\u0011\u0006:\u0000T\u0000 \u0000W\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000.\u0002\u00067\u0000\u0002\u0006;O\r\u0006;\u0000\u0001L\u0000\u0000\u0000\u0000\u0006<\r\u0006<\u0000\u0001m\u0000\u0000\u0000\u0000N\nN\u0000\b\u000bboovfals\u0002O\u0000\u0000\u0002k\u0000\u0000\u0002z\u0000\u0000\u0002\u0005\u0000\u0002\u0006=\u0006>\r\u0006=\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000MLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0006>\u0000\u0002\u0006?\u0006@\r\u0006?\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000JIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002\u0006@\u0000\u0002\u0006A\u0006B\r\u0006A\u0000\u0002i\u0000\u0000\u0000\/\u00002\u0006C\u0006D\r\u0006C\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000G\u0006EF\u000bG\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u0002\u0006E\u0000\u0002\u0006FE\r\u0006F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002E\u0000\u0000\u0002F\u0000\u0000\r\u0006D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0006G\u0002\u0006G\u0000\u0002\u0006H\u0006I\r\u0006H\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000C\u0006J\u0006K\u0001C\u0000\u0000\f\u0006J\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u0006K\u0000\u0001\u0006L\u0011\u0006L\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u0006I\u0000\u0002\u0006M\u0006N\r\u0006M\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000BA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0006N\u0000\u0002\u0006O\u0006P\r\u0006O\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0006Q\u0006R\u0006S\r\u0006Q\u0000\u0001k\u0000\u0000\u0000\u0003\u0000u\u0006T\u0002\u0006T\u0000\u0002\u0006U\u0006V\r\u0006U\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\u0006W\u0006X\r\u0006W\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\n\u0006Y\u0006Z\r\u0006Y\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0006[\u0006\\\r\u0006[\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0006]\u000e\u0006]\u0000\u0001\u0006^\u0011\u0006^\u0000<\u0000h\u0000t\u0000c\u0000l\u0000i\u0000n\u0000k\u0000:\u0000\/\u0000\/\u0000A\u0000c\u0000c\u0000e\u0000s\u0000s\u0000F\u0000i\u0000l\u0000e\u0000?\u0000F\u0000i\u0000l\u0000e\u0000N\u0000a\u0000m\u0000e\u0000=\r\u0006\\\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0006_\u0006`\r\u0006_\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0007?\u000b?\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u0006`\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005>\u000b>\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006Z\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0006a\u000e\u0006a\u0000\u0001\u0006b\u0011\u0006b\u0000N\u0000&\u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000=\u0000O\u0000p\u0000e\u0000n\u0000&\u0000S\u0000i\u0000l\u0000e\u0000n\u0000t\u0000O\u0000p\u0000e\u0000n\u0000=\u00001\u0000&\u0000S\u0000h\u0000o\u0000w\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000=\u00001\r\u0006X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u0002\u0006V\u0000\u0002\u0006c\u0006d\r\u0006c\u0000\u0003l\u0000\u0002\u0000\r\u0000\r<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u0006d\u0000\u0002\u0006e\u0006f\r\u0006e\u0000\u0002O\u0000\u0000\u0000\r\u0000p\u0006g\u0006h\r\u0006g\u0000\u0001k\u0000\u0000\u0000\u0011\u0000o\u0006i\u0002\u0006i\u0000\u0002\u0006j\u0006k\r\u0006j\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0006k\u0000\u0002\u0006l\u0006m\r\u0006l\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\/\u0006n\u0006o\r\u0006n\u0000\u0002b\u0000\u0000\u0000\u0011\u0000-\u0006p\u0006q\r\u0006p\u0000\u0002b\u0000\u0000\u0000\u0011\u0000$\u0006r\u0006s\r\u0006r\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\"\u0006t\u0006u\r\u0006t\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u001e\u0006v\u0006w\r\u0006v\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u001c\u0006x\u0006y\r\u0006x\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0018\u0006z\u0006{\r\u0006z\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0016\u0006|\u0006}\r\u0006|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0006~\u000e\u0006~\u0000\u0001\u0006\u0011\u0006\u0000\f\u0000F\u0000M\u0000P\u0000:\u0000\/\u0000\/\r\u0006}\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u00156\u000b6\u0000\u00140\u0000\bserverip\u0000\bserverIP\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u00135\u000b5\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006{\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0002\u0000\/\r\u0006y\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001b\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001b4\u000b4\u0000\u00180\u0000\nmaindbname\u0000\nmainDbName\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u00193\u000b3\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006w\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0010\u0000?\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000=\r\u0006u\u0000\u0002n\u0000\u0000\u0000\u001e\u0000!\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u001f\u0000!2\u000b2\u0000<0\u0000\u001ccustomlinkreceiverscriptname\u0000\u001ccustomLinkReceiverScriptName\r\u0006\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f1\u000b1\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0006s\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000&\u0000p\u0000a\u0000r\u0000a\u0000m\u0000=\r\u0006q\u0000\u0002n\u0000\u0001\u0000$\u0000,\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000%\u0000,0\u0006\/\u000b0\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000%\u0000&.\u000b.\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000&\u0000'-\n-\u0000\b\u000bboovtrue\u0002\u0006\u0000\u0002\u0006,\r\u0006\u0000\u0001m\u0000\u0000\u0000'\u0000(+\n+\u0000\b\u000bboovfals\u0002,\u0000\u0000\u0002\/\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0006o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006m\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u00000\u00000)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u00000\u00000&\u0006\u0006\u0001&\u0000\u0000\f\u0006\u0000[\u0000U we must double-encode equals (%3D) and ampersand (%26) to work-around FileMaker bug:\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0000 \u0000w\u0000e\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000e\u0000n\u0000c\u0000o\u0000d\u0000e\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000s\u0000 \u0000(\u0000%\u00003\u0000D\u0000)\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000m\u0000p\u0000e\u0000r\u0000s\u0000a\u0000n\u0000d\u0000 \u0000(\u0000%\u00002\u00006\u0000)\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000-\u0000a\u0000r\u0000o\u0000u\u0000n\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000b\u0000u\u0000g\u0000:\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u00000\u0000<\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u00000\u0000:\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u00001\u0000:%\u0006$\u000b%\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0006\u0000\u0002\u0006#\r\u0006\u0000\u0001J\u0000\u0000\u00001\u00006\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u00001\u00002\"\u000b\"\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u00002\u00003\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000%\u00003\u0000D\u0002\u0006\u0000\u0002\u0006!\r\u0006\u0000\u0001m\u0000\u0000\u00003\u00004\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000%\u00002\u00005\u00003\u0000D\u0002!\u0000\u0000\u0002#\u0000\u0000\u0002$\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u00000\u00001\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0000=\u0000K\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0000=\u0000I\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000>\u0000I\u001f\u0006\u001e\u000b\u001f\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0006\u0000\u0002\u0006\u001d\r\u0006\u0000\u0001J\u0000\u0000\u0000>\u0000E\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000>\u0000?\u001c\u000b\u001c\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000%\u00002\u00006\u0002\u0006\u0000\u0002\u0006\u001b\r\u0006\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000%\u00002\u00005\u00002\u00006\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001e\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000=\u0000>\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000L\u0000L\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0004Z\u0000\u0001\u0000L\u0000g\u0006\u0006\u0016\u0015\r\u0006\u0000\u0001o\u0000\u0000\u0000L\u0000Q\u0014\u000b\u0014\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\r\u0006\u0000\u0002n\u0000\u0001\u0000T\u0000c\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000U\u0000c\u0013\u0006\u0012\u000b\u0013\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000U\u0000Z\u0011\u000b\u0011\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u0002\u0006\u0000\u0002\u0006\u0010\r\u0006\u0000\u0002b\u0000\u0000\u0000Z\u0000_\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000<\u0000o\u0000p\u0000e\u0000n\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000m\u0000p\u0000U\u0000R\u0000L\u0000:\u0000 \r\u0006\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000f\u000b\u000f\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0000T\u0000U\u0002\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000h\u0000h\u000e\r\f\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0002\u0000h\u0000m\u000b\u0006\n\n\u000b\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0006\u0000\u0001o\u0000\u0000\u0000h\u0000i\t\u000b\t\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u0002\n\u0000\u0000\u0002\u0006\u0000\u0002\u0006\b\r\u0006\u0000\u0003l\u0000\u0002\u0000n\u0000n\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0002\b\u0000\u0000\r\u0006h\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0006\u000f\u0006\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0006f\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000q\u0000q\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001L\u0000\u0000\u0000q\u0000s\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0000q\u0000r\u0001\n\u0001\u0000\b\u000bboovtrue\u0002\u0006\u0000\u0002\u0006\u0000\r\u0006\u0000\u0003l\u0000\u0002\u0000t\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0006R\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u0006\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0006\u0000\u0003\u0006\n\u0000\u0004\nerrn\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0006S\u0000\u0001k\u0000\u0000\u0000}\u0000\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u0000}\u0000}\u0006\u0006\u0001\u0000\u0000\f\u0006\u0000A\u0000; ANY error should return FALSE, as in \"could not be opened\"\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000v\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000F\u0000A\u0000L\u0000S\u0000E\u0000,\u0000 \u0000a\u0000s\u0000 \u0000i\u0000n\u0000 \u0000\"\u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000o\u0000p\u0000e\u0000n\u0000e\u0000d\u0000\"\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000}\u0000}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u0000}\u0000\u0006\u0006\u0006\r\u0006\u0000\u0001L\u0000\u0000\u0000}\u0000\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\f\u0006\u0000\u000b\u0000\u0005false\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006P\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006B\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002i\u0000\u0000\u00003\u00006\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0006\u0002\u0006\u0000\u0002\u0006\u0007\u0000\r\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0007\u0002\u0001\u0000\u0000\f\u0007\u0001\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0002\u0000\u0001\u0007\u0003\u0011\u0007\u0003\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0000\u0002\u0007\u0004\u0007\u0005\r\u0007\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0005\u0000\u0002\u0007\u0006\u0007\u0007\r\u0007\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f\u0007\b\u0007\t\r\u0007\b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\n\u0007\n\u0007\u000b\r\u0007\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0007\f\u0007\r\r\u0007\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u000e\u0007\u000e\u0000\u0001\u0007\u000f\u0011\u0007\u000f\u0000\u0004\u0000<\u0000:\r\u0007\r\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0007\u0007\u0010\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0010\u0000\u0002\u0007\u0011\r\u0007\u0011\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u000b\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0007\u0012\u000e\u0007\u0012\u0000\u0001\u0007\u0013\u0011\u0007\u0013\u0000\u0004\u0000:\u0000=\r\u0007\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u0002\u0007\u0007\u0000\u0002\u0007\u0014\u0007\u0015\r\u0007\u0014\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u0007\u0016\u0007\u0017\r\u0007\u0016\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0007\u0018\u000e\u0007\u0018\u0000\u0001\u0007\u0019\u0011\u0007\u0019\u0000\u0004\u0000:\u0000>\r\u0007\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\u0002\u0007\u0015\u0000\u0002\u0007\u001a\u0007\u001b\r\u0007\u001a\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u001b\u0000\u0002\u0007\u001c\u0007\u001d\r\u0007\u001c\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000N\u0007\u001e\u0007\u001f\u0007 \r\u0007\u001e\u0000\u0001H\u0000\u0000\u0000\u0011\u0000\u0015\u0007!\r\u0007!\u0000\u0002E\u0000\u0000\u0000\u0011\u0000\u0014\u0007\"\u0007#\r\u0007\"\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\r\u0007#\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\r\u0007\u001f\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0007$\r\u0007$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0007%\u000e\u0007%\u0000\u0001\u0007&\u0011\u0007&\u0000\u0000\u0002\u0000\u0000\r\u0007 \u0000\u0001k\u0000\u0000\u0000\u001d\u0000N\u0007'\u0002\u0007'\u0000\u0002\u0007(\u0007)\r\u0007(\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0007*\u0007+\r\u0007*\u0000\u0002n\u0000\u0003\u0000\u001d\u0000 \u0007,\u0007-\r\u0007,\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ntxdl\r\u0007-\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\u0004\nascr\r\u0007+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\u0007)\u0000\u0002\u0007.\u0007\/\r\u0007.\u0000\u0002r\u0000\u0000\u0000#\u0000(\u00070\u00071\r\u00070\u0000\u0003l\u0001\u0000\u0000#\u0000$\u00072\r\u00072\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u0001\u0000\u0000\u0001\u0000\u0000\r\u00071\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u00073\u00074\r\u00073\u0000\u00011\u0000\u0000\u0000%\u0000'\n\u0000\u0004\ntxdl\r\u00074\u0000\u00011\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nascr\u0002\u0007\/\u0000\u0002\u00075\u00076\r\u00075\u0000\u0002r\u0000\u0000\u0000)\u0000\/\u00077\u00078\r\u00077\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00079\u0007:\r\u00079\u0000\u00024\u0000\u0000\u0000*\u0000-\u0007;\n\u0000\u0004\ncitm\r\u0007;\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0002\r\u0007:\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\r\u00078\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0007<\r\u0007<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00076\u0000\u0002\u0007=\r\u0007=\u0000\u0004Z\u0000\u0000\u00000\u0000N\u0007>\u0007?\u0007@\r\u0007>\u0000\u0001H\u0000\u0000\u00000\u00004\u0007A\r\u0007A\u0000\u0002E\u0000\u0000\u00000\u00003\u0007B\u0007C\r\u0007B\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\r\u0007C\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\r\u0007?\u0000\u0001L\u0000\u0000\u00007\u00009\u0007D\r\u0007D\u0000\u0001m\u0000\u0000\u00007\u00008\u0007E\u000e\u0007E\u0000\u0001\u0007F\u0011\u0007F\u0000\u0000\u0002\u0000\u0000\r\u0007@\u0000\u0001k\u0000\u0000\u0000<\u0000N\u0007G\u0002\u0007G\u0000\u0002\u0007H\u0007I\r\u0007H\u0000\u0002r\u0000\u0000\u0000<\u0000A\u0007J\u0007K\r\u0007J\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00160\u0000\tendstring\u0000\tendString\r\u0007K\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007L\u0007M\r\u0007L\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\ntxdl\r\u0007M\u0000\u00011\u0000\u0000\u0000=\u0000>\n\u0000\u0004\nascr\u0002\u0007I\u0000\u0002\u0007N\u0007O\r\u0007N\u0000\u0002r\u0000\u0000\u0000B\u0000H\u0007P\u0007Q\r\u0007P\u0000\u0002n\u0000\u0000\u0000B\u0000F\u0007R\u0007S\r\u0007R\u0000\u00024\u0000\u0000\u0000C\u0000F\u0007T\n\u0000\u0004\ncitm\r\u0007T\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\r\u0007S\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\r\u0007Q\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0007U\r\u0007U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007O\u0000\u0002\u0007V\r\u0007V\u0000\u0002r\u0000\u0000\u0000I\u0000N\u0007W\u0007X\r\u0007W\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\u0007X\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007Y\u0007Z\r\u0007Y\u0000\u00011\u0000\u0000\u0000K\u0000M\n\u0000\u0004\ntxdl\r\u0007Z\u0000\u00011\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0007\u001d\u0000\u0002\u0007[\u0007\\\r\u0007[\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\\\u0000\u0002\u0007]\u0007^\r\u0007]\u0000\u0001L\u0000\u0000\u0000O\u0000V\u0007_\r\u0007_\u0000\u0003I\u0000\u0000\u0000O\u0000U\u0007`\u000b\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0002\u0007`\u0000\u0002\u0007a\r\u0007a\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0007^\u0000\u0002\u0007b\u0007c\r\u0007b\u0000\u0003l\u0000\u0002\u0000W\u0000W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007c\u0000\u0002\u0007d\r\u0007d\u0000\u0003l\u0000\u0002\u0000W\u0000W\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0006\u0000\u0002\u0007e\u0007f\r\u0007e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007f\u0000\u0002\u0007g\u0007h\r\u0007g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007h\u0000\u0002\u0007i\u0007j\r\u0007i\u0000\u0002i\u0000\u0000\u00007\u0000:\u0007k\u0007l\r\u0007k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0007m\u000b\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u0002\u0007m\u0000\u0002\u0007n\u0007o\r\u0007n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0007o\u0000\u0002\u0007p\r\u0007p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007l\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0014\u0007q\u0002\u0007q\u0000\u0002\u0007r\u0007s\r\u0007r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0007t\u0007u\u0001\u0000\u0000\f\u0007t\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007u\u0000\u0001\u0007v\u0011\u0007v\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007s\u0000\u0002\u0007w\u0007x\r\u0007w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007x\u0000\u0002\u0007y\r\u0007y\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0014\u0007z\r\u0007z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0013\u0007{\u0007|\r\u0007{\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0011\u0007}\u0007~\r\u0007}\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\n\u0007\u0007\r\u0007\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000<\u0000:\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0007\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000:\u0000=\r\u0007~\u0000\u0003I\u0000\u0000\u0000\n\u0000\u0010\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000:\u0000>\u0002\u0000\u0000\u0002\u0007j\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002i\u0000\u0000\u0000;\u0000>\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0000\u0000\u0002\u0000\u0000\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u00003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0007\u0007\u0001}\u0000\u0000\f\u0007\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000=\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000:\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000<\u0002\u0007\u0000\u0002\u0007y\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000>\u0002y\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\t\u0000\twvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003X\u0000\u0000\u0000\t\u0000.\u0007t\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0019\u0000)\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000'\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0019\u0000%s\u0007r\u000bs\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\u0007\u0000\u0002\u0007q\r\u0007\u0000\u0001J\u0000\u0000\u0000\u001a\u0000!\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bp\u000bp\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001co\u000bo\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002\u0007\u0000\u0002\u0007n\r\u0007\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000\/\r\u0007\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001em\u000bm\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002n\u0000\u0000\u0002q\u0000\u0000\u0002r\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007k\r\u0007\u0000\u0003l\u0000\u0002\u0000(\u0000(jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u000bt\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\r\u0007\u0000\u0001o\u0000\u0000\u0000\f\u0000\rg\u000bg\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\/\u0000\/fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001L\u0000\u0000\u0000\/\u00001\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0000\/\u00000c\u000bc\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\u0007b\r\u0007\u0000\u0003l\u0000\u0002\u00002\u00002a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002b\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000[ZY\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002i\u0000\u0000\u0000?\u0000B\u0007\u0007\r\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000X\u0007W\u000bX\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0002\u0007\u0000\u0002\u0007V\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002V\u0000\u0000\u0002W\u0000\u0000\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u00003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000T\u0007\u0007\u0001T\u0000\u0000\f\u0007\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0007\u0007\r\u0007\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000=\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000:\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000<\u0002\u0007\u0000\u0002\u0007P\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0002\u0000>\u0002P\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0002\u0000\t\u0000\tNML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0003X\u0000\u0000\u0000\t\u0000.\u0007K\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0000\u0019\u0000)\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000'\b\u0000\b\u0001\r\b\u0000\u0000\u0003I\u0000\u0000\u0000\u0019\u0000%J\b\u0002I\u000bJ\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002\b\u0002\u0000\u0002\b\u0003H\r\b\u0003\u0000\u0001J\u0000\u0000\u0000\u001a\u0000!\b\u0004\u0002\b\u0004\u0000\u0002\b\u0005\b\u0006\r\b\u0005\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bG\u000bG\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\b\u0006\u0000\u0002\b\u0007\b\b\r\b\u0007\u0000\u0002b\u0000\u0000\u0000\u001b\u0000\u001e\b\t\b\n\r\b\t\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\b\u000b\u000e\b\u000b\u0000\u0001\b\f\u0011\b\f\u0000\u0002\u0000\/\r\b\n\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001dF\u000bF\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002\b\b\u0000\u0002\b\rE\r\b\r\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fD\u000bD\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u0002E\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\b\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0007\u0000\u0002\b\u000eB\r\b\u000e\u0000\u0003l\u0000\u0002\u0000(\u0000(A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002B\u0000\u0000\u000bK\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\r\u0007\u0000\u0001o\u0000\u0000\u0000\f\u0000\r>\u000b>\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u0002\u0007\u0000\u0002\b\u000f\b\u0010\r\b\u000f\u0000\u0003l\u0000\u0002\u0000\/\u0000\/=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\b\u0010\u0000\u0002\b\u0011\b\u0012\r\b\u0011\u0000\u0001L\u0000\u0000\u0000\/\u00001\b\u0013\r\b\u0013\u0000\u0001o\u0000\u0000\u0000\/\u00000:\u000b:\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\b\u0012\u0000\u0002\b\u00149\r\b\u0014\u0000\u0003l\u0000\u0002\u00002\u00002876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u00029\u0000\u0000\u0002\u0007\u0000\u0002\b\u0015\b\u0016\r\b\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u0002\b\u0016\u0000\u0002\b\u0017\b\u0018\r\b\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u0002\b\u0018\u0000\u0002\b\u0019\b\u001a\r\b\u0019\u0000\u0002i\u0000\u0000\u0000C\u0000F\b\u001b\b\u001c\r\b\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\/\b\u001d.\u000b\/\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u0002\b\u001d\u0000\u0002\b\u001e-\r\b\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-\u0000\u0000\u0002.\u0000\u0000\r\b\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0004\b\u001f\u0002\b\u001f\u0000\u0002\b \b!\r\b \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000+\b\"\b#\u0001+\u0000\u0000\f\b\"\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\b#\u0000\u0001\b$\u0011\b$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\b!\u0000\u0002\b%\b&\r\b%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\b&\u0000\u0002\b'\b(\r\b'\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\b)\b*\r\b)\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\b+\u0006\b+\u0000\u0003'\b,\b-\u000b'\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b,\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002&\n&\u0000\u0004\nnull\u0006\b-\u0000\u0003%\b.$\u000b%\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\b.\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#\n#\u0000\u0004\nnull\u0006$\u0000\u0000\r\b*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\b(\u0000\u0002\b\/\b0\r\b\/\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\b1\b2\r\b1\u0000\u0002b\u0000\u0000\u0000\t\u0000\f\b3\b4\r\b3\u0000\u0001o\u0000\u0000\u0000\t\u0000\n!\u000b!\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b4\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b \u000b \u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\b2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\b0\u0000\u0002\b5\b6\r\b5\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\b6\u0000\u0002\b7\b8\r\b7\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014\b9\b:\r\b9\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\b;\b<\r\b;\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0012\u001b\u000b\u001b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b<\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u001a\u000b\u001a\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\b8\u0000\u0002\b=\b>\r\b=\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\b?\b@\r\b?\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\bA\bB\r\bA\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u0018\u000b\u0018\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\bB\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u0017\u000b\u0017\u0000\t0\u0000\u0005prefs\u0000\u0000\r\b@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\b>\u0000\u0002\bC\bD\r\bC\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0015\u0014\u0013\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\bD\u0000\u0002\bE\bF\r\bE\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0012\bG\bH\u0001\u0012\u0000\u0000\f\bG\u0000e\u0000_ default is just a relative path to data source name in same location as database being edited:\u0000\u0002\u0000\u0000\u000e\bH\u0000\u0001\bI\u0011\bI\u0000\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000a\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000n\u0000 \u0000s\u0000a\u0000m\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000e\u0000i\u0000n\u0000g\u0000 \u0000e\u0000d\u0000i\u0000t\u0000e\u0000d\u0000:\u0002\bF\u0000\u0002\bJ\bK\r\bJ\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000*\bL\bM\u0011\u0010\r\bL\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\bN\bO\r\bN\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000f\u000b\u000f\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\bO\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u000e\n\u000e\u0000\u0004\nnull\r\bM\u0000\u0002r\u0000\u0000\u0000!\u0000&\bP\bQ\r\bP\u0000\u0002b\u0000\u0000\u0000!\u0000$\bR\bS\r\bR\u0000\u0001m\u0000\u0000\u0000!\u0000\"\bT\u000e\bT\u0000\u0001\bU\u0011\bU\u0000\n\u0000f\u0000i\u0000l\u0000e\u0000:\r\bS\u0000\u0001o\u0000\u0000\u0000\"\u0000#\r\u000b\r\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\bQ\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\bK\u0000\u0002\bV\bW\r\bV\u0000\u0003l\u0000\u0002\u0000+\u0000+\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002\bW\u0000\u0002\bX\bY\r\bX\u0000\u0003l\u0000\u0002\u0000+\u0000+\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\bY\u0000\u0002\bZ\b[\r\bZ\u0000\u0003Q\u0000\u0000\u0000+\u0001\u0002\b\\\b]\b^\r\b\\\u0000\u0001k\u0000\u0000\u0000.\u0000\b_\u0002\b_\u0000\u0002\b`\ba\r\b`\u0000\u0003I\u0000\u0000\u0000.\u00005\u0005\bb\u0004\u000b\u0005\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\bb\u0000\u0002\bc\u0003\r\bc\u0000\u0001J\u0000\u0000\u0000\/\u00001\u0002\u0002\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0004\u0000\u0000\u0002\ba\u0000\u0002\bd\be\r\bd\u0000\u0002O\u0000\u0000\u00006\u0000\bf\bg\r\bf\u0000\u0002O\u0000\u0000\u0000:\u0000\bh\bi\r\bh\u0000\u0001k\u0000\u0000\u0000A\u0000\bj\u0002\bj\u0000\u0002\bk\bl\r\bk\u0000\u0002n\u0000\u0001\u0000A\u0000F\bm\bn\r\bm\u0000\u0003I\u0000\u0000\u0000B\u0000F\u0001\u0000\u000b\u0001\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0000\u0002\u0000\u0000\r\bn\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002\bl\u0000\u0002\bo\bp\r\bo\u0000\u0003l\u0000\u0002\u0000G\u0000G\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\bp\u0000\u0002\bq\br\r\bq\u0000\u0003l\u0000\u0001\u0000G\u0000G\bs\bt\u0001\u0000\u0000\f\bs\u00000\u0000* Make sure a specified Data Source exists.\u0000\u0002\u0000\u0000\u000e\bt\u0000\u0001\bu\u0011\bu\u0000T\u0000 \u0000M\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000a\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000.\u0002\br\u0000\u0002\bv\r\bv\u0000\u0004Z\u0000\u0000\u0000G\u0000\bw\bx\by\r\bw\u0000\u0001H\u0000\u0000\u0000G\u0000g\bz\r\bz\u0000\u0003l\u0000\u0005\u0000G\u0000f\b{\r\b{\u0000\u0003I\u0000\u0002\u0000G\u0000f\b|\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r\b|\u0000\u0003l\u0000\u0005\u0000G\u0000b\b}\r\b}\u0000\u00026\u0001\u0000\u0000G\u0000b\b~\b\r\b~\u0000\u0002n\u0000\u0000\u0000G\u0000T\b\b\r\b\u0000\u00024\u0000\u0001\u0000Q\u0000T\b\n\u0000\u0004\ncrow\r\b\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0003\u0000\u0001\r\b\u0000\u0003l\u0000\u0005\u0000G\u0000Q\b\r\b\u0000\u0002n\u0000\u0000\u0000G\u0000Q\b\b\r\b\u0000\u00024\u0000\u0000\u0000N\u0000Q\b\n\u0000\u0004\ntabB\r\b\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u0001\r\b\u0000\u0002n\u0000\u0000\u0000G\u0000N\b\b\r\b\u0000\u00024\u0000\u0000\u0000K\u0000N\b\n\u0000\u0004\nscra\r\b\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000G\u0000K\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\b\u0000\u0002=\u0000\u0003\u0000U\u0000a\b\b\r\b\u0000\u0002n\u0000\u0000\u0000V\u0000]\b\b\r\b\u0000\u00011\u0000\u0000\u0000Y\u0000]\n\u0000\u0004\npnam\r\b\u0000\u00024\u0000\u0000\u0000V\u0000Y\b\n\u0000\u0004\nsttx\r\b\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\b\u0000\u0001o\u0000\u0000\u0000^\u0000`\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\bx\u0000\u0001k\u0000\u0000\u0000j\u0000\b\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0001\u0000j\u0000j\b\b\u0001\u0000\u0000\f\b\u0000\u001a\u0000\u0014 need to create it: \u0000\u0002\u0000\u0000\u000e\b\u0000\u0001\b\u0011\b\u0000(\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000:\u0000 \u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000j\u0000j\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002n\u0000\u0001\u0000j\u0000\b\b\r\b\u0000\u0003I\u0000\u0000\u0000k\u0000\b\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\b\u0000\u0002\b\r\b\u0000\u00026\u0001\u0000\u0000k\u0000\b\b\r\b\u0000\u0002n\u0000\u0000\u0000k\u0000t\b\b\r\b\u0000\u00024\u0000\u0001\u0000o\u0000t\b\n\u0000\u0004\nbutT\r\b\u0000\u0001m\u0000\u0000\u0000r\u0000s\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000k\u0000o\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000m\u0000n\u0003\u0000\u0001\r\b\u0000\u0002C\u0000\u0000\u0000u\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000v\u0000z\n\u0000\u0004\npnam\r\b\u0000\u0001m\u0000\u0000\u0000{\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0006\u0000N\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\b\u0000\u0000f\u0000\u0000\u0000j\u0000k\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003I\u0000\u0002\u0000\u0000\b\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\b\b\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ntxtf\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ntxta\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\nscra\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002n\u0000\u0001\u0000\u0000\b\b\r\b\u0000\u0003I\u0000\u0000\u0000\u0000\b\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\b\u0000\u0002\b\r\b\u0000\u00026\u0001\u0000\u0000\u0000\b\b\r\b\u0000\u0002n\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00024\u0000\u0001\u0000\u0000\b\n\u0000\u0004\nbutT\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u00024\u0000\u0000\u0000\u0000\b\n\u0000\u0004\ncwin\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\b\u0000\u0002C\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\b\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003I\u0000\u0002\u0000\u0000\b\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\b\b\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\r\b\u0000\u0001L\u0000\u0000\u0000\u0000\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000A\u0000d\u0000d\u0000e\u0000d\u0000:\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\u0000\u0000\u0002\u0000\u0000\r\by\u0000\u0003l\u0000\u0003\u0000\u0000\b\b\b\r\b\u0000\u0001L\u0000\u0000\u0000\u0000\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0012\u0000E\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\f\b\u0000\u0017\u0000\u0011 already existed:\u0000\u0002\u0000\u0000\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0002\u0000\u0000\r\bi\u0000\u00024\u0000\u0000\u0000:\u0000>\b\n\u0000\u0004\npcap\r\b\u0000\u0001m\u0000\u0000\u0000<\u0000=\b\u000e\b\u0000\u0001\b\u0011\b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\bg\u0000\u0001m\u0000\u0000\u00006\u00007\b\u000f\b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\be\u0000\u0002\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\b]\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\b\b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\b\u0000\u0003\b\n\u0000\u0004\nerrn\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\b^\u0000\u0003R\u0000\u0000\u0000\u0001\u0002\b\b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\b\u0000\u0002b\u0000\u0000\u0000\u0001\u0001\b\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0002b\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000T\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000n\u0000c\u0000e\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000'\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\b\u0000\u0001m\u0000\u0000\u0000\u0000\b\u000e\b\u0000\u0001\b\u0011\b\u0000\b\u0000'\u0000 \u0000-\u0000 \r\b\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\b\u0000\u0003\b\n\u0000\u0004\nerrn\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\b[\u0000\u0002\b\r\b\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\b\u001a\u0000\u0002\t\u0000\t\u0001\r\t\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0001\u0000\u0002\t\u0002\t\u0003\r\t\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0003\u0000\u0002\t\u0004\t\u0005\r\t\u0004\u0000\u0002i\u0000\u0000\u0000G\u0000J\t\u0006\t\u0007\r\t\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\t\b\u000b\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u0002\t\b\u0000\u0002\t\t\r\t\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\t\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u0001%\t\n\u0002\t\n\u0000\u0002\t\u000b\t\f\r\t\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\t\r\t\u000e\u0001\u0000\u0000\f\t\r\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\t\u000e\u0000\u0001\t\u000f\u0011\t\u000f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\t\f\u0000\u0002\t\u0010\t\u0011\r\t\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0011\u0000\u0002\t\u0012\t\u0013\r\t\u0012\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\t\u0014\t\u0015\r\t\u0014\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\t\u0016\u0006\t\u0016\u0000\u0003\t\u0017\t\u0018\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006\t\u0018\u0000\u0003\t\u0019\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t\u0019\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006\u0000\u0000\r\t\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\t\u0013\u0000\u0002\t\u001a\t\u001b\r\t\u001a\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e\t\u001c\t\u001d\r\t\u001c\u0000\u0002b\u0000\u0000\u0000\t\u0000\f\t\u001e\t\u001f\r\t\u001e\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t\u001f\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\t\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\t\u001b\u0000\u0002\t \t!\r\t \u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t!\u0000\u0002\t\"\t#\r\t\"\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014\t$\t%\r\t$\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\t&\t'\r\t&\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0012\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t'\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\t#\u0000\u0002\t(\t)\r\t(\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\t*\t+\r\t*\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\t,\t-\r\t,\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t-\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\t+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002\t)\u0000\u0002\t.\t\/\r\t.\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\/\u0000\u0002\t0\t1\r\t0\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b~\t2\t3\u0001~\u0000\u0000\f\t2\u0000f\u0000` default is just a relative path to data source name in same location as database being edited:\t\u0000\u0002\u0000\u0000\u000e\t3\u0000\u0001\t4\u0011\t4\u0000\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000a\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000i\u0000n\u0000 \u0000s\u0000a\u0000m\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000b\u0000e\u0000i\u0000n\u0000g\u0000 \u0000e\u0000d\u0000i\u0000t\u0000e\u0000d\u0000:\u0000\t\u0002\t1\u0000\u0002\t5\t6\r\t5\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000*\t7\t8}|\r\t7\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\t9\t:\r\t9\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c{\u000b{\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t:\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001dz\nz\u0000\u0004\nnull\r\t8\u0000\u0002r\u0000\u0000\u0000!\u0000&\t;\t<\r\t;\u0000\u0002b\u0000\u0000\u0000!\u0000$\t=\t>\r\t=\u0000\u0001m\u0000\u0000\u0000!\u0000\"\t?\u000e\t?\u0000\u0001\t@\u0011\t@\u0000\n\u0000f\u0000i\u0000l\u0000e\u0000:\r\t>\u0000\u0001o\u0000\u0000\u0000\"\u0000#y\u000by\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\t6\u0000\u0002\tA\tB\r\tA\u0000\u0003l\u0000\u0002\u0000+\u0000+wvu\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\tB\u0000\u0002\tC\tD\r\tC\u0000\u0003l\u0000\u0002\u0000+\u0000+tsr\u0001t\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\tD\u0000\u0002\tE\tF\r\tE\u0000\u0003Q\u0000\u0000\u0000+\u0001#\tG\tH\tI\r\tG\u0000\u0001k\u0000\u0000\u0000.\u0001\t\tJ\u0002\tJ\u0000\u0002\tK\tL\r\tK\u0000\u0003I\u0000\u0000\u0000.\u00005q\tMp\u000bq\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\tM\u0000\u0002\tNo\r\tN\u0000\u0001J\u0000\u0000\u0000\/\u00001n\u0002n\u0000\u0000\u0002o\u0000\u0000\u0002p\u0000\u0000\u0002\tL\u0000\u0002\tO\tP\r\tO\u0000\u0002O\u0000\u0000\u00006\u0001\u0007\tQ\tR\r\tQ\u0000\u0002O\u0000\u0000\u0000:\u0001\u0006\tS\tT\r\tS\u0000\u0001k\u0000\u0000\u0000A\u0001\u0005\tU\u0002\tU\u0000\u0002\tV\tW\r\tV\u0000\u0002n\u0000\u0001\u0000A\u0000F\tX\tY\r\tX\u0000\u0003I\u0000\u0000\u0000B\u0000Fmlk\u000bm\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002l\u0000\u0000\u0002k\u0000\u0000\r\tY\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002\tW\u0000\u0002\tZj\r\tZ\u0000\u0004Z\u0000\u0000\u0000G\u0001\u0005\t[\t\\i\t]\r\t[\u0000\u0003l\u0000\u0005\u0000G\u0000f\t^hg\r\t^\u0000\u0003I\u0000\u0002\u0000G\u0000ff\t_e\nf\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r\t_\u0000\u0003l\u0000\u0005\u0000G\u0000b\t`dc\r\t`\u0000\u00026\u0001\u0000\u0000G\u0000b\ta\tb\r\ta\u0000\u0002n\u0000\u0000\u0000G\u0000T\tc\td\r\tc\u0000\u00024\u0000\u0001\u0000Q\u0000Tb\te\nb\u0000\u0004\ncrow\r\te\u0000\u0001m\u0000\u0000\u0000R\u0000Sa\u0003a\u0000\u0001\r\td\u0000\u0003l\u0000\u0005\u0000G\u0000Q\tf`_\r\tf\u0000\u0002n\u0000\u0000\u0000G\u0000Q\tg\th\r\tg\u0000\u00024\u0000\u0000\u0000N\u0000Q^\ti\n^\u0000\u0004\ntabB\r\ti\u0000\u0001m\u0000\u0000\u0000O\u0000P]\u0003]\u0000\u0001\r\th\u0000\u0002n\u0000\u0000\u0000G\u0000N\tj\tk\r\tj\u0000\u00024\u0000\u0000\u0000K\u0000N\\\tl\n\\\u0000\u0004\nscra\r\tl\u0000\u0001m\u0000\u0000\u0000L\u0000M[\u0003[\u0000\u0001\r\tk\u0000\u00024\u0000\u0000\u0000G\u0000KZ\tm\nZ\u0000\u0004\ncwin\r\tm\u0000\u0001m\u0000\u0000\u0000I\u0000JY\u0003Y\u0000\u0001\u0001`\u0000\u0000\u0001_\u0000\u0000\r\tb\u0000\u0002=\u0000\u0003\u0000U\u0000a\tn\to\r\tn\u0000\u0002n\u0000\u0000\u0000V\u0000]\tp\tq\r\tp\u0000\u00011\u0000\u0000\u0000Y\u0000]X\nX\u0000\u0004\npnam\r\tq\u0000\u00024\u0000\u0000\u0000V\u0000YW\tr\nW\u0000\u0004\nsttx\r\tr\u0000\u0001m\u0000\u0000\u0000W\u0000XV\u0003V\u0000\u0001\r\to\u0000\u0001o\u0000\u0000\u0000^\u0000`U\u000bU\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\r\t\\\u0000\u0001k\u0000\u0000\u0000i\u0000\ts\u0002\ts\u0000\u0002\tt\tu\r\tt\u0000\u0003l\u0000\u0001\u0000i\u0000iT\tv\tw\u0001T\u0000\u0000\f\tv\u0000$\u0000\u001e it DOES exist, so modify it: \u0000\u0002\u0000\u0000\u000e\tw\u0000\u0001\tx\u0011\tx\u0000<\u0000 \u0000i\u0000t\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000 \u0000i\u0000t\u0000:\u0000 \u0002\tu\u0000\u0002\ty\tz\r\ty\u0000\u0003l\u0000\u0002\u0000i\u0000iSRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\tz\u0000\u0002\t{\t|\r\t{\u0000\u0003I\u0000\u0002\u0000i\u0000P\t}O\nP\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r\t}\u0000\u0003l\u0000\u0005\u0000i\u0000\t~NM\r\t~\u0000\u00026\u0001\u0000\u0000i\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000v\t\t\r\t\u0000\u00024\u0000\u0001\u0000s\u0000vL\t\nL\u0000\u0004\ncrow\r\t\u0000\u0001m\u0000\u0000\u0000t\u0000uK\u0003K\u0000\u0001\r\t\u0000\u0003l\u0000\u0005\u0000i\u0000s\tJI\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000s\t\t\r\t\u0000\u00024\u0000\u0000\u0000p\u0000sH\t\nH\u0000\u0004\ntabB\r\t\u0000\u0001m\u0000\u0000\u0000q\u0000rG\u0003G\u0000\u0001\r\t\u0000\u0002n\u0000\u0000\u0000i\u0000p\t\t\r\t\u0000\u00024\u0000\u0000\u0000m\u0000pF\t\nF\u0000\u0004\nscra\r\t\u0000\u0001m\u0000\u0000\u0000n\u0000oE\u0003E\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000i\u0000mD\t\nD\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000k\u0000lC\u0003C\u0000\u0001\u0001J\u0000\u0000\u0001I\u0000\u0000\r\t\u0000\u0002=\u0000\u0003\u0000w\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000x\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000{\u0000B\nB\u0000\u0004\npnam\r\t\u0000\u00024\u0000\u0000\u0000x\u0000{A\t\nA\u0000\u0004\nsttx\r\t\u0000\u0001m\u0000\u0000\u0000y\u0000z@\u0003@\u0000\u0001\r\t\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002O\u0000\u0000\u0002\t|\u0000\u0002\t\t\r\t\u0000\u0002n\u0000\u0001\u0000\u0000\t\t\r\t\u0000\u0003I\u0000\u0000\u0000\u0000>\t=\u000b>\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\t\u0000\u0002\t<\r\t\u0000\u00026\u0001\u0000\u0000\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0001\u0000\u0000;\t\n;\u0000\u0004\nbutT\r\t\u0000\u0001m\u0000\u0000\u0000\u0000:\u0003:\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u00009\t\n9\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u00008\u00038\u0000\u0001\r\t\u0000\u0002C\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u00007\n7\u0000\u0004\npnam\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\b\u0000E\u0000d\u0000i\u0000t\u0002<\u0000\u0000\u0002=\u0000\u0000\r\t\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003I\u0000\u0002\u0000\u00006\t5\n6\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\b\t\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u00025\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002r\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u00000\n0\u0000\u0004\nvalL\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000\/\t\n\/\u0000\u0004\ntxtf\r\t\u0000\u0001m\u0000\u0000\u0000\u0000.\u0003.\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000-\t\n-\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000,\u0003,\u0000\u0001\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002r\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001o\u0000\u0000\u0000\u0000+\u000b+\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u0000*\n*\u0000\u0004\nvalL\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000)\t\n)\u0000\u0004\ntxta\r\t\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u0000\u0001\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0000\u0000\u0000'\t\n'\u0000\u0004\nscra\r\t\u0000\u0001m\u0000\u0000\u0000\u0000&\u0003&\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000%\t\n%\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000$\u0003$\u0000\u0001\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002n\u0000\u0001\u0000\u0000\t\t\r\t\u0000\u0003I\u0000\u0000\u0000\u0000#\t\"\u000b#\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\t\u0000\u0002\t!\r\t\u0000\u00026\u0001\u0000\u0000\u0000\t\t\r\t\u0000\u0002n\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00024\u0000\u0001\u0000\u0000 \t\n \u0000\u0004\nbutT\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\u0000\u0001\r\t\u0000\u00024\u0000\u0000\u0000\u0000\u001e\t\n\u001e\u0000\u0004\ncwin\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u0003\u001d\u0000\u0001\r\t\u0000\u0002C\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u00011\u0000\u0000\u0000\u0000\u001c\n\u001c\u0000\u0004\npnam\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0004\u0000O\u0000K\u0002!\u0000\u0000\u0002\"\u0000\u0000\r\t\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003I\u0000\u0002\u0000\u0000\u001b\t\u001a\n\u001b\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\b\t\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u001a\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\t\u0000\u0002\t\u0016\r\t\u0000\u0001L\u0000\u0000\u0000\u0000\t\r\t\u0000\u0002b\u0000\u0000\u0000\u0000\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0012\u0000E\u0000x\u0000i\u0000s\u0000t\u0000e\u0000d\u0000:\u0000 \r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\u0016\u0000\u0000\u0002i\u0000\u0000\r\t]\u0000\u0003l\u0000\u0003\u0000\u0001\u0005\t\t\t\r\t\u0000\u0001k\u0000\u0000\u0000\u0001\u0005\t\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001L\u0000\u0000\u0000\u0001\u0003\t\r\t\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001c\u0000D\u0000o\u0000 \u0000N\u0000O\u0000T\u0000 \u0000E\u0000x\u0000i\u0000s\u0000t\u0000:\u0000 \r\t\u0000\u0001o\u0000\u0000\u0001\u0000\u0001\u0001\u0014\u000b\u0014\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u0002\t\u0000\u0002\t\u0013\r\t\u0000\u0003l\u0000\u0002\u0001\u0004\u0001\u0004\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u0013\u0000\u0000\f\t\u0000\u0017\u0000\u0011 DOES NOT exist:\u0000\u0002\u0000\u0000\u000e\t\u0000\u0001\t\u0011\t\u0000\"\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000:\u0002j\u0000\u0000\r\tT\u0000\u00024\u0000\u0000\u0000:\u0000>\u000f\t\n\u000f\u0000\u0004\npcap\r\t\u0000\u0001m\u0000\u0000\u0000<\u0000=\t\u000e\t\u0000\u0001\t\u0011\t\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\tR\u0000\u0001m\u0000\u0000\u00006\u00007\t\u000f\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\tP\u0000\u0002\t\u000e\r\t\u0000\u0003l\u0000\u0002\u0001\b\u0001\b\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u000e\u0000\u0000\r\tH\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\t\t\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\t\u0000\u0003\b\t\u0007\n\b\u0000\u0004\nerrn\r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0007\u0000\u0000\r\tI\u0000\u0003R\u0000\u0000\u0001\u0011\u0001#\u0005\t\t\n\u0005\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001\"\t\t\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001 \t\t\r\t\u0000\u0002b\u0000\u0000\u0001\u0017\u0001\u001c\t\t\r\t\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\t\u000e\t\u0000\u0001\t\u0011\t\u0000T\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000e\u0000n\u0000c\u0000e\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000'\r\t\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b\u0004\u000b\u0004\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r\t\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f\t\u000e\t\u0000\u0001\t\u0011\t\u0000\b\u0000'\u0000 \u0000-\u0000 \r\t\u0000\u0001o\u0000\u0000\u0001 \u0001!\u0003\u000b\u0003\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\t\u0000\u0003\u0002\t\u0001\n\u0002\u0000\u0004\nerrn\r\t\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016\u0000\u000b\u0000\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0001\u0000\u0000\u0002\tF\u0000\u0002\t\r\t\u0000\u0003l\u0000\u0002\u0001$\u0001$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\t\u0005\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\t\u0000\u0002\t\n\u0000\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0000\u0002\n\u0001\n\u0002\r\n\u0001\u0000\u0002i\u0000\u0000\u0000K\u0000N\n\u0003\n\u0004\r\n\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\n\u0005\u000b\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u0002\n\u0005\u0000\u0002\n\u0006\r\n\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0004\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\n\u0007\u0002\n\u0007\u0000\u0002\n\b\n\t\r\n\b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\n\n\n\u000b\u0001\u0000\u0000\f\n\n\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\n\u000b\u0000\u0001\n\f\u0011\n\f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\n\t\u0000\u0002\n\r\n\u000e\r\n\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u000e\u0000\u0002\n\u000f\n\u0010\r\n\u000f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000]\n\u0011\n\u0012\n\u0013\r\n\u0011\u0000\u0002O\u0000\u0000\u0000\u0003\u0000I\n\u0014\n\u0015\r\n\u0014\u0000\u0002O\u0000\u0000\u0000\u0007\u0000H\n\u0016\n\u0017\r\n\u0016\u0000\u0001k\u0000\u0000\u0000\u000e\u0000G\n\u0018\u0002\n\u0018\u0000\u0002\n\u0019\n\u001a\r\n\u0019\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\n\u001b\n\u001c\r\n\u001b\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u001c\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\n\u001a\u0000\u0002\n\u001d\n\u001e\r\n\u001d\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u001e\u0000\u0002\n\u001f\n \r\n\u001f\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\n!\n\"\u0001\u0000\u0000\f\n!\u0000!\u0000\u001b try to open Manage window:\u0000\u0002\u0000\u0000\u000e\n\"\u0000\u0001\n#\u0011\n#\u00006\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\n \u0000\u0002\n$\r\n$\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000G\n%\n&\n'\r\n%\u0000\u0002C\u0000\u0000\u0000\u0014\u0000\u001c\n(\n)\r\n(\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\n*\n+\r\n*\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r\n+\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\n,\n\u0000\u0004\ncwin\r\n,\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r\n)\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n-\u000e\n-\u0000\u0001\n.\u0011\n.\u00008\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\r\n&\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!\n\/\r\n\/\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\n'\u0000\u0001k\u0000\u0000\u0000$\u0000G\n0\u0002\n0\u0000\u0002\n1\n2\r\n1\u0000\u0003I\u0000\u0002\u0000$\u0000D\n3\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\n3\u0000\u0003l\u0000\u0005\u0000$\u0000@\n4\r\n4\u0000\u00026\u0001\u0000\u0000$\u0000@\n5\n6\r\n5\u0000\u0002n\u0000\u0000\u0000$\u00007\n7\n8\r\n7\u0000\u00024\u0000\u0001\u00004\u00007\n9\n\u0000\u0004\nmenI\r\n9\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0001\r\n8\u0000\u0002n\u0000\u0000\u0000$\u00004\n:\n;\r\n:\u0000\u00024\u0000\u0000\u00001\u00004\n<\n\u0000\u0004\nmenE\r\n<\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r\n;\u0000\u0002n\u0000\u0000\u0000$\u00001\n=\n>\r\n=\u0000\u00024\u0000\u0000\u0000.\u00001\n?\n\u0000\u0004\nmenI\r\n?\u0000\u0001m\u0000\u0000\u0000\/\u00000\n@\u000e\n@\u0000\u0001\nA\u0011\nA\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r\n>\u0000\u0002n\u0000\u0000\u0000$\u0000.\nB\nC\r\nB\u0000\u00024\u0000\u0000\u0000+\u0000.\nD\n\u0000\u0004\nmenE\r\nD\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\r\nC\u0000\u0002n\u0000\u0000\u0000$\u0000+\nE\nF\r\nE\u0000\u00024\u0000\u0000\u0000(\u0000+\nG\n\u0000\u0004\nmbri\r\nG\u0000\u0001m\u0000\u0000\u0000)\u0000*\nH\u000e\nH\u0000\u0001\nI\u0011\nI\u0000\b\u0000F\u0000i\u0000l\u0000e\r\nF\u0000\u00024\u0000\u0000\u0000$\u0000(\nJ\n\u0000\u0004\nmbar\r\nJ\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\r\n6\u0000\u0002C\u0000\u0000\u00008\u0000?\nK\nL\r\nK\u0000\u00011\u0000\u0000\u00009\u0000;\n\u0000\u0004\npnam\r\nL\u0000\u0001m\u0000\u0000\u0000<\u0000>\nM\u000e\nM\u0000\u0001\nN\u0011\nN\u0000(\u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\n2\u0000\u0002\nO\r\nO\u0000\u0001L\u0000\u0000\u0000E\u0000G\nP\r\nP\u0000\u0001m\u0000\u0000\u0000E\u0000F\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0017\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b\nQ\n\u0000\u0004\npcap\r\nQ\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\nR\u000e\nR\u0000\u0001\nS\u0011\nS\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\n\u0015\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\nT\u000f\nT\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\n\u0012\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\nU\nV\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\nU\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\nV\u0000\u0003\nW\n\u0000\u0004\nerrn\r\nW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\n\u0013\u0000\u0003R\u0000\u0000\u0000Q\u0000]\nX\nY\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\nX\u0000\u0002b\u0000\u0000\u0000W\u0000\\\nZ\n[\r\nZ\u0000\u0001m\u0000\u0000\u0000W\u0000Z\n\\\u000e\n\\\u0000\u0001\n]\u0011\n]\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\n[\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\nY\u0000\u0003\n^\n\u0000\u0004\nerrn\r\n^\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\n\u0010\u0000\u0002\n_\r\n_\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\n\u0002\u0000\u0002\n`\na\r\n`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\na\u0000\u0002\nb\nc\r\nb\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nc\u0000\u0002\nd\ne\r\nd\u0000\u0002i\u0000\u0000\u0000O\u0000R\nf\ng\r\nf\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\nh\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u0002\nh\u0000\u0002\ni\r\ni\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\ng\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\nj\u0002\nj\u0000\u0002\nk\nl\r\nk\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\nm\nn\u0001\u0000\u0000\f\nm\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\nn\u0000\u0001\no\u0011\no\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\nl\u0000\u0002\np\nq\r\np\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nq\u0000\u0002\nr\ns\r\nr\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\nt\nu\r\nt\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\nv\u0006\nv\u0000\u0003\nw\u000b\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\r\nw\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\r\nu\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\ns\u0000\u0002\nx\ny\r\nx\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\ny\u0000\u0002\nz\n{\r\nz\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\n|\n}\r\n|\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\n~\n\r\n~\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\n}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\n{\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u000e\n\u0000\u0001\n\u0011\n\u00008\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000E\u0000x\u0000t\u0000e\u0000r\u0000n\u0000a\u0000l\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0014\n\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0014\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0005\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\f\n\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0015\u0000\u001a\n\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\n\n\r\n\u0000\u0002]\u0000\u0000\u0000\u0015\u0000\u0018\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0005\r\n\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nmin \r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\f\n\u0000\r\u0000\u0007seconds\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u001b\u0000&\n\n\r\n\u0000\u0003I\u0000\u0002\u0000\u001b\u0000$\n\n\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\n\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\u001e\n\r\n\u0000\u0002^\u0000\u0000\u0000\u001b\u0000\u001e\n\n\r\n\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\n\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001\u0000\u0000\u0001\u0000\u0000\u0006\n\u0000\u0003\n\n\u0000\u0004\ndire\r\n\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bolierndD\u0006\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003Q\u0000\u0000\u0000'\u0000\n\n\n\r\n\u0000\u0002O\u0000\u0000\u0000*\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u0000.\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002O\u0000\u0000\u0000.\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u00005\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002n\u0000\u0001\u00005\u0000:\n\n\r\n\u0000\u0003I\u0000\u0000\u00006\u0000:\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0000f\u0000\u0000\u00005\u00006\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0004Z\u0000\u0000\u0000;\u0000\n\n\n\r\n\u0000\u0002C\u0000\u0000\u0000;\u0000C\n\n\r\n\u0000\u0002n\u0000\u0000\u0000;\u0000A\n\n\r\n\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npnam\r\n\u0000\u00024\u0000\u0000\u0000;\u0000?\n\n\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\r\n\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\r\n\u0000\u0003Q\u0000\u0000\u0000F\u0000y\n\n\n\r\n\u0000\u0001k\u0000\u0000\u0000I\u0000e\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000I\u0000Q\n\n\r\n\u0000\u0002n\u0000\u0000\u0000I\u0000O\n\n\r\n\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npnam\r\n\u0000\u00024\u0000\u0000\u0000I\u0000M\n\n\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0000\u0001\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003I\u0000\u0002\u0000R\u0000]~\n}\n~\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\n\u0000\u0003l\u0000\u0005\u0000R\u0000Y\n|{\r\n\u0000\u0002n\u0000\u0000\u0000R\u0000Y\n\n\r\n\u0000\u00024\u0000\u0000\u0000V\u0000Yz\n\nz\u0000\u0004\nbutT\r\n\u0000\u0001m\u0000\u0000\u0000W\u0000X\n\u000e\n\u0000\u0001\n\u0011\n\u0000\u0004\u0000O\u0000K\r\n\u0000\u00024\u0000\u0000\u0000R\u0000Vy\n\ny\u0000\u0004\ncwin\r\n\u0000\u0001m\u0000\u0000\u0000T\u0000Ux\u0003x\u0000\u0001\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002}\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000^\u0000c\n\n\n\r\n\u0000\u0003I\u0000\u0002\u0000^\u0000cw\nv\nw\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\n\u0000\u0001m\u0000\u0000\u0000^\u0000_u\u0003u\u0000\u0001\u0002v\u0000\u0000\f\n\u0000\u001a\u0000\u0014 let click register.\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000(\u0000 \u0000l\u0000e\u0000t\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000.\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000d\u0000dt\n\n\u0001t\u0000\u0000\f\n\u00006\u00000 will continue below to wait for window to close\u0000\u0002\u0000\u0000\u000e\n\u0000\u0001\n\u0011\n\u0000`\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0002\n\u0000\u0002\ns\r\n\u0000\u0003l\u0000\u0002\u0000d\u0000drqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002s\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000o\n\n\no\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\n\u0000\u0003m\nl\nm\u0000\u0004\nerrn\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006l\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000m\u0000yj\n\n\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0002b\u0000\u0000\u0000s\u0000x\n\n\r\n\u0000\u0001m\u0000\u0000\u0000s\u0000v\n\u000e\n\u0000\u0001\n\u0011\n\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\n\u0000\u0001o\u0000\u0000\u0000v\u0000wi\u000bi\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\n\u0000\u0003h\ng\nh\u0000\u0004\nerrn\r\n\u0000\u0001o\u0000\u0000\u0000q\u0000rf\u000bf\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006g\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0004Z\u0000\u0000\u0000|\u0000\n\ne\n\r\n\u0000\u0002n\u0000\u0000\u0000|\u0000\n\n\r\n\u0000\u0001o\u0000\u0000\u0000}\u0000d\u000bd\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\r\n\u0000\u0001o\u0000\u0000\u0000|\u0000}c\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000b\n\n\nb\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0001m\u0000\u0000\u0000\u0000\n\u000e\n\u0000\u0001\n\u0011\n\u0000v\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000w\u0000a\u0000s\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000.\u0006\n\u0000\u0003a\n`\na\u0000\u0004\nerrn\r\n\u0000\u0001m\u0000\u0000\u0000\u0000_\u0003_\u0004\u0000\u0006`\u0000\u0000\u0002e\u0000\u0000\r\n\u0000\u0001k\u0000\u0000\u0000\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003l\u0000\u0001\u0000\u0000^\u000b\u0000\u000b\u0001\u0001^\u0000\u0000\f\u000b\u0000\u00001\u0000+ Not in Manage Data Source, but that is OK.\u0000\u0002\u0000\u0000\u000e\u000b\u0001\u0000\u0001\u000b\u0002\u0011\u000b\u0002\u0000V\u0000 \u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000O\u0000K\u0000.\u0002\n\u0000\u0002\u000b\u0003]\r\u000b\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u000b\u0004\r\u000b\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\\\n\\\u0000\b\u000bboovtrue\u0002]\u0000\u0000\u0002\n\u0000\u0002\u000b\u0005[\r\u000b\u0005\u0000\u0003l\u0000\u0002\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002[\u0000\u0000\r\n\u0000\u00024\u0000\u0000\u0000.\u00002W\u000b\u0006\nW\u0000\u0004\npcap\r\u000b\u0006\u0000\u0001m\u0000\u0000\u00000\u00001\u000b\u0007\u000e\u000b\u0007\u0000\u0001\u000b\b\u0011\u000b\b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0002\n\u0000\u0002\u000b\t\u000b\n\r\u000b\t\u0000\u0003l\u0000\u0002\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u000b\n\u0000\u0002\u000b\u000b\u000b\f\r\u000b\u000b\u0000\u0003l\u0000\u0002\u0000\u0000SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u000b\f\u0000\u0002\u000b\r\u000b\u000e\r\u000b\r\u0000\u0002n\u0000\u0001\u0000\u0000\u000b\u000f\u000b\u0010\r\u000b\u000f\u0000\u0003I\u0000\u0000\u0000\u0000P\u000b\u0011O\u000bP\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000b\u0011\u0000\u0002\u000b\u0012N\r\u000b\u0012\u0000\u0001K\u0000\u0000\u0000\u0000\u000b\u0013\u0006\u000b\u0013\u0000\u0003M\u000b\u0014\u000b\u0015\u000bM\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000b\u0014\u0000\u0001o\u0000\u0000\u0000\u0000L\u000bL\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u0006\u000b\u0015\u0000\u0003K\u000b\u0016\u000b\u0017\u000bK\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000b\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u0018\u000e\u000b\u0018\u0000\u0001\u000b\u0019\u0011\u000b\u0019\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u000b\u0017\u0000\u0003J\u000b\u001a\u000b\u001b\u000bJ\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000b\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u001c\u000e\u000b\u001c\u0000\u0001\u000b\u001d\u0011\u000b\u001d\u0000\u0006\u0000a\u0000n\u0000y\u0006\u000b\u001b\u0000\u0003I\u000b\u001e\u000b\u001f\u000bI\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u000b\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0006\u000b\u001f\u0000\u0003G\u000b F\u000bG\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r\u000b \u0000\u0001o\u0000\u0000\u0000\u0000E\u000bE\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0006F\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u000b\u0010\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u000b\u000e\u0000\u0002\u000b!\u000b\"\r\u000b!\u0000\u0003l\u0000\u0002\u0000\u0000DCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\u000b\"\u0000\u0002\u000b#\u000b$\r\u000b#\u0000\u0003l\u0000\u0002\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u000b$\u0000\u0002\u000b%\u000b&\r\u000b%\u0000\u0003l\u0000\u0001\u0000\u0000\u000b'\u000b(\u000b)\r\u000b'\u0000\u0003I\u0000\u0002\u0000\u0000>\u000b*=\n>\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u000b*\u0000\u0001m\u0000\u0000\u0000\u0000<\u0003<\u0000\u0001\u0002=\u0000\u0000\f\u000b(\u0000(\u0000\" let normal window come to front. \u0000\u0002\u0000\u0000\u000e\u000b)\u0000\u0001\u000b+\u0011\u000b+\u0000D\u0000 \u0000l\u0000e\u0000t\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0000 \u0002\u000b&\u0000\u0002\u000b,\u000b-\r\u000b,\u0000\u0003l\u0000\u0002\u0000\u0000;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u000b-\u0000\u0002\u000b.\u000b\/\r\u000b.\u0000\u0001L\u0000\u0000\u0000\u0000\u000b0\r\u000b0\u0000\u0001m\u0000\u0000\u0000\u00008\n8\u0000\b\u000bboovtrue\u0002\u000b\/\u0000\u0002\u000b1\u000b2\r\u000b1\u0000\u0003l\u0000\u0002\u0000\u0000765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u000b2\u0000\u0002\u000b34\r\u000b3\u0000\u0003l\u0000\u0002\u0000\u0000321\u00013\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u00024\u0000\u0000\r\n\u0000\u0001m\u0000\u0000\u0000*\u0000+\u000b4\u000f\u000b4\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000\u000b5\u000b6\n0\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000b5\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u000b6\u0000\u0003.\u000b7-\n.\u0000\u0004\nerrn\r\u000b7\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006-\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000+\u000b8\u000b9\n+\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000b8\u0000\u0002b\u0000\u0000\u0000\u0000\u000b:\u000b;\r\u000b:\u0000\u0001m\u0000\u0000\u0000\u0000\u000b<\u000e\u000b<\u0000\u0001\u000b=\u0011\u000b=\u0000H\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000 \r\u000b;\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u000b9\u0000\u0003)\u000b>(\n)\u0000\u0004\nerrn\r\u000b>\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006(\u0000\u0000\u0002\n\u0000\u0002\u000b?&\r\u000b?\u0000\u0003l\u0000\u0002\u0000\u0000%$#\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002&\u0000\u0000\u0002\ne\u0000\u0002\u000b@\u000bA\r\u000b@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u000bA\u0000\u0002\u000bB\u000bC\r\u000bB\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u000bC\u0000\u0002\u000bD\u000bE\r\u000bD\u0000\u0002i\u0000\u0000\u0000S\u0000V\u000bF\u000bG\r\u000bF\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000bH\u001b\u000b\u001c\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u0002\u000bH\u0000\u0002\u000bI\u001a\r\u000bI\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u001b\u0000\u0000\r\u000bG\u0000\u0001k\u0000\u0000\u0000\u0000\u000f\u000bJ\u0002\u000bJ\u0000\u0002\u000bK\u000bL\r\u000bK\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0018\u000bM\u000bN\u0001\u0018\u0000\u0000\f\u000bM\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u000bN\u0000\u0001\u000bO\u0011\u000bO\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u000bL\u0000\u0002\u000bP\u000bQ\r\u000bP\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u000bQ\u0000\u0002\u000bR\u000bS\r\u000bR\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0014\u000bT\u000bU\u0001\u0014\u0000\u0000\f\u000bT\u0000\u0000 any BOOLEAN parameters can be either actually boolean, or 1\/0. This function will change that to match UI scripting interface needs.\u0000\u0002\u0000\u0000\u000e\u000bU\u0000\u0001\u000bV\u0011\u000bV\u0001\f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000B\u0000O\u0000O\u0000L\u0000E\u0000A\u0000N\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000c\u0000a\u0000n\u0000 \u0000b\u0000e\u0000 \u0000e\u0000i\u0000t\u0000h\u0000e\u0000r\u0000 \u0000a\u0000c\u0000t\u0000u\u0000a\u0000l\u0000l\u0000y\u0000 \u0000b\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u00001\u0000\/\u00000\u0000.\u0000 \u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000 \u0000U\u0000I\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000a\u0000c\u0000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000.\u0002\u000bS\u0000\u0002\u000bW\u000bX\r\u000bW\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u000bX\u0000\u0002\u000bY\u000bZ\r\u000bY\u0000\u0002r\u0000\u0000\u0000\u0000\u0000Z\u000b[\u000b\\\r\u000b[\u0000\u0001K\u0000\u0000\u0000\u0000\u0000X\u000b]\u0006\u000b]\u0000\u0003\u0010\u000b^\u000b_\u000b\u0010\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000b^\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u000b`\u000e\u000b`\u0000\u0001\u000ba\u0011\u000ba\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0006\u000b_\u0000\u0003\u000f\u000bb\u000bc\u000b\u000f\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u000bb\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u000e\n\u000e\u0000\u0004\nnull\u0006\u000bc\u0000\u0003\r\u000bd\u000be\u000b\r\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u000bd\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\f\n\f\u0000\u0004\nnull\u0006\u000be\u0000\u0003\u000b\u000bf\u000bg\u000b\u000b\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u000bf\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\n\n\u0000\u0004\nnull\u0006\u000bg\u0000\u0003\t\u000bh\u000bi\u000b\t\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\u000bh\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\b\n\b\u0000\u0004\nnull\u0006\u000bi\u0000\u0003\u0007\u000bj\u000bk\u000b\u0007\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u000bj\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0006\n\u0006\u0000\u0004\nnull\u0006\u000bk\u0000\u0003\u0005\u000bl\u000bm\u000b\u0005\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u000bl\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0004\n\u0004\u0000\u0004\nnull\u0006\u000bm\u0000\u0003\u0003\u000bn\u000bo\u000b\u0003\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\u000bn\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\n\u0002\u0000\u0004\nnull\u0006\u000bo\u0000\u0003\u0001\u000bp\u000bq\u000b\u0001\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u000bp\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\n\u0000\u0000\u0004\nnull\u0006\u000bq\u0000\u0003\u000br\u000bs\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u000br\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nnull\u0006\u000bs\u0000\u0003\u000bt\u000bu\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u000bt\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nnull\u0006\u000bu\u0000\u0003\u000bv\u000bw\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\u000bv\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\u0004\nnull\u0006\u000bw\u0000\u0003\u000bx\u000by\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000bx\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\u0006\u000by\u0000\u0003\u000bz\u000b{\u000b\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000bz\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nnull\u0006\u000b{\u0000\u0003\u000b|\u000b}\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000b|\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\u0004\nnull\u0006\u000b}\u0000\u0003\u000b~\u000b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000b~\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000b\u0000\u0001m\u0000\u0000\u0000'\u0000(\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000b\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u000b\u0000\u0001m\u0000\u0000\u0000\/\u00000\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u000b\u0000\u0001m\u0000\u0000\u00003\u00004\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u000b\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u000b\u0000\u0001m\u0000\u0000\u0000;\u0000<\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\r\u000b\u0000\u0001m\u0000\u0000\u0000?\u0000@\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u000b\u0000\u0001m\u0000\u0000\u0000C\u0000D\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u000b\u0000\u0001m\u0000\u0000\u0000G\u0000H\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u000b\u0000\u0001m\u0000\u0000\u0000K\u0000L\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000b\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u000b\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nnull\u0006\u000b\u0000\u0003\u000b\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u000b\u0000\u0001m\u0000\u0000\u0000S\u0000T\n\u0000\u0004\nnull\u0006\u0000\u0000\r\u000b\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u000bZ\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 editMode: \"CONFORM\" means make field exactly match the entire specified data structure, while \"TWEAK\" means only to change which things were specified, leaving the other settings alone. \u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001v\u0000 \u0000e\u0000d\u0000i\u0000t\u0000M\u0000o\u0000d\u0000e\u0000:\u0000 \u0000\"\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0000\"\u0000 \u0000m\u0000e\u0000a\u0000n\u0000s\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000e\u0000x\u0000a\u0000c\u0000t\u0000l\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000t\u0000i\u0000r\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000,\u0000 \u0000w\u0000h\u0000i\u0000l\u0000e\u0000 \u0000\"\u0000T\u0000W\u0000E\u0000A\u0000K\u0000\"\u0000 \u0000m\u0000e\u0000a\u0000n\u0000s\u0000 \u0000o\u0000n\u0000l\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000t\u0000h\u0000i\u0000n\u0000g\u0000s\u0000 \u0000w\u0000e\u0000r\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000l\u0000e\u0000a\u0000v\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000 \u0000a\u0000l\u0000o\u0000n\u0000e\u0000.\u0000 \u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 autoEnterSpecialValue: keywords used in FM-XML: NONE, CreationAccountName, CreationUserName,CreationTimestamp, ModificationAccountName, et al.\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001\u001e\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000-\u0000X\u0000M\u0000L\u0000:\u0000 \u0000N\u0000O\u0000N\u0000E\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\u0000,\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000t\u0000 \u0000a\u0000l\u0000.\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000a\u0000[ autoSerial:false or autoSerial:{autoNextValue:null, autoIncrement:null, autoGenerate:null}\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000:\u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000o\u0000r\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000:\u0000{\u0000a\u0000u\u0000t\u0000o\u0000N\u0000e\u0000x\u0000t\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000n\u0000u\u0000l\u0000l\u0000,\u0000 \u0000a\u0000u\u0000t\u0000o\u0000I\u0000n\u0000c\u0000r\u0000e\u0000m\u0000e\u0000n\u0000t\u0000:\u0000n\u0000u\u0000l\u0000l\u0000,\u0000 \u0000a\u0000u\u0000t\u0000o\u0000G\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000:\u0000n\u0000u\u0000l\u0000l\u0000}\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000[\u0000[\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000a\u0000[ autoEnterIsLookup - LOOKUP FUNCTIONS NOT YET SUPPORTED - WOULD NEED TO HANDLE SUB-ELEMENT.\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000I\u0000s\u0000L\u0000o\u0000o\u0000k\u0000u\u0000p\u0000 \u0000-\u0000 \u0000L\u0000O\u0000O\u0000K\u0000U\u0000P\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000-\u0000 \u0000W\u0000O\u0000U\u0000L\u0000D\u0000 \u0000N\u0000E\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000 \u0000S\u0000U\u0000B\u0000-\u0000E\u0000L\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000[\u0000[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000[\u0000`\u000b\u000b\r\u000b\u0000\u0002b\u0000\u0000\u0000[\u0000^\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000a\u0000a\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000a\u0000f\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000a\u0000d\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000b\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0001\u0000g\u0000z\u000b\u000b\r\u000b\u0000\u0002>\u0001\u0000\u0000g\u0000l\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000g\u0000j\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000h\u0000j\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u000b\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000b\u0000\u0001m\u0000\u0000\u0000j\u0000k\n\u0000\u0004\nnull\r\u000b\u0000\u0002r\u0000\u0000\u0000o\u0000v\u000b\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0000o\u0000p\n\u0000\b\u000bboovtrue\r\u000b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000q\u0000u\u000b\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u000b\u0000\u0001o\u0000\u0000\u0000p\u0000q\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000{\u0000{\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0000\u0000{\u0000{\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0000 DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \nDEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \t\n\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0001D\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\t\u0000\n\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000{\u0000{\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003Q\u0000\u0000\u0000{\u000f\u000b\u000b\u000b\r\u000b\u0000\u0001k\u0000\u0000\u0000~\u000f\u000b\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000~\u0000~\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u001e\u0000\u0018 try to select it first:\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u00000\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000i\u0000t\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000:\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000~\u0000\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0000\u0000~\u0000\u000b\u000b\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u0002\u000b\u0000\u0002\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0001\u0000\u0000\u000b\u000b\r\u000b\u0000\u0001H\u0000\u0000\u0000\u0000\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\r\u000b\u0000\u0001L\u0000\u0000\u0000\u0000\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002O\u0000\u0000\u0000\u000f\u000b\u000b\r\u000b\u0000\u0002O\u0000\u0000\u0000\u000f\u000b\u000b\r\u000b\u0000\u0001k\u0000\u0000\u0000\u000f\u000b\u0002\u000b\u0000\u0002\f\u0000\f\u0001\r\f\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\f\u0002\f\u0003\r\f\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\f\u0003\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\f\u0001\u0000\u0002\f\u0004\f\u0005\r\f\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u0005\u0000\u0002\f\u0006\f\u0007\r\f\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u0007\u0000\u0002\f\b\f\t\r\f\b\u0000\u0002r\u0000\u0000\u0000\u0000\f\n\f\u000b\r\f\n\u0000\u00026\u0001\u0000\u0000\u0000\f\f\f\r\r\f\f\u0000\u0002n\u0000\u0000\u0000\u0000\f\u000e\f\u000f\r\f\u000e\u0000\u00024\u0000\u0001\u0000\u0000\f\u0010\n\u0000\u0004\nbutT\r\f\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\f\u0011\f\u0012\r\f\u0011\u0000\u00024\u0000\u0000\u0000\u0000\f\u0013\n\u0000\u0004\ntabg\r\f\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\u0012\u0000\u00024\u0000\u0000\u0000\u0000\f\u0014\n\u0000\u0004\ncwin\r\f\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\f\r\u0000\u0002=\u0000\u0003\u0000\u0000\f\u0015\f\u0016\r\f\u0015\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\f\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\f\u0017\u000e\f\u0017\u0000\u0001\f\u0018\u0011\f\u0018\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\f\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u0002\f\t\u0000\u0002\f\u0019\f\u001a\r\f\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u001a\u0000\u0002\f\u001b\f\u001c\r\f\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\f\u001d\f\u001e\u0001\u0000\u0000\f\f\u001d\u0000%\u0000\u001f COMMENT is for any field type:\u0000\u0002\u0000\u0000\u000e\f\u001e\u0000\u0001\f\u001f\u0011\f\u001f\u0000>\u0000 \u0000C\u0000O\u0000M\u0000M\u0000E\u0000N\u0000T\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000n\u0000y\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000t\u0000y\u0000p\u0000e\u0000:\u0002\f\u001c\u0000\u0002\f \f!\r\f \u0000\u0004Z\u0000\u0000\u0000\u0001\u0006\f\"\f#~}\r\f\"\u0000\u0002>\u0001\u0000\u0000\u0000\f$\f%\r\f$\u0000\u0002n\u0000\u0000\u0000\u0000\f&\f'\r\f&\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\f'\u0000\u0001o\u0000\u0000\u0000\u0000{\u000b{\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f%\u0000\u0001m\u0000\u0000\u0000\u0000z\nz\u0000\u0004\nnull\r\f#\u0000\u0001k\u0000\u0000\u0000\u0001\u0002\f(\u0002\f(\u0000\u0002\f)\f*\r\f)\u0000\u0004Z\u0000\u0000\u0000\u0000\f+\f,yx\r\f+\u0000\u0002n\u0000\u0001\u0000\u0000\f-\f.\r\f-\u0000\u0003I\u0000\u0000\u0000\u0000w\f\/v\u000bw\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\f\/\u0000\u0002\f0\f1\r\f0\u0000\u0002n\u0000\u0000\u0000\u0000\f2\f3\r\f2\u0000\u00024\u0000\u0000\u0000\u0000u\f4\nu\u0000\u0004\ntxtf\r\f4\u0000\u0001m\u0000\u0000\u0000\u0000\f5\u000e\f5\u0000\u0001\f6\u0011\f6\u0000\u0010\u0000C\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000:\r\f3\u0000\u0002n\u0000\u0000\u0000\u0000\f7\f8\r\f7\u0000\u00024\u0000\u0000\u0000\u0000t\f9\nt\u0000\u0004\ntabg\r\f9\u0000\u0001m\u0000\u0000\u0000\u0000s\u0003s\u0000\u0001\r\f8\u0000\u00024\u0000\u0000\u0000\u0000r\f:\nr\u0000\u0004\ncwin\r\f:\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u0001\u0002\f1\u0000\u0002\f;p\r\f;\u0000\u0002n\u0000\u0000\u0000\u0000\f<\f=\r\f<\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\r\f=\u0000\u0001o\u0000\u0000\u0000\u0000n\u000bn\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002p\u0000\u0000\u0002v\u0000\u0000\r\f.\u0000\u0000f\u0000\u0000\u0000\u0000\r\f,\u0000\u0003I\u0000\u0002\u0000\u0000m\f>l\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\f>\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u0002l\u0000\u0000\u0002y\u0000\u0000\u0001x\u0000\u0000\u0002\f*\u0000\u0002\f?\f@\r\f?\u0000\u0003l\u0000\u0002\u0000\u0000jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\f@\u0000\u0002\fAg\r\fA\u0000\u0003I\u0000\u0002\u0000\u0001\u0002f\fBe\nf\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\fB\u0000\u0001m\u0000\u0000\u0000\u0000\fC\b\fC\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0002~\u0000\u0000\u0001}\u0000\u0000\u0002\f!\u0000\u0002\fD\fE\r\fD\u0000\u0003l\u0000\u0002\u0001\u0007\u0001\u0007dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\fE\u0000\u0002\fF\fG\r\fF\u0000\u0004Z\u0000\u0000\u0001\u0007\u0001g\fH\fIa`\r\fH\u0000\u0002F\u0000\u0000\u0001\u0007\u0001\u0018\fJ\fK\r\fJ\u0000\u0002=\u0000\u0003\u0001\u0007\u0001\f\fL\fM\r\fL\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b_\u000b_\u0000\u00140\u0000\beditmode\u0000\beditMode\r\fM\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\fN\u000e\fN\u0000\u0001\fO\u0011\fO\u0000\n\u0000T\u0000W\u0000E\u0000A\u0000K\r\fK\u0000\u0002=\u0000\u0003\u0001\u000f\u0001\u0014\fP\fQ\r\fP\u0000\u0002n\u0000\u0000\u0001\u000f\u0001\u0012\fR\fS\r\fR\u0000\u0001o\u0000\u0000\u0001\u0010\u0001\u0012^\u000b^\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\fS\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\r\fQ\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0013\\\n\\\u0000\u0004\nnull\r\fI\u0000\u0001k\u0000\u0000\u0001\u001b\u0001c\fT\u0002\fT\u0000\u0002\fU\fV\r\fU\u0000\u0003l\u0000\u0001\u0001\u001b\u0001\u001b[\fW\fX\u0001[\u0000\u0000\f\fW\u00006\u00000 just find out what it already is and use that: \u0000\u0002\u0000\u0000\u000e\fX\u0000\u0001\fY\u0011\fY\u0000`\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000o\u0000u\u0000t\u0000 \u0000w\u0000h\u0000a\u0000t\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000i\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000u\u0000s\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000:\u0000 \u0002\fV\u0000\u0002\fZ\f[\r\fZ\u0000\u0002r\u0000\u0000\u0001\u001b\u0001\/\f\\\f]\r\f\\\u0000\u0002n\u0000\u0000\u0001\u001b\u0001-\f^\f_\r\f^\u0000\u00024\u0000\u0000\u0001&\u0001-Z\f`\nZ\u0000\u0004\npopB\r\f`\u0000\u0001m\u0000\u0000\u0001)\u0001,\fa\u000e\fa\u0000\u0001\fb\u0011\fb\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\f_\u0000\u0002n\u0000\u0000\u0001\u001b\u0001&\fc\fd\r\fc\u0000\u00024\u0000\u0000\u0001!\u0001&Y\fe\nY\u0000\u0004\ntabg\r\fe\u0000\u0001m\u0000\u0000\u0001$\u0001%X\u0003X\u0000\u0001\r\fd\u0000\u00024\u0000\u0000\u0001\u001b\u0001!W\ff\nW\u0000\u0004\ncwin\r\ff\u0000\u0001m\u0000\u0000\u0001\u001f\u0001 V\u0003V\u0000\u0001\r\f]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\f[\u0000\u0002\fgT\r\fg\u0000\u0004Z\u0000\u0000\u00010\u0001c\fh\fi\fj\fk\r\fh\u0000\u0002=\u0000\u0003\u00010\u00019\fl\fm\r\fl\u0000\u0002n\u0000\u0000\u00010\u00015\fn\fo\r\fn\u0000\u00011\u0000\u0000\u00011\u00015S\nS\u0000\u0004\nvalL\r\fo\u0000\u0001o\u0000\u0000\u00010\u00011R\u000bR\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\fm\u0000\u0001m\u0000\u0000\u00015\u00018\fp\u000e\fp\u0000\u0001\fq\u0011\fq\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\r\fi\u0000\u0002r\u0000\u0000\u0001<\u0001C\fr\fs\r\fr\u0000\u0001m\u0000\u0000\u0001<\u0001?\ft\u000e\ft\u0000\u0001\fu\u0011\fu\u0000\u0014\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\r\fs\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\fv\fw\r\fv\u0000\u0001o\u0000\u0000\u0001@\u0001BQ\u000bQ\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\fw\u0000\u0001o\u0000\u0000\u0001?\u0001@P\u000bP\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\fj\u0000\u0002\fx\fy\r\fx\u0000\u0002=\u0000\u0003\u0001F\u0001O\fz\f{\r\fz\u0000\u0002n\u0000\u0000\u0001F\u0001K\f|\f}\r\f|\u0000\u00011\u0000\u0000\u0001G\u0001KO\nO\u0000\u0004\nvalL\r\f}\u0000\u0001o\u0000\u0000\u0001F\u0001GN\u000bN\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\f{\u0000\u0001m\u0000\u0000\u0001K\u0001N\f~\u000e\f~\u0000\u0001\f\u0011\f\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\fy\u0000\u0002\fM\r\f\u0000\u0002r\u0000\u0000\u0001R\u0001Y\f\f\r\f\u0000\u0001m\u0000\u0000\u0001R\u0001U\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\r\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\f\f\r\f\u0000\u0001o\u0000\u0000\u0001V\u0001XL\u000bL\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001U\u0001VK\u000bK\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002M\u0000\u0000\r\fk\u0000\u0002r\u0000\u0000\u0001\\\u0001c\f\f\r\f\u0000\u0001m\u0000\u0000\u0001\\\u0001_\f\u000e\f\u0000\u0001\f\u0011\f\u0000\f\u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\r\f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\f\f\r\f\u0000\u0001o\u0000\u0000\u0001`\u0001bJ\u000bJ\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001_\u0001`I\u000bI\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002T\u0000\u0000\u0002a\u0000\u0000\u0001`\u0000\u0000\u0002\fG\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001h\u0001hHGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0004Z\u0000\u0000\u0001h\u000f\f\f\fE\r\f\u0000\u0002=\u0000\u0003\u0001h\u0001m\f\f\r\f\u0000\u0002n\u0000\u0000\u0001h\u0001k\f\f\r\f\u0000\u0001o\u0000\u0000\u0001i\u0001kD\u000bD\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001h\u0001iC\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0001k\u0001lB\nB\u0000\u0004\nnull\r\f\u0000\u0001k\u0000\u0000\u0001p\u0001~\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003R\u0000\u0000\u0001p\u0001|A\f\f\nA\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001m\u0000\u0000\u0001x\u0001{\f\u000e\f\u0000\u0001\f\u0011\f\u00008\u0000P\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000:\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000T\u0000y\u0000p\u0000e\u0006\f\u0000\u0003@\f?\n@\u0000\u0004\nerrn\r\f\u0000\u0001m\u0000\u0000\u0001t\u0001w>\u0003>\u0004\u0000\u0006?\u0000\u0000\u0002\f\u0000\u0002\f=\r\f\u0000\u0003l\u0000\u0002\u0001}\u0001}<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002=\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002=\u0000\u0003\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u0001o\u0000\u0000\u0001\u00019\u000b9\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\f\u0000\u0001o\u0000\u0000\u0001\u00018\u000b8\u0000\t0\u0000\u0005prefs\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0014\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001k\u0000\u0000\u0001\u0005\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001\u0001765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00014\f\f\u00014\u0000\u0000\f\f\u0000\u000f\u0000\t IF CALC:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0012\u0000 \u0000I\u0000F\u0000 \u0000C\u0000A\u0000L\u0000C\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00013\f\f\u00013\u0000\u0000\f\f\u0000\u001e\u0000\u0018 Field Type = Calculated\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u00000\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000=\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00012\f\f\u00012\u0000\u0000\f\f\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00011\f\f\u00011\u0000\u0000\f\f\u0000\/\u0000) Data Type: popup \"Calculation result is\"\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000R\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0000:\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000\"\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000\"\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u00010\f\f\u00010\u0000\u0000\f\f\u0000\u0019\u0000\u0013 Calc Context Table\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001\/\f\f\u0001\/\u0000\u0000\f\f\u0000\u0019\u0000\u0013 Calculation itself\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001.\f\f\u0001.\u0000\u0000\f\f\u0000\u0017\u0000\u0011 Do Not Evaluate\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\"\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001-\f\f\u0001-\u0000\u0000\f\f\u0000\u000f\u0000\t Storage:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0012\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001,\f\f\u0001,\u0000\u0000\f\f\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0001\u0001+*)\u0001+\u0000\u0000\u0001*\u0000\u0000\u0001)\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0001\u0001(\f\f\u0001(\u0000\u0000\f\f\u0000\u0012\u0000\f FIELD TYPE:\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0018\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00024\u0000\u0000\u0001\u0001'\f\n'\u0000\u0004\npopB\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00024\u0000\u0000\u0001\u0001&\f\n&\u0000\u0004\ntabg\r\f\u0000\u0001m\u0000\u0000\u0001\u0001%\u0003%\u0000\u0001\r\f\u0000\u00024\u0000\u0000\u0001\u0001$\f\n$\u0000\u0004\ncwin\r\f\u0000\u0001m\u0000\u0000\u0001\u0001#\u0003#\u0000\u0001\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\f\u0000\u0002\f\f\r\f\u0000\u0004Z\u0000\u0000\u0001\u0002A\f\f!\f\r\f\u0000\u0002>\u0001\u0000\u0001\u0001\f\f\r\f\u0000\u0002n\u0000\u0000\u0001\u0001\f\f\r\f\u0000\u00011\u0000\u0000\u0001\u0001 \n \u0000\u0004\nvalL\r\f\u0000\u0001o\u0000\u0000\u0001\u0001\u001f\u000b\u001f\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\r\f\u0000\u0001m\u0000\u0000\u0001\u0001\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\r\f\u0000\u0001k\u0000\u0000\u0001\u0002\n\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002n\u0000\u0001\u0001\u0001\f\f\r\f\u0000\u0003I\u0000\u0000\u0001\u0001\u001e\f\u001d\u000b\u001e\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\f\u0000\u0002\r\u0000\r\u0001\r\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001\u001c\u000b\u001c\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u0002\r\u0001\u0000\u0002\r\u0002\u001b\r\r\u0002\u0000\u0001m\u0000\u0000\u0001\u0001\r\u0003\u000e\r\u0003\u0000\u0001\r\u0004\u0011\r\u0004\u0000\u0016\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\r\f\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\f\u0000\u0002\r\u0005\r\u0006\r\r\u0005\u0000\u0003l\u0000\u0002\u0001\u0001\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\r\u0006\u0000\u0002\r\u0007\r\b\r\r\u0007\u0000\u0003l\u0000\u0001\u0001\u0001\u0017\r\t\r\n\u0001\u0017\u0000\u0000\f\r\t\u0000*\u0000$ click CHANGE to save the data type.\u0000\u0002\u0000\u0000\u000e\r\n\u0000\u0001\r\u000b\u0011\r\u000b\u0000H\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000C\u0000H\u0000A\u0000N\u0000G\u0000E\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000t\u0000y\u0000p\u0000e\u0000.\u0002\r\b\u0000\u0002\r\f\r\r\r\r\f\u0000\u0002n\u0000\u0001\u0001\u0001\r\u000e\r\u000f\r\r\u000e\u0000\u0003I\u0000\u0000\u0001\u0001\u0016\r\u0010\u0015\u000b\u0016\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r\u0010\u0000\u0002\r\u0011\u0014\r\r\u0011\u0000\u0002n\u0000\u0000\u0001\u0001\r\u0012\r\u0013\r\r\u0012\u0000\u00024\u0000\u0000\u0001\u0001\u0013\r\u0014\n\u0013\u0000\u0004\nbutT\r\r\u0014\u0000\u0001m\u0000\u0000\u0001\u0001\r\u0015\u000e\r\u0015\u0000\u0001\r\u0016\u0011\r\u0016\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\r\u0013\u0000\u0002n\u0000\u0000\u0001\u0001\r\u0017\r\u0018\r\r\u0017\u0000\u00024\u0000\u0000\u0001\u0001\u0012\r\u0019\n\u0012\u0000\u0004\ntabg\r\r\u0019\u0000\u0001m\u0000\u0000\u0001\u0001\u0011\u0003\u0011\u0000\u0001\r\r\u0018\u0000\u00024\u0000\u0000\u0001\u0001\u0010\r\u001a\n\u0010\u0000\u0004\ncwin\r\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u000f\u0003\u000f\u0000\u0001\u0002\u0014\u0000\u0000\u0002\u0015\u0000\u0000\r\r\u000f\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\r\r\u0000\u0002\r\u001b\r\u001c\r\r\u001b\u0000\u0003l\u0000\u0002\u0001\u0001\u000e\r\f\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\r\u001c\u0000\u0002\r\u001d\r\u001e\r\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0001\u000b\r\u001f\n\n\u000b\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\r\u001f\u0000\u0001m\u0000\u0000\u0001\u0001\r \b\r \u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\n\u0000\u0000\u0002\r\u001e\u0000\u0002\r!\r\"\r\r!\u0000\u0003l\u0000\u0002\u0001\u0001\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\r\"\u0000\u0002\r#\r$\r\r#\u0000\u0003l\u0000\u0001\u0001\u0001\u0006\r%\r&\u0001\u0006\u0000\u0000\f\r%\u0000m\u0000g if existing field was NOT ALREADY a calc, will get a warning message. Need to handle that possibility.\u0000\u0002\u0000\u0000\u000e\r&\u0000\u0001\r'\u0011\r'\u0000\u0000 \u0000i\u0000f\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000w\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000a\u0000 \u0000c\u0000a\u0000l\u0000c\u0000,\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000.\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000.\u0002\r$\u0000\u0002\r(\r)\r\r(\u0000\u0004Z\u0000\u0000\u0001\u0002\b\r*\r+\u0005\u0004\r\r*\u0000\u0001H\u0000\u0000\u0001\u0001\r,\r\r,\u0000\u0002C\u0000\u0000\u0001\u0001\r-\r.\r\r-\u0000\u0002n\u0000\u0000\u0001\u0001\r\/\r0\r\r\/\u0000\u00011\u0000\u0000\u0001\u0001\u0003\n\u0003\u0000\u0004\npnam\r\r0\u0000\u00024\u0000\u0000\u0001\u0001\u0002\r1\n\u0002\u0000\u0004\ncwin\r\r1\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0003\u0001\u0000\u0001\r\r.\u0000\u0001m\u0000\u0000\u0001\u0001\r2\u000e\r2\u0000\u0001\r3\u0011\r3\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000F\u0000o\u0000r\r\r+\u0000\u0001k\u0000\u0000\u0001\u0002\u0004\r4\u0002\r4\u0000\u0002\r5\r6\r\r5\u0000\u0003l\u0000\u0001\u0001\u0001\u0000\r7\r8\u0001\u0000\u0000\u0000\f\r7\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\r8\u0000\u0001\r9\u0011\r9\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\r6\u0000\u0002\r:\r;\r\r:\u0000\u0002n\u0000\u0001\u0001\u0001\r<\r=\r\r<\u0000\u0003I\u0000\u0000\u0001\u0001\r>\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r>\u0000\u0002\r?\r\r?\u0000\u0002n\u0000\u0000\u0001\u0001\r@\rA\r\r@\u0000\u00024\u0000\u0000\u0001\u0001\rB\n\u0000\u0004\nbutT\r\rB\u0000\u0001m\u0000\u0000\u0001\u0001\rC\u000e\rC\u0000\u0001\rD\u0011\rD\u0000\u0004\u0000O\u0000K\r\rA\u0000\u00024\u0000\u0000\u0001\u0001\rE\n\u0000\u0004\ncwin\r\rE\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\r=\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\r;\u0000\u0002\rF\rG\r\rF\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\rG\u0000\u0002\rH\rI\r\rH\u0000\u0003I\u0000\u0002\u0001\u0002\u0002\rJ\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\rJ\u0000\u0001m\u0000\u0000\u0001\u0001\rK\b\rK\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\rI\u0000\u0002\rL\r\rL\u0000\u0003l\u0000\u0002\u0002\u0003\u0002\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\r)\u0000\u0002\rM\r\rM\u0000\u0003l\u0000\u0002\u0002\t\u0002\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0000\r\f\u0000\u0003l\u0000\u0003\u0002\r\u0002A\rN\rO\rP\r\rN\u0000\u0001k\u0000\u0000\u0002\r\u0002A\rQ\u0002\rQ\u0000\u0002\rR\rS\r\rR\u0000\u0003l\u0000\u0001\u0002\r\u0002\r\rT\rU\u0001\u0000\u0000\f\rT\u0000\u0016\u0000\u0010 click Options: \u0000\u0002\u0000\u0000\u000e\rU\u0000\u0001\rV\u0011\rV\u0000 \u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\rS\u0000\u0002\rW\rX\r\rW\u0000\u0002n\u0000\u0001\u0002\r\u00021\rY\rZ\r\rY\u0000\u0003I\u0000\u0000\u0002\u000e\u00021\r[\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\r[\u0000\u0002\r\\\r\r\\\u0000\u00026\u0001\u0000\u0002\u000e\u0002-\r]\r^\r\r]\u0000\u0002n\u0000\u0000\u0002\u000e\u0002\u001e\r_\r`\r\r_\u0000\u00024\u0000\u0001\u0002\u0019\u0002\u001e\ra\n\u0000\u0004\nbutT\r\ra\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001d\u0003\u0000\u0001\r\r`\u0000\u0002n\u0000\u0000\u0002\u000e\u0002\u0019\rb\rc\r\rb\u0000\u00024\u0000\u0000\u0002\u0014\u0002\u0019\rd\n\u0000\u0004\ntabg\r\rd\u0000\u0001m\u0000\u0000\u0002\u0017\u0002\u0018\u0003\u0000\u0001\r\rc\u0000\u00024\u0000\u0000\u0002\u000e\u0002\u0014\re\n\u0000\u0004\ncwin\r\re\u0000\u0001m\u0000\u0000\u0002\u0012\u0002\u0013\u0003\u0000\u0001\r\r^\u0000\u0002C\u0000\u0000\u0002!\u0002,\rf\rg\r\rf\u0000\u00011\u0000\u0000\u0002\"\u0002&\n\u0000\u0004\npnam\r\rg\u0000\u0001m\u0000\u0000\u0002'\u0002+\rh\u000e\rh\u0000\u0001\ri\u0011\ri\u0000\u000e\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\rZ\u0000\u0000f\u0000\u0000\u0002\r\u0002\u000e\u0002\rX\u0000\u0002\rj\rk\r\rj\u0000\u0003l\u0000\u0002\u00022\u00022\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\rk\u0000\u0002\rl\rm\r\rl\u0000\u0002n\u0000\u0001\u00022\u0002?\rn\ro\r\rn\u0000\u0003I\u0000\u0000\u00023\u0002?\rp\u000b\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\rp\u0000\u0002\rq\r\rq\u0000\u0001K\u0000\u0000\u00023\u0002;\rr\u0006\rr\u0000\u0003\rs\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\rs\u0000\u0001m\u0000\u0000\u00026\u00029\rt\u000e\rt\u0000\u0001\ru\u0011\ru\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\ro\u0000\u0000f\u0000\u0000\u00022\u00023\u0002\rm\u0000\u0002\rv\r\rv\u0000\u0003l\u0000\u0002\u0002@\u0002@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\rO\u0000B\u0000< ALREADY was a Calculation field, so need to click OPTIONS: \u0000\u0002\u0000\u0000\u000e\rP\u0000\u0001\rw\u0011\rw\u0000x\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000w\u0000a\u0000s\u0000 \u0000a\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0000:\u0000 \u0002\f\u0000\u0002\rx\ry\r\rx\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\ry\u0000\u0002\rz\r{\r\rz\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r{\u0000\u0002\r|\r}\r\r|\u0000\u0003l\u0000\u0002\u0002B\u0002B\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r}\u0000\u0002\r~\r\r\r~\u0000\u0004Z\u0000\u0000\u0002B\u0002t\r\r\r\r\u0000\u0002G\u0000\u0000\u0002B\u0002S\r\r\r\r\u0000\u0002=\u0000\u0003\u0002B\u0002G\r\r\r\r\u0000\u0001o\u0000\u0000\u0002B\u0002C\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\r\u0000\u0001m\u0000\u0000\u0002C\u0002F\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\r\u0000\u0002>\u0001\u0000\u0002J\u0002O\r\r\r\r\u0000\u0002n\u0000\u0000\u0002J\u0002M\r\r\r\r\u0000\u0001o\u0000\u0000\u0002K\u0002M\u000b\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\r\u0000\u0001o\u0000\u0000\u0002J\u0002K\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002M\u0002N\n\u0000\u0004\nnull\r\r\u0000\u0001k\u0000\u0000\u0002V\u0002p\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002V\u0002V\r\r\u0001\u0000\u0000\f\r\u0000\u0018\u0000\u0012 CALCULATION CODE:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000$\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0001\u0002V\u0002p\r\r\r\r\u0000\u0003I\u0000\u0000\u0002W\u0002p\r\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002W\u0002i\r\r\r\r\u0000\u00024\u0000\u0000\u0002d\u0002i\r\n\u0000\u0004\ntxta\r\r\u0000\u0001m\u0000\u0000\u0002g\u0002h\u0003\u0000\u0001\r\r\u0000\u0002n\u0000\u0000\u0002W\u0002d\r\r\r\r\u0000\u00024\u0000\u0000\u0002]\u0002d\r\n\u0000\u0004\nscra\r\r\u0000\u0001m\u0000\u0000\u0002`\u0002c\u0003\u0000\u0004\r\r\u0000\u00024\u0000\u0000\u0002W\u0002]\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002[\u0002\\\u0003\u0000\u0001\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002i\u0002l\r\r\r\r\u0000\u0001o\u0000\u0000\u0002j\u0002l\u000b\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\r\r\u0000\u0001o\u0000\u0000\u0002i\u0002j\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002V\u0002W\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002u\u0002u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002u\u0002u\r\r\u0001\u0000\u0000\f\r\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002u\u0002\r\r\r\r\u0000\u0002>\u0001\u0000\u0002u\u0002z\r\r\r\r\u0000\u0002n\u0000\u0000\u0002u\u0002x\r\r\r\r\u0000\u0001o\u0000\u0000\u0002v\u0002x\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\r\u0000\u0001o\u0000\u0000\u0002u\u0002v\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002x\u0002y\n\u0000\u0004\nnull\r\r\u0000\u0002n\u0000\u0001\u0002}\u0002\r\r\r\r\u0000\u0003I\u0000\u0000\u0002~\u0002\r\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002~\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002~\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\npopB\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002~\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002}\u0002~\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002\u0002\r\r\u0001\u0000\u0000\f\r\u0000\u0018\u0000\u0012 Calc Result TYPE:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000$\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0002>\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\n\u0000\u0004\nnull\r\r\u0000\u0002n\u0000\u0001\u0002\u0002\r\r\r\r\u0000\u0003I\u0000\u0000\u0002\u0002\r\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\r\u0000\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\npopB\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\r\u000e\r\u0000\u0001\r\u0011\r\u0000*\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0002\r\u0000\u0002\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0002\u0002\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0002\u0002\r\r\u0001\u0000\u0000\f\r\u00009\u00003 Do Not Evaluate if all referenced field are empty:\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000f\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000a\u0000r\u0000e\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000:\u0002\r\u0000\u0002\r\r\r\r\u0000\u0004Z\u0000\u0000\u0002\u0003\u0014\r\r\r\r\u0000\u0002>\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\r\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\n\u0000\u0004\nnull\r\r\u0000\u0001k\u0000\u0000\u0002\u0003\u0010\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00026\u0001\u0000\u0002\u0002\r\r\r\r\u0000\u0002n\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00024\u0000\u0001\u0002\u0002\r\n\u0000\u0004\nchbx\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u00024\u0000\u0000\u0002\u0002\r\n\u0000\u0004\ncwin\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\r\u0000\u0002E\u0000\u0000\u0002\u0002\r\r\r\r\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\npnam\r\r\u0000\u0001m\u0000\u0000\u0002\u0002\u000e\u0000\u000e\u000e\u0000\u0000\u0001\u000e\u0001\u0011\u000e\u0001\u0000J\u0000n\u0000o\u0000t\u0000 \u0000e\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000s\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\r\u0000\u0002\u000e\u0002\r\u000e\u0002\u0000\u0004Z\u0000\u0000\u0002\u0003\u0010\u000e\u0003\u000e\u0004\u000e\u0005\r\u000e\u0003\u0000\u0002n\u0000\u0000\u0002\u0002\u000e\u0006\u000e\u0007\r\u000e\u0006\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u000e\u0007\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0004\u0000\u0002n\u0000\u0001\u0002\u0003\u0006\u000e\b\u000e\t\r\u000e\b\u0000\u0003I\u0000\u0000\u0003\u0000\u0003\u0006\u000e\n\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\n\u0000\u0002\u000e\u000b\u000e\f\r\u000e\u000b\u0000\u0001o\u0000\u0000\u0003\u0000\u0003\u0001~\u000b~\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u000e\f\u0000\u0002\u000e\r}\r\u000e\r\u0000\u0001m\u0000\u0000\u0003\u0001\u0003\u0002|\u0003|\u0000\u0000\u0002}\u0000\u0000\u0002\u0000\u0000\r\u000e\t\u0000\u0000f\u0000\u0000\u0002\u0003\u0000\u0002\u0000\u0000\r\u000e\u0005\u0000\u0002n\u0000\u0001\u0003\t\u0003\u0010\u000e\u000e\u000e\u000f\r\u000e\u000e\u0000\u0003I\u0000\u0000\u0003\n\u0003\u0010{\u000e\u0010z\u000b{\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\u0010\u0000\u0002\u000e\u0011\u000e\u0012\r\u000e\u0011\u0000\u0001o\u0000\u0000\u0003\n\u0003\u000by\u000by\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u000e\u0012\u0000\u0002\u000e\u0013x\r\u000e\u0013\u0000\u0001m\u0000\u0000\u0003\u000b\u0003\fw\u0003w\u0000\u0001\u0002x\u0000\u0000\u0002z\u0000\u0000\r\u000e\u000f\u0000\u0000f\u0000\u0000\u0003\t\u0003\n\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\u000e\u0014\u000e\u0015\r\u000e\u0014\u0000\u0003l\u0000\u0002\u0003\u0015\u0003\u0015vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u000e\u0015\u0000\u0002\u000e\u0016\u000e\u0017\r\u000e\u0016\u0000\u0003l\u0000\u0001\u0003\u0015\u0003\u0015s\u000e\u0018\u000e\u0019\u0001s\u0000\u0000\f\u000e\u0018\u0000\u0014\u0000\u000e Repetitions: \u0000\u0002\u0000\u0000\u000e\u000e\u0019\u0000\u0001\u000e\u001a\u0011\u000e\u001a\u0000\u001c\u0000 \u0000R\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000e\u0017\u0000\u0002\u000e\u001b\u000e\u001c\r\u000e\u001b\u0000\u0004Z\u0000\u0000\u0003\u0015\u0003S\u000e\u001d\u000e\u001erq\r\u000e\u001d\u0000\u0002G\u0000\u0000\u0003\u0015\u0003(\u000e\u001f\u000e \r\u000e\u001f\u0000\u0002=\u0000\u0003\u0003\u0015\u0003\u001a\u000e!\u000e\"\r\u000e!\u0000\u0001o\u0000\u0000\u0003\u0015\u0003\u0016p\u000bp\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000e\"\u0000\u0001m\u0000\u0000\u0003\u0016\u0003\u0019\u000e#\u000e\u000e#\u0000\u0001\u000e$\u0011\u000e$\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u000e \u0000\u0002>\u0001\u0000\u0003\u001d\u0003$\u000e%\u000e&\r\u000e%\u0000\u0002n\u0000\u0000\u0003\u001d\u0003\"\u000e'\u000e(\r\u000e'\u0000\u0001o\u0000\u0000\u0003\u001e\u0003\"o\u000bo\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000e(\u0000\u0001o\u0000\u0000\u0003\u001d\u0003\u001en\u000bn\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e&\u0000\u0001m\u0000\u0000\u0003\"\u0003#m\nm\u0000\u0004\nnull\r\u000e\u001e\u0000\u0002n\u0000\u0001\u0003+\u0003O\u000e)\u000e*\r\u000e)\u0000\u0003I\u0000\u0000\u0003,\u0003Ol\u000e+k\u000bl\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u000e+\u0000\u0002\u000e,\u000e-\r\u000e,\u0000\u00026\u0001\u0000\u0003,\u0003F\u000e.\u000e\/\r\u000e.\u0000\u0002n\u0000\u0000\u0003,\u00037\u000e0\u000e1\r\u000e0\u0000\u00024\u0000\u0001\u00032\u00037j\u000e2\nj\u0000\u0004\ntxtf\r\u000e2\u0000\u0001m\u0000\u0000\u00035\u00036i\u0003i\u0000\u0001\r\u000e1\u0000\u00024\u0000\u0000\u0003,\u00032h\u000e3\nh\u0000\u0004\ncwin\r\u000e3\u0000\u0001m\u0000\u0000\u00030\u00031g\u0003g\u0000\u0001\r\u000e\/\u0000\u0002E\u0000\u0000\u0003:\u0003E\u000e4\u000e5\r\u000e4\u0000\u00011\u0000\u0000\u0003;\u0003?f\nf\u0000\u0004\npnam\r\u000e5\u0000\u0001m\u0000\u0000\u0003@\u0003D\u000e6\u000e\u000e6\u0000\u0001\u000e7\u0011\u000e7\u0000\u0016\u0000r\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u000e-\u0000\u0002\u000e8e\r\u000e8\u0000\u0002n\u0000\u0000\u0003F\u0003K\u000e9\u000e:\r\u000e9\u0000\u0001o\u0000\u0000\u0003G\u0003Kd\u000bd\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u000e:\u0000\u0001o\u0000\u0000\u0003F\u0003Gc\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002e\u0000\u0000\u0002k\u0000\u0000\r\u000e*\u0000\u0000f\u0000\u0000\u0003+\u0003,\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u000e\u001c\u0000\u0002\u000e;\u000e<\r\u000e;\u0000\u0003l\u0000\u0002\u0003T\u0003Tba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u000e<\u0000\u0002\u000e=\u000e>\r\u000e=\u0000\u0003l\u0000\u0002\u0003T\u0003T_^]\u0001_\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\u0002\u000e>\u0000\u0002\u000e?\u000e@\r\u000e?\u0000\u0003l\u0000\u0002\u0003T\u0003T\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\u000e@\u0000\u0002\u000eA\u000eB\r\u000eA\u0000\u0004Z\u0000\u0000\u0003T\u0005\u000eC\u000eDYX\r\u000eC\u0000\u0002G\u0000\u0000\u0003T\u0003\u000eE\u000eF\r\u000eE\u0000\u0002G\u0000\u0000\u0003T\u0003\u000eG\u000eH\r\u000eG\u0000\u0002G\u0000\u0000\u0003T\u0003q\u000eI\u000eJ\r\u000eI\u0000\u0002G\u0000\u0000\u0003T\u0003e\u000eK\u000eL\r\u000eK\u0000\u0002=\u0000\u0003\u0003T\u0003Y\u000eM\u000eN\r\u000eM\u0000\u0001o\u0000\u0000\u0003T\u0003UW\u000bW\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000eN\u0000\u0003l\u0000\t\u0003U\u0003X\u000eOVU\r\u000eO\u0000\u0001m\u0000\u0000\u0003U\u0003X\u000eP\u000e\u000eP\u0000\u0001\u000eQ\u0011\u000eQ\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0001V\u0000\u0000\u0001U\u0000\u0000\r\u000eL\u0000\u0002>\u0001\u0000\u0003\\\u0003a\u000eR\u000eS\r\u000eR\u0000\u0002n\u0000\u0000\u0003\\\u0003_\u000eT\u000eU\r\u000eT\u0000\u0001o\u0000\u0000\u0003]\u0003_T\u000bT\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000eU\u0000\u0001o\u0000\u0000\u0003\\\u0003]S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eS\u0000\u0003l\u0000\n\u0003_\u0003`\u000eVRQ\r\u000eV\u0000\u0001m\u0000\u0000\u0003_\u0003`P\nP\u0000\u0004\nnull\u0001R\u0000\u0000\u0001Q\u0000\u0000\r\u000eJ\u0000\u0002>\u0001\u0000\u0003h\u0003m\u000eW\u000eX\r\u000eW\u0000\u0002n\u0000\u0000\u0003h\u0003k\u000eY\u000eZ\r\u000eY\u0000\u0001o\u0000\u0000\u0003i\u0003kO\u000bO\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000eZ\u0000\u0001o\u0000\u0000\u0003h\u0003iN\u000bN\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eX\u0000\u0003l\u0000\n\u0003k\u0003l\u000e[ML\r\u000e[\u0000\u0001m\u0000\u0000\u0003k\u0003lK\nK\u0000\u0004\nnull\u0001M\u0000\u0000\u0001L\u0000\u0000\r\u000eH\u0000\u0002>\u0001\u0000\u0003t\u0003{\u000e\\\u000e]\r\u000e\\\u0000\u0002n\u0000\u0000\u0003t\u0003y\u000e^\u000e_\r\u000e^\u0000\u0001o\u0000\u0000\u0003u\u0003yJ\u000bJ\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000e_\u0000\u0001o\u0000\u0000\u0003t\u0003uI\u000bI\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e]\u0000\u0003l\u0000\n\u0003y\u0003z\u000e`HG\r\u000e`\u0000\u0001m\u0000\u0000\u0003y\u0003zF\nF\u0000\u0004\nnull\u0001H\u0000\u0000\u0001G\u0000\u0000\r\u000eF\u0000\u0002>\u0001\u0000\u0003\u0003\u000ea\u000eb\r\u000ea\u0000\u0002n\u0000\u0000\u0003\u0003\u000ec\u000ed\r\u000ec\u0000\u0001o\u0000\u0000\u0003\u0003E\u000bE\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000ed\u0000\u0001o\u0000\u0000\u0003\u0003D\u000bD\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000eb\u0000\u0003l\u0000\n\u0003\u0003\u000eeCB\r\u000ee\u0000\u0001m\u0000\u0000\u0003\u0003A\nA\u0000\u0004\nnull\u0001C\u0000\u0000\u0001B\u0000\u0000\r\u000eD\u0000\u0001k\u0000\u0000\u0003\u0005\u000ef\u0002\u000ef\u0000\u0002\u000eg\u000eh\r\u000eg\u0000\u0003l\u0000\u0001\u0003\u0003@\u000ei\u000ej\u0001@\u0000\u0000\f\u000ei\u0000\u001d\u0000\u0017 BEGIN: STORAGE OPTIONS\u0000\u0002\u0000\u0000\u000e\u000ej\u0000\u0001\u000ek\u0011\u000ek\u0000.\u0000 \u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0002\u000eh\u0000\u0002\u000el\u000em\r\u000el\u0000\u0003l\u0000\u0002\u0003\u0003?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u000em\u0000\u0002\u000en\u000eo\r\u000en\u0000\u0003l\u0000\u0001\u0003\u0003<\u000ep\u000eq\u0001<\u0000\u0000\f\u000ep\u0000\u001e\u0000\u0018 click Storage Options: \u0000\u0002\u0000\u0000\u000e\u000eq\u0000\u0001\u000er\u0011\u000er\u00000\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000eo\u0000\u0002\u000es\u000et\r\u000es\u0000\u0002n\u0000\u0001\u0003\u0003\u000eu\u000ev\r\u000eu\u0000\u0003I\u0000\u0000\u0003\u0003;\u000ew:\u000b;\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000ew\u0000\u0002\u000ex9\r\u000ex\u0000\u00026\u0001\u0000\u0003\u0003\u000ey\u000ez\r\u000ey\u0000\u0002n\u0000\u0000\u0003\u0003\u000e{\u000e|\r\u000e{\u0000\u00024\u0000\u0001\u0003\u00038\u000e}\n8\u0000\u0004\nbutT\r\u000e}\u0000\u0001m\u0000\u0000\u0003\u00037\u00037\u0000\u0001\r\u000e|\u0000\u00024\u0000\u0000\u0003\u00036\u000e~\n6\u0000\u0004\ncwin\r\u000e~\u0000\u0001m\u0000\u0000\u0003\u00035\u00035\u0000\u0001\r\u000ez\u0000\u0002E\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u00034\n4\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u001e\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u00029\u0000\u0000\u0002:\u0000\u0000\r\u000ev\u0000\u0000f\u0000\u0000\u0003\u0003\u0002\u000et\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0003\u0003\u000e\u000e\r\u000e\u0000\u0003I\u0000\u0000\u0003\u00033\u000e2\u000b3\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000e\u0000\u0002\u000e1\r\u000e\u0000\u0001K\u0000\u0000\u0003\u0003\u000e\u0006\u000e\u0000\u00030\u000e\u000e\u000b0\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000&\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u000e\u0000\u0003\/\u000e\u000e\u000b\/\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u000e\u0000\u0003.\u000e-\u000b.\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006-\u0000\u0000\u00021\u0000\u0000\u00022\u0000\u0000\r\u000e\u0000\u0000f\u0000\u0000\u0003\u0003\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0003\u0003&\u000e\n&\u0000\u0004\ncwin\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003%\u0003%\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0003\u0003#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00026\u0001\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0001\u0003\u0003 \u000e\n \u0000\u0004\nchbx\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u001f\u0003\u001f\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0003\u0003\u001e\u000b\u001e\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000e\u0000\u0002E\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u0003\u001d\n\u001d\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u001c\u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0003\u0004\u0004\u000e\u000e\r\u000e\u0000\u00026\u0001\u0000\u0003\u0004\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0003\u0003\u000e\u000e\r\u000e\u0000\u00024\u0000\u0001\u0003\u0003\u001b\u000e\n\u001b\u0000\u0004\nchbx\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0003\u001a\u0003\u001a\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0003\u0003\u0019\u000b\u0019\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000e\u0000\u0002E\u0000\u0000\u0003\u0004\u0001\u000e\u000e\r\u000e\u0000\u00011\u0000\u0000\u0003\u0003\u0018\n\u0018\u0000\u0004\npnam\r\u000e\u0000\u0001m\u0000\u0000\u0003\u0004\u0000\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0018\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000o\u0000r\u0000e\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004\u0005\u0004\u0005\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0000\u0004\u0005\u0004B\u000e\u000e\u0013\u0012\r\u000e\u0000\u0002=\u0000\u0003\u0004\u0005\u0004\n\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004\u0005\u0004\u0006\u0011\u000b\u0011\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0006\u0004\t\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u000e\u0000\u0001k\u0000\u0000\u0004\r\u0004>\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0001\u0004\r\u0004\r\u0010\u000e\u000e\u0001\u0010\u0000\u0000\f\u000e\u0000F\u0000@ These two CANNOT BE NULL if you are making this field CONFORM. \u0000\u0002\u0000\u0000\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0000 \u0000T\u0000h\u0000e\u0000s\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000C\u0000A\u0000N\u0000N\u0000O\u0000T\u0000 \u0000B\u0000E\u0000 \u0000N\u0000U\u0000L\u0000L\u0000 \u0000i\u0000f\u0000 \u0000y\u0000o\u0000u\u0000 \u0000a\u0000r\u0000e\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0000.\u0000 \u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0001\u0004\r\u0004%\u000e\u000e\u000f\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0004\r\u0004\u0012\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004\r\u0004\u0010\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004\u000e\u0004\u0010\r\u000b\r\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000e\u0000\u0001o\u0000\u0000\u0004\r\u0004\u000e\f\u000b\f\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0010\u0004\u0011\u000b\n\u000b\u0000\u0004\nnull\r\u000e\u0000\u0003R\u0000\u0000\u0004\u0015\u0004!\n\u000e\u000e\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000e\u0000\u0001m\u0000\u0000\u0004\u001d\u0004 \u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000@\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u000e\u0000\u0003\t\u000e\b\n\t\u0000\u0004\nerrn\r\u000e\u0000\u0001m\u0000\u0000\u0004\u0019\u0004\u001c\u0007\u0003\u0007\u0004\u0000\u0006\b\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u0006\r\u000e\u0000\u0004Z\u0000\u0001\u0004&\u0004>\u000e\u000e\u0005\u0004\r\u000e\u0000\u0002=\u0000\u0003\u0004&\u0004+\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004&\u0004)\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004'\u0004)\u0003\u000b\u0003\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000e\u0000\u0001o\u0000\u0000\u0004&\u0004'\u0002\u000b\u0002\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0004)\u0004*\u0001\n\u0001\u0000\u0004\nnull\r\u000e\u0000\u0003R\u0000\u0000\u0004.\u0004:\u0000\u000e\u000e\n\u0000\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u000e\u0000\u0001m\u0000\u0000\u00046\u00049\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000T\u0000s\u0000t\u0000o\u0000r\u0000e\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u000e\u0000\u0003\u000e\n\u0000\u0004\nerrn\r\u000e\u0000\u0001m\u0000\u0000\u00042\u00045\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004C\u0004C\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0004Z\u0000\u0000\u0004C\u0004\u000e\u000e\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004C\u0004G\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004D\u0004F\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u000e\u0000\u0001o\u0000\u0000\u0004C\u0004D\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000e\u0000\u0001k\u0000\u0000\u0004J\u0004S\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0004J\u0004Q\u000e\u000e\r\u000e\u0000\u0003I\u0000\u0000\u0004K\u0004Q\u000e\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004K\u0004L\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0001m\u0000\u0000\u0004L\u0004M\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000e\u0000\u0000f\u0000\u0000\u0004J\u0004K\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0003l\u0000\u0002\u0004R\u0004R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0001H\u0000\u0000\u0004V\u0004Z\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0004V\u0004Y\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0004W\u0004Y\u000b\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\r\u000e\u0000\u0001o\u0000\u0000\u0004V\u0004W\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000e\u0000\u0002\u000e\r\u000e\u0000\u0001k\u0000\u0000\u0004]\u0004f\u000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0001\u0004]\u0004d\u000f\u0000\u000f\u0001\r\u000f\u0000\u0000\u0003I\u0000\u0000\u0004^\u0004d\u000f\u0002\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0002\u0000\u0002\u000f\u0003\u000f\u0004\r\u000f\u0003\u0000\u0001o\u0000\u0000\u0004^\u0004_\u000b\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000f\u0004\u0000\u0002\u000f\u0005\r\u000f\u0005\u0000\u0001m\u0000\u0000\u0004_\u0004`\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0001\u0000\u0000f\u0000\u0000\u0004]\u0004^\u0002\u000e\u0000\u0002\u000f\u0006\r\u000f\u0006\u0000\u0003l\u0000\u0002\u0004e\u0004e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0003\u0004i\u0004\u000f\u0007\u000f\b\u000f\t\r\u000f\u0007\u0000\u0001k\u0000\u0000\u0004i\u0004\u000f\n\u0002\u000f\n\u0000\u0002\u000f\u000b\u000f\f\r\u000f\u000b\u0000\u0002n\u0000\u0001\u0004i\u0004p\u000f\r\u000f\u000e\r\u000f\r\u0000\u0003I\u0000\u0000\u0004j\u0004p\u000f\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u000f\u0000\u0002\u000f\u0010\u000f\u0011\r\u000f\u0010\u0000\u0001o\u0000\u0000\u0004j\u0004k\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u000f\u0011\u0000\u0002\u000f\u0012\r\u000f\u0012\u0000\u0001m\u0000\u0000\u0004k\u0004l\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u000e\u0000\u0000f\u0000\u0000\u0004i\u0004j\u0002\u000f\f\u0000\u0002\u000f\u0013\u000f\u0014\r\u000f\u0013\u0000\u0002n\u0000\u0001\u0004q\u0004x\u000f\u0015\u000f\u0016\r\u000f\u0015\u0000\u0003I\u0000\u0000\u0004r\u0004x\u000f\u0017\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0017\u0000\u0002\u000f\u0018\u000f\u0019\r\u000f\u0018\u0000\u0001o\u0000\u0000\u0004r\u0004s\u000b\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u0002\u000f\u0019\u0000\u0002\u000f\u001a\r\u000f\u001a\u0000\u0001m\u0000\u0000\u0004s\u0004t\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0016\u0000\u0000f\u0000\u0000\u0004q\u0004r\u0002\u000f\u0014\u0000\u0002\u000f\u001b\u000f\u001c\r\u000f\u001b\u0000\u0003l\u0000\u0002\u0004y\u0004y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u001c\u0000\u0002\u000f\u001d\u000f\u001e\r\u000f\u001d\u0000\u0003l\u0000\u0001\u0004y\u0004y\u000f\u001f\u000f \u0001\u0000\u0000\f\u000f\u001f\u0000;\u00005 Then see which one of the Indexing choices is needed\u0000\u0002\u0000\u0000\u000e\u000f \u0000\u0001\u000f!\u0011\u000f!\u0000j\u0000 \u0000T\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000o\u0000i\u0000c\u0000e\u0000s\u0000 \u0000i\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u000f\u001e\u0000\u0002\u000f\"\r\u000f\"\u0000\u0004Z\u0000\u0000\u0004y\u0004\u000f#\u000f$\u000f%\r\u000f#\u0000\u0002=\u0000\u0003\u0004y\u0004\u000f&\u000f'\r\u000f&\u0000\u0002n\u0000\u0000\u0004y\u0004~\u000f(\u000f)\r\u000f(\u0000\u0001o\u0000\u0000\u0004z\u0004~\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000f)\u0000\u0001o\u0000\u0000\u0004y\u0004z\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f'\u0000\u0001m\u0000\u0000\u0004~\u0004\u000f*\u000e\u000f*\u0000\u0001\u000f+\u0011\u000f+\u0000\b\u0000N\u0000o\u0000n\u0000e\r\u000f$\u0000\u0001k\u0000\u0000\u0004\u0004\u000f,\u0002\u000f,\u0000\u0002\u000f-\u000f.\r\u000f-\u0000\u0002n\u0000\u0001\u0004\u0004\u000f\/\u000f0\r\u000f\/\u0000\u0003I\u0000\u0000\u0004\u0004\u000f1\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f1\u0000\u0002\u000f2\u000f3\r\u000f2\u0000\u0002n\u0000\u0000\u0004\u0004\u000f4\u000f5\r\u000f4\u0000\u00024\u0000\u0000\u0004\u0004\u000f6\n\u0000\u0004\nchbx\r\u000f6\u0000\u0001m\u0000\u0000\u0004\u0004\u000f7\u000e\u000f7\u0000\u0001\u000f8\u0011\u000f8\u0000\u0016\u0000N\u0000o\u0000n\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00003\r\u000f5\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000f3\u0000\u0002\u000f9\r\u000f9\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f0\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000f.\u0000\u0002\u000f:\r\u000f:\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000f%\u0000\u0002\u000f;\u000f<\r\u000f;\u0000\u0002=\u0000\u0003\u0004\u0004\u000f=\u000f>\r\u000f=\u0000\u0002n\u0000\u0000\u0004\u0004\u000f?\u000f@\r\u000f?\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000f@\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f>\u0000\u0001m\u0000\u0000\u0004\u0004\u000fA\u000e\u000fA\u0000\u0001\u000fB\u0011\u000fB\u0000\u000e\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0002\u000f<\u0000\u0002\u000fC\u000fD\r\u000fC\u0000\u0001k\u0000\u0000\u0004\u0004\u000fE\u0002\u000fE\u0000\u0002\u000fF\u000fG\r\u000fF\u0000\u0002n\u0000\u0001\u0004\u0004\u000fH\u000fI\r\u000fH\u0000\u0003I\u0000\u0000\u0004\u0004\u000fJ\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000fJ\u0000\u0002\u000fK\u000fL\r\u000fK\u0000\u0002n\u0000\u0000\u0004\u0004\u000fM\u000fN\r\u000fM\u0000\u00024\u0000\u0000\u0004\u0004\u000fO\n\u0000\u0004\nchbx\r\u000fO\u0000\u0001m\u0000\u0000\u0004\u0004\u000fP\u000e\u000fP\u0000\u0001\u000fQ\u0011\u000fQ\u0000\u001c\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00003\r\u000fN\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000fL\u0000\u0002\u000fR\r\u000fR\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fI\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000fG\u0000\u0002\u000fS\r\u000fS\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u000fD\u0000\u0002\u000fT\u000fU\r\u000fT\u0000\u0002=\u0000\u0003\u0004\u0004\u000fV\u000fW\r\u000fV\u0000\u0002n\u0000\u0000\u0004\u0004\u000fX\u000fY\r\u000fX\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u000fY\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000fW\u0000\u0001m\u0000\u0000\u0004\u0004\u000fZ\u000e\u000fZ\u0000\u0001\u000f[\u0011\u000f[\u0000\u0006\u0000A\u0000l\u0000l\u0002\u000fU\u0000\u0002\u000f\\\r\u000f\\\u0000\u0001k\u0000\u0000\u0004\u0004\u000f]\u0002\u000f]\u0000\u0002\u000f^\u000f_\r\u000f^\u0000\u0002n\u0000\u0001\u0004\u0004\u000f`\u000fa\r\u000f`\u0000\u0003I\u0000\u0000\u0004\u0004\u000fb\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000fb\u0000\u0002\u000fc\u000fd\r\u000fc\u0000\u0002n\u0000\u0000\u0004\u0004\u000fe\u000ff\r\u000fe\u0000\u00024\u0000\u0000\u0004\u0004\u000fg\n\u0000\u0004\nchbx\r\u000fg\u0000\u0001m\u0000\u0000\u0004\u0004\u000fh\u000e\u000fh\u0000\u0001\u000fi\u0011\u000fi\u0000\u0014\u0000A\u0000l\u0000l\u0000 \u00003\u0000 \u0000o\u0000f\u0000 \u00003\r\u000ff\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u000fd\u0000\u0002\u000fj\r\u000fj\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fa\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u000f_\u0000\u0002\u000fk\r\u000fk\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u000f\b\u00002\u0000, NOT EITHER OF THOSE, SO UNCHECK THEM FIRST:\u0000\u0002\u0000\u0000\u000e\u000f\t\u0000\u0001\u000fl\u0011\u000fl\u0000X\u0000 \u0000N\u0000O\u0000T\u0000 \u0000E\u0000I\u0000T\u0000H\u0000E\u0000R\u0000 \u0000O\u0000F\u0000 \u0000T\u0000H\u0000O\u0000S\u0000E\u0000,\u0000 \u0000S\u0000O\u0000 \u0000U\u0000N\u0000C\u0000H\u0000E\u0000C\u0000K\u0000 \u0000T\u0000H\u0000E\u0000M\u0000 \u0000F\u0000I\u0000R\u0000S\u0000T\u0000:\u0002\u000e\u0000\u0002\u000fm\u000fn\r\u000fm\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000fn\u0000\u0002\u000fo\u000fp\r\u000fo\u0000\u0004Z\u0000\u0000\u0004\u0005\u0005\u000fq\u000fr\r\u000fq\u0000\u0002>\u0001\u0000\u0004\u0004\u000fs\u000ft\r\u000fs\u0000\u0002n\u0000\u0000\u0004\u0004\u000fu\u000fv\r\u000fu\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000fv\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000ft\u0000\u0001m\u0000\u0000\u0004\u0004\n\u0000\u0004\nnull\r\u000fr\u0000\u0002n\u0000\u0001\u0004\u0005\u0001\u000fw\u000fx\r\u000fw\u0000\u0003I\u0000\u0000\u0004\u0005\u0001\u000fy\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u000fy\u0000\u0002\u000fz\u000f{\r\u000fz\u0000\u00026\u0001\u0000\u0004\u0004\u000f|\u000f}\r\u000f|\u0000\u0002n\u0000\u0000\u0004\u0004\u000f~\u000f\r\u000f~\u0000\u00024\u0000\u0001\u0004\u0004\u000f\n\u0000\u0004\npopB\r\u000f\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f}\u0000\u0002E\u0000\u0000\u0004\u0004\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0004\u0004\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000l\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0002\u000f{\u0000\u0002\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0004\u0004\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u000f\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000fx\u0000\u0000f\u0000\u0000\u0004\u0004\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000fp\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0006\u0005\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0004Z\u0000\u0000\u0005\u0006\u0005H\u000f\u000f\r\u000f\u0000\u0002>\u0001\u0000\u0005\u0006\u0005\r\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0006\u0005\u000b\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0007\u0005\u000b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0006\u0005\u0007\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f\u0000\u0001m\u0000\u0000\u0005\u000b\u0005\f\n\u0000\u0004\nnull\r\u000f\u0000\u0001k\u0000\u0000\u0005\u0010\u0005D\u000f\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0005\u0010\u0005'\u000f\u000f\r\u000f\u0000\u00026\u0001\u0000\u0005\u0010\u0005%\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0010\u0005\u0016\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005\u0011\u0005\u0016\u000f\n\u0000\u0004\nchbx\r\u000f\u0000\u0001m\u0000\u0000\u0005\u0014\u0005\u0015\u0003\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0010\u0005\u0011\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005\u0019\u0005$\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0005\u001a\u0005\u001e\n\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0005\u001f\u0005#\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\u001c\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0004Z\u0000\u0000\u0005(\u0005B\u000f\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005(\u0005.\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005)\u0005-\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u000f\u0000\u0001o\u0000\u0000\u0005(\u0005)\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u000f\u0000\u0002n\u0000\u0001\u00051\u00058\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u00052\u00058\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u00052\u00053\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0001m\u0000\u0000\u00053\u00054\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u00051\u00052\u0002\u0000\u0000\r\u000f\u0000\u0002n\u0000\u0001\u0005;\u0005B\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005<\u0005B\u000f\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0005<\u0005=\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0001m\u0000\u0000\u0005=\u0005>\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005;\u0005<\u0002\u000f\u0000\u0002\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005C\u0005C\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005I\u0005I~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005I\u0005I{\u000f\u000f\u0001{\u0000\u0000\f\u000f\u0000%\u0000\u001f click OK for Storage Options: \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000>\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005I\u0005c\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005J\u0005cz\u000fy\u000bz\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000f\u0000\u0002\u000fx\r\u000f\u0000\u00026\u0001\u0000\u0005J\u0005_\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005J\u0005P\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005K\u0005Pw\u000f\nw\u0000\u0004\nbutT\r\u000f\u0000\u0001m\u0000\u0000\u0005N\u0005Ov\u0003v\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005J\u0005Ku\u000bu\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005S\u0005^\u000f\u000f\r\u000f\u0000\u00011\u0000\u0000\u0005T\u0005Xt\nt\u0000\u0004\npnam\r\u000f\u0000\u0001m\u0000\u0000\u0005Y\u0005]\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\u0004\u0000O\u0000K\u0002x\u0000\u0000\u0002y\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005I\u0005J\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005d\u0005dsrq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005d\u0005\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005e\u0005p\u000fo\u000bp\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u000f\u0000\u0002\u000fn\r\u000f\u0000\u0001K\u0000\u0000\u0005e\u0005{\u000f\u0006\u000f\u0000\u0003m\u000f\u000f\u000bm\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u000f\u0000\u0001m\u0000\u0000\u0005h\u0005k\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000&\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u000f\u0000\u0003l\u000f\u000f\u000bl\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u000f\u0000\u0001m\u0000\u0000\u0005n\u0005q\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u000f\u0000\u0003k\u000fj\u000bk\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u000f\u0000\u0001m\u0000\u0000\u0005t\u0005w\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006j\u0000\u0000\u0002n\u0000\u0000\u0002o\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005d\u0005e\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u000f\u0000\u0002\u000ff\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005e\u000f\u000f\u0001e\u0000\u0000\f\u000f\u0000\u001e\u0000\u0018 END OF: STORAGE OPTIONS\u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u00000\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0002f\u0000\u0000\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002\u000eB\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005\u000f\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0005\u0005a\u000f\na\u0000\u0004\ncwin\r\u000f\u0000\u0001m\u0000\u0000\u0005\u0005`\u0003`\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\f\u000f\u0000+\u0000% need reference to NEW first window. \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000J\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000t\u0000o\u0000 \u0000N\u0000E\u0000W\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0005\u0005^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0005\u0005[\u000f\u000f\u0001[\u0000\u0000\f\u000f\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0005\u0005\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0005\u0005Z\u000fY\u000bZ\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u000f\u0000\u0002\u000fX\r\u000f\u0000\u00026\u0001\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0005\u0005\u000f\u000f\r\u000f\u0000\u00024\u0000\u0001\u0005\u0005W\u0010\u0000\nW\u0000\u0004\nbutT\r\u0010\u0000\u0000\u0001m\u0000\u0000\u0005\u0005V\u0003V\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u0005\u0005U\u000bU\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u000f\u0000\u0002E\u0000\u0000\u0005\u0005\u0010\u0001\u0010\u0002\r\u0010\u0001\u0000\u00011\u0000\u0000\u0005\u0005T\nT\u0000\u0004\npnam\r\u0010\u0002\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0003\u000e\u0010\u0003\u0000\u0001\u0010\u0004\u0011\u0010\u0004\u0000\u0004\u0000O\u0000K\u0002X\u0000\u0000\u0002Y\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0005\u0005\u0002\u000f\u0000\u0002\u0010\u0005\u0010\u0006\r\u0010\u0005\u0000\u0003l\u0000\u0002\u0005\u0005SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0010\u0006\u0000\u0002\u0010\u0007\u0010\b\r\u0010\u0007\u0000\u0002n\u0000\u0001\u0005\u0005\u0010\t\u0010\n\r\u0010\t\u0000\u0003I\u0000\u0000\u0005\u0005P\u0010\u000bO\u000bP\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0010\u000b\u0000\u0002\u0010\fN\r\u0010\f\u0000\u0001K\u0000\u0000\u0005\u0005\u0010\r\u0006\u0010\r\u0000\u0003M\u0010\u000e\u0010\u000f\u000bM\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0010\u000e\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0010\u000e\u0010\u0010\u0000\u0001\u0010\u0011\u0011\u0010\u0011\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0010\u000f\u0000\u0003L\u0010\u0012\u0010\u0013\u000bL\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0010\u0012\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0014\u000e\u0010\u0014\u0000\u0001\u0010\u0015\u0011\u0010\u0015\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0010\u0013\u0000\u0003K\u0010\u0016J\u000bK\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0010\u0016\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u0017\u000e\u0010\u0017\u0000\u0001\u0010\u0018\u0011\u0010\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006J\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u0010\n\u0000\u0000f\u0000\u0000\u0005\u0005\u0002\u0010\b\u0000\u0002\u0010\u0019\u0010\u001a\r\u0010\u0019\u0000\u0003l\u0000\u0002\u0005\u0005IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0010\u001a\u0000\u0002\u0010\u001b\u0010\u001c\r\u0010\u001b\u0000\u0001L\u0000\u0000\u0005\u0005\u0010\u001d\r\u0010\u001d\u0000\u0001m\u0000\u0000\u0005\u0005F\nF\u0000\b\u000bboovtrue\u0002\u0010\u001c\u0000\u0002\u0010\u001e\u0010\u001f\r\u0010\u001e\u0000\u0003l\u0000\u0002\u0005\u0005EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0010\u001f\u0000\u0002\u0010 \u0010!\r\u0010 \u0000\u0003l\u0000\u0002\u0005\u0005BA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0010!\u0000\u0002\u0010\"?\r\u0010\"\u0000\u0003l\u0000\u0002\u0005\u0005>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u0002\f\u0000\u0002\u0010#\u0010$\r\u0010#\u0000\u0002=\u0000\u0003\u0005\u0005\u0010%\u0010&\r\u0010%\u0000\u0002n\u0000\u0000\u0005\u0005\u0010'\u0010(\r\u0010'\u0000\u0001o\u0000\u0000\u0005\u0005;\u000b;\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u0010(\u0000\u0001o\u0000\u0000\u0005\u0005:\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010&\u0000\u0001m\u0000\u0000\u0005\u0005\u0010)\u000e\u0010)\u0000\u0001\u0010*\u0011\u0010*\u0000\u000e\u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\u0010$\u0000\u0002\u0010+\u0010,\r\u0010+\u0000\u0001k\u0000\u0000\u0005\u0005\u0010-\u0002\u0010-\u0000\u0002\u0010.\u0010\/\r\u0010.\u0000\u0003l\u0000\u0002\u0005\u0005987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0010\/\u0000\u0002\u00100\u00101\r\u00100\u0000\u0003l\u0000\u0001\u0005\u00056\u00102\u00103\u00016\u0000\u0000\f\u00102\u0000\u0012\u0000\f IF SUMMARY:\u0000\u0002\u0000\u0000\u000e\u00103\u0000\u0001\u00104\u0011\u00104\u0000\u0018\u0000 \u0000I\u0000F\u0000 \u0000S\u0000U\u0000M\u0000M\u0000A\u0000R\u0000Y\u0000:\u0002\u00101\u0000\u0002\u00105\u00106\r\u00105\u0000\u0003l\u0000\u0001\u0005\u00055\u00107\u00108\u00015\u0000\u0000\f\u00107\u0000\u001b\u0000\u0015 Field Type = Summary\u0000\u0002\u0000\u0000\u000e\u00108\u0000\u0001\u00109\u0011\u00109\u0000*\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000=\u0000 \u0000S\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0002\u00106\u0000\u0002\u0010:\u0010;\r\u0010:\u0000\u0003l\u0000\u0001\u0005\u00054\u0010<\u0010=\u00014\u0000\u0000\f\u0010<\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\u0010=\u0000\u0001\u0010>\u0011\u0010>\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\u0010;\u0000\u0002\u0010?\u0010@\r\u0010?\u0000\u0003l\u0000\u0001\u0005\u00053\u0010A\u0010B\u00013\u0000\u0000\f\u0010A\u0000\/\u0000) Data Type: popup \"Calculation result is\"\u0000\u0002\u0000\u0000\u000e\u0010B\u0000\u0001\u0010C\u0011\u0010C\u0000R\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0000:\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000\"\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000i\u0000s\u0000\"\u0002\u0010@\u0000\u0002\u0010D\u0010E\r\u0010D\u0000\u0003l\u0000\u0001\u0005\u00052\u0010F\u0010G\u00012\u0000\u0000\f\u0010F\u0000\u0019\u0000\u0013 Calc Context Table\u0000\u0002\u0000\u0000\u000e\u0010G\u0000\u0001\u0010H\u0011\u0010H\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\u0010E\u0000\u0002\u0010I\u0010J\r\u0010I\u0000\u0003l\u0000\u0001\u0005\u00051\u0010K\u0010L\u00011\u0000\u0000\f\u0010K\u0000\u0019\u0000\u0013 Calculation itself\u0000\u0002\u0000\u0000\u000e\u0010L\u0000\u0001\u0010M\u0011\u0010M\u0000&\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\u0010J\u0000\u0002\u0010N\u0010O\r\u0010N\u0000\u0003l\u0000\u0001\u0005\u00050\u0010P\u0010Q\u00010\u0000\u0000\f\u0010P\u0000\u0017\u0000\u0011 Do Not Evaluate\u0000\u0002\u0000\u0000\u000e\u0010Q\u0000\u0001\u0010R\u0011\u0010R\u0000\"\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\u0010O\u0000\u0002\u0010S\u0010T\r\u0010S\u0000\u0003l\u0000\u0001\u0005\u0005\/\u0010U\u0010V\u0001\/\u0000\u0000\f\u0010U\u0000\u000f\u0000\t Storage:\u0000\u0002\u0000\u0000\u000e\u0010V\u0000\u0001\u0010W\u0011\u0010W\u0000\u0012\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\u0010T\u0000\u0002\u0010X\u0010Y\r\u0010X\u0000\u0003l\u0000\u0001\u0005\u0005.\u0010Z\u0010[\u0001.\u0000\u0000\f\u0010Z\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\u0010[\u0000\u0001\u0010\\\u0011\u0010\\\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\u0010Y\u0000\u0002\u0010]\u0010^\r\u0010]\u0000\u0003l\u0000\u0002\u0005\u0005-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002\u0010^\u0000\u0002\u0010_\u0010`\r\u0010_\u0000\u0003l\u0000\u0001\u0005\u0005*\u0010a\u0010b\u0001*\u0000\u0000\f\u0010a\u0000p\u0000j if existing field was NOT ALREADY a summary, will get a warning message. Need to handle that possibility.\u0000\u0002\u0000\u0000\u000e\u0010b\u0000\u0001\u0010c\u0011\u0010c\u0000\u0000 \u0000i\u0000f\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000w\u0000a\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000A\u0000L\u0000R\u0000E\u0000A\u0000D\u0000Y\u0000 \u0000a\u0000 \u0000s\u0000u\u0000m\u0000m\u0000a\u0000r\u0000y\u0000,\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000.\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000.\u0002\u0010`\u0000\u0002\u0010d\u0010e\r\u0010d\u0000\u0003l\u0000\u0002\u0005\u0005)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0010e\u0000\u0002\u0010f\u0010g\r\u0010f\u0000\u0003l\u0000\u0001\u0005\u0005&\u0010h\u0010i\u0001&\u0000\u0000\f\u0010h\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010i\u0000\u0001\u0010j\u0011\u0010j\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010g\u0000\u0002\u0010k\u0010l\r\u0010k\u0000\u0003l\u0000\u0001\u0005\u0005%\u0010m\u0010n\u0001%\u0000\u0000\f\u0010m\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010n\u0000\u0001\u0010o\u0011\u0010o\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010l\u0000\u0002\u0010p\u0010q\r\u0010p\u0000\u0003l\u0000\u0001\u0005\u0005$\u0010r\u0010s\u0001$\u0000\u0000\f\u0010r\u0000\u001f\u0000\u0019 NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0010s\u0000\u0001\u0010t\u0011\u0010t\u00002\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0010q\u0000\u0002\u0010u\u0010v\r\u0010u\u0000\u0003l\u0000\u0002\u0005\u0005#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0010v\u0000\u0002\u0010w \r\u0010w\u0000\u0003l\u0000\u0002\u0005\u0005\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002 \u0000\u0000\u0002\u0010,\u0000\u0002\u0010x\u0010y\r\u0010x\u0000\u0002=\u0000\u0003\u0005\u0005\u0010z\u0010{\r\u0010z\u0000\u0002n\u0000\u0000\u0005\u0005\u0010|\u0010}\r\u0010|\u0000\u0001o\u0000\u0000\u0005\u0005\u001c\u000b\u001c\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\r\u0010}\u0000\u0001o\u0000\u0000\u0005\u0005\u001b\u000b\u001b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010{\u0000\u0001m\u0000\u0000\u0005\u0005\u0010~\u000e\u0010~\u0000\u0001\u0010\u0011\u0010\u0000\f\u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\u0002\u0010y\u0000\u0002\u0010\u001a\r\u0010\u0000\u0001k\u0000\u0000\u0005\u000f\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0019\u0010\u0010\u0001\u0019\u0000\u0000\f\u0010\u0000\/\u0000)ELSE IF NOT CALC (Field Type is Normal):\t\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000R\u0000E\u0000L\u0000S\u0000E\u0000 \u0000I\u0000F\u0000 \u0000N\u0000O\u0000T\u0000 \u0000C\u0000A\u0000L\u0000C\u0000 \u0000(\u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000T\u0000y\u0000p\u0000e\u0000 \u0000i\u0000s\u0000 \u0000N\u0000o\u0000r\u0000m\u0000a\u0000l\u0000)\u0000:\u0000\t\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0018\u0010\u0010\u0001\u0018\u0000\u0000\f\u0010\u0000\u0010\u0000\n Data Type\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u0014\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000T\u0000y\u0000p\u0000e\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0017\u0010\u0010\u0001\u0017\u0000\u0000\f\u0010\u0000\u001f\u0000\u0019 click \"contains Options\"\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u00002\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000\"\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0016\u0010\u0010\u0001\u0016\u0000\u0000\f\u0010\u0000\u0014\u0000\u000e TAB: Storage:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u001c\u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0015\u0010\u0010\u0001\u0015\u0000\u0000\f\u0010\u0000-\u0000'\tGlobal, Do Not Store, None\/Minimal\/All\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000N\u0000\t\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000,\u0000 \u0000N\u0000o\u0000n\u0000e\u0000\/\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000\/\u0000A\u0000l\u0000l\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0014\u0010\u0010\u0001\u0014\u0000\u0000\f\u0010\u0000\u0016\u0000\u0010 TAB: Auto-Enter\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000 \u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000A\u0000u\u0000t\u0000o\u0000-\u0000E\u0000n\u0000t\u0000e\u0000r\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0013\u0010\u0010\u0001\u0013\u0000\u0000\f\u0010\u0000-\u0000'\tCreation, Modification, Serial, Data, \u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000N\u0000\t\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000,\u0000 \u0000D\u0000a\u0000t\u0000a\u0000,\u0000 \u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0012\u0010\u0010\u0001\u0012\u0000\u0000\f\u0010\u0000\u0019\u0000\u0013\tCalculated Value: \u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000&\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0011\u0010\u0010\u0001\u0011\u0000\u0000\f\u0010\u0000\u001b\u0000\u0015 \t\tCalc Context Table\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000*\u0000 \u0000\t\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0010\u0010\u0010\u0001\u0010\u0000\u0000\f\u0010\u0000\u001b\u0000\u0015 \t\tCalculation itself\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000*\u0000 \u0000\t\u0000\t\u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000t\u0000s\u0000e\u0000l\u0000f\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000f\u0010\u0010\u0001\u000f\u0000\u0000\f\u0010\u0000\u0019\u0000\u0013 \t\tDo Not Evaluate\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000&\u0000 \u0000\t\u0000\t\u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000e\u0010\u0010\u0001\u000e\u0000\u0000\f\u0010\u0000%\u0000\u001f\tDo not replace existing value\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000>\u0000\t\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\r\u0010\u0010\u0001\r\u0000\u0000\f\u0010\u0000\u0017\u0000\u0011 TAB: Validation:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\"\u0000 \u0000T\u0000A\u0000B\u0000:\u0000 \u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\f\u0010\u0010\u0001\f\u0000\u0000\f\u0010\u0000\u0015\u0000\u000f\t[Skip for now]\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u001e\u0000\t\u0000[\u0000S\u0000k\u0000i\u0000p\u0000 \u0000f\u0000o\u0000r\u0000 \u0000n\u0000o\u0000w\u0000]\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u000b\u0010\u0010\u0001\u000b\u0000\u0000\f\u0010\u0000\u001d\u0000\u0017 Prohibit modification\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000.\u0000 \u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n &\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\n\t\b\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0005\u0005\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0005\u0005\u0001\u0010\u0010\u0001\u0001\u0000\u0000\f\u0010\u0000\u0017\u0000\u0011 field DATA TYPE:\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\"\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000D\u0000A\u0000T\u0000A\u0000 \u0000T\u0000Y\u0000P\u0000E\u0000:\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0004Z\u0000\u0000\u0005\u0006|\u0010\u0010\u0000\r\u0010\u0000\u0002G\u0000\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0002=\u0000\u0003\u0005\u0005\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u0010\u0000\u0002>\u0001\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0005\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0010\u0000\u0001o\u0000\u0000\u0005\u0005\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\n\u0000\u0004\nnull\r\u0010\u0000\u0001k\u0000\u0000\u0005\u0006x\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0005\u0006\r\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0006\u000b\u0010\u0010\r\u0010\u0000\u00024\u0000\u0000\u0006\u0004\u0006\u000b\u0010\n\u0000\u0004\npopB\r\u0010\u0000\u0001m\u0000\u0000\u0006\u0007\u0006\n\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\n\u0000T\u0000y\u0000p\u0000e\u0000:\r\u0010\u0000\u0002n\u0000\u0000\u0005\u0006\u0004\u0010\u0010\r\u0010\u0000\u00024\u0000\u0000\u0005\u0006\u0004\u0010\n\u0000\u0004\ntabg\r\u0010\u0000\u0001m\u0000\u0000\u0006\u0002\u0006\u0003\u0003\u0000\u0001\r\u0010\u0000\u00024\u0000\u0000\u0005\u0005\u0010\n\u0000\u0004\ncwin\r\u0010\u0000\u0001m\u0000\u0000\u0005\u0005\u0003\u0000\u0001\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0004Z\u0000\u0000\u0006\u000e\u0006x\u0010\u0010\r\u0010\u0000\u0002>\u0001\u0000\u0006\u000e\u0006\u0017\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0006\u000e\u0006\u0013\u0010\u0010\r\u0010\u0000\u00011\u0000\u0000\u0006\u000f\u0006\u0013\n\u0000\u0004\nvalL\r\u0010\u0000\u0001o\u0000\u0000\u0006\u000e\u0006\u000f\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\r\u0010\u0000\u0002n\u0000\u0000\u0006\u0013\u0006\u0016\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0006\u0014\u0006\u0016\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0010\u0000\u0001o\u0000\u0000\u0006\u0013\u0006\u0014\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0010\u0000\u0001k\u0000\u0000\u0006\u001a\u0006t\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0001\u0006\u001a\u0006#\u0011\u0000\u0011\u0001\r\u0011\u0000\u0000\u0003I\u0000\u0000\u0006\u001b\u0006#\u0011\u0002\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0011\u0002\u0000\u0002\u0011\u0003\u0011\u0004\r\u0011\u0003\u0000\u0001o\u0000\u0000\u0006\u001b\u0006\u001c\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u0002\u0011\u0004\u0000\u0002\u0011\u0005\r\u0011\u0005\u0000\u0002n\u0000\u0000\u0006\u001c\u0006\u001f\u0011\u0006\u0011\u0007\r\u0011\u0006\u0000\u0001o\u0000\u0000\u0006\u001d\u0006\u001f\u000b\u0000\u00140\u0000\bdatatype\u0000\bdataType\r\u0011\u0007\u0000\u0001o\u0000\u0000\u0006\u001c\u0006\u001d\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u0001\u0000\u0000f\u0000\u0000\u0006\u001a\u0006\u001b\u0002\u0010\u0000\u0002\u0011\b\u0011\t\r\u0011\b\u0000\u0003l\u0000\u0002\u0006$\u0006$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\t\u0000\u0002\u0011\n\u0011\u000b\r\u0011\n\u0000\u0003l\u0000\u0001\u0006$\u0006$\u0011\f\u0011\r\u0001\u0000\u0000\f\u0011\f\u0000*\u0000$ click CHANGE to save the data type.\u0000\u0002\u0000\u0000\u000e\u0011\r\u0000\u0001\u0011\u000e\u0011\u0011\u000e\u0000H\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000C\u0000H\u0000A\u0000N\u0000G\u0000E\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000t\u0000y\u0000p\u0000e\u0000.\u0002\u0011\u000b\u0000\u0002\u0011\u000f\u0011\u0010\r\u0011\u000f\u0000\u0002n\u0000\u0001\u0006$\u0006;\u0011\u0011\u0011\u0012\r\u0011\u0011\u0000\u0003I\u0000\u0000\u0006%\u0006;\u0011\u0013\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011\u0013\u0000\u0002\u0011\u0014\r\u0011\u0014\u0000\u0002n\u0000\u0000\u0006%\u00067\u0011\u0015\u0011\u0016\r\u0011\u0015\u0000\u00024\u0000\u0000\u00060\u00067\u0011\u0017\n\u0000\u0004\nbutT\r\u0011\u0017\u0000\u0001m\u0000\u0000\u00063\u00066\u0011\u0018\u000e\u0011\u0018\u0000\u0001\u0011\u0019\u0011\u0011\u0019\u0000\f\u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\r\u0011\u0016\u0000\u0002n\u0000\u0000\u0006%\u00060\u0011\u001a\u0011\u001b\r\u0011\u001a\u0000\u00024\u0000\u0000\u0006+\u00060\u0011\u001c\n\u0000\u0004\ntabg\r\u0011\u001c\u0000\u0001m\u0000\u0000\u0006.\u0006\/\u0003\u0000\u0001\r\u0011\u001b\u0000\u00024\u0000\u0000\u0006%\u0006+\u0011\u001d\n\u0000\u0004\ncwin\r\u0011\u001d\u0000\u0001m\u0000\u0000\u0006)\u0006*\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u0012\u0000\u0000f\u0000\u0000\u0006$\u0006%\u0002\u0011\u0010\u0000\u0002\u0011\u001e\u0011\u001f\r\u0011\u001e\u0000\u0003l\u0000\u0002\u0006<\u0006<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u001f\u0000\u0002\u0011 \u0011!\r\u0011 \u0000\u0003I\u0000\u0002\u0006<\u0006C\u0011\"\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0011\"\u0000\u0001m\u0000\u0000\u0006<\u0006?\u0011#\b\u0011#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0011!\u0000\u0002\u0011$\u0011%\r\u0011$\u0000\u0003l\u0000\u0002\u0006D\u0006D\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011%\u0000\u0002\u0011&\u0011'\r\u0011&\u0000\u0003l\u0000\u0001\u0006D\u0006D\u0011(\u0011)\u0001\u0000\u0000\f\u0011(\u00009\u00003 MIGHT open a dialog warning about type conversion:\u0000\u0002\u0000\u0000\u000e\u0011)\u0000\u0001\u0011*\u0011\u0011*\u0000f\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0002\u0011'\u0000\u0002\u0011+\r\u0011+\u0000\u0004Z\u0000\u0000\u0006D\u0006t\u0011,\u0011-\r\u0011,\u0000\u0001H\u0000\u0000\u0006D\u0006S\u0011.\r\u0011.\u0000\u0002C\u0000\u0000\u0006D\u0006R\u0011\/\u00110\r\u0011\/\u0000\u0002n\u0000\u0000\u0006D\u0006N\u00111\u00112\r\u00111\u0000\u00011\u0000\u0000\u0006J\u0006N\n\u0000\u0004\npnam\r\u00112\u0000\u00024\u0000\u0000\u0006D\u0006J\u00113\n\u0000\u0004\ncwin\r\u00113\u0000\u0001m\u0000\u0000\u0006H\u0006I\u0003\u0000\u0001\r\u00110\u0000\u0001m\u0000\u0000\u0006N\u0006Q\u00114\u000e\u00114\u0000\u0001\u00115\u0011\u00115\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000F\u0000o\u0000r\r\u0011-\u0000\u0001k\u0000\u0000\u0006V\u0006p\u00116\u0002\u00116\u0000\u0002\u00117\u00118\r\u00117\u0000\u0003l\u0000\u0001\u0006V\u0006V\u00119\u0011:\u0001\u0000\u0000\f\u00119\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0011:\u0000\u0001\u0011;\u0011\u0011;\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u00118\u0000\u0002\u0011<\u0011=\r\u0011<\u0000\u0002n\u0000\u0001\u0006V\u0006h\u0011>\u0011?\r\u0011>\u0000\u0003I\u0000\u0000\u0006W\u0006h\u0011@\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011@\u0000\u0002\u0011A\r\u0011A\u0000\u0002n\u0000\u0000\u0006W\u0006d\u0011B\u0011C\r\u0011B\u0000\u00024\u0000\u0000\u0006]\u0006d\u0011D\n\u0000\u0004\nbutT\r\u0011D\u0000\u0001m\u0000\u0000\u0006`\u0006c\u0011E\u000e\u0011E\u0000\u0001\u0011F\u0011\u0011F\u0000\u0004\u0000O\u0000K\r\u0011C\u0000\u00024\u0000\u0000\u0006W\u0006]\u0011G\n\u0000\u0004\ncwin\r\u0011G\u0000\u0001m\u0000\u0000\u0006[\u0006\\\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011?\u0000\u0000f\u0000\u0000\u0006V\u0006W\u0002\u0011=\u0000\u0002\u0011H\u0011I\r\u0011H\u0000\u0003l\u0000\u0002\u0006i\u0006i\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011I\u0000\u0002\u0011J\r\u0011J\u0000\u0003I\u0000\u0002\u0006i\u0006p\u0011K\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0011K\u0000\u0001m\u0000\u0000\u0006i\u0006l\u0011L\b\u0011L\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0011M\u0011N\r\u0011M\u0000\u0003l\u0000\u0002\u0006}\u0006}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011N\u0000\u0002\u0011O\u0011P\r\u0011O\u0000\u0003l\u0000\u0002\u0006}\u0006}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011P\u0000\u0002\u0011Q\u0011R\r\u0011Q\u0000\u0003l\u0000\u0001\u0006}\u0006}\u0011S\u0011T\u0001\u0000\u0000\f\u0011S\u0000\u0016\u0000\u0010 click Options: \u0000\u0002\u0000\u0000\u000e\u0011T\u0000\u0001\u0011U\u0011\u0011U\u0000 \u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u0011R\u0000\u0002\u0011V\u0011W\r\u0011V\u0000\u0002n\u0000\u0001\u0006}\u0006\u0011X\u0011Y\r\u0011X\u0000\u0003I\u0000\u0000\u0006~\u0006\u0011Z\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0011Z\u0000\u0002\u0011[\r\u0011[\u0000\u00026\u0001\u0000\u0006~\u0006\u0011\\\u0011]\r\u0011\\\u0000\u0002n\u0000\u0000\u0006~\u0006\u0011^\u0011_\r\u0011^\u0000\u00024\u0000\u0001\u0006\u0006\u0011`\n\u0000\u0004\nbutT\r\u0011`\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011_\u0000\u0002n\u0000\u0000\u0006~\u0006\u0011a\u0011b\r\u0011a\u0000\u00024\u0000\u0000\u0006\u0006\u0011c\n\u0000\u0004\ntabg\r\u0011c\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011b\u0000\u00024\u0000\u0000\u0006~\u0006\u0011d\n\u0000\u0004\ncwin\r\u0011d\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011]\u0000\u0002C\u0000\u0000\u0006\u0006\u0011e\u0011f\r\u0011e\u0000\u00011\u0000\u0000\u0006\u0006\n\u0000\u0004\npnam\r\u0011f\u0000\u0001m\u0000\u0000\u0006\u0006\u0011g\u000e\u0011g\u0000\u0001\u0011h\u0011\u0011h\u0000\u000e\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011Y\u0000\u0000f\u0000\u0000\u0006}\u0006~\u0002\u0011W\u0000\u0002\u0011i\u0011j\r\u0011i\u0000\u0002n\u0000\u0001\u0006\u0006\u0011k\u0011l\r\u0011k\u0000\u0003I\u0000\u0000\u0006\u0006\u0011m\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0011m\u0000\u0002\u0011n\r\u0011n\u0000\u0001K\u0000\u0000\u0006\u0006\u0011o\u0006\u0011o\u0000\u0003\u0011p\u0011q\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0011p\u0000\u0001m\u0000\u0000\u0006\u0006\u0011r\u000e\u0011r\u0000\u0001\u0011s\u0011\u0011s\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0011q\u0000\u0003\u0011t\u0011u\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0011t\u0000\u0001m\u0000\u0000\u0006\u0006\u0011v\u000e\u0011v\u0000\u0001\u0011w\u0011\u0011w\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0011u\u0000\u0003\u0011x\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0011x\u0000\u0001m\u0000\u0000\u0006\u0006\u0011y\u000e\u0011y\u0000\u0001\u0011z\u0011\u0011z\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011l\u0000\u0000f\u0000\u0000\u0006\u0006\u0002\u0011j\u0000\u0002\u0011{\u0011|\r\u0011{\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011|\u0000\u0002\u0011}\u0011~\r\u0011}\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011~\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002r\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u00024\u0000\u0000\u0006\u0006\u0011\n\u0000\u0004\ntabg\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011\u0000\u00024\u0000\u0000\u0006\u0006\u0011\n\u0000\u0004\ncwin\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0003\u0000\u0001\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000\u0013\u0000\r STORAGE TAB:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000S\u0000T\u0000O\u0000R\u0000A\u0000G\u0000E\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0006\u0006\u0011\u0011\u0001\u0000\u0000\f\u0011\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0006\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0004Z\u0000\u0000\u0006\t\u001e\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0007\u0007\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002G\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002=\u0000\u0003\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0011\u0000\u0003l\u0000\t\u0006\u0006\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006~\n~\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006}\u000b}\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006|\u000b|\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011{z\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006y\ny\u0000\u0004\nnull\u0001{\u0000\u0000\u0001z\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006x\u000bx\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006w\u000bw\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0006\u0006\u0011vu\r\u0011\u0000\u0001m\u0000\u0000\u0006\u0006t\nt\u0000\u0004\nnull\u0001v\u0000\u0000\u0001u\u0000\u0000\r\u0011\u0000\u0002>\u0001\u0000\u0006\u0007\u0003\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0006\u0007\u0001\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0007\u0001s\u000bs\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0011\u0000\u0001o\u0000\u0000\u0006\u0006r\u000br\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0011\u0000\u0003l\u0000\n\u0007\u0001\u0007\u0002\u0011qp\r\u0011\u0000\u0001m\u0000\u0000\u0007\u0001\u0007\u0002o\no\u0000\u0004\nnull\u0001q\u0000\u0000\u0001p\u0000\u0000\r\u0011\u0000\u0001k\u0000\u0000\u0007\n\t\u001a\u0011\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0007\n\u0007\nnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0002\u0007\n\u0007\u0016k\u0011j\nk\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0011\u0000\u0002n\u0000\u0000\u0007\n\u0007\u0012\u0011\u0011\r\u0011\u0000\u00024\u0000\u0000\u0007\u000b\u0007\u0012i\u0011\ni\u0000\u0004\nradB\r\u0011\u0000\u0001m\u0000\u0000\u0007\u000e\u0007\u0011\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u0011\u0000\u0001o\u0000\u0000\u0007\n\u0007\u000bh\u000bh\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002j\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0007\u0017\u0007\u0017gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0007\u0017\u0007\u0017d\u0011\u0011\u0001d\u0000\u0000\f\u0011\u0000\u0013\u0000\r Repetitions:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001a\u0000 \u0000R\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0001\u0007\u0017\u00076\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0007\u0018\u00076c\u0011b\u000bc\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u00026\u0001\u0000\u0007\u0018\u0007-\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0000\u0007\u0018\u0007\u001e\u0011\u0011\r\u0011\u0000\u00024\u0000\u0001\u0007\u0019\u0007\u001ea\u0011\na\u0000\u0004\ntxtf\r\u0011\u0000\u0001m\u0000\u0000\u0007\u001c\u0007\u001d`\u0003`\u0000\u0001\r\u0011\u0000\u0001o\u0000\u0000\u0007\u0018\u0007\u0019_\u000b_\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0011\u0000\u0002E\u0000\u0000\u0007!\u0007,\u0011\u0011\r\u0011\u0000\u00011\u0000\u0000\u0007\"\u0007&^\n^\u0000\u0004\npnam\r\u0011\u0000\u0001m\u0000\u0000\u0007'\u0007+\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0016\u0000r\u0000e\u0000p\u0000e\u0000t\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0011\u0000\u0002\u0011]\r\u0011\u0000\u0002n\u0000\u0000\u0007-\u00072\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0007.\u00072\\\u000b\\\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\r\u0011\u0000\u0001o\u0000\u0000\u0007-\u0007.[\u000b[\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002]\u0000\u0000\u0002b\u0000\u0000\r\u0011\u0000\u0000f\u0000\u0000\u0007\u0017\u0007\u0018\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u00077\u00077ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u00077\u00077W\u0011\u0011\u0001W\u0000\u0000\f\u0011\u0000\u000e\u0000\b Global:\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0010\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000:\u0002\u0011\u0000\u0002\u0012\u0000\u0012\u0001\r\u0012\u0000\u0000\u0002r\u0000\u0000\u00077\u0007N\u0012\u0002\u0012\u0003\r\u0012\u0002\u0000\u00026\u0001\u0000\u00077\u0007L\u0012\u0004\u0012\u0005\r\u0012\u0004\u0000\u0002n\u0000\u0000\u00077\u0007=\u0012\u0006\u0012\u0007\r\u0012\u0006\u0000\u00024\u0000\u0001\u00078\u0007=V\u0012\b\nV\u0000\u0004\nchbx\r\u0012\b\u0000\u0001m\u0000\u0000\u0007;\u0007<U\u0003U\u0000\u0001\r\u0012\u0007\u0000\u0001o\u0000\u0000\u00077\u00078T\u000bT\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0012\u0005\u0000\u0002E\u0000\u0000\u0007@\u0007K\u0012\t\u0012\n\r\u0012\t\u0000\u00011\u0000\u0000\u0007A\u0007ES\nS\u0000\u0004\npnam\r\u0012\n\u0000\u0001m\u0000\u0000\u0007F\u0007J\u0012\u000b\u000e\u0012\u000b\u0000\u0001\u0012\f\u0011\u0012\f\u0000\u001c\u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\r\u0012\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u0012\u0001\u0000\u0002\u0012\r\u0012\u000e\r\u0012\r\u0000\u0003l\u0000\u0002\u0007O\u0007OQPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002\u0012\u000e\u0000\u0002\u0012\u000f\u0012\u0010\r\u0012\u000f\u0000\u0004Z\u0000\u0000\u0007O\u0007s\u0012\u0011\u0012\u0012NM\r\u0012\u0011\u0000\u0002=\u0000\u0003\u0007O\u0007T\u0012\u0013\u0012\u0014\r\u0012\u0013\u0000\u0001o\u0000\u0000\u0007O\u0007PL\u000bL\u0000\u00140\u0000\beditmode\u0000\beditMode\r\u0012\u0014\u0000\u0001m\u0000\u0000\u0007P\u0007S\u0012\u0015\u000e\u0012\u0015\u0000\u0001\u0012\u0016\u0011\u0012\u0016\u0000\u000e\u0000C\u0000O\u0000N\u0000F\u0000O\u0000R\u0000M\r\u0012\u0012\u0000\u0001k\u0000\u0000\u0007W\u0007o\u0012\u0017\u0002\u0012\u0017\u0000\u0002\u0012\u0018\u0012\u0019\r\u0012\u0018\u0000\u0003l\u0000\u0001\u0007W\u0007WK\u0012\u001a\u0012\u001b\u0001K\u0000\u0000\f\u0012\u001a\u0000D\u0000> This CANNOT BE NULL, if we are making field conform!!!!!\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012\u001b\u0000\u0001\u0012\u001c\u0011\u0012\u001c\u0000|\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000C\u0000A\u0000N\u0000N\u0000O\u0000T\u0000 \u0000B\u0000E\u0000 \u0000N\u0000U\u0000L\u0000L\u0000,\u0000 \u0000i\u0000f\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000m\u0000a\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000c\u0000o\u0000n\u0000f\u0000o\u0000r\u0000m\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012\u0019\u0000\u0002\u0012\u001dJ\r\u0012\u001d\u0000\u0004Z\u0000\u0001\u0007W\u0007o\u0012\u001e\u0012\u001fIH\r\u0012\u001e\u0000\u0002=\u0000\u0003\u0007W\u0007\\\u0012 \u0012!\r\u0012 \u0000\u0002n\u0000\u0000\u0007W\u0007Z\u0012\"\u0012#\r\u0012\"\u0000\u0001o\u0000\u0000\u0007X\u0007ZG\u000bG\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u0012#\u0000\u0001o\u0000\u0000\u0007W\u0007XF\u000bF\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0012!\u0000\u0001m\u0000\u0000\u0007Z\u0007[E\nE\u0000\u0004\nnull\r\u0012\u001f\u0000\u0003R\u0000\u0000\u0007_\u0007kD\u0012$\u0012%\nD\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0012$\u0000\u0001m\u0000\u0000\u0007g\u0007j\u0012&\u000e\u0012&\u0000\u0001\u0012'\u0011\u0012'\u0000@\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000!\u0006\u0012%\u0000\u0003C\u0012(B\nC\u0000\u0004\nerrn\r\u0012(\u0000\u0001m\u0000\u0000\u0007c\u0007fA\u0003A\u0004\u0000\u0006B\u0000\u0000\u0002I\u0000\u0000\u0001H\u0000\u0000\u0002J\u0000\u0000\u0002N\u0000\u0000\u0001M\u0000\u0000\u0002\u0012\u0010\u0000\u0002\u0012)\u0012*\r\u0012)\u0000\u0003l\u0000\u0002\u0007t\u0007t@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0012*\u0000\u0002\u0012+\u0012,\r\u0012+\u0000\u0003l\u0000\u0002\u0007t\u0007t=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0012,\u0000\u0002\u0012-\u0012.\r\u0012-\u0000\u0003l\u0000\u0002\u0007t\u0007t:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0012.\u0000\u0002\u0012\/\u00120\r\u0012\/\u0000\u0004Z\u0000\u0000\u0007t\b\u00121\u001227\u00123\r\u00121\u0000\u0002n\u0000\u0000\u0007t\u0007x\u00124\u00125\r\u00124\u0000\u0001o\u0000\u0000\u0007u\u0007w6\u000b6\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\r\u00125\u0000\u0001o\u0000\u0000\u0007t\u0007u5\u000b5\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00122\u0000\u0001k\u0000\u0000\u0007{\u0007\u00126\u0002\u00126\u0000\u0002\u00127\u00128\r\u00127\u0000\u0003l\u0000\u0002\u0007{\u0007{432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u00128\u0000\u0002\u00129\u0012:\r\u00129\u0000\u0004Z\u0000\u0000\u0007{\u0007\u0012;\u0012<10\r\u0012;\u0000\u0002>\u0001\u0000\u0007{\u0007\u0012=\u0012>\r\u0012=\u0000\u0002n\u0000\u0000\u0007{\u0007\u0012?\u0012@\r\u0012?\u0000\u00011\u0000\u0000\u0007|\u0007\/\n\/\u0000\u0004\nvalL\r\u0012@\u0000\u0001o\u0000\u0000\u0007{\u0007|.\u000b.\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\r\u0012>\u0000\u0001m\u0000\u0000\u0007\u0007-\u0003-\u0000\u0001\r\u0012<\u0000\u0001k\u0000\u0000\u0007\u0007\u0012A\u0002\u0012A\u0000\u0002\u0012B\u0012C\r\u0012B\u0000\u0003l\u0000\u0001\u0007\u0007,\u0012D\u0012E\u0001,\u0000\u0000\f\u0012D\u0000(\u0000\" should be GLOBAL, but is NOT yet:\u0000\u0002\u0000\u0000\u000e\u0012E\u0000\u0001\u0012F\u0011\u0012F\u0000D\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000G\u0000L\u0000O\u0000B\u0000A\u0000L\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000i\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000y\u0000e\u0000t\u0000:\u0002\u0012C\u0000\u0002\u0012G\u0012H\r\u0012G\u0000\u0002n\u0000\u0001\u0007\u0007\u0012I\u0012J\r\u0012I\u0000\u0003I\u0000\u0000\u0007\u0007+\u0012K*\u000b+\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002\u0012K\u0000\u0002\u0012L)\r\u0012L\u0000\u0001o\u0000\u0000\u0007\u0007(\u000b(\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002)\u0000\u0000\u0002*\u0000\u0000\r\u0012J\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012H\u0000\u0002\u0012M\u0012N\r\u0012M\u0000\u0003I\u0000\u0002\u0007\u0007'\u0012O&\n'\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0012O\u0000\u0001m\u0000\u0000\u0007\u0007\u0012P\b\u0012P\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002&\u0000\u0000\u0002\u0012N\u0000\u0002\u0012Q\u0012R\r\u0012Q\u0000\u0003l\u0000\u0002\u0007\u0007%$#\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0012R\u0000\u0002\u0012S\u0012T\r\u0012S\u0000\u0003l\u0000\u0001\u0007\u0007\"\u0012U\u0012V\u0001\"\u0000\u0000\f\u0012U\u0000G\u0000A MIGHT open a dialog warning about change to global status:\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012V\u0000\u0001\u0012W\u0011\u0012W\u0000\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000o\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000:\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012T\u0000\u0002\u0012X!\r\u0012X\u0000\u0004Z\u0000\u0000\u0007\u0007\u0012Y\u0012Z \u001f\r\u0012Y\u0000\u0001H\u0000\u0000\u0007\u0007\u0012[\r\u0012[\u0000\u0002C\u0000\u0000\u0007\u0007\u0012\\\u0012]\r\u0012\\\u0000\u0002n\u0000\u0000\u0007\u0007\u0012^\u0012_\r\u0012^\u0000\u00011\u0000\u0000\u0007\u0007\u001e\n\u001e\u0000\u0004\npnam\r\u0012_\u0000\u00024\u0000\u0000\u0007\u0007\u001d\u0012`\n\u001d\u0000\u0004\ncwin\r\u0012`\u0000\u0001m\u0000\u0000\u0007\u0007\u001c\u0003\u001c\u0000\u0001\r\u0012]\u0000\u0001m\u0000\u0000\u0007\u0007\u0012a\u000e\u0012a\u0000\u0001\u0012b\u0011\u0012b\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\r\u0012Z\u0000\u0001k\u0000\u0000\u0007\u0007\u0012c\u0002\u0012c\u0000\u0002\u0012d\u0012e\r\u0012d\u0000\u0003l\u0000\u0001\u0007\u0007\u001b\u0012f\u0012g\u0001\u001b\u0000\u0000\f\u0012f\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0012g\u0000\u0001\u0012h\u0011\u0012h\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u0012e\u0000\u0002\u0012i\u0012j\r\u0012i\u0000\u0002n\u0000\u0001\u0007\u0007\u0012k\u0012l\r\u0012k\u0000\u0003I\u0000\u0000\u0007\u0007\u001a\u0012m\u0019\u000b\u001a\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0012m\u0000\u0002\u0012n\u0018\r\u0012n\u0000\u0002n\u0000\u0000\u0007\u0007\u0012o\u0012p\r\u0012o\u0000\u00024\u0000\u0000\u0007\u0007\u0017\u0012q\n\u0017\u0000\u0004\nbutT\r\u0012q\u0000\u0001m\u0000\u0000\u0007\u0007\u0012r\u000e\u0012r\u0000\u0001\u0012s\u0011\u0012s\u0000\u0004\u0000O\u0000K\r\u0012p\u0000\u00024\u0000\u0000\u0007\u0007\u0016\u0012t\n\u0016\u0000\u0004\ncwin\r\u0012t\u0000\u0001m\u0000\u0000\u0007\u0007\u0015\u0003\u0015\u0000\u0001\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\r\u0012l\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012j\u0000\u0002\u0012u\u0012v\r\u0012u\u0000\u0003l\u0000\u0002\u0007\u0007\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0012v\u0000\u0002\u0012w\u0012x\r\u0012w\u0000\u0003l\u0000\u0001\u0007\u0007\u0011\u0012y\u0012z\u0001\u0011\u0000\u0000\f\u0012y\u0000<\u00006 wait until back to normal \"Options for Field\" window:\u0000\u0002\u0000\u0000\u000e\u0012z\u0000\u0001\u0012{\u0011\u0012{\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000\"\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000\"\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0012x\u0000\u0002\u0012|\u0012}\r\u0012|\u0000\u0002n\u0000\u0001\u0007\u0007\u0012~\u0012\r\u0012~\u0000\u0003I\u0000\u0000\u0007\u0007\u0010\u0012\u000f\u000b\u0010\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0012\u0000\u0002\u0012\u000e\r\u0012\u0000\u0001K\u0000\u0000\u0007\u0007\u0012\u0006\u0012\u0000\u0003\r\u0012\u0012\u000b\r\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0012\u0000\u0003\f\u0012\u0012\u000b\f\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0012\u0000\u0003\u000b\u0012\n\u000b\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\n\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u000f\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012}\u0000\u0002\u0012\t\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\t\u0000\u0000\u0002 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0012:\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0002\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u00027\u0000\u0000\r\u00123\u0000\u0003l\u0000\u0003\u0007\b\u0012\u0012\u0012\r\u0012\u0000\u0001k\u0000\u0000\u0007\b\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0004Z\u0000\u0000\u0007\bH\u0012\u0012\r\u0012\u0000\u0002>\u0001\u0000\u0007\u0007\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\u0007\u0007\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0007\u0007\n\u0000\u0004\nvalL\r\u0012\u0000\u0001o\u0000\u0000\u0007\u0007\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0003\u0000\u0000\r\u0012\u0000\u0001k\u0000\u0000\u0007\bD\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0007\u0007\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000$\u0000\u001e IS GLOBAL, but should NOT be:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000<\u0000 \u0000I\u0000S\u0000 \u0000G\u0000L\u0000O\u0000B\u0000A\u0000L\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000N\u0000O\u0000T\u0000 \u0000b\u0000e\u0000:\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\u0007\u0007\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0007\u0007\u0012\u000b\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0007\u0007\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\u0007\u0007\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0002\u0007\u0007\u0012\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0012\u0000\u0001m\u0000\u0000\u0007\u0007\u0012\b\u0012\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0007\u0007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0007\u0007\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000G\u0000A MIGHT open a dialog warning about change to global status:\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0000 \u0000M\u0000I\u0000G\u0000H\u0000T\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000a\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000w\u0000a\u0000r\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000t\u0000o\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000:\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0004Z\u0000\u0000\u0007\bB\u0012\u0012\r\u0012\u0000\u0001H\u0000\u0000\u0007\b\u000b\u0012\r\u0012\u0000\u0002C\u0000\u0000\u0007\b\n\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\u0007\b\u0006\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\b\u0002\b\u0006\n\u0000\u0004\npnam\r\u0012\u0000\u00024\u0000\u0000\u0007\b\u0002\u0012\n\u0000\u0004\ncwin\r\u0012\u0000\u0001m\u0000\u0000\b\u0000\b\u0001\u0003\u0000\u0001\r\u0012\u0000\u0001m\u0000\u0000\b\u0006\b\t\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\r\u0012\u0000\u0001k\u0000\u0000\b\u000e\b>\u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\b\u000e\b\u000e\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000'\u0000! click OK to confirm the change: \u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000B\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000:\u0000 \u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\b\u000e\b \u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\b\u000f\b \u0012\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0002n\u0000\u0000\b\u000f\b\u001c\u0012\u0012\r\u0012\u0000\u00024\u0000\u0000\b\u0015\b\u001c\u0012\n\u0000\u0004\nbutT\r\u0012\u0000\u0001m\u0000\u0000\b\u0018\b\u001b\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0004\u0000O\u0000K\r\u0012\u0000\u00024\u0000\u0000\b\u000f\b\u0015\u0012\n\u0000\u0004\ncwin\r\u0012\u0000\u0001m\u0000\u0000\b\u0013\b\u0014\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\b\u000e\b\u000f\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\b!\b!\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\b!\b!\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000<\u00006 wait until back to normal \"Options for Field\" window:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000\"\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000\"\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0001\b!\b<\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\b\"\b<\u0012\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001K\u0000\u0000\b\"\b8\u0012\u0006\u0012\u0000\u0003\u0012\u0012\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0012\u0000\u0001m\u0000\u0000\b%\b(\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0012\u0000\u0003\u0012\u0012\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0012\u0000\u0001m\u0000\u0000\b+\b.\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0012\u0000\u0003\u0012\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0012\u0000\u0001m\u0000\u0000\b1\b4\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0000f\u0000\u0000\b!\b\"\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003l\u0000\u0002\b=\b=\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003l\u0000\u0002\bC\bC\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\bI\bI\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\bI\bI\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\bI\bI\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000;\u00005 Then see which one of the Indexing choices is needed\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000j\u0000 \u0000T\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000i\u0000n\u0000g\u0000 \u0000c\u0000h\u0000o\u0000i\u0000c\u0000e\u0000s\u0000 \u0000i\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0004Z\u0000\u0000\bI\b\u0012\u0012\u0012\r\u0012\u0000\u0002=\u0000\u0003\bI\bR\u0012\u0012\r\u0012\u0000\u0002n\u0000\u0000\bI\bN\u0012\u0013\u0000\r\u0012\u0000\u0001o\u0000\u0000\bJ\bN\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0013\u0000\u0000\u0001o\u0000\u0000\bI\bJ\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0012\u0000\u0001m\u0000\u0000\bN\bQ\u0013\u0001\u000e\u0013\u0001\u0000\u0001\u0013\u0002\u0011\u0013\u0002\u0000\b\u0000N\u0000o\u0000n\u0000e\r\u0012\u0000\u0001k\u0000\u0000\bU\be\u0013\u0003\u0002\u0013\u0003\u0000\u0002\u0013\u0004\u0013\u0005\r\u0013\u0004\u0000\u0002n\u0000\u0001\bU\bc\u0013\u0006\u0013\u0007\r\u0013\u0006\u0000\u0003I\u0000\u0000\bV\bc\u0013\b\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\b\u0000\u0002\u0013\t\u0013\n\r\u0013\t\u0000\u0002n\u0000\u0000\bV\b^\u0013\u000b\u0013\f\r\u0013\u000b\u0000\u00024\u0000\u0000\bW\b^\u0013\r\n\u0000\u0004\nchbx\r\u0013\r\u0000\u0001m\u0000\u0000\bZ\b]\u0013\u000e\u000e\u0013\u000e\u0000\u0001\u0013\u000f\u0011\u0013\u000f\u0000\u0016\u0000N\u0000o\u0000n\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013\f\u0000\u0001o\u0000\u0000\bV\bW\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\n\u0000\u0002\u0013\u0010\r\u0013\u0010\u0000\u0001m\u0000\u0000\b^\b_\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013\u0007\u0000\u0000f\u0000\u0000\bU\bV\u0002\u0013\u0005\u0000\u0002\u0013\u0011\r\u0013\u0011\u0000\u0001o\u0000\u0000\bd\be\u000b\u0000\u000b0\u0000\u0007fdsfdsf\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0013\u0012\u0013\u0013\r\u0013\u0012\u0000\u0002=\u0000\u0003\bh\bq\u0013\u0014\u0013\u0015\r\u0013\u0014\u0000\u0002n\u0000\u0000\bh\bm\u0013\u0016\u0013\u0017\r\u0013\u0016\u0000\u0001o\u0000\u0000\bi\bm\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u0013\u0017\u0000\u0001o\u0000\u0000\bh\bi\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0015\u0000\u0001m\u0000\u0000\bm\bp\u0013\u0018\u000e\u0013\u0018\u0000\u0001\u0013\u0019\u0011\u0013\u0019\u0000\u000e\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0002\u0013\u0013\u0000\u0002\u0013\u001a\u0013\u001b\r\u0013\u001a\u0000\u0001k\u0000\u0000\bt\b\u0013\u001c\u0002\u0013\u001c\u0000\u0002\u0013\u001d\u0013\u001e\r\u0013\u001d\u0000\u0002n\u0000\u0001\bt\b\u0013\u001f\u0013 \r\u0013\u001f\u0000\u0003I\u0000\u0000\bu\b\u0013!\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013!\u0000\u0002\u0013\"\u0013#\r\u0013\"\u0000\u0002n\u0000\u0000\bu\b}\u0013$\u0013%\r\u0013$\u0000\u00024\u0000\u0000\bv\b}\u0013&\n\u0000\u0004\nchbx\r\u0013&\u0000\u0001m\u0000\u0000\by\b|\u0013'\u000e\u0013'\u0000\u0001\u0013(\u0011\u0013(\u0000\u001c\u0000M\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013%\u0000\u0001o\u0000\u0000\bu\bv\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013#\u0000\u0002\u0013)\r\u0013)\u0000\u0001m\u0000\u0000\b}\b~\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013 \u0000\u0000f\u0000\u0000\bt\bu\u0002\u0013\u001e\u0000\u0002\u0013*\r\u0013*\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0013\u001b\u0000\u0002\u0013+\u0013,\r\u0013+\u0000\u0002=\u0000\u0003\b\b\u0013-\u0013.\r\u0013-\u0000\u0002n\u0000\u0000\b\b\u0013\/\u00130\r\u0013\/\u0000\u0001o\u0000\u0000\b\b\u000b\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\r\u00130\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013.\u0000\u0001m\u0000\u0000\b\b\u00131\u000e\u00131\u0000\u0001\u00132\u0011\u00132\u0000\u0006\u0000A\u0000l\u0000l\u0002\u0013,\u0000\u0002\u00133\r\u00133\u0000\u0001k\u0000\u0000\b\b\u00134\u0002\u00134\u0000\u0002\u00135\u00136\r\u00135\u0000\u0002n\u0000\u0001\b\b\u00137\u00138\r\u00137\u0000\u0003I\u0000\u0000\b\b\u00139\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u00139\u0000\u0002\u0013:\u0013;\r\u0013:\u0000\u0002n\u0000\u0000\b\b\u0013<\u0013=\r\u0013<\u0000\u00024\u0000\u0000\b\b\u0013>\n\u0000\u0004\nchbx\r\u0013>\u0000\u0001m\u0000\u0000\b\b\u0013?\u000e\u0013?\u0000\u0001\u0013@\u0011\u0013@\u0000\u0014\u0000A\u0000l\u0000l\u0000 \u00003\u0000 \u0000o\u0000f\u0000 \u00003\r\u0013=\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013;\u0000\u0002\u0013A\r\u0013A\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u00138\u0000\u0000f\u0000\u0000\b\b\u0002\u00136\u0000\u0002\u0013B\r\u0013B\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u0012\u0000'\u0000! NOT global, SO UNCHECK it FIRST:\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0013C\u0011\u0013C\u0000B\u0000 \u0000N\u0000O\u0000T\u0000 \u0000g\u0000l\u0000o\u0000b\u0000a\u0000l\u0000,\u0000 \u0000S\u0000O\u0000 \u0000U\u0000N\u0000C\u0000H\u0000E\u0000C\u0000K\u0000 \u0000i\u0000t\u0000 \u0000F\u0000I\u0000R\u0000S\u0000T\u0000:\u0002\u00120\u0000\u0002\u0013D\u0013E\r\u0013D\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0013E\u0000\u0002\u0013F\u0013G\r\u0013F\u0000\u0003l\u0000\u0001\b\b\u0013H\u0013I\u0001\u0000\u0000\f\u0013H\u0000\u0017\u0000\u0011 Index Language: \u0000\u0002\u0000\u0000\u000e\u0013I\u0000\u0001\u0013J\u0011\u0013J\u0000\"\u0000 \u0000I\u0000n\u0000d\u0000e\u0000x\u0000 \u0000L\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0000:\u0000 \u0002\u0013G\u0000\u0002\u0013K\u0013L\r\u0013K\u0000\u0004Z\u0000\u0000\b\b\u0013M\u0013N\r\u0013M\u0000\u0002>\u0001\u0000\b\b\u0013O\u0013P\r\u0013O\u0000\u0002n\u0000\u0000\b\b\u0013Q\u0013R\r\u0013Q\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0013R\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013P\u0000\u0001m\u0000\u0000\b\b\n\u0000\u0004\nnull\r\u0013N\u0000\u0002n\u0000\u0001\b\b\u0013S\u0013T\r\u0013S\u0000\u0003I\u0000\u0000\b\b\u0013U\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0013U\u0000\u0002\u0013V\u0013W\r\u0013V\u0000\u00026\u0001\u0000\b\b\u0013X\u0013Y\r\u0013X\u0000\u0002n\u0000\u0000\b\b\u0013Z\u0013[\r\u0013Z\u0000\u00024\u0000\u0001\b\b\u0013\\\n\u0000\u0004\npopB\r\u0013\\\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\r\u0013[\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0013Y\u0000\u0002E\u0000\u0000\b\b\u0013]\u0013^\r\u0013]\u0000\u00011\u0000\u0000\b\b\n\u0000\u0004\npnam\r\u0013^\u0000\u0001m\u0000\u0000\b\b\u0013_\u000e\u0013_\u0000\u0001\u0013`\u0011\u0013`\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000l\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0002\u0013W\u0000\u0002\u0013a\r\u0013a\u0000\u0002n\u0000\u0000\b\b\u0013b\u0013c\r\u0013b\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\r\u0013c\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0013T\u0000\u0000f\u0000\u0000\b\b\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0013L\u0000\u0002\u0013d\u0013e\r\u0013d\u0000\u0003l\u0000\u0002\b\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0013e\u0000\u0002\u0013f\u0013g\r\u0013f\u0000\u0003l\u0000\u0001\b\b\u0013h\u0013i\u0001\u0000\u0000\f\u0013h\u0000%\u0000\u001f Create indexes automatically: \u0000\u0002\u0000\u0000\u000e\u0013i\u0000\u0001\u0013j\u0011\u0013j\u0000>\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\u0000 \u0000a\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000:\u0000 \u0002\u0013g\u0000\u0002\u0013k\u0013l\r\u0013k\u0000\u0004Z\u0000\u0000\b\t\u0018\u0013m\u0013n\r\u0013m\u0000\u0002>\u0001\u0000\b\b\u0013o\u0013p\r\u0013o\u0000\u0002n\u0000\u0000\b\b\u0013q\u0013r\r\u0013q\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0013r\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013p\u0000\u0001m\u0000\u0000\b\b\n\u0000\u0004\nnull\r\u0013n\u0000\u0001k\u0000\u0000\b\t\u0014\u0013s\u0002\u0013s\u0000\u0002\u0013t\u0013u\r\u0013t\u0000\u0002r\u0000\u0000\b\b\u0013v\u0013w\r\u0013v\u0000\u00026\u0001\u0000\b\b\u0013x\u0013y\r\u0013x\u0000\u0002n\u0000\u0000\b\b\u0013z\u0013{\r\u0013z\u0000\u00024\u0000\u0001\b\b\u0013|\n\u0000\u0004\nchbx\r\u0013|\u0000\u0001m\u0000\u0000\b\b\u0003\u0000\u0001\r\u0013{\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0013y\u0000\u0002E\u0000\u0000\b\b\u0013}\u0013~\r\u0013}\u0000\u00011\u0000\u0000\b\b\n\u0000\u0004\npnam\r\u0013~\u0000\u0001m\u0000\u0000\b\b\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001c\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000e\u0000s\r\u0013w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013u\u0000\u0002\u0013\u0013\r\u0013\u0000\u0004Z\u0000\u0000\b\t\u0012\u0013\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\b\b\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\b\b\u000b\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\r\u0013\u0000\u0001o\u0000\u0000\b\b~\u000b~\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0002n\u0000\u0001\t\u0001\t\b\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\t\u0002\t\b}\u0013|\u000b}\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t\u0002\t\u0003{\u000b{\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013\u0000\u0002\u0013z\r\u0013\u0000\u0001m\u0000\u0000\t\u0003\t\u0004y\u0003y\u0000\u0001\u0002z\u0000\u0000\u0002|\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\t\u0001\t\u0002\u0002\u0000\u0000\r\u0013\u0000\u0002n\u0000\u0001\t\u000b\t\u0012\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\t\f\t\u0012x\u0013w\u000bx\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t\f\t\rv\u000bv\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u0002\u0013\u0000\u0002\u0013u\r\u0013\u0000\u0001m\u0000\u0000\t\r\t\u000et\u0003t\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\t\u000b\t\f\u0002\u0013\u0000\u0002\u0013s\r\u0013\u0000\u0003l\u0000\u0002\t\u0013\t\u0013rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002s\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0013l\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t\u0019\t\u0019onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0013\u0000\u0002\u0013l\r\u0013\u0000\u0003l\u0000\u0001\t\u0019\t\u0019k\u0013\u0013\u0001k\u0000\u0000\f\u0013\u0000\u001b\u0000\u0015 END OF: Storage Tab.\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000*\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000S\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000T\u0000a\u0000b\u0000.\u0002l\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t\u001f\t\u001fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fg\u0013\u0013\u0001g\u0000\u0000\f\u0013\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001ff\u0013\u0013\u0001f\u0000\u0000\f\u0013\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fe\u0013\u0013\u0001e\u0000\u0000\f\u0013\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fd\u0013\u0013\u0001d\u0000\u0000\f\u0013\u0000\u0016\u0000\u0010 AUTO-ENTER TAB:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000 \u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000E\u0000N\u0000T\u0000E\u0000R\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t\u001f\t\u001fc\u0013\u0013\u0001c\u0000\u0000\f\u0013\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002r\u0000\u0000\t\u001f\t,\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\t\u001f\t*\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\t%\t*b\u0013\nb\u0000\u0004\ntabg\r\u0013\u0000\u0001m\u0000\u0000\t(\t)a\u0003a\u0000\u0001\r\u0013\u0000\u00024\u0000\u0000\t\u001f\t%`\u0013\n`\u0000\u0004\ncwin\r\u0013\u0000\u0001m\u0000\u0000\t#\t$_\u0003_\u0000\u0001\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0002\t-\t9]\u0013\\\n]\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0013\u0000\u0002n\u0000\u0000\t-\t5\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\t.\t5[\u0013\n[\u0000\u0004\nradB\r\u0013\u0000\u0001m\u0000\u0000\t1\t4\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000-\u0000E\u0000n\u0000t\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\t-\t.Z\u000bZ\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\\\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\t:\t:YXW\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\t:\t:V\u0013\u0013\u0001V\u0000\u0000\f\u0013\u0000\u0015\u0000\u000f Serial Number:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001e\u0000 \u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000N\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0004Z\u0000\u0000\t:\n\u0005\u0013\u0013UT\r\u0013\u0000\u0002>\u0001\u0000\t:\tA\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\t:\t?\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\t;\t?S\u000bS\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0013\u0000\u0001o\u0000\u0000\t:\t;R\u000bR\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\t?\t@Q\nQ\u0000\u0004\nnull\r\u0013\u0000\u0004Z\u0000\u0000\tD\n\u0001\u0013\u0013P\u0013\r\u0013\u0000\u0002=\u0000\u0003\tD\tQ\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tD\tM\u0013\u0013\r\u0013\u0000\u0001m\u0000\u0000\tI\tMO\nO\u0000\u0004\npcls\r\u0013\u0000\u0002n\u0000\u0000\tD\tI\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\tE\tIN\u000bN\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0013\u0000\u0001o\u0000\u0000\tD\tEM\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\tM\tPL\nL\u0000\u0004\nbool\r\u0013\u0000\u0002n\u0000\u0001\tT\tb\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\tU\tbK\u0013J\u000bK\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tU\t]\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\tV\t]I\u0013\nI\u0000\u0004\nchbx\r\u0013\u0000\u0001m\u0000\u0000\tY\t\\\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\tU\tVH\u000bH\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013G\r\u0013\u0000\u0001m\u0000\u0000\t]\t^F\u0003F\u0000\u0000\u0002G\u0000\u0000\u0002J\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\tT\tU\u0002P\u0000\u0000\r\u0013\u0000\u0001k\u0000\u0000\te\n\u0001\u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\te\teE\u0013\u0013\u0001E\u0000\u0000\f\u0013\u0000*\u0000$ autoSerial is a RECORD of settings:\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000H\u0000 \u0000a\u0000u\u0000t\u0000o\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000i\u0000s\u0000 \u0000a\u0000 \u0000R\u0000E\u0000C\u0000O\u0000R\u0000D\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000:\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0001\te\ts\u0013\u0013\r\u0013\u0000\u0003I\u0000\u0000\tf\tsD\u0013C\u000bD\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\tf\tn\u0013\u0013\r\u0013\u0000\u00024\u0000\u0000\tg\tnB\u0013\nB\u0000\u0004\nchbx\r\u0013\u0000\u0001m\u0000\u0000\tj\tm\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u001a\u0000S\u0000e\u0000r\u0000i\u0000a\u0000l\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\r\u0013\u0000\u0001o\u0000\u0000\tf\tgA\u000bA\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0013\u0000\u0002\u0013@\r\u0013\u0000\u0001m\u0000\u0000\tn\to?\u0003?\u0000\u0001\u0002@\u0000\u0000\u0002C\u0000\u0000\r\u0013\u0000\u0000f\u0000\u0000\te\tf\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\tt\tt>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0002\tt\tt;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0013\u0000\u0002\u0014\u0000\u0014\u0001\r\u0014\u0000\u0000\u0002n\u0000\u0001\tt\t\u0014\u0002\u0014\u0003\r\u0014\u0002\u0000\u0003I\u0000\u0000\tu\t8\u0014\u00047\u000b8\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0014\u0004\u0000\u0002\u0014\u0005\u0014\u0006\r\u0014\u0005\u0000\u00026\u0001\u0000\tu\t\u0014\u0007\u0014\b\r\u0014\u0007\u0000\u0002n\u0000\u0000\tu\t{\u0014\t\u0014\n\r\u0014\t\u0000\u00024\u0000\u0001\tv\t{6\u0014\u000b\n6\u0000\u0004\ntxtf\r\u0014\u000b\u0000\u0001m\u0000\u0000\ty\tz5\u00035\u0000\u0001\r\u0014\n\u0000\u0001o\u0000\u0000\tu\tv4\u000b4\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\b\u0000\u0002E\u0000\u0000\t~\t\u0014\f\u0014\r\r\u0014\f\u0000\u00011\u0000\u0000\t\t3\n3\u0000\u0004\npnam\r\u0014\r\u0000\u0001m\u0000\u0000\t\t\u0014\u000e\u000e\u0014\u000e\u0000\u0001\u0014\u000f\u0011\u0014\u000f\u0000\u0014\u0000n\u0000e\u0000x\u0000t\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0002\u0014\u0006\u0000\u0002\u0014\u00102\r\u0014\u0010\u0000\u0002n\u0000\u0000\t\t\u0014\u0011\u0014\u0012\r\u0014\u0011\u0000\u0001o\u0000\u0000\t\t1\u000b1\u0000\u001e0\u0000\rautonextvalue\u0000\rautoNextValue\r\u0014\u0012\u0000\u0002n\u0000\u0000\t\t\u0014\u0013\u0014\u0014\r\u0014\u0013\u0000\u0001o\u0000\u0000\t\t0\u000b0\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014\u0014\u0000\u0001o\u0000\u0000\t\t\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022\u0000\u0000\u00027\u0000\u0000\r\u0014\u0003\u0000\u0000f\u0000\u0000\tt\tu\u0002\u0014\u0001\u0000\u0002\u0014\u0015\u0014\u0016\r\u0014\u0015\u0000\u0003l\u0000\u0002\t\t.-,\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0002\u0014\u0016\u0000\u0002\u0014\u0017\u0014\u0018\r\u0014\u0017\u0000\u0002n\u0000\u0001\t\t\u0014\u0019\u0014\u001a\r\u0014\u0019\u0000\u0003I\u0000\u0000\t\t+\u0014\u001b*\u000b+\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0014\u001b\u0000\u0002\u0014\u001c\u0014\u001d\r\u0014\u001c\u0000\u00026\u0001\u0000\t\t\u0014\u001e\u0014\u001f\r\u0014\u001e\u0000\u0002n\u0000\u0000\t\t\u0014 \u0014!\r\u0014 \u0000\u00024\u0000\u0001\t\t)\u0014\"\n)\u0000\u0004\ntxtf\r\u0014\"\u0000\u0001m\u0000\u0000\t\t(\u0003(\u0000\u0001\r\u0014!\u0000\u0001o\u0000\u0000\t\t'\u000b'\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\u001f\u0000\u0002E\u0000\u0000\t\t\u0014#\u0014$\r\u0014#\u0000\u00011\u0000\u0000\t\t&\n&\u0000\u0004\npnam\r\u0014$\u0000\u0001m\u0000\u0000\t\t\u0014%\u000e\u0014%\u0000\u0001\u0014&\u0011\u0014&\u0000\u0012\u0000i\u0000n\u0000c\u0000r\u0000e\u0000m\u0000e\u0000n\u0000t\u0002\u0014\u001d\u0000\u0002\u0014'%\r\u0014'\u0000\u0002n\u0000\u0000\t\t\u0014(\u0014)\r\u0014(\u0000\u0001o\u0000\u0000\t\t$\u000b$\u0000\u001e0\u0000\rautoincrement\u0000\rautoIncrement\r\u0014)\u0000\u0002n\u0000\u0000\t\t\u0014*\u0014+\r\u0014*\u0000\u0001o\u0000\u0000\t\t#\u000b#\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014+\u0000\u0001o\u0000\u0000\t\t\"\u000b\"\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0000\u0000\u0002*\u0000\u0000\r\u0014\u001a\u0000\u0000f\u0000\u0000\t\t\u0002\u0014\u0018\u0000\u0002\u0014,\u0014-\r\u0014,\u0000\u0003l\u0000\u0002\t\t! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0014-\u0000\u0002\u0014.\u0014\/\r\u0014.\u0000\u0004Z\u0000\u0000\t\t\u00140\u00141\u00142\u001e\r\u00140\u0000\u0002=\u0000\u0003\t\t\u00143\u00144\r\u00143\u0000\u0002n\u0000\u0000\t\t\u00145\u00146\r\u00145\u0000\u0001o\u0000\u0000\t\t\u001d\u000b\u001d\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\r\u00146\u0000\u0002n\u0000\u0000\t\t\u00147\u00148\r\u00147\u0000\u0001o\u0000\u0000\t\t\u001c\u000b\u001c\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u00148\u0000\u0001o\u0000\u0000\t\t\u001b\u000b\u001b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00144\u0000\u0001m\u0000\u0000\t\t\u00149\u000e\u00149\u0000\u0001\u0014:\u0011\u0014:\u0000\u0014\u0000O\u0000n\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\r\u00141\u0000\u0002n\u0000\u0001\t\t\u0014;\u0014<\r\u0014;\u0000\u0003I\u0000\u0000\t\t\u001a\u0014=\u0019\u000b\u001a\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014=\u0000\u0002\u0014>\u0014?\r\u0014>\u0000\u0002n\u0000\u0000\t\t\u0014@\u0014A\r\u0014@\u0000\u00024\u0000\u0000\t\t\u0018\u0014B\n\u0018\u0000\u0004\nchbx\r\u0014B\u0000\u0001m\u0000\u0000\t\t\u0014C\u000e\u0014C\u0000\u0001\u0014D\u0011\u0014D\u0000$\u0000O\u0000n\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u00002\r\u0014A\u0000\u0001o\u0000\u0000\t\t\u0017\u000b\u0017\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014?\u0000\u0002\u0014E\u0016\r\u0014E\u0000\u0001m\u0000\u0000\t\t\u0015\u0003\u0015\u0000\u0001\u0002\u0016\u0000\u0000\u0002\u0019\u0000\u0000\r\u0014<\u0000\u0000f\u0000\u0000\t\t\u0002\u00142\u0000\u0002\u0014F\u0014G\r\u0014F\u0000\u0002=\u0000\u0003\t\t\u0014H\u0014I\r\u0014H\u0000\u0002n\u0000\u0000\t\t\u0014J\u0014K\r\u0014J\u0000\u0001o\u0000\u0000\t\t\u0014\u000b\u0014\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\r\u0014K\u0000\u0002n\u0000\u0000\t\t\u0014L\u0014M\r\u0014L\u0000\u0001o\u0000\u0000\t\t\u0013\u000b\u0013\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\r\u0014M\u0000\u0001o\u0000\u0000\t\t\u0012\u000b\u0012\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014I\u0000\u0001m\u0000\u0000\t\t\u0014N\u000e\u0014N\u0000\u0001\u0014O\u0011\u0014O\u0000\u0010\u0000O\u0000n\u0000C\u0000o\u0000m\u0000m\u0000i\u0000t\u0002\u0014G\u0000\u0002\u0014P\u0011\r\u0014P\u0000\u0002n\u0000\u0001\t\t\u0014Q\u0014R\r\u0014Q\u0000\u0003I\u0000\u0000\t\t\u0010\u0014S\u000f\u000b\u0010\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014S\u0000\u0002\u0014T\u0014U\r\u0014T\u0000\u0002n\u0000\u0000\t\t\u0014V\u0014W\r\u0014V\u0000\u00024\u0000\u0000\t\t\u000e\u0014X\n\u000e\u0000\u0004\nchbx\r\u0014X\u0000\u0001m\u0000\u0000\t\t\u0014Y\u000e\u0014Y\u0000\u0001\u0014Z\u0011\u0014Z\u0000 \u0000O\u0000n\u0000 \u0000c\u0000o\u0000m\u0000m\u0000i\u0000t\u0000 \u00002\u0000 \u0000o\u0000f\u0000 \u00002\r\u0014W\u0000\u0001o\u0000\u0000\t\t\r\u000b\r\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014U\u0000\u0002\u0014[\f\r\u0014[\u0000\u0001m\u0000\u0000\t\t\u000b\u0003\u000b\u0000\u0001\u0002\f\u0000\u0000\u0002\u000f\u0000\u0000\r\u0014R\u0000\u0000f\u0000\u0000\t\t\u0002\u0011\u0000\u0000\u0001\u001e\u0000\u0000\u0002\u0014\/\u0000\u0002\u0014\\\n\r\u0014\\\u0000\u0003l\u0000\u0002\n\u0000\n\u0000\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\n\u0000\u0000\u0002U\u0000\u0000\u0001T\u0000\u0000\u0002\u0013\u0000\u0002\u0014]\u0014^\r\u0014]\u0000\u0003l\u0000\u0002\n\u0006\n\u0006\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0014^\u0000\u0002\u0014_\u0014`\r\u0014_\u0000\u0003l\u0000\u0002\n\u0006\n\u0006\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0014`\u0000\u0002\u0014a\u0014b\r\u0014a\u0000\u0003l\u0000\u0001\n\u0006\n\u0006\u0000\u0014c\u0014d\u0001\u0000\u0000\u0000\f\u0014c\u0000A\u0000; Special Value (creation,modification,last visited record):\u0000\u0002\u0000\u0000\u000e\u0014d\u0000\u0001\u0014e\u0011\u0014e\u0000v\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000V\u0000a\u0000l\u0000u\u0000e\u0000 \u0000(\u0000c\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000)\u0000:\u0002\u0014b\u0000\u0002\u0014f\u0014g\r\u0014f\u0000\u0004Z\u0000\u0000\n\u0006\u000b\u0014h\u0014i\r\u0014h\u0000\u0002>\u0001\u0000\n\u0006\n\r\u0014j\u0014k\r\u0014j\u0000\u0002n\u0000\u0000\n\u0006\n\u000b\u0014l\u0014m\r\u0014l\u0000\u0001o\u0000\u0000\n\u0007\n\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014m\u0000\u0001o\u0000\u0000\n\u0006\n\u0007\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014k\u0000\u0001m\u0000\u0000\n\u000b\n\f\n\u0000\u0004\nnull\r\u0014i\u0000\u0001k\u0000\u0000\n\u0010\u000b\u0014n\u0002\u0014n\u0000\u0002\u0014o\u0014p\r\u0014o\u0000\u0003l\u0000\u0001\n\u0010\n\u0010\u0014q\u0014r\u0001\u0000\u0000\f\u0014q\u0000\u0000 autoEnterSpecialValue: keywords used in FM-XML: PreviousRecord, CreationAccountName, CreationUserName,CreationTimestamp, ModificationAccountName, et al.\u0000\u0002\u0000\u0000\u000e\u0014r\u0000\u0001\u0014s\u0011\u0014s\u00012\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000S\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000V\u0000a\u0000l\u0000u\u0000e\u0000:\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000s\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000-\u0000X\u0000M\u0000L\u0000:\u0000 \u0000P\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\u0000,\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000,\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000t\u0000 \u0000a\u0000l\u0000.\u0002\u0014p\u0000\u0002\u0014t\u0014u\r\u0014t\u0000\u0004Z\u0000\u0000\n\u0010\u000b\u0014v\u0014w\u0014x\r\u0014v\u0000\u0002=\u0000\u0003\n\u0010\n\u0019\u0014y\u0014z\r\u0014y\u0000\u0002n\u0000\u0000\n\u0010\n\u0015\u0014{\u0014|\r\u0014{\u0000\u0001o\u0000\u0000\n\u0011\n\u0015\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014|\u0000\u0001o\u0000\u0000\n\u0010\n\u0011\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014z\u0000\u0001m\u0000\u0000\n\u0015\n\u0018\u0014}\u000e\u0014}\u0000\u0001\u0014~\u0011\u0014~\u0000\u001c\u0000P\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\r\u0014w\u0000\u0001k\u0000\u0000\n\u001c\n9\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\n\u001c\n7\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\n\u001d\n7\u0014\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u00026\u0001\u0000\n\u001d\n2\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\u001d\n#\u0014\u0014\r\u0014\u0000\u00024\u0000\u0001\n\u001e\n#\u0014\n\u0000\u0004\nchbx\r\u0014\u0000\u0001m\u0000\u0000\n!\n\"\u0003\u0000\u0001\r\u0014\u0000\u0001o\u0000\u0000\n\u001d\n\u001e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0014\u0000\u0002E\u0000\u0000\n&\n1\u0014\u0014\r\u0014\u0000\u00011\u0000\u0000\n'\n+\n\u0000\u0004\npnam\r\u0014\u0000\u0001m\u0000\u0000\n,\n0\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0001m\u0000\u0000\n2\n3\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\n\u001c\n\u001d\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0003l\u0000\u0002\n8\n8\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0014x\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002C\u0000\u0000\n<\nE\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n<\nA\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n=\nA\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n<\n=\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nA\nD\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001k\u0000\u0000\nH\n\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0004Z\u0000\u0000\nH\n\u0014\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\nH\nQ\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\nH\nM\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\nI\nM\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\nH\nI\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nM\nP\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000 \u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0002r\u0000\u0000\nT\nY\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\nT\nW\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\\\ne\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\\\na\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n]\na\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\\\n]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\na\nd\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000N\u0000a\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\nh\nm\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\nh\nk\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\np\ny\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\np\nu\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\nq\nu\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\np\nq\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\nu\nx\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000&\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n|\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n|\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\"\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u00002\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000 \u0000(\u0000D\u0000a\u0000t\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000T\u0000i\u0000m\u0000e\u0000)\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000T\u0000i\u0000m\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002=\u0000\u0003\n\n\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0018\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0000D\u0000a\u0000t\u0000e\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0002r\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\b\u0000D\u0000a\u0000t\u0000e\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\n\n\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\n\n\u0014\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\n\n\u0014\u0014\r\u0014\u0000\u00024\u0000\u0000\n\n\u0014\n\u0000\u0004\npopB\r\u0014\u0000\u0001m\u0000\u0000\n\n\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\n\n\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0003l\u0000\u0002\n\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0015\u0000\r\u0014\u0000\u0002C\u0000\u0000\n\n\u0015\u0001\u0015\u0002\r\u0015\u0001\u0000\u0002n\u0000\u0000\n\n\u0015\u0003\u0015\u0004\r\u0015\u0003\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0004\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0002\u0000\u0001m\u0000\u0000\n\n\u0015\u0005\u000e\u0015\u0005\u0000\u0001\u0015\u0006\u0011\u0015\u0006\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0000\u0002\u0015\u0007\u0015\b\r\u0015\u0007\u0000\u0001k\u0000\u0000\n\u000bk\u0015\t\u0002\u0015\t\u0000\u0002\u0015\n\u0015\u000b\r\u0015\n\u0000\u0004Z\u0000\u0000\n\u000bZ\u0015\f\u0015\r\u0015\u000e\r\u0015\f\u0000\u0002=\u0000\u0003\n\n\u0015\u000f\u0015\u0010\r\u0015\u000f\u0000\u0002n\u0000\u0000\n\n\u0015\u0011\u0015\u0012\r\u0015\u0011\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0012\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0010\u0000\u0001m\u0000\u0000\n\n\u0015\u0013\u000e\u0015\u0013\u0000\u0001\u0015\u0014\u0011\u0015\u0014\u0000(\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000U\u0000s\u0000e\u0000r\u0000N\u0000a\u0000m\u0000e\r\u0015\r\u0000\u0002r\u0000\u0000\n\n\u0015\u0015\u0015\u0016\r\u0015\u0015\u0000\u0001m\u0000\u0000\n\n\u0015\u0017\u000e\u0015\u0017\u0000\u0001\u0015\u0018\u0011\u0015\u0018\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0015\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015\u000e\u0000\u0002\u0015\u0019\u0015\u001a\r\u0015\u0019\u0000\u0002=\u0000\u0003\n\n\u0015\u001b\u0015\u001c\r\u0015\u001b\u0000\u0002n\u0000\u0000\n\n\u0015\u001d\u0015\u001e\r\u0015\u001d\u0000\u0001o\u0000\u0000\n\n\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u001e\u0000\u0001o\u0000\u0000\n\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u001c\u0000\u0001m\u0000\u0000\n\n\u0015\u001f\u000e\u0015\u001f\u0000\u0001\u0015 \u0011\u0015 \u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000N\u0000a\u0000m\u0000e\u0002\u0015\u001a\u0000\u0002\u0015!\u0015\"\r\u0015!\u0000\u0002r\u0000\u0000\u000b\u0001\u000b\u0006\u0015#\u0015$\r\u0015#\u0000\u0001m\u0000\u0000\u000b\u0001\u000b\u0004\u0015%\u000e\u0015%\u0000\u0001\u0015&\u0011\u0015&\u0000\b\u0000N\u0000a\u0000m\u0000e\r\u0015$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015\"\u0000\u0002\u0015'\u0015(\r\u0015'\u0000\u0002=\u0000\u0003\u000b\t\u000b\u0012\u0015)\u0015*\r\u0015)\u0000\u0002n\u0000\u0000\u000b\t\u000b\u000e\u0015+\u0015,\r\u0015+\u0000\u0001o\u0000\u0000\u000b\n\u000b\u000e\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015,\u0000\u0001o\u0000\u0000\u000b\t\u000b\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015*\u0000\u0001m\u0000\u0000\u000b\u000e\u000b\u0011\u0015-\u000e\u0015-\u0000\u0001\u0015.\u0011\u0015.\u0000.\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0002\u0015(\u0000\u0002\u0015\/\u00150\r\u0015\/\u0000\u0002r\u0000\u0000\u000b\u0015\u000b\u001a\u00151\u00152\r\u00151\u0000\u0001m\u0000\u0000\u000b\u0015\u000b\u0018\u00153\u000e\u00153\u0000\u0001\u00154\u0011\u00154\u0000\u0018\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\r\u00152\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u00150\u0000\u0002\u00155\u00156\r\u00155\u0000\u0002=\u0000\u0003\u000b\u001d\u000b&\u00157\u00158\r\u00157\u0000\u0002n\u0000\u0000\u000b\u001d\u000b\"\u00159\u0015:\r\u00159\u0000\u0001o\u0000\u0000\u000b\u001e\u000b\"\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015:\u0000\u0001o\u0000\u0000\u000b\u001d\u000b\u001e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u00158\u0000\u0001m\u0000\u0000\u000b\"\u000b%\u0015;\u000e\u0015;\u0000\u0001\u0015<\u0011\u0015<\u0000*\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u00156\u0000\u0002\u0015=\u0015>\r\u0015=\u0000\u0002r\u0000\u0000\u000b)\u000b.\u0015?\u0015@\r\u0015?\u0000\u0001m\u0000\u0000\u000b)\u000b,\u0015A\u000e\u0015A\u0000\u0001\u0015B\u0011\u0015B\u00002\u0000T\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0000 \u0000(\u0000D\u0000a\u0000t\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000T\u0000i\u0000m\u0000e\u0000)\r\u0015@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015>\u0000\u0002\u0015C\u0015D\r\u0015C\u0000\u0002=\u0000\u0003\u000b1\u000b:\u0015E\u0015F\r\u0015E\u0000\u0002n\u0000\u0000\u000b1\u000b6\u0015G\u0015H\r\u0015G\u0000\u0001o\u0000\u0000\u000b2\u000b6\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015H\u0000\u0001o\u0000\u0000\u000b1\u000b2\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015F\u0000\u0001m\u0000\u0000\u000b6\u000b9\u0015I\u000e\u0015I\u0000\u0001\u0015J\u0011\u0015J\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000T\u0000i\u0000m\u0000e\u0002\u0015D\u0000\u0002\u0015K\u0015L\r\u0015K\u0000\u0002r\u0000\u0000\u000b=\u000bB\u0015M\u0015N\r\u0015M\u0000\u0001m\u0000\u0000\u000b=\u000b@\u0015O\u000e\u0015O\u0000\u0001\u0015P\u0011\u0015P\u0000\b\u0000T\u0000i\u0000m\u0000e\r\u0015N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0015L\u0000\u0002\u0015Q\u0015R\r\u0015Q\u0000\u0002=\u0000\u0003\u000bE\u000bN\u0015S\u0015T\r\u0015S\u0000\u0002n\u0000\u0000\u000bE\u000bJ\u0015U\u0015V\r\u0015U\u0000\u0001o\u0000\u0000\u000bF\u000bJ\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015V\u0000\u0001o\u0000\u0000\u000bE\u000bF\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015T\u0000\u0001m\u0000\u0000\u000bJ\u000bM\u0015W\u000e\u0015W\u0000\u0001\u0015X\u0011\u0015X\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000D\u0000a\u0000t\u0000e\u0002\u0015R\u0000\u0002\u0015Y\r\u0015Y\u0000\u0002r\u0000\u0000\u000bQ\u000bV\u0015Z\u0015[\r\u0015Z\u0000\u0001m\u0000\u0000\u000bQ\u000bT\u0015\\\u000e\u0015\\\u0000\u0001\u0015]\u0011\u0015]\u0000\b\u0000D\u0000a\u0000t\u0000e\r\u0015[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u000b\u0000\u0002\u0015^\u0015_\r\u0015^\u0000\u0002n\u0000\u0001\u000b[\u000bi\u0015`\u0015a\r\u0015`\u0000\u0003I\u0000\u0000\u000b\\\u000bi\u0015b\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0015b\u0000\u0002\u0015c\u0015d\r\u0015c\u0000\u0002n\u0000\u0000\u000b\\\u000bd\u0015e\u0015f\r\u0015e\u0000\u00024\u0000\u0000\u000b]\u000bd\u0015g\n\u0000\u0004\npopB\r\u0015g\u0000\u0001m\u0000\u0000\u000b`\u000bc\u0015h\u000e\u0015h\u0000\u0001\u0015i\u0011\u0015i\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0015f\u0000\u0001o\u0000\u0000\u000b\\\u000b]\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0015d\u0000\u0002\u0015j\r\u0015j\u0000\u0001o\u0000\u0000\u000bd\u000be\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015a\u0000\u0000f\u0000\u0000\u000b[\u000b\\\u0002\u0015_\u0000\u0002\u0015k\u0015l\r\u0015k\u0000\u0003l\u0000\u0002\u000bj\u000bj\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015l\u0000\u0002\u0015m\r\u0015m\u0000\u0003l\u0000\u0002\u000bj\u000bj\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0015\b\u0000\u0002\u0015n\u0015o\r\u0015n\u0000\u0002=\u0000\u0001\u000bn\u000bw\u0015p\u0015q\r\u0015p\u0000\u0002n\u0000\u0000\u000bn\u000bs\u0015r\u0015s\r\u0015r\u0000\u0001o\u0000\u0000\u000bo\u000bs\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015s\u0000\u0001o\u0000\u0000\u000bn\u000bo\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015q\u0000\u0001m\u0000\u0000\u000bs\u000bv\u0015t\u000e\u0015t\u0000\u0001\u0015u\u0011\u0015u\u0000\b\u0000N\u0000O\u0000N\u0000E\u0002\u0015o\u0000\u0002\u0015v\u0015w\r\u0015v\u0000\u0001k\u0000\u0000\u000bz\u000b\u0015x\u0002\u0015x\u0000\u0002\u0015y\u0015z\r\u0015y\u0000\u0003l\u0000\u0001\u000bz\u000bz\u0015{\u0015|\u0001\u0000\u0000\f\u0015{\u0000:\u00004 need to make sure NO special values are checked on:\u0000\u0002\u0000\u0000\u000e\u0015|\u0000\u0001\u0015}\u0011\u0015}\u0000h\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000N\u0000O\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0000 \u0000a\u0000r\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000 \u0000o\u0000n\u0000:\u0002\u0015z\u0000\u0002\u0015~\u0015\r\u0015~\u0000\u0002n\u0000\u0001\u000bz\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b{\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b{\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b{\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b|\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b{\u000b|\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002=\u0000\u0003\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\ntitl\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0010\u0000C\u0000r\u0000e\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000bz\u000b{\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002=\u0000\u0003\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\ntitl\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0018\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000b\u000b\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\u000b\u000b\u0015\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000b\u0015\n\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002E\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\u000b\n\u0000\u0004\npnam\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0018\u0000l\u0000a\u0000s\u0000t\u0000 \u0000v\u0000i\u0000s\u0000i\u0000t\u0000e\u0000d\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\u000b\u000b\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0015w\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002=\u0000\u0001\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000b\n\u0000\u0004\nnull\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0001\u000b\u000b\u0015\u0015\u0001\u0000\u0000\f\u0015\u0000*\u0000$ do not change any of the checkboxes\u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000H\u0000 \u0000d\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000a\u0000n\u0000y\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000e\u0000s\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014u\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014g\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0002\u000b\u000b|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0001\u000b\u000by\u0015\u0015\u0001y\u0000\u0000\f\u0015\u0000\u0011\u0000\u000b Constant: \u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0016\u0000 \u0000C\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000:\u0000 \u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0004Z\u0000\u0000\u000b\fR\u0015\u0015xw\r\u0015\u0000\u0002>\u0001\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bv\u000bv\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bu\u000bu\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000bt\nt\u0000\u0004\nnull\r\u0015\u0000\u0001k\u0000\u0000\u000b\fN\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002r\u0000\u0000\u000b\f\t\u0015\u0015\r\u0015\u0000\u00026\u0001\u0000\u000b\f\u0007\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u000b\u000b\u0015\u0015\r\u0015\u0000\u00024\u0000\u0001\u000b\u000bs\u0015\ns\u0000\u0004\nchbx\r\u0015\u0000\u0001m\u0000\u0000\u000b\u000br\u0003r\u0000\u0001\r\u0015\u0000\u0001o\u0000\u0000\u000b\u000bq\u000bq\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0015\u0000\u0002E\u0000\u0000\u000b\f\u0006\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u000b\f\u0000p\np\u0000\u0004\npnam\r\u0015\u0000\u0001m\u0000\u0000\f\u0001\f\u0005\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\b\u0000D\u0000a\u0000t\u0000a\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0004Z\u0000\u0000\f\n\fL\u0015\u0015n\u0015\r\u0015\u0000\u0002n\u0000\u0000\f\n\f\u0010\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u000b\f\u000fm\u000bm\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\r\u0015\u0000\u0001o\u0000\u0000\f\n\f\u000bl\u000bl\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001k\u0000\u0000\f\u0013\fB\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0001\f\u0013\f\u001a\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\f\u0014\f\u001ak\u0015j\u000bk\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u0014\f\u0015i\u000bi\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0015\u0000\u0002\u0015h\r\u0015\u0000\u0001m\u0000\u0000\f\u0015\f\u0016g\u0003g\u0000\u0001\u0002h\u0000\u0000\u0002j\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\f\u0013\f\u0014\u0002\u0015\u0000\u0002\u0015f\r\u0015\u0000\u0004Z\u0000\u0000\f\u001b\fB\u0015\u0015e\u0015\r\u0015\u0000\u0002=\u0000\u0003\f\u001b\f\"\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\f\u001b\f \u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\f\u001c\f d\u000bd\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u0015\u0000\u0001o\u0000\u0000\f\u001b\f\u001cc\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\f \f!b\nb\u0000\u0004\nnull\r\u0015\u0000\u0003l\u0000\u0001\f%\f%a\u0015\u0015\u0001a\u0000\u0000\f\u0015\u00007\u00001 Possibly null if autoEnterIsConstant is false...\u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000b\u0000 \u0000P\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000y\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000i\u0000f\u0000 \u0000a\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000I\u0000s\u0000C\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000 \u0000i\u0000s\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000.\u0000.\u0000.\u0002e\u0000\u0000\r\u0015\u0000\u0002n\u0000\u0001\f)\fB\u0015\u0015\r\u0015\u0000\u0003I\u0000\u0000\f*\fB`\u0015_\u000b`\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\f*\f9\u0015\u0015\r\u0015\u0000\u00024\u0000\u0000\f2\f9^\u0015\n^\u0000\u0004\ntxta\r\u0015\u0000\u0001m\u0000\u0000\f5\f8\u0015\u000e\u0015\u0000\u0001\u0016\u0000\u0011\u0016\u0000\u0000\n\u0000D\u0000a\u0000t\u0000a\u0000:\r\u0015\u0000\u0002n\u0000\u0000\f*\f2\u0016\u0001\u0016\u0002\r\u0016\u0001\u0000\u00024\u0000\u0000\f+\f2]\u0016\u0003\n]\u0000\u0004\nscra\r\u0016\u0003\u0000\u0001m\u0000\u0000\f.\f1\u0016\u0004\u000e\u0016\u0004\u0000\u0001\u0016\u0005\u0011\u0016\u0005\u0000\n\u0000D\u0000a\u0000t\u0000a\u0000:\r\u0016\u0002\u0000\u0001o\u0000\u0000\f*\f+\\\u000b\\\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0015\u0000\u0002\u0016\u0006[\r\u0016\u0006\u0000\u0002n\u0000\u0000\f9\f>\u0016\u0007\u0016\b\r\u0016\u0007\u0000\u0001o\u0000\u0000\f:\f>Z\u000bZ\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\r\u0016\b\u0000\u0001o\u0000\u0000\f9\f:Y\u000bY\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002[\u0000\u0000\u0002_\u0000\u0000\r\u0015\u0000\u0000f\u0000\u0000\f)\f*\u0002f\u0000\u0000\u0002n\u0000\u0000\r\u0015\u0000\u0002n\u0000\u0001\fE\fL\u0016\t\u0016\n\r\u0016\t\u0000\u0003I\u0000\u0000\fF\fLX\u0016\u000bW\u000bX\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0016\u000b\u0000\u0002\u0016\f\u0016\r\r\u0016\f\u0000\u0001o\u0000\u0000\fF\fGV\u000bV\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u0002\u0016\r\u0000\u0002\u0016\u000eU\r\u0016\u000e\u0000\u0001m\u0000\u0000\fG\fHT\u0003T\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\r\u0016\n\u0000\u0000f\u0000\u0000\fE\fF\u0002\u0015\u0000\u0002\u0016\u000f\u0016\u0010\r\u0016\u000f\u0000\u0003l\u0000\u0002\fM\fMSRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0016\u0010\u0000\u0002\u0016\u0011\u0016\u0012\r\u0016\u0011\u0000\u0003l\u0000\u0002\fM\fMPON\u0001P\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0016\u0012\u0000\u0002\u0016\u0013M\r\u0016\u0013\u0000\u0003l\u0000\u0002\fM\fMLKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002M\u0000\u0000\u0002x\u0000\u0000\u0001w\u0000\u0000\u0002\u0015\u0000\u0002\u0016\u0014\u0016\u0015\r\u0016\u0014\u0000\u0003l\u0000\u0002\fS\fSIHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0016\u0015\u0000\u0002\u0016\u0016\u0016\u0017\r\u0016\u0016\u0000\u0004Z\u0000\u0000\fS\fb\u0016\u0018\u0016\u0019FE\r\u0016\u0018\u0000\u0002>\u0001\u0000\fS\fZ\u0016\u001a\u0016\u001b\r\u0016\u001a\u0000\u0002n\u0000\u0000\fS\fX\u0016\u001c\u0016\u001d\r\u0016\u001c\u0000\u0001o\u0000\u0000\fT\fXD\u000bD\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\r\u0016\u001d\u0000\u0001o\u0000\u0000\fS\fTC\u000bC\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u001b\u0000\u0001m\u0000\u0000\fX\fYB\nB\u0000\u0004\nnull\r\u0016\u0019\u0000\u0001k\u0000\u0000\f]\f]\u0016\u001e\u0002\u0016\u001e\u0000\u0002\u0016\u001f\u0016 \r\u0016\u001f\u0000\u0003l\u0000\u0001\f]\f]A\u0016!\u0016\"\u0001A\u0000\u0000\f\u0016!\u0000\u001e\u0000\u0018 NOT YET SUPPORTED!!!!!\t\u0000\u0002\u0000\u0000\u000e\u0016\"\u0000\u0001\u0016#\u0011\u0016#\u00000\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0002\u0016 \u0000\u0002\u0016$\u0016%\r\u0016$\u0000\u0003l\u0000\u0001\f]\f]@\u0016&\u0016'\u0001@\u0000\u0000\f\u0016&\u0000\u001e\u0000\u0018 NOT YET SUPPORTED!!!!!\t\u0000\u0002\u0000\u0000\u000e\u0016'\u0000\u0001\u0016(\u0011\u0016(\u00000\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0002\u0016%\u0000\u0002\u0016)?\r\u0016)\u0000\u0003l\u0000\u0001\f]\f]>\u0016*\u0016+\u0001>\u0000\u0000\f\u0016*\u0000$\u0000\u001e NOT YET SUPPORTED!!!!!\t\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0016+\u0000\u0001\u0016,\u0011\u0016,\u0000<\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000!\u0000!\u0000!\u0000!\u0000!\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002?\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u0016\u0017\u0000\u0002\u0016-\u0016.\r\u0016-\u0000\u0003l\u0000\u0002\fc\fc=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0016.\u0000\u0002\u0016\/\u00160\r\u0016\/\u0000\u0003l\u0000\u0002\fc\fc:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00160\u0000\u0002\u00161\u00162\r\u00161\u0000\u0003l\u0000\u0001\fc\fc7\u00163\u00164\u00017\u0000\u0000\f\u00163\u0000\u001e\u0000\u0018 AutoEnter Calculation: \u0000\u0002\u0000\u0000\u000e\u00164\u0000\u0001\u00165\u0011\u00165\u00000\u0000 \u0000A\u0000u\u0000t\u0000o\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u00162\u0000\u0002\u00166\u00167\r\u00166\u0000\u0004Z\u0000\u0000\fc\u000e\f\u00168\u0016965\r\u00168\u0000\u0002>\u0001\u0000\fc\fj\u0016:\u0016;\r\u0016:\u0000\u0002n\u0000\u0000\fc\fh\u0016<\u0016=\r\u0016<\u0000\u0001o\u0000\u0000\fd\fh4\u000b4\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u0016=\u0000\u0001o\u0000\u0000\fc\fd3\u000b3\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016;\u0000\u0001m\u0000\u0000\fh\fi2\n2\u0000\u0004\nnull\r\u00169\u0000\u0001k\u0000\u0000\fm\u000e\b\u0016>\u0002\u0016>\u0000\u0002\u0016?\u0016@\r\u0016?\u0000\u0004Z\u0000\u0000\fm\u000e\u0006\u0016A\u0016B1\u0016C\r\u0016A\u0000\u0001H\u0000\u0000\fm\fs\u0016D\r\u0016D\u0000\u0002n\u0000\u0000\fm\fr\u0016E\u0016F\r\u0016E\u0000\u0001o\u0000\u0000\fn\fr0\u000b0\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\r\u0016F\u0000\u0001o\u0000\u0000\fm\fn\/\u000b\/\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016B\u0000\u0001k\u0000\u0000\fv\f\u0016G\u0002\u0016G\u0000\u0002\u0016H\u0016I\r\u0016H\u0000\u0003l\u0000\u0001\fv\fv.\u0016J\u0016K\u0001.\u0000\u0000\f\u0016J\u0000+\u0000% Need to make sure it is NOT checked:\u0000\u0002\u0000\u0000\u000e\u0016K\u0000\u0001\u0016L\u0011\u0016L\u0000J\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000:\u0002\u0016I\u0000\u0002\u0016M\u0016N\r\u0016M\u0000\u0002n\u0000\u0001\fv\f\u0016O\u0016P\r\u0016O\u0000\u0003I\u0000\u0000\fw\f-\u0016Q,\u000b-\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0016Q\u0000\u0002\u0016R\u0016S\r\u0016R\u0000\u0002n\u0000\u0000\fw\f\u0016T\u0016U\r\u0016T\u0000\u00024\u0000\u0000\fx\f+\u0016V\n+\u0000\u0004\nchbx\r\u0016V\u0000\u0001m\u0000\u0000\f{\f~\u0016W\u000e\u0016W\u0000\u0001\u0016X\u0011\u0016X\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\r\u0016U\u0000\u0001o\u0000\u0000\fw\fx*\u000b*\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0016S\u0000\u0002\u0016Y)\r\u0016Y\u0000\u0001m\u0000\u0000\f\f(\u0003(\u0000\u0000\u0002)\u0000\u0000\u0002,\u0000\u0000\r\u0016P\u0000\u0000f\u0000\u0000\fv\fw\u0002\u0016N\u0000\u0002\u0016Z'\r\u0016Z\u0000\u0003l\u0000\u0002\f\f&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002'\u0000\u0000\u00021\u0000\u0000\r\u0016C\u0000\u0003l\u0000\u0003\f\u000e\u0006\u0016[\u0016\\\u0016]\r\u0016[\u0000\u0001k\u0000\u0000\f\u000e\u0006\u0016^\u0002\u0016^\u0000\u0002\u0016_\u0016`\r\u0016_\u0000\u0002r\u0000\u0000\f\f\u0016a\u0016b\r\u0016a\u0000\u0002n\u0000\u0000\f\f\u0016c\u0016d\r\u0016c\u0000\u00024\u0000\u0000\f\f#\u0016e\n#\u0000\u0004\nchbx\r\u0016e\u0000\u0001m\u0000\u0000\f\f\u0016f\u000e\u0016f\u0000\u0001\u0016g\u0011\u0016g\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\r\u0016d\u0000\u0001o\u0000\u0000\f\f\"\u000b\"\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000!\u000b!\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u0002\u0016`\u0000\u0002\u0016h\u0016i\r\u0016h\u0000\u0003l\u0000\u0001\f\f \u0016j\u0016k\u0001 \u0000\u0000\f\u0016j\u0000G\u0000A if the checkbox is already checked, need to click Specify button\u0000\u0002\u0000\u0000\u000e\u0016k\u0000\u0001\u0016l\u0011\u0016l\u0000\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000 \u0000i\u0000s\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000,\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0016i\u0000\u0002\u0016m\u0016n\r\u0016m\u0000\u0003l\u0000\u0001\f\f\u001f\u0016o\u0016p\u0001\u001f\u0000\u0000\f\u0016o\u0000^\u0000X if not already checked, checking it opens the window, so use special function for click\u0000\u0002\u0000\u0000\u000e\u0016p\u0000\u0001\u0016q\u0011\u0016q\u0000\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000,\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000i\u0000n\u0000g\u0000 \u0000i\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000,\u0000 \u0000s\u0000o\u0000 \u0000u\u0000s\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000a\u0000l\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000o\u0000r\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0002\u0016n\u0000\u0002\u0016r\u0016s\r\u0016r\u0000\u0004Z\u0000\u0000\f\f\u0016t\u0016u\u001e\u0016v\r\u0016t\u0000\u0002>\u0001\u0000\f\f\u0016w\u0016x\r\u0016w\u0000\u0002n\u0000\u0000\f\f\u0016y\u0016z\r\u0016y\u0000\u00011\u0000\u0000\f\f\u001d\n\u001d\u0000\u0004\nvalL\r\u0016z\u0000\u0001o\u0000\u0000\f\f\u001c\u000b\u001c\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\r\u0016x\u0000\u0001m\u0000\u0000\f\f\u001b\u0003\u001b\u0000\u0001\r\u0016u\u0000\u0002n\u0000\u0001\f\f\u0016{\u0016|\r\u0016{\u0000\u0003I\u0000\u0000\f\f\u001a\u0016}\u0019\u000b\u001a\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0016}\u0000\u0002\u0016~\u0018\r\u0016~\u0000\u0001o\u0000\u0000\f\f\u0017\u000b\u0017\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\r\u0016|\u0000\u0000f\u0000\u0000\f\f\u0002\u001e\u0000\u0000\r\u0016v\u0000\u0001k\u0000\u0000\f\f\u0016\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\u0016\u0016\u0016\u0001\u0016\u0000\u0000\f\u0016\u0000\\\u0000V there are TWO buttons named \"Specify\" - the first is for CALC, second is for lookup:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000T\u0000W\u0000O\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000n\u0000a\u0000m\u0000e\u0000d\u0000 \u0000\"\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y &\u0000\"\u0000 \u0000-\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000C\u0000A\u0000L\u0000C\u0000,\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000 \u0000i\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000u\u0000p\u0000:\u0002\u0016\u0000\u0002\u0016\u0015\r\u0016\u0000\u0002n\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\f\u0014\u0016\u0013\u000b\u0014\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0016\u0000\u0002\u0016\u0012\r\u0016\u0000\u00026\u0001\u0000\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00024\u0000\u0001\f\f\u0011\u0016\n\u0011\u0000\u0004\nbutT\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0010\u0003\u0010\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000f\u000b\u000f\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016\u0000\u0002C\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\f\f\u000e\n\u000e\u0000\u0004\npnam\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u000e\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0002\u0012\u0000\u0000\u0002\u0013\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0015\u0000\u0000\u0002\u0016s\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\n\u0016\u0016\u0001\n\u0000\u0000\f\u0016\u0000+\u0000% wait for Specify Calculation window:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000J\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\f\t\u0016\b\u000b\t\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\u0016\u0000\u0002\u0016\u0007\r\u0016\u0000\u0001K\u0000\u0000\f\f\u0016\u0006\u0016\u0000\u0003\u0006\u0016\u0005\u000b\u0006\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0005\u0000\u0000\u0002\u0007\u0000\u0000\u0002\b\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\f\f\u0001\u0016\n\u0001\u0000\u0004\ncwin\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0000\u0003\u0000\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\f\f\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000\u0018\u0000\u0012 CALCULATION CODE:\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000$\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0004Z\u0000\u0000\f\f\u0016\u0016\u0016\r\u0016\u0000\u0002=\u0000\u0001\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\f\f\n\u0000\u0004\nleng\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0003\u0000\u0000\r\u0016\u0000\u0001k\u0000\u0000\f\f\u0016\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0000\f\f\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000\u0000 if for some reason an empty string is specified, we want to force an error in FM's syntax checker for the validation calc box instead of silently allowing an empty string as the validation calc. \u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0001\u0000 \u0000i\u0000f\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000r\u0000e\u0000a\u0000s\u0000o\u0000n\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000c\u0000e\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000'\u0000s\u0000 \u0000s\u0000y\u0000n\u0000t\u0000a\u0000x\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000b\u0000o\u0000x\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0000 \u0000o\u0000f\u0000 \u0000s\u0000i\u0000l\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000.\u0000 \u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0001\u001a\u0000i\u0000f\u0000 \u0000(\u0000 \u0000\/\u0000*\u0000 \u0000a\u0000u\u0000t\u0000o\u0000-\u0000e\u0000n\u0000t\u0000e\u0000r\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000r\u0000a\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000a\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000c\u0000a\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000b\u0000u\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000t\u0000o\u0000o\u0000l\u0000.\u0000 \u0000*\u0000\/\u0000 \u0000)\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0002r\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\f\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\r\u0016\u0000\u0001o\u0000\u0000\f\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\f\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0001\f\r\u0011\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\f\r\u0011\u0016\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\f\r\n\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\r\u0005\r\n\u0016\n\u0000\u0004\ntxta\r\u0016\u0000\u0001m\u0000\u0000\r\b\r\t\u0003\u0000\u0001\r\u0016\u0000\u0002n\u0000\u0000\f\r\u0005\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\f\r\u0005\u0016\n\u0000\u0004\nscra\r\u0016\u0000\u0001m\u0000\u0000\r\u0001\r\u0004\u0003\u0000\u0004\r\u0016\u0000\u00024\u0000\u0000\f\f\u0016\n\u0000\u0004\ncwin\r\u0016\u0000\u0001m\u0000\u0000\f\f\u0003\u0000\u0001\u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0001o\u0000\u0000\r\n\r\r\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\f\f\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\r\u0012\r\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\r\u0012\r\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\r\u0012\r\u0012\u0016\u0016\u0001\u0000\u0000\f\u0016\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0004Z\u0000\u0000\r\u0012\r;\u0016\u0016\r\u0016\u0000\u0002>\u0001\u0000\r\u0012\r\u0017\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\r\u0012\r\u0015\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\r\u0013\r\u0015\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u0016\u0000\u0001o\u0000\u0000\r\u0012\r\u0013\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\r\u0015\r\u0016\n\u0000\u0004\nnull\r\u0016\u0000\u0002n\u0000\u0001\r\u001a\r7\u0016\u0016\r\u0016\u0000\u0003I\u0000\u0000\r\u001b\r7\u0016\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u00026\u0001\u0000\r\u001b\r0\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\r\u001b\r!\u0016\u0016\r\u0016\u0000\u00024\u0000\u0001\r\u001c\r!\u0016\n\u0000\u0004\npopB\r\u0016\u0000\u0001m\u0000\u0000\r\u001f\r \u0003\u0000\u0001\r\u0016\u0000\u0001o\u0000\u0000\r\u001b\r\u001c\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0016\u0000\u0002E\u0000\u0000\r$\r\/\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\r%\r)\n\u0000\u0004\npnam\r\u0016\u0000\u0001m\u0000\u0000\r*\r.\u0016\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\u0016\u0000\u0002\u0016\r\u0016\u0000\u0002n\u0000\u0000\r0\r3\u0016\u0017\u0000\r\u0016\u0000\u0001o\u0000\u0000\r1\r3\u000b\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\r\u0017\u0000\u0000\u0001o\u0000\u0000\r0\r1\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0016\u0000\u0000f\u0000\u0000\r\u001a\r\u001b\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0002\u0017\u0001\u0017\u0002\r\u0017\u0001\u0000\u0003l\u0000\u0002\r<\r<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017\u0002\u0000\u0002\u0017\u0003\u0017\u0004\r\u0017\u0003\u0000\u0003l\u0000\u0001\r<\r<\u0017\u0005\u0017\u0006\u0001\u0000\u0000\f\u0017\u0005\u00009\u00003 Do Not Evaluate if all referenced field are empty:\u0000\u0002\u0000\u0000\u000e\u0017\u0006\u0000\u0001\u0017\u0007\u0011\u0017\u0007\u0000f\u0000 \u0000D\u0000o\u0000 \u0000N\u0000o\u0000t\u0000 \u0000E\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000a\u0000r\u0000e\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000:\u0002\u0017\u0004\u0000\u0002\u0017\b\u0017\t\r\u0017\b\u0000\u0004Z\u0000\u0000\r<\rx\u0017\n\u0017\u000b\r\u0017\n\u0000\u0002>\u0001\u0000\r<\rA\u0017\f\u0017\r\r\u0017\f\u0000\u0002n\u0000\u0000\r<\r?\u0017\u000e\u0017\u000f\r\u0017\u000e\u0000\u0001o\u0000\u0000\r=\r?\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u0017\u000f\u0000\u0001o\u0000\u0000\r<\r=\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\r\u0000\u0001m\u0000\u0000\r?\r@\n\u0000\u0004\nnull\r\u0017\u000b\u0000\u0001k\u0000\u0000\rD\rt\u0017\u0010\u0002\u0017\u0010\u0000\u0002\u0017\u0011\u0017\u0012\r\u0017\u0011\u0000\u0002r\u0000\u0000\rD\r[\u0017\u0013\u0017\u0014\r\u0017\u0013\u0000\u00026\u0001\u0000\rD\rY\u0017\u0015\u0017\u0016\r\u0017\u0015\u0000\u0002n\u0000\u0000\rD\rJ\u0017\u0017\u0017\u0018\r\u0017\u0017\u0000\u00024\u0000\u0001\rE\rJ\u0017\u0019\n\u0000\u0004\nchbx\r\u0017\u0019\u0000\u0001m\u0000\u0000\rH\rI\u0003\u0000\u0001\r\u0017\u0018\u0000\u0001o\u0000\u0000\rD\rE\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017\u0016\u0000\u0002E\u0000\u0000\rM\rX\u0017\u001a\u0017\u001b\r\u0017\u001a\u0000\u00011\u0000\u0000\rN\rR\n\u0000\u0004\npnam\r\u0017\u001b\u0000\u0001m\u0000\u0000\rS\rW\u0017\u001c\u000e\u0017\u001c\u0000\u0001\u0017\u001d\u0011\u0017\u001d\u0000J\u0000n\u0000o\u0000t\u0000 \u0000e\u0000v\u0000a\u0000l\u0000u\u0000a\u0000t\u0000e\u0000 \u0000i\u0000f\u0000 \u0000a\u0000l\u0000l\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000d\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000s\r\u0017\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017\u0012\u0000\u0002\u0017\u001e\r\u0017\u001e\u0000\u0004Z\u0000\u0000\r\\\rt\u0017\u001f\u0017 \u0017!\r\u0017\u001f\u0000\u0002n\u0000\u0000\r\\\r`\u0017\"\u0017#\r\u0017\"\u0000\u0001o\u0000\u0000\r]\r_\u000b\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\r\u0017#\u0000\u0001o\u0000\u0000\r\\\r]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017 \u0000\u0002n\u0000\u0001\rc\rj\u0017$\u0017%\r\u0017$\u0000\u0003I\u0000\u0000\rd\rj\u0017&\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017&\u0000\u0002\u0017'\u0017(\r\u0017'\u0000\u0001o\u0000\u0000\rd\re\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017(\u0000\u0002\u0017)\r\u0017)\u0000\u0001m\u0000\u0000\re\rf\u0003\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017%\u0000\u0000f\u0000\u0000\rc\rd\u0002\u0000\u0000\r\u0017!\u0000\u0002n\u0000\u0001\rm\rt\u0017*\u0017+\r\u0017*\u0000\u0003I\u0000\u0000\rn\rt\u0017,\u000b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017,\u0000\u0002\u0017-\u0017.\r\u0017-\u0000\u0001o\u0000\u0000\rn\ro\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u0002\u0017.\u0000\u0002\u0017\/\r\u0017\/\u0000\u0001m\u0000\u0000\ro\rp\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017+\u0000\u0000f\u0000\u0000\rm\rn\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0017\t\u0000\u0002\u00170\u00171\r\u00170\u0000\u0003l\u0000\u0002\ry\ry\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00171\u0000\u0002\u00172\u00173\r\u00172\u0000\u0003l\u0000\u0002\ry\ry\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00173\u0000\u0002\u00174\u00175\r\u00174\u0000\u0003l\u0000\u0001\ry\ry\u00176\u00177\u0001\u0000\u0000\f\u00176\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u00177\u0000\u0001\u00178\u0011\u00178\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u00175\u0000\u0002\u00179\u0017:\r\u00179\u0000\u0002n\u0000\u0001\ry\r\u0017;\u0017<\r\u0017;\u0000\u0003I\u0000\u0000\rz\r\u0017=\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0017=\u0000\u0002\u0017>\r\u0017>\u0000\u00026\u0001\u0000\rz\r\u0017?\u0017@\r\u0017?\u0000\u0002n\u0000\u0000\rz\r\u0017A\u0017B\r\u0017A\u0000\u00024\u0000\u0001\r{\r\u0017C\n\u0000\u0004\nbutT\r\u0017C\u0000\u0001m\u0000\u0000\r~\r\u0003\u0000\u0001\r\u0017B\u0000\u0001o\u0000\u0000\rz\r{\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017@\u0000\u0002E\u0000\u0000\r\r\u0017D\u0017E\r\u0017D\u0000\u00011\u0000\u0000\r\r\n\u0000\u0004\npnam\r\u0017E\u0000\u0001m\u0000\u0000\r\r\u0017F\u000e\u0017F\u0000\u0001\u0017G\u0011\u0017G\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017<\u0000\u0000f\u0000\u0000\ry\rz\u0002\u0017:\u0000\u0002\u0017H\u0017I\r\u0017H\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017I\u0000\u0002\u0017J\u0017K\r\u0017J\u0000\u0002n\u0000\u0001\r\r\u0017L\u0017M\r\u0017L\u0000\u0003I\u0000\u0000\r\r\u0017N\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0017N\u0000\u0002\u0017O\r\u0017O\u0000\u0001K\u0000\u0000\r\r\u0017P\u0006\u0017P\u0000\u0003\u0017Q\u0017R\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0017Q\u0000\u0001m\u0000\u0000\r\r\u0017S\u000e\u0017S\u0000\u0001\u0017T\u0011\u0017T\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0017R\u0000\u0003\u0017U\u0017V\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0017U\u0000\u0001m\u0000\u0000\r\r\u0017W\u000e\u0017W\u0000\u0001\u0017X\u0011\u0017X\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0017V\u0000\u0003\u0017Y\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0017Y\u0000\u0001m\u0000\u0000\r\r\u0017Z\u000e\u0017Z\u0000\u0001\u0017[\u0011\u0017[\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017M\u0000\u0000f\u0000\u0000\r\r\u0002\u0017K\u0000\u0002\u0017\\\u0017]\r\u0017\\\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017]\u0000\u0002\u0017^\u0017_\r\u0017^\u0000\u0002r\u0000\u0000\r\r\u0017`\u0017a\r\u0017`\u0000\u0002n\u0000\u0000\r\r\u0017b\u0017c\r\u0017b\u0000\u00024\u0000\u0000\r\r\u0017d\n\u0000\u0004\ntabg\r\u0017d\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017c\u0000\u00024\u0000\u0000\r\r\u0017e\n\u0000\u0004\ncwin\r\u0017e\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0017_\u0000\u0002\u0017f\u0017g\r\u0017f\u0000\u0003l\u0000\u0002\r\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017g\u0000\u0002\u0017h\u0017i\r\u0017h\u0000\u0003l\u0000\u0001\r\r\u0017j\u0017k\u0001\u0000\u0000\f\u0017j\u00007\u00001 Do not replace existing value of field (if any):\u0000\u0002\u0000\u0000\u000e\u0017k\u0000\u0001\u0017l\u0011\u0017l\u0000b\u0000 \u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000(\u0000i\u0000f\u0000 \u0000a\u0000n\u0000y\u0000)\u0000:\u0002\u0017i\u0000\u0002\u0017m\u0017n\r\u0017m\u0000\u0004Z\u0000\u0000\r\u000e\u0004\u0017o\u0017p\r\u0017o\u0000\u0002>\u0001\u0000\r\r\u0017q\u0017r\r\u0017q\u0000\u0002n\u0000\u0000\r\r\u0017s\u0017t\r\u0017s\u0000\u0001o\u0000\u0000\r\r\u000b\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u0017t\u0000\u0001o\u0000\u0000\r\r\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017r\u0000\u0001m\u0000\u0000\r\r\n\u0000\u0004\nnull\r\u0017p\u0000\u0001k\u0000\u0000\r\u000e\u0000\u0017u\u0002\u0017u\u0000\u0002\u0017v\u0017w\r\u0017v\u0000\u0002r\u0000\u0000\r\r\u0017x\u0017y\r\u0017x\u0000\u00026\u0001\u0000\r\r\u0017z\u0017{\r\u0017z\u0000\u0002n\u0000\u0000\r\r\u0017|\u0017}\r\u0017|\u0000\u00024\u0000\u0001\r\r\u0017~\n\u0000\u0004\nchbx\r\u0017~\u0000\u0001m\u0000\u0000\r\r\u0003\u0000\u0001\r\u0017}\u0000\u0001o\u0000\u0000\r\r\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017{\u0000\u0002E\u0000\u0000\r\r\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\r\r\n\u0000\u0004\npnam\r\u0017\u0000\u0001m\u0000\u0000\r\r\u0017\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000.\u0000D\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\r\u0017y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017w\u0000\u0002\u0017\r\u0017\u0000\u0004Z\u0000\u0000\r\u000e\u0000\u0017\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\r\r\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\r~\u000b~\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\r\u0017\u0000\u0001o\u0000\u0000\r\r}\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\r\r\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\r\r|\u0017{\u000b|\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\rz\u000bz\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017\u0000\u0002\u0017y\r\u0017\u0000\u0001m\u0000\u0000\r\rx\u0003x\u0000\u0000\u0002y\u0000\u0000\u0002{\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\r\r\u0002\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\r\u000e\u0000\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\r\u000e\u0000w\u0017v\u000bw\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\r\ru\u000bu\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u0002\u0017\u0000\u0002\u0017t\r\u0017\u0000\u0001m\u0000\u0000\r\rs\u0003s\u0000\u0001\u0002t\u0000\u0000\u0002v\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\r\r\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0017n\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0005\u000e\u0005rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0017\u0000\u0002\u0017o\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0005\u000e\u0005nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002o\u0000\u0000\f\u0016\\\u0000\u0017\u0000\u0011 there IS a Calc:\u0000\u0002\u0000\u0000\u000e\u0016]\u0000\u0001\u0017\u0011\u0017\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000C\u0000a\u0000l\u0000c\u0000:\u0002\u0016@\u0000\u0002\u0017k\r\u0017\u0000\u0003l\u0000\u0002\u000e\u0007\u000e\u0007jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u00026\u0000\u0000\u00015\u0000\u0000\u0002\u00167\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\r\u000e\rgfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000e\r\u000e\rdcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000e\r\u000e\ra\u0017\u0017\u0001a\u0000\u0000\f\u0017\u00008\u00002 Prohibit modification of value during data entry:\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000d\u0000u\u0000r\u0000i\u0000n\u0000g\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000e\u0000n\u0000t\u0000r\u0000y\u0000:\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0004Z\u0000\u0000\u000e\r\u000eS\u0017\u0017`_\r\u0017\u0000\u0002>\u0001\u0000\u000e\r\u000e\u0014\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e\r\u000e\u0012\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e\u000e\u000e\u0012^\u000b^\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u0017\u0000\u0001o\u0000\u0000\u000e\r\u000e\u000e]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u000e\u0012\u000e\u0013\\\n\\\u0000\u0004\nnull\r\u0017\u0000\u0001k\u0000\u0000\u000e\u0017\u000eO\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002r\u0000\u0000\u000e\u0017\u000e0\u0017\u0017\r\u0017\u0000\u00026\u0001\u0000\u000e\u0017\u000e,\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e\u0017\u000e\u001d\u0017\u0017\r\u0017\u0000\u00024\u0000\u0001\u000e\u0018\u000e\u001d[\u0017\n[\u0000\u0004\nchbx\r\u0017\u0000\u0001m\u0000\u0000\u000e\u001b\u000e\u001cZ\u0003Z\u0000\u0001\r\u0017\u0000\u0001o\u0000\u0000\u000e\u0017\u000e\u0018Y\u000bY\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0017\u0000\u0002E\u0000\u0000\u000e \u000e+\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u000e!\u000e%X\nX\u0000\u0004\npnam\r\u0017\u0000\u0001m\u0000\u0000\u000e&\u000e*\u0017\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000*\u0000P\u0000r\u0000o\u0000h\u0000i\u0000b\u0000i\u0000t\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017V\r\u0017\u0000\u0004Z\u0000\u0000\u000e1\u000eO\u0017\u0017U\u0017\r\u0017\u0000\u0002n\u0000\u0000\u000e1\u000e7\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e2\u000e6T\u000bT\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\r\u0017\u0000\u0001o\u0000\u0000\u000e1\u000e2S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\u000e:\u000eC\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u000e;\u000eCR\u0017Q\u000bR\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000e;\u000e>P\u000bP\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017O\r\u0017\u0000\u0001m\u0000\u0000\u000e>\u000e?N\u0003N\u0000\u0000\u0002O\u0000\u0000\u0002Q\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\u000e:\u000e;\u0002U\u0000\u0000\r\u0017\u0000\u0002n\u0000\u0001\u000eF\u000eO\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u000eG\u000eOM\u0017L\u000bM\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u000eG\u000eJK\u000bK\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u0002\u0017\u0000\u0002\u0017J\r\u0017\u0000\u0001m\u0000\u0000\u000eJ\u000eKI\u0003I\u0000\u0001\u0002J\u0000\u0000\u0002L\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\u000eF\u000eG\u0002V\u0000\u0000\u0002`\u0000\u0000\u0001_\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eTHGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eTEDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eTB\u0017\u0017\u0001B\u0000\u0000\f\u0017\u0000P\u0000J--------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eTA\u0017\u0017\u0001A\u0000\u0000\f\u0017\u0000\u0013\u0000\r NORMAL FIELD\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u001a\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT@\u0017\u0017\u0001@\u0000\u0000\f\u0017\u0000U\u0000O--------------------------------------------------------------------------\t\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT?\u0017\u0017\u0001?\u0000\u0000\f\u0017\u0000\u0016\u0000\u0010 VALIDATION TAB:\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000 \u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000T\u0000A\u0000B\u0000:\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT>\u0017\u0017\u0001>\u0000\u0000\f\u0017\u0000T\u0000N--------------------------------------------------------------------------\t\t\t\t\u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000\t\u0000\t\u0000\t\u0000\t\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eT=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT:\u0017\u0017\u0001:\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT9\u0017\u0017\u00019\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0001\u000eT\u000eT8\u0017\u0017\u00018\u0000\u0000\f\u0017\u00008\u00002 MOST VALIDATION FEATURES NOT YET SUPPORTED ! ! ! \u0000\u0002\u0000\u0000\u000e\u0017\u0000\u0001\u0017\u0011\u0017\u0000d\u0000 \u0000M\u0000O\u0000S\u0000T\u0000 \u0000V\u0000A\u0000L\u0000I\u0000D\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000F\u0000E\u0000A\u0000T\u0000U\u0000R\u0000E\u0000S\u0000 \u0000N\u0000O\u0000T\u0000 \u0000Y\u0000E\u0000T\u0000 \u0000S\u0000U\u0000P\u0000P\u0000O\u0000R\u0000T\u0000E\u0000D\u0000 \u0000!\u0000 \u0000!\u0000 \u0000!\u0000 \u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u000eT\u000eT765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0002\u000eT\u000e`4\u00173\n4\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0017\u0000\u0002n\u0000\u0000\u000eT\u000e\\\u0017\u0017\r\u0017\u0000\u00024\u0000\u0000\u000eU\u000e\\2\u0018\u0000\n2\u0000\u0004\nradB\r\u0018\u0000\u0000\u0001m\u0000\u0000\u000eX\u000e[\u0018\u0001\u000e\u0018\u0001\u0000\u0001\u0018\u0002\u0011\u0018\u0002\u0000\u0014\u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\r\u0017\u0000\u0001o\u0000\u0000\u000eT\u000eU1\u000b1\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u00023\u0000\u0000\u0002\u0017\u0000\u0002\u0018\u0003\u0018\u0004\r\u0018\u0003\u0000\u0003l\u0000\u0002\u000ea\u000ea0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0018\u0004\u0000\u0002\u0018\u0005\u0018\u0006\r\u0018\u0005\u0000\u0004Z\u0000\u0000\u000ea\u000fE\u0018\u0007\u0018\b-,\r\u0018\u0007\u0000\u0002>\u0001\u0000\u000ea\u000eh\u0018\t\u0018\n\r\u0018\t\u0000\u0002n\u0000\u0000\u000ea\u000ef\u0018\u000b\u0018\f\r\u0018\u000b\u0000\u0001o\u0000\u0000\u000eb\u000ef+\u000b+\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018\f\u0000\u0001o\u0000\u0000\u000ea\u000eb*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018\n\u0000\u0001m\u0000\u0000\u000ef\u000eg)\n)\u0000\u0004\nnull\r\u0018\b\u0000\u0001k\u0000\u0000\u000ek\u000fA\u0018\r\u0002\u0018\r\u0000\u0002\u0018\u000e\u0018\u000f\r\u0018\u000e\u0000\u0003l\u0000\u0002\u000ek\u000ek('&\u0001(\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0018\u000f\u0000\u0002\u0018\u0010\u0018\u0011\r\u0018\u0010\u0000\u0002n\u0000\u0001\u000ek\u000ex\u0018\u0012\u0018\u0013\r\u0018\u0012\u0000\u0003I\u0000\u0000\u000el\u000ex%\u0018\u0014$\u000b%\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0014\u0000\u0002\u0018\u0015#\r\u0018\u0015\u0000\u0002n\u0000\u0000\u000el\u000et\u0018\u0016\u0018\u0017\r\u0018\u0016\u0000\u00024\u0000\u0000\u000em\u000et\"\u0018\u0018\n\"\u0000\u0004\nbutT\r\u0018\u0018\u0000\u0001m\u0000\u0000\u000ep\u000es\u0018\u0019\u000e\u0018\u0019\u0000\u0001\u0018\u001a\u0011\u0018\u001a\u0000\u0010\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y &\r\u0018\u0017\u0000\u0001o\u0000\u0000\u000el\u000em!\u000b!\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002#\u0000\u0000\u0002$\u0000\u0000\r\u0018\u0013\u0000\u0000f\u0000\u0000\u000ek\u000el\u0002\u0018\u0011\u0000\u0002\u0018\u001b\u0018\u001c\r\u0018\u001b\u0000\u0003l\u0000\u0002\u000ey\u000ey \u001f\u001e\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0002\u0018\u001c\u0000\u0002\u0018\u001d\u0018\u001e\r\u0018\u001d\u0000\u0003l\u0000\u0001\u000ey\u000ey\u001d\u0018\u001f\u0018 \u0001\u001d\u0000\u0000\f\u0018\u001f\u0000+\u0000% wait for Specify Calculation window:\u0000\u0002\u0000\u0000\u000e\u0018 \u0000\u0001\u0018!\u0011\u0018!\u0000J\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000:\u0002\u0018\u001e\u0000\u0002\u0018\"\u0018#\r\u0018\"\u0000\u0002n\u0000\u0001\u000ey\u000e\u0018$\u0018%\r\u0018$\u0000\u0003I\u0000\u0000\u000ez\u000e\u001c\u0018&\u001b\u000b\u001c\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002\u0018&\u0000\u0002\u0018'\u001a\r\u0018'\u0000\u0001K\u0000\u0000\u000ez\u000e\u0018(\u0006\u0018(\u0000\u0003\u0019\u0018)\u0018\u000b\u0019\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018)\u0000\u0001m\u0000\u0000\u000e}\u000e\u0018*\u000e\u0018*\u0000\u0001\u0018+\u0011\u0018+\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0018\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u001b\u0000\u0000\r\u0018%\u0000\u0000f\u0000\u0000\u000ey\u000ez\u0002\u0018#\u0000\u0002\u0018,\u0018-\r\u0018,\u0000\u0003l\u0000\u0002\u000e\u000e\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0018-\u0000\u0002\u0018.\u0018\/\r\u0018.\u0000\u0002r\u0000\u0000\u000e\u000e\u00180\u00181\r\u00180\u0000\u00024\u0000\u0000\u000e\u000e\u0014\u00182\n\u0014\u0000\u0004\ncwin\r\u00182\u0000\u0001m\u0000\u0000\u000e\u000e\u0013\u0003\u0013\u0000\u0001\r\u00181\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0018\/\u0000\u0002\u00183\u00184\r\u00183\u0000\u0003l\u0000\u0002\u000e\u000e\u0011\u0010\u000f\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u00184\u0000\u0002\u00185\u00186\r\u00185\u0000\u0003l\u0000\u0001\u000e\u000e\u000e\u00187\u00188\u0001\u000e\u0000\u0000\f\u00187\u0000\u0019\u0000\u0013 CALCULATION CODE: \u0000\u0002\u0000\u0000\u000e\u00188\u0000\u0001\u00189\u0011\u00189\u0000&\u0000 \u0000C\u0000A\u0000L\u0000C\u0000U\u0000L\u0000A\u0000T\u0000I\u0000O\u0000N\u0000 \u0000C\u0000O\u0000D\u0000E\u0000:\u0000 \u0002\u00186\u0000\u0002\u0018:\u0018;\r\u0018:\u0000\u0004Z\u0000\u0000\u000e\u000e\u0018<\u0018=\r\u0018>\r\u0018<\u0000\u0002=\u0000\u0001\u000e\u000e\u0018?\u0018@\r\u0018?\u0000\u0002n\u0000\u0000\u000e\u000e\u0018A\u0018B\r\u0018A\u0000\u00011\u0000\u0000\u000e\u000e\f\n\f\u0000\u0004\nleng\r\u0018B\u0000\u0002n\u0000\u0000\u000e\u000e\u0018C\u0018D\r\u0018C\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000b\u000b\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018D\u0000\u0001o\u0000\u0000\u000e\u000e\n\u000b\n\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018@\u0000\u0001m\u0000\u0000\u000e\u000e\t\u0003\t\u0000\u0000\r\u0018=\u0000\u0001k\u0000\u0000\u000e\u000e\u0018E\u0002\u0018E\u0000\u0002\u0018F\u0018G\r\u0018F\u0000\u0003l\u0000\u0000\u000e\u000e\b\u0018H\u0018I\u0001\b\u0000\u0000\f\u0018H\u0000\u0000 if for some reason an empty string is specified, we want to force an error in FM's syntax checker for the validation calc box instead of silently allowing an empty string as the validation calc. \u0000\u0002\u0000\u0000\u000e\u0018I\u0000\u0001\u0018J\u0011\u0018J\u0001\u0000 \u0000i\u0000f\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000r\u0000e\u0000a\u0000s\u0000o\u0000n\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000i\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000c\u0000e\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000F\u0000M\u0000'\u0000s\u0000 \u0000s\u0000y\u0000n\u0000t\u0000a\u0000x\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000b\u0000o\u0000x\u0000 \u0000i\u0000n\u0000s\u0000t\u0000e\u0000a\u0000d\u0000 \u0000o\u0000f\u0000 \u0000s\u0000i\u0000l\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000.\u0000 \u0002\u0018G\u0000\u0002\u0018K\u0007\r\u0018K\u0000\u0002r\u0000\u0000\u000e\u000e\u0018L\u0018M\r\u0018L\u0000\u0001m\u0000\u0000\u000e\u000e\u0018N\u000e\u0018N\u0000\u0001\u0018O\u0011\u0018O\u0001\u001a\u0000i\u0000f\u0000 \u0000(\u0000 \u0000\/\u0000*\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000a\u0000l\u0000c\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000r\u0000a\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000a\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000c\u0000a\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000b\u0000u\u0000g\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000 \u0000t\u0000o\u0000o\u0000l\u0000.\u0000 \u0000*\u0000\/\u0000 \u0000)\r\u0018M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0007\u0000\u0000\u0002\r\u0000\u0000\r\u0018>\u0000\u0002r\u0000\u0000\u000e\u000e\u0018P\u0018Q\r\u0018P\u0000\u0002n\u0000\u0000\u000e\u000e\u0018R\u0018S\r\u0018R\u0000\u0001o\u0000\u0000\u000e\u000e\u0005\u000b\u0005\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\r\u0018S\u0000\u0001o\u0000\u0000\u000e\u000e\u0004\u000b\u0004\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0018;\u0000\u0002\u0018T\u0018U\r\u0018T\u0000\u0003l\u0000\u0002\u000e\u000e\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0018U\u0000\u0002\u0018V\u0018W\r\u0018V\u0000\u0002n\u0000\u0001\u000e\u000e\u0018X\u0018Y\r\u0018X\u0000\u0003I\u0000\u0000\u000e\u000e\u0018Z\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002\u0018Z\u0000\u0002\u0018[\u0018\\\r\u0018[\u0000\u0002n\u0000\u0000\u000e\u000e\u0018]\u0018^\r\u0018]\u0000\u00024\u0000\u0000\u000e\u000e\u0018_\n\u0000\u0004\ntxta\r\u0018_\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\r\u0018^\u0000\u0002n\u0000\u0000\u000e\u000e\u0018`\u0018a\r\u0018`\u0000\u00024\u0000\u0000\u000e\u000e\u0018b\n\u0000\u0004\nscra\r\u0018b\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0004\r\u0018a\u0000\u00024\u0000\u0000\u000e\u000e\u0018c\n\u0000\u0004\ncwin\r\u0018c\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\u0002\u0018\\\u0000\u0002\u0018d\r\u0018d\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018Y\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0018W\u0000\u0002\u0018e\u0018f\r\u0018e\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018f\u0000\u0002\u0018g\u0018h\r\u0018g\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018h\u0000\u0002\u0018i\u0018j\r\u0018i\u0000\u0003l\u0000\u0001\u000e\u000e\u0018k\u0018l\u0001\u0000\u0000\f\u0018k\u0000'\u0000! Calc CONTEXT Table (occurrence):\u0000\u0002\u0000\u0000\u000e\u0018l\u0000\u0001\u0018m\u0011\u0018m\u0000B\u0000 \u0000C\u0000a\u0000l\u0000c\u0000 \u0000C\u0000O\u0000N\u0000T\u0000E\u0000X\u0000T\u0000 \u0000T\u0000a\u0000b\u0000l\u0000e\u0000 \u0000(\u0000o\u0000c\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000c\u0000e\u0000)\u0000:\u0002\u0018j\u0000\u0002\u0018n\u0018o\r\u0018n\u0000\u0004Z\u0000\u0000\u000e\u000e\u0018p\u0018q\r\u0018p\u0000\u0002>\u0001\u0000\u000e\u000e\u0018r\u0018s\r\u0018r\u0000\u0002n\u0000\u0000\u000e\u000e\u0018t\u0018u\r\u0018t\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u0018u\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0018s\u0000\u0001m\u0000\u0000\u000e\u000e\n\u0000\u0004\nnull\r\u0018q\u0000\u0002n\u0000\u0001\u000e\u000e\u0018v\u0018w\r\u0018v\u0000\u0003I\u0000\u0000\u000e\u000e\u0018x\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u0018x\u0000\u0002\u0018y\u0018z\r\u0018y\u0000\u00026\u0001\u0000\u000e\u000e\u0018{\u0018|\r\u0018{\u0000\u0002n\u0000\u0000\u000e\u000e\u0018}\u0018~\r\u0018}\u0000\u00024\u0000\u0001\u000e\u000e\u0018\n\u0000\u0004\npopB\r\u0018\u0000\u0001m\u0000\u0000\u000e\u000e\u0003\u0000\u0001\r\u0018~\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0018|\u0000\u0002E\u0000\u0000\u000e\u000e\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000e\u000e\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000e\u000e\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u000e\u0000c\u0000o\u0000n\u0000t\u0000e\u0000x\u0000t\u0002\u0018z\u0000\u0002\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000e\u000e\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018w\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0018o\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000e\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000e\u000e\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000-\u0000' click OK to save Specify Calculation: \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000N\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000e\u000f\u0015\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000e\u000f\u0015\u0018\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u00026\u0001\u0000\u000e\u000f\u0011\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000e\u000f\u0002\u0018\u0018\r\u0018\u0000\u00024\u0000\u0001\u000e\u000f\u0002\u0018\n\u0000\u0004\nbutT\r\u0018\u0000\u0001m\u0000\u0000\u000f\u0000\u000f\u0001\u0003\u0000\u0001\r\u0018\u0000\u0001o\u0000\u0000\u000e\u000e\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\r\u0018\u0000\u0002E\u0000\u0000\u000f\u0005\u000f\u0010\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000f\u0006\u000f\n\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000f\u000b\u000f\u000f\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000e\u000e\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u0016\u000f\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000f\u0016\u000f1\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000f\u0017\u000f1\u0018\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001K\u0000\u0000\u000f\u0017\u000f-\u0018\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018\u0000\u0001m\u0000\u0000\u000f\u001a\u000f\u001d\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000&\u0000S\u0000p\u0000e\u0000c\u0000i\u0000f\u0000y\u0000 \u0000C\u0000a\u0000l\u0000c\u0000u\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0018\u0000\u0001m\u0000\u0000\u000f \u000f#\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u0018\u0000\u0003\u0018\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0018\u0000\u0001m\u0000\u0000\u000f&\u000f)\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000f\u0016\u000f\u0017\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f2\u000f2\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u000f2\u000f?\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000f2\u000f=\u0018\u0018\r\u0018\u0000\u00024\u0000\u0000\u000f8\u000f=\u0018\n\u0000\u0004\ntabg\r\u0018\u0000\u0001m\u0000\u0000\u000f;\u000f<\u0003\u0000\u0001\r\u0018\u0000\u00024\u0000\u0000\u000f2\u000f8\u0018\n\u0000\u0004\ncwin\r\u0018\u0000\u0001m\u0000\u0000\u000f6\u000f7\u0003\u0000\u0001\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f@\u000f@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000f@\u000f@\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000\u001b\u0000\u0015 END OF: Validation. \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000*\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000V\u0000a\u0000l\u0000i\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000 \u0002\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0018\u0006\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000fF\u000fF\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000fF\u000fF\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000fF\u000fF\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000#\u0000\u001d SAVE NORMAL FIELD - OPTIONS:\u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000:\u0000 \u0000S\u0000A\u0000V\u0000E\u0000 \u0000N\u0000O\u0000R\u0000M\u0000A\u0000L\u0000 \u0000F\u0000I\u0000E\u0000L\u0000D\u0000 \u0000-\u0000 \u0000O\u0000P\u0000T\u0000I\u0000O\u0000N\u0000S\u0000:\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0001\u000fF\u000fF\u0018\u0018\u0001\u0000\u0000\f\u0018\u0000#\u0000\u001d click OK for field Options: \u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000:\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000 \u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000fF\u000fe\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000fG\u000fe\u0018\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u00026\u0001\u0000\u000fG\u000fa\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u000fG\u000fR\u0018\u0018\r\u0018\u0000\u00024\u0000\u0001\u000fM\u000fR\u0018\n\u0000\u0004\nbutT\r\u0018\u0000\u0001m\u0000\u0000\u000fP\u000fQ\u0003\u0000\u0001\r\u0018\u0000\u00024\u0000\u0000\u000fG\u000fM\u0018\n\u0000\u0004\ncwin\r\u0018\u0000\u0001m\u0000\u0000\u000fK\u000fL\u0003\u0000\u0001\r\u0018\u0000\u0002E\u0000\u0000\u000fU\u000f`\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u000fV\u000fZ\n\u0000\u0004\npnam\r\u0018\u0000\u0001m\u0000\u0000\u000f[\u000f_\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000fF\u000fG\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000ff\u000ff\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0001\u000ff\u000f\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u000fg\u000f\u0018\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001K\u0000\u0000\u000fg\u000f}\u0018\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u0018\u0000\u0001m\u0000\u0000\u000fj\u000fm\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0016\u0000O\u0000p\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0006\u0018\u0000\u0003\u0018\u0018\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u0018\u0000\u0001m\u0000\u0000\u000fp\u000fs\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0006\u0018\u0000\u0003\u0018\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u0018\u0000\u0001m\u0000\u0000\u000fv\u000fy\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0000f\u0000\u0000\u000ff\u000fg\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0001L\u0000\u0000\u000f\u000f\u0018\r\u0018\u0000\u0001m\u0000\u0000\u000f\u000f\n\u0000\b\u000bboovtrue\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001a\u0000\u0000\u0001E\u0000\u0000\u0002\f\u0000\u0002\u0018\u0019\u0000\r\u0018\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u0019\u0001\u0019\u0002\r\u0019\u0001\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0002\u0000\u0002\u0019\u0003\u0019\u0004\r\u0019\u0003\u0000\u0001L\u0000\u0000\u000f\u000f\u0019\u0005\r\u0019\u0005\u0000\u0001m\u0000\u0000\u000f\u000f\n\u0000\b\u000bboovtrue\u0002\u0019\u0004\u0000\u0002\u0019\u0006\r\u0019\u0006\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u00024\u0000\u0000\u0000\u0000\u0019\u0007\n\u0000\u0004\npcap\r\u0019\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0019\b\u000e\u0019\b\u0000\u0001\u0019\t\u0011\u0019\t\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0019\n\u000f\u0019\n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000b\u0000\u0002\u0019\u000b\u0019\f\r\u0019\u000b\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\f\u0000\u0002\u0019\r\u0019\u000e\r\u0019\r\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u000e\u0000\u0002\u0019\u000f\u0019\u0010\r\u0019\u000f\u0000\u0003l\u0000\u0002\u000f\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0019\u0010\u0000\u0002\u0019\u0011~\r\u0019\u0011\u0000\u0003l\u0000\u0000\u000f\u000f}\u0019\u0012\u0019\u0013\u0001}\u0000\u0000\f\u0019\u0012\u0000\u0000 DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \nDEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING DEBUGGING \n\u0000\u0002\u0000\u0000\u000e\u0019\u0013\u0000\u0001\u0019\u0014\u0011\u0019\u0014\u0001B\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000D\u0000E\u0000B\u0000U\u0000G\u0000G\u0000I\u0000N\u0000G\u0000 \u0000 \u0000 \u0000\n\u0002~\u0000\u0000\r\u000b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000|\u0019\u0015\u0019\u0016\n|\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0016\u0000\u0003z\u0019\u0017y\nz\u0000\u0004\nerrn\r\u0019\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006y\u0000\u0000\r\u000b\u0000\u0003R\u0000\u0000\u000f\u000fw\u0019\u0018\u0019\u0019\nw\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0018\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001a\u0019\u001b\r\u0019\u001a\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001c\u0019\u001d\r\u0019\u001c\u0000\u0002b\u0000\u0000\u000f\u000f\u0019\u001e\u0019\u001f\r\u0019\u001e\u0000\u0001m\u0000\u0000\u000f\u000f\u0019 \u000e\u0019 \u0000\u0001\u0019!\u0011\u0019!\u00000\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000d\u0000i\u0000t\u0000 \u0000a\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r\u0019\u001f\u0000\u0003I\u0000\u0000\u000f\u000fv\u0019\"u\u000bv\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u0019\"\u0000\u0002\u0019#t\r\u0019#\u0000\u0001o\u0000\u0000\u000f\u000fs\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002t\u0000\u0000\u0002u\u0000\u0000\r\u0019\u001d\u0000\u0001m\u0000\u0000\u000f\u000f\u0019$\u000e\u0019$\u0000\u0001\u0019%\u0011\u0019%\u0000\u0006\u0000 \u0000-\u0000 \r\u0019\u001b\u0000\u0001o\u0000\u0000\u000f\u000fr\u000br\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0019\u0000\u0003q\u0019&p\nq\u0000\u0004\nerrn\r\u0019&\u0000\u0001o\u0000\u0000\u000f\u000fo\u000bo\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006p\u0000\u0000\u0002\u000b\u0000\u0002\u0019'\u0019(\r\u0019'\u0000\u0003l\u0000\u0002\u000f\u000fnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0019(\u0000\u0002\u0019)k\r\u0019)\u0000\u0003l\u0000\u0002\u000f\u000fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u000bE\u0000\u0002\u0019*\u0019+\r\u0019*\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0019+\u0000\u0002\u0019,\u0019-\r\u0019,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0019-\u0000\u0002\u0019.\u0019\/\r\u0019.\u0000\u0002i\u0000\u0000\u0000W\u0000Z\u00190\u00191\r\u00190\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000a\u00192`\u000ba\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u0002\u00192\u0000\u0002\u00193_\r\u00193\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002_\u0000\u0000\u0002`\u0000\u0000\r\u00191\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00194\u0002\u00194\u0000\u0002\u00195\u00196\r\u00195\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000]\u00197\u00198\u0001]\u0000\u0000\f\u00197\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u00198\u0000\u0001\u00199\u0011\u00199\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u00196\u0000\u0002\u0019:\u0019;\r\u0019:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\u0019;\u0000\u0002\u0019<\u0019=\r\u0019<\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\n\u0019>\u0019?\r\u0019>\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\b\u0019@\u0006\u0019@\u0000\u0003Y\u0019A\u0019B\u000bY\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u0019A\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002X\nX\u0000\u0004\nnull\u0006\u0019B\u0000\u0003W\u0019C\u0019D\u000bW\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019C\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004V\nV\u0000\u0004\nnull\u0006\u0019D\u0000\u0003U\u0019ET\u000bU\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u0019E\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006S\nS\u0000\u0004\nnull\u0006T\u0000\u0000\r\u0019?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0019=\u0000\u0002\u0019F\u0019G\r\u0019F\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0019H\u0019I\r\u0019H\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0019J\u0019K\r\u0019J\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\fQ\u000bQ\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0019K\u0000\u0001o\u0000\u0000\u0000\f\u0000\rP\u000bP\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u0019I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0019G\u0000\u0002\u0019L\u0019M\r\u0019L\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0019M\u0000\u0002\u0019N\u0019O\r\u0019N\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011K\u0019P\u0019Q\u0001K\u0000\u0000\f\u0019P\u0000\u0012\u0000\f CONSTANTS: \u0000\u0002\u0000\u0000\u000e\u0019Q\u0000\u0001\u0019R\u0011\u0019R\u0000\u0018\u0000 \u0000C\u0000O\u0000N\u0000S\u0000T\u0000A\u0000N\u0000T\u0000S\u0000:\u0000 \u0002\u0019O\u0000\u0002\u0019S\u0019T\r\u0019S\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u001a\u0019U\u0019V\r\u0019U\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0018\u0019W\u0019X\r\u0019W\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0016\u0019Y\u0019Z\r\u0019Y\u0000\u0002b\u0000\u0000\u0000\u0011\u0000\u0014\u0019[\u0019\\\r\u0019[\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0019]\u000e\u0019]\u0000\u0001\u0019^\u0011\u0019^\u0000@\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\r\u0019\\\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013J\nJ\u0000\u0004\nret \r\u0019Z\u0000\u0003l\u0000\t\u0000\u0014\u0000\u0015\u0019_IH\r\u0019_\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0019`\u000e\u0019`\u0000\u0001\u0019a\u0011\u0019a\u0000b\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000\"\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000\"\u0001I\u0000\u0000\u0001H\u0000\u0000\r\u0019X\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017G\nG\u0000\u0004\nret \r\u0019V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\u0002\u0019T\u0000\u0002\u0019b\u0019c\r\u0019b\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0019d\u0019e\r\u0019d\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0019f\u000e\u0019f\u0000\u0001\u0019g\u0011\u0019g\u0000\u0010\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000(\r\u0019e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00180\u0000\nselectcode\u0000\nselectCode\u0002\u0019c\u0000\u0002\u0019h\u0019i\r\u0019h\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0019j\u0019k\r\u0019j\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0019l\u000e\u0019l\u0000\u0001\u0019m\u0011\u0019m\u0000\u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000r\u0000o\u0000w\u0000 \u0000o\u0000f\u0000 \u0000(\u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000o\u0000l\u0000l\u0000 \u0000a\u0000r\u0000e\u0000a\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0000)\r\u0019k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\u0002\u0019i\u0000\u0002\u0019n\u0019o\r\u0019n\u0000\u0002r\u0000\u0000\u0000#\u0000&\u0019p\u0019q\r\u0019p\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0019r\u000e\u0019r\u0000\u0001\u0019s\u0011\u0019s\u0000\u000e\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \r\u0019q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\u0002\u0019o\u0000\u0002\u0019t\u0019u\r\u0019t\u0000\u0002r\u0000\u0000\u0000'\u0000*\u0019v\u0019w\r\u0019v\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0019x\u000e\u0019x\u0000\u0001\u0019y\u0011\u0019y\u0000,\u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u00001\r\u0019w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\u0002\u0019u\u0000\u0002\u0019z\u0019{\r\u0019z\u0000\u0003l\u0000\u0001\u0000+\u0000+A\u0019|\u0019}\u0001A\u0000\u0000\f\u0019|\u0000(\u0000\" (then some test will be inserted)\u0000\u0002\u0000\u0000\u000e\u0019}\u0000\u0001\u0019~\u0011\u0019~\u0000D\u0000 \u0000(\u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000s\u0000e\u0000r\u0000t\u0000e\u0000d\u0000)\u0002\u0019{\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u0000+\u0000.\u0019\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\n\u0000 \u0000a\u0000n\u0000d\u0000 \r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0001\u0000\/\u0000\/?\u0019\u0019\u0001?\u0000\u0000\f\u0019\u00007\u00001 (then possibly some other test will be inserted)\u0000\u0002\u0000\u0000\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000b\u0000 \u0000(\u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000y\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000s\u0000e\u0000r\u0000t\u0000e\u0000d\u0000)\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u0000\/\u00002\u0019\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0002\u0000)\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002r\u0000\u0000\u00003\u0000<\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u0000:\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u00008\u0019\u0019\r\u0019\u0000\u0002b\u0000\u0000\u00003\u00006\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u00003\u00004=\n=\u0000\u0004\nret \r\u0019\u0000\u0001m\u0000\u0000\u00004\u00005\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0019\u0000\u0001o\u0000\u0000\u00006\u00007<\n<\u0000\u0004\nret \r\u0019\u0000\u0001m\u0000\u0000\u00008\u00009\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000=\u0000=:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003Q\u0000\u0000\u0000=\u0001\u0019\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000@\u0001\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000@\u0000@765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003I\u0000\u0000\u0000@\u0000G4\u00193\u000b4\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u0002\u0019\u0000\u0002\u00192\r\u0019\u0000\u0001J\u0000\u0000\u0000A\u0000C1\u00021\u0000\u0000\u00022\u0000\u0000\u00023\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000H\u0000H0\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0004Z\u0000\u0001\u0000H\u0000\\\u0019\u0019-,\r\u0019\u0000\u0002>\u0001\u0000\u0000H\u0000M\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000H\u0000K\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000I\u0000K+\u000b+\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019\u0000\u0001o\u0000\u0000\u0000H\u0000I*\u000b*\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000K\u0000L)\n)\u0000\u0004\nnull\r\u0019\u0000\u0003I\u0000\u0000\u0000P\u0000X(\u0019'\u000b(\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u0019\u0000\u0002\u0019&\r\u0019\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000R\u0000T%\u000b%\u0000\u00160\u0000\ttablename\u0000\ttableName\r\u0019\u0000\u0001o\u0000\u0000\u0000Q\u0000R$\u000b$\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002&\u0000\u0000\u0002'\u0000\u0000\u0002-\u0000\u0000\u0001,\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000]\u0000]#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003I\u0000\u0000\u0000]\u0000b \u001f\u001e\u000b \u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u001f\u0000\u0000\u0002\u001e\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000c\u0000c\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003Q\u0000\u0000\u0000c\u0001\u0019\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000f\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002O\u0000\u0000\u0000f\u0000\u0019\u0019\r\u0019\u0000\u0002O\u0000\u0000\u0000l\u0000\u0019\u0019\r\u0019\u0000\u0001k\u0000\u0000\u0000w\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0002\u0000w\u0000w\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0017\r\u0019\u0000\u0003I\u0000\u0002\u0000w\u0000\u0016\u0019\u0015\n\u0016\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r\u0019\u0000\u0003l\u0000\u0005\u0000w\u0000\u0019\u0014\u0013\r\u0019\u0000\u00026\u0001\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0001\u0000\u0000\u0012\u0019\n\u0012\u0000\u0004\ncrow\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0011\u0003\u0011\u0000\u0001\r\u0019\u0000\u0003l\u0000\u0005\u0000w\u0000\u0019\u0010\u000f\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\u000e\u0019\n\u000e\u0000\u0004\ntabB\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\r\u0003\r\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\f\u0019\n\f\u0000\u0004\nscra\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u0003\u000b\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000w\u0000\u0019\u0019\r\u0019\u0000\u00024\u0000\u0000\u0000}\u0000\n\u0019\n\n\u0000\u0004\ntabg\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\t\u0003\t\u0000\u0001\r\u0019\u0000\u00024\u0000\u0000\u0000w\u0000}\b\u0019\n\b\u0000\u0004\ncwin\r\u0019\u0000\u0001m\u0000\u0000\u0000{\u0000|\u0007\u0003\u0007\u0000\u0001\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0019\u0000\u0002=\u0000\u0003\u0000\u0000\u0019\u0019\r\u0019\u0000\u0002n\u0000\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u00011\u0000\u0000\u0000\u0000\u0006\n\u0006\u0000\u0004\nvalL\r\u0019\u0000\u00024\u0000\u0000\u0000\u0000\u0005\u0019\n\u0005\u0000\u0004\nsttx\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0004\u0003\u0004\u0000\u0001\r\u0019\u0000\u0002n\u0000\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00160\u0000\tfieldname\u0000\tfieldName\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0015\u0000\u0000\u0002\u0017\u0000\u0000\r\u0019\u0000\u00024\u0000\u0000\u0000l\u0000t\u0001\u0019\n\u0001\u0000\u0004\npcap\r\u0019\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u0019\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0019\u000f\u0019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0019\u0000\u0002\u0019\u0000\r\u0019\u0000\u0001L\u0000\u0000\u0000\u0000\u0019\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0000\u0003\u0019\n\u0000\u0004\nerrn\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u0019\u0000\u0004Z\u0000\u0000\u0000\u0001\u0019\u0019\u0019\r\u0019\u0000\u0002>\u0001\u0000\u0000\u0000\u0019\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0003I\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0003l\u0000\u0001\u0000\u0000\u0019\u0019\u0001\u0000\u0000\f\u0019\u0000\/\u0000) some error OTHER than not found in list:\u0000\u0002\u0000\u0000\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000R\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000i\u0000n\u0000 \u0000l\u0000i\u0000s\u0000t\u0000:\u0002\u0019\u0000\u0002\u0019\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0019\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u0019\u0000\u0003\u001a\u0000\n\u0000\u0004\nerrn\r\u001a\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u0001\u0002\u001a\u0001\u0000\u0002\u001a\u0002\u001a\u0003\r\u001a\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u001a\u0004\u001a\u0005\u0001\u0000\u0000\f\u001a\u0004\u0000*\u0000$ NOT FOUND, so try each altPattern: \u0000\u0002\u0000\u0000\u000e\u001a\u0005\u0000\u0001\u001a\u0006\u0011\u001a\u0006\u0000H\u0000 \u0000N\u0000O\u0000T\u0000 \u0000F\u0000O\u0000U\u0000N\u0000D\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000r\u0000y\u0000 \u0000e\u0000a\u0000c\u0000h\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000:\u0000 \u0002\u001a\u0003\u0000\u0002\u001a\u0007\u001a\b\r\u001a\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u001a\t\u001a\n\r\u001a\t\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001a\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u001a\b\u0000\u0002\u001a\u000b\u001a\f\r\u001a\u000b\u0000\u0003X\u0000\u0000\u0000\u0001\u001a\r\u001a\u000e\r\u001a\r\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u000f\u0002\u001a\u000f\u0000\u0002\u001a\u0010\u001a\u0011\r\u001a\u0010\u0000\u0002r\u0000\u0000\u0000\u0000\u001a\u0012\u001a\u0013\r\u001a\u0012\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u0014\u001a\u0015\r\u001a\u0014\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u001a\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u0016\u001a\u0017\r\u001a\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007pattern\u0000\u0000\r\u001a\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\r\u001a\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestlist\u0000\btestList\u0002\u001a\u0011\u0000\u0002\u001a\u0018\u001a\u0019\r\u001a\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0019\u0000\u0002\u001a\u001a\u001a\u001b\r\u001a\u001a\u0000\u0003Q\u0000\u0000\u0000\u0001\u001a\u001c\u001a\u001d\u001a\u001e\r\u001a\u001c\u0000\u0001k\u0000\u0000\u0000\u0001l\u001a\u001f\u0002\u001a\u001f\u0000\u0002\u001a \u001a!\r\u001a \u0000\u0003l\u0000\u0001\u0000\u0000\u001a\"\u001a#\u0001\u0000\u0000\f\u001a\"\u0000!\u0000\u001b BEGIN: try oneAltPattern: \u0000\u0002\u0000\u0000\u000e\u001a#\u0000\u0001\u001a$\u0011\u001a$\u00006\u0000 \u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000:\u0000 \u0002\u001a!\u0000\u0002\u001a%\u001a&\r\u001a%\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a&\u0000\u0002\u001a'\u001a(\r\u001a'\u0000\u0002r\u0000\u0000\u0000\u0000\u001a)\u001a*\r\u001a)\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u001a*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001a(\u0000\u0002\u001a+\u001a,\r\u001a+\u0000\u0003X\u0000\u0000\u0000\u0001\/\u001a-\u001a.\r\u001a-\u0000\u0002s\u0000\u0000\u0001\u000b\u0001*\u001a\/\u001a0\r\u001a\/\u0000\u0003l\u0000\u0005\u0001\u000b\u0001'\u001a1\r\u001a1\u0000\u0002b\u0000\u0000\u0001\u000b\u0001'\u001a2\u001a3\r\u001a2\u0000\u0002b\u0000\u0000\u0001\u000b\u0001\u001a\u001a4\u001a5\r\u001a4\u0000\u0002b\u0000\u0000\u0001\u000b\u0001\u0016\u001a6\u001a7\r\u001a6\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u001a8\u000e\u001a8\u0000\u0001\u001a9\u0011\u001a9\u0000\u0000\r\u001a7\u0000\u0002n\u0000\u0000\u0001\u000e\u0001\u0015\u001a:\u001a;\r\u001a:\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0015\u000b\u0000\u00140\u0000\btesttype\u0000\btestType\r\u001a;\u0000\u0001o\u0000\u0000\u0001\u000e\u0001\u0011\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\r\u001a5\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0019\u001a<\u000e\u001a<\u0000\u0001\u001a=\u0011\u001a=\u0000\u0002\u0000 \r\u001a3\u0000\u0002n\u0000\u0001\u0001\u001a\u0001&\u001a>\u001a?\r\u001a>\u0000\u0003I\u0000\u0000\u0001\u001b\u0001&\u001a@\u000b\u0000\u001a0\u0000\u000bquotestring\u0000\u000bquoteString\u0002\u001a@\u0000\u0002\u001aA\r\u001aA\u0000\u0002n\u0000\u0000\u0001\u001b\u0001\"\u001aB\u001aC\r\u001aB\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"\u000b\u0000\u00160\u0000\ttestmatch\u0000\ttestMatch\r\u001aC\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001e\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a?\u0000\u0000f\u0000\u0000\u0001\u001a\u0001\u001b\u0001\u0000\u0000\u0001\u0000\u0000\r\u001a0\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001aD\u001aE\r\u001aD\u0000\u0000;\u0000\u0000\u0001(\u0001)\r\u001aE\u0000\u0001o\u0000\u0000\u0001'\u0001(\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u000b\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\r\u001a.\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestlist\u0000\btestList\u0002\u001a,\u0000\u0002\u001aF\u001aG\r\u001aF\u0000\u0003l\u0000\u0002\u00010\u00010\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001aG\u0000\u0002\u001aH\u001aI\r\u001aH\u0000\u0002r\u0000\u0000\u00010\u0001?\u001aJ\u001aK\r\u001aJ\u0000\u0002n\u0000\u0001\u00010\u0001=\u001aL\u001aM\r\u001aL\u0000\u0003I\u0000\u0000\u00011\u0001=\u001aN\u000b\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u0002\u001aN\u0000\u0002\u001aO\u001aP\r\u001aO\u0000\u0001o\u0000\u0000\u00011\u00012\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aP\u0000\u0002\u001aQ\r\u001aQ\u0000\u0002b\u0000\u0000\u00012\u00019\u001aR\u001aS\r\u001aR\u0000\u0002b\u0000\u0000\u00012\u00015\u001aT\u001aU\r\u001aT\u0000\u0001o\u0000\u0000\u00012\u00013\u000b\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\r\u001aU\u0000\u0001o\u0000\u0000\u00013\u00014\u000b\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\r\u001aS\u0000\u0001m\u0000\u0000\u00015\u00018\u001aV\u000e\u001aV\u0000\u0001\u001aW\u0011\u001aW\u0000\u0002\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u001aM\u0000\u0000f\u0000\u0000\u00010\u00011\r\u001aK\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aI\u0000\u0002\u001aX\u001aY\r\u001aX\u0000\u0003l\u0000\u0002\u0001@\u0001@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001aY\u0000\u0002\u001aZ\u001a[\r\u001aZ\u0000\u0003l\u0000\u0002\u0001@\u0001@\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a[\u0000\u0002\u001a\\\u001a]\r\u001a\\\u0000\u0002r\u0000\u0000\u0001@\u0001Q\u001a^\u001a_\r\u001a^\u0000\u0002b\u0000\u0000\u0001@\u0001O\u001a`\u001aa\r\u001a`\u0000\u0002b\u0000\u0000\u0001@\u0001M\u001ab\u001ac\r\u001ab\u0000\u0002b\u0000\u0000\u0001@\u0001K\u001ad\u001ae\r\u001ad\u0000\u0002b\u0000\u0000\u0001@\u0001G\u001af\u001ag\r\u001af\u0000\u0002b\u0000\u0000\u0001@\u0001E\u001ah\u001ai\r\u001ah\u0000\u0002b\u0000\u0000\u0001@\u0001C\u001aj\u001ak\r\u001aj\u0000\u0001o\u0000\u0000\u0001@\u0001A\u000b\u0000\u00180\u0000\nselectcode\u0000\nselectCode\r\u001ak\u0000\u0001o\u0000\u0000\u0001A\u0001B\u000b\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\r\u001ai\u0000\u0001o\u0000\u0000\u0001C\u0001D\u000b\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\r\u001ag\u0000\u0001o\u0000\u0000\u0001E\u0001F\u000b\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\r\u001ae\u0000\u0001m\u0000\u0000\u0001G\u0001J\u001al\u000e\u001al\u0000\u0001\u001am\u0011\u001am\u0000\u0002\u0000 \r\u001ac\u0000\u0001o\u0000\u0000\u0001K\u0001L\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\r\u001aa\u0000\u0001o\u0000\u0000\u0001M\u0001N\u000b\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\r\u001a_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001a]\u0000\u0002\u001an\u001ao\r\u001an\u0000\u0003l\u0000\u0002\u0001R\u0001R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001ao\u0000\u0002\u001ap\u001aq\r\u001ap\u0000\u0002r\u0000\u0000\u0001R\u0001Y\u001ar\u001as\r\u001ar\u0000\u0002b\u0000\u0000\u0001R\u0001W\u001at\u001au\r\u001at\u0000\u0002b\u0000\u0000\u0001R\u0001U\u001av\u001aw\r\u001av\u0000\u0001o\u0000\u0000\u0001R\u0001S\u000b\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\r\u001aw\u0000\u0001o\u0000\u0000\u0001S\u0001T\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\r\u001au\u0000\u0001o\u0000\u0000\u0001U\u0001V\u000b\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\r\u001as\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u001aq\u0000\u0002\u001ax\u001ay\r\u001ax\u0000\u0003l\u0000\u0002\u0001Z\u0001Z\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001ay\u0000\u0002\u001az\u001a{\r\u001az\u0000\u0003l\u0000\u0002\u0001Z\u0001Z\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a{\u0000\u0002\u001a|\u001a}\r\u001a|\u0000\u0002O\u0000\u0001\u0001Z\u0001d\u001a~\u001a\r\u001a~\u0000\u0003I\u0000\u0002\u0001^\u0001c\u001a\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u001a\u0000\u0001o\u0000\u0000\u0001^\u0001_\u000b\u0000\u00140\u0000\btestcode\u0000\btestCode\u0002\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0001Z\u0001[\u0002\u001a}\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001e\u0001e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001e\u0001h\u001a\u001a\u001a\r\u001a\u0000\u0002r\u0000\u0000\u0001e\u0001h\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0001e\u0001f\n\u0000\b\u000bboovtrue\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\f\u001a\u0000#\u0000\u001d no error, so we selected it.\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000:\u0000 \u0000n\u0000o\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000 \u0000i\u0000t\u0000.\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001i\u0001j\u001a\u001a\u001a\r\u001a\u0000\u0000S\u0000\u0000\u0001i\u0001j\f\u001a\u0000+\u0000% no need to keep checking altPatterns\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000J\u0000 \u0000n\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000k\u0000e\u0000e\u0000p\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000i\u0000n\u0000g\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000s\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001k\u0001k\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001k\u0001k\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000!\u0000\u001b ERROR: try oneAltPattern. \u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00006\u0000 \u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000.\u0000 \u0002\u0000\u0000\r\u001a\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u001a\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003\u001a\n\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001a\u001e\u0000\u0001k\u0000\u0000\u0001t\u0001\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0000\u0001t\u0001\u001a\u001a\u001a\r\u001a\u0000\u0002>\u0001\u0000\u0001t\u0001y\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0001t\u0001u\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\r\u001a\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0003I\r\u001a\u0000\u0001k\u0000\u0000\u0001|\u0001\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001|\u0001|\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000\/\u0000) some error OTHER than not found in list:\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000R\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000i\u0000n\u0000 \u0000l\u0000i\u0000s\u0000t\u0000:\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003R\u0000\u0000\u0001|\u0001\u001a\u001a\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003\u001a\n\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a\u0000\u0003l\u0000\u0001\u0001\u0001\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000=\u00007 just try the next altPattern, so continue repeat loop.\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000n\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000e\u0000x\u0000t\u0000 \u0000a\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000 \u0000l\u0000o\u0000o\u0000p\u0000.\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0001\u0001\u001a\u001a\u0001\u0000\u0000\f\u001a\u0000\"\u0000\u001c END OF: try oneAltPattern. \u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00008\u0000 \u0000E\u0000N\u0000D\u0000 \u0000O\u0000F\u0000:\u0000 \u0000t\u0000r\u0000y\u0000 \u0000o\u0000n\u0000e\u0000A\u0000l\u0000t\u0000P\u0000a\u0000t\u0000t\u0000e\u0000r\u0000n\u0000.\u0000 \u0002\u0000\u0000\u0002\u001a\u001b\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\r\u001a\u000e\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001a\f\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0001L\u0000\u0000\u0001\u0001\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0019\u0000\u0002\u001a~\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002~\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000z\u001a\u001a\nz\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000y\u000by\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003x\u001aw\nx\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006w\u0000\u0000\r\u0019\u0000\u0003R\u0000\u0000\u0001\u0001u\u001a\u001a\nu\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0002b\u0000\u0000\u0001\u0001\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r\u001a\u0000\u0003I\u0000\u0000\u0001\u0001t\u001as\u000bt\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002\u001a\u0000\u0002\u001ar\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001q\u000bq\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002r\u0000\u0000\u0002s\u0000\u0000\r\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\u0006\u0000 \u0000-\u0000 \r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001p\u000bp\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001a\u0000\u0003o\u001an\no\u0000\u0004\nerrn\r\u001a\u0000\u0001o\u0000\u0000\u0001\u0001m\u000bm\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006n\u0000\u0000\u0002\u0019\u0000\u0002\u001al\r\u001a\u0000\u0003l\u0000\u0002\u0001\u0001kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002l\u0000\u0000\u0002\u0019\/\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002i\u0000\u0000\u0000[\u0000^\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u001aa\u000bb\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u0002\u001a\u0000\u0002\u001a`\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000F\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000^\u001a\u001a\u0001^\u0000\u0000\f\u001a\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000D\u001a\u001a\u001a\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0003\u00004\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\nZ\u001aY\u000bZ\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001a\u0000\u0002\u001aX\r\u001a\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006W\u0002W\u0000\u0000\u0002X\u0000\u0000\u0002Y\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000bVUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002O\u0000\u0000\u0000\u000b\u00002\u001a\u001a\r\u001a\u0000\u0002O\u0000\u0000\u0000\u000f\u00001\u001a\u001a\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0016\u00000\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001bSRQ\u000bS\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002R\u0000\u0000\u0002Q\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002r\u0000\u0000\u0000\u001c\u0000-\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001dP\nP\u0000\b\u000bboovtrue\r\u001a\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u001b\u0000\r\u001a\u0000\u00011\u0000\u0000\u0000*\u0000,O\nO\u0000\u0004\nfocu\r\u001b\u0000\u0000\u0003l\u0000\u0005\u0000\u001d\u0000*\u001b\u0001NM\r\u001b\u0001\u0000\u0002n\u0000\u0000\u0000\u001d\u0000*\u001b\u0002\u001b\u0003\r\u001b\u0002\u0000\u00024\u0000\u0000\u0000'\u0000*L\u001b\u0004\nL\u0000\u0004\ntabB\r\u001b\u0004\u0000\u0001m\u0000\u0000\u0000(\u0000)K\u0003K\u0000\u0001\r\u001b\u0003\u0000\u0002n\u0000\u0000\u0000\u001d\u0000'\u001b\u0005\u001b\u0006\r\u001b\u0005\u0000\u00024\u0000\u0000\u0000$\u0000'J\u001b\u0007\nJ\u0000\u0004\nscra\r\u001b\u0007\u0000\u0001m\u0000\u0000\u0000%\u0000&I\u0003I\u0000\u0001\r\u001b\u0006\u0000\u0002n\u0000\u0000\u0000\u001d\u0000$\u001b\b\u001b\t\r\u001b\b\u0000\u00024\u0000\u0000\u0000!\u0000$H\u001b\n\nH\u0000\u0004\ntabg\r\u001b\n\u0000\u0001m\u0000\u0000\u0000\"\u0000#G\u0003G\u0000\u0001\r\u001b\t\u0000\u00024\u0000\u0000\u0000\u001d\u0000!F\u001b\u000b\nF\u0000\u0004\ncwin\r\u001b\u000b\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 E\u0003E\u0000\u0001\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u001a\u0000\u0002\u001b\fD\r\u001b\f\u0000\u0001L\u0000\u0000\u0000.\u00000\u001b\r\r\u001b\r\u0000\u0001m\u0000\u0000\u0000.\u0000\/C\nC\u0000\b\u000bboovtrue\u0002D\u0000\u0000\r\u001a\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013B\u001b\u000e\nB\u0000\u0004\npcap\r\u001b\u000e\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001b\u000f\u000e\u001b\u000f\u0000\u0001\u001b\u0010\u0011\u001b\u0010\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001a\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001b\u0011\u000f\u001b\u0011\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u0012A\r\u001b\u0012\u0000\u0003l\u0000\u0002\u00003\u00003@?>\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002A\u0000\u0000\r\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000=\u001b\u0013\u001b\u0014\n=\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0014\u0000\u0003;\u001b\u0015:\n;\u0000\u0004\nerrn\r\u001b\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006:\u0000\u0000\r\u001a\u0000\u0003R\u0000\u0000\u0000<\u0000D8\u001b\u0016\u001b\u0017\n8\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0016\u0000\u0002b\u0000\u0000\u0000@\u0000C\u001b\u0018\u001b\u0019\r\u001b\u0018\u0000\u0001m\u0000\u0000\u0000@\u0000A\u001b\u001a\u000e\u001b\u001a\u0000\u0001\u001b\u001b\u0011\u001b\u001b\u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000o\u0000c\u0000u\u0000s\u0000 \u0000o\u0000n\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000-\u0000 \r\u001b\u0019\u0000\u0001o\u0000\u0000\u0000A\u0000B7\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0017\u0000\u00036\u001b\u001c5\n6\u0000\u0004\nerrn\r\u001b\u001c\u0000\u0001o\u0000\u0000\u0000>\u0000?4\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00065\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u001d3\r\u001b\u001d\u0000\u0003l\u0000\u0002\u0000E\u0000E210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u00023\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u001e\u001b\u001f\r\u001b\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\/.-\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0002\u001b\u001f\u0000\u0002\u001b \u001b!\r\u001b \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u001b!\u0000\u0002\u001b\"\u001b#\r\u001b\"\u0000\u0002i\u0000\u0000\u0000_\u0000b\u001b$\u001b%\r\u001b$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000)\u001b&(\u000b)\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u001b&\u0000\u0002\u001b''\r\u001b'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002'\u0000\u0000\u0002(\u0000\u0000\r\u001b%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000A\u001b(\u0002\u001b(\u0000\u0002\u001b)\u001b*\r\u001b)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000%\u001b+\u001b,\u0001%\u0000\u0000\f\u001b+\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u001b,\u0000\u0001\u001b-\u0011\u001b-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u001b*\u0000\u0002\u001b.\u001b\/\r\u001b.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u001b\/\u0000\u0002\u001b0\u001b1\r\u001b0\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000?\u001b2\u001b3\u001b4\r\u001b2\u0000\u0001k\u0000\u0000\u0000\u0003\u0000+\u001b5\u0002\u001b5\u0000\u0002\u001b6\u001b7\r\u001b6\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\n!\u001b8 \u000b!\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001b8\u0000\u0002\u001b9\u001f\r\u001b9\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006\u001e\u0002\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002 \u0000\u0000\u0002\u001b7\u0000\u0002\u001b:\u001d\r\u001b:\u0000\u0002O\u0000\u0000\u0000\u000b\u0000+\u001b;\u001b<\r\u001b;\u0000\u0002O\u0000\u0000\u0000\u000f\u0000*\u001b=\u001b>\r\u001b=\u0000\u0001k\u0000\u0000\u0000\u0016\u0000)\u001b?\u0002\u001b?\u0000\u0002\u001b@\u001bA\r\u001b@\u0000\u0002n\u0000\u0001\u0000\u0016\u0000&\u001bB\u001bC\r\u001bB\u0000\u0003I\u0000\u0000\u0000\u0017\u0000&\u001c\u001bD\u001b\u000b\u001c\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002\u001bD\u0000\u0002\u001bE\u001bF\r\u001bE\u0000\u0002n\u0000\u0000\u0000\u0017\u0000!\u001bG\u001bH\r\u001bG\u0000\u00024\u0000\u0000\u0000\u001e\u0000!\u001a\u001bI\n\u001a\u0000\u0004\npopB\r\u001bI\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u001bJ\u000e\u001bJ\u0000\u0001\u001bK\u0011\u001bK\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000:\r\u001bH\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001e\u001bL\u001bM\r\u001bL\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0019\u001bN\n\u0019\u0000\u0004\ntabg\r\u001bN\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0018\u0003\u0018\u0000\u0001\r\u001bM\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001b\u0017\u001bO\n\u0017\u0000\u0004\ncwin\r\u001bO\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0016\u0003\u0016\u0000\u0001\u0002\u001bF\u0000\u0002\u001bP\u0015\r\u001bP\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u0014\u000b\u0014\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0015\u0000\u0000\u0002\u001b\u0000\u0000\r\u001bC\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001bA\u0000\u0002\u001bQ\u0013\r\u001bQ\u0000\u0001L\u0000\u0000\u0000'\u0000)\u001bR\r\u001bR\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0012\n\u0012\u0000\b\u000bboovtrue\u0002\u0013\u0000\u0000\r\u001b>\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0011\u001bS\n\u0011\u0000\u0004\npcap\r\u001bS\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001bT\u000e\u001bT\u0000\u0001\u001bU\u0011\u001bU\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001b<\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001bV\u000f\u001bV\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001d\u0000\u0000\r\u001b3\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u001bW\u001bX\n\u0010\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001bW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001bX\u0000\u0003\u000e\u001bY\r\n\u000e\u0000\u0004\nerrn\r\u001bY\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\r\u0000\u0000\r\u001b4\u0000\u0003R\u0000\u0000\u00003\u0000?\u000b\u001bZ\u001b[\n\u000b\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001bZ\u0000\u0002b\u0000\u0000\u00007\u0000>\u001b\\\u001b]\r\u001b\\\u0000\u0002b\u0000\u0000\u00007\u0000<\u001b^\u001b_\r\u001b^\u0000\u0002b\u0000\u0000\u00007\u0000:\u001b`\u001ba\r\u001b`\u0000\u0001m\u0000\u0000\u00007\u00008\u001bb\u000e\u001bb\u0000\u0001\u001bc\u0011\u001bc\u0000.\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000'\r\u001ba\u0000\u0001o\u0000\u0000\u00008\u00009\n\u000b\n\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001b_\u0000\u0001m\u0000\u0000\u0000:\u0000;\u001bd\u000e\u001bd\u0000\u0001\u001be\u0011\u001be\u0000\b\u0000'\u0000 \u0000-\u0000 \r\u001b]\u0000\u0001o\u0000\u0000\u0000<\u0000=\t\u000b\t\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b[\u0000\u0003\b\u001bf\u0007\n\b\u0000\u0004\nerrn\r\u001bf\u0000\u0001o\u0000\u0000\u00005\u00006\u0006\u000b\u0006\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0007\u0000\u0000\u0002\u001b1\u0000\u0002\u001bg\u0005\r\u001bg\u0000\u0003l\u0000\u0002\u0000@\u0000@\u0004\u0003\u0002\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0002\u0005\u0000\u0000\u0002\u001b#\u0000\u0002\u001bh\u001bi\r\u001bh\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u001bi\u0000\u0002\u001bj\u001bk\r\u001bj\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001bk\u0000\u0002\u001bl\u001bm\r\u001bl\u0000\u0002i\u0000\u0000\u0000c\u0000f\u001bn\u001bo\r\u001bn\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001bp\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001bp\u0000\u0002\u001bq\r\u001bq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001bo\u0000\u0001k\u0000\u0000\u0000\u0000\u0000v\u001br\u0002\u001br\u0000\u0002\u001bs\u001bt\r\u001bs\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001bu\u001bv\u0001\u0000\u0000\f\u001bu\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\u001bv\u0000\u0001\u001bw\u0011\u001bw\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\u001bt\u0000\u0002\u001bx\u001by\r\u001bx\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001by\u0000\u0002\u001bz\u001b{\r\u001bz\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u001b|\u001b}\r\u001b|\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\u001b~\u0006\u001b~\u0000\u0003\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000s\u0006\u0000\u0000\r\u001b}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001b{\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001b\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003Q\u0000\u0000\u0000\r\u0000t\u001b\u001b\u001b\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0010\u0000X\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0015\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d\u001b\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002O\u0000\u0000\u0000\u001e\u0000X\u001b\u001b\r\u001b\u0000\u0002O\u0000\u0000\u0000\"\u0000W\u001b\u001b\r\u001b\u0000\u0001k\u0000\u0000\u0000)\u0000V\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000)\u0000A\u001b\u001b\r\u001b\u0000\u0001N\u0000\u0000\u0000)\u0000?\u001b\r\u001b\u0000\u0003l\u0000\u0005\u0000)\u0000>\u001b\r\u001b\u0000\u00026\u0001\u0000\u0000)\u0000>\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000)\u00003\u001b\u001b\r\u001b\u0000\u00024\u0000\u0001\u00000\u00003\u001b\n\u0000\u0004\nradB\r\u001b\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r\u001b\u0000\u0002n\u0000\u0000\u0000)\u00000\u001b\u001b\r\u001b\u0000\u00024\u0000\u0000\u0000-\u00000\u001b\n\u0000\u0004\ntabg\r\u001b\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r\u001b\u0000\u00024\u0000\u0000\u0000)\u0000-\u001b\n\u0000\u0004\ncwin\r\u001b\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u001b\u0000\u0002E\u0000\u0000\u00004\u0000=\u001b\u001b\r\u001b\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\ntitl\r\u001b\u0000\u0002n\u0000\u0000\u00008\u0000<\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0004Z\u0000\u0000\u0000B\u0000S\u001b\u001b\r\u001b\u0000\u0002>\u0001\u0000\u0000B\u0000G\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000B\u0000E\u001b\u001b\r\u001b\u0000\u00011\u0000\u0000\u0000C\u0000E\n\u0000\u0004\nvalL\r\u001b\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\r\u001b\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0001\r\u001b\u0000\u0003I\u0000\u0002\u0000J\u0000O\u001b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001b\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001L\u0000\u0000\u0000T\u0000V\u001b\r\u001b\u0000\u0001m\u0000\u0000\u0000T\u0000U\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u001b\u0000\u00024\u0000\u0000\u0000\"\u0000&\u001b\n\u0000\u0004\npcap\r\u001b\u0000\u0001m\u0000\u0000\u0000$\u0000%\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001b\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u001b\u000f\u001b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u001b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0000\u0003\u001b\n\u0000\u0004\nerrn\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001b\u0000\u0003R\u0000\u0000\u0000`\u0000t\u001b\u001b\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000s\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000q\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000f\u0000m\u001b\u001b\r\u001b\u0000\u0001m\u0000\u0000\u0000f\u0000i\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000(\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000'\r\u001b\u0000\u0002n\u0000\u0000\u0000i\u0000l\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000j\u0000l\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000m\u0000p\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0010\u0000'\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\u001b\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001b\u0000\u0003\u001b\n\u0000\u0004\nerrn\r\u001b\u0000\u0001o\u0000\u0000\u0000d\u0000e\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001bm\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002i\u0000\u0000\u0000g\u0000j\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b\u001b\u0001\u0000\u0000\f\u001b\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t\u001b\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001b\u0006\u001b\u0000\u0003\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000F\u0000i\u0000e\u0000l\u0000d\u0000s\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002i\u0000\u0000\u0000k\u0000n\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b\u001b\u0001\u0000\u0000\f\u001b\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t\u001c\u0000\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001c\u0000\u0000\u0002\u001c\u0001\r\u001c\u0001\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001c\u0002\u0006\u001c\u0002\u0000\u0003\u001c\u0003\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001c\u0003\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001c\u0004\u000e\u001c\u0004\u0000\u0001\u001c\u0005\u0011\u001c\u0005\u0000\u001a\u0000R\u0000e\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000h\u0000i\u0000p\u0000s\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001c\u0006\u001c\u0007\r\u001c\u0006\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0007\u0000\u0002\u001c\b\r\u001c\b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001b\u0000\u0002\u001c\t\u001c\n\r\u001c\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\n\u0000\u0002\u001c\u000b\u001c\f\r\u001c\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\f\u0000\u0002\u001c\r\u001c\u000e\r\u001c\r\u0000\u0002i\u0000\u0000\u0000o\u0000r\u001c\u000f\u001c\u0010\r\u001c\u000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u0011\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c\u0011\u0000\u0002\u001c\u0012\r\u001c\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c\u0010\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000b\u001c\u0013\u0002\u001c\u0013\u0000\u0002\u001c\u0014\u001c\u0015\r\u001c\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c\u0016\u001c\u0017\u0001\u0000\u0000\f\u001c\u0016\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001c\u0017\u0000\u0001\u001c\u0018\u0011\u001c\u0018\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001c\u0015\u0000\u0002\u001c\u0019\u001c\u001a\r\u001c\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u001c\u001a\u0000\u0002\u001c\u001b\u001c\u001c\r\u001c\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\t|\u001c\u001d{\u000b|\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0002\u001c\u001d\u0000\u0002\u001c\u001ez\r\u001c\u001e\u0000\u0001K\u0000\u0000\u0000\u0001\u0000\u0005\u001c\u001f\u0006\u001c\u001f\u0000\u0003y\u001c x\u000by\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\u001c \u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u001c!\u000e\u001c!\u0000\u0001\u001c\"\u0011\u001c\"\u0000\f\u0000T\u0000a\u0000b\u0000l\u0000e\u0000s\u0006x\u0000\u0000\u0002z\u0000\u0000\u0002{\u0000\u0000\u0002\u001c\u001c\u0000\u0002\u001c#w\r\u001c#\u0000\u0003l\u0000\u0002\u0000\n\u0000\nvut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002w\u0000\u0000\u0002\u001c\u000e\u0000\u0002\u001c$\u001c%\r\u001c$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u001c%\u0000\u0002\u001c&\u001c'\r\u001c&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000pon\u0001p\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u001c'\u0000\u0002\u001c(\u001c)\r\u001c(\u0000\u0002i\u0000\u0000\u0000s\u0000v\u001c*\u001c+\r\u001c*\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000m\u001c,l\u000bm\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u0002\u001c,\u0000\u0002\u001c-k\r\u001c-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002k\u0000\u0000\u0002l\u0000\u0000\r\u001c+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000a\u001c.\u0002\u001c.\u0000\u0002\u001c\/\u001c0\r\u001c\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000i\u001c1\u001c2\u0001i\u0000\u0000\f\u001c1\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c2\u0000\u0001\u001c3\u0011\u001c3\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c0\u0000\u0002\u001c4\u001c5\r\u001c4\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u001c5\u0000\u0002\u001c6\u001c7\r\u001c6\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000_\u001c8\u001c9\u001c:\r\u001c8\u0000\u0001k\u0000\u0000\u0000\u0003\u0000K\u001c;\u0002\u001c;\u0000\u0002\u001c<\u001c=\r\u001c<\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\ne\u001c>d\u000be\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c>\u0000\u0002\u001c?c\r\u001c?\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006b\u0002b\u0000\u0000\u0002c\u0000\u0000\u0002d\u0000\u0000\u0002\u001c=\u0000\u0002\u001c@a\r\u001c@\u0000\u0002O\u0000\u0000\u0000\u000b\u0000K\u001cA\u001cB\r\u001cA\u0000\u0002O\u0000\u0000\u0000\u000f\u0000J\u001cC\u001cD\r\u001cC\u0000\u0001k\u0000\u0000\u0000\u0016\u0000I\u001cE\u0002\u001cE\u0000\u0002\u001cF\u001cG\r\u001cF\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001cH\u001cI\r\u001cH\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001b`_^\u000b`\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002_\u0000\u0000\u0002^\u0000\u0000\r\u001cI\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001cG\u0000\u0002\u001cJ\u001cK\r\u001cJ\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u001cK\u0000\u0002\u001cL\u001cM\r\u001cL\u0000\u0002r\u0000\u0000\u0000\u001c\u0000>\u001cN\u001cO\r\u001cN\u0000\u0002n\u0000\u0000\u0000\u001c\u0000<\u001cP\u001cQ\r\u001cP\u0000\u00011\u0000\u0000\u0000:\u0000<Z\nZ\u0000\u0004\nvalL\r\u001cQ\u0000\u0002n\u0000\u0000\u0000\u001c\u0000:\u001cR\u001cS\r\u001cR\u0000\u00024\u0000\u0000\u00007\u0000:Y\u001cT\nY\u0000\u0004\nsttx\r\u001cT\u0000\u0001m\u0000\u0000\u00008\u00009X\u0003X\u0000\u0001\r\u001cS\u0000\u0003l\u0000\u0005\u0000\u001c\u00007\u001cUWV\r\u001cU\u0000\u00026\u0001\u0000\u0000\u001c\u00007\u001cV\u001cW\r\u001cV\u0000\u0002n\u0000\u0000\u0000\u001c\u0000+\u001cX\u001cY\r\u001cX\u0000\u00012\u0000\u0000\u0000)\u0000+U\nU\u0000\u0004\ncrow\r\u001cY\u0000\u0003l\u0000\u0005\u0000\u001c\u0000)\u001cZTS\r\u001cZ\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\u001c[\u001c\\\r\u001c[\u0000\u00024\u0000\u0000\u0000&\u0000)R\u001c]\nR\u0000\u0004\ntabB\r\u001c]\u0000\u0001m\u0000\u0000\u0000'\u0000(Q\u0003Q\u0000\u0001\r\u001c\\\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\u001c^\u001c_\r\u001c^\u0000\u00024\u0000\u0000\u0000#\u0000&P\u001c`\nP\u0000\u0004\nscra\r\u001c`\u0000\u0001m\u0000\u0000\u0000$\u0000%O\u0003O\u0000\u0001\r\u001c_\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\u001ca\u001cb\r\u001ca\u0000\u00024\u0000\u0000\u0000 \u0000#N\u001cc\nN\u0000\u0004\ntabg\r\u001cc\u0000\u0001m\u0000\u0000\u0000!\u0000\"M\u0003M\u0000\u0001\r\u001cb\u0000\u00024\u0000\u0000\u0000\u001c\u0000 L\u001cd\nL\u0000\u0004\ncwin\r\u001cd\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fK\u0003K\u0000\u0001\u0001T\u0000\u0000\u0001S\u0000\u0000\r\u001cW\u0000\u0002=\u0000\u0003\u0000,\u00006\u001ce\u001cf\r\u001ce\u0000\u0002n\u0000\u0000\u0000-\u00002\u001cg\u001ch\r\u001cg\u0000\u00011\u0000\u0000\u00000\u00002J\nJ\u0000\u0004\nvalL\r\u001ch\u0000\u00024\u0000\u0000\u0000-\u00000I\u001ci\nI\u0000\u0004\nsttx\r\u001ci\u0000\u0001m\u0000\u0000\u0000.\u0000\/H\u0003H\u0000\u0002\r\u001cf\u0000\u0001m\u0000\u0000\u00003\u00005\u001cj\u000e\u001cj\u0000\u0001\u001ck\u0011\u001ck\u0000\u0012\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u001cO\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u0002\u001cM\u0000\u0002\u001cl\u001cm\r\u001cl\u0000\u0002n\u0000\u0001\u0000?\u0000F\u001cn\u001co\r\u001cn\u0000\u0003I\u0000\u0000\u0000@\u0000FF\u001cpE\u000bF\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001cp\u0000\u0002\u001cqD\r\u001cq\u0000\u0001J\u0000\u0000\u0000@\u0000BC\u0002C\u0000\u0000\u0002D\u0000\u0000\u0002E\u0000\u0000\r\u001co\u0000\u0000f\u0000\u0000\u0000?\u0000@\u0002\u001cm\u0000\u0002\u001crB\r\u001cr\u0000\u0001L\u0000\u0000\u0000G\u0000I\u001cs\r\u001cs\u0000\u0001o\u0000\u0000\u0000G\u0000HA\u000bA\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u0002B\u0000\u0000\r\u001cD\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013@\u001ct\n@\u0000\u0004\npcap\r\u001ct\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001cu\u000e\u001cu\u0000\u0001\u001cv\u0011\u001cv\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001cB\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001cw\u000f\u001cw\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002a\u0000\u0000\r\u001c9\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000?\u001cx\u001cy\n?\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001cx\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001cy\u0000\u0003=\u001cz<\n=\u0000\u0004\nerrn\r\u001cz\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006<\u0000\u0000\r\u001c:\u0000\u0003R\u0000\u0000\u0000S\u0000_:\u001c{\u001c|\n:\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c{\u0000\u0002b\u0000\u0000\u0000Y\u0000^\u001c}\u001c~\r\u001c}\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000F\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000-\u0000 \r\u001c~\u0000\u0001o\u0000\u0000\u0000\\\u0000]9\u000b9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c|\u0000\u00038\u001c7\n8\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000W\u0000X6\u000b6\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00067\u0000\u0000\u0002\u001c7\u0000\u0002\u001c5\r\u001c\u0000\u0003l\u0000\u0002\u0000`\u0000`432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u00025\u0000\u0000\u0002\u001c)\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000010\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000.-,\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002i\u0000\u0000\u0000w\u0000z\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u001c*\u000b+\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u0002\u001c\u0000\u0002\u001c)\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002)\u0000\u0000\u0002*\u0000\u0000\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0000a\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000'\u001c\u001c\u0001'\u0000\u0000\f\u001c\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000_\u001c\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0003\u0000K\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\n#\u001c\"\u000b#\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001c\u0000\u0002\u001c!\r\u001c\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006 \u0002 \u0000\u0000\u0002!\u0000\u0000\u0002\"\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001f\r\u001c\u0000\u0002O\u0000\u0000\u0000\u000b\u0000K\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u000f\u0000J\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0016\u0000I\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000\u0016\u0000\u001b\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001b\u001e\u001d\u001c\u000b\u001e\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u001d\u0000\u0000\u0002\u001c\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0000\u001c\u0000>\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000<\u001c\u001c\r\u001c\u0000\u00011\u0000\u0000\u0000:\u0000<\u0018\n\u0018\u0000\u0004\nvalL\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000:\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u00007\u0000:\u0017\u001c\n\u0017\u0000\u0004\nsttx\r\u001c\u0000\u0001m\u0000\u0000\u00008\u00009\u0016\u0003\u0016\u0000\u0001\r\u001c\u0000\u0003l\u0000\u0005\u0000\u001c\u00007\u001c\u0015\u0014\r\u001c\u0000\u00026\u0001\u0000\u0000\u001c\u00007\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000+\u001c\u001c\r\u001c\u0000\u00012\u0000\u0000\u0000)\u0000+\u0013\n\u0013\u0000\u0004\ncrow\r\u001c\u0000\u0003l\u0000\u0005\u0000\u001c\u0000)\u001c\u0012\u0011\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000&\u0000)\u0010\u001c\n\u0010\u0000\u0004\ntabB\r\u001c\u0000\u0001m\u0000\u0000\u0000'\u0000(\u000f\u0003\u000f\u0000\u0001\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000#\u0000&\u000e\u001c\n\u000e\u0000\u0004\nscra\r\u001c\u0000\u0001m\u0000\u0000\u0000$\u0000%\r\u0003\r\u0000\u0001\r\u001c\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000 \u0000#\f\u001c\n\f\u0000\u0004\ntabg\r\u001c\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u000b\u0003\u000b\u0000\u0001\r\u001c\u0000\u00024\u0000\u0000\u0000\u001c\u0000 \n\u001c\n\n\u0000\u0004\ncwin\r\u001c\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\t\u0003\t\u0000\u0001\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\r\u001c\u0000\u0002>\u0001\u0000\u0000,\u00006\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000-\u00002\u001c\u001c\r\u001c\u0000\u00011\u0000\u0000\u00000\u00002\b\n\b\u0000\u0004\nvalL\r\u001c\u0000\u00024\u0000\u0000\u0000-\u00000\u0007\u001c\n\u0007\u0000\u0004\nsttx\r\u001c\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0006\u0003\u0006\u0000\u0002\r\u001c\u0000\u0001m\u0000\u0000\u00003\u00005\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0012\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000?\u0000F\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000@\u0000F\u0004\u001c\u0003\u000b\u0004\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001c\u0000\u0002\u001c\u0002\r\u001c\u0000\u0001J\u0000\u0000\u0000@\u0000B\u0001\u0002\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0003\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000?\u0000@\u0002\u001c\u0000\u0002\u001c\u0000\r\u001c\u0000\u0001L\u0000\u0000\u0000G\u0000I\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u0002\u0000\u0000\u0000\r\u001c\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\n\u0000\u0004\npcap\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001c\u000f\u001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001f\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c\u0000\u0003\u001c\n\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000S\u0000_\u001c\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001c\u0000\u0002b\u0000\u0000\u0000Y\u0000^\u001c\u001c\r\u001c\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000F\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000-\u0000 \r\u001c\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001c\u0000\u0003\u001c\n\u0000\u0004\nerrn\r\u001c\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001c\u0000\u0002\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000`\u0000`\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002i\u0000\u0000\u0000{\u0000~\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u0002\u001c\u0000\u0002\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c\u001c\u0001\u0000\u0000\f\u001c\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0001\u001c\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u0003\u0001\u001c\u001c\r\u001c\u0000\u0002O\u0000\u0000\u0000\u0007\u0001\u001c\u001c\r\u001c\u0000\u0001k\u0000\u0000\u0000\u000e\u0001\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\u001d\u0000\u001d\u0001\r\u001d\u0000\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0001\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\u001c\u0000\u0002\u001d\u0002\u001d\u0003\r\u001d\u0002\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d\u0003\u0000\u0002\u001d\u0004\u001d\u0005\r\u001d\u0004\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\u001d\u0006\u001d\u0007\u0001\u0000\u0000\f\u001d\u0006\u0000\u001c\u0000\u0016 try to open Manage DB\u0000\u0002\u0000\u0000\u000e\u001d\u0007\u0000\u0001\u001d\b\u0011\u001d\b\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0002\u001d\u0005\u0000\u0002\u001d\t\r\u001d\t\u0000\u0004Z\u0000\u0000\u0000\u0014\u0001\u001d\n\u001d\u000b\u001d\f\r\u001d\n\u0000\u0002C\u0000\u0000\u0000\u0014\u0000\u001c\u001d\r\u001d\u000e\r\u001d\r\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u001d\u000f\u001d\u0010\r\u001d\u000f\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r\u001d\u0010\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\u001d\u0011\n\u0000\u0004\ncwin\r\u001d\u0011\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r\u001d\u000e\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u001d\u0012\u000e\u001d\u0012\u0000\u0001\u001d\u0013\u0011\u001d\u0013\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000o\u0000r\r\u001d\u000b\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!\u001d\u0014\r\u001d\u0014\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u001d\f\u0000\u0001k\u0000\u0000\u0000$\u0001\u001d\u0015\u0002\u001d\u0015\u0000\u0002\u001d\u0016\u001d\u0017\r\u001d\u0016\u0000\u0003I\u0000\u0002\u0000$\u0000D\u001d\u0018\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0018\u0000\u0003l\u0000\u0005\u0000$\u0000@\u001d\u0019\r\u001d\u0019\u0000\u00026\u0001\u0000\u0000$\u0000@\u001d\u001a\u001d\u001b\r\u001d\u001a\u0000\u0002n\u0000\u0000\u0000$\u00007\u001d\u001c\u001d\u001d\r\u001d\u001c\u0000\u00024\u0000\u0001\u00004\u00007\u001d\u001e\n\u0000\u0004\nmenI\r\u001d\u001e\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0001\r\u001d\u001d\u0000\u0002n\u0000\u0000\u0000$\u00004\u001d\u001f\u001d \r\u001d\u001f\u0000\u00024\u0000\u0000\u00001\u00004\u001d!\n\u0000\u0004\nmenE\r\u001d!\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r\u001d \u0000\u0002n\u0000\u0000\u0000$\u00001\u001d\"\u001d#\r\u001d\"\u0000\u00024\u0000\u0000\u0000.\u00001\u001d$\n\u0000\u0004\nmenI\r\u001d$\u0000\u0001m\u0000\u0000\u0000\/\u00000\u001d%\u000e\u001d%\u0000\u0001\u001d&\u0011\u001d&\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r\u001d#\u0000\u0002n\u0000\u0000\u0000$\u0000.\u001d'\u001d(\r\u001d'\u0000\u00024\u0000\u0000\u0000+\u0000.\u001d)\n\u0000\u0004\nmenE\r\u001d)\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\r\u001d(\u0000\u0002n\u0000\u0000\u0000$\u0000+\u001d*\u001d+\r\u001d*\u0000\u00024\u0000\u0000\u0000(\u0000+\u001d,\n\u0000\u0004\nmbri\r\u001d,\u0000\u0001m\u0000\u0000\u0000)\u0000*\u001d-\u000e\u001d-\u0000\u0001\u001d.\u0011\u001d.\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u001d+\u0000\u00024\u0000\u0000\u0000$\u0000(\u001d\/\n\u0000\u0004\nmbar\r\u001d\/\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\r\u001d\u001b\u0000\u0002C\u0000\u0000\u00008\u0000?\u001d0\u001d1\r\u001d0\u0000\u00011\u0000\u0000\u00009\u0000;\n\u0000\u0004\npnam\r\u001d1\u0000\u0001m\u0000\u0000\u0000<\u0000>\u001d2\u000e\u001d2\u0000\u0001\u001d3\u0011\u001d3\u0000\u0010\u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001d\u0017\u0000\u0002\u001d4\u001d5\r\u001d4\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d5\u0000\u0002\u001d6\u001d7\r\u001d6\u0000\u0003l\u0000\u0001\u0000E\u0000E\u001d8\u001d9\u0001\u0000\u0000\f\u001d8\u00003\u0000- do this in case already on relationships tab\u0000\u0002\u0000\u0000\u000e\u001d9\u0000\u0001\u001d:\u0011\u001d:\u0000Z\u0000 \u0000d\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000c\u0000a\u0000s\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000o\u0000n\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000h\u0000i\u0000p\u0000s\u0000 \u0000t\u0000a\u0000b\u0002\u001d7\u0000\u0002\u001d;\u001d<\r\u001d;\u0000\u0003l\u0000\u0001\u0000E\u0000J\u001d=\u001d>\u001d?\r\u001d=\u0000\u0003I\u0000\u0002\u0000E\u0000J\u001d@\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d@\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d>\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d?\u0000\u0001\u001dA\u0011\u001dA\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001d<\u0000\u0002\u001dB\u001dC\r\u001dB\u0000\u0002r\u0000\u0000\u0000K\u0000N\u001dD\u001dE\r\u001dD\u0000\u0001m\u0000\u0000\u0000K\u0000L\n\u0000\b\u000bboovtrue\r\u001dE\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001dC\u0000\u0002\u001dF\u001dG\r\u001dF\u0000\u0002V\u0000\u0000\u0000O\u0000\u001dH\u001dI\r\u001dH\u0000\u0004Z\u0000\u0000\u0000U\u0000\u001dJ\u001dK\u001dL\r\u001dJ\u0000\u0002C\u0001\u0000\u0000U\u0000_\u001dM\u001dN\r\u001dM\u0000\u0002n\u0000\u0000\u0000U\u0000[\u001dO\u001dP\r\u001dO\u0000\u00011\u0000\u0000\u0000Y\u0000[\n\u0000\u0004\npnam\r\u001dP\u0000\u00024\u0000\u0000\u0000U\u0000Y\u001dQ\n\u0000\u0004\ncwin\r\u001dQ\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u001dN\u0000\u0001m\u0000\u0000\u0000[\u0000^\u001dR\u000e\u001dR\u0000\u0001\u001dS\u0011\u001dS\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001dK\u0000\u0001k\u0000\u0000\u0000b\u0000\u001dT\u0002\u001dT\u0000\u0002\u001dU\u001dV\r\u001dU\u0000\u0003I\u0000\u0002\u0000b\u0000z\u001dW\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001dW\u0000\u0003l\u0000\u0005\u0000b\u0000v\u001dX\r\u001dX\u0000\u00026\u0001\u0000\u0000b\u0000v\u001dY\u001dZ\r\u001dY\u0000\u0002n\u0000\u0000\u0000b\u0000k\u001d[\u001d\\\r\u001d[\u0000\u00024\u0000\u0001\u0000f\u0000k\u001d]\n\u0000\u0004\nbutT\r\u001d]\u0000\u0001m\u0000\u0000\u0000i\u0000j\u0003\u0000\u0001\r\u001d\\\u0000\u00024\u0000\u0000\u0000b\u0000f\u001d^\n\u0000\u0004\ncwin\r\u001d^\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\r\u001dZ\u0000\u0002=\u0000\u0003\u0000l\u0000u\u001d_\u001d`\r\u001d_\u0000\u00011\u0000\u0000\u0000m\u0000o\n\u0000\u0004\npnam\r\u001d`\u0000\u0001m\u0000\u0000\u0000p\u0000t\u001da\u000e\u001da\u0000\u0001\u001db\u0011\u001db\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001dV\u0000\u0002\u001dc\r\u001dc\u0000\u0003l\u0000\u0001\u0000{\u0000\u001dd\u001de\u001df\r\u001dd\u0000\u0003I\u0000\u0002\u0000{\u0000\u001dg\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001dg\u0000\u0001m\u0000\u0000\u0000{\u0000|\u0003\u0000\u0001\u0002\u0000\u0000\f\u001de\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001df\u0000\u0001\u001dh\u0011\u001dh\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u001dL\u0000\u0002r\u0000\u0000\u0000\u0000\u001di\u001dj\r\u001di\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001dj\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001dI\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001dG\u0000\u0002\u001dk\u001dl\r\u001dk\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001dl\u0000\u0002\u001dm\u001dn\r\u001dm\u0000\u0003l\u0000\u0001\u0000\u0000\u001do\u001dp\u0001\u0000\u0000\f\u001do\u0000P\u0000J to to the TOs tab and dismiss any xDBC connections that failed to connect\u0000\u0002\u0000\u0000\u000e\u001dp\u0000\u0001\u001dq\u0011\u001dq\u0000\u0000 \u0000t\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000T\u0000O\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000 \u0000a\u0000n\u0000y\u0000 \u0000x\u0000D\u0000B\u0000C\u0000 \u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0002\u001dn\u0000\u0002\u001dr\u001ds\r\u001dr\u0000\u0002n\u0000\u0001\u0000\u0000\u001dt\u001du\r\u001dt\u0000\u0003I\u0000\u0000\u0000\u0000\u001dv\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001dv\u0000\u0002\u001dw\r\u001dw\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001du\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001ds\u0000\u0002\u001dx\u001dy\r\u001dx\u0000\u0003l\u0000\u0001\u0000\u0000\u001dz\u001d{\u001d|\r\u001dz\u0000\u0003I\u0000\u0002\u0000\u0000\u001d}\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d}\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d{\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d|\u0000\u0001\u001d~\u0011\u001d~\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001dy\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002V\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0004Z\u0000\u0000\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0002C\u0001\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000\u001d\n\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0000\u0003l\u0000\u0005\u0000\u0000\u001d\r\u001d\u0000\u00026\u0001\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00024\u0000\u0001\u0000\u0000\u001d\n\u0000\u0004\nbutT\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000\u001d\n\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u001d\u0000\u0002=\u0000\u0003\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u0001\u0000\u0000\f\u001d\u0000M\u0000Gzoom out to show all TOs and dismiss any that weren't already dismissed\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0000z\u0000o\u0000o\u0000m\u0000 \u0000o\u0000u\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000h\u0000o\u0000w\u0000 \u0000a\u0000l\u0000l\u0000 \u0000T\u0000O\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000 \u0000a\u0000n\u0000y\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000r\u0000e\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000d\u0000i\u0000s\u0000m\u0000i\u0000s\u0000s\u0000e\u0000d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d\u001d\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0002\u0000i\u0006\u001d\u0000\u0003\u001d\n\u0000\u0004\nfaal\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKcmd\u0006\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u001d~\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000}\u0003}\u0000\u0001\u0002~\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000|\n|\u0000\b\u000bboovtrue\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002V\u0000\u0000\u0000\u0001&\u001d\u001d\r\u001d\u0000\u0004Z\u0000\u0000\u0000\u0001!\u001d\u001dz\u001d\r\u001d\u0000\u0002C\u0001\u0000\u0000\u0001\u0003\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0000y\ny\u0000\u0004\npnam\r\u001d\u0000\u00024\u0000\u0000\u0000\u0000x\u001d\nx\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000w\u0003w\u0000\u0001\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0001\u0002\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0016\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \r\u001d\u0000\u0001k\u0000\u0000\u0001\u0006\u0001\u001b\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0006\u0001\u0015v\u001du\nv\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001d\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\u0011\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0001\n\u0001\u0011t\u001d\nt\u0000\u0004\nbutT\r\u001d\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u001d\u0000\u00024\u0000\u0000\u0001\u0006\u0001\ns\u001d\ns\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0001\b\u0001\tr\u0003r\u0000\u0001\u0002u\u0000\u0000\u0002\u001d\u0000\u0002\u001dq\r\u001d\u0000\u0003l\u0000\u0001\u0001\u0016\u0001\u001b\u001d\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0001\u0016\u0001\u001bp\u001do\np\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001d\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0017n\u0003n\u0000\u0001\u0002o\u0000\u0000\f\u001d\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002q\u0000\u0000\u0002z\u0000\u0000\r\u001d\u0000\u0002r\u0000\u0000\u0001\u001e\u0001!\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0001\u001e\u0001\u001fm\nm\u0000\b\u000bboovfals\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0002\u0001'\u0001'jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003l\u0000\u0001\u0001'\u0001'g\u001d\u001d\u0001g\u0000\u0000\f\u001d\u0000\u0013\u0000\r zoom back in\u0000\u0002\u0000\u0000\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u001a\u0000 \u0000z\u0000o\u0000o\u0000m\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000i\u0000n\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0001'\u00017\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0000\u0001'\u00015\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u00010\u00015f\u001d\nf\u0000\u0004\ntxtf\r\u001d\u0000\u0001m\u0000\u0000\u00013\u00014e\u0003e\u0000\u0001\r\u001d\u0000\u0002n\u0000\u0000\u0001'\u00010\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0001+\u00010d\u001d\nd\u0000\u0004\ntabg\r\u001d\u0000\u0001m\u0000\u0000\u0001.\u0001\/c\u0003c\u0000\u0001\r\u001d\u0000\u00024\u0000\u0000\u0001'\u0001+b\u001d\nb\u0000\u0004\ncwin\r\u001d\u0000\u0001m\u0000\u0000\u0001)\u0001*a\u0003a\u0000\u0001\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u00018\u0001?\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u00018\u00019_\n_\u0000\b\u000bboovtrue\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0001:\u0001>^\n^\u0000\u0004\nfocu\r\u001d\u0000\u0001o\u0000\u0000\u00019\u0001:]\u000b]\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0001@\u0001I\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0001@\u0001C\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0006\u00001\u00000\u00000\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u001e\u0000\r\u001d\u0000\u00011\u0000\u0000\u0001D\u0001H\\\n\\\u0000\u0004\nvalL\r\u001e\u0000\u0000\u0001o\u0000\u0000\u0001C\u0001D[\u000b[\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u0002\u001d\u0000\u0002\u001e\u0001\u001e\u0002\r\u001e\u0001\u0000\u0002r\u0000\u0000\u0001J\u0001^\u001e\u0003\u001e\u0004\r\u001e\u0003\u0000\u0001m\u0000\u0000\u0001J\u0001KZ\nZ\u0000\b\u000bboovtrue\r\u001e\u0004\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0005\u001e\u0006\r\u001e\u0005\u0000\u00011\u0000\u0000\u0001Y\u0001]Y\nY\u0000\u0004\nfocu\r\u001e\u0006\u0000\u0002n\u0000\u0000\u0001K\u0001Y\u001e\u0007\u001e\b\r\u001e\u0007\u0000\u00024\u0000\u0000\u0001T\u0001YX\u001e\t\nX\u0000\u0004\nscra\r\u001e\t\u0000\u0001m\u0000\u0000\u0001W\u0001XW\u0003W\u0000\u0001\r\u001e\b\u0000\u0002n\u0000\u0000\u0001K\u0001T\u001e\n\u001e\u000b\r\u001e\n\u0000\u00024\u0000\u0000\u0001O\u0001TV\u001e\f\nV\u0000\u0004\ntabg\r\u001e\f\u0000\u0001m\u0000\u0000\u0001R\u0001SU\u0003U\u0000\u0001\r\u001e\u000b\u0000\u00024\u0000\u0000\u0001K\u0001OT\u001e\r\nT\u0000\u0004\ncwin\r\u001e\r\u0000\u0001m\u0000\u0000\u0001M\u0001NS\u0003S\u0000\u0001\u0002\u001e\u0002\u0000\u0002\u001e\u000e\u001e\u000f\r\u001e\u000e\u0000\u0002r\u0000\u0000\u0001_\u0001x\u001e\u0010\u001e\u0011\r\u001e\u0010\u0000\u0001m\u0000\u0000\u0001_\u0001`R\u0003R\u0000\u0000\r\u001e\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0012\u001e\u0013\r\u001e\u0012\u0000\u00011\u0000\u0000\u0001s\u0001wQ\nQ\u0000\u0004\nvalL\r\u001e\u0013\u0000\u0002n\u0000\u0000\u0001`\u0001s\u001e\u0014\u001e\u0015\r\u001e\u0014\u0000\u00024\u0000\u0000\u0001n\u0001sP\u001e\u0016\nP\u0000\u0004\nscrb\r\u001e\u0016\u0000\u0001m\u0000\u0000\u0001q\u0001rO\u0003O\u0000\u0001\r\u001e\u0015\u0000\u0002n\u0000\u0000\u0001`\u0001n\u001e\u0017\u001e\u0018\r\u001e\u0017\u0000\u00024\u0000\u0000\u0001i\u0001nN\u001e\u0019\nN\u0000\u0004\nscra\r\u001e\u0019\u0000\u0001m\u0000\u0000\u0001l\u0001mM\u0003M\u0000\u0001\r\u001e\u0018\u0000\u0002n\u0000\u0000\u0001`\u0001i\u001e\u001a\u001e\u001b\r\u001e\u001a\u0000\u00024\u0000\u0000\u0001d\u0001iL\u001e\u001c\nL\u0000\u0004\ntabg\r\u001e\u001c\u0000\u0001m\u0000\u0000\u0001g\u0001hK\u0003K\u0000\u0001\r\u001e\u001b\u0000\u00024\u0000\u0000\u0001`\u0001dJ\u001e\u001d\nJ\u0000\u0004\ncwin\r\u001e\u001d\u0000\u0001m\u0000\u0000\u0001b\u0001cI\u0003I\u0000\u0001\u0002\u001e\u000f\u0000\u0002\u001e\u001e\u001e\u001f\r\u001e\u001e\u0000\u0002r\u0000\u0000\u0001y\u0001\u001e \u001e!\r\u001e \u0000\u0001m\u0000\u0000\u0001y\u0001zH\u0003H\u0000\u0000\r\u001e!\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001e\"\u001e#\r\u001e\"\u0000\u00011\u0000\u0000\u0001\u0001G\nG\u0000\u0004\nvalL\r\u001e#\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e$\u001e%\r\u001e$\u0000\u00024\u0000\u0000\u0001\u0001F\u001e&\nF\u0000\u0004\nscrb\r\u001e&\u0000\u0001m\u0000\u0000\u0001\u0001E\u0003E\u0000\u0002\r\u001e%\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e'\u001e(\r\u001e'\u0000\u00024\u0000\u0000\u0001\u0001D\u001e)\nD\u0000\u0004\nscra\r\u001e)\u0000\u0001m\u0000\u0000\u0001\u0001C\u0003C\u0000\u0001\r\u001e(\u0000\u0002n\u0000\u0000\u0001z\u0001\u001e*\u001e+\r\u001e*\u0000\u00024\u0000\u0000\u0001~\u0001B\u001e,\nB\u0000\u0004\ntabg\r\u001e,\u0000\u0001m\u0000\u0000\u0001\u0001A\u0003A\u0000\u0001\r\u001e+\u0000\u00024\u0000\u0000\u0001z\u0001~@\u001e-\n@\u0000\u0004\ncwin\r\u001e-\u0000\u0001m\u0000\u0000\u0001|\u0001}?\u0003?\u0000\u0001\u0002\u001e\u001f\u0000\u0002\u001e.\u001e\/\r\u001e.\u0000\u0003l\u0000\u0002\u0001\u0001>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u001e\/\u0000\u0002\u001e0;\r\u001e0\u0000\u0001L\u0000\u0000\u0001\u0001\u001e1\r\u001e1\u0000\u0001m\u0000\u0000\u0001\u0001:\n:\u0000\b\u000bboovtrue\u0002;\u0000\u0000\u0002\u0000\u0000\r\u001c\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b9\u001e2\n9\u0000\u0004\npcap\r\u001e2\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u001e3\u000e\u001e3\u0000\u0001\u001e4\u0011\u001e4\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u001e5\u000f\u001e5\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00008\u001e6\u001e7\n8\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e6\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e7\u0000\u00036\u001e85\n6\u0000\u0004\nerrn\r\u001e8\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00065\u0000\u0000\r\u001c\u0000\u0003R\u0000\u0000\u0001\u00013\u001e9\u001e:\n3\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e9\u0000\u0002b\u0000\u0000\u0001\u0001\u001e;\u001e<\r\u001e;\u0000\u0001m\u0000\u0000\u0001\u0001\u001e=\u000e\u001e=\u0000\u0001\u001e>\u0011\u001e>\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000m\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0000 \u0000-\u0000 \r\u001e<\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e:\u0000\u00031\u001e?0\n1\u0000\u0004\nerrn\r\u001e?\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00060\u0000\u0000\u0002\u001c\u0000\u0002\u001e@.\r\u001e@\u0000\u0003l\u0000\u0002\u0001\u0001-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002.\u0000\u0000\u0002\u001c\u0000\u0002\u001eA\u001eB\r\u001eA\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u001eB\u0000\u0002\u001eC\u001eD\r\u001eC\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002\u001eD\u0000\u0002\u001eE\u001eF\r\u001eE\u0000\u0002i\u0000\u0000\u0000\u0000\u001eG\u001eH\r\u001eG\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$\u001eI#\u000b$\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002\u001eI\u0000\u0002\u001eJ\"\r\u001eJ\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000!\u000b!\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\"\u0000\u0000\u0002#\u0000\u0000\r\u001eH\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001eK\u0002\u001eK\u0000\u0002\u001eL\u001eM\r\u001eL\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000 \u001eN\u001eO\u0001 \u0000\u0000\f\u001eN\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e\u001eO\u0000\u0001\u001eP\u0011\u001eP\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u0002\u001eM\u0000\u0002\u001eQ\u001eR\r\u001eQ\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u001eR\u0000\u0002\u001eS\u001eT\r\u001eS\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u001eU\u001eV\r\u001eU\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004\u001eW\u0006\u001eW\u0000\u0003\u001c\u001eX\u001b\u000b\u001c\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\r\u001eX\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u001a\n\u001a\u0000\b\u000bboovtrue\u0006\u001b\u0000\u0000\r\u001eV\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001eT\u0000\u0002\u001eY\u001eZ\r\u001eY\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u001eZ\u0000\u0002\u001e[\u001e\\\r\u001e[\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\u001e]\u001e^\r\u001e]\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\u001e_\u001e`\r\u001e_\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u0015\u000b\u0015\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001e`\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u0014\u000b\u0014\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001e^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001e\\\u0000\u0002\u001ea\u001eb\r\u001ea\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u001eb\u0000\u0002\u001ec\u001ed\r\u001ec\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u000f\u000e\r\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002\u001ed\u0000\u0002\u001ee\u001ef\r\u001ee\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0010\u001eg\u001eh\r\u001eg\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u001ei\u000e\u001ei\u0000\u0001\u001ej\u0011\u001ej\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000f\u0000o\u0000r\r\u001eh\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\u0002\u001ef\u0000\u0002\u001ek\u001el\r\u001ek\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0014\u001em\u001en\u001eo\r\u001em\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0014\u001ep\u001eq\r\u001ep\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0003\u000b\u0000\n\r\u001eq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\f\u001en\u0000\u000e\u0000\b seconds\u0000\u0002\u0000\u0000\u000e\u001eo\u0000\u0001\u001er\u0011\u001er\u0000\u0010\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001el\u0000\u0002\u001es\u001et\r\u001es\u0000\u0003l\u0000\u0001\u0000\u0015\u0000\u001a\u001eu\u001ev\u001ew\r\u001eu\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a\u001ex\u001ey\r\u001ex\u0000\u0002]\u0000\u0000\u0000\u0015\u0000\u0018\u001ez\u001e{\r\u001ez\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\t\u0003\t\u0000<\r\u001e{\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\b\n\b\u0000\u0004\nmin \r\u001ey\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\f\u001ev\u0000\r\u0000\u0007seconds\u0000\u0002\u0000\u0000\u000e\u001ew\u0000\u0001\u001e|\u0011\u001e|\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u001et\u0000\u0002\u001e}\u001e~\r\u001e}\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u001e~\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002r\u0000\u0000\u0000\u001b\u0000&\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000\u001b\u0000$\u0003\u001e\u001e\n\u0003\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r\u001e\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\u001e\u001e\u0002\u0001\r\u001e\u0000\u0002^\u0000\u0000\u0000\u001b\u0000\u001e\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000b\u0000\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\ndire\r\u001e\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bolierndD\u0006\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003Q\u0000\u0000\u0000'\u0000\u001e\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000*\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002O\u0000\u0000\u0000*\u0000\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000.\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002O\u0000\u0000\u0000.\u0000\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u00005\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u00005\u00005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0001\u00005\u0000:\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0000\u00006\u0000:\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0000f\u0000\u0000\u00005\u00006\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0000\u0000;\u0000\u001e\u001e\u001e\r\u001e\u0000\u0002C\u0000\u0000\u0000;\u0000C\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000;\u0000A\u001e\u001e\r\u001e\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npnam\r\u001e\u0000\u00024\u0000\u0000\u0000;\u0000?\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\r\u001e\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\r\u001e\u0000\u0003Q\u0000\u0000\u0000F\u0000y\u001e\u001e\u001e\r\u001e\u0000\u0001k\u0000\u0000\u0000I\u0000e\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002r\u0000\u0000\u0000I\u0000Q\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000I\u0000O\u001e\u001e\r\u001e\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npnam\r\u001e\u0000\u00024\u0000\u0000\u0000I\u0000M\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0000\u0001\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000R\u0000]\u001e\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u001e\u0000\u0003l\u0000\u0005\u0000R\u0000Y\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000R\u0000Y\u001e\u001e\r\u001e\u0000\u00024\u0000\u0000\u0000V\u0000Y\u001e\n\u0000\u0004\nbutT\r\u001e\u0000\u0001m\u0000\u0000\u0000W\u0000X\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0004\u0000O\u0000K\r\u001e\u0000\u00024\u0000\u0000\u0000R\u0000V\u001e\n\u0000\u0004\ncwin\r\u001e\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000^\u0000c\u001e\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000^\u0000c\u001e\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001e\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\u0002\u0000\u0000\f\u001e\u0000\u001a\u0000\u0014 let click register.\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000(\u0000 \u0000l\u0000e\u0000t\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000.\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000d\u0000d\u001e\u001e\u0001\u0000\u0000\f\u001e\u00006\u00000 will continue below to wait for window to close\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000`\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000d\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000m\u0000y\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0002b\u0000\u0000\u0000s\u0000x\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000s\u0000v\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000-\u0000 \r\u001e\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0004Z\u0000\u0000\u0000|\u0000\u001e\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0000\u0000|\u0000\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000}\u0000\u000b\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\r\u001e\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u001e\u001e\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000p\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000w\u0000a\u0000s\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000,\u0000 \u0000s\u0000o\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000.\u0006\u001e\u0000\u0003\u001e\n\u0000\u0004\nerrn\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0001k\u0000\u0000\u0000\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u001e\u001e\u0001\u0000\u0000\f\u001e\u0000.\u0000( Not in Manage Database, but that is OK.\u0000\u0002\u0000\u0000\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000P\u0000 \u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000O\u0000K\u0000.\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0001L\u0000\u0000\u0000\u0000\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u00024\u0000\u0000\u0000.\u00002\u001e\n\u0000\u0004\npcap\r\u001e\u0000\u0001m\u0000\u0000\u00000\u00001\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002n\u0000\u0001\u0000\u0000\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u001e\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002\u001e\u0000\u0002\u001e\r\u001e\u0000\u0001K\u0000\u0000\u0000\u0000\u001e\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0006\u001e\u0000\u0003\u001e\u001e\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0000\u000e\u001f\u0000\u0000\u0001\u001f\u0001\u0011\u001f\u0001\u0000\u0006\u0000a\u0000n\u0000y\u0006\u001e\u0000\u0003\u001f\u0002\u001f\u0003\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r\u001f\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0006\u001f\u0003\u0000\u0003\u001f\u0004\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r\u001f\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001e\u0000\u0002\u001f\u0005\u001f\u0006\r\u001f\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0006\u0000\u0002\u001f\u0007\u001f\b\r\u001f\u0007\u0000\u0003l\u0000\u0001\u0000\u0000\u001f\t\u001f\n\u001f\u000b\r\u001f\t\u0000\u0003I\u0000\u0002\u0000\u0000\u001f\f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u001f\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\f\u001f\n\u0000(\u0000\" let normal window come to front. \u0000\u0002\u0000\u0000\u000e\u001f\u000b\u0000\u0001\u001f\r\u0011\u001f\r\u0000D\u0000 \u0000l\u0000e\u0000t\u0000 \u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0000 \u0002\u001f\b\u0000\u0002\u001f\u000e\u001f\u000f\r\u001f\u000e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u000f\u0000\u0002\u001f\u0010\u001f\u0011\r\u001f\u0010\u0000\u0001L\u0000\u0000\u0000\u0000\u001f\u0012\r\u001f\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u001f\u0011\u0000\u0002\u001f\u0013\r\u001f\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000*\u0000+\u001f\u0014\u000f\u001f\u0014\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001e\u0000\u0002\u001f\u0015\u001f\u0016\r\u001f\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0016\u0000\u0002\u001f\u0017\r\u001f\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0018\u001f\u0019\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0019\u0000\u0003\u001f\u001a\n\u0000\u0004\nerrn\r\u001f\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u001f\u001b\u001f\u001c\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001f\u001d\u001f\u001e\r\u001f\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u001f\u000e\u001f\u001f\u0000\u0001\u001f \u0011\u001f \u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000-\u0000 \r\u001f\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u001c\u0000\u0003\u001f!\n\u0000\u0004\nerrn\r\u001f!\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u001e\u0000\u0002\u001f\"\r\u001f\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u001eF\u0000\u0002\u001f#\u001f$\r\u001f#\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f$\u0000\u0002\u001f%\u001f&\r\u001f%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f&\u0000\u0002\u001f'\u001f(\r\u001f'\u0000\u0002i\u0000\u0000\u0000\u0000\u001f)\u001f*\r\u001f)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001f+\u000b\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u0002\u001f+\u0000\u0002\u001f,\r\u001f,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f*\u0000\u0001k\u0000\u0000\u0000\u0000\u0000H\u001f-\u0002\u001f-\u0000\u0002\u001f.\u001f\/\r\u001f.\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001f0\u001f1\u0001\u0000\u0000\f\u001f0\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001f1\u0000\u0001\u001f2\u0011\u001f2\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001f\/\u0000\u0002\u001f3\u001f4\r\u001f3\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u001f4\u0000\u0002\u001f5\u001f6\r\u001f5\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000F\u001f7\u001f8\u001f9\r\u001f7\u0000\u0001k\u0000\u0000\u0000\u0003\u00000\u001f:\u0002\u001f:\u0000\u0002\u001f;\u001f<\r\u001f;\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t}\u001f=|\u000b}\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u0002\u001f=\u0000\u0002\u001f>{\r\u001f>\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005z\u000bz\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002{\u0000\u0000\u0002|\u0000\u0000\u0002\u001f<\u0000\u0002\u001f?\u001f@\r\u001f?\u0000\u0003l\u0000\u0002\u0000\n\u0000\nyxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u001f@\u0000\u0002\u001fAv\r\u001fA\u0000\u0002O\u0000\u0000\u0000\n\u00000\u001fB\u001fC\r\u001fB\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\/\u001fD\u001fE\r\u001fD\u0000\u0001k\u0000\u0000\u0000\u0015\u0000.\u001fF\u0002\u001fF\u0000\u0002\u001fG\u001fH\r\u001fG\u0000\u0002n\u0000\u0000\u0000\u0015\u0000*\u001fI\u001fJ\r\u001fI\u0000\u00011\u0000\u0000\u0000'\u0000)u\nu\u0000\u0004\nvalL\r\u001fJ\u0000\u0002n\u0000\u0000\u0000\u0015\u0000'\u001fK\u001fL\r\u001fK\u0000\u00024\u0000\u0000\u0000$\u0000't\u001fM\nt\u0000\u0004\nsttx\r\u001fM\u0000\u0001m\u0000\u0000\u0000%\u0000&s\u0003s\u0000\u0001\r\u001fL\u0000\u0002n\u0000\u0000\u0000\u0015\u0000$\u001fN\u001fO\r\u001fN\u0000\u00012\u0000\u0000\u0000\"\u0000$r\nr\u0000\u0004\ncrow\r\u001fO\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\"\u001fP\u001fQ\r\u001fP\u0000\u00024\u0000\u0000\u0000\u001f\u0000\"q\u001fR\nq\u0000\u0004\ntabB\r\u001fR\u0000\u0001m\u0000\u0000\u0000 \u0000!p\u0003p\u0000\u0001\r\u001fQ\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f\u001fS\u001fT\r\u001fS\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001fo\u001fU\no\u0000\u0004\nscra\r\u001fU\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001en\u0003n\u0000\u0001\r\u001fT\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001c\u001fV\u001fW\r\u001fV\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001cm\u001fX\nm\u0000\u0004\ntabg\r\u001fX\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001bl\u0003l\u0000\u0001\r\u001fW\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019k\u001fY\nk\u0000\u0004\ncwin\r\u001fY\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018j\u0003j\u0000\u0001\u0002\u001fH\u0000\u0002\u001fZi\r\u001fZ\u0000\u0001L\u0000\u0000\u0000+\u0000.\u001f[\r\u001f[\u0000\u00011\u0000\u0000\u0000+\u0000-h\nh\u0000\u0004\nrslt\u0002i\u0000\u0000\r\u001fE\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012g\u001f\\\ng\u0000\u0004\npcap\r\u001f\\\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u001f]\u000e\u001f]\u0000\u0001\u001f^\u0011\u001f^\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001fC\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u001f_\u000f\u001f_\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002v\u0000\u0000\r\u001f8\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000f\u001f`\u001fa\nf\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001fa\u0000\u0003d\u001fbc\nd\u0000\u0004\nerrn\r\u001fb\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006c\u0000\u0000\r\u001f9\u0000\u0003R\u0000\u0000\u00008\u0000Fa\u001fc\u001fd\na\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001fc\u0000\u0002b\u0000\u0000\u0000<\u0000E\u001fe\u001ff\r\u001fe\u0000\u0002b\u0000\u0000\u0000<\u0000C\u001fg\u001fh\r\u001fg\u0000\u0002b\u0000\u0000\u0000<\u0000?\u001fi\u001fj\r\u001fi\u0000\u0001m\u0000\u0000\u0000<\u0000=\u001fk\u000e\u001fk\u0000\u0001\u001fl\u0011\u001fl\u0000X\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000'\r\u001fj\u0000\u0001o\u0000\u0000\u0000=\u0000>`\u000b`\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001fh\u0000\u0001m\u0000\u0000\u0000?\u0000B\u001fm\u000e\u001fm\u0000\u0001\u001fn\u0011\u001fn\u0000\b\u0000'\u0000 \u0000-\u0000 \r\u001ff\u0000\u0001o\u0000\u0000\u0000C\u0000D_\u000b_\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001fd\u0000\u0003^\u001fo]\n^\u0000\u0004\nerrn\r\u001fo\u0000\u0001o\u0000\u0000\u0000:\u0000;\\\u000b\\\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006]\u0000\u0000\u0002\u001f6\u0000\u0002\u001fp[\r\u001fp\u0000\u0003l\u0000\u0002\u0000G\u0000GZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002[\u0000\u0000\u0002\u001f(\u0000\u0002\u001fq\u001fr\r\u001fq\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u001fr\u0000\u0002\u001fs\u001ft\r\u001fs\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u001ft\u0000\u0002\u001fu\u001fv\r\u001fu\u0000\u0002i\u0000\u0000\u0000\u0000\u001fw\u001fx\r\u001fw\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000Q\u001fyP\u000bQ\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u0002\u001fy\u0000\u0002\u001fzO\r\u001fz\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002O\u0000\u0000\u0002P\u0000\u0000\r\u001fx\u0000\u0001k\u0000\u0000\u0000\u0000\u0000@\u001f{\u0002\u001f{\u0000\u0002\u001f|\u001f}\r\u001f|\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000M\u001f~\u001f\u0001M\u0000\u0000\f\u001f~\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\u001f}\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000>\u001f\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0003\u0000.\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\nI\u001fH\u000bI\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u0002\u001f\u0000\u0002\u001fG\r\u001f\u0000\u0001J\u0000\u0000\u0000\u0004\u0000\u0006F\u0002F\u0000\u0000\u0002G\u0000\u0000\u0002H\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000bEDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u000b\u0000,\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u000f\u0000+\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0016\u0000*\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000'\u001f\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017B\nB\u0000\b\u000bboovtrue\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u00011\u0000\u0000\u0000$\u0000&A\nA\u0000\u0004\nfocu\r\u001f\u0000\u0003l\u0000\u0005\u0000\u0017\u0000$\u001f@?\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000$\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000!\u0000$>\u001f\n>\u0000\u0004\ntabB\r\u001f\u0000\u0001m\u0000\u0000\u0000\"\u0000#=\u0003=\u0000\u0001\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000!\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000\u001e\u0000!<\u001f\n<\u0000\u0004\nscra\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 ;\u0003;\u0000\u0001\r\u001f\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001e\u001f\u001f\r\u001f\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e:\u001f\n:\u0000\u0004\ntabg\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d9\u00039\u0000\u0001\r\u001f\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001b8\u001f\n8\u0000\u0004\ncwin\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a7\u00037\u0000\u0001\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u001f\u0000\u0002\u001f6\r\u001f\u0000\u0001L\u0000\u0000\u0000(\u0000*\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000(\u0000)5\n5\u0000\b\u000bboovtrue\u00026\u0000\u0000\r\u001f\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u00134\u001f\n4\u0000\u0004\npcap\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001f\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001f\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001f\u000f\u001f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001f\u0000\u0002\u001f3\r\u001f\u0000\u0003l\u0000\u0002\u0000-\u0000-210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u00023\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/\u001f\u001f\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0000\u0003-\u001f,\n-\u0000\u0004\nerrn\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006,\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u00006\u0000>*\u001f\u001f\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0002b\u0000\u0000\u0000:\u0000=\u001f\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000:\u0000;\u001f\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000o\u0000c\u0000u\u0000s\u0000 \u0000o\u0000n\u0000 \u0000F\u0000i\u0000e\u0000l\u0000d\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000-\u0000 \r\u001f\u0000\u0001o\u0000\u0000\u0000;\u0000<)\u000b)\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\u001f\u0000\u0003(\u001f'\n(\u0000\u0004\nerrn\r\u001f\u0000\u0001o\u0000\u0000\u00008\u00009&\u000b&\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006'\u0000\u0000\u0002\u001f\u0000\u0002\u001f%\r\u001f\u0000\u0003l\u0000\u0002\u0000?\u0000?$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002%\u0000\u0000\u0002\u001fv\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002i\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u001f\u001a\u000b\u001b\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u0002\u001f\u0000\u0002\u001f\u0019\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0001O\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0017\u001f\u001f\u0001\u0017\u0000\u0000\f\u001f\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f\u001f\u001f\r\u001f\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\n\u001f\u0006\u001f\u0000\u0003\u0013\u001f\u001f\u000b\u0013\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0012\n\u0012\u0000\u0004\nnull\u0006\u001f\u0000\u0003\u0011\u001f\u001f\u000b\u0011\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0010\n\u0010\u0000\u0004\nnull\u0006\u001f\u0000\u0003\u000f\u001f\u001f\u000b\u000f\u0000*0\u0000\u0013donotchangeexisting\u0000\u0013doNotChangeExisting\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u000e\n\u000e\u0000\b\u000bboovfals\u0006\u001f\u0000\u0003\r\u001f\f\u000b\r\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u000b\n\u000b\u0000\u0004\nnull\u0006\f\u0000\u0000\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0012\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000\r\u0000\u0010\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u0006\u000b\u0006\u0000\t0\u0000\u0005prefs\u0000\u0000\r\u001f\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u0005\u000b\u0005\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003Q\u0000\u0000\u0000\u0013\u0001M\u001f\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0016\u00019\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d\u001f\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\u001e\u00019\u001f\u001f\r\u001f\u0000\u0002O\u0000\u0000\u0000\"\u00018\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000)\u00017\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000)\u0000.\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000*\u0000.\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000)\u0000*\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\/\u0000F\u001f\u001f\r\u001f\u0000\u00026\u0001\u0000\u0000\/\u0000D\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0000\u0000\/\u00009\u001f \u0000\r\u001f\u0000\u00024\u0000\u0001\u00006\u00009 \u0001\n\u0000\u0004\nbutT\r \u0001\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0001\r \u0000\u0000\u0002n\u0000\u0000\u0000\/\u00006 \u0002 \u0003\r \u0002\u0000\u00024\u0000\u0000\u00003\u00006 \u0004\n\u0000\u0004\ntabg\r \u0004\u0000\u0001m\u0000\u0000\u00004\u00005\u0003\u0000\u0001\r \u0003\u0000\u00024\u0000\u0000\u0000\/\u00003 \u0005\n\u0000\u0004\ncwin\r \u0005\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r\u001f\u0000\u0002E\u0000\u0000\u0000:\u0000C \u0006 \u0007\r \u0006\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ndesc\r \u0007\u0000\u0001m\u0000\u0000\u0000>\u0000B \b\u000e \b\u0000\u0001 \t\u0011 \t\u0000\u0016\u0000A\u0000d\u0000d\u0000 \u0000a\u0000 \u0000t\u0000a\u0000b\u0000l\u0000e\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u0002\u001f\u0000\u0002 \n \u000b\r \n\u0000\u0002n\u0000\u0001\u0000G\u0000M \f \r\r \f\u0000\u0003I\u0000\u0000\u0000H\u0000M \u000e\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002 \u000e\u0000\u0002 \u000f\r \u000f\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u0002\u0000\u0000\u0002\u0000\u0000\r \r\u0000\u0000f\u0000\u0000\u0000G\u0000H\u0002 \u000b\u0000\u0002 \u0010 \u0011\r \u0010\u0000\u0003I\u0000\u0002\u0000N\u0000S \u0012\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r \u0012\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0003\u0000\u0001\u0002\u0000\u0000\u0002 \u0011\u0000\u0002 \u0013 \u0014\r \u0013\u0000\u0003Q\u0000\u0000\u0000T\u0001\u0011 \u0015 \u0016 \u0017\r \u0015\u0000\u0001k\u0000\u0000\u0000W\u0000 \u0018\u0002 \u0018\u0000\u0002 \u0019 \u001a\r \u0019\u0000\u0002n\u0000\u0001\u0000W\u0000j \u001b \u001c\r \u001b\u0000\u0003I\u0000\u0000\u0000X\u0000j \u001d\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 \u001d\u0000\u0002 \u001e \u001f\r \u001e\u0000\u0002n\u0000\u0000\u0000X\u0000c !\r \u0000\u00024\u0000\u0000\u0000\\\u0000c \"\n\u0000\u0004\npopB\r \"\u0000\u0001m\u0000\u0000\u0000_\u0000b #\u000e #\u0000\u0001 $\u0011 $\u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r !\u0000\u00024\u0000\u0000\u0000X\u0000\\ %\n\u0000\u0004\ncwin\r %\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0003\u0000\u0001\u0002 \u001f\u0000\u0002 &\r &\u0000\u0002n\u0000\u0000\u0000c\u0000f ' (\r '\u0000\u0001o\u0000\u0000\u0000d\u0000f\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r (\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u001c\u0000\u0000f\u0000\u0000\u0000W\u0000X\u0002 \u001a\u0000\u0002 )\r )\u0000\u0003I\u0000\u0002\u0000k\u0000 *\n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r *\u0000\u0003l\u0000\u0005\u0000k\u0000 +\r +\u0000\u00026\u0001\u0000\u0000k\u0000 , -\r ,\u0000\u0002n\u0000\u0000\u0000k\u0000~ . \/\r .\u0000\u00024\u0000\u0001\u0000y\u0000~ 0\n\u0000\u0004\ncrow\r 0\u0000\u0001m\u0000\u0000\u0000|\u0000}\u0003\u0000\u0001\r \/\u0000\u0002n\u0000\u0000\u0000k\u0000y 1 2\r 1\u0000\u00024\u0000\u0000\u0000t\u0000y 3\n\u0000\u0004\ntabB\r 3\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0003\u0000\u0001\r 2\u0000\u0002n\u0000\u0000\u0000k\u0000t 4 5\r 4\u0000\u00024\u0000\u0000\u0000o\u0000t 6\n\u0000\u0004\nscra\r 6\u0000\u0001m\u0000\u0000\u0000r\u0000s\u0003\u0000\u0001\r 5\u0000\u00024\u0000\u0000\u0000k\u0000o 7\n\u0000\u0004\ncwin\r 7\u0000\u0001m\u0000\u0000\u0000m\u0000n\u0003\u0000\u0001\r -\u0000\u0002=\u0000\u0003\u0000\u0000 8 9\r 8\u0000\u0002n\u0000\u0000\u0000\u0000 : ;\r :\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r ;\u0000\u00024\u0000\u0000\u0000\u0000 <\n\u0000\u0004\nsttx\r <\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r 9\u0000\u0002n\u0000\u0000\u0000\u0000 = >\r =\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r >\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0016\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r \u0017\u0000\u0001k\u0000\u0000\u0000\u0001\u0011 ?\u0002 ?\u0000\u0002 @ A\r @\u0000\u0003l\u0000\u0001\u0000\u0000 B C\u0001\u0000\u0000\f B\u0000\/\u0000)Not an existing data source, so create it\u0000\u0002\u0000\u0000\u000e C\u0000\u0001 D\u0011 D\u0000R\u0000N\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0002 A\u0000\u0002 E F\r E\u0000\u0003l\u0000\u0001\u0000\u0000 G H I\r G\u0000\u0003I\u0000\u0002\u0000\u0000 J\n\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\r J\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u00005\u0002\u0000\u0000\f H\u0000!\u0000\u001b Hit 'Esc' to close pop up.\u0000\u0002\u0000\u0000\u000e I\u0000\u0001 K\u0011 K\u00006\u0000 \u0000H\u0000i\u0000t\u0000 \u0000'\u0000E\u0000s\u0000c\u0000'\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000p\u0000o\u0000p\u0000 \u0000u\u0000p\u0000.\u0002 F\u0000\u0002 L M\r L\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 M\u0000\u0002 N O\r N\u0000\u0003l\u0000\u0001\u0000\u0000 P Q\u0001\u0000\u0000\f P\u00009\u00003 add data source from within adding a new TO window\u0000\u0002\u0000\u0000\u000e Q\u0000\u0001 R\u0011 R\u0000f\u0000 \u0000a\u0000d\u0000d\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000w\u0000i\u0000t\u0000h\u0000i\u0000n\u0000 \u0000a\u0000d\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000T\u0000O\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002 O\u0000\u0002 S T\r S\u0000\u0002n\u0000\u0001\u0000\u0000 U V\r U\u0000\u0003I\u0000\u0000\u0000\u0000 W\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 W\u0000\u0002 X Y\r X\u0000\u0002n\u0000\u0000\u0000\u0000 Z [\r Z\u0000\u00024\u0000\u0000\u0000\u0000 \\\n\u0000\u0004\npopB\r \\\u0000\u0001m\u0000\u0000\u0000\u0000 ]\u000e ]\u0000\u0001 ^\u0011 ^\u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r [\u0000\u00024\u0000\u0000\u0000\u0000 _\n\u0000\u0004\ncwin\r _\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002 Y\u0000\u0002 `\r `\u0000\u0001m\u0000\u0000\u0000\u0000 a\u000e a\u0000\u0001 b\u0011 b\u0000(\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s &\u0002\u0000\u0000\u0002\u0000\u0000\r V\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 T\u0000\u0002 c d\r c\u0000\u0002n\u0000\u0001\u0000\u0000 e f\r e\u0000\u0003I\u0000\u0000\u0000\u0000 g\u000b\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u0002 g\u0000\u0002 h\r h\u0000\u0001K\u0000\u0000\u0000\u0000 i\u0006 i\u0000\u0003 j\u000b\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\r j\u0000\u0002n\u0000\u0000\u0000\u0000 k l\r k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r l\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 d\u0000\u0002 m n\r m\u0000\u0002n\u0000\u0001\u0000\u0000 o p\r o\u0000\u0003I\u0000\u0000\u0000\u0000 q\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u0002 q\u0000\u0002 r\r r\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r p\u0000\u0000f\u0000\u0000\u0000\u0000\u0002 n\u0000\u0002 s t\r s\u0000\u0003I\u0000\u0002\u0000\u0000 u\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r u\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002 t\u0000\u0002 v w\r v\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 w\u0000\u0002 x y\r x\u0000\u0003l\u0000\u0001\u0000\u0000 z {\u0001\u0000\u0000\f z\u00009\u00003 now that we've added the data source, try again...\u0000\u0002\u0000\u0000\u000e {\u0000\u0001 |\u0011 |\u0000f\u0000 \u0000n\u0000o\u0000w\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000'\u0000v\u0000e\u0000 \u0000a\u0000d\u0000d\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000.\u0000.\u0000.\u0002 y\u0000\u0002 } ~\r }\u0000\u0002n\u0000\u0001\u0000\u0000  \r \u0000\u0003I\u0000\u0000\u0000\u0000 \u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\npopB\r \u0000\u0001m\u0000\u0000\u0000\u0000 \u000e \u0000\u0001 \u0011 \u0000\u0018\u0000D\u0000a\u0000t\u0000a\u0000 \u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000:\r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r \u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0000\u0000\u0002 ~\u0000\u0002 \r \u0000\u0003I\u0000\u0002\u0000\u0001\u0011 \n\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\r \u0000\u0003l\u0000\u0005\u0000\u0001\r \r \u0000\u00026\u0001\u0000\u0000\u0001\r \r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0001\u0000\u0000 \n\u0000\u0004\ncrow\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ntabB\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0000\u0000 \r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\nscra\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u00024\u0000\u0000\u0000\u0000 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r \u0000\u0002=\u0000\u0003\u0000\u0001\f \r \u0000\u0002n\u0000\u0000\u0000\u0001\u0006 \r \u0000\u00011\u0000\u0000\u0001\u0002\u0001\u0006\n\u0000\u0004\nvalL\r \u0000\u00024\u0000\u0000\u0000\u0001\u0002 \n\u0000\u0004\nsttx\r \u0000\u0001m\u0000\u0000\u0001\u0000\u0001\u0001\u0003\u0000\u0001\r \u0000\u0002n\u0000\u0000\u0001\u0007\u0001\u000b \r \u0000\u0001o\u0000\u0000\u0001\t\u0001\u000b\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r \u0000\u0001o\u0000\u0000\u0001\u0007\u0001\t\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002 \u0014\u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0001\u0012\u0001% \r \u0000\u0002n\u0000\u0000\u0001\u0012\u0001\u0015 \r \u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0015\u000b\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\r \u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000 \r \u0000\u00011\u0000\u0000\u0001 \u0001$\n\u0000\u0004\nvalL\r \u0000\u0002n\u0000\u0000\u0001\u0015\u0001 \r \u0000\u00024\u0000\u0000\u0001\u0019\u0001 \n\u0000\u0004\ntxtf\r \u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f \u000e \u0000\u0001 \u0011 \u0000\b\u0000N\u0000a\u0000m\u0000e\r \u0000\u00024\u0000\u0000\u0001\u0015\u0001\u0019 \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\u0003\u0000\u0001\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0001\u0001&\u00014 \r \u0000\u0003I\u0000\u0000\u0001'\u00014 \u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002 \u0000\u0002 \r \u0000\u0002n\u0000\u0000\u0001'\u00010 \r \u0000\u00024\u0000\u0000\u0001+\u00010 \n\u0000\u0004\nbutT\r \u0000\u0001m\u0000\u0000\u0001,\u0001\/ \u000e \u0000\u0001 \u0011 \u0000\u0004\u0000O\u0000K\r \u0000\u00024\u0000\u0000\u0001'\u0001+ \n\u0000\u0004\ncwin\r \u0000\u0001m\u0000\u0000\u0001)\u0001*~\u0003~\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0001&\u0001'\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u00015\u00015}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002 \u0000\u0002 z\r \u0000\u0001L\u0000\u0000\u00015\u00017 \r \u0000\u0001m\u0000\u0000\u00015\u00016y\ny\u0000\b\u000bboovtrue\u0002z\u0000\u0000\r\u001f\u0000\u00024\u0000\u0000\u0000\"\u0000&x \nx\u0000\u0004\npcap\r \u0000\u0001m\u0000\u0000\u0000$\u0000% \u000e \u0000\u0001 \u0011 \u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\u001f\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f \u000f \u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000w \nw\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006 \u0000\u0003u t\nu\u0000\u0004\nerrn\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006t\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0001A\u0001Mr \nr\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r \u0000\u0002b\u0000\u0000\u0001G\u0001L \r \u0000\u0001m\u0000\u0000\u0001G\u0001J \u000e \u0000\u0001 \u0011 \u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000a\u0000d\u0000d\u0000 \u0000T\u0000O\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000D\u0000B\u0000 \u0000-\u0000 \r \u0000\u0001o\u0000\u0000\u0001J\u0001Kq\u000bq\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006 \u0000\u0003p o\np\u0000\u0004\nerrn\r \u0000\u0001o\u0000\u0000\u0001E\u0001Fn\u000bn\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006o\u0000\u0000\u0002\u001f\u0000\u0002 m\r \u0000\u0003l\u0000\u0002\u0001N\u0001Nlkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002m\u0000\u0000\u0002\u001f\u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002i\u0000\u0000\u0000\u0000 \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000c b\u000bc\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u0002 \u0000\u0002 a\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002a\u0000\u0000\u0002b\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000 \u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000_ \u0001_\u0000\u0000\f \u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e \u0000\u0001 \u0011 \u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006 \r \u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004 \u0006 \u0000\u0003[ Z\u000b[\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\r \u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002 \u000e \u0000\u0001 \u0011 \u0000\u0000\u0006Z\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f \r \u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n \r \u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bX\u000bX\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\b\u0000\tW\u000bW\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003l\u0000\u0002\u0000\r\u0000\rUTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003Q\u0000\u0000\u0000\r\u0000 \r \u0000\u0001k\u0000\u0000\u0000\u0010\u0000 \u0002 \u0000\u0002 \r \u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015 \r \u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013 \r \u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0013R\u000bR\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\r \u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011Q\u000bQ\u0000\t0\u0000\u0005prefs\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002 \u0000\u0002!\u0000!\u0001\r!\u0000\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\"!\u0002!\u0003\r!\u0002\u0000\u0003I\u0000\u0000\u0000\u0016\u0000 O!\u0004N\u000bO\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002!\u0004\u0000\u0002!\u0005M\r!\u0005\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u001c!\u0006\u0002!\u0006\u0000\u0002!\u0007!\b\r!\u0007\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018L\u000bL\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\b\u0000\u0002!\t!\n\r!\t\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019K\u000bK\u0000\b0\u0000\u0002cr\u0000\u0002CR\u0002!\n\u0000\u0002!\u000bJ\r!\u000b\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aI\u000bI\u0000\b0\u0000\u0002lf\u0000\u0002LF\u0002J\u0000\u0000\u0002M\u0000\u0000\u0002N\u0000\u0000\r!\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\u0001\u0000\u0002!\f!\r\r!\f\u0000\u0002r\u0000\u0000\u0000#\u00000!\u000e!\u000f\r!\u000e\u0000\u0003I\u0000\u0000\u0000#\u0000.G!\u0010F\u000bG\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u0002!\u0010\u0000\u0002!\u0011E\r!\u0011\u0000\u0001K\u0000\u0000\u0000$\u0000*!\u0012\u0006!\u0012\u0000\u0003D!\u0013!\u0014\u000bD\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r!\u0013\u0000\u0001o\u0000\u0000\u0000%\u0000&C\u000bC\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0006!\u0014\u0000\u0003B!\u0015A\u000bB\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r!\u0015\u0000\u0001o\u0000\u0000\u0000'\u0000(@\u000b@\u0000\b0\u0000\u0002lf\u0000\u0002LF\u0006A\u0000\u0000\u0002E\u0000\u0000\u0002F\u0000\u0000\r!\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000?\u000b?\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!\r\u0000\u0002!\u0016!\u0017\r!\u0016\u0000\u0003l\u0000\u0002\u00001\u00001>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002!\u0017\u0000\u0002!\u0018!\u0019\r!\u0018\u0000\u0004Z\u0000\u0000\u00001\u0000!\u001a!\u001b;:\r!\u001a\u0000\u0002?\u0000\u0001\u00001\u00008!\u001c!\u001d\r!\u001c\u0000\u0003l\u0000\u0005\u00001\u00006!\u001e98\r!\u001e\u0000\u0003I\u0000\u0001\u00001\u000067!\u001f6\n7\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r!\u001f\u0000\u0001o\u0000\u0000\u00001\u000025\u000b5\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\r!\u001d\u0000\u0001m\u0000\u0000\u00006\u000074\u00034\u0000\u0000\r!\u001b\u0000\u0001k\u0000\u0000\u0000;\u0000! \u0002! \u0000\u0002!!!\"\r!!\u0000\u0003l\u0000\u0002\u0000;\u0000;321\u00013\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002!\"\u0000\u0002!#!$\r!#\u0000\u0003l\u0000\u0001\u0000;\u0000;0!%!&\u00010\u0000\u0000\f!%\u0000H\u0000B loop over and get list of DBs that need to exist as data sources.\u0000\u0002\u0000\u0000\u000e!&\u0000\u0001!'\u0011!'\u0000\u0000 \u0000l\u0000o\u0000o\u0000p\u0000 \u0000o\u0000v\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000D\u0000B\u0000s\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000 \u0000a\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000.\u0002!$\u0000\u0002!(!)\r!(\u0000\u0003X\u0000\u0000\u0000;\u0000!*\/!+\r!*\u0000\u0001k\u0000\u0000\u0000K\u0000|!,\u0002!,\u0000\u0002!-!.\r!-\u0000\u0002r\u0000\u0000\u0000K\u0000X!\/!0\r!\/\u0000\u0003I\u0000\u0000\u0000K\u0000V.!1-\u000b.\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u0002!1\u0000\u0002!2,\r!2\u0000\u0001K\u0000\u0000\u0000L\u0000R!3\u0006!3\u0000\u0003+!4!5\u000b+\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r!4\u0000\u0001o\u0000\u0000\u0000M\u0000N*\u000b*\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\u0006!5\u0000\u0003)!6(\u000b)\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r!6\u0000\u0001m\u0000\u0000\u0000O\u0000P!7\u000e!7\u0000\u0001!8\u0011!8\u0000\u0004\u0000|\u0000|\u0006(\u0000\u0000\u0002,\u0000\u0000\u0002-\u0000\u0000\r!0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\u0002!.\u0000\u0002!9!:\r!9\u0000\u0002r\u0000\u0000\u0000Y\u0000_!;!<\r!;\u0000\u0002n\u0000\u0000\u0000Y\u0000]!=!>\r!=\u0000\u00024\u0000\u0000\u0000Z\u0000]&!?\n&\u0000\u0004\ncobj\r!?\u0000\u0001m\u0000\u0000\u0000[\u0000\\%\u0003%\u0000\u0001\r!>\u0000\u0001o\u0000\u0000\u0000Y\u0000Z$\u000b$\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\r!<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u0002!:\u0000\u0002!@!A\r!@\u0000\u0002r\u0000\u0000\u0000`\u0000f!B!C\r!B\u0000\u0002n\u0000\u0000\u0000`\u0000d!D!E\r!D\u0000\u00024\u0000\u0000\u0000a\u0000d\"!F\n\"\u0000\u0004\ncobj\r!F\u0000\u0001m\u0000\u0000\u0000b\u0000c!\u0003!\u0000\u0002\r!E\u0000\u0001o\u0000\u0000\u0000`\u0000a \u000b \u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\r!C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0002!A\u0000\u0002!G!H\r!G\u0000\u0002r\u0000\u0000\u0000g\u0000u!I!J\r!I\u0000\u0001K\u0000\u0000\u0000g\u0000s!K\u0006!K\u0000\u0003\u001e!L!M\u000b\u001e\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\r!L\u0000\u0001o\u0000\u0000\u0000h\u0000i\u001d\u000b\u001d\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u0006!M\u0000\u0003\u001c!N!O\u000b\u001c\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\r!N\u0000\u0001o\u0000\u0000\u0000j\u0000k\u001b\u000b\u001b\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0006!O\u0000\u0003\u001a!P\u0019\u000b\u001a\u0000\u00100\u0000\u0006toname\u0000\u0006TOName\r!P\u0000\u0002b\u0000\u0000\u0000l\u0000q!Q!R\r!Q\u0000\u0002b\u0000\u0000\u0000l\u0000o!S!T\r!S\u0000\u0001o\u0000\u0000\u0000l\u0000m\u0018\u000b\u0018\u0000\u00160\u0000\tonedbname\u0000\toneDBName\r!T\u0000\u0001m\u0000\u0000\u0000m\u0000n!U\u000e!U\u0000\u0001!V\u0011!V\u0000\u0004\u0000_\u0000_\r!R\u0000\u0001o\u0000\u0000\u0000o\u0000p\u0017\u000b\u0017\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u0006\u0019\u0000\u0000\r!J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u0002!H\u0000\u0002!W!X\r!W\u0000\u0003l\u0000\u0002\u0000v\u0000v\u0015\u0014\u0013\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002!X\u0000\u0002!Y\u0012\r!Y\u0000\u0003I\u0000\u0000\u0000v\u0000|\u0011!Z\u0010\u000b\u0011\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u0002!Z\u0000\u0002![\u000f\r![\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000e\u000b\u000e\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u0002\u000f\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\u000b\/\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\r!+\u0000\u0001o\u0000\u0000\u0000>\u0000?\r\u000b\r\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u0002!)\u0000\u0002!\\!]\r!\\\u0000\u0003l\u0000\u0002\u0000\u0000\f\u000b\n\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0002!]\u0000\u0002!^\t\r!^\u0000\u0003I\u0000\u0000\u0000\u0000\b!_\u0007\u000b\b\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u0002!_\u0000\u0002!`\u0006\r!`\u0000\u0001J\u0000\u0000\u0000\u0000\u0005\u0002\u0005\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002!\u0019\u0000\u0002!a\u0004\r!a\u0000\u0001L\u0000\u0000\u0000\u0000!b\r!b\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\n\u0003\u0000\b\u000bboovtrue\u0002\u0004\u0000\u0000\r \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0002!c!d\n\u0002\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006!d\u0000\u0003\u0000!e\n\u0000\u0000\u0004\nerrn\r!e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r \u0000\u0003R\u0000\u0000\u0000\u0000!f!g\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!f\u0000\u0002b\u0000\u0000\u0000\u0000!h!i\r!h\u0000\u0001m\u0000\u0000\u0000\u0000!j\u000e!j\u0000\u0001!k\u0011!k\u0000J\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000m\u0000G\u0000U\u0000I\u0000_\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000D\u0000B\u0000_\u0000T\u0000O\u0000_\u0000L\u0000i\u0000s\u0000t\u0000A\u0000d\u0000d\u0000 \u0000-\u0000 \r!i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006!g\u0000\u0003!l\n\u0000\u0004\nerrn\r!l\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002 \u0000\u0002!m\r!m\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002 \u0000\u0002!n!o\r!n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!o\u0000\u0002!p!q\r!p\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!q\u0000\u0002!r!s\r!r\u0000\u0002i\u0000\u0000\u0000\u0000!t!u\r!t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000!v\u000b\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u0002!v\u0000\u0002!w\r!w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0000\u0000\u0002\u0000\u0000\r!u\u0000\u0001k\u0000\u0000\u0000\u0000\u00007!x\u0002!x\u0000\u0002!y!z\r!y\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000!{!|\u0001\u0000\u0000\f!{\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e!|\u0000\u0001!}\u0011!}\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002!z\u0000\u0002!~!\r!~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002O\u0000\u0000\u0000\u0000\u00005!!\r!\u0000\u0001k\u0000\u0000\u0000\b\u00004!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0004Z\u0000\u0000\u0000\b\u0000'!!!\r!\u0000\u0002=\u0000\u0001\u0000\b\u0000\u0014!!\r!\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0012!\r!\u0000\u0003I\u0000\u0001\u0000\b\u0000\u0012!\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r!\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000e!!\r!\u0000\u00012\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\ncSCP\r!\u0000\u00024\u0000\u0000\u0000\b\u0000\f!\n\u0000\u0004\ncDB \r!\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0000\r!\u0000\u0001L\u0000\u0000\u0000\u0017\u0000\u001a!\r!\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0001L\u0000\u0000\u0000\u001d\u0000'!\r!\u0000\u0002n\u0000\u0000\u0000\u001d\u0000&!!\r!\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\npnam\r!\u0000\u0002n\u0000\u0000\u0000\u001d\u0000#!!\r!\u0000\u00012\u0000\u0000\u0000!\u0000#\n\u0000\u0004\ncSCP\r!\u0000\u00024\u0000\u0000\u0000\u001d\u0000!!\n\u0000\u0004\ncDB \r!\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003R\u0000\u0000\u0000(\u00002!!\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!\u0000\u0002b\u0000\u0000\u0000,\u00001!!\r!\u0000\u0002b\u0000\u0000\u0000,\u0000\/!!\r!\u0000\u0001m\u0000\u0000\u0000,\u0000-!\u000e!\u0000\u0001!\u0011!\u0000\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000_\u0000L\u0000i\u0000s\u0000t\u0000O\u0000f\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000a\u0000b\u0000a\u0000s\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000:\u0000 \r!\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\r!\u0000\u0001m\u0000\u0000\u0000\/\u00000!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000.\u0006!\u0000\u0003!\n\u0000\u0004\nerrn\r!\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0004\u0000\u0006\u0000\u0000\u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r!\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005!\n\u0000\u0004\ncapp\r!\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003!\u000e!\u0000\u0001!\u0011!\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\n\u0000\b\u000bkfrmID \u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u00006\u00006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!s\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002i\u0000\u0000\u0000\u0000!!\r!\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000!\u000b\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002!\u0000\u0002!\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0001k\u0000\u0000\u0000\u0000\u0000]!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000!!\u0001\u0000\u0000\f!\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e!\u0000\u0001!\u0011!\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006!!\r!\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0004!\u0006!\u0000\u0003!\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r!\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002!\u000e!\u0000\u0001!\u0011!\u0000\u0010\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0006\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f!!\r!\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n!!\r!\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\r\u0000\r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003Q\u0000\u0000\u0000\r\u0000[!!!\r!\u0000\u0001k\u0000\u0000\u0000\u0010\u0000I!\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0015\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001d!\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u0002!\u0000\u0002!\r!\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!\r!\u0000\u0002O\u0000\u0000\u0000\u001e\u0000I!!\r!\u0000\u0002O\u0000\u0000\u0000\"\u0000H!!\r!\u0000\u0001k\u0000\u0000\u0000)\u0000G!\u0002!\u0000\u0002!!\r!\u0000\u0003l\u0000\u0002\u0000)\u0000)\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003I\u0000\u0002\u0000)\u0000B!\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r!\u0000\u0003l\u0000\u0005\u0000)\u0000>!\r!\u0000\u00026\u0001\u0000\u0000)\u0000>!!\r!\u0000\u0002n\u0000\u0000\u0000)\u00003!!\r!\u0000\u00024\u0000\u0001\u00000\u00003!\n\u0000\u0004\nradB\r!\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r!\u0000\u0002n\u0000\u0000\u0000)\u00000!!\r!\u0000\u00024\u0000\u0000\u0000-\u00000!\n\u0000\u0004\ntabg\r!\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r!\u0000\u00024\u0000\u0000\u0000)\u0000-!\n\u0000\u0004\ncwin\r!\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r!\u0000\u0002=\u0000\u0003\u00004\u0000=!!\r!\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npnam\r!\u0000\u0002n\u0000\u0000\u00008\u0000<!!\r!\u0000\u0001o\u0000\u0000\u0000:\u0000<\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r!\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0001L\u0000\u0000\u0000C\u0000E!\r!\u0000\u0001m\u0000\u0000\u0000C\u0000D\n\u0000\b\u000bboovtrue\u0002!\u0000\u0002!\r!\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r!\u0000\u00024\u0000\u0000\u0000\"\u0000&!\n\u0000\u0004\npcap\r!\u0000\u0001m\u0000\u0000\u0000$\u0000%!\u000e!\u0000\u0001!\u0011!\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r!\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f!\u000f!\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r!\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000!\"\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0000\u0003\"\u0001\n\u0000\u0004\nerrn\r\"\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r!\u0000\u0003R\u0000\u0000\u0000Q\u0000[\"\u0002\"\u0003\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0002\u0000\u0002b\u0000\u0000\u0000U\u0000Z\"\u0004\"\u0005\r\"\u0004\u0000\u0001m\u0000\u0000\u0000U\u0000X\"\u0006\u000e\"\u0006\u0000\u0001\"\u0007\u0011\"\u0007\u0000P\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000t\u0000a\u0000b\u0000 \u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r\"\u0005\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0003\u0000\u0003\"\b\n\u0000\u0004\nerrn\r\"\b\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002!\u0000\u0002\"\t\r\"\t\u0000\u0003l\u0000\u0002\u0000\\\u0000\\~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002!\u0000\u0002\"\n\"\u000b\r\"\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\"\u000b\u0000\u0002\"\f\"\r\r\"\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000zyx\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\"\r\u0000\u0002\"\u000e\"\u000f\r\"\u000e\u0000\u0002i\u0000\u0000\u0000\u0000\"\u0010\"\u0011\r\"\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000w\"\u0012v\u000bw\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u0002\"\u0012\u0000\u0002\"\u0013u\r\"\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002u\u0000\u0000\u0002v\u0000\u0000\r\"\u0011\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\"\u0014\u0002\"\u0014\u0000\u0002\"\u0015\"\u0016\r\"\u0015\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000s\"\u0017\"\u0018\u0001s\u0000\u0000\f\"\u0017\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"\u0018\u0000\u0001\"\u0019\u0011\"\u0019\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\"\u0016\u0000\u0002\"\u001a\"\u001b\r\"\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\"\u001b\u0000\u0002\"\u001c\"\u001d\r\"\u001c\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001c\"\u001e\"\u001f\" \r\"\u001e\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\fo\"!n\u000bo\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002\"!\u0000\u0002\"\"m\r\"\"\u0000\u0001K\u0000\u0000\u0000\u0004\u0000\b\"#\u0006\"#\u0000\u0003l\"$k\u000bl\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\"$\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\"%\u000e\"%\u0000\u0001\"&\u0011\"&\u0000\u0010\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0006k\u0000\u0000\u0002m\u0000\u0000\u0002n\u0000\u0000\r\"\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000j\"'\"(\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"(\u0000\u0003h\")g\nh\u0000\u0004\nerrn\r\")\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006g\u0000\u0000\r\" \u0000\u0003R\u0000\u0000\u0000\u0014\u0000\u001ce\"*\"+\ne\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"*\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\",\"-\r\",\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\".\u000e\".\u0000\u0001\"\/\u0011\"\/\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\"-\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001ad\u000bd\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"+\u0000\u0003c\"0b\nc\u0000\u0004\nerrn\r\"0\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017a\u000ba\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006b\u0000\u0000\u0002\"\u001d\u0000\u0002\"1`\r\"1\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d_^]\u0001_\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\u0002`\u0000\u0000\u0002\"\u000f\u0000\u0002\"2\"3\r\"2\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\"3\u0000\u0002\"4\"5\r\"4\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000YXW\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0001W\u0000\u0000\u0002\"5\u0000\u0002\"6\"7\r\"6\u0000\u0002i\u0000\u0000\u0000\u0000\"8\"9\r\"8\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000V\":U\u000bV\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u0002\":\u0000\u0002\";T\r\";\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002T\u0000\u0000\u0002U\u0000\u0000\r\"9\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\"<\u0002\"<\u0000\u0002\"=\">\r\"=\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000R\"?\"@\u0001R\u0000\u0000\f\"?\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"@\u0000\u0001\"A\u0011\"A\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\">\u0000\u0002\"B\"C\r\"B\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002\"C\u0000\u0002\"D\"E\r\"D\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001c\"F\"G\"H\r\"F\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\fN\"IM\u000bN\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u0002\"I\u0000\u0002\"JL\r\"J\u0000\u0001K\u0000\u0000\u0000\u0004\u0000\b\"K\u0006\"K\u0000\u0003K\"LJ\u000bK\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\r\"L\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\"M\u000e\"M\u0000\u0001\"N\u0011\"N\u0000\u001c\u0000P\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000 \u0000S\u0000e\u0000t\u0000s\u0006J\u0000\u0000\u0002L\u0000\u0000\u0002M\u0000\u0000\r\"G\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000I\"O\"P\nI\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"P\u0000\u0003G\"QF\nG\u0000\u0004\nerrn\r\"Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006F\u0000\u0000\r\"H\u0000\u0003R\u0000\u0000\u0000\u0014\u0000\u001cD\"R\"S\nD\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"R\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001b\"T\"U\r\"T\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\"V\u000e\"V\u0000\u0001\"W\u0011\"W\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0000 \u0000t\u0000a\u0000b\u0000 \u0000-\u0000 \r\"U\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aC\u000bC\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"S\u0000\u0003B\"XA\nB\u0000\u0004\nerrn\r\"X\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017@\u000b@\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006A\u0000\u0000\u0002\"E\u0000\u0002\"Y?\r\"Y\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u0002\"7\u0000\u0002\"Z\"[\r\"Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\"[\u0000\u0002\"\\\"]\r\"\\\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\"]\u0000\u0002\"^\"_\r\"^\u0000\u0002i\u0000\u0000\u0000\u0000\"`\"a\r\"`\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00005\"b4\u000b5\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u0002\"b\u0000\u0002\"c3\r\"c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023\u0000\u0000\u00024\u0000\u0000\r\"a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"d\u0002\"d\u0000\u0002\"e\"f\r\"e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00001\"g\"h\u00011\u0000\u0000\f\"g\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e\"h\u0000\u0001\"i\u0011\"i\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002\"f\u0000\u0002\"j\"k\r\"j\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u00000\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\"k\u0000\u0002\"l\"m\r\"l\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\"n\"o\"p\r\"n\u0000\u0001k\u0000\u0000\u0000\u0003\u0000r\"q\u0002\"q\u0000\u0002\"r\"s\r\"r\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b-,+\u000b-\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002,\u0000\u0000\u0002+\u0000\u0000\u0002\"s\u0000\u0002\"t\"u\r\"t\u0000\u0003I\u0000\u0000\u0000\t\u0000\u0010*\"v)\u000b*\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u0002\"v\u0000\u0002\"w(\r\"w\u0000\u0001J\u0000\u0000\u0000\n\u0000\f'\u0002'\u0000\u0000\u0002(\u0000\u0000\u0002)\u0000\u0000\u0002\"u\u0000\u0002\"x\"y\r\"x\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002\"y\u0000\u0002\"z#\r\"z\u0000\u0002O\u0000\u0000\u0000\u0011\u0000r\"{\"|\r\"{\u0000\u0002O\u0000\u0000\u0000\u0015\u0000q\"}\"~\r\"}\u0000\u0001k\u0000\u0000\u0000\u001c\u0000p\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u001c\u0000+\"\"\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000)\"\"\r\"\u0000\u00024\u0000\u0000\u0000&\u0000)\"\"\n\"\u0000\u0004\ntabB\r\"\u0000\u0001m\u0000\u0000\u0000'\u0000(!\u0003!\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000&\"\"\r\"\u0000\u00024\u0000\u0000\u0000#\u0000& \"\n \u0000\u0004\nscra\r\"\u0000\u0001m\u0000\u0000\u0000$\u0000%\u001f\u0003\u001f\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000\u001c\u0000#\"\"\r\"\u0000\u00024\u0000\u0000\u0000 \u0000#\u001e\"\n\u001e\u0000\u0004\ntabg\r\"\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u001d\u0003\u001d\u0000\u0001\r\"\u0000\u00024\u0000\u0000\u0000\u001c\u0000 \u001c\"\n\u001c\u0000\u0004\ncwin\r\"\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u001b\u0003\u001b\u0000\u0001\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000,\u00006\"\"\r\"\u0000\u0002n\u0000\u0000\u0000,\u00004\"\"\r\"\u0000\u00011\u0000\u0000\u00002\u00004\u0016\n\u0016\u0000\u0004\nvalL\r\"\u0000\u0002n\u0000\u0000\u0000,\u00002\"\"\r\"\u0000\u00024\u0000\u0000\u0000\/\u00002\u0015\"\n\u0015\u0000\u0004\nsttx\r\"\u0000\u0001m\u0000\u0000\u00000\u00001\u0014\u0003\u0014\u0000\u0001\r\"\u0000\u0002n\u0000\u0000\u0000,\u0000\/\"\"\r\"\u0000\u00012\u0000\u0000\u0000-\u0000\/\u0013\n\u0013\u0000\u0004\ncrow\r\"\u0000\u0001o\u0000\u0000\u0000,\u0000-\u0012\u000b\u0012\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u00007\u0000A\"\"\r\"\u0000\u0002n\u0000\u0000\u00007\u0000?\"\"\r\"\u0000\u00011\u0000\u0000\u0000=\u0000?\u0010\n\u0010\u0000\u0004\nvalL\r\"\u0000\u0002n\u0000\u0000\u00007\u0000=\"\"\r\"\u0000\u00024\u0000\u0000\u0000:\u0000=\u000f\"\n\u000f\u0000\u0004\nsttx\r\"\u0000\u0001m\u0000\u0000\u0000;\u0000<\u000e\u0003\u000e\u0000\u0003\r\"\u0000\u0002n\u0000\u0000\u00007\u0000:\"\"\r\"\u0000\u00012\u0000\u0000\u00008\u0000:\r\n\r\u0000\u0004\ncrow\r\"\u0000\u0001o\u0000\u0000\u00007\u00008\f\u000b\f\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000B\u0000B\n\t\b\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000B\u0000F\"\"\r\"\u0000\u0001J\u0000\u0000\u0000B\u0000D\u0007\u0002\u0007\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\"\u0000\u0002\"\"\r\"\u0000\u0005Y\u0000\u0000\u0000G\u0000k\"\u0005\"\"\u0004\r\"\u0000\u0001k\u0000\u0000\u0000U\u0000f\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000U\u0000a\"\"\r\"\u0000\u0001J\u0000\u0000\u0000U\u0000_\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002n\u0000\u0000\u0000U\u0000Y\"\"\r\"\u0000\u00024\u0000\u0000\u0000V\u0000Y\u0003\"\n\u0003\u0000\u0004\ncobj\r\"\u0000\u0001o\u0000\u0000\u0000W\u0000X\u0002\u000b\u0002\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000U\u0000V\u0001\u000b\u0001\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\"\u0000\u0002\"\u0000\r\"\u0000\u0002n\u0000\u0000\u0000Y\u0000]\"\"\r\"\u0000\u00024\u0000\u0000\u0000Z\u0000]\"\n\u0000\u0004\ncobj\r\"\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u000b\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u0002\u0000\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\u0002\"\u0000\u0002\"\r\"\u0000\u0002r\u0000\u0000\u0000b\u0000f\"\"\r\"\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\r\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0000;\u0000\u0000\u0000d\u0000e\r\"\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\u0000\u0000\u000b\u0005\u0000\u00050\u0000\u0001i\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\r\"\u0000\u0003I\u0000\u0001\u0000K\u0000P\"\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\"\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u0002\u0000\u0000\u0001\u0004\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0001L\u0000\u0000\u0000l\u0000n\"\r\"\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u0002\"\u0000\u0002\"\r\"\u0000\u0003l\u0000\u0002\u0000o\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\"~\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019\"\n\u0000\u0004\nprcs\r\"\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u001a\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\r\"|\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\"\u000f\"\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002#\u0000\u0000\r\"o\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\"\"\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0003\"\n\u0000\u0004\nerrn\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\"p\u0000\u0003R\u0000\u0000\u0000z\u0000\"\"\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000p\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000g\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000a\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000N\u0000a\u0000m\u0000e\u0000 \u0000P\u0000r\u0000i\u0000v\u0000i\u0000l\u0000e\u0000g\u0000e\u0000 \u0000S\u0000e\u0000t\u0000 \u0000l\u0000i\u0000s\u0000t\u0000s\u0000 \u0000-\u0000 \r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\"\u0000\u0003\"\n\u0000\u0004\nerrn\r\"\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\"m\u0000\u0002\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\"_\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002i\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u0002\"\u0000\u0002\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\"\"\u0001\u0000\u0000\f\"\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\"\u0000\u0001\"\u0011\"\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000]\"\"\"\r\"\u0000\u0002O\u0000\u0000\u0000\u0003\u0000I\"\"\r\"\u0000\u0002O\u0000\u0000\u0000\u0007\u0000H\"\"\r\"\u0000\u0001k\u0000\u0000\u0000\u000e\u0000G\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002\"\u0000\u0002\"\"\r\"\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\r\"\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000G\"\"\r\"\u0000\u0001H\u0000\u0000\u0000\u0014\u0000\u001d#\u0000\r#\u0000\u0000\u0002E\u0000\u0000\u0000\u0014\u0000\u001c#\u0001#\u0002\r#\u0001\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a#\u0003#\u0004\r#\u0003\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npnam\r#\u0004\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018#\u0005\n\u0000\u0004\ncwin\r#\u0005\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r#\u0002\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b#\u0006\u000e#\u0006\u0000\u0001#\u0007\u0011#\u0007\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r\"\u0000\u0001k\u0000\u0000\u0000 \u0000C#\b\u0002#\b\u0000\u0002#\t#\n\r#\t\u0000\u0003I\u0000\u0002\u0000 \u0000@#\u000b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r#\u000b\u0000\u0003l\u0000\u0005\u0000 \u0000<#\f\r#\f\u0000\u00026\u0001\u0000\u0000 \u0000<#\r#\u000e\r#\r\u0000\u0002n\u0000\u0000\u0000 \u00003#\u000f#\u0010\r#\u000f\u0000\u00024\u0000\u0001\u00000\u00003#\u0011\n\u0000\u0004\nmenI\r#\u0011\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r#\u0010\u0000\u0002n\u0000\u0000\u0000 \u00000#\u0012#\u0013\r#\u0012\u0000\u00024\u0000\u0000\u0000-\u00000#\u0014\n\u0000\u0004\nmenE\r#\u0014\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0001\r#\u0013\u0000\u0002n\u0000\u0000\u0000 \u0000-#\u0015#\u0016\r#\u0015\u0000\u00024\u0000\u0000\u0000*\u0000-#\u0017\n\u0000\u0004\nmenI\r#\u0017\u0000\u0001m\u0000\u0000\u0000+\u0000,#\u0018\u000e#\u0018\u0000\u0001#\u0019\u0011#\u0019\u0000\f\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\r#\u0016\u0000\u0002n\u0000\u0000\u0000 \u0000*#\u001a#\u001b\r#\u001a\u0000\u00024\u0000\u0000\u0000'\u0000*#\u001c\n\u0000\u0004\nmenE\r#\u001c\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\r#\u001b\u0000\u0002n\u0000\u0000\u0000 \u0000'#\u001d#\u001e\r#\u001d\u0000\u00024\u0000\u0000\u0000$\u0000'#\u001f\n\u0000\u0004\nmbri\r#\u001f\u0000\u0001m\u0000\u0000\u0000%\u0000&# \u000e# \u0000\u0001#!\u0011#!\u0000\b\u0000F\u0000i\u0000l\u0000e\r#\u001e\u0000\u00024\u0000\u0000\u0000 \u0000$#\"\n\u0000\u0004\nmbar\r#\"\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\r#\u000e\u0000\u0002C\u0000\u0000\u00004\u0000;###$\r##\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npnam\r#$\u0000\u0001m\u0000\u0000\u00008\u0000:#%\u000e#%\u0000\u0001#&\u0011#&\u0000\u0010\u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002#\n\u0000\u0002#'\r#'\u0000\u0001L\u0000\u0000\u0000A\u0000C#(\r#(\u0000\u0001m\u0000\u0000\u0000A\u0000B\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b#)\n\u0000\u0004\npcap\r#)\u0000\u0001m\u0000\u0000\u0000\t\u0000\n#*\u000e#*\u0000\u0001#+\u0011#+\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r\"\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#,\u000f#,\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\"\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000#-#.\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#.\u0000\u0003#\/\n\u0000\u0004\nerrn\r#\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r\"\u0000\u0003R\u0000\u0000\u0000Q\u0000]#0#1\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#0\u0000\u0002b\u0000\u0000\u0000W\u0000\\#2#3\r#2\u0000\u0001m\u0000\u0000\u0000W\u0000Z#4\u000e#4\u0000\u0001#5\u0011#5\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r#3\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#1\u0000\u0003#6\n\u0000\u0004\nerrn\r#6\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\"\u0000\u0002#7\r#7\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\"\u0000\u0002#8#9\r#8\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#9\u0000\u0002#:#;\r#:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#;\u0000\u0002#<#=\r#<\u0000\u0002i\u0000\u0000\u0000\u0000#>#?\r#>\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000#@\u000b\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u0002#@\u0000\u0002#A\r#A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r#?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#B\u0002#B\u0000\u0002#C#D\r#C\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000#E#F\u0001\u0000\u0000\f#E\u0000\u0011\u0000\u000bversion 1.3\u0000\u0002\u0000\u0000\u000e#F\u0000\u0001#G\u0011#G\u0000\u0016\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0002#D\u0000\u0002#H#I\r#H\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#I\u0000\u0002#J#K\r#J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b#L#M\r#L\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006#N\u0006#N\u0000\u0003#O#P\u000b\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\r#O\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006#P\u0000\u0003#Q\u000b\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\r#Q\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006\u0000\u0000\r#M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\u0002#K\u0000\u0002#R#S\r#R\u0000\u0002r\u0000\u0000\u0000\t\u0000\u000e#T#U\r#T\u0000\u0002b\u0000\u0000\u0000\t\u0000\f#V#W\r#V\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r#W\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\r#U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002#S\u0000\u0002#X#Y\r#X\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#Y\u0000\u0002#Z#[\r#Z\u0000\u0003Q\u0000\u0000\u0000\u000f\u0000#\\#]#^\r#\\\u0000\u0002O\u0000\u0000\u0000\u0012\u0000#_#`\r#_\u0000\u0002O\u0000\u0000\u0000\u0016\u0000#a#b\r#a\u0000\u0001k\u0000\u0000\u0000\u001d\u0000#c\u0002#c\u0000\u0002#d#e\r#d\u0000\u0002n\u0000\u0001\u0000\u001d\u0000\"#f#g\r#f\u0000\u0003I\u0000\u0000\u0000\u001e\u0000\"\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r#g\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0002#e\u0000\u0002#h#i\r#h\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002#i\u0000\u0002#j#k\r#j\u0000\u0004Z\u0000\u0000\u0000#\u00009#l#m\r#l\u0000\u0001H\u0000\u0000\u0000#\u0000,#n\r#n\u0000\u0002E\u0000\u0000\u0000#\u0000+#o#p\r#o\u0000\u0002n\u0000\u0000\u0000#\u0000)#q#r\r#q\u0000\u00011\u0000\u0000\u0000'\u0000)\n\u0000\u0004\npnam\r#r\u0000\u00024\u0000\u0000\u0000#\u0000'#s\n\u0000\u0004\ncwin\r#s\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r#p\u0000\u0001m\u0000\u0000\u0000)\u0000*#t\u000e#t\u0000\u0001#u\u0011#u\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r#m\u0000\u0003R\u0000\u0000\u0000\/\u00005~#v#w\n~\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#v\u0000\u0001m\u0000\u0000\u00003\u00004#x\u000e#x\u0000\u0001#y\u0011#y\u0000F\u0000N\u0000o\u0000t\u0000 \u0000i\u0000n\u0000 \u0000m\u0000a\u0000i\u0000n\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0006#w\u0000\u0003}#z|\n}\u0000\u0004\nerrn\r#z\u0000\u0001m\u0000\u0000\u00001\u00002{\u0003{\u0004\u0000\u0006|\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002#k\u0000\u0002#{#|\r#{\u0000\u0003l\u0000\u0002\u0000:\u0000:zyx\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002#|\u0000\u0002#}#~\r#}\u0000\u0003l\u0000\u0001\u0000:\u0000:w##\u0001w\u0000\u0000\f#\u0000\u001b\u0000\u0015 SAVE edits: click OK\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000*\u0000 \u0000S\u0000A\u0000V\u0000E\u0000 \u0000e\u0000d\u0000i\u0000t\u0000s\u0000:\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000O\u0000K\u0002#~\u0000\u0002##\r#\u0000\u0002U\u0000\u0000\u0000:\u0000y##\r#\u0000\u0001k\u0000\u0000\u0000A\u0000t#\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0001\u0000A\u0000Av##\u0001v\u0000\u0000\f#\u0000+\u0000% give a bit of extra time, if needed:\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000J\u0000 \u0000g\u0000i\u0000v\u0000e\u0000 \u0000a\u0000 \u0000b\u0000i\u0000t\u0000 \u0000o\u0000f\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000t\u0000i\u0000m\u0000e\u0000,\u0000 \u0000i\u0000f\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0000:\u0002#\u0000\u0002##\r#\u0000\u0002n\u0000\u0001\u0000A\u0000Z##\r#\u0000\u0003I\u0000\u0000\u0000B\u0000Zu#t\u000bu\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002#\u0000\u0002#s\r#\u0000\u00026\u0001\u0000\u0000B\u0000V##\r#\u0000\u0002n\u0000\u0000\u0000B\u0000I##\r#\u0000\u00024\u0000\u0001\u0000F\u0000Ir#\nr\u0000\u0004\nbutT\r#\u0000\u0001m\u0000\u0000\u0000G\u0000Hq\u0003q\u0000\u0001\r#\u0000\u00024\u0000\u0000\u0000B\u0000Fp#\np\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000D\u0000Eo\u0003o\u0000\u0001\r#\u0000\u0002=\u0000\u0003\u0000L\u0000U##\r#\u0000\u00011\u0000\u0000\u0000M\u0000On\nn\u0000\u0004\npnam\r#\u0000\u0001m\u0000\u0000\u0000P\u0000T#\u000e#\u0000\u0001#\u0011#\u0000\u0004\u0000O\u0000K\u0002s\u0000\u0000\u0002t\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000A\u0000B\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0000\u0000[\u0000n##ml\r#\u0000\u0001H\u0000\u0000\u0000[\u0000f#\r#\u0000\u0002C\u0000\u0000\u0000[\u0000e##\r#\u0000\u0002n\u0000\u0000\u0000[\u0000a##\r#\u0000\u00011\u0000\u0000\u0000_\u0000ak\nk\u0000\u0004\npnam\r#\u0000\u00024\u0000\u0000\u0000[\u0000_j#\nj\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000]\u0000^i\u0003i\u0000\u0001\r#\u0000\u0001m\u0000\u0000\u0000a\u0000d#\u000e#\u0000\u0001#\u0011#\u0000&\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000f\u0000o\u0000r\r#\u0000\u0001k\u0000\u0000\u0000i\u0000j#\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0001\u0000i\u0000ih##\u0001h\u0000\u0000\f#\u0000.\u0000( finished closing the window, can leave.\u0000\u0002\u0000\u0000\u000e#\u0000\u0001#\u0011#\u0000P\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000,\u0000 \u0000c\u0000a\u0000n\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000.\u0002#\u0000\u0002#g\r#\u0000\u0000S\u0000\u0000\u0000i\u0000j\u0002g\u0000\u0000\u0002m\u0000\u0000\u0001l\u0000\u0000\u0002#\u0000\u0002#f\r#\u0000\u0003I\u0000\u0002\u0000o\u0000te#d\ne\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000o\u0000pc\u0003c\u0000\u0001\u0002d\u0000\u0000\u0002f\u0000\u0000\r#\u0000\u0001m\u0000\u0000\u0000=\u0000>b\u0003b\u0000\u0005\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000z\u0000za`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003I\u0000\u0002\u0000z\u0000^#]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000z\u0000}#\b#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002]\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0000\u0000\u0000##YX\r#\u0000\u0002=\u0000\u0003\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000W\nW\u0000\u0004\npnam\r#\u0000\u00024\u0000\u0000\u0000\u0000V#\nV\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000U\u0003U\u0000\u0001\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u00002\u0000C\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000L\u0000o\u0000g\u0000i\u0000n\r#\u0000\u0001k\u0000\u0000\u0000\u0000#\u0002#\u0000\u0002##\r#\u0000\u0002r\u0000\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\r#\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005prefs\u0000\u0000\r#\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000R\nR\u0000\u0004\nvalL\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0000\u0000\u0000Q#\nQ\u0000\u0004\ntxtf\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000(\u0000F\u0000u\u0000l\u0000l\u0000 \u0000A\u0000c\u0000c\u0000e\u0000s\u0000s\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000:\r#\u0000\u00024\u0000\u0000\u0000\u0000P#\nP\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u0001\u0002#\u0000\u0002##\r#\u0000\u0002r\u0000\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u0001o\u0000\u0000\u0000\u0000N\u000bN\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\r#\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\r#\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000L\nL\u0000\u0004\nvalL\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0000\u0000\u0000K#\nK\u0000\u0004\ntxtf\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000\u0012\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000:\r#\u0000\u00024\u0000\u0000\u0000\u0000J#\nJ\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000I\u0003I\u0000\u0001\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0002n\u0000\u0001\u0000\u0000##\r#\u0000\u0003I\u0000\u0000\u0000\u0000E#D\u000bE\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002#\u0000\u0002#C\r#\u0000\u00026\u0001\u0000\u0000\u0000##\r#\u0000\u0002n\u0000\u0000\u0000\u0000##\r#\u0000\u00024\u0000\u0001\u0000\u0000B#\nB\u0000\u0004\nbutT\r#\u0000\u0001m\u0000\u0000\u0000\u0000A\u0003A\u0000\u0001\r#\u0000\u00024\u0000\u0000\u0000\u0000@#\n@\u0000\u0004\ncwin\r#\u0000\u0001m\u0000\u0000\u0000\u0000?\u0003?\u0000\u0001\r#\u0000\u0002=\u0000\u0003\u0000\u0000##\r#\u0000\u00011\u0000\u0000\u0000\u0000>\n>\u0000\u0004\npnam\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\u000e#\u0000\u0001#\u0011#\u0000\u0004\u0000O\u0000K\u0002C\u0000\u0000\u0002D\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000\u0000\u0002#\u0000\u0002#=\r#\u0000\u0003I\u0000\u0002\u0000\u0000<#;\n<\u0000\u0018.sysodelanull\u0000\u0000nmbr\r#\u0000\u0001m\u0000\u0000\u0000\u0000#\b#\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0003l\u0000\u0002\u0000\u0000:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002#\u0000\u0002#7\r#\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u00027\u0000\u0000\r#b\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a3#\n3\u0000\u0004\npcap\r#\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019#\u000e#\u0000\u0001#\u0011#\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r#`\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013#\u000f#\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r#]\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00002##\n2\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006#\u0000\u00030#\/\n0\u0000\u0004\nerrn\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\/\u0000\u0000\r#^\u0000\u0003R\u0000\u0000\u0000\u0000-$\u0000$\u0001\n-\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0000\u0002b\u0000\u0000\u0000\u0000$\u0002$\u0003\r$\u0002\u0000\u0001m\u0000\u0000\u0000\u0000$\u0004\u000e$\u0004\u0000\u0001$\u0005\u0011$\u0005\u0000@\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000 \u0000S\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000-\u0000 \r$\u0003\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0001\u0000\u0003+$\u0006*\n+\u0000\u0004\nerrn\r$\u0006\u0000\u0001o\u0000\u0000\u0000\u0000)\u000b)\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006*\u0000\u0000\u0002#[\u0000\u0002$\u0007(\r$\u0007\u0000\u0003l\u0000\u0002\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002(\u0000\u0000\u0002#=\u0000\u0002$\b$\t\r$\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\t\u0000\u0002$\n$\u000b\r$\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002$\u000b\u0000\u0002$\f$\r\r$\f\u0000\u0002i\u0000\u0000\u0000\u0000$\u000e$\u000f\r$\u000e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001e$\u0010\u001d\u000b\u001e\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u0002$\u0010\u0000\u0002$\u0011$\u0012\r$\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u0002$\u0012\u0000\u0002$\u0013\u001b\r$\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\r$\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u00009$\u0014\u0002$\u0014\u0000\u0002$\u0015$\u0016\r$\u0015\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0019$\u0017$\u0018\u0001\u0019\u0000\u0000\f$\u0017\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$\u0018\u0000\u0001$\u0019\u0011$\u0019\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$\u0016\u0000\u0002$\u001a$\u001b\r$\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002$\u001b\u0000\u0002$\u001c\u0015\r$\u001c\u0000\u0002w\u0000\u0000\u0000\u0000\u00009$\u001d$\u001e\r$\u001d\u0000\u0003Q\u0000\u0000\u0000\u0002\u00009$\u001f$ $!\r$\u001f\u0000\u0001k\u0000\u0000\u0000\u0005\u0000%$\"\u0002$\"\u0000\u0002$#$$\r$#\u0000\u0004Z\u0000\u0000\u0000\u0005\u0000 $%$&\u0014\u0013\r$%\u0000\u0002>\u0001\u0000\u0000\u0005\u0000\b$'$(\r$'\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u0012\u000b\u0012\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$(\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0011\n\u0011\u0000\u0004\nnull\r$&\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000\u001c$)$*\u0010\u000f\r$)\u0000\u0002>\u0001\u0000\u0000\u000b\u0000\u0010$+$,\r$+\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e$-$.\r$-\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\u000e\n\u000e\u0000\u0004\nvalL\r$.\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\r\u000b\r\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\r$,\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\f\u000b\f\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$*\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u000b$\/\n\n\u000b\u0000\u0018.prcsclicnull\u0000\u0000uiel\r$\/\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\t\u000b\t\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u0002\n\u0000\u0000\u0002\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002$$\u0000\u0002$0$1\r$0\u0000\u0001L\u0000\u0000\u0000!\u0000#$2\r$2\u0000\u0001m\u0000\u0000\u0000!\u0000\"\b\n\b\u0000\b\u000bboovtrue\u0002$1\u0000\u0002$3\u0007\r$3\u0000\u0003l\u0000\u0002\u0000$\u0000$\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\r$ \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0003$4$5\n\u0003\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$5\u0000\u0003\u0001$6\u0000\n\u0001\u0000\u0004\nerrn\r$6\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0000\r$!\u0000\u0003R\u0000\u0000\u0000-\u00009$7$8\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$7\u0000\u0002b\u0000\u0000\u00001\u00008$9$:\r$9\u0000\u0002b\u0000\u0000\u00001\u00006$;$<\r$;\u0000\u0002b\u0000\u0000\u00001\u00004$=$>\r$=\u0000\u0001m\u0000\u0000\u00001\u00002$?\u000e$?\u0000\u0001$@\u0011$@\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r$>\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\r$<\u0000\u0001m\u0000\u0000\u00004\u00005$A\u000e$A\u0000\u0001$B\u0011$B\u0000\"\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000b\u0000o\u0000x\u0000 \u0000-\u0000 \r$:\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$8\u0000\u0003$C\n\u0000\u0004\nerrn\r$C\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u000f$\u001e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0015\u0000\u0000\u0002$\r\u0000\u0002$D$E\r$D\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$E\u0000\u0002$F$G\r$F\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$G\u0000\u0002$H$I\r$H\u0000\u0002i\u0000\u0000\u0000\u0000$J$K\r$J\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$L\u000b\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u0002$L\u0000\u0002$M\r$M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002\u0000\u0000\u0002\u0000\u0000\r$K\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\n$N\u0002$N\u0000\u0002$O$P\r$O\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$Q$R\u0001\u0000\u0000\f$Q\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$R\u0000\u0001$S\u0011$S\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$P\u0000\u0002$T$U\r$T\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$U\u0000\u0002$V$W\r$V\u0000\u0002w\u0000\u0000\u0000\u0000\u0000\b$X$Y\r$X\u0000\u0002n\u0000\u0001\u0000\u0002\u0000\b$Z$[\r$Z\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b$\\\u000b\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002$\\\u0000\u0002$]\r$]\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002\u0000\u0000\u0002\u0000\u0000\r$[\u0000\u0000f\u0000\u0000\u0000\u0002\u0000\u0003\u000f$Y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002$W\u0000\u0002$^\r$^\u0000\u0003l\u0000\u0002\u0000\t\u0000\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002$I\u0000\u0002$_$`\r$_\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$`\u0000\u0002$a$b\r$a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$b\u0000\u0002$c$d\r$c\u0000\u0002i\u0000\u0000\u0000\u0000$e$f\r$e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u0002\u0000\u0000\u0002\u0000\u0000\r$f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000$g\u0002$g\u0000\u0002$h$i\r$h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$j$k\u0001\u0000\u0000\f$j\u0000 \u0000\u001a version 1.0, Erik Shagdar\u0000\u0002\u0000\u0000\u000e$k\u0000\u0001$l\u0011$l\u00004\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0000,\u0000 \u0000E\u0000r\u0000i\u0000k\u0000 \u0000S\u0000h\u0000a\u0000g\u0000d\u0000a\u0000r\u0002$i\u0000\u0002$m$n\r$m\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$n\u0000\u0002$o$p\r$o\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003$q$r\r$q\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\r$r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$p\u0000\u0002$s$t\r$s\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$t\u0000\u0002$u$v\r$u\u0000\u0002O\u0000\u0000\u0000\u0004\u0000~$w$x\r$w\u0000\u0002O\u0000\u0000\u0000\b\u0000}$y$z\r$y\u0000\u0001k\u0000\u0000\u0000\u000f\u0000|${\u0002${\u0000\u0002$|$}\r$|\u0000\u0003l\u0000\u0002\u0000\u000f\u0000\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$}\u0000\u0002$~$\r$~\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014$$\r$\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000\u0015\u0000-$$\r$\u0000\u00026\u0001\u0000\u0000\u0015\u0000+$$\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\"$$\r$\u0000\u00024\u0000\u0001\u0000\u001f\u0000\"$\n\u0000\u0004\nmenI\r$\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0001\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f$$\r$\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001f$\n\u0000\u0004\nmenE\r$\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0003\u0000\u0001\r$\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001c$$\r$\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001c$\n\u0000\u0004\nmbri\r$\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b$\u000e$\u0000\u0001$\u0011$\u0000\b\u0000E\u0000d\u0000i\u0000t\r$\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019$\n\u0000\u0004\nmbar\r$\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0001\r$\u0000\u0002=\u0000\u0003\u0000#\u0000*$$\r$\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\npnam\r$\u0000\u0001m\u0000\u0000\u0000'\u0000)$\u000e$\u0000\u0001$\u0011$\u0000\n\u0000P\u0000a\u0000s\u0000t\u0000e\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002$\u0000\u0002$$\r$\u0000\u0003Q\u0000\u0000\u0000.\u0000H$$$\r$\u0000\u0003I\u0000\u0002\u00001\u00006$\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r$\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000$$\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0000\u0003$\n\u0000\u0004\nerrn\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000>\u0000H$$\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0002b\u0000\u0000\u0000B\u0000G$$\r$\u0000\u0001m\u0000\u0000\u0000B\u0000E$\u000e$\u0000\u0001$\u0011$\u0000R\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r$\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006$\u0000\u0003$\n\u0000\u0004\nerrn\r$\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0001\u0000I\u0000I$$\u0001\u0000\u0000\f$\u0000G\u0000A waiting until the paste item exists suggests the paste completed\u0000\u0002\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000s\u0000u\u0000g\u0000g\u0000e\u0000s\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000d\u0002$\u0000\u0002$\r$\u0000\u0002U\u0000\u0000\u0000I\u0000|$$\r$\u0000\u0001k\u0000\u0000\u0000R\u0000w$\u0002$\u0000\u0002$$\r$\u0000\u0003Q\u0000\u0000\u0000R\u0000o$$\r$\u0000\u0004Z\u0000\u0000\u0000U\u0000f$$\r$\u0000\u0003I\u0000\u0002\u0000U\u0000Z$\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r$\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u0002\u0000\u0000\r$\u0000\u0001k\u0000\u0000\u0000]\u0000b$\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000]\u0000`$$\r$\u0000\u0001m\u0000\u0000\u0000]\u0000^\n\u0000\b\u000bboovtrue\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$\u0000\u0002$\r$\u0000\u0000S\u0000\u0000\u0000a\u0000b\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r$\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$\r$\u0000\u0003I\u0000\u0002\u0000p\u0000w$\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r$\u0000\u0001m\u0000\u0000\u0000p\u0000s$\b$\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0003\u0000\u0014\u0002\u0000\u0000\r$z\u0000\u00024\u0000\u0000\u0000\b\u0000\f$\n\u0000\u0004\npcap\r$\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b$\u000e$\u0000\u0001$\u0011$\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r$x\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005$\u000f$\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002$v\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0001L\u0000\u0000\u0000\u0000$\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u0002$\u0000\u0002$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002$d\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002i\u0000\u0000\u0000\u0000$$\r$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000$\u000b\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u0002$\u0000\u0002$\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r$\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0005$\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000$$\u0001\u0000\u0000\f$\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\f$$\r$\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\n$\u0006$\u0000\u0003$$\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r$\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006$\u0000\u0003$$\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r$\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006$\u0000\u0003~$$\u000b~\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r$\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006$\u000e$\u0000\u0001$\u0011$\u0000\u0004\u0000i\u0000s\u0006$\u0000\u0003}$|\u000b}\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r$\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b{\n{\u0000\b\u000bboovfals\u0006|\u0000\u0000\r$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002$\u0000\u0002$$\r$\u0000\u0003l\u0000\u0002\u0000\r\u0000\ryxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002$\u0000\u0002$$\r$\u0000\u0004Z\u0000\u0000\u0000\r\u0000,$$vu\r$\u0000\u0002=\u0000\u0001\u0000\r\u0000\u0017$$\r$\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0010$$\r$\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u0010t\nt\u0000\u0004\npcls\r$\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000es\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\r$\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0016$$\r$\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0016r\nr\u0000\u0004\npcls\r$\u0000\u0001J\u0000\u0000\u0000\u0010\u0000\u0014$\u0002$\u0000\u0002$$\r$\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011%\u0000\u000e%\u0000\u0000\u0001%\u0001\u0011%\u0001\u0000\u0002\u0000a\u0002$\u0000\u0002%\u0002q\r%\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012p\u0003p\u0000\u0002\u0002q\u0000\u0000\r$\u0000\u0002r\u0000\u0000\u0000\u001a\u0000(%\u0003%\u0004\r%\u0003\u0000\u0001K\u0000\u0000\u0000\u001a\u0000&%\u0005\u0006%\u0005\u0000\u0003o%\u0006%\u0007\u000bo\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0006\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001f%\b%\t\r%\b\u0000\u00024\u0000\u0000\u0000\u001c\u0000\u001fn%\n\nn\u0000\u0004\ncobj\r%\n\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001em\u0003m\u0000\u0001\r%\t\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001cl\u000bl\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006%\u0007\u0000\u0003k%\u000bj\u000bk\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u000b\u0000\u0002n\u0000\u0000\u0000 \u0000$%\f%\r\r%\f\u0000\u00024\u0000\u0000\u0000!\u0000$i%\u000e\ni\u0000\u0004\ncobj\r%\u000e\u0000\u0001m\u0000\u0000\u0000\"\u0000#h\u0003h\u0000\u0002\r%\r\u0000\u0001o\u0000\u0000\u0000 \u0000!g\u000bg\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006j\u0000\u0000\r%\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002v\u0000\u0000\u0001u\u0000\u0000\u0002$\u0000\u0002%\u000f%\u0010\r%\u000f\u0000\u0003l\u0000\u0002\u0000-\u0000-edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002%\u0010\u0000\u0002%\u0011%\u0012\r%\u0011\u0000\u0003l\u0000\u0002\u0000-\u0000-ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002%\u0012\u0000\u0002%\u0013%\u0014\r%\u0013\u0000\u0002r\u0000\u0000\u0000-\u00002%\u0015%\u0016\r%\u0015\u0000\u0002b\u0000\u0000\u0000-\u00000%\u0017%\u0018\r%\u0017\u0000\u0001o\u0000\u0000\u0000-\u0000._\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\r%\u0018\u0000\u0001o\u0000\u0000\u0000.\u0000\/^\u000b^\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r%\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0014\u0000\u0002%\u0019%\u001a\r%\u0019\u0000\u0003l\u0000\u0002\u00003\u00003\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002%\u001a\u0000\u0002%\u001b%\u001c\r%\u001b\u0000\u0002r\u0000\u0000\u00003\u00008%\u001d%\u001e\r%\u001d\u0000\u0002n\u0000\u0000\u00003\u00006%\u001f% \r%\u001f\u0000\u0001o\u0000\u0000\u00004\u00006Y\u000bY\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r% \u0000\u0001o\u0000\u0000\u00003\u00004X\u000bX\u0000\t0\u0000\u0005prefs\u0000\u0000\r%\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002%\u001c\u0000\u0002%!%\"\r%!\u0000\u0002r\u0000\u0000\u00009\u0000>%#%$\r%#\u0000\u0002n\u0000\u0000\u00009\u0000<%%%&\r%%\u0000\u0001o\u0000\u0000\u0000:\u0000<V\u000bV\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%&\u0000\u0001o\u0000\u0000\u00009\u0000:U\u000bU\u0000\t0\u0000\u0005prefs\u0000\u0000\r%$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u0002%\"\u0000\u0002%'%(\r%'\u0000\u0002r\u0000\u0000\u0000?\u0000D%)%*\r%)\u0000\u0002n\u0000\u0000\u0000?\u0000B%+%,\r%+\u0000\u0001o\u0000\u0000\u0000@\u0000BS\u000bS\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%,\u0000\u0001o\u0000\u0000\u0000?\u0000@R\u000bR\u0000\t0\u0000\u0005prefs\u0000\u0000\r%*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002%(\u0000\u0002%-%.\r%-\u0000\u0003l\u0000\u0001\u0000E\u0000J%\/%0%1\r%\/\u0000\u0002r\u0000\u0000\u0000E\u0000J%2%3\r%2\u0000\u0002n\u0000\u0000\u0000E\u0000H%4%5\r%4\u0000\u0001o\u0000\u0000\u0000F\u0000HP\u000bP\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r%5\u0000\u0001o\u0000\u0000\u0000E\u0000FO\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\r%3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\f%0\u00006\u00000 re-select even if popup is the requested value.\u0000\u0002\u0000\u0000\u000e%1\u0000\u0001%6\u0011%6\u0000`\u0000 \u0000r\u0000e\u0000-\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000i\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000.\u0002%.\u0000\u0002%7%8\r%7\u0000\u0003l\u0000\u0002\u0000K\u0000KMLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002%8\u0000\u0002%9%:\r%9\u0000\u0003l\u0000\u0002\u0000K\u0000KJIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002%:\u0000\u0002%;G\r%;\u0000\u0002w\u0000\u0000\u0000K\u0002\u0005%<%=\r%<\u0000\u0003Q\u0000\u0000\u0000M\u0002\u0005%>%?%@\r%>\u0000\u0004Z\u0000\u0000\u0000P\u0001%A%BF%C\r%A\u0000\u0001H\u0000\u0000\u0000P\u0000V%D\r%D\u0000\u0003l\u0000\u0005\u0000P\u0000U%EED\r%E\u0000\u0003I\u0000\u0002\u0000P\u0000UC%FB\nC\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r%F\u0000\u0001o\u0000\u0000\u0000P\u0000QA\u000bA\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\r%B\u0000\u0001k\u0000\u0000\u0000Y\u0000a%G\u0002%G\u0000\u0002%H%I\r%H\u0000\u0003l\u0000\u0001\u0000Y\u0000Y@%J%K\u0001@\u0000\u0000\f%J\u0000*\u0000$ does NOT exist, so error with that:\u0000\u0002\u0000\u0000\u000e%K\u0000\u0001%L\u0011%L\u0000H\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000N\u0000O\u0000T\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000a\u0000t\u0000:\u0002%I\u0000\u0002%M%N\r%M\u0000\u0003R\u0000\u0000\u0000Y\u0000_?%O%P\n?\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r%O\u0000\u0001m\u0000\u0000\u0000]\u0000^%Q\u000e%Q\u0000\u0001%R\u0011%R\u0000R\u0000T\u0000h\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0006%P\u0000\u0003>%S=\n>\u0000\u0004\nerrn\r%S\u0000\u0001m\u0000\u0000\u0000[\u0000\\<\u0003<\u0004\u0000\u0006=\u0000\u0000\u0002%N\u0000\u0002%T;\r%T\u0000\u0003l\u0000\u0002\u0000`\u0000`:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002;\u0000\u0000\u0002F\u0000\u0000\r%C\u0000\u0001k\u0000\u0000\u0000d\u0001%U\u0002%U\u0000\u0002%V%W\r%V\u0000\u0003l\u0000\u0001\u0000d\u0000d7%X%Y\u00017\u0000\u0000\f%X\u0000!\u0000\u001b the popupObject DOES exist\u0000\u0002\u0000\u0000\u000e%Y\u0000\u0001%Z\u0011%Z\u00006\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000D\u0000O\u0000E\u0000S\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0002%W\u0000\u0002%[%\\\r%[\u0000\u0002r\u0000\u0000\u0000d\u0000g%]%^\r%]\u0000\u0001m\u0000\u0000\u0000d\u0000e6\n6\u0000\b\u000bboovfals\r%^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%\\\u0000\u0002%_%`\r%_\u0000\u0004Z\u0000\u0000\u0000h\u0001$%a%b4%c\r%a\u0000\u0001H\u0000\u0000\u0000h\u0000r%d\r%d\u0000\u0003l\u0000\u0005\u0000h\u0000q%e32\r%e\u0000\u0003I\u0000\u0002\u0000h\u0000q1%f0\n1\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r%f\u0000\u0002n\u0000\u0000\u0000h\u0000m%g%h\r%g\u0000\u00011\u0000\u0000\u0000i\u0000m\/\n\/\u0000\u0004\nvalL\r%h\u0000\u0001o\u0000\u0000\u0000h\u0000i.\u000b.\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u00020\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\r%b\u0000\u0001k\u0000\u0000\u0000u\u0000z%i\u0002%i\u0000\u0002%j%k\r%j\u0000\u0003l\u0000\u0001\u0000u\u0000u-%l%m\u0001-\u0000\u0000\f%l\u0000i\u0000c first check if the value of the popupObject exists - if it doesn't, then we can't test it directly\u0000\u0002\u0000\u0000\u000e%m\u0000\u0001%n\u0011%n\u0000\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000O\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000-\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000'\u0000t\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0002%k\u0000\u0002%o%p\r%o\u0000\u0002r\u0000\u0000\u0000u\u0000x%q%r\r%q\u0000\u0001m\u0000\u0000\u0000u\u0000v,\n,\u0000\b\u000bboovtrue\r%r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%p\u0000\u0002%s*\r%s\u0000\u0003l\u0000\u0002\u0000y\u0000y)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\u00024\u0000\u0000\r%c\u0000\u0003l\u0000\u0003\u0000}\u0001$%t%u%v\r%t\u0000\u0001k\u0000\u0000\u0000}\u0001$%w\u0002%w\u0000\u0002%x%y\r%x\u0000\u0003l\u0000\u0001\u0000}\u0000}&%z%{\u0001&\u0000\u0000\f%z\u0000K\u0000E note that our selection might be one of several 'matching' commands:\u0000\u0002\u0000\u0000\u000e%{\u0000\u0001%|\u0011%|\u0000\u0000 \u0000n\u0000o\u0000t\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000m\u0000i\u0000g\u0000h\u0000t\u0000 \u0000b\u0000e\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000a\u0000l\u0000 \u0000'\u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000'\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000s\u0000:\u0002%y\u0000\u0002%}%\r%}\u0000\u0004Z\u0000\u0000\u0000}\u0001$%~%%$\r%~\u0000\u0001o\u0000\u0000\u0000}\u0000~#\u000b#\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0003l\u0000\u0001\u0000\u0000\"%%\u0001\"\u0000\u0000\f%\u0000>\u00008 RE-SELECT even if popup already is the requested value.\u0000\u0002\u0000\u0000\u000e%\u0000\u0001%\u0011%\u0000p\u0000 \u0000R\u0000E\u0000-\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000i\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000.\u0002%\u0000\u0002%%\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000!\n!\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002%\u0000\u0002%\u001f\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001f\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0004\u0000i\u0000s\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u001a\u0019\r%\u0000\u0002>\u0001\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\u0018\n\u0018\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\n\u0015\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002%\u0000\u0002%\u0013\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u0013\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u000e\r\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002E\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\f\n\f\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\t\n\t\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002%\u0000\u0002%\u0007\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0014\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0000%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\u0002\u0001\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002C\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0000\u0000%%\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0000\u0000%\u000e%\u0000\u0001%\u0011%\u0000\u0014\u0000b\u0000e\u0000g\u0000i\u0000n\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%%\r%\u0000\u0001k\u0000\u0000\u0000\u0001\u0001%\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0000\u0000%%\r%\u0000\u0001H\u0000\u0000\u0000\u0000%\r%\u0000\u0002C\u0000\u0000\u0000\u0000%%\r%\u0000\u0002n\u0000\u0000\u0000\u0000%%\r%\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0000\u0000%%\r%\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0002=\u0000\u0001\u0001\u0004\u0001\t%%\r%\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r%\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\b%\u000e%\u0000\u0001%\u0011%\u0000\u0010\u0000e\u0000n\u0000d\u0000s\u0000W\u0000i\u0000t\u0000h\u0002%\u0000\u0002%\r%\u0000\u0001k\u0000\u0000\u0001\f\u0001 %\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0001\f\u0001\u001e%%\r%\u0000\u0001H\u0000\u0000\u0001\f\u0001\u0014%\r%\u0000\u0002D\u0000\u0000\u0001\f\u0001\u0013%%\r%\u0000\u0002n\u0000\u0000\u0001\f\u0001\u0011%%\r%\u0000\u00011\u0000\u0000\u0001\r\u0001\u0011\n\u0000\u0004\nvalL\r%\u0000\u0001o\u0000\u0000\u0001\f\u0001\r\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r%\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0002r\u0000\u0000\u0001\u0017\u0001\u001a%%\r%\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\n\u0000\b\u000bboovtrue\r%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%\r%\u0000\u0003l\u0000\u0002\u0001\u001f\u0001\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001$\u0000\u0000\u0002%\u0000\u0000\f%u\u0000C\u0000= we can see the value without 'picking' the menu, so test it:\u0000\u0002\u0000\u0000\u000e%v\u0000\u0001%\u0011%\u0000z\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000 \u0000s\u0000e\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000'\u0000p\u0000i\u0000c\u0000k\u0000i\u0000n\u0000g\u0000'\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000n\u0000u\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000t\u0000:\u0002%`\u0000\u0002%%\r%\u0000\u0003l\u0000\u0002\u0001%\u0001%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002%%\r%\u0000\u0004Z\u0000\u0000\u0001%\u0001%%\r%\u0000\u0001o\u0000\u0000\u0001%\u0001&\u000b\u0000\u00140\u0000\bmustpick\u0000\bmustPick\r%\u0000\u0004Z\u0000\u0000\u0001)\u0001%%\r%\u0000\u0002>\u0001\u0000\u0001)\u0001,%%\r%\u0000\u0001o\u0000\u0000\u0001)\u0001*\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r%\u0000\u0001m\u0000\u0000\u0001*\u0001+\n\u0000\u0004\nnull\r%\u0000\u0001k\u0000\u0000\u0001\/\u0001%\u0002%\u0000\u0002%&\u0000\r%\u0000\u0003I\u0000\u0002\u0001\/\u00014&\u0001\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u0001\u0000\u0001o\u0000\u0000\u0001\/\u00010\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002\u0000\u0000\u0002&\u0000\u0000\u0002&\u0002&\u0003\r&\u0002\u0000\u0004Z\u0000\u0000\u00015\u0001&\u0004&\u0005&\u0006\r&\u0004\u0000\u0002=\u0000\u0001\u00015\u0001:&\u0007&\b\r&\u0007\u0000\u0001o\u0000\u0000\u00015\u00016\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\b\u0000\u0001m\u0000\u0000\u00016\u00019&\t\u000e&\t\u0000\u0001&\n\u0011&\n\u0000\u0004\u0000i\u0000s\r&\u0005\u0000\u0003I\u0000\u0002\u0001=\u0001Y&\u000b\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u000b\u0000\u0003l\u0000\u0005\u0001=\u0001U&\f\r&\f\u0000\u00026\u0001\u0000\u0001=\u0001U&\r&\u000e\r&\r\u0000\u0002n\u0000\u0000\u0001=\u0001H&\u000f&\u0010\r&\u000f\u0000\u00024\u0000\u0001\u0001C\u0001H&\u0011\n\u0000\u0004\nmenI\r&\u0011\u0000\u0001m\u0000\u0000\u0001F\u0001G\u0003\u0000\u0001\r&\u0010\u0000\u0002n\u0000\u0000\u0001=\u0001C&\u0012&\u0013\r&\u0012\u0000\u00024\u0000\u0000\u0001>\u0001C&\u0014\n\u0000\u0004\nmenE\r&\u0014\u0000\u0001m\u0000\u0000\u0001A\u0001B\u0003\u0000\u0001\r&\u0013\u0000\u0001o\u0000\u0000\u0001=\u0001>\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&\u000e\u0000\u0002=\u0000\u0003\u0001K\u0001T&\u0015&\u0016\r&\u0015\u0000\u00011\u0000\u0000\u0001L\u0001P\n\u0000\u0004\npnam\r&\u0016\u0000\u0001o\u0000\u0000\u0001Q\u0001S\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u0006\u0000\u0002&\u0017&\u0018\r&\u0017\u0000\u0002=\u0000\u0001\u0001\\\u0001a&\u0019&\u001a\r&\u0019\u0000\u0001o\u0000\u0000\u0001\\\u0001]\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\u001a\u0000\u0001m\u0000\u0000\u0001]\u0001`&\u001b\u000e&\u001b\u0000\u0001&\u001c\u0011&\u001c\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0002&\u0018\u0000\u0002&\u001d&\u001e\r&\u001d\u0000\u0001k\u0000\u0000\u0001d\u0001&\u001f\u0002&\u001f\u0000\u0002& &!\r& \u0000\u0003I\u0000\u0002\u0001d\u0001&\"\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\"\u0000\u0003l\u0000\u0005\u0001d\u0001|&#\r&#\u0000\u00026\u0001\u0000\u0001d\u0001|&$&%\r&$\u0000\u0002n\u0000\u0000\u0001d\u0001o&&&'\r&&\u0000\u00024\u0000\u0001\u0001j\u0001o&(\n\u0000\u0004\nmenI\r&(\u0000\u0001m\u0000\u0000\u0001m\u0001n\u0003\u0000\u0001\r&'\u0000\u0002n\u0000\u0000\u0001d\u0001j&)&*\r&)\u0000\u00024\u0000\u0000\u0001e\u0001j&+\n\u0000\u0004\nmenE\r&+\u0000\u0001m\u0000\u0000\u0001h\u0001i\u0003\u0000\u0001\r&*\u0000\u0001o\u0000\u0000\u0001d\u0001e\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&%\u0000\u0002E\u0000\u0000\u0001r\u0001{&,&-\r&,\u0000\u00011\u0000\u0000\u0001s\u0001w\n\u0000\u0004\npnam\r&-\u0000\u0001o\u0000\u0000\u0001x\u0001z\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&!\u0000\u0002&.\r&.\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u001e\u0000\u0002&\/&0\r&\/\u0000\u0002=\u0000\u0001\u0001\u0001&1&2\r&1\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&2\u0000\u0001m\u0000\u0000\u0001\u0001&3\u000e&3\u0000\u0001&4\u0011&4\u0000\u0014\u0000b\u0000e\u0000g\u0000i\u0000n\u0000s\u0000W\u0000i\u0000t\u0000h\u0002&0\u0000\u0002&5&6\r&5\u0000\u0001k\u0000\u0000\u0001\u0001&7\u0002&7\u0000\u0002&8&9\r&8\u0000\u0003I\u0000\u0002\u0001\u0001&:\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&:\u0000\u0003l\u0000\u0005\u0001\u0001&;\r&;\u0000\u00026\u0001\u0000\u0001\u0001&<&=\r&<\u0000\u0002n\u0000\u0000\u0001\u0001&>&?\r&>\u0000\u00024\u0000\u0001\u0001\u0001&@\n\u0000\u0004\nmenI\r&@\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&?\u0000\u0002n\u0000\u0000\u0001\u0001&A&B\r&A\u0000\u00024\u0000\u0000\u0001\u0001&C\n\u0000\u0004\nmenE\r&C\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&B\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&=\u0000\u0002C\u0000\u0000\u0001\u0001&D&E\r&D\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\npnam\r&E\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&9\u0000\u0002&F\r&F\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&6\u0000\u0002&G&H\r&G\u0000\u0002=\u0000\u0001\u0001\u0001&I&J\r&I\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&J\u0000\u0001m\u0000\u0000\u0001\u0001&K\u000e&K\u0000\u0001&L\u0011&L\u0000\u0010\u0000e\u0000n\u0000d\u0000s\u0000W\u0000i\u0000t\u0000h\u0002&H\u0000\u0002&M\r&M\u0000\u0001k\u0000\u0000\u0001\u0001&N\u0002&N\u0000\u0002&O&P\r&O\u0000\u0003I\u0000\u0002\u0001\u0001&Q\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&Q\u0000\u0003l\u0000\u0005\u0001\u0001&R\r&R\u0000\u00026\u0001\u0000\u0001\u0001&S&T\r&S\u0000\u0002n\u0000\u0000\u0001\u0001&U&V\r&U\u0000\u00024\u0000\u0001\u0001\u0001&W\n\u0000\u0004\nmenI\r&W\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&V\u0000\u0002n\u0000\u0000\u0001\u0001&X&Y\r&X\u0000\u00024\u0000\u0000\u0001\u0001&Z\n\u0000\u0004\nmenE\r&Z\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r&Y\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&T\u0000\u0002D\u0000\u0000\u0001\u0001&[&\\\r&[\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\npnam\r&\\\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&P\u0000\u0002&]\r&]\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002&\u0003\u0000\u0002&^\r&^\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002%\u0000\u0002&_&`\r&_\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002&`\u0000\u0002&a&b\r&a\u0000\u0001L\u0000\u0000\u0001\u0001&c\r&c\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\b\u000bboovtrue\u0002&b\u0000\u0002&d\r&d\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r%?\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&e&f\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&f\u0000\u0003&g\n\u0000\u0004\nerrn\r&g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r%@\u0000\u0003R\u0000\u0000\u0001\u0002\u0005&h&i\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&h\u0000\u0002b\u0000\u0000\u0001\u0002\u0004&j&k\r&j\u0000\u0002b\u0000\u0000\u0001\u0002\u0002&l&m\r&l\u0000\u0002b\u0000\u0000\u0001\u0001&n&o\r&n\u0000\u0002b\u0000\u0000\u0001\u0001&p&q\r&p\u0000\u0002b\u0000\u0000\u0001\u0001&r&s\r&r\u0000\u0001m\u0000\u0000\u0001\u0001&t\u000e&t\u0000\u0001&u\u0011&u\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000_\r&s\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&q\u0000\u0001m\u0000\u0000\u0001\u0001&v\u000e&v\u0000\u0001&w\u0011&w\u0000\u0006\u0000_\u0000 \u0000'\r&o\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&m\u0000\u0001m\u0000\u0000\u0001\u0002\u0001&x\u000e&x\u0000\u0001&y\u0011&y\u0000\u001a\u0000'\u0000 \u0000i\u0000n\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000-\u0000 \r&k\u0000\u0001o\u0000\u0000\u0002\u0002\u0002\u0003\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&i\u0000\u0003~&z}\n~\u0000\u0004\nerrn\r&z\u0000\u0001o\u0000\u0000\u0001\u0001|\u000b|\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006}\u0000\u0000\u000f%=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002G\u0000\u0000\u0002$\u0000\u0002&{&|\r&{\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002&|\u0000\u0002&}&~\r&}\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000xwv\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002&~\u0000\u0002&&\r&\u0000\u0002i\u0000\u0000\u0000\u0000&&\r&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000u&t\u000bu\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u0002&\u0000\u0002&&\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0002&\u0000\u0002&r\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002r\u0000\u0000\u0002t\u0000\u0000\r&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000,&\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p&&\u0001p\u0000\u0000\f&\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e&\u0000\u0001&\u0011&\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002&\u0000\u0002&l\r&\u0000\u0002w\u0000\u0000\u0000\u0000\u0000,&&\r&\u0000\u0003Q\u0000\u0000\u0000\u0002\u0000,&&&\r&\u0000\u0001k\u0000\u0000\u0000\u0005\u0000\u0018&\u0002&\u0000\u0002&&\r&\u0000\u0003I\u0000\u0000\u0000\u0005\u0000\u0012k&j\u000bk\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u0002&\u0000\u0002&i\r&\u0000\u0001K\u0000\u0000\u0000\u0006\u0000\u000e&\u0006&\u0000\u0003h&&\u000bh\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\r&\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bg\u000bg\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u0006&\u0000\u0003f&&\u000bf\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&\u0000\u0001o\u0000\u0000\u0000\t\u0000\ne\u000be\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0006&\u0000\u0003d&c\u000bd\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\r&\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f&\u000e&\u0000\u0001&\u0011&\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0006c\u0000\u0000\u0002i\u0000\u0000\u0002j\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0016&\r&\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015b\nb\u0000\u0004\nrslt\u0002&\u0000\u0002&a\r&\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002a\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000]&&\n]\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003[&Z\n[\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006Z\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000 \u0000,X&&\nX\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0002b\u0000\u0000\u0000$\u0000+&&\r&\u0000\u0002b\u0000\u0000\u0000$\u0000)&&\r&\u0000\u0002b\u0000\u0000\u0000$\u0000'&&\r&\u0000\u0001m\u0000\u0000\u0000$\u0000%&\u000e&\u0000\u0001&\u0011&\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r&\u0000\u0001o\u0000\u0000\u0000%\u0000&W\u000bW\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\r&\u0000\u0001m\u0000\u0000\u0000'\u0000(&\u000e&\u0000\u0001&\u0011&\u0000\u001a\u0000'\u0000 \u0000i\u0000n\u0000 \u0000p\u0000o\u0000p\u0000u\u0000p\u0000 \u0000-\u0000 \r&\u0000\u0001o\u0000\u0000\u0000)\u0000*V\u000bV\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003U&T\nU\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\"\u0000#S\u000bS\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006T\u0000\u0000\u000f&\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002l\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002i\u0000\u0000\u0000\u0000&&\r&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000LKJ\u000bL\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u0002K\u0000\u0000\u0002J\u0000\u0000\r&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000&\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I&&\u0001I\u0000\u0000\f&\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e&\u0000\u0001&\u0011&\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005E&D\nE\u0000\u0018.JonspClpnull\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001&\u000e&\u0000\u0001&\u0011&\u0000\u0000\u0002D\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t&&\r&\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007C\nC\u0000\b\u000bboovfals\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\n\u0000\nA@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0002O\u0000\u0000\u0000\n\u0000&&\r&\u0000\u0002O\u0000\u0000\u0000\u000e\u0000&&\r&\u0000\u0001k\u0000\u0000\u0000\u0015\u0000&\u0002&\u0000\u0002&&\r&\u0000\u0002n\u0000\u0001\u0000\u0015\u0000\u001a&&\r&\u0000\u0003I\u0000\u0000\u0000\u0016\u0000\u001a>=<\u000b>\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002=\u0000\u0000\u0002<\u0000\u0000\r&\u0000\u0000f\u0000\u0000\u0000\u0015\u0000\u0016\u0002&\u0000\u0002&&\r&\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002&\u0000\u0002&&\r&\u0000\u0003Q\u0000\u0000\u0000\u001b\u0000L&&&\r&\u0000\u0003I\u0000\u0002\u0000\u001e\u000088&7\n8\u0000\u0018.prcsclicnull\u0000\u0000uiel\r&\u0000\u0003l\u0000\u0005\u0000\u001e\u00004&65\r&\u0000\u00026\u0001\u0000\u0000\u001e\u00004&&\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000+&&\r&\u0000\u00024\u0000\u0001\u0000(\u0000+4&\n4\u0000\u0004\nmenI\r&\u0000\u0001m\u0000\u0000\u0000)\u0000*3\u00033\u0000\u0001\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000(&&\r&\u0000\u00024\u0000\u0000\u0000%\u0000(2&\n2\u0000\u0004\nmenE\r&\u0000\u0001m\u0000\u0000\u0000&\u0000'1\u00031\u0000\u0001\r&\u0000\u0002n\u0000\u0000\u0000\u001e\u0000%&&\r&\u0000\u00024\u0000\u0000\u0000\"\u0000%0&\n0\u0000\u0004\nmbri\r&\u0000\u0001m\u0000\u0000\u0000#\u0000$&\u000e&\u0000\u0001&\u0011&\u0000\b\u0000E\u0000d\u0000i\u0000t\r&\u0000\u00024\u0000\u0000\u0000\u001e\u0000\"\/&\n\/\u0000\u0004\nmbar\r&\u0000\u0001m\u0000\u0000\u0000 \u0000!.\u0003.\u0000\u0001\r&\u0000\u0002=\u0000\u0003\u0000,\u00003&&\r&\u0000\u00011\u0000\u0000\u0000-\u0000\/-\n-\u0000\u0004\npnam\r&\u0000\u0001m\u0000\u0000\u00000\u00002&\u000e&\u0000\u0001&\u0011&\u0000\u0014\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u00016\u0000\u0000\u00015\u0000\u0000\u00027\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000,&&\n,\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003*&)\n*\u0000\u0004\nerrn\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006)\u0000\u0000\r&\u0000\u0003R\u0000\u0000\u0000@\u0000L'&&\n'\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r&\u0000\u0002b\u0000\u0000\u0000F\u0000K&&\r&\u0000\u0001m\u0000\u0000\u0000F\u0000I&\u000e&\u0000\u0001&\u0011&\u0000R\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000A\u0000l\u0000l\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r&\u0000\u0001o\u0000\u0000\u0000I\u0000J&\u000b&\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006&\u0000\u0003%'\u0000$\n%\u0000\u0004\nerrn\r'\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E#\u000b#\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006$\u0000\u0000\u0002&\u0000\u0002'\u0001'\u0002\r'\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002'\u0002\u0000\u0002'\u0003'\u0004\r'\u0003\u0000\u0003Q\u0000\u0000\u0000M\u0000y'\u0005'\u0006'\u0007\r'\u0005\u0000\u0003I\u0000\u0002\u0000P\u0000e\u001f'\b\u001e\n\u001f\u0000\u0018.prcsclicnull\u0000\u0000uiel\r'\b\u0000\u0003l\u0000\u0005\u0000P\u0000a'\t\u001d\u001c\r'\t\u0000\u0002n\u0000\u0000\u0000P\u0000a'\n'\u000b\r'\n\u0000\u00024\u0000\u0000\u0000\\\u0000a\u001b'\f\n\u001b\u0000\u0004\nmenI\r'\f\u0000\u0001m\u0000\u0000\u0000]\u0000`'\r\u000e'\r\u0000\u0001'\u000e\u0011'\u000e\u0000\b\u0000C\u0000o\u0000p\u0000y\r'\u000b\u0000\u0002n\u0000\u0000\u0000P\u0000\\'\u000f'\u0010\r'\u000f\u0000\u00024\u0000\u0000\u0000Y\u0000\\\u001a'\u0011\n\u001a\u0000\u0004\nmenE\r'\u0011\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0019\u0003\u0019\u0000\u0001\r'\u0010\u0000\u0002n\u0000\u0000\u0000P\u0000Y'\u0012'\u0013\r'\u0012\u0000\u00024\u0000\u0000\u0000T\u0000Y\u0018'\u0014\n\u0018\u0000\u0004\nmbri\r'\u0014\u0000\u0001m\u0000\u0000\u0000U\u0000X'\u0015\u000e'\u0015\u0000\u0001'\u0016\u0011'\u0016\u0000\b\u0000E\u0000d\u0000i\u0000t\r'\u0013\u0000\u00024\u0000\u0000\u0000P\u0000T\u0017'\u0017\n\u0017\u0000\u0004\nmbar\r'\u0017\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0016\u0003\u0016\u0000\u0001\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001e\u0000\u0000\r'\u0006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0015'\u0018'\u0019\n\u0015\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0019\u0000\u0003\u0013'\u001a\u0012\n\u0013\u0000\u0004\nerrn\r'\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0012\u0000\u0000\r'\u0007\u0000\u0003R\u0000\u0000\u0000m\u0000y\u0010'\u001b'\u001c\n\u0010\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u001b\u0000\u0002b\u0000\u0000\u0000s\u0000x'\u001d'\u001e\r'\u001d\u0000\u0001m\u0000\u0000\u0000s\u0000v'\u001f\u000e'\u001f\u0000\u0001' \u0011' \u0000F\u0000U\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000C\u0000o\u0000p\u0000y\u0000'\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000-\u0000 \r'\u001e\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000f\u000b\u000f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u001c\u0000\u0003\u000e'!\r\n\u000e\u0000\u0004\nerrn\r'!\u0000\u0001o\u0000\u0000\u0000q\u0000r\f\u000b\f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\r\u0000\u0000\u0002'\u0004\u0000\u0002'\"'#\r'\"\u0000\u0003l\u0000\u0002\u0000z\u0000z\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002'#\u0000\u0002'$'%\r'$\u0000\u0003l\u0000\u0002\u0000z\u0000z\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002'%\u0000\u0002'&''\r'&\u0000\u0002U\u0000\u0000\u0000z\u0000'(')\r'(\u0000\u0001k\u0000\u0000\u0000\u0000'*\u0002'*\u0000\u0002'+',\r'+\u0000\u0003Q\u0000\u0000\u0000\u0000'-'.'\/\r'-\u0000\u0001k\u0000\u0000\u0000\u0000'0\u0002'0\u0000\u0002'1'2\r'1\u0000\u0003l\u0000\u0001\u0000\u0000\u0005'3'4\u0001\u0005\u0000\u0000\f'3\u0000\u0000 We set the clipboard to an empty string. Once utf8 is no longer in it (or isn't empty), we must have picked up the objects copied above.\u0000\u0002\u0000\u0000\u000e'4\u0000\u0001'5\u0011'5\u0001\u0012\u0000 \u0000W\u0000e\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000i\u0000p\u0000b\u0000o\u0000a\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000.\u0000 \u0000O\u0000n\u0000c\u0000e\u0000 \u0000u\u0000t\u0000f\u00008\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000i\u0000n\u0000 \u0000i\u0000t\u0000 \u0000(\u0000o\u0000r\u0000 \u0000i\u0000s\u0000n\u0000'\u0000t\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000)\u0000,\u0000 \u0000w\u0000e\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000p\u0000i\u0000c\u0000k\u0000e\u0000d\u0000 \u0000u\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000s\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000d\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000.\u0002'2\u0000\u0002'6'7\r'6\u0000\u0001e\u0000\u0000\u0000\u0000'8\r'8\u0000\u0003I\u0000\u0002\u0000\u0000\u0004\u0003'9\n\u0004\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001\u0003\u0000\u0000\u0006'9\u0000\u0003\u0002':\u0001\n\u0002\u0000\u0004\nrtyp\r':\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\u0004\nutf8\u0006\u0001\u0000\u0000\u0002'7\u0000\u0002';\r';\u0000\u0004Z\u0000\u0000\u0000\u0000'<'=\r'<\u0000\u0002?\u0000\u0001\u0000\u0000'>'?\r'>\u0000\u0002n\u0000\u0000\u0000\u0000'@'A\r'@\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nleng\r'A\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\r'?\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r'=\u0000\u0001k\u0000\u0000\u0000\u0000'B\u0002'B\u0000\u0002'C'D\r'C\u0000\u0002r\u0000\u0000\u0000\u0000'E'F\r'E\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r'F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'D\u0000\u0002'G\r'G\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r'.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r'\/\u0000\u0001k\u0000\u0000\u0000\u0000'H\u0002'H\u0000\u0002'I'J\r'I\u0000\u0002r\u0000\u0000\u0000\u0000'K'L\r'K\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r'L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'J\u0000\u0002'M\r'M\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002',\u0000\u0002'N\r'N\u0000\u0003I\u0000\u0002\u0000\u0000'O\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'O\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r')\u0000\u0001m\u0000\u0000\u0000}\u0000\u0003\u0000\n\u0002''\u0000\u0002'P\r'P\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r&\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0012'Q\n\u0000\u0004\npcap\r'Q\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011'R\u000e'R\u0000\u0001'S\u0011'S\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r&\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b'T\u000f'T\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002&\u0000\u0002'U'V\r'U\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'V\u0000\u0002'W'X\r'W\u0000\u0001L\u0000\u0000\u0000\u0000'Y\r'Y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u0002'X\u0000\u0002'Z\r'Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002&\u0000\u0002'['\\\r'[\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\\\u0000\u0002']'^\r']\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'^\u0000\u0002'_'`\r'_\u0000\u0002i\u0000\u0000\u0000\u0000'a'b\r'a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000'c\u000b\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u0002'c\u0000\u0002'd'e\r'd\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002'e\u0000\u0002'f\r'f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0002\u0000\u0000\u0002\u0000\u0000\r'b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000@'g\u0002'g\u0000\u0002'h'i\r'h\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000'j'k\u0001\u0000\u0000\f'j\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e'k\u0000\u0001'l\u0011'l\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002'i\u0000\u0002'm'n\r'm\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'n\u0000\u0002'o\r'o\u0000\u0002w\u0000\u0000\u0000\u0000\u0000@'p'q\r'p\u0000\u0003Q\u0000\u0000\u0000\u0002\u0000@'r's't\r'r\u0000\u0001k\u0000\u0000\u0000\u0005\u0000,'u\u0002'u\u0000\u0002'v'w\r'v\u0000\u0004Z\u0000\u0000\u0000\u0005\u0000''x'y\r'x\u0000\u0002>\u0001\u0000\u0000\u0005\u0000\b'z'{\r'z\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'{\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nnull\r'y\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000#'|'}'~\r'|\u0000\u0002>\u0000\u0001\u0000\u000b\u0000\u0010''\r'\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e''\r'\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nvalL\r'\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\r'\u0000\u0003l\u0000\u0005\u0000\u000e\u0000\u000f'\r'\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0001\u0000\u0000\u0001\u0000\u0000\r'}\u0000\u0001k\u0000\u0000\u0000\u0013\u0000\u001e'\u0002'\u0000\u0002''\r'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018''\r'\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovtrue\r'\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000''\r'\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\nfocu\r'\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002'\u0000\u0002'\r'\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e''\r'\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000''\r'\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nvalL\r'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u0002\u0000\u0000\u0002\u0000\u0000\r'~\u0000\u0003l\u0000\u0001\u0000!\u0000#'''\r'\u0000\u0001L\u0000\u0000\u0000!\u0000#'\r'\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\b\u000bboovfals\f'\u0000\u001e\u0000\u0018 did not need to change.\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u00000\u0000 \u0000d\u0000i\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0002'w\u0000\u0002''\r'\u0000\u0001L\u0000\u0000\u0000(\u0000*'\r'\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\b\u000bboovtrue\u0002'\u0000\u0002'\r'\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r's\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000''\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0000\u0003'\n\u0000\u0004\nerrn\r'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r't\u0000\u0003R\u0000\u0000\u00004\u0000@''\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r'\u0000\u0002b\u0000\u0000\u00008\u0000?''\r'\u0000\u0002b\u0000\u0000\u00008\u0000=''\r'\u0000\u0002b\u0000\u0000\u00008\u0000;''\r'\u0000\u0001m\u0000\u0000\u00008\u00009'\u000e'\u0000\u0001'\u0011'\u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000'\r'\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\r'\u0000\u0001m\u0000\u0000\u0000;\u0000<'\u000e'\u0000\u0001'\u0011'\u0000&\u0000'\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000i\u0000e\u0000l\u0000d\u0000 \u0000-\u0000 \r'\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006'\u0000\u0003'\n\u0000\u0004\nerrn\r'\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u000f'q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002'`\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0002i\u0000\u0000\u0000\u0000''\r'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0000\u0000\u0002\u0000\u0000\r'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000E'\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000''\u0001\u0000\u0000\f'\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002'\r'\u0000\u0002O\u0000\u0000\u0000\u0000\u0000E''\r'\u0000\u0002O\u0000\u0000\u0000\u0004\u0000D''\r'\u0000\u0004Z\u0000\u0000\u0000\u000b\u0000C''\r'\u0000\u0002>\u0001\u0000\u0000\u000b\u0000\u0010''\r'\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npisf\r'\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\n\u0000\b\u000bboovtrue\r'\u0000\u0001k\u0000\u0000\u0000\u0013\u0000?'\u0002'\u0000\u0002''\r'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018''\r'\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovtrue\r'\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0017\n\u0000\u0004\npisf\u0002'\u0000\u0002''\r'\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e'\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u001f\u0000\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f''\u0001\u0000\u0000\f'\u0000)\u0000#close FMEmpower window if it's open\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000F\u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000F\u0000M\u0000E\u0000m\u0000p\u0000o\u0000w\u0000e\u0000r\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000o\u0000p\u0000e\u0000n\u0002'\u0000\u0002'\r'\u0000\u0004Z\u0000\u0000\u0000\u001f\u0000?''\r'\u0000\u0002=\u0000\u0001\u0000\u001f\u0000'''\r'\u0000\u0002n\u0000\u0000\u0000\u001f\u0000%''\r'\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\npnam\r'\u0000\u00024\u0000\u0000\u0000\u001f\u0000#'\n\u0000\u0004\ncwin\r'\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r'\u0000\u0001m\u0000\u0000\u0000%\u0000&'\u000e'\u0000\u0001'\u0011'\u0000$\u00002\u0000e\u0000m\u0000p\u0000o\u0000w\u0000e\u0000r\u0000F\u0000M\u0000 \u0000T\u0000o\u0000o\u0000l\u0000b\u0000o\u0000x\r'\u0000\u0001k\u0000\u0000\u0000*\u0000;'\u0002'\u0000\u0002''\r'\u0000\u0003I\u0000\u0002\u0000*\u00005'\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r'\u0000\u0002n\u0000\u0000\u0000*\u00001''\r'\u0000\u00024\u0000\u0000\u0000.\u00001'\n\u0000\u0004\nbutT\r'\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0003\u0000\u0001\r'\u0000\u00024\u0000\u0000\u0000*\u0000.'\n\u0000\u0004\ncwin\r'\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0000\u0001\u0002\u0000\u0000\u0002'\u0000\u0002'\r'\u0000\u0003I\u0000\u0002\u00006\u0000;'\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r'\u0000\u0001m\u0000\u0000\u00006\u00007\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b'\n\u0000\u0004\npcap\r'\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007'\u000e'\u0000\u0001'\u0011'\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r'\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001'\u000f'\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002'\u0000\u0002''\r'\u0000\u0002i\u0000\u0000\u0000\u0000''\r'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000zyx\u000bz\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u0002y\u0000\u0000\u0002x\u0000\u0000\r'\u0000\u0001k\u0000\u0000\u0000\u0000\u00003'\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000w''\u0001w\u0000\u0000\f'\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e'\u0000\u0001'\u0011'\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002'\u0000\u0002''\r'\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002'\u0000\u0002's\r'\u0000\u0002O\u0000\u0000\u0000\u0000\u00003''\r'\u0000\u0002O\u0000\u0000\u0000\u0004\u00002''\r'\u0000\u0001k\u0000\u0000\u0000\u000b\u00001'\u0002'\u0000\u0002'(\u0000\r'\u0000\u0002n\u0000\u0001\u0000\u000b\u0000\u0010(\u0001(\u0002\r(\u0001\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0010rqp\u000br\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002q\u0000\u0000\u0002p\u0000\u0000\r(\u0002\u0000\u0000f\u0000\u0000\u0000\u000b\u0000\f\u0002(\u0000\u0000\u0002(\u0003o\r(\u0003\u0000\u0003Q\u0000\u0000\u0000\u0011\u00001(\u0004(\u0005n\r(\u0004\u0000\u0003I\u0000\u0002\u0000\u0014\u0000(m(\u0006l\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(\u0006\u0000\u0002n\u0000\u0000\u0000\u0014\u0000$(\u0007(\b\r(\u0007\u0000\u00024\u0000\u0000\u0000!\u0000$k(\t\nk\u0000\u0004\nbutT\r(\t\u0000\u0001m\u0000\u0000\u0000\"\u0000#j\u0003j\u0000\u0001\r(\b\u0000\u0003l\u0000\u0005\u0000\u0014\u0000!(\nih\r(\n\u0000\u00026\u0001\u0000\u0000\u0014\u0000!(\u000b(\f\r(\u000b\u0000\u00024\u0000\u0001\u0000\u0014\u0000\u0018g(\r\ng\u0000\u0004\ncwin\r(\r\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017f\u0003f\u0000\u0001\r(\f\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 (\u000e(\u000f\r(\u000e\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001ce\ne\u0000\u0004\npnam\r(\u000f\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f(\u0010\u000e(\u0010\u0000\u0001(\u0011\u0011(\u0011\u0000\u0016\u0000D\u0000a\u0000t\u0000a\u0000 \u0000V\u0000i\u0000e\u0000w\u0000e\u0000r\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002l\u0000\u0000\r(\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000dcb\nd\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001c\u0000\u0000\u0002b\u0000\u0000\u0001n\u0000\u0000\u0002o\u0000\u0000\r'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\ba(\u0012\na\u0000\u0004\npcap\r(\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007(\u0013\u000e(\u0013\u0000\u0001(\u0014\u0011(\u0014\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r'\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001(\u0015\u000f(\u0015\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002s\u0000\u0000\u0002'\u0000\u0002(\u0016(\u0017\r(\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002(\u0017\u0000\u0002(\u0018(\u0019\r(\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002(\u0019\u0000\u0002(\u001a(\u001b\r(\u001a\u0000\u0002i\u0000\u0000\u0000\u0000(\u001c(\u001d\r(\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000ZYX\u000bZ\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002Y\u0000\u0000\u0002X\u0000\u0000\r(\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000r(\u001e\u0002(\u001e\u0000\u0002(\u001f( \r(\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W(!(\"\u0001W\u0000\u0000\f(!\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\"\u0000\u0001(#\u0011(#\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002( \u0000\u0002($(%\r($\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002(%\u0000\u0002(&S\r(&\u0000\u0002O\u0000\u0000\u0000\u0000\u0000r('((\r('\u0000\u0002O\u0000\u0000\u0000\u0004\u0000q()(*\r()\u0000\u0001k\u0000\u0000\u0000\u000b\u0000p(+\u0002(+\u0000\u0002(,(-\r(,\u0000\u0002n\u0000\u0001\u0000\u000b\u0000\u0010(.(\/\r(.\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0010RQP\u000bR\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002Q\u0000\u0000\u0002P\u0000\u0000\r(\/\u0000\u0000f\u0000\u0000\u0000\u000b\u0000\f\u0002(-\u0000\u0002(0(1\r(0\u0000\u0003l\u0000\u0001\u0000\u0011\u0000\u0011O(2(3\u0001O\u0000\u0000\f(2\u0000I\u0000C try the click twice in case the first only brings window to front.\u0000\u0002\u0000\u0000\u000e(3\u0000\u0001(4\u0011(4\u0000\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000t\u0000w\u0000i\u0000c\u0000e\u0000 \u0000i\u0000n\u0000 \u0000c\u0000a\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000o\u0000n\u0000l\u0000y\u0000 \u0000b\u0000r\u0000i\u0000n\u0000g\u0000s\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000t\u0000o\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000.\u0002(1\u0000\u0002(5(6\r(5\u0000\u0003Q\u0000\u0000\u0000\u0011\u0000.(7(8N\r(7\u0000\u0002r\u0000\u0000\u0000\u0014\u0000%(9(:\r(9\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015M\u0003M\u0000\u0001\r(:\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000(;(<\r(;\u0000\u00011\u0000\u0000\u0000\"\u0000$L\nL\u0000\u0004\npidx\r(<\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\"(=KJ\r(=\u0000\u00026\u0001\u0000\u0000\u0015\u0000\"(>(?\r(>\u0000\u00024\u0000\u0001\u0000\u0015\u0000\u0019I(@\nI\u0000\u0004\ncwin\r(@\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018H\u0003H\u0000\u0001\r(?\u0000\u0002=\u0000\u0003\u0000\u001a\u0000!(A(B\r(A\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001dG\nG\u0000\u0004\npnam\r(B\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 (C\u000e(C\u0000\u0001(D\u0011(D\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001K\u0000\u0000\u0001J\u0000\u0000\r(8\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000FED\nF\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001E\u0000\u0000\u0002D\u0000\u0000\u0001N\u0000\u0000\u0002(6\u0000\u0002(E(F\r(E\u0000\u0003Q\u0000\u0000\u0000\/\u0000O(G(HC\r(G\u0000\u0003I\u0000\u0002\u00002\u0000FB(IA\nB\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(I\u0000\u0002n\u0000\u0000\u00002\u0000B(J(K\r(J\u0000\u00024\u0000\u0000\u0000?\u0000B@(L\n@\u0000\u0004\nbutT\r(L\u0000\u0001m\u0000\u0000\u0000@\u0000A?\u0003?\u0000\u0001\r(K\u0000\u0003l\u0000\u0005\u00002\u0000?(M>=\r(M\u0000\u00026\u0001\u0000\u00002\u0000?(N(O\r(N\u0000\u00024\u0000\u0001\u00002\u00006<(P\n<\u0000\u0004\ncwin\r(P\u0000\u0001m\u0000\u0000\u00004\u00005;\u0003;\u0000\u0001\r(O\u0000\u0002=\u0000\u0003\u00007\u0000>(Q(R\r(Q\u0000\u00011\u0000\u0000\u00008\u0000::\n:\u0000\u0004\npnam\r(R\u0000\u0001m\u0000\u0000\u0000;\u0000=(S\u000e(S\u0000\u0001(T\u0011(T\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002A\u0000\u0000\r(H\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000987\n9\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00018\u0000\u0000\u00027\u0000\u0000\u0001C\u0000\u0000\u0002(F\u0000\u0002(U6\r(U\u0000\u0003Q\u0000\u0000\u0000P\u0000p(V(W5\r(V\u0000\u0003I\u0000\u0002\u0000S\u0000g4(X3\n4\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(X\u0000\u0002n\u0000\u0000\u0000S\u0000c(Y(Z\r(Y\u0000\u00024\u0000\u0000\u0000`\u0000c2([\n2\u0000\u0004\nbutT\r([\u0000\u0001m\u0000\u0000\u0000a\u0000b1\u00031\u0000\u0001\r(Z\u0000\u0003l\u0000\u0005\u0000S\u0000`(\\0\/\r(\\\u0000\u00026\u0001\u0000\u0000S\u0000`(](^\r(]\u0000\u00024\u0000\u0001\u0000S\u0000W.(_\n.\u0000\u0004\ncwin\r(_\u0000\u0001m\u0000\u0000\u0000U\u0000V-\u0003-\u0000\u0001\r(^\u0000\u0002=\u0000\u0003\u0000X\u0000_(`(a\r(`\u0000\u00011\u0000\u0000\u0000Y\u0000[,\n,\u0000\u0004\npnam\r(a\u0000\u0001m\u0000\u0000\u0000\\\u0000^(b\u000e(b\u0000\u0001(c\u0011(c\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u00010\u0000\u0000\u0001\/\u0000\u0000\u00023\u0000\u0000\r(W\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000+*)\n+\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001*\u0000\u0000\u0002)\u0000\u0000\u00015\u0000\u0000\u00026\u0000\u0000\r(*\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b((d\n(\u0000\u0004\npcap\r(d\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007(e\u000e(e\u0000\u0001(f\u0011(f\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r((\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001(g\u000f(g\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002S\u0000\u0000\u0002(\u001b\u0000\u0002(h(i\r(h\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000'&%\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002(i\u0000\u0002(j(k\r(j\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002(k\u0000\u0002(l(m\r(l\u0000\u0002i\u0000\u0000\u0000\u0000(n(o\r(n\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000! \u001f\u000b!\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u0002 \u0000\u0000\u0002\u001f\u0000\u0000\r(o\u0000\u0001k\u0000\u0000\u0000\u0000\u0000h(p\u0002(p\u0000\u0002(q(r\r(q\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001e(s(t\u0001\u001e\u0000\u0000\f(s\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e(t\u0000\u0001(u\u0011(u\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002(r\u0000\u0002(v(w\r(v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002(w\u0000\u0002(x(y\r(x\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000f(z({(|\r(z\u0000\u0001k\u0000\u0000\u0000\u0003\u0000R(}\u0002(}\u0000\u0002(~(\r(~\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\b\u001a\u0019\u0018\u000b\u001a\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0002(\u0000\u0002(\u0017\r(\u0000\u0002O\u0000\u0000\u0000\t\u0000R((\r(\u0000\u0002O\u0000\u0000\u0000\r\u0000Q((\r(\u0000\u0001k\u0000\u0000\u0000\u0014\u0000P(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002n\u0000\u0001\u0000\u0014\u0000\u0019((\r(\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u0019\u0013\u0012\u0011\u000b\u0013\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0012\u0000\u0000\u0002\u0011\u0000\u0000\r(\u0000\u0000f\u0000\u0000\u0000\u0014\u0000\u0015\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001a\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0004Z\u0000\u0000\u0000\u001a\u0000M((\r\f\r(\u0000\u0001H\u0000\u0000\u0000\u001a\u0000,(\r(\u0000\u0003l\u0000\u0005\u0000\u001a\u0000+(\u000b\n\r(\u0000\u0003I\u0000\u0002\u0000\u001a\u0000+\t(\b\n\t\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0003l\u0000\u0005\u0000\u001a\u0000'(\u0007\u0006\r(\u0000\u00026\u0001\u0000\u0000\u001a\u0000'((\r(\u0000\u00024\u0000\u0001\u0000\u001a\u0000\u001e\u0005(\n\u0005\u0000\u0004\ncwin\r(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0004\u0003\u0004\u0000\u0001\r(\u0000\u0002E\u0000\u0000\u0000\u001f\u0000&((\r(\u0000\u00011\u0000\u0000\u0000 \u0000\"\u0003\n\u0003\u0000\u0004\npnam\r(\u0000\u0001m\u0000\u0000\u0000#\u0000%(\u000e(\u0000\u0001(\u0011(\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\b\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\r(\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0002(\u0001\n\u0002\u0000\u0018.prcsclicnull\u0000\u0000uiel\r(\u0000\u0003l\u0000\u0005\u0000\/\u0000E(\u0000\r(\u0000\u00026\u0001\u0000\u0000\/\u0000E((\r(\u0000\u0002n\u0000\u0000\u0000\/\u0000<((\r(\u0000\u00024\u0000\u0001\u00009\u0000<(\n\u0000\u0004\nmenI\r(\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0000\u0001\r(\u0000\u0002n\u0000\u0000\u0000\/\u00009((\r(\u0000\u00024\u0000\u0000\u00006\u00009(\n\u0000\u0004\nmenE\r(\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0001\r(\u0000\u0002n\u0000\u0000\u0000\/\u00006((\r(\u0000\u00024\u0000\u0000\u00003\u00006(\n\u0000\u0004\nmbri\r(\u0000\u0001m\u0000\u0000\u00004\u00005(\u000e(\u0000\u0001(\u0011(\u0000\b\u0000V\u0000i\u0000e\u0000w\r(\u0000\u00024\u0000\u0000\u0000\/\u00003(\n\u0000\u0004\nmbar\r(\u0000\u0001m\u0000\u0000\u00001\u00002\u0003\u0000\u0001\r(\u0000\u0002=\u0000\u0003\u0000=\u0000D((\r(\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npnam\r(\u0000\u0001m\u0000\u0000\u0000A\u0000C(\u000e(\u0000\u0001(\u0011(\u0000\u0012\u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0000\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0001L\u0000\u0000\u0000N\u0000P(\r(\u0000\u0001m\u0000\u0000\u0000N\u0000O\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r(\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011(\n\u0000\u0004\npcap\r(\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010(\u000e(\u0000\u0001(\u0011(\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r(\u0000\u0001m\u0000\u0000\u0000\t\u0000\n(\u000f(\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0017\u0000\u0000\r({\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r(|\u0000\u0003R\u0000\u0000\u0000Z\u0000f((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0002b\u0000\u0000\u0000`\u0000e((\r(\u0000\u0001m\u0000\u0000\u0000`\u0000c(\u000e(\u0000\u0001(\u0011(\u00004\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0000 \u0000-\u0000 \r(\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(y\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(m\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002i\u0000\u0000\u0000\u0000((\r(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u0002\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000((\u0001\u0000\u0000\f(\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\u0000\u0001(\u0011(\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b(((\r(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b(\u0002(\u0000\u0002((\r(\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t(\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002(\u0000\u0002(\r(\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005(\u000e(\u0000\u0001(\u0011(\u0000\f\u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b((\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r(\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a((\r(\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018(\u000e(\u0000\u0001(\u0011(\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r(\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006(\u0000\u0003(\n\u0000\u0004\nerrn\r(\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002(\r(\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0002i\u0000\u0000\u0000\u0000((\r(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u0002\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d(\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000((\u0001\u0000\u0000\f(\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e(\u0000\u0001(\u0011(\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002(\u0000\u0002((\r(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002(\u0000\u0002((\r(\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b(()\u0000\r(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b)\u0001\u0002)\u0001\u0000\u0002)\u0002)\u0003\r)\u0002\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t)\u0004\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002)\u0004\u0000\u0002)\u0005\r)\u0005\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005)\u0006\u000e)\u0006\u0000\u0001)\u0007\u0011)\u0007\u0000\b\u0000F\u0000i\u0000n\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002)\u0003\u0000\u0002)\b\r)\b\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r(\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000)\t)\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\n\u0000\u0003)\u000b\n\u0000\u0004\nerrn\r)\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r)\u0000\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b)\f)\r\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\f\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a)\u000e)\u000f\r)\u000e\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018)\u0010\u000e)\u0010\u0000\u0001)\u0011\u0011)\u0011\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r)\u000f\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\r\u0000\u0003)\u0012\n\u0000\u0004\nerrn\r)\u0012\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002(\u0000\u0002)\u0013)\u0014\r)\u0013\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0014\u0000\u0002)\u0015\r)\u0015\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002(\u0000\u0002)\u0016)\u0017\r)\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0017\u0000\u0002)\u0018)\u0019\r)\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0019\u0000\u0002)\u001a)\u001b\r)\u001a\u0000\u0002i\u0000\u0000\u0000\u0000)\u001c)\u001d\r)\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002\u0000\u0000\u0002\u0000\u0000\r)\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001d)\u001e\u0002)\u001e\u0000\u0002)\u001f) \r)\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000)!)\"\u0001\u0000\u0000\f)!\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e)\"\u0000\u0001)#\u0011)#\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002) \u0000\u0002)$)%\r)$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)%\u0000\u0002)&)'\r)&\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u001b)()))*\r)(\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u000b)+\u0002)+\u0000\u0002),)-\r),\u0000\u0003I\u0000\u0000\u0000\u0003\u0000\t).\u000b\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002).\u0000\u0002)\/\r)\/\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005)0\u000e)0\u0000\u0001)1\u0011)1\u0000\f\u0000L\u0000a\u0000y\u0000o\u0000u\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\u0002)-\u0000\u0002)2\r)2\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r))\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000)3)4\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)4\u0000\u0003)5\n\u0000\u0004\nerrn\r)5\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r)*\u0000\u0003R\u0000\u0000\u0000\u0013\u0000\u001b)6)7\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)6\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a)8)9\r)8\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018):\u000e):\u0000\u0001);\u0011);\u0000B\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000e\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000i\u0000n\u0000 \u0000B\u0000r\u0000o\u0000w\u0000s\u0000e\u0000 \u0000M\u0000o\u0000d\u0000e\u0000 \u0000-\u0000 \r)9\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)7\u0000\u0003)<\n\u0000\u0004\nerrn\r)<\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016~\u000b~\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002)'\u0000\u0002)=}\r)=\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002}\u0000\u0000\u0002)\u001b\u0000\u0002)>)?\r)>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000yxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002)?\u0000\u0002)@)A\r)@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002)A\u0000\u0002)B)C\r)B\u0000\u0002i\u0000\u0000\u0000\u0000)D)E\r)D\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000s)Fr\u000bs\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u0002)F\u0000\u0002)Gq\r)G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u0002q\u0000\u0000\u0002r\u0000\u0000\r)E\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)H\u0002)H\u0000\u0002)I)J\r)I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000o)K)L\u0001o\u0000\u0000\f)K\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e)L\u0000\u0001)M\u0011)M\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002)J\u0000\u0002)N)O\r)N\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002)O\u0000\u0002)Pk\r)P\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000)Q)R)S\r)Q\u0000\u0002O\u0000\u0000\u0000\u0003\u0000r)T)U\r)T\u0000\u0002O\u0000\u0000\u0000\u0007\u0000q)V)W\r)V\u0000\u0001k\u0000\u0000\u0000\u000e\u0000p)X\u0002)X\u0000\u0002)Y)Z\r)Y\u0000\u0002n\u0000\u0001\u0000\u000e\u0000\u0013)[)\\\r)[\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0013jih\u000bj\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002i\u0000\u0000\u0002h\u0000\u0000\r)\\\u0000\u0000f\u0000\u0000\u0000\u000e\u0000\u000f\u0002)Z\u0000\u0002)])^\r)]\u0000\u0002n\u0000\u0001\u0000\u0014\u0000\u0019)_)`\r)_\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u0019gfe\u000bg\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002f\u0000\u0000\u0002e\u0000\u0000\r)`\u0000\u0000f\u0000\u0000\u0000\u0014\u0000\u0015\u0002)^\u0000\u0002)a)b\r)a\u0000\u0003l\u0000\u0002\u0000\u001a\u0000\u001adcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002)b\u0000\u0002)c)d\r)c\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aa)e)f\u0001a\u0000\u0000\f)e\u0000@\u0000: Need to click in upper-left corner of area before pasting\u0000\u0002\u0000\u0000\u000e)f\u0000\u0001)g\u0011)g\u0000t\u0000 \u0000N\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000i\u0000n\u0000 \u0000u\u0000p\u0000p\u0000e\u0000r\u0000-\u0000l\u0000e\u0000f\u0000t\u0000 \u0000c\u0000o\u0000r\u0000n\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000e\u0000a\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000p\u0000a\u0000s\u0000t\u0000i\u0000n\u0000g\u0002)d\u0000\u0002)h)i\r)h\u0000\u0002r\u0000\u0000\u0000\u001a\u0000 )j)k\r)j\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001e`)l\n`\u0000\u0004\ncwin\r)l\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d_\u0003_\u0000\u0001\r)k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\u0002)i\u0000\u0002)m)n\r)m\u0000\u0002r\u0000\u0000\u0000!\u00000)o)p\r)o\u0000\u00026\u0001\u0000\u0000!\u0000.)q)r\r)q\u0000\u0002n\u0000\u0000\u0000!\u0000%)s)t\r)s\u0000\u00024\u0000\u0001\u0000\"\u0000%])u\n]\u0000\u0004\nsgrp\r)u\u0000\u0001m\u0000\u0000\u0000#\u0000$\\\u0003\\\u0000\u0001\r)t\u0000\u0001o\u0000\u0000\u0000!\u0000\"[\u000b[\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\r)r\u0000\u0002D\u0000\u0000\u0000&\u0000-)v)w\r)v\u0000\u00011\u0000\u0000\u0000'\u0000)Z\nZ\u0000\u0004\ndesc\r)w\u0000\u0001m\u0000\u0000\u0000*\u0000,)x\u000e)x\u0000\u0001)y\u0011)y\u0000\"\u0000M\u0000o\u0000d\u0000e\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000A\u0000r\u0000e\u0000a\r)p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\u0002)n\u0000\u0002)z){\r)z\u0000\u0002r\u0000\u0000\u00001\u00006)|)}\r)|\u0000\u0002n\u0000\u0000\u00001\u00004)~)\r)~\u0000\u00011\u0000\u0000\u00002\u00004X\nX\u0000\u0004\ndesc\r)\u0000\u0001o\u0000\u0000\u00001\u00002W\u000bW\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\r)}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\u0002){\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u00007\u0000=))\r)\u0000\u0002n\u0000\u0000\u00007\u0000;))\r)\u0000\u00024\u0000\u0001\u00008\u0000;U)\nU\u0000\u0004\ncwor\r)\u0000\u0001m\u0000\u0000\u00009\u0000:T\u0003T\u0000\u0001\r)\u0000\u0001o\u0000\u0000\u00007\u00008S\u000bS\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000>\u0000>QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0004Z\u0000\u0000\u0000>\u0000k))NM\r)\u0000\u0002>\u0000\u0001\u0000>\u0000A))\r)\u0000\u0001o\u0000\u0000\u0000>\u0000?L\u000bL\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\r)\u0000\u0001o\u0000\u0000\u0000?\u0000@K\u000bK\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001k\u0000\u0000\u0000D\u0000g)\u0002)\u0000\u0002))\r)\u0000\u0003I\u0000\u0002\u0000D\u0000IJ)I\nJ\u0000\u0018.sysodelanull\u0000\u0000nmbr\r)\u0000\u0001m\u0000\u0000\u0000D\u0000E)\b)\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002I\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u0000J\u0000O))\r)\u0000\u0002b\u0000\u0000\u0000J\u0000M))\r)\u0000\u0001o\u0000\u0000\u0000J\u0000KH\u000bH\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001m\u0000\u0000\u0000K\u0000L)\u000e)\u0000\u0001)\u0011)\u0000\n\u0000 \u0000M\u0000o\u0000d\u0000e\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\u0002)\u0000\u0002)F\r)\u0000\u0003I\u0000\u0002\u0000P\u0000gE)D\nE\u0000\u0018.prcsclicnull\u0000\u0000uiel\r)\u0000\u0003l\u0000\u0005\u0000P\u0000c)CB\r)\u0000\u0002n\u0000\u0000\u0000P\u0000c))\r)\u0000\u00024\u0000\u0000\u0000^\u0000cA)\nA\u0000\u0004\nmenI\r)\u0000\u0001o\u0000\u0000\u0000a\u0000b@\u000b@\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\r)\u0000\u0002n\u0000\u0000\u0000P\u0000^))\r)\u0000\u00024\u0000\u0000\u0000Y\u0000^?)\n?\u0000\u0004\nmenE\r)\u0000\u0001m\u0000\u0000\u0000\\\u0000]>\u0003>\u0000\u0001\r)\u0000\u0002n\u0000\u0000\u0000P\u0000Y))\r)\u0000\u00024\u0000\u0000\u0000T\u0000Y=)\n=\u0000\u0004\nmbri\r)\u0000\u0001m\u0000\u0000\u0000U\u0000X)\u000e)\u0000\u0001)\u0011)\u0000\b\u0000V\u0000i\u0000e\u0000w\r)\u0000\u00024\u0000\u0000\u0000P\u0000T<)\n<\u0000\u0004\nmbar\r)\u0000\u0001m\u0000\u0000\u0000R\u0000S;\u0003;\u0000\u0001\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002D\u0000\u0000\u0002F\u0000\u0000\u0002N\u0000\u0000\u0001M\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000l\u0000l:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0001L\u0000\u0000\u0000l\u0000n)\r)\u0000\u0001m\u0000\u0000\u0000l\u0000m7\n7\u0000\b\u000bboovtrue\u0002)\u0000\u0002)6\r)\u0000\u0003l\u0000\u0002\u0000o\u0000o543\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00026\u0000\u0000\r)W\u0000\u00024\u0000\u0000\u0000\u0007\u0000\u000b2)\n2\u0000\u0004\npcap\r)\u0000\u0001m\u0000\u0000\u0000\t\u0000\n)\u000e)\u0000\u0001)\u0011)\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r)U\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004)\u000f)\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r)R\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00001))\n1\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\u0000\u0003\/).\n\/\u0000\u0004\nerrn\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006.\u0000\u0000\r)S\u0000\u0003R\u0000\u0000\u0000z\u0000,))\n,\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0002b\u0000\u0000\u0000\u0000))\r)\u0000\u0001m\u0000\u0000\u0000\u0000)\u000e)\u0000\u0001)\u0011)\u00002\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000s\u0000w\u0000i\u0000t\u0000c\u0000h\u0000 \u0000t\u0000o\u0000 \u0000m\u0000o\u0000d\u0000e\u0000 \u0000'\r)\u0000\u0001o\u0000\u0000\u0000\u0000+\u000b+\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\r)\u0000\u0001m\u0000\u0000\u0000\u0000)\u000e)\u0000\u0001)\u0011)\u0000\b\u0000'\u0000 \u0000-\u0000 \r)\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006)\u0000\u0003))(\n)\u0000\u0004\nerrn\r)\u0000\u0001o\u0000\u0000\u0000~\u0000'\u000b'\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006(\u0000\u0000\u0002k\u0000\u0000\u0002)C\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002i\u0000\u0000\u0000\u0000))\r)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 )\u001f\u000b \u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u0002)\u0000\u0002)\u001e\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002\u001e\u0000\u0000\u0002\u001f\u0000\u0000\r)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001c))\u0001\u001c\u0000\u0000\f)\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e)\u0000\u0001)\u0011)\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0013))\r)\u0000\u0001k\u0000\u0000\u0000\b\u0000\u0012)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003I\u0000\u0002\u0000\b\u0000\u0010\u0015)\u0014\n\u0015\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r)\u0000\u00024\u0000\u0000\u0000\b\u0000\f\u0013)\n\u0013\u0000\u0004\ncwin\r)\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u0012\u000b\u0012\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002\u0014\u0000\u0000\u0002)\u0000\u0002)\u0011\r)\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0011\u0000\u0000\r)\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005\r)\f\n\r\u0000\u0004\ncapp\r)\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003)\u000e)\u0000\u0001)\u0011)\u0000>\u0000c\u0000o\u0000m\u0000.\u0000f\u0000i\u0000l\u0000e\u0000m\u0000a\u0000k\u0000e\u0000r\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u00001\u00002\n\f\u0000\b\u000bkfrmID \u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0014\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016)\r)\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\b\n\b\u0000\b\u000bboovtrue\u0002)\u0000\u0002)\u0007\r)\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0007\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002i\u0000\u0000\u0000\u0000))\r)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002)\u0000\u0002)\r)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r)\u0000\u0001k\u0000\u0000\u0000\u0000\u0001C)\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000))\u0001\u0000\u0000\f)\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e)\u0000\u0001)\u0011)\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u0002)\u0000\u0002))\r)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002)\u0000\u0002))\r)\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e*\u0000*\u0001\r*\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f*\u0002\u0006*\u0002\u0000\u0003*\u0003*\u0004\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r*\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006*\u0004\u0000\u0003*\u0005*\u0006\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0005\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004*\u0007\u000e*\u0007\u0000\u0001*\b\u0011*\b\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0006*\u0006\u0000\u0003*\t*\n\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*\t\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006*\u000b\u000e*\u000b\u0000\u0001*\f\u0011*\f\u0000\u0006\u0000a\u0000n\u0000y\u0006*\n\u0000\u0003*\r*\u000e\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r*\r\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b*\u000f\b*\u000f\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0006*\u000e\u0000\u0003*\u0010\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r*\u0010\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0014\u0006\u0000\u0000\r*\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002)\u0000\u0002*\u0011*\u0012\r*\u0011\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014*\u0013*\u0014\r*\u0013\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012*\u0015*\u0016\r*\u0015\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\u0016\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r*\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002*\u0012\u0000\u0002*\u0017*\u0018\r*\u0017\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*\u0018\u0000\u0002*\u0019*\u001a\r*\u0019\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001a*\u001b*\u001c\r*\u001b\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018*\u001d*\u001e\r*\u001d\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r*\u001e\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0002*\u001a\u0000\u0002*\u001f* \r*\u001f\u0000\u0002r\u0000\u0000\u0000\u001b\u0000 *!*\"\r*!\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e*#*$\r*#\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001e\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*$\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u0002* \u0000\u0002*%*&\r*%\u0000\u0002r\u0000\u0000\u0000!\u0000&*'*(\r*'\u0000\u0002n\u0000\u0000\u0000!\u0000$*)**\r*)\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r**\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r*(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u0002*&\u0000\u0002*+*,\r*+\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*,\u0000\u0002*-*.\r*-\u0000\u0002r\u0000\u0000\u0000'\u0000**\/*0\r*\/\u0000\u0001m\u0000\u0000\u0000'\u0000(\n\u0000\b\u000bboovfals\r*0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*.\u0000\u0002*1*2\r*1\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*2\u0000\u0002*3*4\r*3\u0000\u0002U\u0000\u0000\u0000+\u0001>*5*6\r*5\u0000\u0001k\u0000\u0000\u00005\u00019*7\u0002*7\u0000\u0002*8*9\r*8\u0000\u0002O\u0000\u0000\u00005\u0000*:*;\r*:\u0000\u0004Z\u0000\u0000\u00009\u0000*<*=*>*?\r*<\u0000\u0002=\u0000\u0003\u00009\u0000<*@*A\r*@\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*A\u0000\u0001m\u0000\u0000\u0000:\u0000;*B\u000e*B\u0000\u0001*C\u0011*C\u0000\u0006\u0000a\u0000n\u0000y\r*=\u0000\u0002r\u0000\u0000\u0000?\u0000K*D*E\r*D\u0000\u0002n\u0000\u0000\u0000?\u0000I*F*G\r*F\u0000\u00011\u0000\u0000\u0000E\u0000I\n\u0000\u0004\npnam\r*G\u0000\u0002n\u0000\u0000\u0000?\u0000E*H*I\r*H\u0000\u00012\u0000\u0000\u0000C\u0000E\n\u0000\u0004\ncwin\r*I\u0000\u00024\u0000\u0000\u0000?\u0000C*J\n\u0000\u0004\npcap\r*J\u0000\u0001m\u0000\u0000\u0000A\u0000B*K\u000e*K\u0000\u0001*L\u0011*L\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002*>\u0000\u0002*M*N\r*M\u0000\u0002=\u0000\u0003\u0000N\u0000S*O*P\r*O\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*P\u0000\u0001m\u0000\u0000\u0000O\u0000R*Q\u000e*Q\u0000\u0001*R\u0011*R\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0002*N\u0000\u0002*S\r*S\u0000\u0002r\u0000\u0000\u0000V\u0000e*T*U\r*T\u0000\u0002n\u0000\u0000\u0000V\u0000c*V*W\r*V\u0000\u00011\u0000\u0000\u0000_\u0000c\n\u0000\u0004\npnam\r*W\u0000\u0002n\u0000\u0000\u0000V\u0000_*X*Y\r*X\u0000\u00024\u0000\u0000\u0000\\\u0000_*Z\n\u0000\u0004\ncwin\r*Z\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u0000\u0001\r*Y\u0000\u00024\u0000\u0000\u0000V\u0000\\*[\n\u0000\u0004\npcap\r*[\u0000\u0001m\u0000\u0000\u0000X\u0000[*\\\u000e*\\\u0000\u0001*]\u0011*]\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*U\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002\u0000\u0000\r*?\u0000\u0003l\u0000\u0003\u0000h\u0000*^*_*`\r*^\u0000\u0001k\u0000\u0000\u0000h\u0000*a\u0002*a\u0000\u0002*b*c\r*b\u0000\u0002r\u0000\u0000\u0000h\u0000o*d*e\r*d\u0000\u0002c\u0000\u0000\u0000h\u0000m*f*g\r*f\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r*g\u0000\u0001m\u0000\u0000\u0000i\u0000l\n\u0000\u0004\nnmbr\r*e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\u0002*c\u0000\u0002*h\r*h\u0000\u0002r\u0000\u0000\u0000p\u0000*i*j\r*i\u0000\u0002n\u0000\u0000\u0000p\u0000}*k*l\r*k\u0000\u00011\u0000\u0000\u0000y\u0000}\n\u0000\u0004\npnam\r*l\u0000\u0002n\u0000\u0000\u0000p\u0000y*m*n\r*m\u0000\u00024\u0000\u0000\u0000v\u0000y*o\n\u0000\u0004\ncwin\r*o\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\r*n\u0000\u00024\u0000\u0000\u0000p\u0000v*p\n\u0000\u0004\npcap\r*p\u0000\u0001m\u0000\u0000\u0000r\u0000u*q\u000e*q\u0000\u0001*r\u0011*r\u0000,\u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000P\u0000r\u0000o\u0000 \u0000A\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\r*j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u0002\u0000\u0000\f*_\u0000+\u0000% whichWindow is window index number:\u0000\u0002\u0000\u0000\u000e*`\u0000\u0001*s\u0011*s\u0000J\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000 \u0000i\u0000s\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000:\r*;\u0000\u0001m\u0000\u0000\u00005\u00006*t\u000f*t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002*9\u0000\u0002*u*v\r*u\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*v\u0000\u0002*w*x\r*w\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002*x\u0000\u0002*y*z\r*y\u0000\u0004Z\u0000\u0000\u0000\u0001%*{*|*}\r*{\u0000\u0002=\u0000\u0003\u0000\u0000*~*\r*~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0010\u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\r*|\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002E\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*}\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0001H\u0000\u0000\u0000\u0000*\r*\u0000\u0002E\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\f\u0000e\u0000q\u0000u\u0000a\u0000l\u0000s\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002=\u0000\u0001\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0004\u0000i\u0000s\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002=\u0000\u0001\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0016\u0000s\u0000t\u0000a\u0000r\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0002C\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000&\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*\r*\u0000\u0001H\u0000\u0000\u0000\u0000*\r*\u0000\u0002C\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001\u0000\u0000\u0001\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*\r*\u0000\u0003l\u0000\u0002\u0000\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0000\u0000*\u000e*\u0000\u0001*\u0011*\u0000\u0012\u0000e\u0000n\u0000d\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0001k\u0000\u0000\u0000\u0000*\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0000\u0000**\r*\u0000\u0003l\u0000\u0005\u0000\u0000*|{\r*\u0000\u0002D\u0000\u0000\u0000\u0000**\r*\u0000\u0001o\u0000\u0000\u0000\u0000z\u000bz\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r*\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001|\u0000\u0000\u0001{\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002*w\r*\u0000\u0003l\u0000\u0002\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002w\u0000\u0000\u0002*\u0000\u0002**\r*\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0006**\r*\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0002s\u000bs\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r*\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0005*\u000e*\u0000\u0001*\u0011*\u0000\"\u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0002*\u0000\u0002**\r*\u0000\u0002r\u0000\u0000\u0001\t\u0001\u000f**\r*\u0000\u0003l\u0000\u0005\u0001\t\u0001\r*rq\r*\u0000\u0001H\u0000\u0000\u0001\t\u0001\r*\r*\u0000\u0002D\u0000\u0000\u0001\t\u0001\f*+\u0000\r*\u0000\u0001o\u0000\u0000\u0001\t\u0001\np\u000bp\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r+\u0000\u0000\u0001o\u0000\u0000\u0001\n\u0001\u000bo\u000bo\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001r\u0000\u0000\u0001q\u0000\u0000\r*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002*\u0000\u0002+\u0001+\u0002\r+\u0001\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017+\u0003+\u0004\r+\u0003\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013m\u000bm\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r+\u0004\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016+\u0005\u000e+\u0005\u0000\u0001+\u0006\u0011+\u0006\u0000\f\u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0002+\u0002\u0000\u0002+\u0007l\r+\u0007\u0000\u0001k\u0000\u0000\u0001\u001a\u0001!+\b\u0002+\b\u0000\u0002+\t+\n\r+\t\u0000\u0002r\u0000\u0000\u0001\u001a\u0001\u001f+\u000b+\f\r+\u000b\u0000\u0003l\u0000\u0005\u0001\u001a\u0001\u001d+\rkj\r+\r\u0000\u0002>\u0001\u0000\u0001\u001a\u0001\u001d+\u000e+\u000f\r+\u000e\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001bi\u000bi\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\r+\u000f\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001ch\u000bh\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u0001k\u0000\u0000\u0001j\u0000\u0000\r+\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002+\n\u0000\u0002+\u0010f\r+\u0010\u0000\u0003l\u0000\u0002\u0001 \u0001 edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002f\u0000\u0000\u0002l\u0000\u0000\u0001\u0000\u0000\u0002*z\u0000\u0002+\u0011+\u0012\r+\u0011\u0000\u0003l\u0000\u0002\u0001&\u0001&ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002+\u0012\u0000\u0002+\u0013+\u0014\r+\u0013\u0000\u0004Z\u0000\u0001\u0001&\u0001\/+\u0015+\u0016_^\r+\u0015\u0000\u0001o\u0000\u0000\u0001&\u0001']\u000b]\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\r+\u0016\u0000\u0000S\u0000\u0000\u0001*\u0001+\u0002_\u0000\u0000\u0001^\u0000\u0000\u0002+\u0014\u0000\u0002+\u0017+\u0018\r+\u0017\u0000\u0003l\u0000\u0002\u00010\u00010\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002+\u0018\u0000\u0002+\u0019+\u001a\r+\u0019\u0000\u0003I\u0000\u0002\u00010\u00017Y+\u001bX\nY\u0000\u0018.sysodelanull\u0000\u0000nmbr\r+\u001b\u0000\u0002n\u0000\u0000\u00010\u00013+\u001c+\u001d\r+\u001c\u0000\u0001o\u0000\u0000\u00011\u00013W\u000bW\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r+\u001d\u0000\u0001o\u0000\u0000\u00010\u00011V\u000bV\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002X\u0000\u0000\u0002+\u001a\u0000\u0002+\u001e+\u001f\r+\u001e\u0000\u0003l\u0000\u0002\u00018\u00018UTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002+\u001f\u0000\u0002+ R\r+ \u0000\u0003l\u0000\u0002\u00018\u00018QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002R\u0000\u0000\r*6\u0000\u0002n\u0000\u0000\u0000.\u00002+!+\"\r+!\u0000\u0001o\u0000\u0000\u0000\/\u00001N\u000bN\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r+\"\u0000\u0001o\u0000\u0000\u0000.\u0000\/M\u000bM\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002*4\u0000\u0002+#+$\r+#\u0000\u0003l\u0000\u0002\u0001?\u0001?LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002+$\u0000\u0002+%+&\r+%\u0000\u0001L\u0000\u0000\u0001?\u0001A+'\r+'\u0000\u0001o\u0000\u0000\u0001?\u0001@I\u000bI\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u0002+&\u0000\u0002+(H\r+(\u0000\u0003l\u0000\u0002\u0001B\u0001BGFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u0002)\u0000\u0002+)+*\r+)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000DCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002+*\u0000\u0002+++,\r++\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002+,\u0000\u0002+-+.\r+-\u0000\u0002i\u0000\u0000\u0000\u0000+\/+0\r+\/\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000>+1=\u000b>\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u0002+1\u0000\u0002+2<\r+2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002<\u0000\u0000\u0002=\u0000\u0000\r+0\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e+3\u0002+3\u0000\u0002+4+5\r+4\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000:+6+7\u0001:\u0000\u0000\f+6\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+7\u0000\u0001+8\u0011+8\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+5\u0000\u0002+9+:\r+9\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002+:\u0000\u0002+;+<\r+;\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e+=+>\r+=\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f+?\u0006+?\u0000\u00036+@+A\u000b6\u0000\u00180\u0000\nwindowname\u0000\nwindowName\r+@\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u00025\n5\u0000\u0004\nnull\u0006+A\u0000\u00034+B+C\u000b4\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\r+B\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004+D\u000e+D\u0000\u0001+E\u0011+E\u0000\u0004\u0000i\u0000s\u0006+C\u0000\u00033+F+G\u000b3\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\r+F\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006+H\u000e+H\u0000\u0001+I\u0011+I\u0000\n\u0000f\u0000r\u0000o\u0000n\u0000t\u0006+G\u0000\u00032+J+K\u000b2\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\r+J\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b+L\b+L\u0000\b?\u0006+K\u0000\u00031+M0\u000b1\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\r+M\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\/\u0003\/\u0000d\u00060\u0000\u0000\r+>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002+<\u0000\u0002+N+O\r+N\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014+P+Q\r+P\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012+R+S\r+R\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010-\u000b-\u0000\t0\u0000\u0005prefs\u0000\u0000\r+S\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011,\u000b,\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r+Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002+O\u0000\u0002+T+U\r+T\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002+U\u0000\u0002+V+W\r+V\u0000\u0001L\u0000\u0000\u0000\u0015\u0000\u001c+X\r+X\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u001b'+Y&\u000b'\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0002+Y\u0000\u0002+Z%\r+Z\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017$\u000b$\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002%\u0000\u0000\u0002&\u0000\u0000\u0002+W\u0000\u0002+[+\\\r+[\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002+\\\u0000\u0002+] \r+]\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002 \u0000\u0000\u0002+.\u0000\u0002+^+_\r+^\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001c\u001b\u001a\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002+_\u0000\u0002+`+a\r+`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002+a\u0000\u0002+b+c\r+b\u0000\u0002i\u0000\u0000\u0000\u0000+d+e\r+d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0016+f\u0015\u000b\u0016\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u0002+f\u0000\u0002+g+h\r+g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+h\u0000\u0002+i\u0013\r+i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u0002\u0013\u0000\u0000\u0002\u0015\u0000\u0000\r+e\u0000\u0001k\u0000\u0000\u0000\u0000\u00008+j\u0002+j\u0000\u0002+k+l\r+k\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0011+m+n\u0001\u0011\u0000\u0000\f+m\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+n\u0000\u0001+o\u0011+o\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+l\u0000\u0002+p+q\r+p\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002+q\u0000\u0002+r+s\r+r\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\r+t+u\r\f\r+t\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0004+v\r+v\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0003+w+x\r+w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u000b\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\r+x\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\n\u000b\n\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\r+u\u0000\u0001L\u0000\u0000\u0000\u0007\u0000\t+y\r+y\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\t\u0003\t\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002+s\u0000\u0002+z+{\r+z\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002+{\u0000\u0002+|+}\r+|\u0000\u0005Y\u0000\u0000\u0000\u000e\u00006+~\u0005++\u0004\r+~\u0000\u0001k\u0000\u0000\u0000\u001c\u00001+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\"++\r+\u0000\u0002n\u0000\u0000\u0000\u001c\u0000 ++\r+\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0003+\n\u0003\u0000\u0004\ncobj\r+\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u0002\u000b\u0002\u0000\u00050\u0000\u0001i\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u0001\u000b\u0001\u0000\u00140\u0000\bsomelist\u0000\bsomeList\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0004Z\u0000\u0001\u0000#\u0000\/++\r+\u0000\u0002=\u0000\u0003\u0000#\u0000&++\r+\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\r+\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\r+\u0000\u0001L\u0000\u0000\u0000)\u0000++\r+\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0005\u0000\u00050\u0000\u0001i\u0000\u0000\r+\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r+\u0000\u0003I\u0000\u0001\u0000\u0012\u0000\u0017+\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r+\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002\u0000\u0000\u0001\u0004\u0000\u0000\u0002+}\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u00007\u00007\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+c\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002i\u0000\u0000\u0000\u0000++\r+\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u000b\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u0002+\u0000\u0002++\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+\u0000\u0002+\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u0002\u0000\u0000\u0002\u0000\u0000\r+\u0000\u0001k\u0000\u0000\u0000\u0000\u00000+\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000++\u0001\u0000\u0000\f+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+\u0000\u0001+\u0011+\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003X\u0000\u0000\u0000\u0000\u0000+++\r+\u0000\u0001k\u0000\u0000\u0000\u0010\u0000&+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015++\r+\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013++\r+\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcnt\r+\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u0002+\u0000\u0002++\r+\u0000\u0004Z\u0000\u0000\u0000\u0016\u0000$++\r+\u0000\u0002=\u0000\u0001\u0000\u0016\u0000\u0019++\r+\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\r+\u0000\u0001k\u0000\u0000\u0000\u001c\u0000 +\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e+\r+\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovtrue\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000\u001f\u0000\u001f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0001L\u0000\u0000\u0000,\u0000.+\r+\u0000\u0001m\u0000\u0000\u0000,\u0000-\n\u0000\b\u000bboovfals\u0002+\u0000\u0002+\r+\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002i\u0000\u0000\u0000\u0001\u0002++\r+\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000+\u000b\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u0002+\u0000\u0002+\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000:+\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000++\u0001\u0000\u0000\f+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e+\u0000\u0001+\u0011+\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005++\r+\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003++\r+\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0003\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\n++\r+\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\b\u0002\u0000\u0000\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002+\u0000\u0002++\r+\u0000\u0003X\u0000\u0000\u0000\u000b\u00005++\r+\u0000\u0001k\u0000\u0000\u0000\u001b\u00000+\u0002+\u0000\u0002++\r+\u0000\u0002r\u0000\u0000\u0000\u001b\u0000 ++\r+\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e++\r+\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcnt\r+\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u0002+\u0000\u0002+\r+\u0000\u0004Z\u0000\u0000\u0000!\u00000++\r+\u0000\u0001H\u0000\u0000\u0000!\u0000%+\r+\u0000\u0002E\u0000\u0000\u0000!\u0000$++\r+\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\r+\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0002s\u0000\u0000\u0000(\u0000,++\r+\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000+,\u0000\r+\u0000\u0000;\u0000\u0000\u0000*\u0000+\r,\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\r+\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\u0002+\u0000\u0002,\u0001,\u0002\r,\u0001\u0000\u0003l\u0000\u0002\u00006\u00006\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0002\u0000\u0002,\u0003,\u0004\r,\u0003\u0000\u0001L\u0000\u0000\u00006\u00008,\u0005\r,\u0005\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u0002,\u0004\u0000\u0002,\u0006\r,\u0006\u0000\u0003l\u0000\u0002\u00009\u00009\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002+\u0000\u0002,\u0007,\b\r,\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\b\u0000\u0002,\t,\n\r,\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\n\u0000\u0002,\u000b,\f\r,\u000b\u0000\u0002i\u0000\u0000\u0001\u0003\u0001\u0006,\r,\u000e\r,\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000,\u000f\u000b\u0000\b0\u0000\u0004sort\u0000\u0000\u0002,\u000f\u0000\u0002,\u0010\r,\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u0002\u0000\u0000\u0002\u0000\u0000\r,\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000D,\u0011\u0002,\u0011\u0000\u0002,\u0012,\u0013\r,\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000,\u0014,\u0015\u0001\u0000\u0000\f,\u0014\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e,\u0015\u0000\u0001,\u0016\u0011,\u0016\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002,\u0013\u0000\u0002,\u0017,\u0018\r,\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0018\u0000\u0002,\u0019,\u001a\r,\u0019\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u001b,\u001b,\u001c\r,\u001b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\n,\u001d\u0002,\u001d\u0000\u0002,\u001e,\u001f\r,\u001e\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003, ,!\r, \u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003~\n~\u0000\u0004\ntxdl\r,!\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001}\n}\u0000\u0004\nascr\u0002,\u001f\u0000\u0002,\"|\r,\"\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b{,#z\n{\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r,#\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004y\u0003y\u0000\n\u0002z\u0000\u0000\u0002|\u0000\u0000\r,\u001c\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000,$\u0002,$\u0000\u0002,%,&\r,%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00060\u0000\u0002od\u0000\u0000\u0002,&\u0000\u0002,'w\r,'\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,(,)\r,(\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019v\nv\u0000\u0004\ntxdl\r,)\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017u\nu\u0000\u0004\nascr\u0002w\u0000\u0000\u0002,\u001a\u0000\u0002,*,+\r,*\u0000\u0002r\u0000\u0000\u0000\u001c\u0000!,,,-\r,,\u0000\u0002c\u0000\u0000\u0000\u001c\u0000\u001f,.,\/\r,.\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001dt\u000bt\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\r,\/\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001es\ns\u0000\u0004\nTEXT\r,-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\u0002,+\u0000\u0002,0,1\r,0\u0000\u0002r\u0000\u0000\u0000\"\u0000\/,2,3\r,2\u0000\u0003I\u0000\u0002\u0000\"\u0000-q,4p\nq\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r,4\u0000\u0002b\u0000\u0000\u0000\"\u0000),5,6\r,5\u0000\u0002b\u0000\u0000\u0000\"\u0000',7,8\r,7\u0000\u0001m\u0000\u0000\u0000\"\u0000#,9\u000e,9\u0000\u0001,:\u0011,:\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r,8\u0000\u0002n\u0000\u0000\u0000#\u0000&,;,<\r,;\u0000\u00011\u0000\u0000\u0000$\u0000&o\no\u0000\u0004\nstrq\r,<\u0000\u0001o\u0000\u0000\u0000#\u0000$n\u000bn\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\r,6\u0000\u0001m\u0000\u0000\u0000'\u0000(,=\u000e,=\u0000\u0001,>\u0011,>\u0000\u000e\u0000 \u0000|\u0000 \u0000s\u0000o\u0000r\u0000t\u0002p\u0000\u0000\r,3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\u0002,1\u0000\u0002,?,@\r,?\u0000\u0002r\u0000\u0000\u00000\u00005,A,B\r,A\u0000\u0001o\u0000\u0000\u00000\u00001l\nl\u0000\u0004\nret \r,B\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,C,D\r,C\u0000\u00011\u0000\u0000\u00002\u00004k\nk\u0000\u0004\ntxdl\r,D\u0000\u00011\u0000\u0000\u00001\u00002j\nj\u0000\u0004\nascr\u0002,@\u0000\u0002,E,F\r,E\u0000\u0002r\u0000\u0000\u00006\u0000;,G,H\r,G\u0000\u0002n\u0000\u0000\u00006\u00009,I,J\r,I\u0000\u00012\u0000\u0000\u00007\u00009i\ni\u0000\u0004\ncitm\r,J\u0000\u0001o\u0000\u0000\u00006\u00007h\u000bh\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\r,H\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u0002,F\u0000\u0002,K,L\r,K\u0000\u0002r\u0000\u0000\u0000<\u0000A,M,N\r,M\u0000\u0001o\u0000\u0000\u0000<\u0000=f\u000bf\u0000\u00060\u0000\u0002od\u0000\u0000\r,N\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000,O,P\r,O\u0000\u00011\u0000\u0000\u0000>\u0000@e\ne\u0000\u0004\ntxdl\r,P\u0000\u00011\u0000\u0000\u0000=\u0000>d\nd\u0000\u0004\nascr\u0002,L\u0000\u0002,Q,R\r,Q\u0000\u0003l\u0000\u0002\u0000B\u0000Bcba\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0002,R\u0000\u0002,S`\r,S\u0000\u0001L\u0000\u0000\u0000B\u0000D,T\r,T\u0000\u0001o\u0000\u0000\u0000B\u0000C_\u000b_\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u0002`\u0000\u0000\u0002,\f\u0000\u0002,U,V\r,U\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002,V\u0000\u0002,W,X\r,W\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000[ZY\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002,X\u0000\u0002,Y,Z\r,Y\u0000\u0002i\u0000\u0000\u0001\u0007\u0001\n,[,\\\r,[\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000X,]W\u000bX\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002,]\u0000\u0002,^,_\r,^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u0002,_\u0000\u0002,`U\r,`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002U\u0000\u0000\u0002W\u0000\u0000\r,\\\u0000\u0001k\u0000\u0000\u0000\u0000\u0000H,a\u0002,a\u0000\u0002,b,c\r,b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000S,d,e\u0001S\u0000\u0000\f,d\u0000\u0012\u0000\f version 2.0\u0000\u0002\u0000\u0000\u000e,e\u0000\u0001,f\u0011,f\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00002\u0000.\u00000\u0002,c\u0000\u0002,g,h\r,g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002,h\u0000\u0002,i,j\r,i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b,k,l\r,k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006O,mN\u000bO\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002,m\u0000\u0002,nM\r,n\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002L\u000bL\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002M\u0000\u0000\u0002N\u0000\u0000\r,l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002,j\u0000\u0002,o,p\r,o\u0000\u0003l\u0000\u0001\u0000\t\u0000\u0019,q,r,s\r,q\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0019,t,u\r,t\u0000\u0003I\u0000\u0000\u0000\t\u0000\u0017J,vI\u000bJ\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0002,v\u0000\u0002,wH\r,w\u0000\u0001J\u0000\u0000\u0000\n\u0000\u0013,x\u0002,x\u0000\u0002,y,z\r,y\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000bG\u000bG\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002,z\u0000\u0002,{,|\r,{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010F,}E\nF\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r,}\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\fD\u0003D\u0000\u0000\u0002E\u0000\u0000\u0002,|\u0000\u0002,~C\r,~\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011,\u000e,\u0000\u0001,\u0011,\u0000\u0000\u0002C\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r,u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\f,r\u0000%\u0000\u001f ASCII 0 breaks shell scripting\u0000\u0002\u0000\u0000\u000e,s\u0000\u0001,\u0011,\u0000>\u0000 \u0000A\u0000S\u0000C\u0000I\u0000I\u0000 \u00000\u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000s\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000n\u0000g\u0002,p\u0000\u0002,,\r,\u0000\u0004Z\u0000\u0000\u0000\u001a\u0000),,A@\r,\u0000\u0002=\u0000\u0003\u0000\u001a\u0000\u001f,,\r,\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001d,,\r,\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d?\n?\u0000\u0004\nleng\r,\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b>\u000b>\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\r,\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e=\u0003=\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\"\u0000%,\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0001\u0000\"\u0000\"<,,\u0001<\u0000\u0000\f,\u0000H\u0000B we still want this function to log that an empty string was sent:\u0000\u0002\u0000\u0000\u000e,\u0000\u0001,\u0011,\u0000\u0000 \u0000w\u0000e\u0000 \u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000w\u0000a\u0000s\u0000 \u0000s\u0000e\u0000n\u0000t\u0000:\u0002,\u0000\u0002,;\r,\u0000\u0002r\u0000\u0000\u0000\"\u0000%,,\r,\u0000\u0001m\u0000\u0000\u0000\"\u0000#,\u000e,\u0000\u0001,\u0011,\u0000\u001c\u0000[\u0000E\u0000M\u0000P\u0000T\u0000Y\u0000 \u0000S\u0000T\u0000R\u0000I\u0000N\u0000G\u0000]\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002;\u0000\u0000\u0002A\u0000\u0000\u0001@\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000*\u0000=,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000;,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00007,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00005,,\r,\u0000\u0002b\u0000\u0000\u0000*\u00001,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000\/,,\r,\u0000\u0002b\u0000\u0000\u0000*\u0000-,,\r,\u0000\u0001m\u0000\u0000\u0000*\u0000+,\u000e,\u0000\u0001,\u0011,\u0000\f\u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\r,\u0000\u00011\u0000\u0000\u0000+\u0000,9\n9\u0000\u0004\nspac\r,\u0000\u0001m\u0000\u0000\u0000-\u0000.,\u000e,\u0000\u0001,\u0011,\u0000\u0004\u0000-\u0000t\r,\u0000\u00011\u0000\u0000\u0000\/\u000008\n8\u0000\u0004\nspac\r,\u0000\u0002n\u0000\u0000\u00001\u00004,,\r,\u0000\u00011\u0000\u0000\u00002\u000047\n7\u0000\u0004\nstrq\r,\u0000\u0001o\u0000\u0000\u00001\u000026\u000b6\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\r,\u0000\u00011\u0000\u0000\u00005\u000065\n5\u0000\u0004\nspac\r,\u0000\u0002n\u0000\u0000\u00007\u0000:,,\r,\u0000\u00011\u0000\u0000\u00008\u0000:4\n4\u0000\u0004\nstrq\r,\u0000\u0001o\u0000\u0000\u00007\u000083\u000b3\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000>\u0000>10\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003I\u0000\u0002\u0000>\u0000C.,-\n.\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r,\u0000\u0001o\u0000\u0000\u0000>\u0000?,\u000b,\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002-\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0001L\u0000\u0000\u0000D\u0000F,\r,\u0000\u0001o\u0000\u0000\u0000D\u0000E+\u000b+\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u0002,\u0000\u0002,*\r,\u0000\u0003l\u0000\u0002\u0000G\u0000G)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\u0002,Z\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002i\u0000\u0000\u0001\u000b\u0001\u000e,,\r,\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 ,\u001f\u000b \u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002,\u0000\u0002,,\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\t0\u0000\u0005level\u0000\u0000\u0002,\u0000\u0002,\u001d\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\u0000\u00004,\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u001b,,\u0001\u001b\u0000\u0000\f,\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e,\u0000\u0001,\u0011,\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003,,\r,\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0017\u0003\u0017\u0000\u0005\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r,,\r,\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\u000b,,\r,\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\t\u0015\u000b\u0015\u0000\u00180\u0000\nscriptname\u0000\nScriptName\r,\u0000\u0001m\u0000\u0000\u0000\t\u0000\n,\u000e,\u0000\u0001,\u0011,\u0000\u0002\u0000_\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u0002,\u0000\u0002,,\r,\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0015,,\r,\u0000\u0002[\u0000\u0000\u0000\u000e\u0000\u0013,,\r,\u0000\u0002\\\u0000\u0000\u0000\u000e\u0000\u0011,,\r,\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u0013\u000b\u0013\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\r,\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u0012\u000b\u0012\u0000\t0\u0000\u0005level\u0000\u0000\r,\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0011\u0003\u0011\u0000\u0001\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u000f\u000e\r\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0005Y\u0000\u0000\u0000\u0016\u0000*,\f,,\u000b\r,\u0000\u0002r\u0000\u0000\u0000 \u0000%,,\r,\u0000\u0002b\u0000\u0000\u0000 \u0000#,,\r,\u0000\u0001o\u0000\u0000\u0000 \u0000!\n\u000b\n\u0000\u00120\u0000\u0007logname\u0000\u0007logName\r,\u0000\u0001m\u0000\u0000\u0000!\u0000\",\u000e,\u0000\u0001,\u0011,\u0000\u0002\u0000X\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r,\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\b\u0003\b\u0000\u0001\r,\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u0007\u000b\u0007\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u0001\u000b\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003I\u0000\u0000\u0000+\u00002\u0003,\u0002\u000b\u0003\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0002,\u0000\u0002,,\r,\u0000\u0001o\u0000\u0000\u0000,\u0000-\u0001\u000b\u0001\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u0002,\u0000\u0002,\u0000\r,\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0002,\u0000\u0002,\r,\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002,\u0000\u0002,,\r,\u0000\u0002i\u0000\u0000\u0001\u000f\u0001\u0012,,\r,\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000,\u000b\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u0002,\u0000\u0002,\r,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0002\u0000\u0000\r,\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0007,\u0002,\u0000\u0002,-\u0000\r,\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-\u0001-\u0002\u0001\u0000\u0000\f-\u0001\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u0002\u0000\u0001-\u0003\u0011-\u0003\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u0000\u0000\u0002-\u0004-\u0005\r-\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0005\u0000\u0002-\u0006\r-\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0007-\u0007-\b-\t\r-\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0007-\n\u000b\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0002-\n\u0000\u0002-\u000b-\f\r-\u000b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000\u0000\u0002-\f\u0000\u0002-\r\r-\r\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u0000\u0000\u0002\u0000\u0000\f-\b\u0000 \u0000\u001a log at highest importance\u0000\u0002\u0000\u0000\u000e-\t\u0000\u0001-\u000e\u0011-\u000e\u00004\u0000 \u0000l\u0000o\u0000g\u0000 \u0000a\u0000t\u0000 \u0000h\u0000i\u0000g\u0000h\u0000e\u0000s\u0000t\u0000 \u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000a\u0000n\u0000c\u0000e\u0002\u0000\u0000\u0002,\u0000\u0002-\u000f-\u0010\r-\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0010\u0000\u0002-\u0011-\u0012\r-\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0012\u0000\u0002-\u0013-\u0014\r-\u0013\u0000\u0002i\u0000\u0000\u0001\u0013\u0001\u0016-\u0015-\u0016\r-\u0015\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000-\u0017\u000b\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u0002-\u0017\u0000\u0002-\u0018\r-\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r-\u0016\u0000\u0001k\u0000\u0000\u0000\u0000\u0000F-\u0019\u0002-\u0019\u0000\u0002-\u001a-\u001b\r-\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-\u001c-\u001d\u0001\u0000\u0000\f-\u001c\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u001d\u0000\u0001-\u001e\u0011-\u001e\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u001b\u0000\u0002-\u001f- \r-\u001f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002- \u0000\u0002-!-\"\r-!\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e-#-$\r-#\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\f-%\u0006-%\u0000\u0003-&-'\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-&\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002-(\u000e-(\u0000\u0001-)\u0011-)\u0000\u0000\u0006-'\u0000\u0003-*-+\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-*\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004-,\u000e-,\u0000\u0001--\u0011--\u0000\u0000\u0006-+\u0000\u0003-.-\/\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-.\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006-0\u000e-0\u0000\u0001-1\u0011-1\u0000\u0000\u0006-\/\u0000\u0003-2-3\u000b\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\r-2\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b-4\u000e-4\u0000\u0001-5\u0011-5\u0000\u000e\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0006-3\u0000\u0003-6\u000b\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\r-6\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nnull\u0006\u0000\u0000\r-$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002-\"\u0000\u0002-7-8\r-7\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014-9-:\r-9\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012-;-<\r-;\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-<\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r-:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-8\u0000\u0002-=->\r-=\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002->\u0000\u0002-?-@\r-?\u0000\u0004Z\u0000\u0000\u0000\u0015\u0000D-A-B-C\r-A\u0000\u0002>\u0001\u0000\u0000\u0015\u0000\u001a-D-E\r-D\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018-F-G\r-F\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0018\u000b\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\r-G\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-E\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\u0004\nnull\r-B\u0000\u0003I\u0000\u0002\u0000\u001d\u0000,-H-I\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r-H\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 -J-K\r-J\u0000\u0001o\u0000\u0000\u0000\u001e\u0000 \u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-K\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-I\u0000\u0003-L-M\n\u0000\u0004\nappr\r-L\u0000\u0002n\u0000\u0000\u0000!\u0000$-N-O\r-N\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-O\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-M\u0000\u0003-P\n\u0000\u0004\nsubt\r-P\u0000\u0002n\u0000\u0000\u0000%\u0000(-Q-R\r-Q\u0000\u0001o\u0000\u0000\u0000&\u0000(\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-R\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r-C\u0000\u0003I\u0000\u0002\u0000\/\u0000D-S-T\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r-S\u0000\u0002n\u0000\u0000\u0000\/\u00002-U-V\r-U\u0000\u0001o\u0000\u0000\u00000\u00002\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r-V\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-T\u0000\u0003-W-X\n\u0000\u0004\nappr\r-W\u0000\u0002n\u0000\u0000\u00003\u00006-Y-Z\r-Y\u0000\u0001o\u0000\u0000\u00004\u00006\u000b\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\r-Z\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-X\u0000\u0003-[-\\\n\u0000\u0004\nsubt\r-[\u0000\u0002n\u0000\u0000\u00007\u0000:-]-^\r-]\u0000\u0001o\u0000\u0000\u00008\u0000:\u000b\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\r-^\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-\\\u0000\u0003-_\n\u0000\u0004\nnsou\r-_\u0000\u0002n\u0000\u0000\u0000;\u0000>-`-a\r-`\u0000\u0001o\u0000\u0000\u0000<\u0000>\u000b\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\r-a\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\u0002-@\u0000\u0002-b-c\r-b\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-c\u0000\u0002-d\r-d\u0000\u0003l\u0000\u0002\u0000E\u0000E\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002-\u0014\u0000\u0002-e-f\r-e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-f\u0000\u0002-g-h\r-g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-h\u0000\u0002-i-j\r-i\u0000\u0002i\u0000\u0000\u0001\u0017\u0001\u001a-k-l\r-k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000-m\u000b\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u0002-m\u0000\u0002-n\r-n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r-l\u0000\u0001k\u0000\u0000\u0000\u0000\u0000-o\u0002-o\u0000\u0002-p-q\r-p\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000-r-s\u0001\u0000\u0000\f-r\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-s\u0000\u0001-t\u0011-t\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-q\u0000\u0002-u-v\r-u\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-v\u0000\u0002-w-x\r-w\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0012-y-z\r-y\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0010-{\u0006-{\u0000\u0003-|-}\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-|\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0006-}\u0000\u0003-~-\u000b\u0000\u00140\u0000\bfilename\u0000\bfileName\r-~\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nnull\u0006-\u0000\u0003--\u000b\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\r-\u0000\u0002c\u0000\u0000\u0000\u0005\u0000\f--\r-\u0000\u0003l\u0000\u0005\u0000\u0005\u0000\n-\r-\u0000\u0003I\u0000\u0002\u0000\u0005\u0000\n-\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r-\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\b\u000bafdrdesk\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\u0004\nTEXT\u0006-\u0000\u0003-\u000b\u0000\u00180\u0000\noutputtext\u0000\noutputText\r-\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nnull\u0006\u0000\u0000\r-z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002-x\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018--\r-\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u0016--\r-\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u0019\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019--\u0001\u0000\u0000\f-\u0000\u001a\u0000\u0014 determine file path\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000(\u0000 \u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0002-\u0000\u0002--\r-\u0000\u0004Z\u0000\u0000\u0000\u0019\u0000H----\r-\u0000\u0002>\u0001\u0000\u0000\u0019\u0000\u001e--\r-\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001c--\r-\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001c\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\u0004\nnull\r-\u0000\u0002r\u0000\u0000\u0000!\u0000&--\r-\u0000\u0002n\u0000\u0000\u0000!\u0000$--\r-\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\r-\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002-\u0000\u0002--\r-\u0000\u0002>\u0001\u0000\u0000)\u0000.--\r-\u0000\u0002n\u0000\u0000\u0000)\u0000,--\r-\u0000\u0001o\u0000\u0000\u0000*\u0000,~\u000b~\u0000\u00140\u0000\bfilename\u0000\bfileName\r-\u0000\u0001o\u0000\u0000\u0000)\u0000*}\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000,\u0000-|\n|\u0000\u0004\nnull\u0002-\u0000\u0002-{\r-\u0000\u0002r\u0000\u0000\u00001\u0000:--\r-\u0000\u0002b\u0000\u0000\u00001\u00008--\r-\u0000\u0002n\u0000\u0000\u00001\u00004--\r-\u0000\u0001o\u0000\u0000\u00002\u00004z\u000bz\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\r-\u0000\u0001o\u0000\u0000\u00001\u00002y\u000by\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0002n\u0000\u0000\u00004\u00007--\r-\u0000\u0001o\u0000\u0000\u00005\u00007x\u000bx\u0000\u00140\u0000\bfilename\u0000\bfileName\r-\u0000\u0001o\u0000\u0000\u00004\u00005w\u000bw\u0000\t0\u0000\u0005prefs\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002{\u0000\u0000\r-\u0000\u0002r\u0000\u0000\u0000=\u0000H--\r-\u0000\u0002b\u0000\u0000\u0000=\u0000F--\r-\u0000\u0003l\u0000\u0005\u0000=\u0000D-ut\r-\u0000\u0002c\u0000\u0000\u0000=\u0000D--\r-\u0000\u0003l\u0000\u0005\u0000=\u0000B-sr\r-\u0000\u0003I\u0000\u0002\u0000=\u0000Bq-p\nq\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r-\u0000\u0001m\u0000\u0000\u0000=\u0000>o\no\u0000\b\u000bafdrdesk\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000B\u0000Cn\nn\u0000\u0004\nTEXT\u0001u\u0000\u0000\u0001t\u0000\u0000\r-\u0000\u0001m\u0000\u0000\u0000D\u0000E-\u000e-\u0000\u0001-\u0011-\u00002\u0000A\u0000S\u0000F\u0000i\u0000l\u0000e\u0000W\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000B\u0000y\u0000_\u0000f\u0000m\u0000G\u0000U\u0000I\u0000.\u0000t\u0000x\u0000t\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000I\u0000Ilkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000I\u0000Iihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000I\u0000If--\u0001f\u0000\u0000\f-\u0000$\u0000\u001e now write output text to file\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000<\u0000 \u0000n\u0000o\u0000w\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000o\u0000u\u0000t\u0000p\u0000u\u0000t\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000t\u0000o\u0000 \u0000f\u0000i\u0000l\u0000e\u0002-\u0000\u0002-e\r-\u0000\u0003Q\u0000\u0000\u0000I\u0000---\r-\u0000\u0001k\u0000\u0000\u0000L\u0000h-\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000L\u0000X--\r-\u0000\u0003I\u0000\u0002\u0000L\u0000Vd--\nd\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r-\u0000\u00024\u0000\u0000\u0000L\u0000Pc-\nc\u0000\u0004\nfile\r-\u0000\u0001o\u0000\u0000\u0000N\u0000Ob\u000bb\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0006-\u0000\u0003a-`\na\u0000\u0004\nperm\r-\u0000\u0001m\u0000\u0000\u0000Q\u0000R_\n_\u0000\b\u000bboovtrue\u0006`\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0002-\u0000\u0002--\r-\u0000\u0003I\u0000\u0002\u0000Y\u0000b]--\n]\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u0002n\u0000\u0000\u0000Y\u0000\\--\r-\u0000\u0001o\u0000\u0000\u0000Z\u0000\\\\\u000b\\\u0000\u00180\u0000\noutputtext\u0000\noutputText\r-\u0000\u0001o\u0000\u0000\u0000Y\u0000Z[\u000b[\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006-\u0000\u0003Z-Y\nZ\u0000\u0004\nrefn\r-\u0000\u0001o\u0000\u0000\u0000]\u0000^X\u000bX\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0006Y\u0000\u0000\u0002-\u0000\u0002-W\r-\u0000\u0003I\u0000\u0002\u0000c\u0000hV-U\nV\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u0001o\u0000\u0000\u0000c\u0000dT\u000bT\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u0002U\u0000\u0000\u0002W\u0000\u0000\r-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000SRQ\nS\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001R\u0000\u0000\u0002Q\u0000\u0000\r-\u0000\u0003Q\u0000\u0000\u0000p\u0000--P\r-\u0000\u0003I\u0000\u0002\u0000s\u0000{O-N\nO\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r-\u0000\u00024\u0000\u0000\u0000s\u0000wM-\nM\u0000\u0004\nfile\r-\u0000\u0001o\u0000\u0000\u0000u\u0000vL\u000bL\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u0002N\u0000\u0000\r-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000KJI\nK\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001J\u0000\u0000\u0002I\u0000\u0000\u0001P\u0000\u0000\u0002e\u0000\u0000\u0002-j\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000EDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0002i\u0000\u0000\u0001\u001b\u0001\u001e--\r-\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000B-A\u000bB\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0002-\u0000\u0002--\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002-\u0000\u0002-?\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002?\u0000\u0000\u0002A\u0000\u0000\r-\u0000\u0001k\u0000\u0000\u0000\u0000\u00000-\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000=--\u0001=\u0000\u0000\f-\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e-\u0000\u0001-\u0011-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002-\u0000\u0002--\r-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000<;:\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t--\r-\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u00079--\n9\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00018\u000b8\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0006-\u0000\u00037-6\n7\u0000\u0004\ndire\r-\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u00035\n5\u0000\b\u000bolierndD\u00066\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002-\u0000\u0002--\r-\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013--\r-\u0000\u0003I\u0000\u0002\u0000\n\u0000\u00113--\n3\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r-\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b2\u000b2\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0006-\u0000\u00031.\u00000\n1\u0000\u0004\ndire\r.\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\/\n\/\u0000\b\u000bolierndD\u00060\u0000\u0000\r-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002-\u0000\u0002.\u0001.\u0002\r.\u0001\u0000\u0003I\u0000\u0002\u0000\u0014\u0000'-.\u0003,\n-\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r.\u0003\u0000\u0002b\u0000\u0000\u0000\u0014\u0000#.\u0004.\u0005\r.\u0004\u0000\u0002b\u0000\u0000\u0000\u0014\u0000!.\u0006.\u0007\r.\u0006\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001f.\b.\t\r.\b\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001d.\n.\u000b\r.\n\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001b.\f.\r\r.\f\u0000\u00011\u0000\u0000\u0000\u0019\u0000\u001b+\n+\u0000\u0004\nstrq\r.\r\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019*\u000b*\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\r.\u000b\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c.\u000e\u000e.\u000e\u0000\u0001.\u000f\u0011.\u000f\u0000\f\u0000 \u0000-\u0000r\u0000 \u0000c\u0000:\r.\t\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e)\u000b)\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\r.\u0007\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 .\u0010\u000e.\u0010\u0000\u0001.\u0011\u0011.\u0011\u0000\u0002\u0000,\r.\u0005\u0000\u0001o\u0000\u0000\u0000!\u0000\"(\u000b(\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002,\u0000\u0000\u0002.\u0002\u0000\u0002.\u0012'\r.\u0012\u0000\u0001L\u0000\u0000\u0000(\u00000.\u0013\r.\u0013\u0000\u0003l\u0000\u0005\u0000(\u0000\/.\u0014&%\r.\u0014\u0000\u0002b\u0000\u0000\u0000(\u0000\/.\u0015.\u0016\r.\u0015\u0000\u0002b\u0000\u0000\u0000(\u0000-.\u0017.\u0018\r.\u0017\u0000\u0003l\u0000\u0005\u0000(\u0000+.\u0019$#\r.\u0019\u0000\u0002c\u0000\u0000\u0000(\u0000+.\u001a.\u001b\r.\u001a\u0000\u0001o\u0000\u0000\u0000(\u0000)\"\u000b\"\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\r.\u001b\u0000\u0001m\u0000\u0000\u0000)\u0000*!\n!\u0000\u0004\nTEXT\u0001$\u0000\u0000\u0001#\u0000\u0000\r.\u0018\u0000\u0001m\u0000\u0000\u0000+\u0000,.\u001c\u000e.\u001c\u0000\u0001.\u001d\u0011.\u001d\u0000\u0002\u0000,\r.\u0016\u0000\u0001o\u0000\u0000\u0000-\u0000. \u000b \u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0001&\u0000\u0000\u0001%\u0000\u0000\u0002'\u0000\u0000\u0002-\u0000\u0002.\u001e.\u001f\r.\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002.\u001f\u0000\u0002. .!\r. \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001c\u001b\u001a\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002.!\u0000\u0002.\".#\r.\"\u0000\u0002i\u0000\u0000\u0001\u001f\u0001\".$.%\r.$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0019.&\u0018\u000b\u0019\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0002.&\u0000\u0002.'\u0017\r.'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u0002\u0017\u0000\u0000\u0002\u0018\u0000\u0000\r.%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000M.(\u0002.(\u0000\u0002.).*\r.)\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0015.+.,\u0001\u0015\u0000\u0000\f.+\u0000\u0012\u0000\f version 1.0\u0000\u0002\u0000\u0000\u000e.,\u0000\u0001.-\u0011.-\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u0002.*\u0000\u0002...\/\r..\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002.\/\u0000\u0002.0.1\r.0\u0000\u0002w\u0000\u0000\u0000\u0000\u0000'.2.3\r.2\u0000\u0001k\u0000\u0000\u0000\u0002\u0000'.4\u0002.4\u0000\u0002.5.6\r.5\u0000\u0002r\u0000\u0000\u0000\u0002\u0000\u0014.7.8\r.7\u0000\u0002n\u0000\u0000\u0000\u0002\u0000\u0005.9.:\r.9\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0005\u0011\n\u0011\u0000\u0004\nposn\r.:\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u0010\u000b\u0010\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\r.8\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000.;\u0002.;\u0000\u0002.<.=\r.<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\u0002.=\u0000\u0002.>\u000e\r.>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\u0002\u000e\u0000\u0000\u0002.6\u0000\u0002.?\f\r.?\u0000\u0002r\u0000\u0000\u0000\u0015\u0000'.@.A\r.@\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018.B.C\r.B\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\u000b\n\u000b\u0000\u0004\nptsz\r.C\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\n\u000b\n\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\r.A\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000.D\u0002.D\u0000\u0002.E.F\r.E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\u0002.F\u0000\u0002.G\b\r.G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\u0002\b\u0000\u0000\u0002\f\u0000\u0000\u000f.3\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintoshSSD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u8\\H+\u0000\u0000\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u001aNu;\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000u~\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000u\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00001\u0000\u0000\u0000%\u0000\u0000\u0000$\u0000\u0002\u0000=MacintoshSSD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000S\u0000S\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002.1\u0000\u0002.H.I\r.H\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002.I\u0000\u0002.J.K\r.J\u0000\u0003l\u0000\u0001\u0000(\u00005.L.M.N\r.L\u0000\u0002r\u0000\u0000\u0000(\u00005.O.P\r.O\u0000\u0003I\u0000\u0002\u0000(\u00003\u0003.Q.R\n\u0003\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r.Q\u0000\u0003l\u0000\u0005\u0000(\u0000-.S\u0002\u0001\r.S\u0000\u0002[\u0000\u0000\u0000(\u0000-.T.U\r.T\u0000\u0001o\u0000\u0000\u0000(\u0000)\u0000\u000b\u0000\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\r.U\u0000\u0002^\u0000\u0000\u0000)\u0000,.V.W\r.V\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\r.W\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0006.R\u0000\u0003.X\n\u0000\u0004\ndire\r.X\u0000\u0001m\u0000\u0000\u0000.\u0000\/\n\u0000\b\u000bolierndD\u0006\u0000\u0000\r.P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\f.M\u0000\r\u0000\u0007 middle\u0000\u0002\u0000\u0000\u000e.N\u0000\u0001.Y\u0011.Y\u0000\u000e\u0000 \u0000m\u0000i\u0000d\u0000d\u0000l\u0000e\u0002.K\u0000\u0002.Z.[\r.Z\u0000\u0003l\u0000\u0001\u00006\u0000C.\\.].^\r.\\\u0000\u0002r\u0000\u0000\u00006\u0000C._.`\r._\u0000\u0003I\u0000\u0002\u00006\u0000A.a.b\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\r.a\u0000\u0003l\u0000\u0005\u00006\u0000;.c\r.c\u0000\u0002[\u0000\u0000\u00006\u0000;.d.e\r.d\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\r.e\u0000\u0002^\u0000\u0000\u00007\u0000:.f.g\r.f\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\r.g\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0006.b\u0000\u0003.h\n\u0000\u0004\ndire\r.h\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\b\u000bolierndD\u0006\u0000\u0000\r.`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\f.]\u0000\r\u0000\u0007 middle\u0000\u0002\u0000\u0000\u000e.^\u0000\u0001.i\u0011.i\u0000\u000e\u0000 \u0000m\u0000i\u0000d\u0000d\u0000l\u0000e\u0002.[\u0000\u0002.j.k\r.j\u0000\u0003l\u0000\u0002\u0000D\u0000D\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.k\u0000\u0002.l.m\r.l\u0000\u0003I\u0000\u0000\u0000D\u0000K.n\u000b\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0002.n\u0000\u0002.o.p\r.o\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u0002.p\u0000\u0002.q\r.q\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002\u0000\u0000\u0002\u0000\u0000\u0002.m\u0000\u0002.r\r.r\u0000\u0003l\u0000\u0002\u0000L\u0000L\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002.#\u0000\u0002.s.t\r.s\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.t\u0000\u0002.u.v\r.u\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.v\u0000\u0002.w.x\r.w\u0000\u0002i\u0000\u0000\u0001#\u0001&.y.z\r.y\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000.{\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0002.{\u0000\u0002.|\r.|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\u0000\u0000\u0002\u0000\u0000\r.z\u0000\u0001k\u0000\u0000\u0000\u0000\u0001.}\u0002.}\u0000\u0002.~.\r.~\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000..\u0001\u0000\u0000\f.\u0000\u0012\u0000\f version 2.2\u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00002\u0000.\u00002\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001....\r.\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0005..\r.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003..\r.\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nTEXT\r.\u0000\u0001k\u0000\u0000\u0000\b\u0000\u0015.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000\b\u0000\u0012..\r.\u0000\u0003l\u0000\u0005\u0000\b\u0000\u000b.\r.\u0000\u0002c\u0000\u0000\u0000\b\u0000\u000b..\r.\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0015.\r.\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u0000\u0018\u0000\u001d..\r.\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001b..\r.\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001b\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nlong\u0002.\u0000\u0002..\r.\u0000\u0001k\u0000\u0000\u0000 \u0000\/.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000 \u0000*..\r.\u0000\u0003l\u0000\u0005\u0000 \u0000#.\r.\u0000\u0002c\u0000\u0000\u0000 \u0000#..\r.\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000+\u0000\/.\r.\u0000\u0002c\u0000\u0000\u0000+\u0000...\r.\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000,\u0000-\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u00002\u00007..\r.\u0000\u0002n\u0000\u0000\u00002\u00005..\r.\u0000\u0001m\u0000\u0000\u00003\u00005\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u00005\u00006\n\u0000\u0004\ndoub\u0002.\u0000\u0002..\r.\u0000\u0001k\u0000\u0000\u0000:\u0000I.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000:\u0000D..\r.\u0000\u0003l\u0000\u0005\u0000:\u0000=.\r.\u0000\u0002c\u0000\u0000\u0000:\u0000=..\r.\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000;\u0000<\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000E\u0000I.\r.\u0000\u0002c\u0000\u0000\u0000E\u0000H..\r.\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000F\u0000G\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0002=\u0000\u0003\u0000L\u0000Q..\r.\u0000\u0002n\u0000\u0000\u0000L\u0000O..\r.\u0000\u0001m\u0000\u0000\u0000M\u0000O\n\u0000\u0004\npcls\r.\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nutxt\u0002.\u0000\u0002.\r.\u0000\u0001k\u0000\u0000\u0000T\u0000c.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000T\u0000^..\r.\u0000\u0003l\u0000\u0005\u0000T\u0000W.\r.\u0000\u0002c\u0000\u0000\u0000T\u0000W..\r.\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000U\u0000V\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r.\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000.\u0006.\u0000\u0003.\n\u0000\u0004\nctxt\r.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0006\u0000\u0000\u0002.\u0000\u0002.\r.\u0000\u0001L\u0000\u0000\u0000_\u0000c.\r.\u0000\u0002c\u0000\u0000\u0000_\u0000b..\r.\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\r.\u0000\u0001m\u0000\u0000\u0000`\u0000a\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002\u0000\u0000\r.\u0000\u0001k\u0000\u0000\u0000f\u0001.\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0001\u0000f\u0000f..\u0001\u0000\u0000\f.\u0000,\u0000& LIST, RECORD, styled text, or unknown\u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000L\u0000 \u0000L\u0000I\u0000S\u0000T\u0000,\u0000 \u0000R\u0000E\u0000C\u0000O\u0000R\u0000D\u0000,\u0000 \u0000s\u0000t\u0000y\u0000l\u0000e\u0000d\u0000 \u0000t\u0000e\u0000x\u0000t\u0000,\u0000 \u0000o\u0000r\u0000 \u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0002.\u0000\u0002..\r.\u0000\u0003Q\u0000\u0000\u0000f\u0001~...\r.\u0000\u0001k\u0000\u0000\u0000i\u0000.\u0002.\u0000\u0002..\r.\u0000\u0003Q\u0000\u0000\u0000i\u0000...\r.\u0000\u0001k\u0000\u0000\u0000l\u0000s.\u0002.\u0000\u0002..\r.\u0000\u0002r\u0000\u0000\u0000l\u0000q..\r.\u0000\u0001m\u0000\u0000\u0000l\u0000m.\u000e.\u0000\u0001.\u0011.\u0000`\u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000V\u0000a\u0000l\u0000u\u0000e\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\r.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000..\r.\u0000\u0001o\u0000\u0000\u0000n\u0000p\u000b\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\r.\u0000\u0001m\u0000\u0000\u0000m\u0000n.\u000e.\u0000\u0001.\u0011.\u0000\b\u0000X\u0000X\u0000X\u0000X\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0002\u0000r\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002.\u0000\u0002..\r.\u0000\u0003l\u0000\u0001\u0000r\u0000r..\u0001\u0000\u0000\f.\u0000V\u0000P GENERATE the error message for a known 'object' (here, a string) so we can get \u0000\u0002\u0000\u0000\u000e.\u0000\u0001.\u0011.\u0000\u0000 \u0000G\u0000E\u0000N\u0000E\u0000R\u0000A\u0000T\u0000E\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000a\u0000 \u0000k\u0000n\u0000o\u0000w\u0000n\u0000 \u0000'\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000'\u0000 \u0000(\u0000h\u0000e\u0000r\u0000e\u0000,\u0000 \u0000a\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000c\u0000a\u0000n\u0000 \u0000g\u0000e\u0000t\u0000 \u0002.\u0000\u0002.\r.\u0000\u0003l\u0000\u0001\u0000r\u0000r.\/\u0000\u0001\u0000\u0000\f.\u00007\u00001 the 'lead' and 'trail' part of the error message\u0000\u0002\u0000\u0000\u000e\/\u0000\u0000\u0001\/\u0001\u0011\/\u0001\u0000b\u0000 \u0000t\u0000h\u0000e\u0000 \u0000'\u0000l\u0000e\u0000a\u0000d\u0000'\u0000 \u0000a\u0000n\u0000d\u0000 \u0000'\u0000t\u0000r\u0000a\u0000i\u0000l\u0000'\u0000 \u0000p\u0000a\u0000r\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0000\r.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0003\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\/\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0006\/\u0003\u0000\u0003\/\u0004\n\u0000\u0004\nerrn\r\/\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r.\u0000\u0001k\u0000\u0000\u0000{\u0000\/\u0005\u0002\/\u0005\u0000\u0002\/\u0006\/\u0007\r\/\u0006\u0000\u0002r\u0000\u0000\u0000{\u0000\/\b\/\t\r\/\b\u0000\u0001J\u0000\u0000\u0000{\u0000\/\n\u0002\/\n\u0000\u0002\/\u000b\/\f\r\/\u000b\u0000\u0002n\u0000\u0003\u0000{\u0000~\/\r\/\u000e\r\/\r\u0000\u00011\u0000\u0000\u0000|\u0000~\n\u0000\u0004\ntxdl\r\/\u000e\u0000\u00011\u0000\u0000\u0000{\u0000|\n\u0000\u0004\nascr\u0002\/\f\u0000\u0002\/\u000f\r\/\u000f\u0000\u0001J\u0000\u0000\u0000~\u0000\/\u0010\u0002\/\u0010\u0000\u0002\/\u0011\r\/\u0011\u0000\u0001m\u0000\u0000\u0000~\u0000\/\u0012\u000e\/\u0012\u0000\u0001\/\u0013\u0011\/\u0013\u0000\f\u0000\"\u0000X\u0000X\u0000X\u0000X\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\/\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0014\u0002\/\u0014\u0000\u0002\/\u0015\/\u0016\r\/\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002\/\u0016\u0000\u0002\/\u0017\r\/\u0017\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\u0018\/\u0019\r\/\u0018\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\/\u0019\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\/\u0007\u0000\u0002\/\u001a\/\u001b\r\/\u001a\u0000\u0002r\u0000\u0000\u0000\u0000\/\u001c\/\u001d\r\/\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\/\u001e\/\u001f\r\/\u001e\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncitm\r\/\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/ \u0002\/ \u0000\u0002\/!\/\"\r\/!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002\/\"\u0000\u0002\/#\r\/#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002\u0000\u0000\u0002\/\u001b\u0000\u0002\/$\r\/$\u0000\u0002r\u0000\u0000\u0000\u0000\/%\/&\r\/%\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r\/&\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/'\/(\r\/'\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\/(\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002.\u0000\u0002\/)\/*\r\/)\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\/*\u0000\u0002\/+\/,\r\/+\u0000\u0003l\u0000\u0001\u0000\u0000\/-\/.\u0001\u0000\u0000\f\/-\u0000=\u00007 now, generate error message for the SPECIFIED object: \u0000\u0002\u0000\u0000\u000e\/.\u0000\u0001\/\/\u0011\/\/\u0000n\u0000 \u0000n\u0000o\u0000w\u0000,\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000P\u0000E\u0000C\u0000I\u0000F\u0000I\u0000E\u0000D\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000:\u0000 \u0002\/,\u0000\u0002\/0\/1\r\/0\u0000\u0002r\u0000\u0000\u0000\u0000\/2\/3\r\/2\u0000\u0001m\u0000\u0000\u0000\u0000\/4\u000e\/4\u0000\u0001\/5\u0011\/5\u0000`\u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000V\u0000a\u0000l\u0000u\u0000e\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\r\/3\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\/6\/7\r\/6\u0000\u0001o\u0000\u0000\u0000\u0000~\u000b~\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\r\/7\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u0002\/1\u0000\u0002\/8\/9\r\/8\u0000\u0003l\u0000\u0002\u0000\u0000|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\/9\u0000\u0002\/:y\r\/:\u0000\u0003l\u0000\u0002\u0000\u0000xwv\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002y\u0000\u0000\r.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000u\/;t\nu\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\/;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u0002t\u0000\u0000\r.\u0000\u0004Z\u0000\u0000\u0000\u0001~\/<\/=r\/>\r\/<\u0000\u0002F\u0000\u0000\u0000\u0000\/?\/@\r\/?\u0000\u0002C\u0000\u0000\u0000\u0000\/A\/B\r\/A\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/B\u0000\u0001m\u0000\u0000\u0000\u0000\/C\u000e\/C\u0000\u0001\/D\u0011\/D\u0000\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000 \u0000g\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000C\u0000a\u0000n \u0019\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000P\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\u0000 \u0000o\u0000f\u0000 \r\/@\u0000\u0002D\u0000\u0000\u0000\u0000\/E\/F\r\/E\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/F\u0000\u0001m\u0000\u0000\u0000\u0000\/G\u000e\/G\u0000\u0001\/H\u0011\/H\u0000(\u0000i\u0000n\u0000t\u0000o\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000r\u0000.\r\/=\u0000\u0001k\u0000\u0000\u0000\u0001\u0012\/I\u0002\/I\u0000\u0002\/J\/K\r\/J\u0000\u0002r\u0000\u0000\u0000\u0000\/L\/M\r\/L\u0000\u0001m\u0000\u0000\u0000\u0000\/N\u000e\/N\u0000\u0001\/O\u0011\/O\u0000\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000 \u0000g\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000C\u0000a\u0000n \u0019\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000o\u0000m\u0000e\u0000_\u0000U\u0000U\u0000I\u0000D\u0000_\u0000P\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000_\u00005\u00004\u0000F\u00008\u00002\u00007\u0000C\u00007\u00003\u00007\u00009\u0000E\u00004\u00000\u00007\u00003\u0000B\u00005\u0000A\u00002\u00001\u00006\u0000B\u0000B\u00009\u0000C\u0000D\u0000E\u00005\u00007\u00005\u0000D\u0000 \u0000o\u0000f\u0000 \r\/M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002\/K\u0000\u0002\/P\/Q\r\/P\u0000\u0002r\u0000\u0000\u0000\u0000\/R\/S\r\/R\u0000\u0001m\u0000\u0000\u0000\u0000\/T\u000e\/T\u0000\u0001\/U\u0011\/U\u0000*\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000t\u0000y\u0000p\u0000e\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000r\u0000.\r\/S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002\/Q\u0000\u0002\/V\/W\r\/V\u0000\u0003l\u0000\u0002\u0000\u0000mlk\u0001m\u0000\u0000\u0001l\u0000\u0000\u0001k\u0000\u0000\u0002\/W\u0000\u0002\/X\/Y\r\/X\u0000\u0002r\u0000\u0000\u0000\u0000\/Z\/[\r\/Z\u0000\u0001J\u0000\u0000\u0000\u0000\/\\\u0002\/\\\u0000\u0002\/]\/^\r\/]\u0000\u0002n\u0000\u0003\u0000\u0000\/_\/`\r\/_\u0000\u00011\u0000\u0000\u0000\u0000j\nj\u0000\u0004\ntxdl\r\/`\u0000\u00011\u0000\u0000\u0000\u0000i\ni\u0000\u0004\nascr\u0002\/^\u0000\u0002\/ah\r\/a\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u0002h\u0000\u0000\r\/[\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/b\u0002\/b\u0000\u0002\/c\/d\r\/c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/d\u0000\u0002\/ee\r\/e\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/f\/g\r\/f\u0000\u00011\u0000\u0000\u0000\u0000d\nd\u0000\u0004\ntxdl\r\/g\u0000\u00011\u0000\u0000\u0000\u0000c\nc\u0000\u0004\nascr\u0002e\u0000\u0000\u0002\/Y\u0000\u0002\/h\/i\r\/h\u0000\u0003l\u0000\u0002\u0000\u0000ba`\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\/i\u0000\u0002\/j\/k\r\/j\u0000\u0002r\u0000\u0000\u0000\u0000\/l\/m\r\/l\u0000\u0002n\u0000\u0000\u0000\u0000\/n\/o\r\/n\u0000\u00024\u0000\u0000\u0000\u0000_\/p\n_\u0000\u0004\ncitm\r\/p\u0000\u0001m\u0000\u0000\u0000\u0000^\u0003^\u0000\u0002\r\/o\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/k\u0000\u0002\/q\/r\r\/q\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\/s\/t\r\/s\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/t\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/u\/v\r\/u\u0000\u00011\u0000\u0000\u0001\u0000\u0001\u0002Z\nZ\u0000\u0004\ntxdl\r\/v\u0000\u00011\u0000\u0000\u0000\u0001\u0000Y\nY\u0000\u0004\nascr\u0002\/r\u0000\u0002\/w\/x\r\/w\u0000\u0003l\u0000\u0002\u0001\u0004\u0001\u0004XWV\u0001X\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002\/x\u0000\u0002\/y\/z\r\/y\u0000\u0002r\u0000\u0000\u0001\u0004\u0001\n\/{\/|\r\/{\u0000\u0002n\u0000\u0000\u0001\u0004\u0001\b\/}\/~\r\/}\u0000\u00024\u0000\u0000\u0001\u0005\u0001\bU\/\nU\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\u0007T\u0003T\u0000\u0001\r\/~\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005S\u000bS\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/z\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u000b\u0001\u0010\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u000b\u0001\fQ\u000bQ\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001\r\u0001\u000fP\nP\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001\f\u0001\rO\nO\u0000\u0004\nascr\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011KJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002\/\u0000\u0002\/H\r\/\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u0002r\u0000\u0000\r\/>\u0000\u0001k\u0000\u0000\u0001\u0015\u0001~\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0001\u0001\u0015\u0001\u0015D\/\/\u0001D\u0000\u0000\f\/\u0000\u001b\u0000\u0015tell me to log errMsg\u0000\u0002\u0000\u0000\u000e\/\u0000\u0001\/\u0011\/\u0000*\u0000t\u0000e\u0000l\u0000l\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000e\u0000r\u0000r\u0000M\u0000s\u0000g\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u0015\u0001\u0018\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016C\u000bC\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0019\u0001\u0019A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0004Z\u0000\u0000\u0001\u0019\u0001G\/\/>=\r\/\u0000\u0002E\u0000\u0000\u0001\u0019\u0001\u001c\/\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001a<\u000b<\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b;\u000b;\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\r\/\u0000\u0001k\u0000\u0000\u0001\u001f\u0001C\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001\u001f\u00016\/\/\r\/\u0000\u0001J\u0000\u0000\u0001\u001f\u0001%\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002n\u0000\u0003\u0001\u001f\u0001\"\/\/\r\/\u0000\u00011\u0000\u0000\u0001 \u0001\":\n:\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001\u001f\u0001 9\n9\u0000\u0004\nascr\u0002\/\u0000\u0002\/8\r\/\u0000\u0001o\u0000\u0000\u0001\"\u0001#7\u000b7\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u00028\u0000\u0000\r\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00006\u000b6\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/\u0000\u0002\/5\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u00012\u000144\n4\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u00011\u000123\n3\u0000\u0004\nascr\u00025\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u00017\u0001=\/\/\r\/\u0000\u0002n\u0000\u0000\u00017\u0001;\/\/\r\/\u0000\u00024\u0000\u0000\u00018\u0001;2\/\n2\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u00019\u0001:1\u00031\u0000\u0002\r\/\u0000\u0001o\u0000\u0000\u00017\u000180\u000b0\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/.\r\/\u0000\u0002r\u0000\u0000\u0001>\u0001C\/\/\r\/\u0000\u0001o\u0000\u0000\u0001>\u0001?-\u000b-\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001@\u0001B,\n,\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001?\u0001@+\n+\u0000\u0004\nascr\u0002.\u0000\u0000\u0002>\u0000\u0000\u0001=\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001H\u0001H*)(\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0004Z\u0000\u0000\u0001H\u0001|\/\/'&\r\/\u0000\u0002E\u0000\u0000\u0001H\u0001K\/\/\r\/\u0000\u0001o\u0000\u0000\u0001H\u0001I%\u000b%\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0001I\u0001J$\u000b$\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/\u0000\u0001k\u0000\u0000\u0001N\u0001x\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001N\u0001e\/\/\r\/\u0000\u0001J\u0000\u0000\u0001N\u0001T\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002n\u0000\u0003\u0001N\u0001Q\/\/\r\/\u0000\u00011\u0000\u0000\u0001O\u0001Q#\n#\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001N\u0001O\"\n\"\u0000\u0004\nascr\u0002\/\u0000\u0002\/!\r\/\u0000\u0001o\u0000\u0000\u0001Q\u0001R \u000b \u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u0002!\u0000\u0000\r\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00060\u0000\u0002od\u0000\u0000\u0002\/\u0000\u0002\/\u001e\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001a\u0001c\u001d\n\u001d\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001`\u0001a\u001c\n\u001c\u0000\u0004\nascr\u0002\u001e\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001f\u0001k\/\/\r\/\u0000\u0001o\u0000\u0000\u0001f\u0001g\u001b\u000b\u001b\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001h\u0001j\u001a\n\u001a\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001g\u0001h\u0019\n\u0019\u0000\u0004\nascr\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002r\u0000\u0000\u0001l\u0001r\/\/\r\/\u0000\u0002n\u0000\u0000\u0001l\u0001p\/\/\r\/\u0000\u00024\u0000\u0000\u0001m\u0001p\u0018\/\n\u0018\u0000\u0004\ncitm\r\/\u0000\u0001m\u0000\u0000\u0001n\u0001o\u0017\u0003\u0017\u0000\u0001\r\/\u0000\u0001o\u0000\u0000\u0001l\u0001m\u0016\u000b\u0016\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\/\u0000\u0002\/\u0014\r\/\u0000\u0002r\u0000\u0000\u0001s\u0001x\/\/\r\/\u0000\u0001o\u0000\u0000\u0001s\u0001t\u0013\u000b\u0013\u0000\u00060\u0000\u0002od\u0000\u0000\r\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\/\/\r\/\u0000\u00011\u0000\u0000\u0001u\u0001w\u0012\n\u0012\u0000\u0004\ntxdl\r\/\u0000\u00011\u0000\u0000\u0001t\u0001u\u0011\n\u0011\u0000\u0004\nascr\u0002\u0014\u0000\u0000\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001}\u0001}\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\/\u0000\u0002\/\r\r\/\u0000\u0003l\u0000\u0001\u0001}\u0001}\f\/\/\u0001\f\u0000\u0000\f\/\u0000O\u0000Iset {text:objectString} to (objectString as string) -- what does THIS do?\u0000\u0002\u0000\u0000\u000e\/\u0000\u0001\/\u0011\/\u0000\u0000s\u0000e\u0000t\u0000 \u0000{\u0000t\u0000e\u0000x\u0000t\u0000:\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000}\u0000 \u0000t\u0000o\u0000 \u0000(\u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000s\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000)\u0000 \u0000-\u0000-\u0000 \u0000w\u0000h\u0000a\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000T\u0000H\u0000I\u0000S\u0000 \u0000d\u0000o\u0000?\u0002\r\u0000\u0000\u0002.\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0001\u0001\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002\/\u0000\u0002\/\b\r\/\u0000\u0001L\u0000\u0000\u0001\u0001\/\r\/\u0000\u0001o\u0000\u0000\u0001\u0001\u0007\u000b\u0007\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u0002\b\u0000\u0000\u0002\u0000\u0000\u0002.x\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\/\u0000\u0002\/\/\r\/\u0000\u0002i\u0000\u0000\u0001'\u0001*\/\/\r\/\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\u0000\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u0002\/\u0000\u0002\/\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u0002\/\u0000\u0002\/\r\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u0000\u0000\u0002\u0000\u0000\r\/\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q\/\u0002\/\u0000\u0002\/\/\r\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\/\/\u0001\u0000\u0000\f\/\u0000\u0012\u0000\f version 1.1\u0000\u0002\u0000\u0000\u000e\/\u0000\u00010\u0000\u00110\u0000\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00001\u0002\/\u0000\u00020\u00010\u0002\r0\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0002\u0000\u00020\u0003\r0\u0003\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000Q0\u00040\u00050\u0006\r0\u0004\u0000\u0001k\u0000\u0000\u0000\u0003\u0000A0\u0007\u00020\u0007\u0000\u00020\b0\t\r0\b\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a0\n0\u000b\r0\n\u0000\u0001J\u0000\u0000\u0000\u0003\u0000\t0\f\u00020\f\u0000\u00020\r0\u000e\r0\r\u0000\u0002n\u0000\u0003\u0000\u0003\u0000\u00060\u000f0\u0010\r0\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\ntxdl\r0\u0010\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nascr\u00020\u000e\u0000\u00020\u0011\r0\u0011\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u0000\u0000\r0\u000b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00000\u0012\u00020\u0012\u0000\u00020\u00130\u0014\r0\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00020\u0014\u0000\u00020\u0015\r0\u0015\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000\u00160\u0017\r0\u0016\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\ntxdl\r0\u0017\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nascr\u0002\u0000\u0000\u00020\t\u0000\u00020\u00180\u0019\r0\u0018\u0000\u0004Z\u0000\u0000\u0000\u001b\u000080\u001a0\u001b0\u001c\r0\u001a\u0000\u0002=\u0000\u0003\u0000\u001b\u0000$0\u001d0\u001e\r0\u001d\u0000\u0003l\u0000\u0005\u0000\u001b\u0000\"0\u001f\r0\u001f\u0000\u0003I\u0000\u0001\u0000\u001b\u0000\"0 \n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r0 \u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e0!0\"\r0!\u0000\u00012\u0000\u0001\u0000\u001c\u0000\u001e\n\u0000\u0004\ncitm\r0\"\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r0\u001e\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\r0\u001b\u0000\u0001k\u0000\u0000\u0000'\u0000\/0#\u00020#\u0000\u00020$0%\r0$\u0000\u0002r\u0000\u0000\u0000'\u0000,0&0'\r0&\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0'\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000(0)\r0(\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\ntxdl\r0)\u0000\u00011\u0000\u0000\u0000(\u0000)\n\u0000\u0004\nascr\u00020%\u0000\u00020*\r0*\u0000\u0001L\u0000\u0000\u0000-\u0000\/0+\r0+\u0000\u0001m\u0000\u0000\u0000-\u0000.0,\u000e0,\u0000\u00010-\u00110-\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r0\u001c\u0000\u0002r\u0000\u0000\u00002\u000080.0\/\r0.\u0000\u0002n\u0000\u0000\u00002\u000060001\r00\u0000\u00024\u0000\u0000\u00003\u0000602\n\u0000\u0004\ncitm\r02\u0000\u0001m\u0000\u0000\u00004\u00005\u0003\u0000\u0001\r01\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r0\/\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u000003\r03\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001\u0000\u0000\u0001\u0000\u0000\u00020\u0019\u0000\u00020405\r04\u0000\u0002r\u0000\u0000\u00009\u0000>0607\r06\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r07\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000809\r08\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\ntxdl\r09\u0000\u00011\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nascr\u000205\u0000\u00020:\r0:\u0000\u0001L\u0000\u0000\u0000?\u0000A0;\r0;\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0002\u0000\u0000\r0\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000<0=\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r0<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00060=\u0000\u00030>\n\u0000\u0004\nerrn\r0>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r0\u0006\u0000\u0001k\u0000\u0000\u0000I\u0000Q0?\u00020?\u0000\u00020@0A\r0@\u0000\u0002r\u0000\u0000\u0000I\u0000N0B0C\r0B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r0C\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00000D0E\r0D\u0000\u00011\u0000\u0000\u0000K\u0000M\n\u0000\u0004\ntxdl\r0E\u0000\u00011\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nascr\u00020A\u0000\u00020F\r0F\u0000\u0003l\u0000\u0001\u0000O\u0000Q0G0H0I\r0G\u0000\u0001L\u0000\u0000\u0000O\u0000Q0J\r0J\u0000\u0001m\u0000\u0000\u0000O\u0000P0K\u000e0K\u0000\u00010L\u00110L\u0000\u0000\f0H\u00003\u0000- return nothing if the stop text is not found\u0000\u0002\u0000\u0000\u000e0I\u0000\u00010M\u00110M\u0000Z\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\u0002\/\u0000\u00020N0O\r0N\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020O\u0000\u00020P0Q\r0P\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020Q\u0000\u00020R0S\r0R\u0000\u0002i\u0000\u0000\u0001+\u0001.0T0U\r0T\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00000V\u000b\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u00020V\u0000\u00020W\r0W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r0U\u0000\u0001k\u0000\u0000\u0000\u0000\u00000X\u00020X\u0000\u00020Y0Z\r0Y\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00000[0\\\u0001\u0000\u0000\f0[\u0000\u0012\u0000\f version 1.6\u0000\u0002\u0000\u0000\u000e0\\\u0000\u00010]\u00110]\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00006\u00020Z\u0000\u00020^0_\r0^\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020_\u0000\u00020`0a\r0`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b0b0c\r0b\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00060d\u00060d\u0000\u00030e0f\u000b\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r0e\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000\u0002\u00060f\u0000\u00030g\u000b\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r0g\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\b\u000bboovfals\u0006\u0000\u0000\r0c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00020a\u0000\u00020h0i\r0h\u0000\u0003l\u0000\u0002\u0000\t\u0000\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00020i\u0000\u00020j0k\r0j\u0000\u0004Z\u0000\u0000\u0000\t\u0000'0l0m\r0l\u0000\u0002F\u0000\u0000\u0000\t\u0000\u001a0n0o\r0n\u0000\u0003l\u0000\u0005\u0000\t\u0000\u000e0p\r0p\u0000\u0002>\u0001\u0000\u0000\t\u0000\u000e0q0r\r0q\u0000\u0002n\u0000\u0000\u0000\t\u0000\f0s0t\r0s\u0000\u0001m\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npcls\r0t\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r0r\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\n\u0000\u0004\nlist\u0001\u0000\u0000\u0001\u0000\u0000\r0o\u0000\u0003l\u0000\u0005\u0000\u0011\u0000\u00180u\r0u\u0000\u0002>\u0001\u0000\u0000\u0011\u0000\u00180v0w\r0v\u0000\u0002c\u0000\u0000\u0000\u0011\u0000\u00160x0y\r0x\u0000\u0003l\u0000\u0005\u0000\u0011\u0000\u00140z\r0z\u0000\u0002n\u0000\u0000\u0000\u0011\u0000\u00140{0|\r0{\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0014\n\u0000\u0004\npcls\r0|\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r0y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\u0004\nTEXT\r0w\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u00170}\u000e0}\u0000\u00010~\u00110~\u0000\f\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\r0m\u0000\u0003R\u0000\u0000\u0000\u001d\u0000#00\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r0\u0000\u0001m\u0000\u0000\u0000!\u0000\"0\u000e0\u0000\u00010\u00110\u0001\u0014\u0000g\u0000e\u0000t\u0000T\u0000e\u0000x\u0000t\u0000B\u0000e\u0000t\u0000w\u0000e\u0000e\u0000n\u0000 \u0000F\u0000A\u0000I\u0000L\u0000E\u0000D\u0000:\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000m\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000,\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u00060\u0000\u00030\n\u0000\u0004\nerrn\r0\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0004\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u00020k\u0000\u000200\r0\u0000\u0004Z\u0000\u0000\u0000(\u0000`00\r0\u0000\u0002=\u0000\u0003\u0000(\u0000-00\r0\u0000\u0002n\u0000\u0000\u0000(\u0000+00\r0\u0000\u0001m\u0000\u0000\u0000)\u0000+\n\u0000\u0004\npcls\r0\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\u0004\nlist\r0\u0000\u0001k\u0000\u0000\u00000\u0000\\0\u00020\u0000\u000200\r0\u0000\u0004Z\u0000\u0000\u00000\u0000F00\r0\u0000\u0002=\u0000\u0003\u00000\u0000700\r0\u0000\u0003l\u0000\u0005\u00000\u000050\r0\u0000\u0003I\u0000\u0001\u00000\u000050\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r0\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r0\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0004\r0\u0000\u0002r\u0000\u0000\u0000:\u0000B00\r0\u0000\u0002n\u0000\u0000\u0000:\u0000>00\r0\u0000\u00024\u0000\u0000\u0000;\u0000>0\n\u0000\u0004\ncobj\r0\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003\u0000\u0004\r0\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u000000\r0\u0000\u0001o\u0000\u0000\u0000?\u0000A\u000b\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r0\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u0002\u0000\u0000\u0001\u0000\u0000\u00020\u0000\u00020\r0\u0000\u0002r\u0000\u0000\u0000G\u0000\\00\r0\u0000\u0001K\u0000\u0000\u0000G\u0000Z0\u00060\u0000\u000300\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r0\u0000\u0002n\u0000\u0000\u0000H\u0000L00\r0\u0000\u00024\u0000\u0000\u0000I\u0000L0\n\u0000\u0004\ncobj\r0\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\r0\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00060\u0000\u000300\u000b\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r0\u0000\u0002n\u0000\u0000\u0000M\u0000Q00\r0\u0000\u00024\u0000\u0000\u0000N\u0000Q0\n\u0000\u0004\ncobj\r0\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0003\u0000\u0002\r0\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00060\u0000\u00030\u000b\u0000\u00160\u0000\taftertext\u0000\tafterText\r0\u0000\u0002n\u0000\u0000\u0000R\u0000V00\r0\u0000\u00024\u0000\u0000\u0000S\u0000V0\n\u0000\u0004\ncobj\r0\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0003\r0\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0001\u0000a\u0000f000\r0\u0000\u0002r\u0000\u0000\u0000a\u0000f00\r0\u0000\u0002b\u0000\u0000\u0000a\u0000d00\r0\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\f0\u0000,\u0000& add on default preferences, if needed\u0000\u0002\u0000\u0000\u000e0\u0000\u00010\u00110\u0000L\u0000 \u0000a\u0000d\u0000d\u0000 \u0000o\u0000n\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000,\u0000 \u0000i\u0000f\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000g\u0000l00\r0\u0000\u0002n\u0000\u0000\u0000g\u0000j00\r0\u0000\u0001o\u0000\u0000\u0000h\u0000j\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r0\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000m\u0000r00\r0\u0000\u0002n\u0000\u0000\u0000m\u0000p00\r0\u0000\u0001o\u0000\u0000\u0000n\u0000p~\u000b~\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r0\u0000\u0001o\u0000\u0000\u0000m\u0000n}\u000b}\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000s\u0000x00\r0\u0000\u0002n\u0000\u0000\u0000s\u0000v00\r0\u0000\u0001o\u0000\u0000\u0000t\u0000v{\u000b{\u0000\u00160\u0000\taftertext\u0000\tafterText\r0\u0000\u0001o\u0000\u0000\u0000s\u0000tz\u000bz\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000y\u000by\u0000\u00160\u0000\taftertext\u0000\tafterText\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000y\u0000~00\r0\u0000\u0002n\u0000\u0000\u0000y\u0000|00\r0\u0000\u0001o\u0000\u0000\u0000z\u0000|x\u000bx\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r0\u0000\u0001o\u0000\u0000\u0000y\u0000zw\u000bw\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u000000\r0\u0000\u0002n\u0000\u0000\u0000\u000000\r0\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r0\u0000\u0001o\u0000\u0000\u0000\u0000t\u000bt\u0000\t0\u0000\u0005prefs\u0000\u0000\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u00020\u0000\u000200\r0\u0000\u0003l\u0000\u0002\u0000\u0000rqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0003Q\u0000\u0000\u0000\u0000000\r0\u0000\u0001k\u0000\u0000\u0000\u00000\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u000000\r0\u0000\u0001J\u0000\u0000\u0000\u00000\u00020\u0000\u000200\r0\u0000\u0002n\u0000\u0003\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000\u0000o\no\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000\u0000n\nn\u0000\u0004\nascr\u00020\u0000\u00020m\r0\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u0002m\u0000\u0000\r0\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00000\u00020\u0000\u000200\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00020\u0000\u00020j\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000\u0000i\ni\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000\u0000h\nh\u0000\u0004\nascr\u0002j\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u000000\r0\u0000\u0002n\u0000\u0000\u0000\u000000\r0\u0000\u00024\u0000\u0000\u0000\u0000g0\ng\u0000\u0004\ncitm\r0\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\r0\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r0\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00000dc\r0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\u0001d\u0000\u0000\u0001c\u0000\u0000\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u000000\r0\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00160\u0000\taftertext\u0000\tafterText\r0\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000000\r0\u0000\u00011\u0000\u0000\u0000\u0000`\n`\u0000\u0004\ntxdl\r0\u0000\u00011\u0000\u0000\u0000\u0000_\n_\u0000\u0004\nascr\u00020\u0000\u000200\r0\u0000\u0002r\u0000\u0000\u0000\u000000\r0\u0000\u0002n\u0000\u0000\u0000\u00001\u00001\u0001\r1\u0000\u0000\u00024\u0000\u0000\u0000\u0000^1\u0002\n^\u0000\u0004\ncitm\r1\u0002\u0000\u0001m\u0000\u0000\u0000\u0000]\u0003]\u0000\u0001\r1\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\r0\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001\u0003[Z\r1\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001[\u0000\u0000\u0001Z\u0000\u0000\u00020\u0000\u00021\u00041\u0005\r1\u0004\u0000\u0002r\u0000\u0000\u0000\u00001\u00061\u0007\r1\u0006\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r1\u0007\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00001\b1\t\r1\b\u0000\u00011\u0000\u0000\u0000\u0000W\nW\u0000\u0004\ntxdl\r1\t\u0000\u00011\u0000\u0000\u0000\u0000V\nV\u0000\u0004\nascr\u00021\u0005\u0000\u00021\n1\u000b\r1\n\u0000\u0003l\u0000\u0002\u0000\u0000UTS\u0001U\u0000\u0000\u0001T\u0000\u0000\u0001S\u0000\u0000\u00021\u000b\u0000\u00021\f1\r\r1\f\u0000\u0004Z\u0000\u0001\u0000\u00001\u000e1\u000fRQ\r1\u000e\u0000\u0001o\u0000\u0000\u0000\u0000P\u000bP\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\r1\u000f\u0000\u0002r\u0000\u0000\u0000\u00001\u00101\u0011\r1\u0010\u0000\u0002b\u0000\u0000\u0000\u00001\u00121\u0013\r1\u0012\u0000\u0002b\u0000\u0000\u0000\u00001\u00141\u0015\r1\u0014\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\r1\u0015\u0000\u0001o\u0000\u0000\u0000\u0000N\u000bN\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\r1\u0013\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\taftertext\u0000\tafterText\r1\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0002R\u0000\u0000\u0001Q\u0000\u0000\u00021\r\u0000\u00021\u0016K\r1\u0016\u0000\u0003l\u0000\u0002\u0000\u0000JIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002K\u0000\u0000\r0\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000G1\u00171\u0018\nG\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r1\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00061\u0018\u0000\u0003E1\u0019D\nE\u0000\u0004\nerrn\r1\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006D\u0000\u0000\r0\u0000\u0001k\u0000\u0000\u0000\u00001\u001a\u00021\u001a\u0000\u00021\u001b1\u001c\r1\u001b\u0000\u0002r\u0000\u0000\u0000\u00001\u001d1\u001e\r1\u001d\u0000\u0001o\u0000\u0000\u0000\u0000B\u000bB\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r1\u001e\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00001\u001f1 \r1\u001f\u0000\u00011\u0000\u0000\u0000\u0000A\nA\u0000\u0004\ntxdl\r1 \u0000\u00011\u0000\u0000\u0000\u0000@\n@\u0000\u0004\nascr\u00021\u001c\u0000\u00021!1\"\r1!\u0000\u0003l\u0000\u0001\u0000\u0000?1#1$\u0001?\u0000\u0000\f1#\u0000>\u00008 \ttell me to log \"Error in getTextBetween() : \" & errMsg\u0000\u0002\u0000\u0000\u000e1$\u0000\u00011%\u00111%\u0000p\u0000 \u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000l\u0000o\u0000g\u0000 \u0000\"\u0000E\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000n\u0000 \u0000g\u0000e\u0000t\u0000T\u0000e\u0000x\u0000t\u0000B\u0000e\u0000t\u0000w\u0000e\u0000e\u0000n\u0000(\u0000)\u0000 \u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000e\u0000r\u0000r\u0000M\u0000s\u0000g\u00021\"\u0000\u00021&>\r1&\u0000\u0003l\u0000\u0001\u0000\u00001'1(1)\r1'\u0000\u0002r\u0000\u0000\u0000\u00001*1+\r1*\u0000\u0001m\u0000\u0000\u0000\u00001,\u000e1,\u0000\u00011-\u00111-\u0000\u0000\r1+\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001.=<\r1.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u0001=\u0000\u0000\u0001<\u0000\u0000\f1(\u0000:\u00004 return nothing if the surrounding text is not found\u0000\u0002\u0000\u0000\u000e1)\u0000\u00011\/\u00111\/\u0000h\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000u\u0000r\u0000r\u0000o\u0000u\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002>\u0000\u0000\u00020\u0000\u00021011\r10\u0000\u0003l\u0000\u0002\u0000\u0000:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u000211\u0000\u00021213\r12\u0000\u0003l\u0000\u0002\u0000\u0000765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u000213\u0000\u00021415\r14\u0000\u0001L\u0000\u0000\u0000\u000016\r16\u0000\u0001o\u0000\u0000\u0000\u00004\u000b4\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000215\u0000\u0002173\r17\u0000\u0003l\u0000\u0002\u0000\u0000210\u00012\u0000\u0000\u00011\u0000\u0000\u00010\u0000\u0000\u00023\u0000\u0000\u00020S\u0000\u00021819\r18\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\/.-\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u000219\u0000\u00021:1;\r1:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000,+*\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u00021;\u0000\u00021<1=\r1<\u0000\u0002i\u0000\u0000\u0001\/\u000121>1?\r1>\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000)1@(\u000b)\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u00021@\u0000\u00021A'\r1A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002'\u0000\u0000\u0002(\u0000\u0000\r1?\u0000\u0001k\u0000\u0000\u0000\u0000\u00001B\u00021B\u0000\u00021C1D\r1C\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000%1E1F\u0001%\u0000\u0000\f1E\u0000\u0012\u0000\f version 1.3\u0000\u0002\u0000\u0000\u000e1F\u0000\u00011G\u00111G\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u00021D\u0000\u00021H1I\r1H\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u00021I\u0000\u00021J1K\r1J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u00061L1M\r1L\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00041N\u00061N\u0000\u0003!1O \u000b!\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1O\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u001f\n\u001f\u0000\b\u000bboovtrue\u0006 \u0000\u0000\r1M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00021K\u0000\u00021P1Q\r1P\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u00021Q\u0000\u00021R1S\r1R\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u00021S\u0000\u00021T1U\r1T\u0000\u0004Z\u0000\u0000\u0000\u0007\u0000[1V1W1X\u0017\r1V\u0000\u0002=\u0000\u0003\u0000\u0007\u0000\f1Y1Z\r1Y\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\n1[1\\\r1[\u0000\u0001m\u0000\u0000\u0000\b\u0000\n\u0016\n\u0016\u0000\u0004\npcls\r1\\\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u0015\u000b\u0015\u0000\t0\u0000\u0005prefs\u0000\u0000\r1Z\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0014\n\u0014\u0000\u0004\nlist\r1W\u0000\u0001k\u0000\u0000\u0000\u000f\u0000?1]\u00021]\u0000\u00021^1_\r1^\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000=1`1a\u00131b\r1`\u0000\u0002?\u0000\u0001\u0000\u000f\u0000\u00161c1d\r1c\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u00141e\u0012\u0011\r1e\u0000\u0003I\u0000\u0001\u0000\u000f\u0000\u0014\u00101f\u000f\n\u0010\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r1f\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000e\u000b\u000e\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\r1d\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\r\u0003\r\u0000\u0002\r1a\u0000\u0001k\u0000\u0000\u0000\u0019\u0000,1g\u00021g\u0000\u00021h1i\r1h\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\f1j1k\u0001\f\u0000\u0000\f1j\u0000-\u0000' get any parameters after the initial 3\u0000\u0002\u0000\u0000\u000e1k\u0000\u00011l\u00111l\u0000N\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000 \u00003\u00021i\u0000\u00021m\u000b\r1m\u0000\u0002r\u0000\u0000\u0000\u0019\u0000,1n1o\r1n\u0000\u0001K\u0000\u0000\u0000\u0019\u0000*1p\u00061p\u0000\u0003\n1q1r\u000b\n\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1q\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e1s1t\r1s\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\t1u\n\t\u0000\u0004\ncobj\r1u\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\b\u0003\b\u0000\u0001\r1t\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u0007\u000b\u0007\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061r\u0000\u0003\u00061v1w\u000b\u0006\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1v\u0000\u0002n\u0000\u0000\u0000\u001f\u0000#1x1y\r1x\u0000\u00024\u0000\u0000\u0000 \u0000#\u00051z\n\u0005\u0000\u0004\ncobj\r1z\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0004\u0003\u0004\u0000\u0002\r1y\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u0003\u000b\u0003\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061w\u0000\u0003\u00021{\u0001\u000b\u0002\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1{\u0000\u0002n\u0000\u0000\u0000$\u0000(1|1}\r1|\u0000\u00024\u0000\u0000\u0000%\u0000(\u00001~\n\u0000\u0000\u0004\ncobj\r1~\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0003\r1}\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0001\u0000\u0000\r1o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u000b\u0000\u0000\u0002\u0013\u0000\u0000\r1b\u0000\u0002r\u0000\u0000\u0000\/\u0000=11\r1\u0000\u0001K\u0000\u0000\u0000\/\u0000;1\u00061\u0000\u000311\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0002n\u0000\u0000\u00000\u0000411\r1\u0000\u00024\u0000\u0000\u00001\u000041\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r1\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00061\u0000\u00031\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1\u0000\u0002n\u0000\u0000\u00005\u0000911\r1\u0000\u00024\u0000\u0000\u00006\u000091\n\u0000\u0004\ncobj\r1\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0002\r1\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00021_\u0000\u00021\r1\u0000\u0003l\u0000\u0002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00021X\u0000\u000211\r1\u0000\u0002>\u0000\u0001\u0000B\u0000L11\r1\u0000\u0002n\u0000\u0000\u0000B\u0000E11\r1\u0000\u0001m\u0000\u0000\u0000C\u0000E\n\u0000\u0004\npcls\r1\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0003l\u0000\u0005\u0000E\u0000K1\r1\u0000\u0002n\u0000\u0000\u0000E\u0000K11\r1\u0000\u0001m\u0000\u0000\u0000I\u0000K\n\u0000\u0004\npcls\r1\u0000\u0001K\u0000\u0000\u0000E\u0000I1\u00061\u0000\u00031\u000b\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\r1\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u0003\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u00021\r1\u0000\u0001k\u0000\u0000\u0000O\u0000W1\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0001\u0000O\u0000O11\u0001\u0000\u0000\f1\u0000x\u0000r Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\u0000\u0002\u0000\u0000\u000e1\u0000\u00011\u00111\u0000\u0000 \u0000T\u0000e\u0000s\u0000t\u0000 \u0000b\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000v\u0000o\u0000i\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000c\u0000o\u0000n\u0000f\u0000l\u0000i\u0000c\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000r\u0000m\u0000 \u0000\"\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000\"\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000O\u0000O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003R\u0000\u0000\u0000O\u0000U11\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r1\u0000\u0001m\u0000\u0000\u0000S\u0000T1\u000e1\u0000\u00011\u00111\u0001>\u0000T\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000'\u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000'\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000a\u0000t\u0000 \u0000l\u0000e\u0000a\u0000s\u0000t\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000r\u0000a\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000(\u0000s\u0000)\u0000 \u0000i\u0000n\u0000 \u0000c\u0000u\u0000r\u0000l\u0000y\u0000 \u0000b\u0000r\u0000a\u0000c\u0000k\u0000e\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000e\u0000a\u0000s\u0000y\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000'\u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0000.\u0000 \u00061\u0000\u00031\n\u0000\u0004\nerrn\r1\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0003\u0004\u0000\u0006\u0000\u0000\u00021\u0000\u00021\r1\u0000\u0003l\u0000\u0002\u0000V\u0000V\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0017\u0000\u0000\u00021U\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\\\u0000\\\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\\\u0000\\\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000\\\u0000a11\r1\u0000\u0002b\u0000\u0000\u0000\\\u0000_11\r1\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000b\u0000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000b\u0000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000b\u0000g11\r1\u0000\u0002n\u0000\u0000\u0000b\u0000e11\r1\u0000\u0001o\u0000\u0000\u0000c\u0000e\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000h\u0000m11\r1\u0000\u0002n\u0000\u0000\u0000h\u0000k11\r1\u0000\u0001o\u0000\u0000\u0000i\u0000k\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000n\u0000s11\r1\u0000\u0002n\u0000\u0000\u0000n\u0000q11\r1\u0000\u0001o\u0000\u0000\u0000o\u0000q\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1\u0000\u0001o\u0000\u0000\u0000n\u0000o\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000t\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000t\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000t\u0000y11\r1\u0000\u0002n\u0000\u0003\u0000t\u0000w11\r1\u0000\u00011\u0000\u0000\u0000u\u0000w\n\u0000\u0004\ntxdl\r1\u0000\u00011\u0000\u0000\u0000t\u0000u\n\u0000\u0004\nascr\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00021\u0000\u00021\r1\u0000\u0003Q\u0000\u0000\u0000z\u0000111\r1\u0000\u0001k\u0000\u0000\u0000}\u00001\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000}\u000011\r1\u0000\u0003l\u0001\u0000\u0000}\u00001\r1\u0000\u0001J\u0000\u0000\u0000}\u00001\u00021\u0000\u00021\r1\u0000\u0002c\u0000\u0000\u0000}\u000011\r1\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\r1\u0000\u0001m\u0000\u0000\u0000~\u0000\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r1\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000011\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0004Z\u0000\u0000\u0000\u0000111\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r1\u0000\u0003P\u0000\u0000\u0000\u000011\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0002n\u0000\u0000\u0000\u000011\r1\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r1\u0000\u0003P\u0000\u0000\u0000\u000011\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0002n\u0000\u0000\u0000\u000011\r1\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r1\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00001\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00021\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00021\u0000\u000211\r1\u0000\u0002r\u0000\u0000\u0000\u000011\r1\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r1\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000011\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r1\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00021\u0000\u00021\r1\u0000\u0001L\u0000\u0000\u0000\u00002\u0000\r2\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0002\u0000\u0000\r1\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00002\u00012\u0002\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00062\u0002\u0000\u00032\u0003\n\u0000\u0004\nerrn\r2\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\r1\u0000\u0001k\u0000\u0000\u0000\u00002\u0004\u00022\u0004\u0000\u00022\u00052\u0006\r2\u0005\u0000\u0003Q\u0000\u0000\u0000\u00002\u00072\b\r2\u0007\u0000\u0002r\u0000\u0000\u0000\u00002\t2\n\r2\t\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r2\n\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00002\u000b2\f\r2\u000b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r2\f\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\r2\b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u00022\u0006\u0000\u00022\r\r2\r\u0000\u0003R\u0000\u0000\u0000\u00002\u000e2\u000f\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u000e\u0000\u0002b\u0000\u0000\u0000\u00002\u00102\u0011\r2\u0010\u0000\u0001m\u0000\u0000\u0000\u00002\u0012\u000e2\u0012\u0000\u00012\u0013\u00112\u0013\u0000:\u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000p\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000:\u0000 \r2\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00062\u000f\u0000\u00032\u0014\n\u0000\u0004\nerrn\r2\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u00021=\u0000\u00022\u00152\u0016\r2\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0016\u0000\u00022\u00172\u0018\r2\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u00022\u0018\u0000\u00022\u00192\u001a\r2\u0019\u0000\u0002i\u0000\u0000\u00013\u000162\u001b2\u001c\r2\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000{2\u001dz\u000b{\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u00022\u001d\u0000\u00022\u001ey\r2\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002y\u0000\u0000\u0002z\u0000\u0000\r2\u001c\u0000\u0001k\u0000\u0000\u0000\u0000\u00002\u001f\u00022\u001f\u0000\u00022 2!\r2 \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000w2\"2#\u0001w\u0000\u0000\f2\"\u0000\u0012\u0000\f version 1.4\u0000\u0002\u0000\u0000\u000e2#\u0000\u00012$\u00112$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00004\u00022!\u0000\u00022%2&\r2%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000vut\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u00022&\u0000\u00022'2(\r2'\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u00062)2*\r2)\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u00042+\u00062+\u0000\u0003s2,r\u000bs\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2,\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002q\nq\u0000\b\u000bboovtrue\u0006r\u0000\u0000\r2*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00022(\u0000\u00022-2.\r2-\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\u0007onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u00022.\u0000\u00022\/20\r2\/\u0000\u0004Z\u0000\u0000\u0000\u0007\u0000e212223l\r21\u0000\u0002=\u0000\u0003\u0000\u0007\u0000\f2425\r24\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\n2627\r26\u0000\u0001m\u0000\u0000\u0000\b\u0000\nk\nk\u0000\u0004\npcls\r27\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bj\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\r25\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000bi\ni\u0000\u0004\nlist\r22\u0000\u0001k\u0000\u0000\u0000\u000f\u0000I28\u000228\u0000\u0002292:\r29\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000G2;2<h2=\r2;\u0000\u0002?\u0000\u0001\u0000\u000f\u0000\u00162>2?\r2>\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u00142@gf\r2@\u0000\u0003I\u0000\u0001\u0000\u000f\u0000\u0014e2Ad\ne\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r2A\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010c\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002d\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\r2?\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015b\u0003b\u0000\u0003\r2<\u0000\u0001k\u0000\u0000\u0000\u0019\u000012B\u00022B\u0000\u00022C2D\r2C\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019a2E2F\u0001a\u0000\u0000\f2E\u0000-\u0000' get any parameters after the initial 3\u0000\u0002\u0000\u0000\u000e2F\u0000\u00012G\u00112G\u0000N\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000s\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000i\u0000t\u0000i\u0000a\u0000l\u0000 \u00003\u00022D\u0000\u00022H`\r2H\u0000\u0002r\u0000\u0000\u0000\u0019\u000012I2J\r2I\u0000\u0001K\u0000\u0000\u0000\u0019\u0000\/2K\u00062K\u0000\u0003_2L2M\u000b_\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2L\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e2N2O\r2N\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e^2P\n^\u0000\u0004\ncobj\r2P\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d]\u0003]\u0000\u0001\r2O\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\\\u000b\\\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062M\u0000\u0003[2Q2R\u000b[\u0000\u00140\u0000\boldchars\u0000\boldChars\r2Q\u0000\u0002n\u0000\u0000\u0000\u001f\u0000#2S2T\r2S\u0000\u00024\u0000\u0000\u0000 \u0000#Z2U\nZ\u0000\u0004\ncobj\r2U\u0000\u0001m\u0000\u0000\u0000!\u0000\"Y\u0003Y\u0000\u0002\r2T\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 X\u000bX\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062R\u0000\u0003W2V2W\u000bW\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2V\u0000\u0002n\u0000\u0000\u0000$\u0000(2X2Y\r2X\u0000\u00024\u0000\u0000\u0000%\u0000(V2Z\nV\u0000\u0004\ncobj\r2Z\u0000\u0001m\u0000\u0000\u0000&\u0000'U\u0003U\u0000\u0003\r2Y\u0000\u0001o\u0000\u0000\u0000$\u0000%T\u000bT\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062W\u0000\u0003S2[R\u000bS\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2[\u0000\u0002n\u0000\u0000\u0000)\u0000-2\\2]\r2\\\u0000\u00024\u0000\u0000\u0000*\u0000-Q2^\nQ\u0000\u0004\ncobj\r2^\u0000\u0001m\u0000\u0000\u0000+\u0000,P\u0003P\u0000\u0004\r2]\u0000\u0001o\u0000\u0000\u0000)\u0000*O\u000bO\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006R\u0000\u0000\r2J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002`\u0000\u0000\u0002h\u0000\u0000\r2=\u0000\u0002r\u0000\u0000\u00004\u0000G2_2`\r2_\u0000\u0001K\u0000\u0000\u00004\u0000E2a\u00062a\u0000\u0003M2b2c\u000bM\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2b\u0000\u0002n\u0000\u0000\u00005\u000092d2e\r2d\u0000\u00024\u0000\u0000\u00006\u00009L2f\nL\u0000\u0004\ncobj\r2f\u0000\u0001m\u0000\u0000\u00007\u00008K\u0003K\u0000\u0001\r2e\u0000\u0001o\u0000\u0000\u00005\u00006J\u000bJ\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062c\u0000\u0003I2g2h\u000bI\u0000\u00140\u0000\boldchars\u0000\boldChars\r2g\u0000\u0002n\u0000\u0000\u0000:\u0000>2i2j\r2i\u0000\u00024\u0000\u0000\u0000;\u0000>H2k\nH\u0000\u0004\ncobj\r2k\u0000\u0001m\u0000\u0000\u0000<\u0000=G\u0003G\u0000\u0002\r2j\u0000\u0001o\u0000\u0000\u0000:\u0000;F\u000bF\u0000\t0\u0000\u0005prefs\u0000\u0000\u00062h\u0000\u0003E2lD\u000bE\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2l\u0000\u0002n\u0000\u0000\u0000?\u0000C2m2n\r2m\u0000\u00024\u0000\u0000\u0000@\u0000CC2o\nC\u0000\u0004\ncobj\r2o\u0000\u0001m\u0000\u0000\u0000A\u0000BB\u0003B\u0000\u0003\r2n\u0000\u0001o\u0000\u0000\u0000?\u0000@A\u000bA\u0000\t0\u0000\u0005prefs\u0000\u0000\u0006D\u0000\u0000\r2`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022:\u0000\u00022p?\r2p\u0000\u0003l\u0000\u0002\u0000H\u0000H>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u000223\u0000\u00022q2r\r2q\u0000\u0002>\u0000\u0001\u0000L\u0000V2s2t\r2s\u0000\u0002n\u0000\u0000\u0000L\u0000O2u2v\r2u\u0000\u0001m\u0000\u0000\u0000M\u0000O;\n;\u0000\u0004\npcls\r2v\u0000\u0001o\u0000\u0000\u0000L\u0000M:\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\r2t\u0000\u0003l\u0000\u0005\u0000O\u0000U2w98\r2w\u0000\u0002n\u0000\u0000\u0000O\u0000U2x2y\r2x\u0000\u0001m\u0000\u0000\u0000S\u0000U7\n7\u0000\u0004\npcls\r2y\u0000\u0001K\u0000\u0000\u0000O\u0000S2z\u00062z\u0000\u000362{5\u000b6\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\r2{\u0000\u0001m\u0000\u0000\u0000P\u0000Q4\u00034\u0000\u0003\u00065\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u00022r\u0000\u00022|3\r2|\u0000\u0001k\u0000\u0000\u0000Y\u0000a2}\u00022}\u0000\u00022~2\r2~\u0000\u0003l\u0000\u0001\u0000Y\u0000Y222\u00012\u0000\u0000\f2\u0000x\u0000r Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\u0000\u0002\u0000\u0000\u000e2\u0000\u00012\u00112\u0000\u0000 \u0000T\u0000e\u0000s\u0000t\u0000 \u0000b\u0000y\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000I\u0000S\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000v\u0000o\u0000i\u0000d\u0000 \u0000F\u0000i\u0000l\u0000e\u0000M\u0000a\u0000k\u0000e\u0000r\u0000 \u0000n\u0000a\u0000m\u0000e\u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000c\u0000o\u0000n\u0000f\u0000l\u0000i\u0000c\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000r\u0000m\u0000 \u0000\"\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000\"\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000Y\u0000Y10\/\u00011\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003R\u0000\u0000\u0000Y\u0000_.22\n.\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r2\u0000\u0001m\u0000\u0000\u0000]\u0000^2\u000e2\u0000\u00012\u00112\u0001J\u0000T\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000'\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000(\u0000)\u0000'\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000o\u0000r\u0000 \u0000a\u0000t\u0000 \u0000l\u0000e\u0000a\u0000s\u0000t\u0000 \u0000a\u0000 \u0000l\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000r\u0000a\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000(\u0000s\u0000)\u0000 \u0000i\u0000n\u0000 \u0000c\u0000u\u0000r\u0000l\u0000y\u0000 \u0000b\u0000r\u0000a\u0000c\u0000k\u0000e\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000e\u0000a\u0000s\u0000y\u0000 \u0000u\u0000p\u0000g\u0000r\u0000a\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u0000'\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000(\u0000)\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00003\u0000.\u0000 \u00062\u0000\u0003-2,\n-\u0000\u0004\nerrn\r2\u0000\u0001m\u0000\u0000\u0000[\u0000\\+\u0003+\u0004\u0000\u0006,\u0000\u0000\u00022\u0000\u00022*\r2\u0000\u0003l\u0000\u0002\u0000`\u0000`)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002*\u0000\u0000\u00023\u0000\u0000\u0001l\u0000\u0000\u000220\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000f\u0000f&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000f\u0000f#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000f\u0000k22\r2\u0000\u0002b\u0000\u0000\u0000f\u0000i22\r2\u0000\u0001o\u0000\u0000\u0000f\u0000g \u000b \u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000g\u0000h\u001f\u000b\u001f\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\t0\u0000\u0005prefs\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000l\u0000l\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000l\u0000l\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000l\u0000q22\r2\u0000\u0002n\u0000\u0000\u0000l\u0000o22\r2\u0000\u0001o\u0000\u0000\u0000m\u0000o\u0017\u000b\u0017\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2\u0000\u0001o\u0000\u0000\u0000l\u0000m\u0016\u000b\u0016\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000r\u0000w22\r2\u0000\u0002n\u0000\u0000\u0000r\u0000u22\r2\u0000\u0001o\u0000\u0000\u0000s\u0000u\u0014\u000b\u0014\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0001o\u0000\u0000\u0000r\u0000s\u0013\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000x\u0000}22\r2\u0000\u0002n\u0000\u0000\u0000x\u0000{22\r2\u0000\u0001o\u0000\u0000\u0000y\u0000{\u0011\u000b\u0011\u0000\u00140\u0000\boldchars\u0000\boldChars\r2\u0000\u0001o\u0000\u0000\u0000x\u0000y\u0010\u000b\u0010\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00140\u0000\boldchars\u0000\boldChars\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000~\u000022\r2\u0000\u0002n\u0000\u0000\u0000~\u000022\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2\u0000\u0001o\u0000\u0000\u0000~\u0000\r\u000b\r\u0000\t0\u0000\u0005prefs\u0000\u0000\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0000\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0002c\u0000\u0000\u0000\u000022\r2\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0001m\u0000\u0000\u0000\u0000\u0007\n\u0007\u0000\u0004\nTEXT\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u00022\u0000\u000222\r2\u0000\u0003l\u0000\u0002\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0002n\u0000\u0003\u0000\u000022\r2\u0000\u00011\u0000\u0000\u0000\u0000\u0002\n\u0002\u0000\u0004\ntxdl\r2\u0000\u00011\u0000\u0000\u0000\u0000\u0001\n\u0001\u0000\u0004\nascr\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0003l\u0001\u0000\u0000\u00002\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\boldchars\u0000\boldChars\u0001\u0000\u0000\u0001\u0000\u0000\r2\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000022\r2\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r2\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00022\u0000\u000222\r2\u0000\u0004Z\u0000\u0000\u0000\u0000222\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\r2\u0000\u0003P\u0000\u0000\u0000\u000022\r2\u0000\u0001k\u0000\u0000\u0000\u00002\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0002n\u0000\u0000\u0000\u000022\r2\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00002\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0003l\u0001\u0000\u0000\u00002\r2\u0000\u0001J\u0000\u0000\u0000\u00002\u00022\u0000\u00022\r2\u0000\u0003l\u0000\u0005\u0000\u00002\r2\u0000\u0002c\u0000\u0000\u0000\u000022\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r2\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000022\r2\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r2\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00022\u0000\u00022\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0002c\u0000\u0000\u0000\u000022\r2\u0000\u0003l\u0001\u0000\u0000\u00002\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\r2\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r2\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00002\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00022\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r2\u0000\u0003P\u0000\u0000\u0000\u000022\r2\u0000\u0001k\u0000\u0000\u0000\u00002\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0002n\u0000\u0000\u0000\u000022\r2\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\r2\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00002\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\u00022\u0000\u000222\r2\u0000\u0002r\u0000\u0000\u0000\u000022\r2\u0000\u0003l\u0001\u0000\u0000\u00002\r2\u0000\u0001J\u0000\u0000\u0000\u00002\u00022\u0000\u00022\r2\u0000\u0003l\u0000\u0005\u0000\u00002\r2\u0000\u0002c\u0000\u0000\u0000\u000022\r2\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnewchars\u0000\bnewChars\r2\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r2\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003\u00003\u0001\r3\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r3\u0001\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00022\u0000\u00023\u0002\r3\u0002\u0000\u0002r\u0000\u0000\u0000\u00003\u00033\u0004\r3\u0003\u0000\u0002c\u0000\u0000\u0000\u00003\u00053\u0006\r3\u0005\u0000\u0003l\u0001\u0000\u0000\u00003\u0007\r3\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u0001\u0000\u0000\u0001\u0000\u0000\r3\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r3\u0004\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003\b\r3\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u00022\u0000\u0002\n\u0000\b\u000bconscase\u0002\u0000\u0000\u00022\u0000\u00023\t3\n\r3\t\u0000\u0002r\u0000\u0000\u0000\u00003\u000b3\f\r3\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3\f\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003\r3\u000e\r3\r\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r3\u000e\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u00023\n\u0000\u00023\u000f3\u0010\r3\u000f\u0000\u0001L\u0000\u0000\u0000\u00003\u0011\r3\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u00023\u0010\u0000\u00023\u0012\r3\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u07ff\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u07ff\u0000\u0000\u0002\u0000\u0000\u00022\u001a\u0000\u00023\u00133\u0014\r3\u0013\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07fe\u07fd\u07fc\u0001\u07fe\u0000\u0000\u0001\u07fd\u0000\u0000\u0001\u07fc\u0000\u0000\u00023\u0014\u0000\u00023\u00153\u0016\r3\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07fb\u07fa\u07f9\u0001\u07fb\u0000\u0000\u0001\u07fa\u0000\u0000\u0001\u07f9\u0000\u0000\u00023\u0016\u0000\u00023\u00173\u0018\r3\u0017\u0000\u0002i\u0000\u0000\u00017\u0001:3\u00193\u001a\r3\u0019\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u07f83\u001b\u07f7\u000b\u07f8\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u00023\u001b\u0000\u00023\u001c3\u001d\r3\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07f6\u000b\u07f6\u0000\u00140\u0000\bthislist\u0000\bthisList\u00023\u001d\u0000\u00023\u001e\u07f5\r3\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07f4\u000b\u07f4\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u0002\u07f5\u0000\u0000\u0002\u07f7\u0000\u0000\r3\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000C3\u001f\u00023\u001f\u0000\u00023 3!\r3 \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u07f33\"3#\u0001\u07f3\u0000\u0000\f3\"\u0000\u0012\u0000\f version 1.2\u0000\u0002\u0000\u0000\u000e3#\u0000\u00013$\u00113$\u0000\u0018\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00002\u00023!\u0000\u00023%3&\r3%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07f2\u07f1\u07f0\u0001\u07f2\u0000\u0000\u0001\u07f1\u0000\u0000\u0001\u07f0\u0000\u0000\u00023&\u0000\u00023'3(\r3'\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u00053)3*\r3)\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00033+3,\r3+\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u07ef\n\u07ef\u0000\u0004\ntxdl\r3,\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u07ee\n\u07ee\u0000\u0004\nascr\r3*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07ed\u000b\u07ed\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u00023(\u0000\u00023-\u07ec\r3-\u0000\u0003Q\u0000\u0000\u0000\u0006\u0000C3.3\/30\r3.\u0000\u0001k\u0000\u0000\u0000\t\u0000!31\u000231\u0000\u00023233\r32\u0000\u0002r\u0000\u0000\u0000\t\u0000\u00123435\r34\u0000\u0003l\u0001\u0000\u0000\t\u0000\u000e36\u07eb\u07ea\r36\u0000\u0001J\u0000\u0000\u0000\t\u0000\u000e37\u000237\u0000\u000238\u07e9\r38\u0000\u0002c\u0000\u0000\u0000\t\u0000\f393:\r39\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u07e8\u000b\u07e8\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\r3:\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u07e7\n\u07e7\u0000\u0004\nTEXT\u0002\u07e9\u0000\u0000\u0001\u07eb\u0000\u0000\u0001\u07ea\u0000\u0000\r35\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003;3<\r3;\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\u07e6\n\u07e6\u0000\u0004\ntxdl\r3<\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u000f\u07e5\n\u07e5\u0000\u0004\nascr\u000233\u0000\u00023=3>\r3=\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u00183?3@\r3?\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u00163A3B\r3A\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u07e4\u000b\u07e4\u0000\u00140\u0000\bthislist\u0000\bthisList\r3B\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u07e3\n\u07e3\u0000\u0004\nTEXT\r3@\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u00003C\u07e2\u07e1\r3C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07e0\u000b\u07e0\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u0001\u07e2\u0000\u0000\u0001\u07e1\u0000\u0000\u00023>\u0000\u00023D3E\r3D\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e3F3G\r3F\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u07df\u000b\u07df\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3G\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003H3I\r3H\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\u07de\n\u07de\u0000\u0004\ntxdl\r3I\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001b\u07dd\n\u07dd\u0000\u0004\nascr\u00023E\u0000\u00023J\u07dc\r3J\u0000\u0001L\u0000\u0000\u0000\u001f\u0000!3K\r3K\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u07db\u000b\u07db\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u0002\u07dc\u0000\u0000\r3\/\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u07da3L3M\n\u07da\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r3L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07d9\u000b\u07d9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00063M\u0000\u0003\u07d83N\u07d7\n\u07d8\u0000\u0004\nerrn\r3N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u07d6\u000b\u07d6\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u07d7\u0000\u0000\r30\u0000\u0001k\u0000\u0000\u0000)\u0000C3O\u00023O\u0000\u00023P3Q\r3P\u0000\u0003Q\u0000\u0000\u0000)\u0000:3R3S\u07d5\r3R\u0000\u0002r\u0000\u0000\u0000,\u000013T3U\r3T\u0000\u0001o\u0000\u0000\u0000,\u0000-\u07d4\u000b\u07d4\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r3U\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u00003V3W\r3V\u0000\u00011\u0000\u0000\u0000.\u00000\u07d3\n\u07d3\u0000\u0004\ntxdl\r3W\u0000\u00011\u0000\u0000\u0000-\u0000.\u07d2\n\u07d2\u0000\u0004\nascr\r3S\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u07d1\u07d0\u07cf\n\u07d1\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u07d0\u0000\u0000\u0002\u07cf\u0000\u0000\u0001\u07d5\u0000\u0000\u00023Q\u0000\u00023X\u07ce\r3X\u0000\u0003R\u0000\u0000\u0000;\u0000C\u07cd3Y3Z\n\u07cd\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r3Y\u0000\u0002b\u0000\u0000\u0000?\u0000B3[3\\\r3[\u0000\u0001m\u0000\u0000\u0000?\u0000@3]\u000e3]\u0000\u00013^\u00113^\u0000>\u0000E\u0000R\u0000R\u0000O\u0000R\u0000:\u0000 \u0000u\u0000n\u0000P\u0000a\u0000r\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000s\u0000(\u0000)\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000:\u0000 \r3\\\u0000\u0001o\u0000\u0000\u0000@\u0000A\u07cc\u000b\u07cc\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00063Z\u0000\u0003\u07cb3_\u07ca\n\u07cb\u0000\u0004\nerrn\r3_\u0000\u0001o\u0000\u0000\u0000=\u0000>\u07c9\u000b\u07c9\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u07ca\u0000\u0000\u0002\u07ce\u0000\u0000\u0002\u07ec\u0000\u0000\u00023\u0018\u0000\u00023`3a\r3`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07c8\u07c7\u07c6\u0001\u07c8\u0000\u0000\u0001\u07c7\u0000\u0000\u0001\u07c6\u0000\u0000\u00023a\u0000\u00023b3c\r3b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u07c5\u07c4\u07c3\u0001\u07c5\u0000\u0000\u0001\u07c4\u0000\u0000\u0001\u07c3\u0000\u0000\u00023c\u0000\u00023d3e\r3d\u0000\u0002i\u0000\u0000\u0001;\u0001>3f3g\r3f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u07c23h\u07c1\u000b\u07c2\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\u00023h\u0000\u00023i\u07c0\r3i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u07c0\u0000\u0000\u0002\u07c1\u0000\u0000\r3g\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00063j\u00023j\u0000\u00023k3l\r3k\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u00023l\u0000\u00023m3n\r3m\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\n3o3p\r3o\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\b3q\u00063q\u0000\u0003{3r3s\u000b{\u0000\u00060\u0000\u0002v1\u0000\u0000\r3r\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002z\nz\u0000\u0004\nnull\u00063s\u0000\u0003y3t3u\u000by\u0000\u00060\u0000\u0002v2\u0000\u0000\r3t\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004x\nx\u0000\u0004\nnull\u00063u\u0000\u0003w3vv\u000bw\u0000\t0\u0000\u0005delim\u0000\u0000\r3v\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u00063w\u000e3w\u0000\u00013x\u00113x\u0000\u0002\u0000.\u0006v\u0000\u0000\r3p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00023n\u0000\u00023y3z\r3y\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u00103{3|\r3{\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e3}3~\r3}\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\ft\u000bt\u0000\t0\u0000\u0005prefs\u0000\u0000\r3~\u0000\u0001o\u0000\u0000\u0000\f\u0000\rs\u000bs\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\r3|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023z\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0011\u0000\u0011qpo\u0001q\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000\u0011\u0000*33\r3\u0000\u0001J\u0000\u0000\u0000\u0011\u0000\u00193\u00023\u0000\u000233\r3\u0000\u0002n\u0000\u0003\u0000\u0011\u0000\u001433\r3\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0014n\nn\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0012m\nm\u0000\u0004\nascr\u00023\u0000\u00023l\r3\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001733\r3\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0017k\u000bk\u0000\t0\u0000\u0005delim\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015j\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002l\u0000\u0000\r3\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00003\u00023\u0000\u000233\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\u00060\u0000\u0002od\u0000\u0000\u00023\u0000\u00023h\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000&\u0000(g\ng\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000%\u0000&f\nf\u0000\u0004\nascr\u0002h\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000+\u0000F33\r3\u0000\u0001J\u0000\u0000\u0000+\u000073\u00023\u0000\u000233\r3\u0000\u0002n\u0000\u0000\u0000+\u0000033\r3\u0000\u00012\u0000\u0000\u0000.\u00000e\ne\u0000\u0004\ncitm\r3\u0000\u0002n\u0000\u0000\u0000+\u0000.33\r3\u0000\u0001o\u0000\u0000\u0000,\u0000.d\u000bd\u0000\u00060\u0000\u0002v1\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000+\u0000,c\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\u00023\u0000\u00023b\r3\u0000\u0002n\u0000\u0000\u00000\u0000533\r3\u0000\u00012\u0000\u0000\u00003\u00005a\na\u0000\u0004\ncitm\r3\u0000\u0002n\u0000\u0000\u00000\u0000333\r3\u0000\u0001o\u0000\u0000\u00001\u00003`\u000b`\u0000\u00060\u0000\u0002v2\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u00000\u00001_\u000b_\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002b\u0000\u0000\r3\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00003\u00023\u0000\u000233\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u00023\u0000\u00023]\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u0002]\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000G\u0000L33\r3\u0000\u0001o\u0000\u0000\u0000G\u0000H[\u000b[\u0000\u00060\u0000\u0002od\u0000\u0000\r3\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u000033\r3\u0000\u00011\u0000\u0000\u0000I\u0000KZ\nZ\u0000\u0004\ntxdl\r3\u0000\u00011\u0000\u0000\u0000H\u0000IY\nY\u0000\u0004\nascr\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000M\u0000MXWV\u0001X\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000M\u0000h33\r3\u0000\u0001J\u0000\u0000\u0000M\u0000Y3\u00023\u0000\u000233\r3\u0000\u0003I\u0000\u0001\u0000M\u0000RU3T\nU\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r3\u0000\u0001o\u0000\u0000\u0000M\u0000NS\u000bS\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u0002T\u0000\u0000\u00023\u0000\u00023R\r3\u0000\u0003I\u0000\u0001\u0000R\u0000WQ3P\nQ\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r3\u0000\u0001o\u0000\u0000\u0000R\u0000SO\u000bO\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\r3\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u00003\u00023\u0000\u000233\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\f0\u0000\bv1_count\u0000\u0000\u00023\u0000\u00023M\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\f0\u0000\bv2_count\u0000\u0000\u0002M\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0004Z\u0000\u0000\u0000i\u0000x33K3\r3\u0000\u0002?\u0000\u0001\u0000i\u0000l33\r3\u0000\u0001o\u0000\u0000\u0000i\u0000jJ\u000bJ\u0000\f0\u0000\bv1_count\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000j\u0000kI\u000bI\u0000\f0\u0000\bv2_count\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000o\u0000r33\r3\u0000\u0001o\u0000\u0000\u0000o\u0000pH\u000bH\u0000\f0\u0000\bv1_count\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u0002K\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000u\u0000x33\r3\u0000\u0001o\u0000\u0000\u0000u\u0000vF\u000bF\u0000\f0\u0000\bv2_count\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000y\u0000yDCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0002r\u0000\u0000\u0000y\u0000|33\r3\u0000\u0001m\u0000\u0000\u0000y\u0000z3\u000e3\u0000\u00013\u00113\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00023\u0000\u000233\r3\u0000\u0005Y\u0000\u0000\u0000}\u00003@33?\r3\u0000\u0001k\u0000\u0000\u0000\u00003\u00023\u0000\u000233\r3\u0000\u0004Z\u0000\u0001\u0000\u000033>=\r3\u0000\u0002>\u0001\u0000\u0000\u000033\r3\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\r3\u0000\u0001m\u0000\u0000\u0000\u00003\u000e3\u0000\u00013\u00113\u0000\u0000\r3\u0000\u0000S\u0000\u0000\u0000\u0000\u0002>\u0000\u0000\u0001=\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0004Z\u0000\u0000\u0000\u000033;3\r3\u0000\u0002B\u0000\u0000\u0000\u000033\r3\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00050\u0000\u0001i\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u00009\u000b9\u0000\f0\u0000\bv1_count\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000\u000033\r3\u0000\u0002n\u0000\u0000\u0000\u000033\r3\u0000\u00024\u0000\u0000\u0000\u000083\n8\u0000\u0004\ncobj\r3\u0000\u0001o\u0000\u0000\u0000\u00007\u000b7\u0000\u00050\u0000\u0001i\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u00006\u000b6\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u0002;\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000\u000033\r3\u0000\u0001m\u0000\u0000\u0000\u00004\u00034\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00003\u000b3\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0004Z\u0000\u0000\u0000\u00003323\r3\u0000\u0002B\u0000\u0000\u0000\u000033\r3\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00050\u0000\u0001i\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u00000\u000b0\u0000\f0\u0000\bv2_count\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000\u000033\r3\u0000\u0002n\u0000\u0000\u0000\u000033\r3\u0000\u00024\u0000\u0000\u0000\u0000\/3\n\/\u0000\u0004\ncobj\r3\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u00050\u0000\u0001i\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000-\u000b-\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u00022\u0000\u0000\r3\u0000\u0002r\u0000\u0000\u0000\u000033\r3\u0000\u0001m\u0000\u0000\u0000\u0000+\u0003+\u0000\u0000\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000)('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003l\u0000\u0002\u0000\u0000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u00023\u0000\u000233\r3\u0000\u0003Q\u0000\u0000\u0000\u00004\u00004\u00014\u0002\r4\u0000\u0000\u0001k\u0000\u0000\u0000\u00004\u0003\u00024\u0003\u0000\u00024\u00044\u0005\r4\u0004\u0000\u0003l\u0000\u0001\u0000\u0000#4\u00064\u0007\u0001#\u0000\u0000\f4\u0006\u0000>\u00008log (\"v1_part: \" & v1_part & \" | v2_part: \" & v2_part)\u0000\u0002\u0000\u0000\u000e4\u0007\u0000\u00014\b\u00114\b\u0000p\u0000l\u0000o\u0000g\u0000 \u0000(\u0000\"\u0000v\u00001\u0000_\u0000p\u0000a\u0000r\u0000t\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000v\u00001\u0000_\u0000p\u0000a\u0000r\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000 \u0000 \u0000|\u0000 \u0000v\u00002\u0000_\u0000p\u0000a\u0000r\u0000t\u0000:\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000v\u00002\u0000_\u0000p\u0000a\u0000r\u0000t\u0000)\u00024\u0005\u0000\u00024\t\"\r4\t\u0000\u0004Z\u0000\u0000\u0000\u00004\n4\u000b4\f4\r\r4\n\u0000\u0002?\u0000\u0001\u0000\u00004\u000e4\u000f\r4\u000e\u0000\u0003l\u0000\u0005\u0000\u00004\u0010! \r4\u0010\u0000\u0002c\u0000\u0000\u0000\u00004\u00114\u0012\r4\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\r4\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\n\u001e\u0000\u0004\nnmbr\u0001!\u0000\u0000\u0001 \u0000\u0000\r4\u000f\u0000\u0003l\u0000\u0005\u0000\u00004\u0013\u001d\u001c\r4\u0013\u0000\u0002c\u0000\u0000\u0000\u00004\u00144\u0015\r4\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\r4\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u001a\n\u001a\u0000\u0004\nnmbr\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\r4\u000b\u0000\u0002r\u0000\u0000\u0000\u00004\u00164\u0017\r4\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0019\u0003\u0019\u0000\u0001\r4\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024\f\u0000\u00024\u00184\u0019\r4\u0018\u0000\u0002A\u0000\u0001\u0000\u00004\u001a4\u001b\r4\u001a\u0000\u0003l\u0000\u0005\u0000\u00004\u001c\u0017\u0016\r4\u001c\u0000\u0002c\u0000\u0000\u0000\u00004\u001d4\u001e\r4\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\r4\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0014\n\u0014\u0000\u0004\nnmbr\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\r4\u001b\u0000\u0003l\u0000\u0005\u0000\u00004\u001f\u0013\u0012\r4\u001f\u0000\u0002c\u0000\u0000\u0000\u00004 4!\r4 \u0000\u0001o\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\r4!\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\n\u0010\u0000\u0004\nnmbr\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u00024\u0019\u0000\u00024\"\u000f\r4\"\u0000\u0002r\u0000\u0000\u0000\u00004#4$\r4#\u0000\u0001m\u0000\u0000\u0000\u0000\u000e\u0003\u000e\r4$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u0002\u000f\u0000\u0000\r4\r\u0000\u0003l\u0000\u0001\u0000\u0000\f4%4&\u0001\f\u0000\u0000\f4%\u00001\u0000+ the two versions are the same, so continue\u0000\u0002\u0000\u0000\u000e4&\u0000\u00014'\u00114'\u0000V\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000w\u0000o\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000r\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000a\u0000m\u0000e\u0000,\u0000 \u0000s\u0000o\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0002\"\u0000\u0000\r4\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u000b\n\t\n\u000b\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\n\u0000\u0000\u0002\t\u0000\u0000\r4\u0002\u0000\u0002r\u0000\u0000\u0000\u00004(4)\r4(\u0000\u0001m\u0000\u0000\u0000\u00004*\u000e4*\u0000\u00014+\u00114+\u0000\u0002\u0000?\r4)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00023\u0000\u00024,4-\r4,\u0000\u0003l\u0000\u0002\u0000\u0000\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u00024-\u0000\u00024.\u0004\r4.\u0000\u0003l\u0000\u0002\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0004\u0000\u0000\u000b@\u0000\u00050\u0000\u0001i\u0000\u0000\r3\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0001\r3\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u0001?\u0000\u0000\u00023\u0000\u00024\/40\r4\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000240\u0000\u00024142\r41\u0000\u0004Z\u0000\u0001\u0000\u0001\u00014344\r43\u0000\u0002=\u0000\u0003\u0000\u00004546\r45\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\r46\u0000\u0001m\u0000\u0000\u0000\u000047\u000e47\u0000\u000148\u001148\u0000\u0000\r44\u0000\u0002r\u0000\u0000\u0000\u0000494:\r49\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r4:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u0002\u0000\u0000\u0001\u0000\u0000\u000242\u0000\u00024;4<\r4;\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u00024<\u0000\u00024=4>\r4=\u0000\u0001L\u0000\u0000\u0001\u0002\u0001\u00044?\r4?\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003\u000b\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u00024>\u0000\u00024@\r4@\u0000\u0003l\u0000\u0002\u0001\u0005\u0001\u0005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u00023e\u0000\u00024A\r4A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000P4B\u0000(4C4D4E4F4G4H4I4J4K4L4M4N4O4P4Q4R4S4T4U4V4W4X4Y4Z4[4\\4]4^4_4`4a4b4c4d4e4f4g4h4i4j4k4l4m4n4o4p4q4r4s4t4u4v4w4x4y4z4{4|4}4~4444444444444444\u0001\u0000\u0000\u00104B\u0000N\u07bf\u07be\u07bd\u07bc\u07bb\u07ba\u07b9\u07b8\u07b7\u07b6\u07b5\u07b4\u07b3\u07b2\u07b1\u07b0\u07af\u07ae\u07ad\u07ac\u07ab\u07aa\u07a9\u07a8\u07a7\u07a6\u07a5\u07a4\u07a3\u07a2\u07a1\u07a0\u079f\u079e\u079d\u079c\u079b\u000b\u0000\u00160\u0000\tdebugmode\u0000\tDebugMode\u000b\u0000\u00180\u0000\nscriptname\u0000\nScriptName\u000b\u0000&0\u0000\u0011clickcommandposix\u0000\u0011clickCommandPosix\u000b\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u000b\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000b\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u000b\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u000b\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u000b\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000b\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u000b\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u000b\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u000b\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u000b\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u000b\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u000b\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000b\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u000b\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u000b\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u000b\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u000b\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u000b\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000b\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u000b\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u000b\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u000b\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u000b\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u000b\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u000b\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000b\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u000b\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u000b\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000b\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u000b\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u000b\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u000b\u07bf\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u000b\u07be\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000b\u07bd\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u000b\u07bc\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u000b\u07bb\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u000b\u07ba\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000b\u07b9\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u000b\u07b8\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u000b\u07b7\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\u07b6\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u000b\u07b5\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u000b\u07b4\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u000b\u07b3\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u000b\u07b2\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u000b\u07b1\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u000b\u07b0\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000b\u07af\u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u000b\u07ae\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u000b\u07ad\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u000b\u07ac\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u000b\u07ab\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u000b\u07aa\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u000b\u07a9\u0000\b0\u0000\u0004sort\u0000\u0000\u000b\u07a8\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u07a7\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000b\u07a6\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u000b\u07a5\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u000b\u07a4\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u000b\u07a3\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u000b\u07a2\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u000b\u07a1\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000b\u07a0\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u000b\u079f\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u000b\u079e\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u000b\u079d\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000b\u079c\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u000b\u079b\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\n\u0000\b\u000bboovfals\u000e4C\u0000\u00014\u00114\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000e\u0000s\u0000h\u0000a\u0000g\u0000d\u0000a\u0000r\u0000\/\u0000C\u0000o\u0000d\u0000e\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000f\u0000m\u0000-\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000\/\u0000v\u0000e\u0000n\u0000d\u0000o\u0000r\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u0000\/\u0000c\u0000l\u0000i\u0000c\u0000l\u0000i\u0000c\u0000k\u000e4D\u0000\u0007\u0010\u079a\u0000@\u0799\u079844\u0797\u000b\u079a\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\u000e\u0799\u0000\u0002\u0004\u07964\u0003\u0796\u0000\u0001\u000e4\u0000\u0001\u0000\u0795\u000b\u0795\u0000\r0\u0000\tthis_char\u0000\u0000\u0002\u0798\u0000\u0000\u00104\u0000\u0005\u0794\u0793\u0792\u0791\u0790\u000b\u0794\u0000\r0\u0000\tthis_char\u0000\u0000\u000b\u0793\u0000\u00160\u0000\tascii_num\u0000\tASCII_num\u000b\u0792\u0000\f0\u0000\bhex_list\u0000\u0000\u000b\u0791\u0000\u00050\u0000\u0001x\u0000\u0000\u000b\u0790\u0000\u00050\u0000\u0001y\u0000\u0000\u00104\u0000\u0015\u078f\u0000Z\u0000^\u0000b\u0000f\u0000j\u0000n\u0000r\u0000v\u0000z\u0000~\u0000\u0000\u0000\u0000\u0000\u0000\u078e\u078d\u0000\u078c\n\u078f\u0000\u0018.sysoctonshor\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000TEXT\u0003\u078e\u0000\u0010\n\u078d\u0000\u0004\ncobj\n\u078c\u0000\u0004\nTEXT\u0011\u0797\u0000Lj\f\u0000\u0000EOa\u0000\u0010a\u0000\u0011vEOa\u0000\u0012a\u0000\u0011\"k\u001e\/EOa\u0000\u0012a\u0000\u0011#k\u001e\/EOa\u0000\u0013%%a\u0000\u0014&\u000f\u000f\u000e4E\u0000\u0007\u0010\u078b\u0000\u078a\u078944\u0788\u000b\u078b\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000e\u078a\u0000\u0002\u0004\u07874\u0003\u0787\u0000\u0003\u000e4\u0000\u0003\u0000\u0786\u0785\u0784\u000b\u0786\u0000\r0\u0000\tthis_text\u0000\u0000\u000b\u0785\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u000b\u0784\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u0002\u0789\u0000\u0000\u00104\u0000\t\u0783\u0782\u0781\u0780~}|{\u000b\u0783\u0000\r0\u0000\tthis_text\u0000\u0000\u000b\u0782\u0000\u001c0\u0000\fencode_url_a\u0000\fencode_URL_A\u000b\u0781\u0000\u001c0\u0000\fencode_url_b\u0000\fencode_URL_B\u000b\u0780\u0000\u00170\u0000\u0013standard_characters\u0000\u0000\u000b\u0000\u001a0\u0000\u000burl_a_chars\u0000\u000bURL_A_chars\u000b~\u0000\u001a0\u0000\u000burl_b_chars\u0000\u000bURL_B_chars\u000b}\u0000\u00190\u0000\u0015acceptable_characters\u0000\u0000\u000b|\u0000\u00100\u0000\fencoded_text\u0000\u0000\u000b{\u0000\r0\u0000\tthis_char\u0000\u0000\u00104\u0000\t\u0000\u0000\u0000\u0001\u0017zyxwv\nz\u0000\u0004\nkocl\ny\u0000\u0004\ncobj\nx\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bw\u0000$0\u0000\u0010encodecharforurl\u0000\u0010encodeCharForURL\nv\u0000\u0004\nTEXT\u0011\u0788\u0000gEOEOEOEOf\u0000\u001d\u0000\n%EY\u0000\u0003hOf\u0000\u001d\u0000\n%EY\u0000\u0003hOEO\u0017\u0000.[l\f\u0000\u0006kh\u001b\u0000\b\b\u001d\u0000\n%EY\u0000\u000e*k+\u0000\u0007%&E[OYO\u000f\u000f\u000e4F\u0000\u0007\u0010u\u0001@ts44r\u000bu\u0000\u00180\u0000\ngetfromfmp\u0000\ngetFromFMP\u000et\u0000\u0002\u0004q4\u0003q\u0000\u0001\u000e4\u0000\u0001\u0000p\u000bp\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002s\u0000\u0000\u00104\u0000\nonmlkjihgf\u000bo\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bn\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000bm\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u000bl\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u000bk\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\u000bj\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u000bi\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u000bh\u0000\u00160\u0000\tcodetoget\u0000\tcodeToGet\u000bg\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u000bf\u0000\u00160\u0000\tinputdata\u0000\tinputData\u00104\u0000\u0019edc\u0001]\u0001e\u0001kb\u0001a4`\u0001\u0001\u0001_\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001^\u000be\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u0001d\u0000\u0000\u0002c\u0000\u0000\nb\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\na\u0000\u0004\npcap\u000e4\u0000\u0000\u0013\n`\u0000\u0004\ndnam\n_\u0000\u0004\nret \n^\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011r\u0000\u0014\u0000\n,EW\u0000\nX\u0000\u0001\u0000\u0002EOEOEO)j\f\u0000\u0006\b\u000b\u001d\u0000Y\u0012\u0000\u0013*k\/[,\\Z>1,EUO\u0000\u001d\u0000\u000e%%%EY\u0000%\u0000\u001d\u0000\fa\u0000\u0010%EY\u0000\u0015a\u0000\u0011\u0000\u001d\u0000\fa\u0000\u0012%EY\u0000\u0003hOa\u0000\u0013%EY\u0000\ra\u0000\u0014EOa\u0000\u0015EOa\u0000\u0016%a\u0000\u0017%EO%%EOj\f\u0000\u0018EO\u000f\u000f\u000e4G\u0000\u0007\u0010]\u0001\\[44Z\u000b]\u0000\u00160\u0000\tsendtofmp\u0000\tsendToFMP\u000e\\\u0000\u0002\u0004Y4\u0003Y\u0000\u0001\u000e4\u0000\u0001\u0000X\u000bX\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0002[\u0000\u0000\u00104\u0000\fWVUTSRQPONML\u000bW\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u000bV\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000bU\u0000\u00180\u0000\nastransfer\u0000\nasTransfer\u000bT\u0000\u00120\u0000\u0007fmpname\u0000\u0007fmpName\u000bS\u0000\u001e0\u0000\rfmpactivename\u0000\rfmpActiveName\u000bR\u0000\u001a0\u0000\u000bbegintellfm\u0000\u000bbeginTellFM\u000bQ\u0000\u00160\u0000\tendtellfm\u0000\tendTellFM\u000bP\u0000\"0\u0000\u000fsomedatacleaned\u0000\u000fsomeDataCleaned\u000bO\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000bN\u0000\r0\u0000\tbackslash\u0000\u0000\u000bM\u0000\u00160\u0000\tcodetoset\u0000\tcodeToSet\u000bL\u0000\u00180\u0000\nsendsource\u0000\nsendSource\u00104\u0000#KJIH\u0002\u0015\u0002\u001d\u0002#G\u0002>F4E\u0002F\u0002P\u0002RD\u0002X\u0002`\u0002f\u0002m\u0002v\u0002}\u0002CBA@?>\u0002\u0002\u0002\u0002\u0002=\u000bK\u0000\u00100\u0000\u0006fmtype\u0000\u0006fmType\u000bJ\u0000\u00140\u0000\bsomedata\u0000\bsomeData\u0001I\u0000\u0000\u0002H\u0000\u0000\nG\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\nF\u0000\u0004\npcap\nE\u0000\u0004\ndnam\nD\u0000\u0004\nret \nC\u0000\u0004\nTEXT\nB\u0000\u0004\nascr\nA\u0000\u0004\ntxdl\u0003@\u0000\\\n?\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\n>\u0000\u0004\ncitm\n=\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011Z\u0001*\u0014\u0000\u0010,EO,EW\u0000\nX\u0000\u0002\u0000\u0003EOEOEO)j\f\u0000\u0007\b\u000b\u001d\u0000[\u0012\u0000\u0013*k\/[,\\Z>1,EUO\u0000\u001d\u0000\u000e%%%EY\u0000'a\u0000\u0010\u0000\u001d\u0000\fa\u0000\u0011%EY\u0000\u0015a\u0000\u0012\u0000\u001d\u0000\fa\u0000\u0013%EY\u0000\u0003hOa\u0000\u0014%EY\u0000\ra\u0000\u0015EOa\u0000\u0016EOa\u0000\u0017&EO_\u0000\u0018a\u0000\u0019,EOa\u0000\u001aj\f\u0000\u001bEO_\u0000\u0018a\u0000\u0019,FOa\u0000\u001c-EO%_\u0000\u0018a\u0000\u0019,FOa\u0000\u0017&EOa\u0000\u001d_\u0000\u0018a\u0000\u0019,FOa\u0000\u001c-EOa\u0000\u001e%_\u0000\u0018a\u0000\u0019,FOa\u0000\u0017&EO_\u0000\u0018a\u0000\u0019,FOa\u0000\u001f%a\u0000 %%a\u0000!%EO%%EOj\f\u0000\"OP\u000f\u000e4H\u0000\u0007\u0010<\u0003\u0016;:449\u000b<\u0000\u001e0\u0000\rclosedatabase\u0000\rcloseDatabase\u000e;\u0000\u0002\u000484\u00038\u0000\u0001\u000e4\u0000\u0001\u00007\u000b7\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002:\u0000\u0000\u00104\u0000\f6543210\/.-,+\u000b6\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b5\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b4\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b3\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b2\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b1\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b0\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\/\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b.\u0000\u001e0\u0000\rfmprocessname\u0000\rfmProcessName\u000b-\u0000,0\u0000\u0014closewindowavailable\u0000\u0014closeWindowAvailable\u000b,\u0000\"0\u0000\u000frunscriptbutton\u0000\u000frunScriptButton\u000b+\u0000\"0\u0000\u000ffrontwindowname\u0000\u000ffrontWindowName\u00104\u0000;*\u0003()('&%$#\u00033\"! \u0003\u001f\u001e\u0003\u0003\u001d\u001c4\u001b\u0003\u0003\u001a\u0019\u0003\u0003\u0003\u0004a\u0018\u0017\u0016\u0003\u0015\u0014\u0003\u0013\u0012\u0011\u0010\u000f\u000e\r4\f\u0004%\u000b\n\t\b\u00046\u0007\u0006\u0004J\u0004O\u0004Q\u0005\u0004i\u000b*\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u000b)\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0003(\u0000\n\u000b'\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\n&\u0000\u0004\nmin \u000b%\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\n$\u0000\u0004\nnull\u000b#\u0000\"0\u0000\u000fclosescriptname\u0000\u000fcloseScriptName\n\"\u0000\u0004\ndire\n!\u0000\b\u000bolierndD\n \u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u001f\u0000\u0004\ncDB \n\u001e\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u001d\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u001c\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\u0004\u0003\u0002\n\u0004\u0000\u0004\nerrn\u000b\u0003\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0002\u0000\u0000\u0003\u001b\u0000\u0005\u000b\u001a\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000b\u0019\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0018\u0000\u0004\npcap\n\u0017\u0000\u0004\nmbar\n\u0016\u0000\u0004\nmbri\n\u0015\u0000\u0004\nmenE\n\u0014\u0000\u0004\nmenI\n\u0013\u0000\u0004\nenaB\n\u0012\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0011\u000040\u0000\u0018fmgui_managescripts_open\u0000\u0018fmGUI_ManageScripts_Open\u000b\u0010\u0000\u001c0\u0000\ffmscriptname\u0000\ffmScriptName\u000b\u000f\u0000J0\u0000#fmgui_managescripts_fmscript_select\u0000#fmGUI_ManageScripts_FmScript_Select\n\u000e\u0000\u0004\ncwin\n\r\u0000\u0004\nbutT\n\f\u0000\u0004\ndesc\n\u000b\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\n\u0000\u0004\npnam\n\t\u0000\u0004\nerrn\u0003\b\u0004\u0000\u0001\u0007\u0000\u0000\u0002\u0006\u0000\u0000\u000b\u0005\u000060\u0000\u0019fmgui_managescripts_close\u0000\u0019fmGUI_ManageScripts_Close\u00119\u0001 \u000eEO%EO,EO,EO,EO!l\f\u0000\fEO\u0014\u0001,\u0001\u001d\u0000_\u0014\u00005\u0012\u0000-*\/j\f\u0000\u000fOb\u0000\u0001\u0000\u0000\u001d\u0000\u0018)b\u0000\u0001\u0000\u0001a\u0000\u0010%a\u0000\u0011%l+\u0000\u0012Y\u0000\u0003hOe\u000fUW\u0000&X\u0000\u0013\u0000\u0014b\u0000\u0001\u0000\u0000\u001d\u0000\u0018)a\u0000\u0015a\u0000\u0016%a\u0000\u0017%%l+\u0000\u0018Y\u0000\u0003hY\u0000\u0003hO*j+\u0000\u0019O,a\u0000\u001a\u0000\u001d\u0000\na\u0000\u001bEY\u0000\u0007a\u0000\u001cEOa\u0000\u001d\u0012\u0000*a\u0000\u001e\/\u0012\u0000fEO\u0017\u0000:kh\u0018*a\u0000\u001fk\/a\u0000 a\u0000!\/a\u0000\"k\/a\u0000#a\u0000$\/a\u0000%,EO\u001d\u0000\u0006\u0016Y\u0000\u0003hOj\f\u0000&[OYO\u0014\u0000_\u001d\u0000=)jvk+\u0000'O)a\u0000(,l\u000ek+\u0000)O*a\u0000*k\/a\u0000+k\/a\u0000,[a\u0000-,\\Za\u0000.81EOj\f\u0000\/Y\u0000\u001d*a\u0000*k\/a\u00000,EO)a\u00001a\u00002la\u00003%\u0015W\u0000FX\u00004\u00005b\u0000\u0001\u0000\u0000\u001d\u0000 *b\u0000\u0001\u0000\u0001a\u00006,%a\u00007%%a\u00008%l+\u0000\u0012Y\u0000\u0003hO)jvk+\u00009O*a\u0000*k\/a\u0000+k\/j\f\u0000\/OPUUW\u0000\u0013X\u0000\u0013\u0000\u0014)a\u00001la\u0000:%\u0015OP\u000f\u000e4I\u0000\u0007\u0010\u0001\u0004t\u000044\u000b\u0001\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000e\u0000\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u0000\u001e0\u0000\rfmappbundleid\u0000\rfmAppBundleID\u000b\u0000\u00120\u0000\u0007doclist\u0000\u0007docList\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b\u0000\u00100\u0000\u0006onedoc\u0000\u0006oneDoc\u000b\u0000\u00120\u0000\u0007docname\u0000\u0007docName\u00104\u00000\u0004\u0004\u0004\u0004\u0004\u00044\u0005\u0016\u0005E\u0005_\u0005\u0005\u0005\u000b\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u0003\u0000\u0005\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\n\u0000\u0004\nmin \u0003\u0000\u0006\u000b\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000b\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\n\u0000\u0004\ndire\n\u0000\b\u000bolierndD\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u0000\u0004\nnull\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\ndocu\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0003\n\u0000\u0004\nerrn\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npnam\n\u0000\u0004\ncha \n\u0000\u0004\nrvse\n\u0000\u0004\nTEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.miscmvisnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0014\u0001l \u000eEO%EOb\u0000\u0001\u0000\u0000\u001d\u0000\u0017*b\u0000\u0001\u0000\u0001*k+\u0000\b%l+\u0000\tY\u0000\u0003hO,EO,EO,EO!l\f\u0000\rEO,\u0000\u001d\u0000\bEY\u0000\u0007a\u0000\u0010EO\u0017\u0000bkh\u0018a\u0000\u0011EO\u0014\u0000-a\u0000\u0012Z*a\u0000\u0013a\u0000\u00140\u0012\u0000\t*a\u0000\u0015-EUOa\u0000\u0011\u0001\u001d\u0000\u0006\u0016Y\u0000\u0003hOPW\u0000\u001fX\u0000\u0016\u0000\u0017a\u0000\u0018\u0000\u001d\u0000\u0006hY\u0000\u000e)a\u0000\u0019la\u0000\u001a%\u0015Oj\f\u0000\u001b[OYO\u0017\u0000\u07e7[a\u0000\u001ca\u0000\u001dl\f\u0000\u001ekh\u001b\u0000\na\u0000\u001f,EOa\u0000 -a\u0000!,a\u0000\"&O_\u0000#[a\u0000$\\[Z*a\u0000%a\u0000&a\u0000'_\u0000#a\u0000(\f\u0000)k\u001e\\Zi2EO_\u0000#a\u0000 -a\u0000!,a\u0000\"&EOb\u0000\u0001\u0000\u0000\u001d\u0000\nj\f\u0000*Y\u0000\u0003hOb\u0000\u0001\u0000\u0000\u001d\u0000\nj\f\u0000*Y\u0000\u0003hOga\u0000+\u0013\u0000Qa\u0000\"&a\u0000\"&\u0000\u001d\u0000Aa\u0000\u0012Z*a\u0000\u0013a\u0000\u00140\u0012\u0000*j\f\u0000,Ob\u0000\u0001\u0000\u0000\u001d\u0000\u0019)b\u0000\u0001\u0000\u0001a\u0000-)k+\u0000\b%l+\u0000\tY\u0000\u0003hOPUOe\u000fY\u0000\u0003hV[OY3Of\u000fOPW\u0000\u0019X\u0000\u0016\u0000\u0017)a\u0000\u0019la\u0000.%a\u0000\/%%\u0015OP\u000f\u000e4J\u0000\u0007\u0010\u000544\u000b\u000020\u0000\u0017ensurefilemakerdatabase\u0000\u0017ensureFileMakerDatabase\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0003\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0000\u001a0\u0000\u000bisdisplayed\u0000\u000bisDisplayed\u00104\u0000\r\u077f\u0005\u077e\u077d\u0005\u077c\u0006\u0007\u077b\u0006\u001a\u077a\u0006%\u00061\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u077f\u0000\u00160\u0000\tfmapptype\u0000\tfmAppType\u0003\u077e\u0000\u0004\u000b\u077d\u000040\u0000\u0018displayfilemakerdatabase\u0000\u0018displayFileMakerDatabase\u000b\u077c\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000b\u077b\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\n\u077a\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000,EO*\u000ek+\u0000\u0004EOb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO\u001d\u0000\u0007e\u000fY\u0000Zb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO*k+\u0000\b\u001d\u00005j\f\u0000\nOb\u0000\u0001\u0000\u0000\u001d\u0000\u0012*b\u0000\u0001\u0000\u0001%l+\u0000\u0006Y\u0000\u0003hO*\u000ek+\u0000\u0004EO\u000fY\u0000\u0004f\u000f\u000f\u000e4K\u0000\u0007\u0010\u0779\u0006D\u0778\u077744\u0776\u000b\u0779\u0000.0\u0000\u0015openfilemakerdatabase\u0000\u0015openFileMakerDatabase\u000e\u0778\u0000\u0002\u0004\u07754\u0003\u0775\u0000\u0001\u000e4\u0000\u0001\u0000\u0774\u000b\u0774\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0777\u0000\u0000\u00104\u0000\u0005\u0773\u0772\u0771\u0770\u076f\u000b\u0773\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0772\u0000\u00160\u0000\tcustomurl\u0000\tcustomURL\u000b\u0771\u0000\u00100\u0000\u0006fmpurl\u0000\u0006fmpURL\u000b\u0770\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u076f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0016\u0006]\u076e\u0006a\u0006\u0006~\u076d\u0006\u076c\u0006\u076b\u0006\u076a\u0006\u0006\u0769\u0006\u0006\u0006\u0768\u0767\u07664\u000b\u076e\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u076d\u0000\u00140\u0000\bserverip\u0000\bserverIP\u000b\u076c\u0000\u00180\u0000\nmaindbname\u0000\nmainDbName\u000b\u076b\u0000<0\u0000\u001ccustomlinkreceiverscriptname\u0000\u001ccustomLinkReceiverScriptName\u000b\u076a\u0000$0\u0000\u0010encodetextforurl\u0000\u0010encodeTextForURL\u000b\u0769\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000b\u0768\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\n\u0767\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0766\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\u0765\u0764\u0763\n\u0765\u0000\u0004\nerrn\u000b\u0764\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0763\u0000\u0000\u0011\u0776\u0000\u0014\u0000w,%%EO\u0012\u0000`,%%,%%,%%)efm+\u0000\u000b%EO)mvk+\u0000\u000eEO)a\u0000\u0010mvk+\u0000\u000eEOb\u0000\u0001\u0000\u0000\u001d\u0000\u0014)b\u0000\u0001\u0000\u0001a\u0000\u0011%l+\u0000\u0012Y\u0000\u0003hOj\f\u0000\u0013OPUOe\u000fOPW\u0000\u000bX\u0000\u0014\u0000\u0015\u000fOPOP\u000f\u000e4L\u0000\u0007\u0010\u0762\u0006\u0761\u076044\u075f\u000b\u0762\u0000\u001a0\u0000\u000bsfr_dictget\u0000\u000bSFR_DictGet\u000e\u0761\u0000\u0002\u0004\u075e4\u0003\u075e\u0000\u0002\u000e4\u0000\u0002\u0000\u075d\u075c\u000b\u075d\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u000b\u075c\u0000\u00140\u0000\bitemname\u0000\bitemName\u0002\u0760\u0000\u0000\u00104\u0000\u0007\u075b\u075a\u0759\u0758\u0757\u0756\u0755\u000b\u075b\u0000\u00140\u0000\bsomedict\u0000\bsomeDict\u000b\u075a\u0000\u00140\u0000\bitemname\u0000\bitemName\u000b\u0759\u0000\u00160\u0000\tkeystring\u0000\tkeyString\u000b\u0758\u0000\u00160\u0000\tendstring\u0000\tendString\u000b\u0757\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u0756\u0000\u00180\u0000\nkeyremoved\u0000\nkeyRemoved\u000b\u0755\u0000\u00160\u0000\titemvalue\u0000\titemValue\u00104\u0000\n\u0007\u000e\u0754\u0007\u0012\u0007\u0018\u0007%\u0753\u0752\u0751\u0007E\u0750\u000b\u0754\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\n\u0753\u0000\u0004\nascr\n\u0752\u0000\u0004\ntxdl\n\u0751\u0000\u0004\ncitm\u000b\u0750\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u0011\u075f\u0000Y*k+\u0000\u0001%%EOEO\b\u000b\u001d\u0000\u0007\u000fY\u00003,EO,FOl\/EO\b\u000b\u001d\u0000\u0007\u000fY\u0000\u0014,FOk\/EO,FO*k+\u0000\t\u000fOP\u000f\u000e4M\u0000\u0007\u0010\u074f\u0007l\u074e\u074d44\u074c\u000b\u074f\u0000\u001c0\u0000\fsfr_dictitem\u0000\fSFR_DictItem\u000e\u074e\u0000\u0002\u0004\u074b4\u0003\u074b\u0000\u0002\u000e4\u0000\u0002\u0000\u074a\u0749\u000b\u074a\u0000\u00140\u0000\bitemname\u0000\bitemName\u000b\u0749\u0000\u00160\u0000\titemvalue\u0000\titemValue\u0002\u074d\u0000\u0000\u00104\u0000\u0002\u0748\u0747\u000b\u0748\u0000\u00140\u0000\bitemname\u0000\bitemName\u000b\u0747\u0000\u00160\u0000\titemvalue\u0000\titemValue\u00104\u0000\u0004\u0007\u0746\u0007\u0007\u000b\u0746\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u0011\u074c\u0000\u0015*k+\u0000\u0001%%*k+\u0000\u0001%%\u000f\u000f\u000e4N\u0000\u0007\u0010\u0745\u0007\u0744\u074344\u0742\u000b\u0745\u0000\u00180\u0000\nsfr_escape\u0000\nSFR_Escape\u000e\u0744\u0000\u0002\u0004\u07414\u0003\u0741\u0000\u0001\u000e4\u0000\u0001\u0000\u0740\u000b\u0740\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002\u0743\u0000\u0000\u00104\u0000\u0003~}\u000b\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u000b~\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u000b}\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u00104\u0000\n\u0007\u0007\u0007\u0007|{zy\u0007x\u0003|\u0000\u0004\n{\u0000\u0004\nkocl\nz\u0000\u0004\ncobj\ny\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bx\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0011\u0742\u00004vEO\u0017\u0000$[l\f\u0000\u0007kh\u001b\u0000\u0002*%mvk+\u0000\tEOP[OYO\u000fOP\u000f\u000e4O\u0000\u0007\u0010w\u0007vu44t\u000bw\u0000\u001c0\u0000\fsfr_unescape\u0000\fSFR_Unescape\u000ev\u0000\u0002\u0004s4\u0003s\u0000\u0001\u000e4\u0000\u0001\u0000r\u000br\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u0002u\u0000\u0000\u00104\u0000\u0003qpo\u000bq\u0000\u00180\u0000\nsomestring\u0000\nsomeString\u000bp\u0000 0\u0000\u000eescapecharlist\u0000\u000eescapeCharList\u000bo\u0000\u00120\u0000\u0007onechar\u0000\u0007oneChar\u00104\u0000\n\u0007\u0007\u0007\u0007nmlk\b\u000bj\u0003n\u0000\u0004\nm\u0000\u0004\nkocl\nl\u0000\u0004\ncobj\nk\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bj\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u0011t\u00004vEO\u0017\u0000$[l\f\u0000\u0007kh\u001b\u0000\u0002*%mvk+\u0000\tEOP[OYO\u000fOP\u000f\u000e4P\u0000\u0007\u0010i\b\u001chg44f\u000bi\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000eh\u0000\u0002\u0004e4\u0003e\u0000\u0001\u000e4\u0000\u0001\u0000d\u000bd\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002g\u0000\u0000\u00104\u0000\u0006cba`_^\u000bc\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bb\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000ba\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b`\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u000b_\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b^\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\"]\\[Z\bTY\bX\bWVUTS4RQPO\bN\bMLKJ\b\b\bI4H\b\b\u000b]\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\n\\\u0000\u0004\nnull\u000b[\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u0003Z\u0000\u0004\u000bY\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\nX\u0000\u0004\npcap\u000bW\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nV\u0000\u0004\ncwin\nU\u0000\u0004\nscra\nT\u0000\u0004\ntabB\nS\u0000\u0004\ncrow\nR\u0000\u0004\nsttx\nQ\u0000\u0004\npnam\nP\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\nO\u0000\u0004\nbutT\u000bN\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\nM\u0000\u0018.sysodelanull\u0000\u0000nmbr\nL\u0000\u0004\ntxtf\nK\u0000\u0004\nvalL\nJ\u0000\u0004\ntxta\u000bI\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003GFE\nG\u0000\u0004\nerrn\u000bF\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006E\u0000\u0000\nH\u0000\u0004\nerrn\u0011f\u0001\u0005\u000eEO%EO,EO,EO\u0000\u001d\u0000\n%EY\u0000\u0003hO\u0014\u0000*jvk+\u0000\u0005O\u0012\u0000*\/\u0012\u0000)j+\u0000\tO*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0011\u000b\u001d\u0000v)*k\/a\u0000\u0012k\/[a\u0000\u0010,\\Za\u0000\u0013>1k+\u0000\u0014Oa\u0000\u0015j\f\u0000\u0016O*k\/a\u0000\u0017k\/a\u0000\u0018,FO*k\/k\/a\u0000\u0019k\/a\u0000\u0018,FO)*k\/a\u0000\u0012k\/[a\u0000\u0010,\\Za\u0000\u001a>1k+\u0000\u0014Oa\u0000\u0015j\f\u0000\u0016Oa\u0000\u001b%\u000fY\u0000\ba\u0000\u001c%\u000fUUOPW\u0000\u0019X\u0000\u001d\u0000\u001e)a\u0000\u001fla\u0000 %a\u0000!%%\u0015OP\u000f\u000e4Q\u0000\u0007\u0010D\t\u0007CB44A\u000bD\u0000@0\u0000\u001efmgui_managedatasources_modify\u0000\u001efmGUI_ManageDataSources_Modify\u000eC\u0000\u0002\u0004@4\u0003@\u0000\u0001\u000e4\u0000\u0001\u0000?\u000b?\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002B\u0000\u0000\u00104\u0000\u0006>=<;:9\u000b>\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b=\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b<\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b;\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u000b:\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b9\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000#8765\t?4\t3\t210\/.4-,+*)\t(\t'&%$\t\t\t#4\"\t\t\u000b8\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\n7\u0000\u0004\nnull\u000b6\u0000 0\u0000\u000edatasourcepath\u0000\u000edataSourcePath\u00035\u0000\u0004\u000b4\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\n3\u0000\u0004\npcap\u000b2\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n1\u0000\u0004\ncwin\n0\u0000\u0004\nscra\n\/\u0000\u0004\ntabB\n.\u0000\u0004\ncrow\n-\u0000\u0004\nsttx\n,\u0000\u0004\npnam\n+\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n*\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\n)\u0000\u0004\nbutT\u000b(\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n'\u0000\u0018.sysodelanull\u0000\u0000nmbr\n&\u0000\u0004\ntxtf\n%\u0000\u0004\nvalL\n$\u0000\u0004\ntxta\u000b#\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003! \u001f\n!\u0000\u0004\nerrn\u000b \u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u001f\u0000\u0000\n\"\u0000\u0004\nerrn\u0011A\u0001&\u000eEO%EO,EO,EO\u0000\u001d\u0000\n%EY\u0000\u0003hO\u0014\u0000*jvk+\u0000\u0005O\u0012\u0000*\/\u0012\u0000)j+\u0000\tO*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0011\u001d\u0000*k\/k\/k\/k\/[k\/a\u0000\u0010,\\Z81j\f\u0000\u0012O)*k\/a\u0000\u0013k\/[a\u0000\u0010,\\Za\u0000\u0014>1k+\u0000\u0015Oa\u0000\u0016j\f\u0000\u0017O*k\/a\u0000\u0018k\/a\u0000\u0019,FO*k\/k\/a\u0000\u001ak\/a\u0000\u0019,FO)*k\/a\u0000\u0013k\/[a\u0000\u0010,\\Za\u0000\u001b>1k+\u0000\u0015Oa\u0000\u0016j\f\u0000\u0017Oa\u0000\u001c%\u000fY\u0000\na\u0000\u001d%\u000fOPUUOPW\u0000\u0019X\u0000\u001e\u0000\u001f)a\u0000 la\u0000!%a\u0000\"%%\u0015OP\u000f\u000e4R\u0000\u0007\u0010\u001e\n\u0004\u001d\u001c44\u001b\u000b\u001e\u0000<0\u0000\u001cfmgui_managedatasources_open\u0000\u001cfmGUI_ManageDataSources_Open\u000e\u001d\u0000\u0002\u0004\u001a4\u0003\u001a\u0000\u0001\u000e4\u0000\u0001\u0000\u0019\u000b\u0019\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u001c\u0000\u0000\u00104\u0000\u0003\u0018\u0017\u0016\u000b\u0018\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0017\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0016\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0014\nT\u0015\nR\u0014\u0013\u0012\n-\u0011\u0010\nH\u000f\u000e\n@4\nM\r\f4\u000b\n\\\n\u0015\u0000\u0004\npcap\u000b\u0014\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0013\u0000\u0004\ncwin\n\u0012\u0000\u0004\npnam\n\u0011\u0000\u0004\nmbar\n\u0010\u0000\u0004\nmbri\n\u000f\u0000\u0004\nmenE\n\u000e\u0000\u0004\nmenI\n\r\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\n\t\b\n\n\u0000\u0004\nerrn\u000b\t\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\b\u0000\u0000\n\u000b\u0000\u0004\nerrn\u0011\u001b\u0000`\u0014\u0000K\u0012\u0000C*\/\u0012\u0000;)j+\u0000\u0003O*k\/,\u0006\u001d\u0000\u0007e\u000fY\u0000%*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOe\u000fUUW\u0000\u0013X\u0000\u0010\u0000\u0011)a\u0000\u0012la\u0000\u0013%\u0015OP\u000f\u000e4S\u0000\u0007\u0010\u0007\ng\u0006\u000544\u0004\u000b\u0007\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\u000e\u0006\u0000\u0002\u0004\u00034\u0003\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u0002\u000b\u0002\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0005\u0000\u0000\u00104\u0000\t\u0001\u0000\u000b\u0001\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u000000\u0000\u0016managewindownameprefix\u0000\u0016manageWindowNamePrefix\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b\u0000$0\u0000\u0010managewindowname\u0000\u0010manageWindowName\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000!\n\u000b4\u000b\u0007\n4\n\n\u000b\u0018\u000b\u001c\u000b<\u000b\u000040\u0000\u0018notinmanagewindowiserror\u0000\u0018notInManageWindowIsError\u0003\u0000\u0005\n\u0000\u0004\nmin \n\u0000\u0004\ndire\n\u0000\b\u000bolierndD\n\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\npnam\n\u0000\u0004\nbutT\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0003\u0004\u0000\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u0000\n\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011\u0004\u0000el\u000eEO%EOEOEO EO!l\f\u0000\u0006EO\u0014\u0000\u0012\u0000*\/\u0012\u0000c)j+\u0000\nO*k\/,\u0006\u001d\u00008\u0014\u0000!*k\/,EO*k\/\/j\f\u0000\u000fOkj\f\u0000\u0010OPW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000\u0014%\u0015Y\u0000\u001a,E\u001d\u0000\u0011)a\u0000\u0013a\u0000\u0015la\u0000\u0016\u0015Y\u0000\u0004e\u000fOPUO)a\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000ek+\u0000\u001fOkj\f\u0000\u0010Oe\u000fOPUW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000 %\u0015OP\u000f\u000e4T\u0000\u0007\u0010\u000bG44\u000b\u000060\u0000\u0019fmgui_managedb_field_edit\u0000\u0019fmGUI_ManageDb_Field_Edit\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0016\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\u000b\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u000b\u0000\u001c0\u0000\fchangebutton\u0000\fchangeButton\u000b\u0000 0\u0000\u000efieldtypepopup\u0000\u000efieldTypePopup\u000b\u0000*0\u0000\u0013notevaluatecheckbox\u0000\u0013notEvaluateCheckbox\u000b\u0000\u001a0\u0000\u000bworkingarea\u0000\u000bworkingArea\u000b\u0000.0\u0000\u0015globalstoragecheckbox\u0000\u0015globalStorageCheckbox\u000b\u0000(0\u0000\u0012donotstorecheckbox\u0000\u0012doNotStoreCheckbox\u000b\u0000&0\u0000\u0011autoindexcheckbox\u0000\u0011autoIndexCheckbox\u000b\u0000\u001e0\u0000\rdatatypepopup\u0000\rdataTypePopup\u000b\u0000\u000b0\u0000\u0007fdsfdsf\u0000\u0000\u000b\u0000\u00180\u0000\nmenuchoice\u0000\nmenuChoice\u000b\u0000\u001c0\u0000\fdatacheckbox\u0000\fdataCheckbox\u000b\u0000.0\u0000\u0015autoentercalccheckbox\u0000\u0015autoEnterCalcCheckbox\u000b\u000020\u0000\u0017autoentercalccode_value\u0000\u0017autoEnterCalcCode_VALUE\u000b\u0000@0\u0000\u001eoverwriteexistingvaluecheckbox\u0000\u001eoverwriteExistingValueCheckbox\u000b\u0000*0\u0000\u0013prohibitmodcheckbox\u0000\u0013prohibitModCheckbox\u000b\u000040\u0000\u0018validationcalccode_value\u0000\u0018validationCalcCode_VALUE\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u000b`\u073f\u073e\u073d\u073c\u073b\u073a\u0739\u0738\u0737\u0736\u0735\u0734\u0733\u0732\u0731\u0730\u072f\u072e\u072d\u072c\u072b\u072a\u0729\u0728\u0727\u0726\u0725\u0724\u0019\n\u0723\u0019\b\u0722\u0721\u0720\u071f4\u071e\f\u0017\u071d\f5\u071c\u071b\fC\u071a\fN\u0719\u0718\fa\u0717\fp\ft\f~\f\f\u0716\u0715\f\f\f\f\r\u0003\u0714\r\u0015\u0713\u0712\r2\rC\rh\u0711\rt\u0710\r\u070f\u070e\u070d\r\r\u070c\u000e\u0000\u070b\u000e#\u000e6\u000eP\u000e\u000e\u070a\u000e\u0709\u000e\u0708\u0707\u000e\u000e\u000e\u000e\u000e\u000f*\u000f7\u000fA\u000fP\u000fZ\u000fh\u000f\u000f\u000f\u000f\u000f\u000f\u0010\u0003\u0010\u0010\u0010\u0014\u0010\u0017\u0010)\u0010~\u0010\u0010\u0011\u0018\u00114\u0011E\u0011g\u0011r\u0011v\u0011y\u0011\u0706\u0011\u0011\u0012\u000b\u0012\u0015\u0012&\u0705\u0012a\u0012r\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0013\u0001\u0013\u000e\u0013\u0018\u0013'\u00131\u0013?\u0013_\u0013\u0013\u0704\u0013\u0013\u0014\u000e\u0703\u0014%\u0702\u0701\u00149\u0014C\u0014N\u0014Y\u0014}\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0014\u0015\u0005\u0015\u0013\u0015\u0017\u0015\u001f\u0015%\u0015-\u00153\u0015;\u0015A\u0015I\u0015O\u0015W\u0015\\\u0015h\u0015t\u0015\u0015\u0015\u0015\u0016\u0004\u0015\u0016W\u0016f\u0016\u0016\u0700\u0016\u0016\u0017\u001c\u0017F\u0017S\u0017W\u0017Z\u0017\u0017\u0018\u0001\u0018\u0019\u0018*\u0018N\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u00184\u0019 ~\u0019$\u000b\u0000\u00140\u0000\beditmode\u0000\beditMode\u000b\u0000\u00160\u0000\ttablename\u0000\ttableName\n\u0000\u0004\nnull\u000b\u073f\u0000\u00160\u0000\tfieldname\u0000\tfieldName\u000b\u073e\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\u000b\u073d\u0000\u001c0\u0000\ffieldcomment\u0000\ffieldComment\u000b\u073c\u0000\u00140\u0000\bdatatype\u0000\bdataType\u000b\u073b\u0000\u00160\u0000\tfieldtype\u0000\tfieldType\u000b\u073a\u0000\u00140\u0000\bcalccode\u0000\bcalcCode\u000b\u0739\u0000&0\u0000\u0011autoentercalccode\u0000\u0011autoEnterCalcCode\u000b\u0738\u000020\u0000\u0017autoentercalccontexttoc\u0000\u0017autoEnterCalcContextTOC\u000b\u0737\u0000 0\u0000\u000ealwaysevaluate\u0000\u000ealwaysEvaluate\u000b\u0736\u0000 0\u0000\u000ecalccontexttoc\u0000\u000ecalcContextTOC\u000b\u0735\u0000\u001e0\u0000\rstorageglobal\u0000\rstorageGlobal\u000b\u0734\u000020\u0000\u0017storecalculationresults\u0000\u0017storeCalculationResults\u000b\u0733\u0000(0\u0000\u0012storageindexchoice\u0000\u0012storageIndexChoice\u000b\u0732\u0000\u00160\u0000\tautoindex\u0000\tautoIndex\u000b\u0731\u0000\u001e0\u0000\rmaxrepetition\u0000\rmaxRepetition\u000b\u0730\u0000\u001e0\u0000\rindexlanguage\u0000\rindexLanguage\u000b\u072f\u0000\u001c0\u0000\fallowediting\u0000\fallowEditing\u000b\u072e\u000000\u0000\u0016overwriteexistingvalue\u0000\u0016overwriteExistingValue\u000b\u072d\u0000*0\u0000\u0013autoenterisconstant\u0000\u0013autoEnterIsConstant\u000b\u072c\u000000\u0000\u0016autoenteriscalculation\u0000\u0016autoEnterIsCalculation\u000b\u072b\u0000&0\u0000\u0011autoenterislookup\u0000\u0011autoEnterIsLookup\u000b\u072a\u0000.0\u0000\u0015autoenterspecialvalue\u0000\u0015autoEnterSpecialValue\u000b\u0729\u0000\u00180\u0000\nautoserial\u0000\nautoSerial\u000b\u0728\u0000.0\u0000\u0015autoenterconstantdata\u0000\u0015autoEnterConstantData\u000b\u0727\u0000(0\u0000\u0012validationcalccode\u0000\u0012validationCalcCode\u000b\u0726\u000040\u0000\u0018validationcalccontexttoc\u0000\u0018validationCalcContextTOC\u0003\u0725\u00008\u000b\u0724\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\n\u0723\u0000\u0004\npcap\u000b\u0722\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0721\u0000\u0004\ncwin\n\u0720\u0000\u0004\ntabg\n\u071f\u0000\u0004\nbutT\n\u071e\u0000\u0004\ntitl\n\u071d\u0000\u0004\ntxtf\u000b\u071c\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\n\u071b\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u071a\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0719\u0000\u0004\nbool\n\u0718\u0000\u0004\npopB\n\u0717\u0000\u0004\nvalL\n\u0716\u0000\u0004\nerrn\u0003\u0715\u0004\u0000\u000b\u0714\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000b\u0713\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n\u0712\u0000\u0004\npnam\u000b\u0711\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b\u0710\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\n\u070f\u0000\u0004\nscra\u0003\u070e\u0000\u0004\n\u070d\u0000\u0004\ntxta\n\u070c\u0000\u0004\nchbx\u000b\u070b\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000b\u070a\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0709\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u0003\u0708\u0000\u0006\u000b\u0707\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\n\u0706\u0000\u0004\nradB\u000b\u0705\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\n\u0704\u0000\u0004\npcls\u000b\u0703\u0000\u001e0\u0000\rautonextvalue\u0000\rautoNextValue\u000b\u0702\u0000\u001e0\u0000\rautoincrement\u0000\rautoIncrement\u000b\u0701\u0000\u001c0\u0000\fautogenerate\u0000\fautoGenerate\n\u0700\u0000\u0004\nleng\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003}|{\n}\u0000\u0004\nerrn\u000b|\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006{\u0000\u0000\u000b~\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0011\u000fa\u0000\u0010a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000eEO%EO,EO,\u0001\u001d\u0000\fea\u0000\u0017,FY\u0000\u0003hO\u0014\u000f\u001a*k+\u0000\u001fEO\u000b\u001d\u0000\u0007f\u000fY\u0000\u0003hOa\u0000 \u0012\u000e*a\u0000!a\u0000\"\/\u0012\u000e)j+\u0000#O*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000(,\\Za\u0000)81EO,\u0001\u001d\u00003)*a\u0000$k\/a\u0000%k\/a\u0000*a\u0000+\/,l+\u0000,\u001d\u0000\nj\f\u0000-Y\u0000\u0003hOa\u0000.j\f\u0000\/Y\u0000\u0003hOa\u00000\u0000\t\u0000\u000b,\u0000a\u00001&\u001d\u0000M*a\u0000$k\/a\u0000%k\/a\u00002a\u00003\/EOa\u00004,a\u00005\u0000\u001d\u0000\fa\u00006,FY\u0000\u001fa\u00004,a\u00007\u0000\u001d\u0000\fa\u00008,FY\u0000\ta\u00009,FY\u0000\u0003hO,\u0000\u001d\u0000\u0013)a\u0000:a\u0000;la\u0000<\u0015OPY\u000e\u000b,a\u0000=\u0000\u001d\u0004D*a\u0000$k\/a\u0000%k\/a\u00002a\u0000>\/EOa\u00004,a\u0000?\u0001\u001d\u0000c)a\u0000@l+\u0000AO)*a\u0000$k\/a\u0000%k\/a\u0000&a\u0000B\/k+\u0000COa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000E\u0006\u000b\u001d\u0000!)*a\u0000$k\/a\u0000&a\u0000F\/k+\u0000COa\u0000.j\f\u0000\/OPY\u0000\u0003hOPY\u00006)*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000G>1k+\u0000CO)a\u0000Ha\u0000Il\u000ek+\u0000JOPOa\u0000K\u0000\n\u0000\u000b,\u0001a\u00001&\u001d\u0000\u001f)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/,l+\u0000,Y\u0000\u0003hO,\u0001\u001d\u0000')*a\u0000$k\/a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000O@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u0000')*a\u0000$k\/a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000P@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u0000:*a\u0000$k\/a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000R@1EO,E\u001d\u0000\f)jl+\u0000SY\u0000\t)kl+\u0000SY\u0000\u0003hOa\u0000T\u0000\n\u0000\ra\u0000\u0012,\u0001a\u00001&\u001d\u0000))*a\u0000$k\/a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000U@1a\u0000\u0012,l+\u0000,Y\u0000\u0003hOa\u0000V\u0000\n\u0000\u000b,\u0001a\u00001&\n\u0000\u000b,\u0001a\u00001&\n\u0000\ra\u0000\u0013,\u0001a\u00001&\n\u0000\ra\u0000\u0011,\u0001a\u00001&\u001d\u0001)*a\u0000$k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000W@1k+\u0000CO)a\u0000Ha\u0000Xa\u0000Ya\u0000Za\u0000[a\u0000\\a\u0000]\u000ek+\u0000^O*a\u0000$k\/EOa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000_@1EOa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000`@1EOa\u0000a\u0000\u001d\u00006,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000b\u0015Y\u0000\u0003hO,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000c\u0015Y\u0000\u0003hY\u0000\u0003hO,E\u001d\u0000\u000e)kl+\u0000SOPY\u0000,\u000b\u001d\u0000\u000e)kl+\u0000SOPY\u0000p)jl+\u0000SO)jl+\u0000SOa\u0000\u0010,a\u0000d\u0000\u001d\u0000\u0015)a\u0000Qa\u0000e\/kl+\u0000SOPY\u0000Aa\u0000\u0010,a\u0000f\u0000\u001d\u0000\u0015)a\u0000Qa\u0000g\/kl+\u0000SOPY\u0000\"a\u0000\u0010,a\u0000h\u0000\u001d\u0000\u0015)a\u0000Qa\u0000i\/kl+\u0000SOPY\u0000\u0003hOa\u0000\u0013,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000j@1a\u0000\u0013,l+\u0000AY\u0000\u0003hOa\u0000\u0011,\u0001\u001d\u00009a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000k@1EOa\u0000\u0011,E\u001d\u0000\f)kl+\u0000SY\u0000\t)jl+\u0000SOPY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000l@1k+\u0000CO)a\u0000Ha\u0000ma\u0000Ya\u0000na\u0000[a\u0000oa\u0000]\u000ek+\u0000^OPY\u0000\u0003hO*a\u0000$k\/EO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000p@1k+\u0000CO)a\u0000Ha\u0000qa\u0000Ya\u0000ra\u0000[a\u0000sa\u0000]\u000ek+\u0000^Oe\u000fOPY\t,a\u0000t\u0000\u001d\u0000\u0006hY\t,a\u0000u\u0000\u001d\ta\u0000v\u0000\n\u0000\u000b,\u0001a\u00001&\u001d\u0000*a\u0000$k\/a\u0000%k\/a\u00002a\u0000w\/EOa\u00004,,\u0001\u001d\u0000_),l+\u0000AO)*a\u0000$k\/a\u0000%k\/a\u0000&a\u0000x\/k+\u0000COa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000y\u0006\u000b\u001d\u0000\u001f)*a\u0000$k\/a\u0000&a\u0000z\/k+\u0000COa\u0000.j\f\u0000\/Y\u0000\u0003hY\u0000\u0003hY\u0000\u0003hO)*a\u0000$k\/a\u0000%k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000{>1k+\u0000CO)a\u0000Ha\u0000|a\u0000Ya\u0000}a\u0000[a\u0000~a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOa\u0000\u0000\n\u0000\u000b,\u0001a\u00001&\n\u0000\ra\u0000\u0010,\u0001a\u00001&\n\u0000\ra\u0000\u0013,\u0001a\u00001&\n\u0000\ra\u0000\u0011,\u0001a\u00001&\u001d\u0002\u0015a\u0000a\u0000\/j\f\u0000-O)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u0012,l+\u0000,Oa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0000\u001d\u0000\u001d,\u0000\u001d\u0000\u0011)a\u0000:a\u0000;la\u0000\u0015Y\u0000\u0003hY\u0000\u0003hO,E\u001d\u0000ja\u00004,k\u0001\u001d\u0000Z)k+\u0000Oa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000\u0006\u000b\u001d\u00005)*a\u0000$k\/a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^OPY\u0000\u0003hY\u0000\u0003hOPY\u0000\u01a8a\u00004,j\u0001\u001d\u0000\\)k+\u0000Oa\u0000.j\f\u0000\/O*a\u0000$k\/a\u0000D,a\u0000\u0006\u000b\u001d\u00005)*a\u0000$k\/a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^OPY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOY\u0000Aa\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOPY\u0000\"a\u0000\u0010,a\u0000\u0000\u001d\u0000\u0015)a\u0000Qa\u0000\/kl+\u0000SOPY\u0000\u0003hOa\u0000\u0013,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u0013,l+\u0000AY\u0000\u0003hOa\u0000\u0011,\u0001\u001d\u00009a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0011,E\u001d\u0000\f)kl+\u0000SY\u0000\t)jl+\u0000SOPY\u0000\u0003hOPY\u0000\u0003hO*a\u0000$k\/a\u0000%k\/EOa\u0000a\u0000\/j\f\u0000-Oa\u0000\u001a,\u0001\u001d\u0000\u00a0a\u0000\u001a,a\u0000,a\u00001\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/jl+\u0000SY\u0000)a\u0000Qa\u0000\/kl+\u0000SO)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001a,a\u0000,l+\u0000,O)a\u0000*k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001a,a\u0000,l+\u0000,Oa\u0000\u001a,a\u0000,a\u0000\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/kl+\u0000SY\u0000$a\u0000\u001a,a\u0000,a\u0000\u0000\u001d\u0000\u0013)a\u0000Qa\u0000\/kl+\u0000SY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0019,\u0001\u001d\u0001\u0620a\u0000\u0019,a\u0000\u0000\u001d\u0000\")a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1kl+\u0000SOPY\u0001a\u0000\u0019,a\u0000\u0006\u001d\u0000a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000ga\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000Sa\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000?a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000+a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0017a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0003hO)a\u00002a\u0000\/l+\u0000AOPY\u0001\u000ea\u0000\u0019,a\u0000\u0006\u001d\u0000a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000ga\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000Sa\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000?a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000+a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0017a\u0000\u0019,a\u0000\u0000\u001d\u0000\na\u0000EY\u0000\u0003hO)a\u00002a\u0000\/l+\u0000AOPY\u0000ua\u0000\u0019,a\u0000\u0000\u001d\u0000Z)a\u0000Qk\/a\u0000'[a\u0000(,\\Za\u000081jl+\u0000SO)a\u0000Qk\/a\u0000'[a\u0000(,\\Za\u000081jl+\u0000SO)a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1jl+\u0000SOPY\u0000\u0011a\u0000\u0019,\u0000\u001d\u0000\u0006hY\u0000\u0003hOPY\u0000\u0003hOa\u0000\u0016,\u0001\u001d\u0000aa\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EOa\u0000\u0016,E\u001d\u00004)kl+\u0000SOa\u0000\u001b,\u0000\u001d\u0000\u0006hY\u0000\u001b)a\u0000La\u0000\/a\u0000Na\u0000\/a\u0000\u001b,l+\u0000,Y\u0000\t)jl+\u0000SOPY\u0000\u0003hOa\u0000\u0018,\u0001\u001d\u0000\u0006hY\u0000\u0003hOa\u0000\u0017,\u0001\u001d\u0001a\u0000\u0017,\u000b\u001d\u0000\u0015)a\u0000Qa\u0000\/jl+\u0000SOPY\u0001a\u0000Qa\u0000\/EOa\u00004,k\u0001\u001d\u0000\u000b)k+\u0000CY\u0000\u001c)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000>1k+\u0000CO)a\u0000Ha\u0000l\u000ek+\u0000JO*a\u0000$k\/EO,a\u0000,j\u0000\u001d\u0000\fa\u0000E^\u0000\u0010Y\u0000\t,E^\u0000\u0010O)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/]\u0000\u0010l+\u0000,O,\u0001\u001d\u0000\")a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1,l+\u0000AY\u0000\u0003hO,\u0001\u001d\u00005a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1EO,E\u001d\u0000\f)jl+\u0000SY\u0000\t)kl+\u0000SY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOa\u0000\u0015,\u0001\u001d\u0000=a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1E^\u0000\u0011Oa\u0000\u0015,E\u001d\u0000\u000e)]\u0000\u0011jl+\u0000SY\u0000\u000b)]\u0000\u0011kl+\u0000SY\u0000\u0003hOPOPY\u0000\u0003hOa\u0000\u0014,\u0001\u001d\u0000=a\u0000Qk\/a\u0000'[a\u0000D,\\Za\u0000@1E^\u0000\u0012Oa\u0000\u0014,E\u001d\u0000\u000e)]\u0000\u0012jl+\u0000SY\u0000\u000b)]\u0000\u0012kl+\u0000SY\u0000\u0003hOa\u0000a\u0000\/j\f\u0000-Oa\u0000\u001c,\u0001\u001d\u0000)a\u0000&a\u0000\/k+\u0000CO)a\u0000Ha\u0000l\u000ek+\u0000JO*a\u0000$k\/EOa\u0000\u001c,a\u0000,j\u0000\u001d\u0000\fa\u0000E^\u0000\u0013Y\u0000\u000ba\u0000\u001c,E^\u0000\u0013O)*a\u0000$k\/a\u0000La\u0000M\/a\u0000Nk\/]\u0000\u0013l+\u0000,Oa\u0000\u001d,\u0001\u001d\u0000$)a\u00002k\/a\u0000'[a\u0000D,\\Za\u0000@1a\u0000\u001d,l+\u0000AY\u0000\u0003hO)a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^O*a\u0000$k\/a\u0000%k\/EOPY\u0000\u0003hO)*a\u0000$k\/a\u0000&k\/a\u0000'[a\u0000D,\\Za\u0000@1k+\u0000CO)a\u0000Ha\u0000a\u0000Ya\u0000a\u0000[a\u0000a\u0000]\u000ek+\u0000^Oe\u000fOPY\u0000\u0003hOe\u000fOPUUOPW\u0000\"X\u0000\u0000)a\u0000:]\u0000\u0015la\u0000*k+\u0000%a\u0000%]\u0000\u0014%\u0015OP\u000f\u000e4U\u0000\u0007\u0010z\u00191yx44w\u000bz\u0000:0\u0000\u001bfmgui_managedb_field_select\u0000\u001bfmGUI_ManageDb_Field_Select\u000ey\u0000\u0002\u0004v4\u0003v\u0000\u0001\u000e4\u0000\u0001\u0000u\u000bu\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002x\u0000\u0000\u00104\u0000\u0011tsrqponmlkjihgfed\u000bt\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bs\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000br\u0000 0\u0000\u000etestcodeheader\u0000\u000etestCodeHeader\u000bq\u0000\u00180\u0000\nselectcode\u0000\nselectCode\u000bp\u0000\u00180\u0000\nrowrefcode\u0000\nrowRefCode\u000bo\u0000\u00160\u0000\twhosecode\u0000\twhoseCode\u000bn\u0000*0\u0000\u0013fieldnameobjectcode\u0000\u0013fieldNameObjectCode\u000bm\u0000$0\u0000\u0010betweentestscode\u0000\u0010betweenTestsCode\u000bl\u0000&0\u0000\u0011afteralltestscode\u0000\u0011afterAllTestsCode\u000bk\u0000 0\u0000\u000etestcodefooter\u0000\u000etestCodeFooter\u000bj\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bi\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000bh\u0000$0\u0000\u0010fieldnowselected\u0000\u0010fieldNowSelected\u000bg\u0000\u001e0\u0000\ronealtpattern\u0000\roneAltPattern\u000bf\u0000\u00140\u0000\btestlist\u0000\btestList\u000be\u0000\u00140\u0000\btestcode\u0000\btestCode\u000bd\u0000\u00180\u0000\nonetestrec\u0000\noneTestRec\u00104\u00004cba`_\u0019]^\u0019`\u0019f\u0019l\u0019r\u0019x\u0019\u0019\u0019\u0019]\\[\u0019Z\u0019YXWVU4TSRQ4PONMLKJ\u001a8I\u001a<HG\u001aVF\u001alE\u001aD\u001a\u000bc\u0000\u00160\u0000\tfieldname\u0000\tfieldName\nb\u0000\u0004\nnull\u000ba\u0000\u00160\u0000\ttablename\u0000\ttableName\u000b`\u0000\u001a0\u0000\u000baltpatterns\u0000\u000baltPatterns\u0003_\u0000\u0006\n^\u0000\u0004\nret \u000b]\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000b\\\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000b[\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nZ\u0000\u0004\npcap\nY\u0000\u0004\ncwin\nX\u0000\u0004\ntabg\nW\u0000\u0004\nscra\nV\u0000\u0004\ntabB\nU\u0000\u0004\ncrow\nT\u0000\u0004\nsttx\nS\u0000\u0004\nvalL\nR\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\u000bQ\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003CBA\nC\u0000\u0004\nerrn\u000bB\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006A\u0000\u0000\u0003PI\nO\u0000\u0004\nerrn\nN\u0000\u0004\nkocl\nM\u0000\u0004\ncobj\nL\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bK\u0000\u000b0\u0000\u0007pattern\u0000\u0000\nJ\u0000\u0004\npcnt\u000bI\u0000\u00140\u0000\btesttype\u0000\btestType\u000bH\u0000\u00160\u0000\ttestmatch\u0000\ttestMatch\u000bG\u0000\u001a0\u0000\u000bquotestring\u0000\u000bquoteString\u000bF\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\nE\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000bD\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u0011w\u0001\u000eEO%EO%%%EOEOEOEOEOEOEO%%%EO\u0014\u0001]*jvk+\u0000\u0010O,\u0001\u001d\u0000\r*,k+\u0000\u0011Y\u0000\u0003hO*j+\u0000\u0012O\u0014\u0000Ma\u0000\u0013\u0012\u0000@*a\u0000\u0014a\u0000\u0015\/\u0012\u00004*a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001ak\/a\u0000\u001b[a\u0000\u001ck\/a\u0000\u001d,\\Z,81j\f\u0000\u001eUUOe\u000fW\u0000X\u0000\u001f\u0000 a\u0000!\u0001\u001d\u0000\r)a\u0000\"l\u0015Y\u0000fEO\u0017\u0000\u00e0,[a\u0000#a\u0000$l\f\u0000%kh\u001b\u0000\ra\u0000&,a\u0000',EO\u0014\u0000jvEO\u0017\u00007[a\u0000#a\u0000$l\f\u0000%kh\u001b\u0000\u0010a\u0000(]\u0000\u0010a\u0000),%a\u0000*%)]\u0000\u0010a\u0000+,k+\u0000,%6G[OYO)%a\u0000-%l+\u0000.EO%%%a\u0000\/%%%EO%%EO)\u0012\u0000\u0007j\f\u00000UOeEO\u0016OPW\u0000\u001dX\u0000\u001f\u0000 a\u0000!\u0001\u001d\u0000\r)a\u0000\"l\u0015Y\u0000\u0003hOPOP[OYQO\u000fOPOPW\u0000\u001eX\u0000\u001f\u0000 )a\u0000\"la\u00001*k+\u00002%a\u00003%%\u0015OP\u000f\u000e4V\u0000\u0007\u0010@\u001a?>44=\u000b@\u0000>0\u0000\u001dfmgui_managedb_fieldlistfocus\u0000\u001dfmGUI_ManageDb_FieldListFocus\u000e?\u0000\u0002\u0004<4\u0003<\u0000\u0001\u000e4\u0000\u0001\u0000;\u000b;\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002>\u0000\u0000\u00104\u0000\u0003:98\u000b:\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b9\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b8\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u000e7\u001b\u00116\u001b\u000f543210\/4.\u001b\u001a\u000b7\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\n6\u0000\u0004\npcap\u000b5\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n4\u0000\u0004\ncwin\n3\u0000\u0004\ntabg\n2\u0000\u0004\nscra\n1\u0000\u0004\ntabB\n0\u0000\u0004\nfocu\u000b\/\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003-,+\n-\u0000\u0004\nerrn\u000b,\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006+\u0000\u0000\n.\u0000\u0004\nerrn\u0011=\u0000G\u0014\u00006*jvk+\u0000\u0000O\u0012\u0000$*\/\u0012\u0000\u001c)j+\u0000\u0004Oe*k\/k\/k\/k\/,FOe\u000fUUOPW\u0000\u000fX\u0000\n\u0000\u000b)l%\u0015OP\u000f\u000e4W\u0000\u0007\u0010*\u001b%)(44'\u000b*\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\u000e)\u0000\u0002\u0004&4\u0003&\u0000\u0001\u000e4\u0000\u0001\u0000%\u000b%\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002(\u0000\u0000\u00104\u0000\u0003$#\"\u000b$\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000b#\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\"\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u000e!\u001bV \u001bT\u001f\u001e\u001d\u001bJ\u001c\u001b4\u001a\u001bb\u001bd\u000b!\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\n \u0000\u0004\npcap\n\u001f\u0000\u0004\ncwin\n\u001e\u0000\u0004\ntabg\n\u001d\u0000\u0004\npopB\u000b\u001c\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000b\u001b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\u0019\u0018\u0017\n\u0019\u0000\u0004\nerrn\u000b\u0018\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0017\u0000\u0000\n\u001a\u0000\u0004\nerrn\u0011'\u0000B\u0014\u0000-*jvk+\u0000\u0000O\u0012\u0000\u001d*\/\u0012\u0000\u0015)*k\/k\/\/l+\u0000\bOe\u000fUUW\u0000\u0013X\u0000\t\u0000\n)l%%%\u0015OP\u000f\u000e4X\u0000\u0007\u0010\u0016\u001bo\u0015\u001444\u0013\u000b\u0016\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u000e\u0015\u0000\u0002\u0004\u00124\u0003\u0012\u0000\u0001\u000e4\u0000\u0001\u0000\u0011\u000b\u0011\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0014\u0000\u0000\u00104\u0000\u0005\u0010\u000f\u000e\r\f\u000b\u0010\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u000f\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u000e\u0000\u00160\u0000\ttabobject\u0000\ttabObject\u000b\r\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0013\u000b\u001b\n\t\u001b\b\u001b\u0007\u0006\u00054\u0004\u0003\u0002\u00014\u0000\u001b\u001b\u000b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\n\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\t\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\n\b\u0000\u0004\npcap\n\u0007\u0000\u0004\ncwin\n\u0006\u0000\u0004\ntabg\n\u0005\u0000\u0004\nradB\n\u0004\u0000\u0004\ntitl\n\u0003\u0000\u0004\nvalL\n\u0002\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0001\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0000\u0004\nerrn\u0011\u0013\u0000wl\u000eEO%EO\u0014\u0000M*j+\u0000\u0002O*jvk+\u0000\u0003O\u0012\u00007*\/\u0012\u0000\/*k\/k\/k\/[,\\Z,@1\u0011EO,k\u0001\u001d\u0000\nj\f\u0000\rY\u0000\u0003hOe\u000fUUW\u0000\u001bX\u0000\u000e\u0000\u000f)a\u0000\u0010la\u0000\u0011,%a\u0000\u0012%%\u0015OP\u000f\u000e4Y\u0000\u0007\u0010\u001b44\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_fields\u0000\u001dfmGUI_ManageDb_GoToTab_Fields\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00104\u0000\u0003\u001b\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4Z\u0000\u0007\u0010\u001b44\u000b\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00104\u0000\u0003\u001c\u0004\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4[\u0000\u0007\u0010\u001c\u001044\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0001\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u00104\u0000\u0003\u001c!\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u000000\u0000\u0016fmgui_managedb_gototab\u0000\u0016fmGUI_ManageDb_GoToTab\u0011\u0000\f*l\u000ek+\u0000\u0002OP\u000f\u000e4\\\u0000\u0007\u0010\u001c+44\u000b\u0000B0\u0000\u001ffmgui_managedb_listoftablenames\u0000\u001ffmGUI_ManageDb_ListOfTableNames\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\ffmtablenames\u0000\ffmTableNames\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0013\u001cw\u001cu4\u001cj4\u001c\u000b\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\ncwin\n\u0000\u0004\ntabg\n\u0000\u0004\nscra\n\u0000\u0004\ntabB\n\u0000\u0004\ncrow\n\u0000\u0004\nsttx\n\u0000\u0004\nvalL\u000b\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000b\u0014\u0000M*jvk+\u0000\u0000O\u0012\u0000=*\/\u0012\u00005)j+\u0000\u0004O*k\/k\/k\/k\/-[l\/,\\Z81k\/,EO)jvk+\u0000\u000eO\u000fUUW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015OP\u000f\u000e4]\u0000\u0007\u0010\u001c44\u000b\u0000J0\u0000#fmgui_managedb_listofxdbctablenames\u0000#fmGUI_ManageDb_ListOfXDBCTableNames\u000e\u0000\u0002\u00044\u0003\u0000\u0001\u000e4\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00104\u0000\u0004\u06ff\u06fe\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000 0\u0000\u000exdbctablenames\u0000\u000exDBCTableNames\u000b\u06ff\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u06fe\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0013\u06fd\u001c\u06fc\u001c\u06fb\u06fa\u06f9\u06f8\u06f7\u06f64\u06f5\u06f4\u001c\u06f3\u06f24\u06f1\u001c\u000b\u06fd\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\n\u06fc\u0000\u0004\npcap\u000b\u06fb\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u06fa\u0000\u0004\ncwin\n\u06f9\u0000\u0004\ntabg\n\u06f8\u0000\u0004\nscra\n\u06f7\u0000\u0004\ntabB\n\u06f6\u0000\u0004\ncrow\n\u06f5\u0000\u0004\nsttx\n\u06f4\u0000\u0004\nvalL\u000b\u06f3\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u06f2\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\u06f0\u06ef\u06ee\n\u06f0\u0000\u0004\nerrn\u000b\u06ef\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06ee\u0000\u0000\n\u06f1\u0000\u0004\nerrn\u0011\u0000b\u0014\u0000M*jvk+\u0000\u0000O\u0012\u0000=*\/\u0012\u00005)j+\u0000\u0004O*k\/k\/k\/k\/-[l\/,\\Z91k\/,EO)jvk+\u0000\u000eO\u000fUUW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015OP\u000f\u000e4^\u0000\u0007\u0010\u06ed\u001c\u06ec\u06eb44\u06ea\u000b\u06ed\u0000*0\u0000\u0013fmgui_managedb_open\u0000\u0013fmGUI_ManageDb_Open\u000e\u06ec\u0000\u0002\u0004\u06e94\u0003\u06e9\u0000\u0001\u000e4\u0000\u0001\u0000\u06e8\u000b\u06e8\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06eb\u0000\u0000\u00104\u0000\u0005\u06e7\u06e6\u06e5\u06e4\u06e3\u000b\u06e7\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u06e6\u0000*0\u0000\u0013lookingforxdbcerror\u0000\u0013lookingForXDBCError\u000b\u06e5\u0000\u00160\u0000\tzoomfield\u0000\tzoomField\u000b\u06e4\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u06e3\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000(\u001e5\u06e2\u001e3\u06e1\u06e0\u06df\u001d\u0012\u06de\u06dd\u001d-\u06dc\u06db\u001d%4\u001d2\u06da\u06d9\u001dR\u06d8\u001da\u06d7\u001d\u001d\u001d\u06d6\u06d5\u06d4\u001d\u001d\u06d3\u06d2\u06d1\u001d\u06d0\u06cf\u06ce\u06cd4\u06cc\u001e=\n\u06e2\u0000\u0004\npcap\u000b\u06e1\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u06e0\u0000\u0004\ncwin\n\u06df\u0000\u0004\npnam\n\u06de\u0000\u0004\nmbar\n\u06dd\u0000\u0004\nmbri\n\u06dc\u0000\u0004\nmenE\n\u06db\u0000\u0004\nmenI\n\u06da\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u06d9\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u06d8\u0000\u0004\nbutT\u000b\u06d7\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\n\u06d6\u0000\u0004\nfaal\n\u06d5\u0000\b\u000beMdsKcmd\n\u06d4\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u06d3\u0000\u0004\ntabg\n\u06d2\u0000\u0004\ntxtf\n\u06d1\u0000\u0004\nfocu\n\u06d0\u0000\u0004\nvalL\n\u06cf\u0000\u0004\nscra\n\u06ce\u0000\u0004\nscrb\u000b\u06cd\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003\u06cb\u06ca\u06c9\n\u06cb\u0000\u0004\nerrn\u000b\u06ca\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06c9\u0000\u0000\n\u06cc\u0000\u0004\nerrn\u0011\u06ea\u0001\u0014\u0001\u0012\u0001*\/\u0012\u0001)j+\u0000\u0003O*k\/,\u0006\u001d\u0000\u0007e\u000fY\u0001s*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOkj\f\u0000\u0010OeEO\u0017\u0000;h\u0019*k\/,a\u0000\u0011\u0006\u001d\u0000#*k\/a\u0000\u0012k\/[,\\Za\u0000\u001381j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYO)jvk+\u0000\u0014Okj\f\u0000\u0010OeEO\u0017\u0000;h\u0019*k\/,a\u0000\u0015\u0006\u001d\u0000#*k\/a\u0000\u0012k\/[,\\Za\u0000\u001681j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYOa\u0000\u0017a\u0000\u0018a\u0000\u0019l\f\u0000\u001aOkj\f\u0000\u0010OeEO\u0017\u00002h\u0019*k\/,a\u0000\u001b\u0006\u001d\u0000\u001a*k\/a\u0000\u0012a\u0000\u001c\/j\f\u0000\u000fOkj\f\u0000\u0010Y\u0000\u0005fE[OYO*k\/a\u0000\u001dk\/a\u0000\u001ek\/EOea\u0000\u001f,FOa\u0000 a\u0000!,FOe*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000\u001f,FOj*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000#k\/a\u0000!,FOj*k\/a\u0000\u001dk\/a\u0000\"k\/a\u0000#l\/a\u0000!,FOe\u000fUUW\u0000\u0013X\u0000$\u0000%)a\u0000&la\u0000'%\u0015OP\u000f\u000e4_\u0000\u0007\u0010\u06c8\u001eH\u06c7\u06c644\u06c5\u000b\u06c8\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000e\u06c7\u0000\u0002\u0004\u06c44\u0003\u06c4\u0000\u0001\u000e4\u0000\u0001\u0000\u06c3\u000b\u06c3\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06c6\u0000\u0000\u00104\u0000\t\u06c2\u06c1\u06c0~}|{z\u000b\u06c2\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u06c1\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u06c0\u000040\u0000\u0018managedbwindownameprefix\u0000\u0018manageDbWindowNamePrefix\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b~\u0000,0\u0000\u0014waitsavetotalseconds\u0000\u0014waitSaveTotalSeconds\u000b}\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000b|\u0000(0\u0000\u0012managedbwindowname\u0000\u0012manageDbWindowName\u000b{\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bz\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000!y\u001eixwvuts\u001f\u0014r\u001eqpon\u001emlk4j\u001ei\u001ehg\u001ef\u001f\u0000edc\u001f\u001f\u000by\u0000,0\u0000\u0014notinmanagedbiserror\u0000\u0014notInManageDbIsError\u0003x\u0000\n\u0003w\u0000<\nv\u0000\u0004\nmin \nu\u0000\u0004\ndire\nt\u0000\b\u000bolierndD\ns\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\nr\u0000\u0004\npcap\u000bq\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\np\u0000\u0004\ncwin\no\u0000\u0004\npnam\nn\u0000\u0004\nbutT\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\nl\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000bk\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003ba`\nb\u0000\u0004\nerrn\u000ba\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006`\u0000\u0000\nj\u0000\u0004\nerrn\u0003i\u0004\u0000\u000bh\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000bg\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000bf\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000be\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000bd\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u000bc\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011\u06c5\u0000el\u000eEO%EOEOEO EO!l\f\u0000\u0007EO\u0014\u0000\u0012\u0000*\/\u0012\u0000c)j+\u0000\u000bO*k\/,\u0006\u001d\u00008\u0014\u0000!*k\/,EO*k\/\/j\f\u0000\u0010Okj\f\u0000\u0011OPW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000\u0015%\u0015Y\u0000\u001a,E\u001d\u0000\u0011)a\u0000\u0014a\u0000\u0016la\u0000\u0017\u0015Y\u0000\u0004e\u000fOPUO)a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e\u000ek+\u0000\u001fOkj\f\u0000\u0011Oe\u000fOPUOPW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000 %\u0015OP\u000f\u000e4`\u0000\u0007\u0010_\u001f*^]44\\\u000b_\u0000N0\u0000%fmgui_managedb_table_listoffieldnames\u0000%fmGUI_ManageDb_Table_ListOfFieldNames\u000e^\u0000\u0002\u0004[4\u0003[\u0000\u0001\u000e4\u0000\u0001\u0000Z\u000bZ\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0002]\u0000\u0000\u00104\u0000\u0003YXW\u000bY\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000bX\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bW\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\u0011V\u001f_U\u001f]TSRQPONML4K\u001fk\u001fm\u000bV\u0000@0\u0000\u001efmgui_managedb_fieldspicktable\u0000\u001efmGUI_ManageDb_FieldsPickTable\nU\u0000\u0004\npcap\nT\u0000\u0004\ncwin\nS\u0000\u0004\ntabg\nR\u0000\u0004\nscra\nQ\u0000\u0004\ntabB\nP\u0000\u0004\ncrow\nO\u0000\u0004\nsttx\nN\u0000\u0004\nvalL\nM\u0000\u0004\nrslt\u000bL\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003JIH\nJ\u0000\u0004\nerrn\u000bI\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006H\u0000\u0000\nK\u0000\u0004\nerrn\u0011\\\u0000I\u0014\u00002*k+\u0000\u0000O\u0012\u0000#*\/\u0012\u0000\u001b*k\/k\/k\/k\/-k\/,EOE\u000fUUW\u0000\u0015X\u0000\f\u0000\r)l%a\u0000\u0010%%\u0015OP\u000f\u000e4a\u0000\u0007\u0010G\u001fxFE44D\u000bG\u0000>0\u0000\u001dfmgui_managedb_tablelistfocus\u0000\u001dfmGUI_ManageDb_TableListFocus\u000eF\u0000\u0002\u0004C4\u0003C\u0000\u0001\u000e4\u0000\u0001\u0000B\u000bB\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002E\u0000\u0000\u00104\u0000\u0003A@?\u000bA\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b@\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b?\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000\r>\u001f=\u001f<;:98746\u001f\u000b>\u0000>0\u0000\u001dfmgui_managedb_gototab_tables\u0000\u001dfmGUI_ManageDb_GoToTab_Tables\n=\u0000\u0004\npcap\n<\u0000\u0004\ncwin\n;\u0000\u0004\ntabg\n:\u0000\u0004\nscra\n9\u0000\u0004\ntabB\n8\u0000\u0004\nfocu\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00064\u0000\u0003543\n5\u0000\u0004\nerrn\u000b4\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00063\u0000\u0000\n6\u0000\u0004\nerrn\u0011D\u0000A\u0014\u00000*jvk+\u0000\u0000O\u0012\u0000\u001e*\/\u0012\u0000\u0016e*k\/k\/k\/k\/,FOe\u000fUUOPW\u0000\u000fX\u0000\t\u0000\n)l%\u0015OP\u000f\u000e4b\u0000\u0007\u00102\u001f1044\/\u000b2\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000e1\u0000\u0002\u0004.4\u0003.\u0000\u0001\u000e4\u0000\u0001\u0000-\u000b-\u0000\t0\u0000\u0005prefs\u0000\u0000\u00020\u0000\u0000\u00104\u0000\u0005,+*)(\u000b,\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b+\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b*\u0000\u001c0\u0000\faddtocbutton\u0000\faddTocButton\u000b)\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b(\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00104\u0000-'&%$#\"! \u001f\u001e\u001d\u001c4\u001b \b\u001a\u0019\u0018 #\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r ] a\f\u000b\n \t \b5\u0000\u0007 \u000b'\u0000\u00120\u0000\u0007tocname\u0000\u0007tocName\n&\u0000\u0004\nnull\u000b%\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b$\u0000*0\u0000\u0013donotchangeexisting\u0000\u0013doNotChangeExisting\u000b#\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u0003\"\u0000\b\u000b!\u0000L0\u0000$fmgui_managedb_gototab_relationships\u0000$fmGUI_ManageDb_GoToTab_Relationships\n \u0000\u0004\npcap\u000b\u001f\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u001e\u0000\u0004\ncwin\n\u001d\u0000\u0004\ntabg\n\u001c\u0000\u0004\nbutT\n\u001b\u0000\u0004\ndesc\u000b\u001a\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\n\u0019\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0018\u0000\u0004\npopB\u000b\u0017\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\n\u0016\u0000\u0004\nscra\n\u0015\u0000\u0004\ntabB\n\u0014\u0000\u0004\ncrow\n\u0013\u0000\u0004\nsttx\n\u0012\u0000\u0004\nvalL\n\u0011\u0000\u0018.miscslctnull\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0010\u0000\u0000\u0002\u000f\u0000\u0000\u0003\u000e\u00005\n\r\u0000\u0018.prcskcodnull\u0000\u0000\u0000\u0000\u0000****\u000b\f\u0000 0\u0000\u000edatasourcename\u0000\u000edataSourceName\u000b\u000b\u0000L0\u0000$fmgui_managedatasources_ensureexists\u0000$fmGUI_ManageDataSources_EnsureExists\u000b\n\u0000<0\u0000\u001cfmgui_managedatasources_save\u0000\u001cfmGUI_ManageDataSources_Save\n\t\u0000\u0004\ntxtf\u000b\b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0000\u0003\u0006\u0005\u0004\n\u0006\u0000\u0004\nerrn\u000b\u0005\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0004\u0000\u0000\n\u0007\u0000\u0004\nerrn\u0011\/\u0001Pf\u000eEO%EO\u0014\u0001(*jvk+\u0000\u0006O\u0012\u0001\u0018*\/\u0012\u0001\u0010)j+\u0000\nO*k\/k\/k\/[,\\Za\u0000\u0010@1EO)k+\u0000\u0011Okj\f\u0000\u0012O\u0014\u0000B)*k\/a\u0000\u0013a\u0000\u0014\/,l+\u0000\u0015O*k\/a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/[a\u0000\u0019k\/a\u0000\u001a,\\Z,81j\f\u0000\u001bW\u0000|X\u0000\u001c\u0000\u001da\u0000\u001ej\f\u0000\u001fO)*k\/a\u0000\u0013a\u0000 \/a\u0000!l+\u0000\u0015O)a\u0000\",l\u000ek+\u0000#O)jvk+\u0000$Okj\f\u0000\u0012O)*k\/a\u0000\u0013a\u0000%\/,l+\u0000\u0015O*k\/a\u0000\u0016k\/a\u0000\u0017k\/a\u0000\u0018k\/[a\u0000\u0019k\/a\u0000\u001a,\\Z,81j\f\u0000\u001bO,*k\/a\u0000&a\u0000'\/a\u0000\u001a,FO)*k\/a\u0000(\/k+\u0000\u0011Oe\u000fUUW\u0000\u0013X\u0000)\u0000*)a\u0000+la\u0000,%\u0015OP\u000f\u000e4c\u0000\u0007\u0010\u0003 \u0002\u00015\u00015\u0002\u0000\u000b\u0003\u000060\u0000\u0019fmgui_managedb_to_listadd\u0000\u0019fmGUI_ManageDB_TO_ListAdd\u000e\u0002\u0000\u0002\u00045\u0003\u0003\u0000\u0001\u000e5\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0001\u0000\u0000\u00105\u0001\u0000\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u000b\u0000\b0\u0000\u0002cr\u0000\u0002CR\u000b\u0000\b0\u0000\u0002lf\u0000\u0002LF\u000b\u0000\u000e0\u0000\u0005oneto\u0000\u0005oneTO\u000b\u0000\u000e0\u0000\u0005torec\u0000\u0005TORec\u000b\u0000\u00160\u0000\tonedbname\u0000\toneDBName\u000b\u0000\u001c0\u0000\fonetablename\u0000\foneTableName\u000b\u0000\u00120\u0000\u0007toparam\u0000\u0007TOParam\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0002\u0000\u0016 !7!U5\u0004!j\u000b\u0000\u00100\u0000\u0006tolist\u0000\u0006TOList\u000b\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u0003\u0000\u0004\u000b\u0000\u00180\u0000\nparsechars\u0000\nparseChars\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\u000b\u0000\u00100\u0000\u0006dbname\u0000\u0006dbName\u000b\u0000\u001e0\u0000\rbasetablename\u0000\rbaseTableName\u000b\u0000\u00100\u0000\u0006toname\u0000\u0006TOName\u0003\u0000\u0006\u000b\u0000.0\u0000\u0015fmgui_managedb_to_add\u0000\u0015fmGUI_ManageDb_TO_Add\u000b\u0000*0\u0000\u0013fmgui_managedb_save\u0000\u0013fmGUI_ManageDB_Save\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0004\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000\u0000l\u000eEO%EO\u0014\u0000,EO*mvk+\u0000\u0002EO*\u000ek+\u0000\u0006EOj\f\u0000\u0007j\u0002\u001d\u0000S\u0017\u0000E[l\f\u0000\u0007kh\u001b\u0000\u0005*\u000ek+\u0000\u0006EOk\/EOl\/EO%%\u000eEO*k+\u0000\u0010[OYO*jvk+\u0000\u0011Y\u0000\u0003hOe\u000fW\u0000\u0013X\u0000\u0012\u0000\u0013)a\u0000\u0014la\u0000\u0015%\u0015OP\u000f\u000e4d\u0000\u0007\u0010!u5\u00055\u0006\u000b\u0000N0\u0000%fmgui_managescripts_listofscriptnames\u0000%fmGUI_ManageScripts_ListOfScriptNames\u000e\u0000\u0002\u00045\u0007\u0003\u0000\u0001\u000e5\u0007\u0000\u0001\u0000\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u0002\u0000\u0000\u00105\u0005\u0000\u0001\u000b\u0000\u00180\u0000\nsomedbname\u0000\nsomeDbName\u00105\u0006\u0000\u000b!!!\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncDB \n\u0000\u0004\ncSCP\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npnam\n\u0000\u0004\nerrn\u0003\u0004\u0000\u0011\u00008)0\u0012\u0000.*\/-j\f\u0000\u0005j\u0000\u001d\u0000\bjv\u000fY\u0000\f*\/-,E\u000fO)l%%\u0015OPUOP\u000f\u000e4e\u0000\u0007\u0010!5\b5\t\u000b\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000e\u0000\u0002\u00045\n\u0003\u0000\u0001\u000e5\n\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\b\u0000\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\t\u0000\u0011!!!\u06bf\u06be4\u06bd\u06bc\u06bb5\u000b\u06ba\"\u0006\u000b\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\n\u0000\u0004\npcap\n\u0000\u0004\ncwin\n\u06bf\u0000\u0004\ntabg\n\u06be\u0000\u0004\nradB\n\u06bd\u0000\u0004\npnam\n\u06bc\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u06bb\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u000b\u0000\u0003\u06b9\u06b8\u06b7\n\u06b9\u0000\u0004\nerrn\u000b\u06b8\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06b7\u0000\u0000\n\u06ba\u0000\u0004\nerrn\u0011\u0000^l\u000eEO%EO\u0014\u0000>*j+\u0000\u0002O*jvk+\u0000\u0003O\u0012\u0000(*\/\u0012\u0000 *k\/k\/k\/[,\\Z,81j\f\u0000\fOe\u000fOPUUW\u0000\u0011X\u0000\r\u0000\u000e)la\u0000\u0010%\u0015OP\u000f\u000e4f\u0000\u0007\u0010\u06b6\"\u0011\u06b5\u06b45\f5\r\u06b3\u000b\u06b6\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\u000e\u06b5\u0000\u0002\u0004\u06b25\u000e\u0003\u06b2\u0000\u0001\u000e5\u000e\u0000\u0001\u0000\u06b1\u000b\u06b1\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06b4\u0000\u0000\u00105\f\u0000\u0003\u06b0\u06af\u06ae\u000b\u06b0\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u06af\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u06ae\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\r\u0000\u0007\u06ad\"%\u06ac\u06ab5\u000f\u06aa\".\u000b\u06ad\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u06ac\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000b\u06ab\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u000f\u0000\u0003\u06a9\u06a8\u06a7\n\u06a9\u0000\u0004\nerrn\u000b\u06a8\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u06a7\u0000\u0000\n\u06aa\u0000\u0004\nerrn\u0011\u06b3\u0000\u001f\u0014\u0000\u000e*l\u000ek+\u0000\u0002W\u0000\u000fX\u0000\u0003\u0000\u0004)l%\u0015OP\u000f\u000e4g\u0000\u0007\u0010\u06a6\"9\u06a5\u06a45\u00105\u0011\u06a3\u000b\u06a6\u0000N0\u0000%fmgui_managesecurity_gototab_privsets\u0000%fmGUI_ManageSecurity_GoToTab_PrivSets\u000e\u06a5\u0000\u0002\u0004\u06a25\u0012\u0003\u06a2\u0000\u0001\u000e5\u0012\u0000\u0001\u0000\u06a1\u000b\u06a1\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u06a4\u0000\u0000\u00105\u0010\u0000\u0003\u06a0\u069f\u069e\u000b\u06a0\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u069f\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u069e\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0011\u0000\u0007\u069d\"M\u069c\u069b5\u0013\u069a\"V\u000b\u069d\u0000\u00120\u0000\u0007tabname\u0000\u0007tabName\u000b\u069c\u0000<0\u0000\u001cfmgui_managesecurity_gototab\u0000\u001cfmGUI_ManageSecurity_GoToTab\u000b\u069b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0013\u0000\u0003\u0699\u0698\u0697\n\u0699\u0000\u0004\nerrn\u000b\u0698\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0697\u0000\u0000\n\u069a\u0000\u0004\nerrn\u0011\u06a3\u0000\u001f\u0014\u0000\u000e*l\u000ek+\u0000\u0002W\u0000\u000fX\u0000\u0003\u0000\u0004)l%\u0015OP\u000f\u000e4h\u0000\u0007\u0010\u0696\"a\u0695\u06945\u00145\u0015\u0693\u000b\u0696\u0000d0\u00000fmgui_managesecurity_listofaccountsandprivileges\u00000fmGUI_ManageSecurity_ListOfAccountsAndPrivileges\u000e\u0695\u0000\u0002\u0004\u06925\u0016\u0003\u0692\u0000\u0001\u000e5\u0016\u0000\u0001\u0000\u0691\u000b\u0691\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0694\u0000\u0000\u00105\u0014\u0000\t\u0690\u068f\u068e\u068d\u068c\u068b\u068a\u0689\u0688\u000b\u0690\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u068f\u0000\u001e0\u0000\raccountstable\u0000\raccountsTable\u000b\u068e\u0000$0\u0000\u0010accountnameslist\u0000\u0010accountNamesList\u000b\u068d\u0000\u001e0\u0000\rprivnameslist\u0000\rprivNamesList\u000b\u068c\u0000\u001c0\u0000\faccountslist\u0000\faccountsList\u000b\u068b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u068a\u0000\u001e0\u0000\roneaccountrow\u0000\roneAccountRow\u000b\u0689\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0688\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0015\u0000\u0012\u0687\u0686\"\u0685\"\u0684\u0683\u0682\u0681\u0680~}|{5\u0017z\"\u000b\u0687\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b\u0686\u0000N0\u0000%fmgui_managesecurity_gototab_accounts\u0000%fmGUI_ManageSecurity_GoToTab_Accounts\n\u0685\u0000\u0004\nprcs\n\u0684\u0000\u0004\ncwin\n\u0683\u0000\u0004\ntabg\n\u0682\u0000\u0004\nscra\n\u0681\u0000\u0004\ntabB\n\u0680\u0000\u0004\ncrow\n\u0000\u0004\nsttx\n~\u0000\u0004\nvalL\n}\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n|\u0000\u0004\ncobj\u000b{\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0017\u0000\u0003yxw\ny\u0000\u0004\nerrn\u000bx\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006w\u0000\u0000\nz\u0000\u0004\nerrn\u0011\u0693\u0000\u0014\u0000t*j+\u0000\u0000O*jvk+\u0000\u0001O\u0012\u0000^*\/\u0012\u0000V*k\/k\/k\/k\/EO-k\/,EO-m\/,EOjvEO\u0017\u0000#kj\f\u0000\fkh\u001c\u0000\u0005\/\/lvEO6F[OYO\u000fOPUUW\u0000\u0013X\u0000\u000e\u0000\u000f)a\u0000\u0010la\u0000\u0011%\u0015OP\u000f\u000e4i\u0000\u0007\u0010v\"ut5\u00185\u0019s\u000bv\u000060\u0000\u0019fmgui_managesecurity_open\u0000\u0019fmGUI_ManageSecurity_Open\u000eu\u0000\u0002\u0004r5\u001a\u0003r\u0000\u0001\u000e5\u001a\u0000\u0001\u0000q\u000bq\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002t\u0000\u0000\u00105\u0018\u0000\u0003pon\u000bp\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bo\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bn\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0019\u0000\u0014#,m#*lkj#\u0006ih# gf#\u00184#%ed5\u001bc#4\nm\u0000\u0004\npcap\u000bl\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nk\u0000\u0004\ncwin\nj\u0000\u0004\npnam\ni\u0000\u0004\nmbar\nh\u0000\u0004\nmbri\ng\u0000\u0004\nmenE\nf\u0000\u0004\nmenI\ne\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000bd\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u001b\u0000\u0003ba`\nb\u0000\u0004\nerrn\u000ba\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006`\u0000\u0000\nc\u0000\u0004\nerrn\u0011s\u0000`\u0014\u0000K\u0012\u0000C*\/\u0012\u0000;)j+\u0000\u0003O*k\/,\b\u000b\u001d\u0000(*k\/\/k\/\/k\/k\/[,\\Z>1j\f\u0000\u000fOe\u000fY\u0000\u0003hUUW\u0000\u0013X\u0000\u0010\u0000\u0011)a\u0000\u0012la\u0000\u0013%\u0015OP\u000f\u000e4j\u0000\u0007\u0010_#?^]5\u001c5\u001d\\\u000b_\u000060\u0000\u0019fmgui_managesecurity_save\u0000\u0019fmGUI_ManageSecurity_Save\u000e^\u0000\u0002\u0004[5\u001e\u0003[\u0000\u0001\u000e5\u001e\u0000\u0001\u0000Z\u000bZ\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002]\u0000\u0000\u00105\u001c\u0000\u0004YXWV\u000bY\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bX\u0000\u001a0\u0000\u000bdefaulprefs\u0000\u000bdefaulPrefs\u000bW\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bV\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u001d\u0000\u001fUTSR#Q#PON#tML#xKJ4#I#H##G#F##E5\u001f$\u0004\u000bU\u0000\u001a0\u0000\u000bfullaccount\u0000\u000bfullAccount\nT\u0000\u0004\nnull\u000bS\u0000\u001c0\u0000\ffullpassword\u0000\ffullPassword\u0003R\u0000\u0004\nQ\u0000\u0004\npcap\u000bP\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nO\u0000\u0004\ncwin\nN\u0000\u0004\npnam\nM\u0000\u0004\nerrn\u0003L\u0004\u0000\u0003K\u0000\u0005\nJ\u0000\u0004\nbutT\u000bI\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\nH\u0000\u0018.sysodelanull\u0000\u0000nmbr\nG\u0000\u0004\ntxtf\nF\u0000\u0004\nvalL\u000bE\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u001f\u0000\u0003DCB\nD\u0000\u0004\nerrn\u000bC\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006B\u0000\u0000\u0011\\\u0000\u000eEO%EO\u0014\u0000\u0012\u0000*\/\u0012\u0000)j+\u0000\u0007O*k\/,\b\u000b\u001d\u0000\u000b)l\u0015Y\u0000\u0003hO\u0017\u0000>kh\u0018)*k\/k\/a\u0000\u0010[,\\Za\u0000\u001181k+\u0000\u0012O*k\/,a\u0000\u0013\u0006\u000b\u001d\u0000\u0006\u0016Y\u0000\u0003hOkj\f\u0000\u0014[OYOa\u0000\u0015j\f\u0000\u0014O*k\/,a\u0000\u0016\u0000\u001d\u0000N,*k\/a\u0000\u0017a\u0000\u0018\/a\u0000\u0019,FO,*k\/a\u0000\u0017a\u0000\u001a\/a\u0000\u0019,FO)*k\/k\/a\u0000\u0010[,\\Za\u0000\u001b81k+\u0000\u0012Oa\u0000\u0015j\f\u0000\u0014Y\u0000\u0003hOPUUW\u0000\u0011X\u0000\u001c\u0000\u001d)la\u0000\u001e%\u0015OP\u000f\u000e4k\u0000\u0007\u0010A$\u000f@?5 5!>\u000bA\u0000&0\u0000\u0011fmgui_checkboxset\u0000\u0011fmGUI_CheckboxSet\u000e@\u0000\u0002\u0004=5\"\u0003=\u0000\u0002\u000e5\"\u0000\u0002\u0000<;\u000b<\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u000b;\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u0002?\u0000\u0000\u00105 \u0000\u0004:987\u000b:\u0000 0\u0000\u000echeckboxobject\u0000\u000echeckboxObject\u000b9\u0000\u001e0\u0000\rcheckboxvalue\u0000\rcheckboxValue\u000b8\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b7\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105!\u0000\t$\u001e65435#2$?$A\n6\u0000\u0004\nnull\n5\u0000\u0004\nvalL\n4\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b3\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065#\u0000\u000310\/\n1\u0000\u0004\nerrn\u000b0\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\/\u0000\u0000\n2\u0000\u0004\nerrn\u0011>\u0000:Z\u0014\u0000%\u0001\u001d\u0000\u0016,\u0001\u001d\u0000\nj\f\u0000\u0003Y\u0000\u0003hY\u0000\u0003hOe\u000fOPW\u0000\u0013X\u0000\u0004\u0000\u0005)l%%%\u0015\u000f\u000e4l\u0000\u0007\u0010.$K-,5$5%+\u000b.\u0000B0\u0000\u001ffmgui_objectclick_affectswindow\u0000\u001ffmGUI_ObjectClick_AffectsWindow\u000e-\u0000\u0002\u0004*5&\u0003*\u0000\u0001\u000e5&\u0000\u0001\u0000)\u000b)\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u0002,\u0000\u0000\u00105$\u0000\u0001(\u000b(\u0000\u00160\u0000\tbuttonref\u0000\tbuttonRef\u00105%\u0000\u0002$Y'\u000b'\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u0011+\u0000\u000bZ)k+\u0000\u0001OP\u000f\u000e4m\u0000\u0007\u0010&$f%$5'5(#\u000b&\u000040\u0000\u0018fmgui_pastefromclipboard\u0000\u0018fmGUI_PasteFromClipboard\u0002%\u0000\u0000\u0002$\u0000\u0000\u00105'\u0000\u0004\"! \u001f\u000b\"\u0000(0\u0000\u0012pasemenuitemexists\u0000\u0012paseMenuItemExists\u000b!\u0000\u001e0\u0000\rpastemenuitem\u0000\rpasteMenuItem\u000b \u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u001f\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105(\u0000\u0017$\u001e$\u001d\u001c\u001b$\u001a\u00194\u0018$\u0017\u00165)\u0015$\u0014\u0013\u0012\u0011$\u0010\n\u001e\u0000\u0004\npcap\u000b\u001d\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u001c\u0000\u0004\nmbar\n\u001b\u0000\u0004\nmbri\n\u001a\u0000\u0004\nmenE\n\u0019\u0000\u0004\nmenI\n\u0018\u0000\u0004\npnam\n\u0017\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0016\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065)\u0000\u0003\u000f\u000e\r\n\u000f\u0000\u0004\nerrn\u000b\u000e\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\r\u0000\u0000\n\u0015\u0000\u0004\nerrn\u0003\u0014\u0000\u0014\n\u0013\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\n\u0010\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011#\u0000fEO\u0012\u0000w*\/\u0012\u0000o)j+\u0000\u0003O*k\/\/k\/k\/[,\\Z81EO\u0014\u0000\nj\f\u0000\fW\u0000\u0011X\u0000\r\u0000\u000e)la\u0000\u0010%\u0015O\u0017\u00002a\u0000\u0011kh\u0018\u0014\u0000\u0016j\f\u0000\u0012\u001d\u0000\neEO\u0016Y\u0000\u0003hW\u0000\bX\u0000\u0013\u0000\u0014hOa\u0000\u0015j\f\u0000\u0016[OYUUO\u000fOP\u000f\u000e4n\u0000\u0007\u0010\f$\u000b\n5*5+\t\u000b\f\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\u000e\u000b\u0000\u0002\u0004\b5,\u0003\b\u0000\u0001\u000e5,\u0000\u0001\u0000\u0007\u000b\u0007\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\n\u0000\u0000\u00105*\u0000\t\u0006\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0006\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0005\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0004\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u0003\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u000b\u0002\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0001\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\u000b\u0000\u0000\u00140\u0000\bmustpick\u0000\bmustPick\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105+\u0000$$%\u0000%=%Q%%%%%&\t4&\u001b&3&K5-&t&v&x\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\n\u0000\u0004\nnull\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u000b\u0000&0\u0000\u0011clickifalreadyset\u0000\u0011clickIfAlreadySet\u0003\u0000\b\n\u0000\u0004\npcls\n\u0000\u0004\ncobj\u0003\u0000\u0004\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\nerrn\u0003\u0004\u0000\n\u0000\u0004\nvalL\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0004\npnam\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065-\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0011\t\u0002\u0006f\u000eEO,llv,\u0000\u001d\u0000\u0013k\/l\/\u000eEY\u0000\u0003hO%EO,EO,EO,EO,EOZ\u0014\u0001j\f\u0000\f\u000b\u001d\u0000\r)l\u0015OPY\u0001fEOa\u0000\u0010,j\f\u0000\f\u000b\u001d\u0000\neEOPY\u0000\u001d\u0000\neEOPY\u0000a\u0000\u0011\u0000\u001d\u0000\u0018a\u0000\u0010,\u0001\u001d\u0000\beEY\u0000\u0003hOPY\u0000a\u0000\u0012\u0000\u001d\u0000\u0019a\u0000\u0010,\b\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000`a\u0000\u0013\u0000\u001d\u0000\u0019a\u0000\u0010,\u0006\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000Aa\u0000\u0014\u0000\u001d\u0000\u0019a\u0000\u0010,\u0006\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000\"a\u0000\u0015\u0000\u001d\u0000\u0019a\u0000\u0010,\u0007\u000b\u001d\u0000\beEY\u0000\u0003hOPY\u0000\u0003hO\u001d\u0000\u0001\u001d\u0000j\f\u0000\u0016Oa\u0000\u0017\u0000\u001d\u0000!a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z81j\f\u0000\u0016Y\u0000~a\u0000\u001c\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z@1j\f\u0000\u0016OPY\u0000Ua\u0000\u001d\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z>1j\f\u0000\u0016OPY\u0000,a\u0000\u001e\u0000\u001d\u0000#a\u0000\u0018k\/a\u0000\u0019k\/a\u0000\u001a[a\u0000\u001b,\\Z?1j\f\u0000\u0016OPY\u0000\u0003hOPY\u0000\u0003hY\u0000\u0003hOe\u000fOPW\u0000\u001dX\u0000\u001f\u0000 )la\u0000!%a\u0000\"%%a\u0000#%%\u0015\u000f\u000e4o\u0000\u0007\u0010&5.5\/\u000b\u0000 0\u0000\u000efmgui_popupset\u0000\u000efmGUI_PopupSet\u000e\u0000\u0002\u000450\u0003\u0000\u0002\u000e50\u0000\u0002\u0000\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u0002\u0000\u0000\u00105.\u0000\u0004\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\/\u0000\r&&51&&\u000b\u0000\u001a0\u0000\u000bpopupobject\u0000\u000bpopupObject\u000b\u0000\u001a0\u0000\u000bpopupchoice\u0000\u000bpopupChoice\u000b\u0000\u001e0\u0000\rselectcommand\u0000\rselectCommand\u0003\u0000\u0006\u000b\u0000:0\u0000\u001bfmgui_popup_selectbycommand\u0000\u001bfmGUI_Popup_SelectByCommand\n\u0000\u0004\nrslt\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000651\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\n\u0000\u0004\nerrn\u0011\u0000-Z\u0014\u0000\u0018*\u000ek+\u0000\u0006OE\u000fOPW\u0000\u0013X\u0000\b\u0000\t)l%%%\u0015\u000f\u000e4p\u0000\u0007\u0010&5253\u000b\u000000\u0000\u0016fmgui_selectallandcopy\u0000\u0016fmGUI_SelectAllAndCopy\u0002\u0000\u0000\u0002\u0000\u0000\u001052\u0000\u0003\u000b\u0000$0\u0000\u0010clipboardchanged\u0000\u0010clipboardChanged\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u001053\u0000\u001f&'T'R&4&54&'\u0015'\r'\u001f\u067f\u067e\u067d\u067c\u067b\u067a\u0679\u0678\n\u0000\u0018.JonspClpnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\npcap\u000b\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0000\u0004\nmbar\n\u0000\u0004\nmbri\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n\u0000\u0004\npnam\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000654\u0000\u0003\u0677\u0676\u0675\n\u0677\u0000\u0004\nerrn\u000b\u0676\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0675\u0000\u0000\n\u0000\u0004\nerrn\u0003\u0000\n\n\u067f\u0000\u0004\nrtyp\n\u067e\u0000\u0004\nutf8\n\u067d\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\n\u067c\u0000\u0004\nrslt\n\u067b\u0000\u0004\nleng\u0001\u067a\u0000\u0000\u0002\u0679\u0000\u0000\n\u0678\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000j\f\u0000\u0001OfEO\u0012\u0000*\/\u0012\u0000)j+\u0000\u0005O\u0014\u0000\u001f*k\/\/k\/k\/[,\\Z81j\f\u0000\u000eW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0012%\u0015O\u0014\u0000\u001a*k\/a\u0000\u0013\/k\/a\u0000\u0014\/j\f\u0000\u000eW\u0000\u0013X\u0000\u000f\u0000\u0010)a\u0000\u0011la\u0000\u0015%\u0015O\u0017\u0000Da\u0000\u0016kh\u0018\u0014\u0000&*a\u0000\u0017a\u0000\u0018l\f\u0000\u0019O_\u0000\u001aa\u0000\u001b,j\u0002\u001d\u0000\neEO\u0016Y\u0000\u0003hW\u0000\fX\u0000\u001c\u0000\u001deEO\u0016Okj\f\u0000\u001e[OYOPUUO\u000fOP\u000f\u000e4q\u0000\u0007\u0010\u0674'b\u0673\u06725556\u0671\u000b\u0674\u0000(0\u0000\u0012fmgui_textfieldset\u0000\u0012fmGUI_TextFieldSet\u000e\u0673\u0000\u0002\u0004\u067057\u0003\u0670\u0000\u0002\u000e57\u0000\u0002\u0000\u066f\u066e\u000b\u066f\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u000b\u066e\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u0002\u0672\u0000\u0000\u001055\u0000\u0004\u066d\u066c\u066b\u066a\u000b\u066d\u0000\"0\u0000\u000ftextfieldobject\u0000\u000ftextfieldObject\u000b\u066c\u0000 0\u0000\u000etextfieldvalue\u0000\u000etextfieldValue\u000b\u066b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u066a\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u001056\u0000\t'q\u0669\u0668\u0667\u066658\u0665''\n\u0669\u0000\u0004\nnull\n\u0668\u0000\u0004\nvalL\n\u0667\u0000\u0004\nfocu\u000b\u0666\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000658\u0000\u0003\u0664\u0663\u0662\n\u0664\u0000\u0004\nerrn\u000b\u0663\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0662\u0000\u0000\n\u0665\u0000\u0004\nerrn\u0011\u0671\u0000AZ\u0014\u0000,\u0001\u001d\u0000\u001d,\u0001\u001d\u0000\u0010e,FO,FY\u0000\u0004f\u000fY\u0000\u0003hOe\u000fOPW\u0000\u0013X\u0000\u0004\u0000\u0005)l%%%\u0015\u000f\u000e4r\u0000\u0007\u0010\u0661'\u0660\u065f595:\u065e\u000b\u0661\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u0002\u0660\u0000\u0000\u0002\u065f\u0000\u0000\u001059\u0000\u0000\u00105:\u0000\n'\u065d'\u065c\u065b\u065a\u0659'\u0658\u0657\n\u065d\u0000\u0004\npcap\n\u065c\u0000\u0004\npisf\n\u065b\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u065a\u0000\u0004\ncwin\n\u0659\u0000\u0004\npnam\n\u0658\u0000\u0004\nbutT\n\u0657\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0011\u065e\u0000F\u0012\u0000B*\/\u0012\u0000:*,e\u0001\u001d\u00001e*,FOkj\f\u0000\u0004O*k\/,\u0000\u001d\u0000\u0016*k\/k\/j\f\u0000\tOkj\f\u0000\u0004Y\u0000\u0003hY\u0000\u0003hUU\u000f\u000e4s\u0000\u0007\u0010\u0656'\u0655\u06545;5<\u0653\u000b\u0656\u000000\u0000\u0016fmgui_dataviewer_close\u0000\u0016fmGUI_DataViewer_Close\u0002\u0655\u0000\u0000\u0002\u0654\u0000\u0000\u00105;\u0000\u0000\u00105<\u0000\f(\u0015\u0652(\u0013\u0651\u06504\u064f(\u0010\u064e\u064d\u064c\u064b\n\u0652\u0000\u0004\npcap\u000b\u0651\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0650\u0000\u0004\ncwin\n\u064f\u0000\u0004\npnam\n\u064e\u0000\u0004\nbutT\n\u064d\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0001\u064c\u0000\u0000\u0002\u064b\u0000\u0000\u0011\u0653\u00004\u0012\u00000*\/\u0012\u0000()j+\u0000\u0003O\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\tW\u0000\bX\u0000\n\u0000\u000bhUU\u000f\u000e4t\u0000\u0007\u0010\u064a(\u001d\u0649\u06485=5>\u0647\u000b\u064a\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\u0002\u0649\u0000\u0000\u0002\u0648\u0000\u0000\u00105=\u0000\u0000\u00105>\u0000\u000f(g\u0646(e\u0645\u06444\u0643(C\u0642\u0641\u0640(S~(b\n\u0646\u0000\u0004\npcap\u000b\u0645\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\n\u0644\u0000\u0004\ncwin\n\u0643\u0000\u0004\npnam\n\u0642\u0000\u0004\npidx\u0001\u0641\u0000\u0000\u0002\u0640\u0000\u0000\n\u0000\u0004\nbutT\n~\u0000\u0018.prcsclicnull\u0000\u0000uiel\u0011\u0647\u0000s\u0012\u0000o*\/\u0012\u0000g)j+\u0000\u0003O\u0014\u0000\u0016k*k\/[,\\Z81,FW\u0000\bX\u0000\t\u0000\nhO\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\rW\u0000\bX\u0000\t\u0000\nhO\u0014\u0000\u0019*k\/[,\\Z81k\/j\f\u0000\rW\u0000\bX\u0000\t\u0000\nhUU\u000f\u000e4u\u0000\u0007\u0010}(o|{5?5@z\u000b}\u000000\u0000\u0016fmgui_inspector_ensure\u0000\u0016fmGUI_Inspector_Ensure\u0002|\u0000\u0000\u0002{\u0000\u0000\u00105?\u0000\u0002yx\u000by\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bx\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105@\u0000\u0015w(v(ut4s(rqp(on(ml5Ak(\u000bw\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\nv\u0000\u0004\npcap\u000bu\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\nt\u0000\u0004\ncwin\ns\u0000\u0004\npnam\nr\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000****\nq\u0000\u0004\nmbar\np\u0000\u0004\nmbri\no\u0000\u0004\nmenE\nn\u0000\u0004\nmenI\nm\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000bl\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065A\u0000\u0003jih\nj\u0000\u0004\nerrn\u000bi\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006h\u0000\u0000\nk\u0000\u0004\nerrn\u0011z\u0000i\u0014\u0000T*j+\u0000\u0000O\u0012\u0000F*\/\u0012\u0000>)j+\u0000\u0004O*k\/[,\\Z@1j\f\u0000\t\u000b\u001d\u0000\u001f*k\/\/k\/k\/[,\\Z81j\f\u0000\u0010Y\u0000\u0003hOe\u000fUUW\u0000\u0013X\u0000\u0011\u0000\u0012)a\u0000\u0013la\u0000\u0014%\u0015OP\u000f\u000e4v\u0000\u0007\u0010g(fe5B5Cd\u000bg\u000020\u0000\u0017fmgui_modeensure_browse\u0000\u0017fmGUI_ModeEnsure_Browse\u0002f\u0000\u0000\u0002e\u0000\u0000\u00105B\u0000\u0002cb\u000bc\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bb\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105C\u0000\u0006(a`5D_(\u000ba\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000b`\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065D\u0000\u0003^]\\\n^\u0000\u0004\nerrn\u000b]\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\\\u0000\u0000\n_\u0000\u0004\nerrn\u0011d\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4w\u0000\u0007\u0010[(ZY5E5FX\u000b[\u0000.0\u0000\u0015fmgui_modeensure_find\u0000\u0015fmGUI_ModeEnsure_Find\u0002Z\u0000\u0000\u0002Y\u0000\u0000\u00105E\u0000\u0002WV\u000bW\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bV\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105F\u0000\u0006)\u0006UT5GS)\u0010\u000bU\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000bT\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065G\u0000\u0003RQP\nR\u0000\u0004\nerrn\u000bQ\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006P\u0000\u0000\nS\u0000\u0004\nerrn\u0011X\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4x\u0000\u0007\u0010O)\u001dNM5H5IL\u000bO\u000020\u0000\u0017fmgui_modeensure_layout\u0000\u0017fmGUI_ModeEnsure_Layout\u0002N\u0000\u0000\u0002M\u0000\u0000\u00105H\u0000\u0002KJ\u000bK\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000bJ\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105I\u0000\u0006)0IH5JG):\u000bI\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000bH\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065J\u0000\u0003FED\nF\u0000\u0004\nerrn\u000bE\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006D\u0000\u0000\nG\u0000\u0004\nerrn\u0011L\u0000\u001e\u0014\u0000\r*k+\u0000\u0001OPW\u0000\u000fX\u0000\u0002\u0000\u0003)l%\u0015OP\u000f\u000e4y\u0000\u0007\u0010C)EBA5K5L@\u000bC\u0000$0\u0000\u0010fmgui_modeselect\u0000\u0010fmGUI_ModeSelect\u000eB\u0000\u0002\u0004?5M\u0003?\u0000\u0001\u000e5M\u0000\u0001\u0000>\u000b>\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u0002A\u0000\u0000\u00105K\u0000\b=<;:9876\u000b=\u0000\u001c0\u0000\fmodetoselect\u0000\fmodeToSelect\u000b<\u0000\u00180\u0000\nmodewindow\u0000\nmodeWindow\u000b;\u0000\"0\u0000\u000fmodecontentarea\u0000\u000fmodeContentArea\u000b:\u0000*0\u0000\u0013modecontentareadesc\u0000\u0013modeContentAreaDesc\u000b9\u0000\u001a0\u0000\u000bcurrentmode\u0000\u000bcurrentMode\u000b8\u0000\u001c0\u0000\fmenuitemname\u0000\fmenuItemName\u000b7\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b6\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105L\u0000\u0019)5)432140)x\/).)-,)+*)(5N'))\n5\u0000\u0004\npcap\u000b4\u0000(0\u0000\u0012fmgui_appfrontmost\u0000\u0012fmGUI_AppFrontMost\u000b3\u0000.0\u0000\u0015fmgui_inspector_close\u0000\u0015fmGUI_Inspector_Close\n2\u0000\u0004\ncwin\n1\u0000\u0004\nsgrp\n0\u0000\u0004\ndesc\n\/\u0000\u0004\ncwor\n.\u0000\u0018.sysodelanull\u0000\u0000nmbr\n-\u0000\u0004\nmbar\n,\u0000\u0004\nmbri\n+\u0000\u0004\nmenE\n*\u0000\u0004\nmenI\n)\u0000\u0018.prcsclicnull\u0000\u0000uiel\u000b(\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065N\u0000\u0003&%$\n&\u0000\u0004\nerrn\u000b%\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006$\u0000\u0000\n'\u0000\u0004\nerrn\u0011@\u0000\u0014\u0000t\u0012\u0000l*\/\u0012\u0000d)j+\u0000\u0003O)j+\u0000\u0004O*k\/EOk\/[,\\Z?1EO,EOk\/EO\u0001\u001d\u0000(j\f\u0000\fO%EO*k\/a\u0000\u0010\/a\u0000\u0011k\/a\u0000\u0012\/j\f\u0000\u0013Y\u0000\u0003hOe\u000fOPUUW\u0000\u0019X\u0000\u0014\u0000\u0015)a\u0000\u0016la\u0000\u0017%a\u0000\u0018%%\u0015\u000f\u000e4z\u0000\u0007\u0010#)\"!5O5P \u000b#\u0000(0\u0000\u0012fmgui_window_close\u0000\u0012fmGUI_Window_Close\u000e\"\u0000\u0002\u0004\u001f5Q\u0003\u001f\u0000\u0001\u000e5Q\u0000\u0001\u0000\u001e\u000b\u001e\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u0002!\u0000\u0000\u00105O\u0000\u0001\u001d\u000b\u001d\u0000 0\u0000\u000esomewindowname\u0000\u000esomeWindowName\u00105P\u0000\u0005\u001c)\u001b\u001a\u0019\n\u001c\u0000\u0004\ncapp\n\u001b\u0000\b\u000bkfrmID \n\u001a\u0000\u0004\ncwin\n\u0019\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0011 \u0000\u0019)0\u0012\u0000\f*\/j\f\u0000\u0004OPUOe\u000fOP\u000f\u000e4{\u0000\u0007\u0010\u0018)\u0017\u00165R5S\u0015\u000b\u0018\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u000e\u0017\u0000\u0002\u0004\u00145T\u0003\u0014\u0000\u0001\u000e5T\u0000\u0001\u0000\u0013\u000b\u0013\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0016\u0000\u0000\u00105R\u0000\b\u0012\u0011\u0010\u000f\u000e\r\f\u000b\u000b\u0012\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0011\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0010\u0000\u00180\u0000\nwindowname\u0000\nwindowName\u000b\u000f\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u000e\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\r\u0000\u001a0\u0000\u000bcheckresult\u0000\u000bcheckResult\u000b\f\u0000\"0\u0000\u000fwindownamecheck\u0000\u000fwindowNameCheck\u000b\u000b\u0000\u001a0\u0000\u000bwindowindex\u0000\u000bwindowIndex\u00105S\u0000\u001f\n\t\b*\u0007\u0007*\u000b\u0006*\u000f\u0005\u0004\u0003*t*B\u0002*K\u0001\u0000*Q*\\*q********+\u0005\u000b\n\u0000\u00180\u0000\nwindowname\u0000\nwindowName\n\t\u0000\u0004\nnull\u000b\b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0007\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u0006\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0005\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u0004\u0000\u0014\u0003\u0003\u0000\n\n\u0002\u0000\u0004\npcap\n\u0001\u0000\u0004\ncwin\n\u0000\u0000\u0004\npnam\n\u0000\u0004\nnmbr\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0015\u0001D\u000eEO%EO,EO,EO,EOfEO\u0017\u0001\u0012,Ekh\u0018\u0012\u0000H\u0000\u001d\u0000\u0011*\/-a\u0000\u0010,EY\u00003a\u0000\u0011\u0000\u001d\u0000\u0014*a\u0000\u0012\/k\/a\u0000\u0010,EY\u0000\u0019a\u0000\u0013&EO*a\u0000\u0014\/\/a\u0000\u0010,EUOa\u0000\u0015\u0000\u001d\u0000\f\bEOPY\u0000a\u0000\u0016\u0000\u001d\u0000\r\b\u000bEOPY\u0000a\u0000\u0017\u0000\u001d\u0000\f\u0000EOPY\u0000oa\u0000\u0018\u0000\u001d\u0000\f\u0000EOPY\u0000]a\u0000\u0019\u0000\u001d\u0000\f\u0006EOPY\u0000Ka\u0000\u001a\u0000\u001d\u0000\r\u0006\u000bEOPY\u00008a\u0000\u001b\u0000\u001d\u0000\f\u0007EOPY\u0000&a\u0000\u001c\u0000\u001d\u0000\u000b\u0007\u000bEY\u0000\u0015a\u0000\u001d\u0000\u001d\u0000\f\u0001EOPY\u0000\u0003hO\u001d\u0000\u0006\u0016Y\u0000\u0003hO,j\f\u0000\u001eOP[OYO\u000fOP\u000f\u000e4|\u0000\u0007\u0010+05U5V\u000b\u000020\u0000\u0017windowwaituntil_frontis\u0000\u0017windowWaitUntil_FrontIS\u000e\u0000\u0002\u00045W\u0003\u0000\u0001\u000e5W\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105U\u0000\u0002\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00105V\u0000\f+D+H+L\u000b\u0000\u00180\u0000\nwindowname\u0000\nwindowName\n\u0000\u0004\nnull\u000b\u0000 0\u0000\u000ewindownametest\u0000\u000ewindowNameTest\u000b\u0000\u001a0\u0000\u000bwhichwindow\u0000\u000bwhichWindow\u000b\u0000.0\u0000\u0015waitcycledelayseconds\u0000\u0015waitCycleDelaySeconds\u000b\u0000\u001c0\u0000\fwaitcyclemax\u0000\fwaitCycleMax\u0003\u0000d\u0003\u0000\n\u000b\u0000\"0\u0000\u000fwindowwaituntil\u0000\u000fwindowWaitUntil\u0011\u0000\u001f\u000eEO%EO*k+\u0000\u000b\u000fOP\u000f\u000e4}\u0000\u0007\u0010+e5X5Y\u000b\u0000\"0\u0000\u000findexoflistitem\u0000\u000findexOfListItem\u000e\u0000\u0002\u00045Z\u0003\u0000\u0002\u000e5Z\u0000\u0002\u0000\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u0002\u0000\u0000\u00105X\u0000\u0004\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0000\u001c0\u0000\fsomelistitem\u0000\fsomeListItem\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u001a0\u0000\u000bonelistitem\u0000\u000boneListItem\u00105Y\u0000\u0002\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\u0011\u00009\b\u000b\u001d\u0000\u0007i\u000fY\u0000\u0003hO\u0017\u0000'kj\f\u0000\u0000kh\u001c\u0000\u0002\/EO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hOP[OYOP\u000f\u000e4~\u0000\u0007\u0010+5[5\\\u000b\u0000\u001c0\u0000\flistcontains\u0000\flistContains\u000e\u0000\u0002\u00045]\u0003\u0000\u0002\u000e5]\u0000\u0002\u0000\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u0002\u0000\u0000\u00105[\u0000\u0003\u000b\u0000\u00140\u0000\bsomelist\u0000\bsomeList\u000b\u0000\"0\u0000\u000fsomecomplexitem\u0000\u000fsomeComplexItem\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u00105\\\u0000\u0004\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npcnt\u0011\u00001\u0017\u0000*[l\f\u0000\u0002kh\u001b\u0000\u0002,EO\u0000\u001d\u0000\te\u000fOPY\u0000\u0003hOP[OYOf\u000fOP\u000f\u000e4\u0000\u0007\u0010+5^5_\u000b\u0000$0\u0000\u0010listuniquevalues\u0000\u0010listUniqueValues\u000e\u0000\u0002\u00045`\u0003\u0000\u0001\u000e5`\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105^\u0000\u0004\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\u000b\u0000\u00180\u0000\nuniquelist\u0000\nuniqueList\u000b\u0000\u00120\u0000\u0007oneitem\u0000\u0007oneItem\u00105_\u0000\u0005\u000b\u0000\u00160\u0000\tinputlist\u0000\tinputList\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npcnt\u0011\u0000;,EOjvEO\u0017\u0000)[l\f\u0000\u0003kh\u001b\u0000\u0003,EO\b\u000b\u001d\u0000\t6GY\u0000\u0003h[OYO\u000fOP\u000f\u000e4\u0000\u0007\u0010,\u000e5a5b\u063f\u000b\u0000\b0\u0000\u0004sort\u0000\u0000\u000e\u0000\u0002\u0004\u063e5c\u0003\u063e\u0000\u0001\u000e5c\u0000\u0001\u0000\u063d\u000b\u063d\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u0002\u0000\u0000\u00105a\u0000\u0005\u063c\u063b\u063a\u0639\u0638\u000b\u063c\u0000\u00120\u0000\u0007oldlist\u0000\u0007oldList\u000b\u063b\u0000\u00060\u0000\u0002od\u0000\u0000\u000b\u063a\u0000\u00160\u0000\ttextblock\u0000\ttextBlock\u000b\u0639\u0000\u001a0\u0000\u000bsortedblock\u0000\u000bsortedBlock\u000b\u0638\u0000\u00180\u0000\nsortedlist\u0000\nsortedList\u00105b\u0000\f\u0637\u0636\u0635\u0634\u0633\u0632,9\u0631,=\u0630\u062f\u062e\n\u0637\u0000\u0004\nascr\n\u0636\u0000\u0004\ntxdl\u0003\u0635\u0000\n\n\u0634\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\n\u0633\u0000\u0004\ncobj\n\u0632\u0000\u0004\nTEXT\n\u0631\u0000\u0004\nstrq\n\u0630\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u062f\u0000\u0004\nret \n\u062e\u0000\u0004\ncitm\u0011\u063f\u0000E,j\f\u0000\u0003lvE[k\/EZ[l\/,FZO&EO,%%j\f\u0000\tEO,FO-EO,FO\u000f\u000f\u000e4\u0000\u0007\u0010\u062d,\\\u062c\u062b5d5e\u062a\u000b\u062d\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u000e\u062c\u0000\u0002\u0004\u06295f\u0003\u0629\u0000\u0002\u000e5f\u0000\u0002\u0000\u0628\u0627\u000b\u0628\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u000b\u0627\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u0002\u062b\u0000\u0000\u00105d\u0000\u0003\u0626\u0625\u0624\u000b\u0626\u0000\u001a0\u0000\u000bprocessname\u0000\u000bprocessName\u000b\u0625\u0000\u00180\u0000\nconsolemsg\u0000\nconsoleMsg\u000b\u0624\u0000\u001c0\u0000\fshellcommand\u0000\fshellCommand\u00105e\u0000\u000b\u0623\u0622,\u0621\u0620,,\u061f,\u061e\u061d\u000b\u0623\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\n\u0622\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\u000b\u0621\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\n\u0620\u0000\u0004\nleng\n\u061f\u0000\u0004\nspac\n\u061e\u0000\u0004\nstrq\n\u061d\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u062a\u0000I*k+\u0000\u0000EO*jj\f\u0000\u0001mvk+\u0000\u0003EO,j\u0000\u001d\u0000\bEY\u0000\u0003hO%%%,%%,%EOj\f\u0000\nO\u000fOP\u000f\u000e4\u0000\u0007\u0010\u061c,\u061b\u061a5g5h\u0619\u000b\u061c\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u000e\u061b\u0000\u0002\u0004\u06185i\u0003\u0618\u0000\u0002\u000e5i\u0000\u0002\u0000\u0617\u0616\u000b\u0617\u0000\t0\u0000\u0005level\u0000\u0000\u000b\u0616\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u061a\u0000\u0000\u00105g\u0000\u0006\u0615\u0614\u0613\u0612\u0611\u0610\u000b\u0615\u0000\t0\u0000\u0005level\u0000\u0000\u000b\u0614\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u000b\u0613\u0000\u00160\u0000\tmaxxcount\u0000\tmaxXcount\u000b\u0612\u0000\u00120\u0000\u0007logname\u0000\u0007logName\u000b\u0611\u0000\u00100\u0000\u0006xcount\u0000\u0006xCount\u000b\u0610\u0000\u00050\u0000\u0001i\u0000\u0000\u00105h\u0000\u0004\u060f,,\u060e\u0003\u060f\u0000\u0005\u000b\u060e\u0000\u00180\u0000\nlogconsole\u0000\nlogConsole\u0011\u0619\u00005EOb\u0000\u0001\u0000\u0001%EO\u001fk\u001eEO\u0017\u0000\u0013kkh\u001c\u0000\u0005%E[OYO*l+\u0000\u0003OP\u000f\u000e4\u0000\u0007\u0010\u060d,\u060c\u060b5j5k\u060a\u000b\u060d\u0000\u00120\u0000\u0007logmain\u0000\u0007logMAIN\u000e\u060c\u0000\u0002\u0004\u06095l\u0003\u0609\u0000\u0001\u000e5l\u0000\u0001\u0000\u0608\u000b\u0608\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u0002\u060b\u0000\u0000\u00105j\u0000\u0001\u0607\u000b\u0607\u0000\u00120\u0000\u0007somemsg\u0000\u0007someMsg\u00105k\u0000\u0001\u0606\u000b\u0606\u0000\u00140\u0000\bloglevel\u0000\blogLEVEL\u0011\u060a\u0000\b*jl+\u0000\u0000\u000f\u000e4\u0000\u0007\u0010\u0605-\u0016\u0604\u06035m5n\u0602\u000b\u0605\u0000(0\u0000\u0012systemnotification\u0000\u0012systemNotification\u000e\u0604\u0000\u0002\u0004\u06015o\u0003\u0601\u0000\u0001\u000e5o\u0000\u0001\u0000\u0600\u000b\u0600\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0603\u0000\u0000\u00105m\u0000\u0002~\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b~\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u00105n\u0000\u0011}-(|-,{-0z-4yxwvutsrq\u000b}\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b|\u0000\u00140\u0000\bmsgtitle\u0000\bmsgTitle\u000b{\u0000\u001a0\u0000\u000bmsgsubtitle\u0000\u000bmsgSubtitle\u000bz\u0000\u00140\u0000\bmsgsound\u0000\bmsgSound\u000by\u0000\u00120\u0000\u0007nosound\u0000\u0007noSound\nx\u0000\u0004\nnull\u0003w\u0000\n\nv\u0000\u0004\nappr\nu\u0000\u0004\nsubt\u0003t\u0000\u0004\ns\u0000\u0018.sysonotfnull\u0000\u0000TEXT\nr\u0000\u0004\nnsou\u0003q\u0000\u0006\u0011\u0602\u0000G\u000eEO%EO,\u0001\u001d\u0000\u0014,,,\f\u0000\u000eY\u0000\u0017,,,,a\u0000\u0010\f\u0000\u000eOP\u000f\u000e4\u0000\u0007\u0010p-lon5p5qm\u000bp\u0000\u001a0\u0000\u000bwritetofile\u0000\u000bwriteToFile\u000eo\u0000\u0002\u0004l5r\u0003l\u0000\u0001\u000e5r\u0000\u0001\u0000k\u000bk\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002n\u0000\u0000\u00105p\u0000\u0004jihg\u000bj\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bi\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000bh\u0000\u00180\u0000\noutputfile\u0000\noutputFile\u000bg\u0000\u001e0\u0000\rfilereference\u0000\rfileReference\u00105q\u0000\u0012fedcba`_^-]\\[ZYXWV\u000bf\u0000\u001c0\u0000\ffullfilepath\u0000\ffullFilePath\ne\u0000\u0004\nnull\u000bd\u0000\u00140\u0000\bfilename\u0000\bfileName\u000bc\u0000\u001e0\u0000\rfiledirectory\u0000\rfileDirectory\nb\u0000\b\u000bafdrdesk\na\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n`\u0000\u0004\nTEXT\u000b_\u0000\u00180\u0000\noutputtext\u0000\noutputText\u0003^\u0000\b\n]\u0000\u0004\nfile\n\\\u0000\u0004\nperm\n[\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\nZ\u0000\u0004\nrefn\nY\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\nX\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\u0001W\u0000\u0000\u0002V\u0000\u0000\u0011m\u0000j\f\u0000\u0005&\u000eEO%EO,\u0001\u001d\u0000\n,EY\u0000!,\u0001\u001d\u0000\u000e,,%EY\u0000\rj\f\u0000\u0005&%EO\u0014\u0000!*\/el\f\u0000\fEO,l\f\u0000\u000eOj\f\u0000\u000fW\u0000\u001bX\u0000\u0010\u0000\u0011\u0014\u0000\r*\/j\f\u0000\u000fW\u0000\bX\u0000\u0010\u0000\u0011h\u000f\u000e4\u0000\u0007\u0010U-TS5s5tR\u000bU\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u000eT\u0000\u0002\u0004Q5u\u0003Q\u0000\u0002\u000e5u\u0000\u0002\u0000PO\u000bP\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000bO\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u0002S\u0000\u0000\u00105s\u0000\u0002NM\u000bN\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000bM\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u00105t\u0000\tLKJI.\u000e.\u0010HG.\u001c\nL\u0000\u0004\ndire\nK\u0000\b\u000bolierndD\nJ\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\nI\u0000\u0004\nstrq\nH\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\nG\u0000\u0004\nTEXT\u0011R\u00001l\f\u0000\u0002EOl\f\u0000\u0002EOb\u0000\u0001\u0000\u0002,%%%%j\f\u0000\u0006O&%%\u000f\u000f\u000e4\u0000\u0007\u0010F.%ED5v5wC\u000bF\u0000*0\u0000\u0013clickobjectbycoords\u0000\u0013clickObjectByCoords\u000eE\u0000\u0002\u0004B5x\u0003B\u0000\u0001\u000e5x\u0000\u0001\u0000A\u000bA\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u0002D\u0000\u0000\u00105v\u0000\u0007@?>=<;:\u000b@\u0000\u00180\u0000\nsomeobject\u0000\nsomeObject\u000b?\u0000\u00100\u0000\u0006xcoord\u0000\u0006xCoord\u000b>\u0000\u00100\u0000\u0006ycoord\u0000\u0006yCoord\u000b=\u0000\u000e0\u0000\u0005xsize\u0000\u0005xSize\u000b<\u0000\u000e0\u0000\u0005ysize\u0000\u0005ySize\u000b;\u0000\u00100\u0000\u0006xclick\u0000\u0006xClick\u000b:\u0000\u00100\u0000\u0006yclick\u0000\u0006yClick\u00105w\u0000\b.39876543\n9\u0000\u0004\nposn\n8\u0000\u0004\ncobj\n7\u0000\u0004\nptsz\n6\u0000\u0004\ndire\n5\u0000\b\u000bolierndD\n4\u0000\u0018.sysorondlong\u0000\u0000\u0000\u0000\u0000\u0000 \u0000doub\u000b3\u0000\u001e0\u0000\rclickatcoords\u0000\rclickAtCoords\u0011C\u0000NZ,E[k\/EZ[l\/EZO,E[k\/EZ[l\/EZOl!\u001el\f\u0000\u0006EOl!\u001el\f\u0000\u0006EO*l+\u0000\u0007OP\u000f\u000e4\u0000\u0007\u00102.z105y5z\/\u000b2\u0000 0\u0000\u000ecoercetostring\u0000\u000ecoerceToString\u000e1\u0000\u0002\u0004.5{\u0003.\u0000\u0001\u000e5{\u0000\u0001\u0000-\u000b-\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u00020\u0000\u0000\u00105y\u0000\b,+*)('&%\u000b,\u0000 0\u0000\u000eincomingobject\u0000\u000eincomingObject\u000b+\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b*\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u000b)\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b(\u0000\u00180\u0000\nerrmsglead\u0000\nerrMsgLead\u000b'\u0000\u001a0\u0000\u000berrmsgtrail\u0000\u000berrMsgTrail\u000b&\u0000\u00060\u0000\u0002od\u0000\u0000\u000b%\u0000\u001c0\u0000\fobjectstring\u0000\fobjectString\u00105z\u0000\u0017$#\"! \u001f..\u001e\u001d5|\u001c\u001b\/\u0012\u001a\u0019\/4\u0018\/C\/G\u0017\/N\/T\n$\u0000\u0004\npcls\n#\u0000\u0004\nTEXT\n\"\u0000\u0004\nctxt\n!\u0000\u0004\nlong\n \u0000\u0004\ndoub\n\u001f\u0000\u0004\nutxt\u000b\u001e\u0000j0\u00003some_uuid_property_54f827c7379e4073b5a216bb9cde575d\u00003some_UUID_Property_54F827C7379E4073B5A216BB9CDE575D\u000b\u001d\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065|\u0000\u0003\u0016\u0015\u0014\n\u0016\u0000\u0004\nerrn\u000b\u0015\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0014\u0000\u0000\n\u001c\u0000\u0004\nascr\n\u001b\u0000\u0004\ntxdl\n\u001a\u0000\u0004\ncobj\n\u0019\u0000\u0004\ncitm\u0002\u0018\u0000\u0000\n\u0017\u0000\u0004\nbool\u0011\/\u0001,\u0000\u001d\u0000\u0012&E[,EZO\u000fY\u0001k,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u0001Q,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u00017,\u0000\u001d\u0000\u0014&E[,EZO&\u000fY\u0001\u001d\u0014\u0000S\u0014\u0000\f,FOPW\u00009X\u0000\t\u0000\n,kvlvE[k\/EZ[l\/,FZO-E[k\/EZ[l\/EZO,FOa\u0000\u0010,FOPW\u0000X\u0000\t\u0000\u0011a\u0000\u0012\u0006\t\u0000\u000ba\u0000\u0013\u0007a\u0000\u0014&\u001d\u0000Da\u0000\u0015EOa\u0000\u0016EO,lvE[k\/EZ[l\/,FZOl\/EO,FOk\/EO,FOPY\u0000kEO\b\u001d\u0000),lvE[k\/EZ[l\/,FZOl\/EO,FY\u0000\u0003hO\b\u001d\u0000\/,lvE[k\/EZ[l\/,FZO,FOk\/EO,FY\u0000\u0003hOPO\u000f\u000f\u000e4\u0000\u0007\u0010\u0013\/\u0012\u00115}5~\u0010\u000b\u0013\u0000\u001e0\u0000\rgettextbefore\u0000\rgetTextBefore\u000e\u0012\u0000\u0002\u0004\u000f5\u0003\u000f\u0000\u0002\u000e5\u0000\u0002\u0000\u000e\r\u000b\u000e\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\r\u0000\u00140\u0000\bstophere\u0000\bstopHere\u0002\u0011\u0000\u0000\u00105}\u0000\u0006\f\u000b\n\t\b\u0007\u000b\f\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u000b\u0000\u00140\u0000\bstophere\u0000\bstopHere\u000b\n\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\t\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000b\b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0007\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105~\u0000\t\u0006\u0005\u0004\u0003\u00020,\u000150K\n\u0006\u0000\u0004\nascr\n\u0005\u0000\u0004\ntxdl\n\u0004\u0000\u0004\ncobj\n\u0003\u0000\u0004\ncitm\n\u0002\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0001\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u0000\n\u0000\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0011\u0010\u0000R\u0014\u0000C,lvE[k\/EZ[l\/,FZO-j\f\u0000\u0004k\u0000\u001d\u0000\r,FO\u000fY\u0000\bk\/EO,FO\u000fW\u0000\u000fX\u0000\u0006\u0000\u0007,FO\u000f\u000f\u000e4\u0000\u0007\u00100U55\u000b\u0000 0\u0000\u000egettextbetween\u0000\u000egetTextBetween\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\u0000\f\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u000b\u0000\u00160\u0000\taftertext\u0000\tafterText\u000b\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u000b\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u0000\u001e0\u0000\rprefixremoved\u0000\rprefixRemoved\u000b\u0000\u001a0\u0000\u000bfinalresult\u0000\u000bfinalResult\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u00170}051,\u000b\u0000\u001a0\u0000\u000btextitemnum\u0000\u000btextItemNum\u000b\u0000 0\u0000\u000eincludemarkers\u0000\u000eincludeMarkers\u0003\u0000\u0004\n\u0000\u0004\npcls\n\u0000\u0004\nlist\n\u0000\u0004\nTEXT\n\u0000\u0004\nbool\n\u0000\u0004\nerrn\u0003\u0004\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u00180\u0000\nbeforetext\u0000\nbeforeText\u000b\u0000\u00160\u0000\taftertext\u0000\tafterText\u0003\u0000\u0006\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u0000\u0000\u0011\u0000lf\u000eEO,\u0001\t\u0000\u000b,&\u0001&\u001d\u0000\u000b)l\u0015Y\u0000\u0003hO,\u0000\u001d\u00001j\f\u0000\u000b\u0000\u001d\u0000\r\/,FY\u0000\u0003hOk\/l\/m\/a\u0000\u0010\u000eEY\u0000\u0003hO%EO,EO,EO,EO,EO,EO\u0014\u0000\\_\u0000\u0011a\u0000\u0012,lvE[k\/EZ[l\/_\u0000\u0011a\u0000\u0012,FZOa\u0000\u0013\/EO_\u0000\u0011a\u0000\u0012,FOa\u0000\u0013k\/EO_\u0000\u0011a\u0000\u0012,FO\u001d\u0000\f%%EY\u0000\u0003hOPW\u0000\u0016X\u0000\u0014\u0000\u0015_\u0000\u0011a\u0000\u0012,FOa\u0000\u0016EO\u000fOP\u000f\u000e4\u0000\u0007\u00101?55\u000b\u0000\u00180\u0000\nparsechars\u0000\nparseChars\u000e\u0000\u0002\u00045\u0003\u0000\u0001\u000e5\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u0000\u0000\u00105\u0000\t\u000b\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u000b\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\u0017\u05ff\u05fe\u05fd\u05fc\u05fb1\u05fa\u05f9\u05f81\u05f7\u05f65\u05f5\u05f42\u0012\u000b\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\n\u0000\u0004\npcls\n\u0000\u0004\nlist\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\n\u0000\u0004\ncobj\u000b\u0000\u001a0\u0000\u000bparsestring\u0000\u000bparseString\u0003\u05ff\u0000\u0006\u0003\u05fe\u0000\u0004\u000b\u05fd\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\n\u05fc\u0000\u0004\nerrn\u0003\u05fb\u0004\u0000\n\u05fa\u0000\u0004\nascr\n\u05f9\u0000\u0004\ntxdl\n\u05f8\u0000\u0004\nTEXT\n\u05f7\u0000\u0004\ncitm\u000b\u05f6\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003\u05f3\u05f2\u05f1\n\u05f3\u0000\u0004\nerrn\u000b\u05f2\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006\u05f1\u0000\u0000\u0001\u05f5\u0000\u0000\u0002\u05f4\u0000\u0000\u0011\u0000el\u000eEO,\u0000\u001d\u00005j\f\u0000\u0003l\u0002\u001d\u0000\u0018k\/l\/m\/\u000eEY\u0000\u0010k\/l\/\u000eEOPY\u0000\u001b,ml\u000e,\u0001\u001d\u0000\r)l\u0015OPY\u0000\u0003hO%EO,EO,EO,EO,EO\u0014\u0000=&kv,FO\u001d\u0000\u0014a\u0000\u0010g\u0013\u0000\na\u0000\u0011-EVY\u0000\u0011ga\u0000\u0010\u0013\u0000\na\u0000\u0011-EVO,FO\u000fW\u0000#X\u0000\u0012\u0000\u0013\u0014\u0000\n,FW\u0000\bX\u0000\u0014\u0000\u0015hO)la\u0000\u0016%\u0015\u000f\u000e4\u0000\u0007\u0010\u05f02\u001c\u05ef\u05ee55\u05ed\u000b\u05f0\u0000\u001e0\u0000\rreplacesimple\u0000\rreplaceSimple\u000e\u05ef\u0000\u0002\u0004\u05ec5\u0003\u05ec\u0000\u0001\u000e5\u0000\u0001\u0000\u05eb\u000b\u05eb\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002\u05ee\u0000\u0000\u00105\u0000\t\u05ea\u05e9\u05e8\u05e7\u05e6\u05e5\u05e4\u05e3\u05e2\u000b\u05ea\u0000\t0\u0000\u0005prefs\u0000\u0000\u000b\u05e9\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000b\u05e8\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\u000b\u05e7\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\u000b\u05e6\u0000\u00140\u0000\boldchars\u0000\boldChars\u000b\u05e5\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u000b\u05e4\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u05e3\u0000\u00180\u0000\nparsedlist\u0000\nparsedList\u000b\u05e2\u0000\u00120\u0000\u0007newtext\u0000\u0007newText\u00105\u0000\u0014\u05e1\u05e0\u05df\u05de\u05dd\u05dc\u05db\u05da\u05d9\u05d8\u05d7\u05d6\u05d5\u05d42\u05d3\u05d2\u05d12\u05d0\u000b\u05e1\u0000\u001c0\u0000\fconsidercase\u0000\fconsiderCase\n\u05e0\u0000\u0004\npcls\n\u05df\u0000\u0004\nlist\n\u05de\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u05dd\u0000\u00180\u0000\nsourcetext\u0000\nsourceTEXT\n\u05dc\u0000\u0004\ncobj\u000b\u05db\u0000\u00140\u0000\boldchars\u0000\boldChars\u000b\u05da\u0000\u00140\u0000\bnewchars\u0000\bnewChars\u0003\u05d9\u0000\u0004\u0003\u05d8\u0000\b\u0003\u05d7\u0000\u0006\u000b\u05d6\u0000\u00120\u0000\u0007somekey\u0000\u0007someKey\n\u05d5\u0000\u0004\nerrn\u0003\u05d4\u0004\u0000\n\u05d3\u0000\u0004\nTEXT\n\u05d2\u0000\u0004\nascr\n\u05d1\u0000\u0004\ntxdl\n\u05d0\u0000\u0004\ncitm\u0011\u05ed\u0000el\u000eEO,\u0000\u001d\u0000?j\f\u0000\u0003m\u0002\u001d\u0000\u001dk\/l\/m\/\/\u000eEY\u0000\u0015k\/l\/m\/\u000eEOPY\u0000\u001b,ml\u000e,\u0001\u001d\u0000\r)l\u0015OPY\u0000\u0003hO%EO,EO,EO,EO,EO&EO_\u0000\u0010a\u0000\u0011,EO_\u0000\u0010a\u0000\u0011,FO\u001d\u0000(a\u0000\u0012g\u0013\u0000\u001ea\u0000\u0013-EO&kv_\u0000\u0010a\u0000\u0011,FO&EVY\u0000%ga\u0000\u0012\u0013\u0000\u001ea\u0000\u0013-EO&kv_\u0000\u0010a\u0000\u0011,FO&EVO_\u0000\u0010a\u0000\u0011,FO\u000fOP\u000f\u000e4\u0000\u0007\u0010\u05cf3\u001a\u05ce\u05cd55\u05cc\u000b\u05cf\u0000\u001c0\u0000\funparsechars\u0000\funParseChars\u000e\u05ce\u0000\u0002\u0004\u05cb5\u0003\u05cb\u0000\u0002\u000e5\u0000\u0002\u0000\u05ca\u05c9\u000b\u05ca\u0000\u00140\u0000\bthislist\u0000\bthisList\u000b\u05c9\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u0002\u05cd\u0000\u0000\u00105\u0000\u0006\u05c8\u05c7\u05c6\u05c5\u05c4\u05c3\u000b\u05c8\u0000\u00140\u0000\bthislist\u0000\bthisList\u000b\u05c7\u0000\u00140\u0000\bnewdelim\u0000\bnewDelim\u000b\u05c6\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b\u05c5\u0000\u001c0\u0000\funparsedtext\u0000\funparsedText\u000b\u05c4\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u000b\u05c3\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u00105\u0000\t\u05c2\u05c1\u05c05~}|3]\n\u05c2\u0000\u0004\nascr\n\u05c1\u0000\u0004\ntxdl\n\u05c0\u0000\u0004\nTEXT\u000b\u0000\u00100\u0000\u0006errmsg\u0000\u0006errMsg\u00065\u0000\u0003{zy\n{\u0000\u0004\nerrn\u000bz\u0000\u00100\u0000\u0006errnum\u0000\u0006errNum\u0006y\u0000\u0000\u0001~\u0000\u0000\u0002}\u0000\u0000\n|\u0000\u0004\nerrn\u0011\u05cc\u0000D,EO\u0014\u0000\u001d&kv,FO&EO,FO\u000fW\u0000!X\u0000\u0003\u0000\u0004\u0014\u0000\n,FW\u0000\bX\u0000\u0005\u0000\u0006hO)l%\u0015\u000f\u000e4\u0000\u0007\u0010x3gwv55u\u000bx\u0000 0\u0000\u000eversioncompare\u0000\u000eversionCompare\u000ew\u0000\u0002\u0004t5\u0003t\u0000\u0001\u000e5\u0000\u0001\u0000s\u000bs\u0000\t0\u0000\u0005prefs\u0000\u0000\u0002v\u0000\u0000\u00105\u0000\frqponmlkjihg\u000br\u0000\t0\u0000\u0005prefs\u0000\u0000\u000bq\u0000\u001c0\u0000\fdefaultprefs\u0000\fdefaultPrefs\u000bp\u0000\u00060\u0000\u0002od\u0000\u0000\u000bo\u0000\u000b0\u0000\u0007v1_list\u0000\u0000\u000bn\u0000\u000b0\u0000\u0007v2_list\u0000\u0000\u000bm\u0000\f0\u0000\bv1_count\u0000\u0000\u000bl\u0000\f0\u0000\bv2_count\u0000\u0000\u000bk\u0000\u00140\u0000\bmaxcount\u0000\bmaxCount\u000bj\u0000\u001e0\u0000\rversionresult\u0000\rversionResult\u000bi\u0000\u00050\u0000\u0001i\u0000\u0000\u000bh\u0000\u000b0\u0000\u0007v1_part\u0000\u0000\u000bg\u0000\u000b0\u0000\u0007v2_part\u0000\u0000\u00105\u0000\u0012fedc3wba`_^]33\\[Z4*47\u000bf\u0000\u00060\u0000\u0002v1\u0000\u0000\ne\u0000\u0004\nnull\u000bd\u0000\u00060\u0000\u0002v2\u0000\u0000\u000bc\u0000\t0\u0000\u0005delim\u0000\u0000\u0003b\u0000\u0006\na\u0000\u0004\nascr\n`\u0000\u0004\ntxdl\n_\u0000\u0004\ncobj\n^\u0000\u0004\ncitm\n]\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\\\u0000\u0004\nnmbr\u0001[\u0000\u0000\u0002Z\u0000\u0000\u0011u\u0001\u0007\u000eEO%EO,,lvE[k\/EZ[l\/,FZO,-,-lvE[k\/EZ[l\/EZO,FOj\f\u0000\nj\f\u0000\nlvE[k\/EZ[l\/EZO\u0002\u001d\u0000\bEY\u0000\u0005EOEO\u0017\u0000skkh\u001c\u0000\t\u0001\u001d\u0000\u0006\u0016Y\u0000\u0003hO\u0005\u001d\u0000\u000b\/EY\u0000\u0005jEO\u0005\u001d\u0000\u000b\/EY\u0000\u0005jEO\u0014\u0000&&&\u0002\u001d\u0000\bkEY\u0000\u0013&&\u0004\u001d\u0000\biEY\u0000\u0003hW\u0000\fX\u0000\u000e\u0000\u000fa\u0000\u0010EOP[OYOa\u0000\u0011\u0000\u001d\u0000\bjEY\u0000\u0003hO\u000fOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"dcabab4b698dc4009406443113aa06ef22422811","subject":"Fix AppleScript extension matching","message":"Fix AppleScript extension matching\n","repos":"mantoni\/pdfmatch.js","old_file":"scripts\/pdfmatch_folder_action.applescript","new_file":"scripts\/pdfmatch_folder_action.applescript","new_contents":"# AppleScript folder action for the pdfmatch command\n#\n# Open with script editor, compile and save to\n# ~\/Library\/Workflows\/Applications\/Folder\\ Actions\/\n#\n# Then open the \"Folder Actions Setup\" application and add the work folder\n# where your pdfmatch.json config lives and attach this script.\n#\non adding folder items to this_folder after receiving these_files\n\ttry\n set ext to {\"pdf\", \"tif\", \"tiff\", \"jpeg\", \"jpg\"}\n\t\trepeat with each_file in these_files\n\t\t\ttell application \"System Events\"\n\t\t\t\tif ext contains name extension of each_file then\n\t\t\t\t\t# You might need to add your node binary to your $PATH. For example:\n\t\t\t\t\t# export PATH=\/usr\/local\/bin:\/usr\/local\/opt\/node@6\/bin:$PATH \n\t\t\t\t\tset output to (do shell script \"cd '\" & POSIX path of this_folder & \"' && pdfmatch '\" & POSIX path of each_file & \"' --delete 2>&1\")\n\t\t\t\t\t#display alert output\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\ton error err_string number error_number\n\t\tdisplay alert \"Error \" & error_number & \": \" & err_string\n\tend try\nend adding folder items to\n","old_contents":"# AppleScript folder action for the pdfmatch command\n#\n# Open with script editor, compile and save to\n# ~\/Library\/Workflows\/Applications\/Folder\\ Actions\/\n#\n# Then open the \"Folder Actions Setup\" application and add the work folder\n# where your pdfmatch.json config lives and attach this script.\n#\non adding folder items to this_folder after receiving these_files\n\ttry\n\t\trepeat with each_file in these_files\n\t\t\ttell application \"System Events\"\n\t\t\t\tif name extension of each_file is \"pdf\" or \"tif\" or \"tiff\" or \"jpeg\" or \"jpg\" then\n\t\t\t\t\t# You might need to add your node binary to your $PATH. For example:\n\t\t\t\t\t# export PATH=\/usr\/local\/bin:\/usr\/local\/opt\/node@6\/bin:$PATH \n\t\t\t\t\tset output to (do shell script \"cd '\" & POSIX path of this_folder & \"' && pdfmatch '\" & POSIX path of each_file & \"' --delete 2>&1\")\n\t\t\t\t\t#display alert output\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\ton error err_string number error_number\n\t\tdisplay alert \"Error \" & error_number & \": \" & err_string\n\tend try\nend adding folder items to\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9bdca76883d48ed499fe6b684bbef694a20738a4","subject":"Debug","message":"Debug\n","repos":"sumipan\/photoshop-jsx.rb","old_file":"bin\/PhotoshopJsx.scpt","new_file":"bin\/PhotoshopJsx.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u00000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u000e\u00000\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\u0012\u0000\/\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003I\u0000\u0002\u0000\u0018\u0000 \u0000#\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000$\n\u0000\u0004\nalis\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003I\u0000\u0002\u0000!\u0000)\u0000'\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000'\u0000\u0003l\u0000\u0005\u0000!\u0000%\u0000(\r\u0000(\u0000\u00024\u0000\u0000\u0000!\u0000%\u0000)\n\u0000\u0004\nfile\r\u0000)\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000*\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000t\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000n\u0000g\u0000y\u0000s\u0000\/\u0000D\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000s\u0000\/\u0000j\u0000e\u0000n\u0000k\u0000i\u0000n\u0000s\u0000\/\u0000p\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000-\u0000j\u0000s\u0000x\u0000\/\u0000h\u0000o\u0000g\u0000e\u0000.\u0000j\u0000s\u0000x\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000,\r\u0000,\u0000\u0003I\u0000\u0002\u0000*\u0000\/\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000-\u000f\u0000-\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000.\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\/\u00000\u0001\u0000\u0000\u0010\u0000\/\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00000\u0000\u0007\u0010\u0000\b\u00001\u00002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00001\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00002\u0000\u000b\u0000-\u0000*\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u00001k\/EOl\/EO\u0012\u0000\u001f*j\f\u0000\u0004O*\/j\f\u0000\u0006O*\/j\f\u0000\tO*j\f\u0000\nU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000'\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u000e\u0000'\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\u0012\u0000&\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003I\u0000\u0002\u0000\u0018\u0000 \u0000#\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000$\n\u0000\u0004\nalis\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000!\u0000!\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000%\u0000\u001f do javascript (file pathToJsx)\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000>\u0000 \u0000d\u0000o\u0000 \u0000j\u0000a\u0000v\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000T\u0000o\u0000J\u0000s\u0000x\u0000)\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0003I\u0000\u0002\u0000!\u0000&\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000+\u000f\u0000+\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000,\r\u0000,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000-\u0000.\u0001\u0000\u0000\u0010\u0000-\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000.\u0000\u0007\u0010\u0000\b\u0000\/\u00000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\/\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00000\u0000\b\u0000+\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u0000(k\/EOl\/EO\u0012\u0000\u0016*j\f\u0000\u0004O*\/j\f\u0000\u0006O*j\f\u0000\u0007U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8bc2562b263587d19e449732214667acf06c7448","subject":"Improved compatibility of iTerm2 button.","message":"Improved compatibility of iTerm2 button.\n","repos":"lexrus\/LTFinderButtons","old_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\t\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000U\u0000R\u0000I\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000\n\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000'\u0000)\u0000\n\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000i\u0000T\u0000e\u0000r\u0000m\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000W\u0000i\u0000t\u0000h\u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000P\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000(\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000=\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000S\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000\n\u0000i\u0000f\u0000 \u0000(\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000.\u0000i\u0000s\u0000A\u0000t\u0000S\u0000h\u0000e\u0000l\u0000l\u0000P\u0000r\u0000o\u0000m\u0000p\u0000t\u0000(\u0000)\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000W\u0000i\u0000t\u0000h\u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000P\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000(\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000=\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000S\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000c\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000.\u0000l\u0000o\u0000g\u0000(\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000\\\u0000n\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000.\u0000w\u0000r\u0000i\u0000t\u0000e\u0000(\u0000{\u0000'\u0000t\u0000e\u0000x\u0000t\u0000'\u0000:\u0000 \u0000c\u0000m\u0000d\u0000}\u0000)\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013jscr\u0000\u0001\u0000\f\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\t\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000U\u0000R\u0000I\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000'\u0000)\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000;\u0000\n\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000W\u0000i\u0000t\u0000h\u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000P\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000(\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000=\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000S\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000\n\u0000i\u0000f\u0000 \u0000(\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000.\u0000i\u0000s\u0000A\u0000t\u0000S\u0000h\u0000e\u0000l\u0000l\u0000P\u0000r\u0000o\u0000m\u0000p\u0000t\u0000(\u0000)\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000W\u0000i\u0000t\u0000h\u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000P\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000(\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000=\u0000 \u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000)\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000S\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000c\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000.\u0000l\u0000o\u0000g\u0000(\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000\\\u0000n\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000s\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000.\u0000w\u0000r\u0000i\u0000t\u0000e\u0000(\u0000{\u0000'\u0000t\u0000e\u0000x\u0000t\u0000'\u0000:\u0000 \u0000c\u0000m\u0000d\u0000}\u0000)\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013Hjscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cbb7319f5f3bf2183d4a4d8ce71b79d4f9262408","subject":"Corrected destination of main.applescript","message":"Corrected destination of main.applescript\n\nWas downloading it into the resources directory by mistake.","repos":"nilness\/mhqtools","old_file":"updater.applescript","new_file":"updater.applescript","new_contents":"-- First compare versions on main:\n\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"main.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.version\"\n\t--display dialog \"Local version of main is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"main.applescript\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"main.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\n\t\n\t-- Next compare versions on mhqreset:\n\t\n\tset local_file to the POSIX path of (resources_directory & \"mhqreset.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.version\"\n\t\n\tif current_version > local_version then\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (resources_directory & \"mhqreset.sh\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.sh > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"mhqreset.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.version > \\\"\" & local_file & \"\\\"\"\n\t\t--display dialog \"Need to update reset script!\"\n\tend if\n\t\nend try\n\n-- now launch the main script\n\nset theScript to (scripts_directory & \"main.applescript\") as alias\n\nrun script theScript\n","old_contents":"-- First compare versions on main:\n\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"main.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.version\"\n\t--display dialog \"Local version of main is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (resources_directory & \"main.applescript\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"main.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/main.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\n\t\n\t-- Next compare versions on mhqreset:\n\t\n\tset local_file to the POSIX path of (resources_directory & \"mhqreset.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.version\"\n\t\n\tif current_version > local_version then\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (resources_directory & \"mhqreset.sh\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.sh > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"mhqreset.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/mhqreset.version > \\\"\" & local_file & \"\\\"\"\n\t\t--display dialog \"Need to update reset script!\"\n\tend if\n\t\nend try\n\n-- now launch the main script\n\nset theScript to (scripts_directory & \"main.applescript\") as alias\n\nrun script theScript\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0d4f11430d41c734eca1db4342623c0b40aec89a","subject":"update cerca script","message":"update cerca script\n","repos":"MelizzaP\/dotfiles,MelizzaP\/dotfiles,MelizzaP\/dotfiles","old_file":"scripts\/thinkCERCA-iterm.scpt","new_file":"scripts\/thinkCERCA-iterm.scpt","new_contents":"tell application \"iTerm2\"\n activate\n\n set cercaWindow to (current window)\n\n tell cercaWindow\n\n tell current session\n split vertically with default profile\n write text \"tcd\"\n end tell\n\n tell last session of current tab\n write text \"tcs\"\n end tell\n\n set secondTab to (create tab with default profile)\n secondTab\n tell secondTab\n tell current session\n split vertically with default profile\n write text \"tcf\"\n end tell\n\n tell last session\n write text \"tc; ty; stt aux\"\n end tell\n end tell\n\n set thirdTab to (create tab with default profile)\n thirdTab\n tell thirdTab\n tell first session\n write text \"tcv\"\n end tell\n end tell\n\n set fourthTab to (create tab with default profile)\n fourthTab\n tell fourthTab\n tell first session\n write text \"tc\"\n end tell\n end tell\n end tell\nend tell\n","old_contents":"tell application \"iTerm2\"\n activate\n\n set cercaWindow to (current window)\n\n tell cercaWindow\n\n tell current session\n split vertically with default profile\n write text \"tcd\"\n end tell\n\n tell last session of current tab\n write text \"tcs\"\n end tell\n\n set secondTab to (create tab with default profile)\n secondTab\n tell secondTab\n tell current session\n split vertically with default profile\n write text \"tcf\"\n end tell\n\n tell last session\n write text \"tc\"\n end tell\n end tell\n\n set thirdTab to (create tab with default profile)\n thirdTab\n tell thirdTab\n tell first session\n write text \"tcv\"\n end tell\n end tell\n end tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a79e8801a5c5d569d6946d8620ada322a6c73d8b","subject":"Update headphone connect script for Big Sur","message":"Update headphone connect script for Big Sur\n","repos":"rkalis\/dotfiles,rkalis\/dotfiles","old_file":"hammerspoon\/connect_sony.applescript","new_file":"hammerspoon\/connect_sony.applescript","new_contents":"-- Source: https:\/\/www.reddit.com\/r\/MacOS\/comments\/i4czgu\/big_sur_airpods_script\/gck3gz3\n-- Works on macOS 11 Big Sur\n\nuse framework \"IOBluetooth\"\nuse scripting additions\n\nset DeviceName to \"Rosco's Headphones\"\n\non getFirstMatchingDevice(deviceName)\n repeat with device in (current application's IOBluetoothDevice's pairedDevices() as list)\n if (device's nameOrAddress as string) contains deviceName then return device\n end repeat\nend getFirstMatchingDevice\n\non toggleDevice(device)\n if not (device's isConnected as boolean) then\n device's openConnection()\n return \"Connecting \" & (device's nameOrAddress as string)\n else\n device's closeConnection()\n return \"Disconnecting \" & (device's nameOrAddress as string)\n end if\nend toggleDevice\n\nreturn toggleDevice(getFirstMatchingDevice(DeviceName))\n","old_contents":"activate application \"SystemUIServer\"\ntell application \"System Events\"\n tell process \"SystemUIServer\"\n set btMenu to (menu bar item 1 of menu bar 1 whose description contains \"bluetooth\")\n tell btMenu\n click\n try\n tell (menu item \"Rosco's Headphones\" of menu 1)\n click\n if exists menu item \"Connect\" of menu 1 then\n click menu item \"Connect\" of menu 1\n return \"Connecting...\"\n else if exists menu item \"Disconnect\" of menu 1 then\n click menu item \"Disconnect\" of menu 1\n return \"Disconnecting...\"\n end if\n end tell\n end try\n end tell\n end tell\n key code 53\n return \"Device not found or Bluetooth turned off\"\nend tell\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1a9982f048e4fc2c2c73bb3b9a8db9f9409ec3e5","subject":"Update for Yosemite compatibility","message":"Update for Yosemite compatibility\n\nMain change is that Yosemite no longer runs \/var\/root\/.profile when booting single user mode, it not runs \/var\/root\/.bashrc","repos":"nilness\/mhqtools","old_file":"main.scpt","new_file":"main.scpt","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion\n\n--display dialog SWUpdateServer\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove MHQ User & Reset CPU\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\"\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\telse\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\ndefaults write com.apple.Finder ShowHardDrivesOnDesktop -bool true #this will make sure the Finder is set to show drives on desktop\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tdo shell script theSetScript\n\telse\n\t\tdo shell script theSetScript with administrator privileges\n\tend if\n\t\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\telse\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9 | 10) dscacheutil -flushcache;sudo killall -HUP mDNSResponder ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tdo shell script theSetScript\n\telse\n\t\tdo shell script theSetScript with administrator privileges\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\t\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog store\n\n--display dialog SWUpdateServer\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove MHQ User & Reset CPU\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\"\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or 10.8 we need to supply password\n\t\t\n\t\tif (osVersion \u2265 \"7\") then\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\ndefaults write com.apple.Finder ShowHardDrivesOnDesktop -bool true #this will make sure the Finder is set to show drives on desktop\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion \u2265 \"7\") then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\n\t\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tdo shell script \"echo \\\"\/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tdo shell script \"echo '\/mhqreset.sh' '\\\"\" & current_user & \"\\\"' >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion \u2265 \"7\") then\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache;sudo killall -HUP mDNSResponder ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion \u2265 \"7\") then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f877372d534bf41dec942568472b25c706a5090d","subject":"Updates to applescript","message":"Updates to applescript\n","repos":"gkaguirrelab\/LiveTrackfMRIToolbox,gkaguirrelab\/LiveTrackfMRIToolbox","old_file":"AcquisitionTools\/RawVideoRec.scpt","new_file":"AcquisitionTools\/RawVideoRec.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000$\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002O\u0000\u0000\u0000\b\u0000G\u0000)\u0000*\r\u0000)\u0000\u0001k\u0000\u0000\u0000\f\u0000F\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\f\u0000\u0014\u0000.\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000.\u0000\u00024\u0000\u0000\u0000\f\u0000\u0010\u0000\/\n\u0000\u0004\ncwin\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001c\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\u00006\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001d\u0000:\u0000;\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000;\u0000\u0003\u0000<\u0000=\n\u0000\u0004\nkWch\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000=\u0000\u0003\u0000@\u0000A\n\u0000\u0004\nkFil\r\u0000@\u0000\u00024\u0000\u0000\u0000!\u0000\/\u0000B\n\u0000\u0004\npsxf\r\u0000B\u0000\u0003l\u0000\u0005\u0000#\u0000.\u0000C\r\u0000C\u0000\u0002b\u0000\u0000\u0000#\u0000.\u0000D\u0000E\r\u0000D\u0000\u0002b\u0000\u0000\u0000#\u0000,\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0000\u0000#\u0000'\u0000H\u0000I\r\u0000H\u0000\u00024\u0000\u0000\u0000$\u0000'\u0000J\n\u0000\u0004\ncobj\r\u0000J\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r\u0000I\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000K\u0000L\r\u0000K\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000M\n\u0000\u0004\ncobj\r\u0000M\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0002\r\u0000L\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000A\u0000\u0003\u0000P\n\u0000\u0004\nkDur\r\u0000P\u0000\u0002n\u0000\u0000\u00000\u00004\u0000Q\u0000R\r\u0000Q\u0000\u00024\u0000\u0000\u00001\u00004\u0000S\n\u0000\u0004\ncobj\r\u0000S\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0003\r\u0000R\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000;\u0000F\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000;\u0000B\u0000W\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000W\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000f\u0000Z\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000}Q\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000}R\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000}Q\u0000I\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000(\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002r\u0000\u0000\u0000H\u0000S\u0000]\u0000^\r\u0000]\u0000\u0003I\u0000\u0002\u0000H\u0000O\u0000_\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000_\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\\\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000T\u0000d\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000T\u0000`\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000V\u0000Y\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000l\u0000\u0002\u0000m\r\u0000m\u0000\u0001o\u0000\u0000\u0000Y\u0000\\\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000c\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002r\u0000\u0000\u0000e\u0000p\u0000p\u0000q\r\u0000p\u0000\u0002c\u0000\u0000\u0000e\u0000l\u0000r\u0000s\r\u0000r\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000\u0000\r\u0000s\u0000\u0001m\u0000\u0000\u0000h\u0000k\n\u0000\u0004\nctxt\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000o\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003X\u0000\u0000\u0000q\u0000\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000}\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nlnfd\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000y\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000w\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u001d\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0010\u0000\u0000\u001e\u0000%\u0000Z\u00000\u00007\u0000>\u0000N\u0000X\u0000`\u0000t\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0003\u0000\u0004\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\n\u0000\u0004\nctxt\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nlnfd\u0011\u0000j\f\u0000\u0001EO\u0012\u0000<*\/j\f\u0000\u0006Oj\f\u0000\u0001EO**k\/l\/%%\/m\/a\u0000\u0010\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0001E`\u0000\u0013UOa\u0000\u0014j\f\u0000\u0001E`\u0000\u0015O_\u0000\u0013_\u0000\u0015a\u0000\u0016vE`\u0000\u0017Oa\u0000\u0018a\u0000\u0019&E`\u0000\u001aO\u0017\u0000%_\u0000\u0017[a\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0001_\u0000\u001a%_\u0000\u001d%E`\u0000\u001a[OYO_\u0000\u001a\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00002\u00005\u00009\u00005\u00001\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00003\u00005\u00000\u00001\u00000\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00006\u00007\u00000\u00005\u00006\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00007\u00003\u00001\u00002\u00004\u00000\u00000\u00000\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00002\u00005\u00009\u00005\u00001\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00003\u00005\u00000\u00001\u00000\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00006\u00007\u00000\u00005\u00006\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00007\u00003\u00001\u00002\u00004\u00000\u00000\u00000\u0000\n\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000$\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002O\u0000\u0000\u0000\b\u0000G\u0000)\u0000*\r\u0000)\u0000\u0001k\u0000\u0000\u0000\f\u0000F\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\f\u0000\u0014\u0000.\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000.\u0000\u00024\u0000\u0000\u0000\f\u0000\u0010\u0000\/\n\u0000\u0004\ncwin\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001c\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\u00006\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001d\u0000:\u0000;\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000;\u0000\u0003\u0000<\u0000=\n\u0000\u0004\nkWch\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000=\u0000\u0003\u0000@\u0000A\n\u0000\u0004\nkFil\r\u0000@\u0000\u00024\u0000\u0000\u0000!\u0000\/\u0000B\n\u0000\u0004\npsxf\r\u0000B\u0000\u0003l\u0000\u0005\u0000#\u0000.\u0000C\r\u0000C\u0000\u0002b\u0000\u0000\u0000#\u0000.\u0000D\u0000E\r\u0000D\u0000\u0002b\u0000\u0000\u0000#\u0000,\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0000\u0000#\u0000'\u0000H\u0000I\r\u0000H\u0000\u00024\u0000\u0000\u0000$\u0000'\u0000J\n\u0000\u0004\ncobj\r\u0000J\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r\u0000I\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000K\u0000L\r\u0000K\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000M\n\u0000\u0004\ncobj\r\u0000M\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0002\r\u0000L\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000A\u0000\u0003\u0000P\n\u0000\u0004\nkDur\r\u0000P\u0000\u0002n\u0000\u0000\u00000\u00004\u0000Q\u0000R\r\u0000Q\u0000\u00024\u0000\u0000\u00001\u00004\u0000S\n\u0000\u0004\ncobj\r\u0000S\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0003\r\u0000R\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000;\u0000F\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000;\u0000B\u0000W\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000W\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000f\u0000Z\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000}Q\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000}R\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000}Q\u0000I\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000(\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002r\u0000\u0000\u0000H\u0000S\u0000]\u0000^\r\u0000]\u0000\u0003I\u0000\u0002\u0000H\u0000O\u0000_\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000_\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\\\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000T\u0000d\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000T\u0000`\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000V\u0000Y\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000l\u0000\u0002\u0000m\r\u0000m\u0000\u0001o\u0000\u0000\u0000Y\u0000\\\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000c\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002r\u0000\u0000\u0000e\u0000p\u0000p\u0000q\r\u0000p\u0000\u0002c\u0000\u0000\u0000e\u0000l\u0000r\u0000s\r\u0000r\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000\u0000\r\u0000s\u0000\u0001m\u0000\u0000\u0000h\u0000k\n\u0000\u0004\nctxt\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000o\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003X\u0000\u0000\u0000q\u0000\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000}\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nlnfd\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000y\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000w\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u001d\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0010\u0000\u0000\u001e\u0000%\u0000Z\u00000\u00007\u0000>\u0000N\u0000X\u0000`\u0000t\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0003\u0000\u0004\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\n\u0000\u0004\nctxt\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nlnfd\u0011\u0000j\f\u0000\u0001EO\u0012\u0000<*\/j\f\u0000\u0006Oj\f\u0000\u0001EO**k\/l\/%%\/m\/a\u0000\u0010\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0001E`\u0000\u0013UOa\u0000\u0014j\f\u0000\u0001E`\u0000\u0015O_\u0000\u0013_\u0000\u0015a\u0000\u0016vE`\u0000\u0017Oa\u0000\u0018a\u0000\u0019&E`\u0000\u001aO\u0017\u0000%_\u0000\u0017[a\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0001_\u0000\u001a%_\u0000\u001d%E`\u0000\u001a[OYO_\u0000\u001a\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00003\u00004\u00001\u00001\u00007\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00004\u00003\u00001\u00005\u00001\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00008\u00008\u00009\u00003\u00001\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00009\u00005\u00004\u00003\u00009\u00000\u00000\u00000\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00003\u00004\u00001\u00001\u00007\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00004\u00003\u00001\u00005\u00001\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00008\u00008\u00009\u00003\u00001\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00001\u00008\u00005\u00008\u00002\u00001\u0000.\u00005\u00009\u00005\u00004\u00003\u00009\u00000\u00000\u00000\u0000\n\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"56b45043651494112d53c9f14e2e4d06c89cc6b0","subject":"perhaps some hidden character","message":"perhaps some hidden character\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then tell application \"htcLib\" to logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjFromHtcLib(buttonRef)\n\t\t\ttell application \"htcLib\" to windowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then tell application \"htcLib\" to logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjFromHtcLib(buttonRef)\n\t\t\ttell application \"htcLib\" to windowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6d60fa409af08008202c0c6b0adfb3a1c14c4568","subject":"fix prettify (code, too)","message":"fix prettify (code, too)\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.7, Daniel A. Shockley\n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.7, Daniel A. Shockley\n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"97d82a1a69144a89c61ae37438b9fe471e595f37","subject":"Remove a file that I shouldn't have added","message":"Remove a file that I shouldn't have added\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/utility\/center-window.applescript","new_file":"macosx\/scripts\/utility\/center-window.applescript","new_contents":"","old_contents":"script screenHelper\n\ton screenWidth()\n\t\t(do shell script \n\t\t\t\"defaults read \/Library\/Preferences\/com.apple.windowserver|grep -w Width|head -1|sed -E 's\/^[[:space:]]*Width = ([0-9]+).*\/\\\\1\/'\") \n\t\t\tas number\n\tend screenWidth\n\t\n\ton frontMostProcessName()\n\t\ttell application \"System Events\"\n\t\t\tset myFrontMost to name of first item of (processes whose frontmost is true)\n\t\t\treturn myFrontMost\n\t\tend tell\n\tend frontMostProcessName\nend script\n\n\n\nset theFrontMostProcessName to (screenHelper's frontMostProcessName())\n\ntell application theFrontMostProcessName\n\tset theScreenWidth to (screenHelper's screenWidth())\n\tset windowSize to bounds of window 1\n\tset windowXl to item 1 of windowSize\n\tset windowYt to item 2 of windowSize\n\tset windowXr to item 3 of windowSize\n\tset windowYb to item 4 of windowSize\n\tset windowWidth to windowXr - windowXl\n\tset bounds of window 1 to {(theScreenWidth - windowWidth) \/ 2.0, windowYt, (theScreenWidth + windowWidth) \/ 2.0, windowYb}\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"fb5a9d6b01bd46a5de0a0a01ea5c19f5049db088","subject":"Escape tag names as well","message":"Escape tag names as well\n","repos":"lukaspustina\/Evernote.lbaction","old_file":"Contents\/Scripts\/findNotes.applescript","new_file":"Contents\/Scripts\/findNotes.applescript","new_contents":"-- LaunchBar Action Script\n\non run {query, maxResults, debug}\n\tset results to {}\n\n\tset _debug to false\n\tif debug is equal to \"true\" then\n\t\tset _debug to true\n\tend if\n\n\t-- Debug\n\tlogger(\"searching with query \" & query & \" and returning up to \" & maxResults, _debug)\n\n\ttry\n\t\ttell application \"Evernote\"\n\t\t\tset theNotes to (find notes query)\n\t\t\tset x to 0\n\n\t\t\t-- if number of notes is less than maxResults, an exception is thrown; that's okay, we deal with it.\n\t\t\trepeat maxResults as integer times\n\t\t\t\tset x to (x + 1)\n\t\t\t\tset theNote to item x of theNotes\n\n\t\t\t\tset _title to (title of theNote)\n\t\t\t\ttry\n\t\t\t\t\ttell me to set _title_enc to replaceText(\"'\", \"@@\\\\@@\", _title) -- nasty way to escape '; cf. default.js\n\n\t\t\t\t\t-- Debug\n\t\t\t\t\ttell me to logger(\"found note with title \" & _title_enc, _debug)\n\n\t\t\t\t\ttell me to set _label to replaceText(\"'\", \"@@\\\\@@\", (name of (notebook of theNote))) -- nasty way to escape '; cf. default.js\n\t\t\t\t\t-- do shell script \"logger '\" & _label & \"'\"\n\t\t\t\t\tset _date to ((modification date of theNote) as class isot as string)\n\t\t\t\t\tset _subtitle to ((modification date of theNote) as string)\n set _notelink to ((note link of theNote) as string)\n\n\t\t\t\t\tset _tagList to {}\n\t\t\t\t\tset _noteTags to (tags of theNote)\n\t\t\t\t\trepeat with x from 1 to length of _noteTags\n tell me to set _tag to replaceText(\"'\", \"@@\\\\@@\", (name of (item x of _noteTags))) -- nasty way to escape '; cf. default.js\n\t\t\t\t\t\tcopy _tag to the end of _tagList\n\t\t\t\t\tend repeat\n\t\t\t\t\tset saveTID to AppleScript's text item delimiters\n\t\t\t\t\tset AppleScript's text item delimiters to \", \"\n\t\t\t\t\tset _tags to _tagList as text\n\t\t\t\t\tset AppleScript's text item delimiters to saveTID\n\t\t\t\t\tif not _tagList = {} then\n\t\t\t\t\t\tset _subtitle to _subtitle & \" - \" & _tags\n\t\t\t\t\tend if\n\n\t\t\t\t\tset res to \"{\" & \"title:'\" & _title_enc & \"',label:'\" & _label & \"',date:'\" & _date & \"',subtitle:'\" & _subtitle & \"',alwaysShowsSubtitle:true,icon:'com.evernote.Evernote'\" & \",notelink:'\" & _notelink & \"'}\"\n\n\t\t\t\t\t-- Debug\n\t\t\t\t\ttell me to logger(\"adding to results: \" & res & \"'\", _debug)\n\n\t\t\t\t\tcopy res to the end of results\n\t\t\t\ton error msg\n\t\t\t\t\tlogger(\"failed because \" & msg, true)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend tell\n\ton error msg\n\t\tdo shell script \"logger Evernote LbAction failed because \" & msg\n\tend try\n\n\t-- Debug\n\tlogger(\"finished search with \" & (length of results) & \" results.\", _debug)\n\n\ttry\n\t\tset text item delimiters to \",\"\n\t\tset resultsAsString to results as text\n\t\t-- Debug\n\t\tlogger(\"returning \" & (length of results) & \" results.\", _debug)\n\n\t\treturn \"[\" & resultsAsString & \"]\"\n\ton error msg\n\t\tlogger(\"logger Evernote LbAction failed to create resultsAsString \" & msg, true)\n\tend try\n\n\treturn \"[]\"\nend run\n\non replaceText(find, replace, subject)\n\tset saveTID to text item delimiters\n\tset text item delimiters to find\n\tset subject to text items of subject\n\n\tset text item delimiters to replace\n\tset subject to subject as text\n\tset text item delimiters to saveTID\n\n\treturn subject\nend replaceText\n\non logger(_text, _debug)\n\ttry\n\t\tif _debug is true then\n\t\t\tdo shell script \"logger Evernote Launchbar Action \" & _text\n\t\tend if\n\tend try\nend logger\n","old_contents":"-- LaunchBar Action Script\n\non run {query, maxResults, debug}\n\tset results to {}\n\n\tset _debug to false\n\tif debug is equal to \"true\" then\n\t\tset _debug to true\n\tend if\n\n\t-- Debug\n\tlogger(\"searching with query \" & query & \" and returning up to \" & maxResults, _debug)\n\n\ttry\n\t\ttell application \"Evernote\"\n\t\t\tset theNotes to (find notes query)\n\t\t\tset x to 0\n\n\t\t\t-- if number of notes is less than maxResults, an exception is thrown; that's okay, we deal with it.\n\t\t\trepeat maxResults as integer times\n\t\t\t\tset x to (x + 1)\n\t\t\t\tset theNote to item x of theNotes\n\n\t\t\t\tset _title to (title of theNote)\n\t\t\t\ttry\n\t\t\t\t\ttell me to set _title_enc to replaceText(\"'\", \"@@\\\\@@\", _title) -- nasty way to escape '; cf. suggestions.js\n\n\t\t\t\t\t-- Debug\n\t\t\t\t\ttell me to logger(\"found note with title \" & _title_enc, _debug)\n\n\t\t\t\t\ttell me to set _label to replaceText(\"'\", \"@@\\\\@@\", (name of (notebook of theNote))) -- nasty way to escape '; cf. suggestions.js\n\t\t\t\t\t-- do shell script \"logger '\" & _label & \"'\"\n\t\t\t\t\tset _date to ((modification date of theNote) as class isot as string)\n\t\t\t\t\tset _subtitle to ((modification date of theNote) as string)\n set _notelink to ((note link of theNote) as string)\n\n\t\t\t\t\tset _tagList to {}\n\t\t\t\t\tset _noteTags to (tags of theNote)\n\t\t\t\t\trepeat with x from 1 to length of _noteTags\n\t\t\t\t\t\tcopy (name of (item x of _noteTags)) to the end of _tagList\n\t\t\t\t\tend repeat\n\t\t\t\t\tset saveTID to AppleScript's text item delimiters\n\t\t\t\t\tset AppleScript's text item delimiters to \", \"\n\t\t\t\t\tset _tags to _tagList as text\n\t\t\t\t\tset AppleScript's text item delimiters to saveTID\n\t\t\t\t\tif not _tagList = {} then\n\t\t\t\t\t\tset _subtitle to _subtitle & \" - \" & _tags\n\t\t\t\t\tend if\n\n\t\t\t\t\tset res to \"{\" & \"title:'\" & _title_enc & \"',label:'\" & _label & \"',date:'\" & _date & \"',subtitle:'\" & _subtitle & \"',alwaysShowsSubtitle:true,icon:'com.evernote.Evernote'\" & \",notelink:'\" & _notelink & \"'}\"\n\n\t\t\t\t\t-- Debug\n\t\t\t\t\ttell me to logger(\"adding to results: \" & res & \"'\", _debug)\n\n\t\t\t\t\tcopy res to the end of results\n\t\t\t\ton error msg\n\t\t\t\t\tlogger(\"failed because \" & msg, true)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend tell\n\ton error msg\n\t\tdo shell script \"logger Evernote LbAction failed because \" & msg\n\tend try\n\n\t-- Debug\n\tlogger(\"finished search with \" & (length of results) & \" results.\", _debug)\n\n\ttry\n\t\tset text item delimiters to \",\"\n\t\tset resultsAsString to results as text\n\t\t-- Debug\n\t\tlogger(\"returning \" & (length of results) & \" results.\", _debug)\n\n\t\treturn \"[\" & resultsAsString & \"]\"\n\ton error msg\n\t\tlogger(\"logger Evernote LbAction failed to create resultsAsString \" & msg, true)\n\tend try\n\n\treturn \"[]\"\nend run\n\non replaceText(find, replace, subject)\n\tset saveTID to text item delimiters\n\tset text item delimiters to find\n\tset subject to text items of subject\n\n\tset text item delimiters to replace\n\tset subject to subject as text\n\tset text item delimiters to saveTID\n\n\treturn subject\nend replaceText\n\non logger(_text, _debug)\n\ttry\n\t\tif _debug is true then\n\t\t\tdo shell script \"logger Evernote Launchbar Action \" & _text\n\t\tend if\n\tend try\nend logger\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6345ff102afd516a48d135ca343c86239756de25","subject":"Fix backslash bug. Now preserves backslashes in comments and calcs. Fixed characters that were saved with weird encoding. Showed as question marks.","message":"Fix backslash bug. Now preserves backslashes in comments and calcs.\nFixed characters that were saved with weird encoding. Showed as question marks.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : { \u00ac\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \u00ac\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \u00ac\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \u00ac\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \u00abclass utf8\u00bb\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\u00abclass \" & objCode & \"\u00bb\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \u00abclass utf8\u00bb\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\u00abclass usrf\u00bb:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\ufffd\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \ufffd\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \ufffd\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \ufffd\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \ufffd\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \ufffd\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \ufffd\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \ufffd\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \ufffd\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write\ufffdto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \ufffdclass utf8\ufffd\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\ufffdclass \" & objCode & \"\ufffd\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \ufffdclass utf8\ufffd\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can\ufffdt make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\ufffdclass usrf\ufffd:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7a9b57f25e0b5ec0886ea338438fabed5bb60986","subject":"replicate - fixed version num","message":"replicate - fixed version num\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"f9ae7b7dc0d8096bcbc466077caa2b3530efc4d6","subject":"accidentally overwrite plain text version","message":"accidentally overwrite plain text version\n","repos":"HackerTool\/alfred-reminders","old_file":"alfred_library.applescript","new_file":"alfred_library.applescript","new_contents":"property pocketconsumerkey : \"12650-d359d8ed994f63dbef6b012b\"\nproperty closeReminders : false\nproperty closeNotes : false\nproperty updateURL : \"http:\/\/www.surrealroad.com\/alfred\/version-check.php\"\nproperty downloadURL : \"http:\/\/www.surrealroad.com\/alfred\/download.php\"\nproperty workflowFolder : missing value\n\n-- localisation\n\nproperty overdueString : \"overdue\"\nproperty allString : \"all\"\nproperty refreshString : \"refresh\"\n\nproperty reminderHelpItems : {\"do something crazy\", \n\t\"today release the hamsters into the wild\", \n\t\"tomorrow bring about financial ruin upon my enemies\", \n\t\"in 5 minutes drop everything\", \n\t\"in 2 hours laugh out loud in random thoughts list\", \n\t\"in 3 days 1 hour pick stuff up off the floor\", \n\t\"on 24\/12\/13 to forget everything I know about things in movies\", \n\t\"on 12 June 15 to come up with some interesting ideas\", \n\t\"on 11 12 13 to check what the weather's like\", \n\t\"on 31-12-99 23:22 to panic about the millennium bug\", \n\t\"at 2pm to wait for nothing in particular\", \n\t\"thursday at 15.30 to ask some difficult questions\"}\n\nproperty supportedReminderApplications : {\n\t{appname:\"Safari.app\", icon:\"Safari.png\"}, \n\t{appname:\"WebKit.app\", icon:\"Safari.png\"}, \n\t{appname:\"Google Chrome.app\", icon:\"Chrome.png\"}, \n\t{appname:\"Mail.app\", icon:\"Mail.png\"}, \n\t{appname:\"Contacts.app\", icon:\"Address Book.png\"}, \n\t{appname:\"Address Book.app\", icon:\"Address Book.png\"}, \n\t{appname:\"Finder.app\", icon:\"Finder.png\"}, \n\t{appname:\"Chromium.app\", icon:\"Chromium.png\"}, \n\t{appname:\"TextEdit.app\", icon:\"TextEdit.png\"}, \n\t{appname:\"Textmate.app\", icon:\"TextMate.png\"}, \n\t{appname:\"Vienna.app\", icon:\"RSS.png\"}, \n\t{appname:\"OmniFocus.app\", icon:\"OmniFocus.png\"}, \n\t{appname:\"FoldingText.app\", icon:\"App.png\"}, \n\t{appname:\"Google Chrome Canary.app\", icon:\"Chrome Canary.png\"} \n\t\t}\n\n\n-- pocket specific\n\non pocketRequestToken()\n\tset cmd to \"curl -X POST --connect-timeout 5\"\n\tset cmd to cmd & curlAddHeader(\"Content-Type: application\/json; charset=UTF-8\")\n\tset cmd to cmd & curlAddHeader(\"X-Accept: application\/json\")\n\tset cmd to cmd & curlAddHeader(\"Host: getpocket.com\")\n\tset cmd to cmd & curlAddData(\"{\\\"consumer_key\\\":\\\"\" & pocketconsumerkey & \"\\\", \\\"redirect_uri\\\":\\\"pocketapp1234:authorizationFinished\\\"}\")\n\tset cmd to cmd & \" https:\/\/getpocket.com\/v3\/oauth\/request\"\n\t--return cmd\n\treturn do shell script cmd\nend pocketRequestToken\n\n\n-- reminders specific\n\non setRemindersActive()\n\ttell application \"System Events\"\n\t\tset remindersIsRunning to (bundle identifier of processes) contains \"com.apple.reminders\"\n\tend tell\n\tif remindersIsRunning then\n\t\tset closeReminders to false\n\telse\n\t\tset closeReminders to true\n\tend if\nend setRemindersActive\n\non getCachedReminderList(wf, cacheFile)\n\tset existingReminders to {}\n\tset reminderCount to wf's get_value(\"reminderCount\", cacheFile)\n\trepeat with i from 1 to reminderCount\n\t\tset end of existingReminders to wf's get_value(\"reminder\" & i, cacheFile)\n\tend repeat\n\treturn existingReminders\nend getCachedReminderList\n\non fetchReminderList(wf, cacheFile, cacheExpires)\n\ttry\n\t\tset timestamp to wf's get_value(\"timestamp\", cacheFile)\n\t\tif (current date) - timestamp is less than cacheExpires then\n\t\t\treturn getCachedReminderList(wf, cacheFile)\n\t\tend if\n\tend try\n\treturn cacheReminders(wf, cacheFile)\nend fetchReminderList\n\non cacheReminders(wf, cacheFile)\n\tset cacheTimeout to 30\n\tset cacheInProgress to wf's get_value(\"cacheInProgress\", cacheFile)\n\tset existingReminders to getCachedReminderList(wf, cacheFile)\n\t\n\tif cacheInProgress is not missing value then\n\t\t-- return previous cache results, even if they are out of date\n\t\tif (my unixtime(current date)) - cacheInProgress is less than cacheTimeout then return existingReminders\n\tend if\n\t\n\twf's set_value(\"closeReminders\", closeReminders, cacheFile)\n\t\n\t-- spawn cache process\n\tspawnReminderCache(workflowFolder & \"\/cache-reminders.scpt\", true)\n\treturn existingReminders\nend cacheReminders\n\non spawnReminderCache(cacheScript, runInBackground)\n\t-- spawn cache process\n\tif runInBackground then\n\t\tdo shell script \"osascript \" & quoted form of cacheScript & \" > \/dev\/null 2>&1 & \"\n\telse\n\t\tdo shell script \"osascript \" & quoted form of cacheScript\n\tend if\nend spawnReminderCache\n\non filterReminders(reminderList, theText, theDate, theList)\n\tset theResult to {}\n\tif reminderList is not missing value then\n\t\trepeat with reminder_item in reminderList\n\t\t\tset matchedText to false\n\t\t\tset matchedDate to false\n\t\t\tset matchedList to false\n\t\t\t\n\t\t\tif theText is missing value or theText is \"\" or theText is \n\t\t\t\tallString or theText is overdueString \n\t\t\t\tor theText is refreshString \n\t\t\t\tor reminder_item's title contains theText then\n\t\t\t\tset matchedText to true\n\t\t\tend if\n\t\t\t\n\t\t\ttry\n\t\t\t\tset reminddate to (reminder_item's reminddate)\n\t\t\ton error\n\t\t\t\tset reminddate to missing value\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tset duedate to (reminder_item's duedate)\n\t\t\ton error\n\t\t\t\tset duedate to missing value\n\t\t\tend try\n\t\t\tif (theText is overdueString) and (duedate is not missing value) and (duedate is less than (current date)) then\n\t\t\t\tset matchedDate to true\n\t\t\telse if theText is overdueString then\n\t\t\t\tset matchedDate to false\n\t\t\telse if theDate is missing value or theDate is \"\" then\n\t\t\t\tset matchedDate to true\n\t\t\telse if (reminddate is not missing value) and ((date string of theDate) is equal to (date string of reminddate)) then\n\t\t\t\tset matchedDate to true\n\t\t\telse if (duedate is not missing value) and ((date string of theDate) is equal to (date string of duedate)) then\n\t\t\t\tset matchedDate to true\n\t\t\tend if\n\t\t\t\n\t\t\tif theList is missing value or theList is \"\" or reminder_item's parentlist contains theList then\n\t\t\t\tset matchedList to true\n\t\t\tend if\n\t\t\t\n\t\t\tif matchedText and matchedDate and matchedList then\n\t\t\t\ttry\n\t\t\t\t\tset body to (reminder_item's body)\n\t\t\t\ton error\n\t\t\t\t\tset body to missing value\n\t\t\t\tend try\n\t\t\t\tif body is not missing value then\n\t\t\t\t\tset infoText to \" (\" & reminder_item's body & \")\"\n\t\t\t\telse if duedate is not missing value then\n\t\t\t\t\tset infoText to ((\" (due on \" & (reminder_item's duedate) as string) & \", started on \" & (reminder_item's creationdate) as string) & \")\"\n\t\t\t\telse\n\t\t\t\t\tset infoText to (\" (started on \" & (reminder_item's creationdate) as string) & \")\"\n\t\t\t\tend if\n\t\t\t\tset end of theResult to my alfred_result_item_with_icon(reminder_item's uid, reminder_item's title, \n\t\t\t\t\t\"Set as complete\" & infoText, \"uid:\" & reminder_item's uid, \"yes\", \"checked.png\")\n\t\t\tend if\n\t\tend repeat\n\tend if\n\treturn theResult\nend filterReminders\n\non parseReminder(q)\n\tset theText to \"\"\n\tset theDate to \"\"\n\tset theList to \"\"\n\tset theApplication to \"\"\n\tset theIcon to \"\"\n\tset valid to \"\"\n\t\n\tif first word of q is \"this\" then\n\t\tset theApplication to my frontmostapp()\n\t\ttry\n\t\t\tset q to (characters 6 thru -1 of q) as string\n\t\ton error\n\t\t\tset q to \"\"\n\t\tend try\n\tend if\n\t\n\tif q is not allString and q is not overdueString and q is not refreshString then\n\t\t\n\t\ttry\n\t\t\tif last word of q is \"list\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from (count of itemList) to 1 by -1\n\t\t\t\t\tif item i of itemList is equal to \"in\" then\n\t\t\t\t\t\tset theIndex to i\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than or equal to 1 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theList to (items (theIndex + 1) thru -2 of itemList) as string\n\t\t\t\t\t\tif theIndex is greater than 1 then\n\t\t\t\t\t\t\tset q to (items 1 thru (theIndex - 1) of itemList) as string\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset q to \"\"\n\t\t\t\t\t\tend if\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\tend if\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tif first word of q is \"tomorrow\" then\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset theDate to ((current date) + days)\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if first word of q is \"today\" then\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset theDate to (current date)\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if my datefromweekday(first word of q) is not false then\n\t\t\t\tset theDate to my datefromweekday(first word of q)\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset valid to \"yes\"\n\t\t\tend if\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tif theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"minutes\" or third word of q is \"minute\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + minutes * (my middleText(q, 2, 2)))\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"days\" or third word of q is \"day\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + days * (my middleText(q, 2, 2)))\n\t\t\t\t-- check for x days y hours\n\t\t\t\ttry\n\t\t\t\t\tif (fifth word of q is \"hours\" or fifth word of q is \"hour\") then\n\t\t\t\t\t\tset theText to my middleText(q, 6, -1)\n\t\t\t\t\t\tset theDate to (theDate + hours * (my middleText(q, 4, 4)))\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"hours\" or third word of q is \"hour\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + hours * (my middleText(q, 2, 2)))\n\t\t\t\ttry\n\t\t\t\t\tif (fifth word of q is \"minutes\" or fifth word of q is \"minute\") then\n\t\t\t\t\t\tset theText to my middleText(q, 6, -1)\n\t\t\t\t\t\tset theDate to (theDate + minutes * (my middleText(q, 4, 4)))\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"on\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from 2 to the count of itemList\n\t\t\t\t\tif item i of itemList is equal to \"to\" then\n\t\t\t\t\t\tset theIndex to i\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than 0 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theText to (items (theIndex + 1) thru -1 of itemList) as string\n\t\t\t\t\t\tset theDate to date ((items 2 thru (theIndex - 1) of itemList) as string)\n\t\t\t\t\t\tset valid to \"yes\"\n\t\t\t\t\ton error\n\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\telse if first word of q is \"at\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from 2 to the count of itemList\n\t\t\t\t\tif item i of itemList is equal to \"to\" then set theIndex to i\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than 0 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theText to (items (theIndex + 1) thru -1 of itemList) as string\n\t\t\t\t\t\tset theTimeStr to (items 2 thru (theIndex - 1) of itemList) as string\n\t\t\t\t\t\tif theDate is \"\" then\n\t\t\t\t\t\t\tset theDate to my convertTime(theTimeStr)\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset (time of theDate) to time of (my convertTime(theTimeStr))\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif theDate is not \"\" then\n\t\t\t\t\t\t\tset valid to \"yes\"\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\t\tend if\n\t\t\t\t\ton error\n\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\telse\n\t\t\t\tset theText to q\n\t\t\t\tif theText is not \"\" then set valid to \"yes\"\n\t\t\tend if\n\t\tend try\n\telse\n\t\t-- \"r all\", \"r refresh\"\n\t\tset theText to q\n\tend if\n\t\n\tif theApplication is \"\" and (theText is \"\" or valid is \"no\") then\n\t\tset valid to \"no\"\n\telse if theApplication is not \"\" and isAppSupported(theApplication, \"Reminders\") then\n\t\tset valid to \"yes\"\n\tend if\n\tset theText to (theText as string)\n\tif theIcon is \"\" then set theIcon to my reminderIcon(theApplication)\n\treturn {theText:theText, theDate:theDate, valid:valid, theList:theList, theApplication:theApplication, theIcon:theIcon}\nend parseReminder\n\non reminderIcon(theApplication)\n\tif theApplication is \"\" then\n\t\treturn \"unchecked.png\"\n\telse\n\t\tset appinfo to my reminderApplicationInfo(theApplication, supportedReminderApplications)\n\t\tif appinfo is not missing value then\n\t\t\treturn appinfo's icon\n\t\telse\n\t\t\treturn \"Instruments.png\"\n\t\tend if\n\tend if\nend reminderIcon\n\non formatReminderSubtitle(theText, theDate, theList, theApplication)\n\tif theApplication is not \"\" and not isAppSupported(theApplication, \"Reminders\") then\n\t\treturn theApplication & \" is not currently supported by this workflow\"\n\tend if\n\t\n\tset subtitle to \"Create a new reminder\"\n\tif theApplication is not \"\" then set subtitle to subtitle & \" from \" & theApplication\n\tif theText is not \"\" then set subtitle to subtitle & \" to \" & theText\n\tif theDate is not \"\" then set subtitle to subtitle & \" on \" & (theDate as string)\n\tif theList is not \"\" then set subtitle to subtitle & \" in \" & quoted form of theList\n\treturn subtitle\nend formatReminderSubtitle\n\non reminderHelp()\n\tset theResult to {\n\t\talfred_result_item_with_icon(\"reminder-help-1\", \"r all\", \"Show all outstanding reminders\", \"all\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-2\", \"r refresh\", \"Refresh outstanding reminders\", \"refresh\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-3\", \"r overdue\", \"Show overdue reminders\", \"overdue\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-4\", \"r this\", formatReminderSubtitle(\"\", \"\", \"\", my frontmostapp()), \"this\", \"no\", \"App.png\") \n\t\t\t}\n\tset i to 5\n\trepeat with helpItem in reminderHelpItems\n\t\tset parsedReminder to my parseReminder(helpItem)\n\t\tset end of theResult to my alfred_result_item_with_icon(\"reminder-help-\" & i, \n\t\t\t\"r \" & helpItem, \n\t\t\tformatReminderSubtitle(theText of parsedReminder, theDate of parsedReminder, theList of parsedReminder, theApplication of parsedReminder), \n\t\t\thelpItem, \n\t\t\t\"no\", \n\t\t\t\"unchecked.png\")\n\t\tset i to i + 1\n\tend repeat\n\treturn theResult\nend reminderHelp\n\non actionReminderQuery(q, shouldOpen, appLib, wf, cacheFile, defaultList)\n\tif q starts with \"##DEL##\" then\n\t\tset q to (characters 8 thru -1 of q) as string\n\t\tset shouldDelete to true\n\telse\n\t\tset shouldDelete to false\n\tend if\n\tif q starts with \"uid:\" then\n\t\tset theUID to (characters 5 thru -1 of q) as string\n\t\ttry\n\t\t\ttell application id \"com.apple.reminders\"\n\t\t\t\tusing terms from application \"Reminders\"\n\t\t\t\t\tset theReminder to (first item of (every reminder whose id is theUID))\n\t\t\t\t\tset theText to name of theReminder\n\t\t\t\t\tif shouldDelete then\n\t\t\t\t\t\tdelete theReminder\n\t\t\t\t\t\tset theResult to \"Deleted reminder: \" & theText\n\t\t\t\t\telse if not shouldOpen then\n\t\t\t\t\t\tset completed of theReminder to true\n\t\t\t\t\t\tset theResult to \"Completed reminder: \" & theText\n\t\t\t\t\telse\n\t\t\t\t\t\tactivate\n\t\t\t\t\t\tshow theReminder\n\t\t\t\t\tend if\n\t\t\t\tend using terms from\n\t\t\tend tell\n\t\t\tmy cacheReminders(wf, cacheFile)\n\t\tend try\n\telse\n\t\tset reminder to my parseReminder(q)\n\t\tset theText to theText of reminder\n\t\tset theDate to theDate of reminder\n\t\tset theApplication to theApplication of reminder\n\t\tset valid to valid of reminder\n\t\tset rList to theList of reminder\n\t\tset theBody to \"\"\n\t\t\n\t\tif valid is not \"yes\" then return \"Could not understand command \\\"\" & q & \"\\\"\"\n\t\t\n\t\tif theApplication is not \"\" and isAppSupported(theApplication, \"Reminders\") then\n\t\t\tset theAppReminder to appLib's reminderFromApplication(theApplication)\n\t\t\tif theText is \"\" then\n\t\t\t\tset theText to theText of theAppReminder\n\t\t\tend if\n\t\t\tset theBody to theBody of theAppReminder\n\t\telse if theApplication is not \"\" then\n\t\t\treturn theApplication & \" is not currently supported by this workflow\"\n\t\tend if\n\t\t\n\t\ttell application id \"com.apple.reminders\"\n\t\t\tusing terms from application \"Reminders\"\n\t\t\t\tif rList is not \"\" then\n\t\t\t\t\tset theList to rList\n\t\t\t\telse if defaultList is not \"\" then\n\t\t\t\t\tset theList to defaultList\n\t\t\t\telse\n\t\t\t\t\tset theList to first list's name\n\t\t\t\tend if\n\t\t\t\tif theDate is not \"\" then\n\t\t\t\t\ttell list theList\n\t\t\t\t\t\tset theReminder to make new reminder with properties {name:theText, remind me date:theDate, body:theBody}\n\t\t\t\t\tend tell\n\t\t\t\telse\n\t\t\t\t\ttell list theList\n\t\t\t\t\t\tset theReminder to make new reminder with properties {name:theText, body:theBody}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tif shouldOpen then\n\t\t\t\t\tactivate\n\t\t\t\t\tshow theReminder\n\t\t\t\tend if\n\t\t\tend using terms from\n\t\tend tell\n\t\tmy cacheReminders(wf, cacheFile)\n\t\tset theResult to \"Created reminder: \" & theText\n\tend if\n\treturn theResult\nend actionReminderQuery\n\non reminderApplicationInfo(appname, supportedReminderApplications)\n\trepeat with supportedApp in supportedReminderApplications\n\t\tif appname of supportedApp is appname then\n\t\t\treturn supportedApp\n\t\tend if\n\tend repeat\n\treturn missing value\nend reminderApplicationInfo\n\n-- notes specific\n\non setNotesActive()\n\ttell application \"System Events\"\n\t\tset notesIsRunning to (bundle identifier of processes) contains \"com.apple.notes\"\n\tend tell\n\tif notesIsRunning then\n\t\tset closeNotes to false\n\telse\n\t\tset closeNotes to true\n\tend if\nend setNotesActive\n\non createNote(noteTitle, noteBody, notesFolder, notesAccount)\n\ttell application id \"com.apple.Notes\"\n\t\tusing terms from application \"Notes\"\n\t\t\tif notesAccount is not \"\" then\n\t\t\t\ttell account notesAccount\n\t\t\t\t\tif notesFolder is not \"\" then\n\t\t\t\t\t\ttell folder notesFolder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\telse\n\t\t\t\t\t\ttell first folder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\telse\n\t\t\t\ttell first account\n\t\t\t\t\tif notesFolder is not \"\" then\n\t\t\t\t\t\ttell folder notesFolder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\telse\n\t\t\t\t\t\ttell first folder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend using terms from\n\tend tell\nend createNote\n\non noteFromClipboard(q, notesFolder, notesAccount, wf)\n\tset noteHTMLText to my clipboardAsHTML(wf)\n\tif q is not \"\" then\n\t\tset noteTitle to q\n\telse\n\t\tset noteTitle to first paragraph of (the clipboard as string)\n\tend if\n\tcreateNote(noteTitle, noteHTMLText, notesFolder, notesAccount)\n\treturn noteTitle\nend noteFromClipboard\n\non clipboardAsHTML(wf)\n\ttry\n\t\tset thex to (the clipboard as class HTML)\n\t\t-- This will trigger an error if you've copied something other than HTML data\n\t\tset f to wf's get_cache() & \"temp.html\"\n\t\t-- Writes to a file named \"temp.html\" in cache\n\t\tset newFile to open for access POSIX file f with write permission\n\t\tset eof of newFile to 0\n\t\twrite thex to newFile\n\t\tclose access newFile\n\t\tset newFile to open for access POSIX file f\n\t\tset theHTML to read newFile as class utf8\n\t\tclose access newFile\n\t\treturn theHTML\n\ton error\n\t\treturn \"<pre>\" & (the clipboard as Unicode text) & \"<\/pre>\"\n\tend try\nend clipboardAsHTML\n\non formatNoteSubtitle(theText, notesAccount, notesFolder)\n\tset subtitle to \"Create a new note about \" & theText\n\tif notesFolder is not \"\" then set subtitle to subtitle & \" in \" & quoted form of notesFolder\n\tif notesAccount is not \"\" then set subtitle to subtitle & \" in \" & quoted form of notesAccount\n\treturn subtitle\nend formatNoteSubtitle\n\n-- file metadata specific\n\non fileMeta(theFile, mediainfo, openmeta)\n\tset meta to my formatMediaInfo(mediainfo)\n\tset openmeta to my formatopenmeta(openmeta)\n\tif openmeta is not \"\" then set end of meta to openmeta\n\tset comment to my getSpotlightComment(theFile)\n\tif comment is not \"\" then\n\t\tset end of meta to my alfred_result_item(\"metadata-spotlightcomment\", \"Spotlight comment\", comment, comment, \"yes\")\n\tend if\n\treturn my alfred_result_items(meta)\nend fileMeta\n\non formatMediaInfo(metadata)\n\t-- generate list of items\n\tset metadataProperties to {}\n\trepeat with i from 1 to number of paragraphs in metadata\n\t\tset this_item to paragraph i of metadata\n\t\tset this_data to my splitByColon(this_item)\n\t\tif item 1 of this_data is not \"\" and item 2 of this_data is not \"\" then\n\t\t\tif item 1 of this_data is \"Complete name\" then\n\t\t\t\tset metadataProperties to metadataProperties & {completename:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-completename\"}}\n\t\t\telse if item 1 of this_data is \"Format\" then\n\t\t\t\tset metadataProperties to metadataProperties & {format:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-format\"}}\n\t\t\telse if item 1 of this_data is \"File size\" then\n\t\t\t\tset metadataProperties to metadataProperties & {filesize:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-filesize\"}}\n\t\t\telse if item 1 of this_data is \"Width\" then\n\t\t\t\tset metadataProperties to metadataProperties & {width:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-width\"}}\n\t\t\telse if item 1 of this_data is \"Height\" then\n\t\t\t\tset metadataProperties to metadataProperties & {height:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-height\"}}\n\t\t\telse if item 1 of this_data is \"Duration\" then\n\t\t\t\tset metadataProperties to metadataProperties & {duration:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-duration\"}}\n\t\t\telse if item 1 of this_data is \"Display aspect ratio\" then\n\t\t\t\tset metadataProperties to metadataProperties & {aspectratio:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-aspectratio\"}}\n\t\t\telse if item 1 of this_data is \"Frame rate\" then\n\t\t\t\tset metadataProperties to metadataProperties & {framerate:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-framerate\"}}\n\t\t\telse if item 1 of this_data is \"Color space\" then\n\t\t\t\tset metadataProperties to metadataProperties & {colorspace:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-colorspace\"}}\n\t\t\telse if item 1 of this_data is \"Chroma subsampling\" then\n\t\t\t\tset metadataProperties to metadataProperties & {chromasubsampling:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-chromasubsampling\"}}\n\t\t\telse if item 1 of this_data is \"Bit depth\" then\n\t\t\t\tset metadataProperties to metadataProperties & {bitdepth:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-bitdepth\"}}\n\t\t\telse if item 1 of this_data is \"Compression mode\" then\n\t\t\t\tset metadataProperties to metadataProperties & {compressionmode:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-compressionmode\"}}\n\t\t\telse if item 1 of this_data is \"Stream size\" then\n\t\t\t\tset metadataProperties to metadataProperties & {streamsize:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-streamsize\"}}\n\t\t\telse if item 1 of this_data is \"Language\" then\n\t\t\t\tset metadataProperties to metadataProperties & {|language|:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-language\"}}\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- format the list\t\n\tset theResult to {}\n\tset metadataList to metadataProperties as list\n\trepeat with i from 1 to number of items in metadataList\n\t\tset this_item to item i of metadataList\n\t\tset end of theResult to my alfred_result_item(uid of this_item, label of this_item, value of this_item, value of this_item, \"yes\")\n\tend repeat\n\treturn theResult\nend formatMediaInfo\n\non formatopenmeta(metadata)\n\t-- generate list of items\n\tset metadataProperties to {}\n\trepeat with i from 1 to number of paragraphs in metadata\n\t\tset this_item to paragraph i of metadata\n\t\tset this_data to my splitByColon(this_item)\n\t\tif item 1 of this_data is not \"\" and item 2 of this_data is not \"\" then\n\t\t\tif item 1 of this_data is \"tags\" then\n\t\t\t\tset metadataProperties to metadataProperties & {tags:{label:\"Tags\", value:(item 2 of this_data), uid:\"metadata-tags\"}}\n\t\t\telse if item 1 of this_data is \"rating\" and item 2 of this_data is not \"none found\" then\n\t\t\t\tset metadataProperties to metadataProperties & {rating:{label:\"Rating\", value:(item 2 of this_data), uid:\"metadata-rating\"}}\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- format the list\t\n\tset theResult to {}\n\tset metadataList to metadataProperties as list\n\trepeat with i from 1 to number of items in metadataList\n\t\tset this_item to item i of metadataList\n\t\tset end of theResult to my alfred_result_item_with_icon(uid of this_item, label of this_item, value of this_item, value of this_item, \"yes\", \"OpenMetaLogoIconOnly256.png\")\n\tend repeat\n\treturn theResult\nend formatopenmeta\n\non getSpotlightComment(theFile)\n\ttell application id \"com.apple.Finder\"\n\t\tusing terms from application \"Finder\"\n\t\t\ttry\n\t\t\t\treturn comment of (POSIX file theFile as alias)\n\t\t\tend try\n\t\tend using terms from\n\tend tell\nend getSpotlightComment\n\n-- alfred specific\n\non alfred_result(uid, title, subtitle, arg, valid)\n\t-- format the list\t\n\tset theResult to alfred_result_items({my alfred_result_item(uid, title, subtitle, arg, valid)})\n\treturn theResult\nend alfred_result\n\non alfred_result_items(itemList)\n\tset theResult to \"<?xml version=\\\"1.0\\\"?><items>\"\n\trepeat with alfred_item in itemList\n\t\tset theResult to theResult & alfred_item\n\tend repeat\n\tset theResult to theResult & \"<\/items>\"\n\treturn theResult\nend alfred_result_items\n\non alfred_result_item(uid, title, subtitle, arg, valid)\n\treturn my alfred_result_item_with_icon(uid, title, subtitle, arg, valid, \"icon.png\")\nend alfred_result_item\n\non alfred_result_item_with_icon(uid, title, subtitle, arg, valid, icon)\n\tset theResult to \"<item uid=\\\"\" & uid & \"\\\" arg=\\\"\" & my q_encode(arg) & \"\\\" type=\\\"file\\\" valid=\\\"\" & valid & \"\\\">\"\n\tset theResult to theResult & \"<title>\" & my q_encode(title) & \"<\/title>\"\n\tset theResult to theResult & \"<subtitle>\" & my q_encode(subtitle) & \"<\/subtitle>\"\n\tset theResult to theResult & \"<icon>\" & icon & \"<\/icon>\"\n\tset theResult to theResult & \"<\/item>\"\n\treturn theResult\nend alfred_result_item_with_icon\n\non isAppSupported(appname, Workflow)\n\tif Workflow is \"Reminders\" then\n\t\tif my reminderApplicationInfo(appname, supportedReminderApplications) is not missing value then return true\n\tend if\n\treturn false\nend isAppSupported\n\n-- check version\n\non alfred_version_notify(wfname, bundleid, currentversion, wf, cacheFile, checkFrequency)\n\tset notify to {}\n\tif not isLatestVersion(bundleid, currentversion, wf, cacheFile, checkFrequency) then\n\t\tset notify to alfred_result_item_with_icon(bundleid & \"-update\", \"A new version of the \" & wfname & \" workflow is available\", \"Download the latest version\", \"@@UPDATE@@\", true, \"new.png\")\n\tend if\n\treturn notify\nend alfred_version_notify\n\non isLatestVersion(bundleid, currentversion, wf, cacheFile, checkFrequency)\n\tset timestamp to wf's get_value(\"updatecheck\", cacheFile)\n\tset lastResult to wf's get_value(\"isLatestVersion\", cacheFile)\n\tset lastVersion to wf's get_value(\"latestversion\", cacheFile)\n\ttry\n\t\tset lastVersion to lastVersion as number\n\tend try\n\t\n\tif timestamp is not missing value and lastResult is not missing value and lastVersion is not missing value then\n\t\tif ((current date) - timestamp is less than checkFrequency) and lastVersion is less than or equal to currentversion then\n\t\t\t-- cache is still valid\n\t\t\treturn true\n\t\telse if lastVersion is greater than currentversion then\n\t\t\t-- no need to check if we already know there's a newer version, regardless of age\n\t\t\treturn false\n\t\tend if\n\tend if\n\t-- spawn cache process\n\tdo shell script \"osascript \" & quoted form of (workflowFolder & \"\/cache-update.scpt\") & space & quoted form of bundleid & space & currentversion & \" > \/dev\/null 2>&1 & \"\n\treturn true\nend isLatestVersion\n\non checkVersion(bundleid)\n\tset cmd to \"curl --connect-timeout 5 -s \" & updateURL & \"?bundle=\" & bundleid\n\ttry\n\t\treturn do shell script cmd\n\tend try\nend checkVersion\n\n-- this is performed as a last step, and so is ok to be slow\non getVersionURL(bundleid)\n\tset cmd to \"curl --connect-timeout 5 -s \" & downloadURL & \"?bundle=\" & bundleid\n\ttry\n\t\treturn do shell script cmd\n\tend try\nend getVersionURL\n\n-- general utility\n\non curlAddHeader(header)\n\treturn \" -H \" & quoted form of header\nend curlAddHeader\n\non curlAddData(theData)\n\treturn \" -d \" & quoted form of theData\nend curlAddData\n\non middleText(theText, startWord, endWord)\n\tset old_delims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to space\n\tset itemList to text items of theText\n\ttry\n\t\tset theResult to (items startWord thru endWord of itemList) as string\n\ton error\n\t\tset theResult to \"\"\n\tend try\n\tset AppleScript's text item delimiters to old_delims\n\treturn theResult\nend middleText\n\non convertTime(theTimeStr)\n\tset am to false\n\tset pm to false\n\tset num to 0\n\ttry\n\t\tif theTimeStr is \"noon\" then set theTimeStr to \"12pm\"\n\t\tif theTimeStr is \"midnight\" then set theTimeStr to \"12am\"\n\t\tif (count of (characters of theTimeStr)) is greater than 1 then\n\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to \"\"\n\t\t\tif characters -2 thru -1 of theTimeStr is {\"a\", \"m\"} then\n\t\t\t\tset theTimeStr to (characters 1 thru -3 of theTimeStr) as string\n\t\t\t\tset am to true\n\t\t\telse if characters -2 thru -1 of theTimeStr is {\"p\", \"m\"} then\n\t\t\t\tset theTimeStr to (characters 1 thru -3 of theTimeStr) as string\n\t\t\t\tset pm to true\n\t\t\tend if\n\t\t\t\n\t\t\tset AppleScript's text item delimiters to old_delims\n\t\tend if\n\t\tif (offset of \".\" in theTimeStr) is greater than 0 then\n\t\t\t-- check for form 1.30\n\t\t\tset theOffset to (offset of \".\" in theTimeStr)\n\t\t\tset num to num + ((text 1 thru (theOffset - 1) of theTimeStr) * hours)\n\t\t\tset num to num + ((text (theOffset + 1) thru -1 of theTimeStr) * minutes)\n\t\t\tif num is greater than or equal to (12 * hours) then\n\t\t\t\tset pm to true\n\t\t\telse\n\t\t\t\tset am to true\n\t\t\tend if\n\t\telse if (offset of \":\" in theTimeStr) is greater than 0 then\n\t\t\t-- check for form 1:30\n\t\t\tset theOffset to (offset of \":\" in theTimeStr)\n\t\t\tset num to num + ((text 1 thru (theOffset - 1) of theTimeStr) * hours)\n\t\t\tset num to num + ((text (theOffset + 1) thru -1 of theTimeStr) * minutes)\n\t\t\tif num is greater than or equal to (12 * hours) then\n\t\t\t\tset pm to true\n\t\t\telse\n\t\t\t\tset am to true\n\t\t\tend if\n\t\telse\n\t\t\t-- assume hours\n\t\t\tset num to num + (theTimeStr * hours)\n\t\tend if\n\t\t\n\t\t-- determine am or pm based on current time\n\t\tif (not am and not pm) \n\t\t\tand num is less than (12 * hours) \n\t\t\tand num is less than ((current date)'s time) then\n\t\t\tset pm to true\n\t\telse if num is greater than or equal to (12 * hours) then\n\t\t\tset num to (num - (12 * hours))\n\t\tend if\n\t\t\n\t\tif pm then\n\t\t\tset num to num + (12 * hours)\n\t\tend if\n\t\t\n\ton error\n\t\treturn\n\tend try\n\t\n\tif num is less than ((current date)'s time) then\n\t\t--tomorrow\n\t\tset theDate to ((current date) + days)\n\telse\n\t\t--today\n\t\tset theDate to (current date)\n\tend if\n\t\n\tset theDate's time to num\n\t\n\treturn theDate\n\t\nend convertTime\n\non splitByColon(theText)\n\tset text1 to \"\"\n\tset text2 to \"\"\n\ttry\n\t\tset pos to offset of \":\" in theText\n\t\tif (pos) is greater than 0 then\n\t\t\tset text1 to text 1 thru (pos - 1) of theText\n\t\t\tset text2 to text (pos + 1) thru -1 of theText\n\t\t\tset text1 to my trim(true, text1)\n\t\t\tset text2 to my trim(true, text2)\n\t\tend if\n\tend try\n\treturn {text1, text2}\nend splitByColon\n\n-- theseCharacters : A list of characters to trim\n-- someText : The text to be trimmed\n--\non trim(theseCharacters, someText)\n\t-- Lazy default (AppleScript doesn't support default values)\n\tif theseCharacters is true then set theseCharacters to \n\t\t{\" \", tab, ASCII character 10, return, ASCII character 0}\n\t\n\tif someText is \"\" then return\n\t\n\trepeat until first character of someText is not in theseCharacters\n\t\tset someText to text 2 thru -1 of someText\n\tend repeat\n\t\n\trepeat until last character of someText is not in theseCharacters\n\t\tset someText to text 1 thru -2 of someText\n\tend repeat\n\t\n\treturn someText\nend trim\n\non echo(something)\n\tdo shell script \"echo \" & quoted form of something\nend echo\n\non format_date(the_date, format_string)\n\t-- store all elements of the date into variables\n\tset {year_num, month_num, day_num, hour_num, minute_num, second_num} to \n\t\t{year of the_date, (month of the_date) as integer, day of the_date, hours of the_date, \n\t\t\tminutes of the_date, seconds of the_date}\n\tset {month_name, day_name} to {(month of the_date) as string, (weekday of the_date) as string}\n\tset suffix_list to {\"th\", \"st\", \"nd\", \"rd\", \"th\", \"th\", \"th\", \"th\", \"th\", \"th\"}\n\t\n\tset placeholders to \n\t\t{\"<<Year>>\", \n\t\t\t\"<<Year 2>>\", \n\t\t\t\"<<Century number>>\", \n\t\t\t\"<<Century>>\", \n\t\t\t\"<<Month>>\", \n\t\t\t\"<<Month 2>>\", \n\t\t\t\"<<Month name>>\", \n\t\t\t\"<<Day>>\", \n\t\t\t\"<<Day 2>>\", \n\t\t\t\"<<Day name>>\", \n\t\t\t\"<<Day suffix>>\", \n\t\t\t\"<<Hour>>\", \n\t\t\t\"<<Hour 2>>\", \n\t\t\t\"<<Minute>>\", \n\t\t\t\"<<Minute 2>>\", \n\t\t\t\"<<Second>>\", \n\t\t\t\"<<Second 2>>\"}\n\t\n\tset value_list to {\n\t\tyear_num as string, \n\t\tdd(year_num), \n\t\t(year_num div 100) as string, \n\t\t(year_num div 100 + 1) as string, \n\t\tmonth_num as string, \n\t\tdd(month_num), \n\t\tlocalized string of (month_name), \n\t\tday_num as string, \n\t\tdd(day_num), \n\t\tlocalized string of (day_name), \n\t\titem (day_num mod 10 + 1) of suffix_list, \n\t\thour_num as string, \n\t\tdd(hour_num), \n\t\tminute_num as string, \n\t\tdd(minute_num), \n\t\tsecond_num as string, \n\t\tdd(second_num)}\n\t\n\t-- repace elements of format string\n\tset old_delims to AppleScript's text item delimiters\n\t-- in a loop, replace all placeholders by the\n\t-- values from value_list\n\trepeat with x from 1 to count placeholders\n\t\tset ph to item x of placeholders\n\t\tset val to item x of value_list\n\t\tset AppleScript's text item delimiters to ph\n\t\tset temp to every text item of format_string\n\t\tset AppleScript's text item delimiters to val as text\n\t\tset format_string to temp as text\n\tend repeat\n\t\n\tset AppleScript's text item delimiters to old_delims\n\treturn format_string\nend format_date\n\non datefromweekday(q)\n\trepeat with i from 1 to 7\n\t\tset d to (current date) + i * days\n\t\tset w to (weekday of d) as string\n\t\tif w is q then return d\n\tend repeat\n\treturn false\nend datefromweekday\n\non dd(the_num) -- double digits\n\tset the_val to (text -2 thru -1 of ((the_num + 100) as text)) as text\n\treturn the_val\nend dd\n\non coerceDateToNum(theDate)\n\tset {dDate, dDateNum} to {\"1\/1\/1000\", 364878}\n\treturn (theDate - (date dDate)) div days + dDateNum\nend coerceDateToNum\n\non unixtime(theDate)\n\tset epoch to current date\n\tset the month of epoch to 1\n\tset the day of epoch to 1\n\tset the year of epoch to 1970\n\tset the hours of epoch to 0\n\tset the minutes of epoch to 0\n\tset the seconds of epoch to 0\n\t(theDate - (epoch + (time to GMT)))\nend unixtime\n\non frontmostapp()\n\treturn name of (info for (path to frontmost application))\nend frontmostapp\n\non filterRecords(recordList, searchProperty)\n\tset theResult to {}\n\ttell application \"System Events\"\n\t\tset theList to make new property list item with properties {value:recordList}\n\t\tset theValueList to value of (every property list item of (property list items of theList) whose name is searchProperty)\n\tend tell\n\trepeat with theItem in theValueList\n\t\tset the end of theResult to first item of theItem\n\tend repeat\n\treturn theResult\nend filterRecords\n\non q_is_empty(str)\n\tif str is missing value then return true\n\treturn length of (my q_trim(str)) is 0\nend q_is_empty\n\non q_trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\t\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend q_trim\n\non q_encode(str)\n\tif class of str is not text or (my q_is_empty(str)) then return str\n\tset s to \"\"\n\trepeat with sRef in str\n\t\tset c to contents of sRef\n\t\tif c is in {\"&\", \"'\", \"\\\"\", \"<\", \">\"} then\n\t\t\tif c is \"&\" then\n\t\t\t\tset s to s & \"&\"\n\t\t\telse if c is \"'\" then\n\t\t\t\tset s to s & \"'\"\n\t\t\telse if c is \"\\\"\" then\n\t\t\t\tset s to s & \""\"\n\t\t\telse if c is \"<\" then\n\t\t\t\tset s to s & \"<\"\n\t\t\telse if c is \">\" then\n\t\t\t\tset s to s & \">\"\n\t\t\tend if\n\t\telse\n\t\t\tset s to s & c\n\t\tend if\n\tend repeat\n\treturn s\nend q_encode\n\non path2url(thePath)\n\treturn do shell script \"python -c \\\"import urllib, sys; print (urllib.quote(sys.argv[1]))\\\" \" & quoted form of thePath\nend path2url\n\non keyDowntest(workflowPath, modifierKey) -- test for key down\n\tset modKeyDown to do shell script quoted form of (workflowPath & \"\/checkModifierKeys\") & space & modifierKey\n\tset modKeyDown to modKeyDown as integer\n\tset modKeyDown to modKeyDown as boolean\nend keyDowntest\n\non FileExists(theFile) -- (String) as Boolean\n\ttell application \"System Events\"\n\t\tif exists file theFile then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend tell\nend FileExists","old_contents":"property pocketconsumerkey : \"12650-d359d8ed994f63dbef6b012b\"\nproperty closeReminders : false\nproperty closeNotes : false\nproperty updateURL : \"http:\/\/www.surrealroad.com\/alfred\/version-check.php\"\nproperty downloadURL : \"http:\/\/www.surrealroad.com\/alfred\/download.php\"\nproperty workflowFolder : missing value\n\n-- localisation\n\nproperty overdueString : \"overdue\"\nproperty allString : \"all\"\nproperty refreshString : \"refresh\"\n\nproperty reminderHelpItems : {\"do something crazy\", \n\t\"today release the hamsters into the wild\", \n\t\"tomorrow bring about financial ruin upon my enemies\", \n\t\"in 5 minutes drop everything\", \n\t\"in 2 hours laugh out loud in random thoughts list\", \n\t\"in 3 days 1 hour pick stuff up off the floor\", \n\t\"on 24\/12\/13 to forget everything I know about things in movies\", \n\t\"on 12 June 15 to come up with some interesting ideas\", \n\t\"on 11 12 13 to check what the weather's like\", \n\t\"on 31-12-99 23:22 to panic about the millennium bug\", \n\t\"at 2pm to wait for nothing in particular\", \n\t\"thursday at 15.30 to ask some difficult questions\"}\n\nproperty supportedReminderApplications : {\n\t{appname:\"Safari.app\", icon:\"Safari.png\"}, \n\t{appname:\"WebKit.app\", icon:\"Safari.png\"}, \n\t{appname:\"Google Chrome.app\", icon:\"Chrome.png\"}, \n\t{appname:\"Mail.app\", icon:\"Mail.png\"}, \n\t{appname:\"Contacts.app\", icon:\"Address Book.png\"}, \n\t{appname:\"Address Book.app\", icon:\"Address Book.png\"}, \n\t{appname:\"Finder.app\", icon:\"Finder.png\"}, \n\t{appname:\"Chromium.app\", icon:\"Chromium.png\"}, \n\t{appname:\"TextEdit.app\", icon:\"TextEdit.png\"}, \n\t{appname:\"Textmate.app\", icon:\"TextMate.png\"}, \n\t{appname:\"Vienna.app\", icon:\"RSS.png\"}, \n\t{appname:\"OmniFocus.app\", icon:\"OmniFocus.png\"}, \n\t{appname:\"FoldingText.app\", icon:\"App.png\"}, \n\t{appname:\"Google Chrome Canary.app\", icon:\"Chrome Canary.png\"} \n\t\t}\n\n\n-- pocket specific\n\non pocketRequestToken()\n\tset cmd to \"curl -X POST --connect-timeout 5\"\n\tset cmd to cmd & curlAddHeader(\"Content-Type: application\/json; charset=UTF-8\")\n\tset cmd to cmd & curlAddHeader(\"X-Accept: application\/json\")\n\tset cmd to cmd & curlAddHeader(\"Host: getpocket.com\")\n\tset cmd to cmd & curlAddData(\"{\\\"consumer_key\\\":\\\"\" & pocketconsumerkey & \"\\\", \\\"redirect_uri\\\":\\\"pocketapp1234:authorizationFinished\\\"}\")\n\tset cmd to cmd & \" https:\/\/getpocket.com\/v3\/oauth\/request\"\n\t--return cmd\n\treturn do shell script cmd\nend pocketRequestToken\n\n\n-- reminders specific\n\non setRemindersActive()\n\ttell application \"System Events\"\n\t\tset remindersIsRunning to (bundle identifier of processes) contains \"com.apple.reminders\"\n\tend tell\n\tif remindersIsRunning then\n\t\tset closeReminders to false\n\telse\n\t\tset closeReminders to true\n\tend if\nend setRemindersActive\n\non getCachedReminderList(wf, cacheFile)\n\tset existingReminders to {}\n\tset reminderCount to wf's get_value(\"reminderCount\", cacheFile)\n\trepeat with i from 1 to reminderCount\n\t\tset end of existingReminders to wf's get_value(\"reminder\" & i, cacheFile)\n\tend repeat\n\treturn existingReminders\nend getCachedReminderList\n\non fetchReminderList(wf, cacheFile, cacheExpires)\n\ttry\n\t\tset timestamp to wf's get_value(\"timestamp\", cacheFile)\n\t\tif (current date) - timestamp is less than cacheExpires then\n\t\t\treturn getCachedReminderList(wf, cacheFile)\n\t\tend if\n\tend try\n\treturn cacheReminders(wf, cacheFile)\nend fetchReminderList\n\non cacheReminders(wf, cacheFile)\n\tset cacheTimeout to 30\n\tset cacheInProgress to wf's get_value(\"cacheInProgress\", cacheFile)\n\tset existingReminders to getCachedReminderList(wf, cacheFile)\n\t\n\tif cacheInProgress is not missing value then\n\t\t-- return previous cache results, even if they are out of date\n\t\tif (my unixtime(current date)) - cacheInProgress is less than cacheTimeout then return existingReminders\n\tend if\n\t\n\twf's set_value(\"closeReminders\", closeReminders, cacheFile)\n\t\n\t-- spawn cache process\n\tspawnReminderCache(workflowFolder & \"\/cache-reminders.scpt\", true)\n\treturn existingReminders\nend cacheReminders\n\non spawnReminderCache(cacheScript, runInBackground)\n\t-- spawn cache process\n\tif runInBackground then\n\t\tdo shell script \"osascript \" & quoted form of cacheScript & \" > \/dev\/null 2>&1 & \"\n\telse\n\t\tdo shell script \"osascript \" & quoted form of cacheScript\n\tend if\nend spawnReminderCache\n\non filterReminders(reminderList, theText, theDate, theList)\n\tset theResult to {}\n\tif reminderList is not missing value then\n\t\trepeat with reminder_item in reminderList\n\t\t\tset matchedText to false\n\t\t\tset matchedDate to false\n\t\t\tset matchedList to false\n\t\t\t\n\t\t\tif theText is missing value or theText is \"\" or theText is \n\t\t\t\tallString or theText is overdueString \n\t\t\t\tor theText is refreshString \n\t\t\t\tor reminder_item's title contains theText then\n\t\t\t\tset matchedText to true\n\t\t\tend if\n\t\t\t\n\t\t\ttry\n\t\t\t\tset reminddate to (reminder_item's reminddate)\n\t\t\ton error\n\t\t\t\tset reminddate to missing value\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tset duedate to (reminder_item's duedate)\n\t\t\ton error\n\t\t\t\tset duedate to missing value\n\t\t\tend try\n\t\t\tif (theText is overdueString) and (duedate is not missing value) and (duedate is less than (current date)) then\n\t\t\t\tset matchedDate to true\n\t\t\telse if theText is overdueString then\n\t\t\t\tset matchedDate to false\n\t\t\telse if theDate is missing value or theDate is \"\" then\n\t\t\t\tset matchedDate to true\n\t\t\telse if (reminddate is not missing value) and ((date string of theDate) is equal to (date string of reminddate)) then\n\t\t\t\tset matchedDate to true\n\t\t\telse if (duedate is not missing value) and ((date string of theDate) is equal to (date string of duedate)) then\n\t\t\t\tset matchedDate to true\n\t\t\tend if\n\t\t\t\n\t\t\tif theList is missing value or theList is \"\" or reminder_item's parentlist contains theList then\n\t\t\t\tset matchedList to true\n\t\t\tend if\n\t\t\t\n\t\t\tif matchedText and matchedDate and matchedList then\n\t\t\t\ttry\n\t\t\t\t\tset body to (reminder_item's body)\n\t\t\t\ton error\n\t\t\t\t\tset body to missing value\n\t\t\t\tend try\n\t\t\t\tif body is not missing value then\n\t\t\t\t\tset infoText to \" (\" & reminder_item's body & \")\"\n\t\t\t\telse if duedate is not missing value then\n\t\t\t\t\tset infoText to ((\" (due on \" & (reminder_item's duedate) as string) & \", started on \" & (reminder_item's creationdate) as string) & \")\"\n\t\t\t\telse\n\t\t\t\t\tset infoText to (\" (started on \" & (reminder_item's creationdate) as string) & \")\"\n\t\t\t\tend if\n\t\t\t\tset end of theResult to my alfred_result_item_with_icon(reminder_item's uid, reminder_item's title, \n\t\t\t\t\t\"Set as complete\" & infoText, \"uid:\" & reminder_item's uid, \"yes\", \"checked.png\")\n\t\t\tend if\n\t\tend repeat\n\tend if\n\treturn theResult\nend filterReminders\n\non parseReminder(q)\n\tset theText to \"\"\n\tset theDate to \"\"\n\tset theList to \"\"\n\tset theApplication to \"\"\n\tset theIcon to \"\"\n\tset valid to \"\"\n\t\n\tif first word of q is \"this\" then\n\t\tset theApplication to my frontmostapp()\n\t\ttry\n\t\t\tset q to (characters 6 thru -1 of q) as string\n\t\ton error\n\t\t\tset q to \"\"\n\t\tend try\n\tend if\n\t\n\tif q is not allString and q is not overdueString and q is not refreshString then\n\t\t\n\t\ttry\n\t\t\tif last word of q is \"list\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from (count of itemList) to 1 by -1\n\t\t\t\t\tif item i of itemList is equal to \"in\" then\n\t\t\t\t\t\tset theIndex to i\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than or equal to 1 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theList to (items (theIndex + 1) thru -2 of itemList) as string\n\t\t\t\t\t\tif theIndex is greater than 1 then\n\t\t\t\t\t\t\tset q to (items 1 thru (theIndex - 1) of itemList) as string\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset q to \"\"\n\t\t\t\t\t\tend if\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\tend if\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tif first word of q is \"tomorrow\" then\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset theDate to ((current date) + days)\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if first word of q is \"today\" then\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset theDate to (current date)\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if my datefromweekday(first word of q) is not false then\n\t\t\t\tset theDate to my datefromweekday(first word of q)\n\t\t\t\tset q to my middleText(q, 2, -1)\n\t\t\t\tset valid to \"yes\"\n\t\t\tend if\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tif theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"minutes\" or third word of q is \"minute\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + minutes * (my middleText(q, 2, 2)))\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"days\" or third word of q is \"day\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + days * (my middleText(q, 2, 2)))\n\t\t\t\t-- check for x days y hours\n\t\t\t\ttry\n\t\t\t\t\tif (fifth word of q is \"hours\" or fifth word of q is \"hour\") then\n\t\t\t\t\t\tset theText to my middleText(q, 6, -1)\n\t\t\t\t\t\tset theDate to (theDate + hours * (my middleText(q, 4, 4)))\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"in\" and \n\t\t\t\t(third word of q is \"hours\" or third word of q is \"hour\") then\n\t\t\t\tset theText to my middleText(q, 4, -1)\n\t\t\t\tset theDate to ((current date) + hours * (my middleText(q, 2, 2)))\n\t\t\t\ttry\n\t\t\t\t\tif (fifth word of q is \"minutes\" or fifth word of q is \"minute\") then\n\t\t\t\t\t\tset theText to my middleText(q, 6, -1)\n\t\t\t\t\t\tset theDate to (theDate + minutes * (my middleText(q, 4, 4)))\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tset valid to \"yes\"\n\t\t\telse if theDate is \"\" and first word of q is \"on\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from 2 to the count of itemList\n\t\t\t\t\tif item i of itemList is equal to \"to\" then\n\t\t\t\t\t\tset theIndex to i\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than 0 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theText to (items (theIndex + 1) thru -1 of itemList) as string\n\t\t\t\t\t\tset theDate to date ((items 2 thru (theIndex - 1) of itemList) as string)\n\t\t\t\t\t\tset valid to \"yes\"\n\t\t\t\t\ton error\n\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\telse if first word of q is \"at\" then\n\t\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\t\tset AppleScript's text item delimiters to space\n\t\t\t\tset theIndex to 0\n\t\t\t\tset itemList to text items of q\n\t\t\t\trepeat with i from 2 to the count of itemList\n\t\t\t\t\tif item i of itemList is equal to \"to\" then set theIndex to i\n\t\t\t\tend repeat\n\t\t\t\tif theIndex is greater than 0 then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset theText to (items (theIndex + 1) thru -1 of itemList) as string\n\t\t\t\t\t\tset theTimeStr to (items 2 thru (theIndex - 1) of itemList) as string\n\t\t\t\t\t\tif theDate is \"\" then\n\t\t\t\t\t\t\tset theDate to my convertTime(theTimeStr)\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset (time of theDate) to time of (my convertTime(theTimeStr))\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif theDate is not \"\" then\n\t\t\t\t\t\t\tset valid to \"yes\"\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\t\tend if\n\t\t\t\t\ton error\n\t\t\t\t\t\tset valid to \"no\"\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\t\tset AppleScript's text item delimiters to old_delims\n\t\t\telse\n\t\t\t\tset theText to q\n\t\t\t\tif theText is not \"\" then set valid to \"yes\"\n\t\t\tend if\n\t\tend try\n\telse\n\t\t-- \"r all\", \"r refresh\"\n\t\tset theText to q\n\tend if\n\t\n\tif theApplication is \"\" and (theText is \"\" or valid is \"no\") then\n\t\tset valid to \"no\"\n\telse if theApplication is not \"\" and isAppSupported(theApplication, \"Reminders\") then\n\t\tset valid to \"yes\"\n\tend if\n\tset theText to (theText as string)\n\tif theIcon is \"\" then set theIcon to my reminderIcon(theApplication)\n\treturn {theText:theText, theDate:theDate, valid:valid, theList:theList, theApplication:theApplication, theIcon:theIcon}\nend parseReminder\n\non reminderIcon(theApplication)\n\tif theApplication is \"\" then\n\t\treturn \"unchecked.png\"\n\telse\n\t\tset appinfo to my reminderApplicationInfo(theApplication, supportedReminderApplications)\n\t\tif appinfo is not missing value then\n\t\t\treturn appinfo's icon\n\t\telse\n\t\t\treturn \"Instruments.png\"\n\t\tend if\n\tend if\nend reminderIcon\n\non formatReminderSubtitle(theText, theDate, theList, theApplication)\n\tif theApplication is not \"\" and not isAppSupported(theApplication, \"Reminders\") then\n\t\treturn theApplication & \" is not currently supported by this workflow\"\n\tend if\n\t\n\tset subtitle to \"Create a new reminder\"\n\tif theApplication is not \"\" then set subtitle to subtitle & \" from \" & theApplication\n\tif theText is not \"\" then set subtitle to subtitle & \" to \" & theText\n\tif theDate is not \"\" then set subtitle to subtitle & \" on \" & (theDate as string)\n\tif theList is not \"\" then set subtitle to subtitle & \" in \" & quoted form of theList\n\treturn subtitle\nend formatReminderSubtitle\n\non reminderHelp()\n\tset theResult to {\n\t\talfred_result_item_with_icon(\"reminder-help-1\", \"r all\", \"Show all outstanding reminders\", \"all\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-2\", \"r refresh\", \"Refresh outstanding reminders\", \"refresh\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-3\", \"r overdue\", \"Show overdue reminders\", \"overdue\", \"no\", \"checked.png\"), \n\t\talfred_result_item_with_icon(\"reminder-help-4\", \"r this\", formatReminderSubtitle(\"\", \"\", \"\", my frontmostapp()), \"this\", \"no\", \"App.png\") \n\t\t\t}\n\tset i to 5\n\trepeat with helpItem in reminderHelpItems\n\t\tset parsedReminder to my parseReminder(helpItem)\n\t\tset end of theResult to my alfred_result_item_with_icon(\"reminder-help-\" & i, \n\t\t\t\"r \" & helpItem, \n\t\t\tformatReminderSubtitle(theText of parsedReminder, theDate of parsedReminder, theList of parsedReminder, theApplication of parsedReminder), \n\t\t\thelpItem, \n\t\t\t\"no\", \n\t\t\t\"unchecked.png\")\n\t\tset i to i + 1\n\tend repeat\n\treturn theResult\nend reminderHelp\n\non actionReminderQuery(q, shouldOpen, appLib, wf, cacheFile, defaultList)\n\tif q starts with \"##DEL##\" then\n\t\tset q to (characters 8 thru -1 of q) as string\n\t\tset shouldDelete to true\n\telse\n\t\tset shouldDelete to false\n\tend if\n\tif q starts with \"uid:\" then\n\t\tset theUID to (characters 5 thru -1 of q) as string\n\t\ttry\n\t\t\ttell application id \"com.apple.reminders\"\n\t\t\t\tusing terms from application \"Reminders\"\n\t\t\t\t\tset theReminder to (first item of (every reminder whose id is theUID))\n\t\t\t\t\tset theText to name of theReminder\n\t\t\t\t\tif shouldDelete then\n\t\t\t\t\t\tdelete theReminder\n\t\t\t\t\t\tset theResult to \"Deleted reminder: \" & theText\n\t\t\t\t\telse if not shouldOpen then\n\t\t\t\t\t\tset completed of theReminder to true\n\t\t\t\t\t\tset theResult to \"Completed reminder: \" & theText\n\t\t\t\t\telse\n\t\t\t\t\t\tactivate\n\t\t\t\t\t\tshow theReminder\n\t\t\t\t\tend if\n\t\t\t\tend using terms from\n\t\t\tend tell\n\t\t\tmy cacheReminders(wf, cacheFile)\n\t\tend try\n\telse\n\t\tset reminder to my parseReminder(q)\n\t\tset theText to theText of reminder\n\t\tset theDate to theDate of reminder\n\t\tset theApplication to theApplication of reminder\n\t\tset valid to valid of reminder\n\t\tset rList to theList of reminder\n\t\tset theBody to \"\"\n\t\t\n\t\tif valid is not \"yes\" then return \"Could not understand command \\\"\" & q & \"\\\"\"\n\t\t\n\t\tif theApplication is not \"\" and isAppSupported(theApplication, \"Reminders\") then\n\t\t\tset theAppReminder to appLib's reminderFromApplication(theApplication)\n\t\t\tif theText is \"\" then\n\t\t\t\tset theText to theText of theAppReminder\n\t\t\tend if\n\t\t\tset theBody to theBody of theAppReminder\n\t\telse if theApplication is not \"\" then\n\t\t\treturn theApplication & \" is not currently supported by this workflow\"\n\t\tend if\n\t\t\n\t\ttell application id \"com.apple.reminders\"\n\t\t\tusing terms from application \"Reminders\"\n\t\t\t\tif rList is not \"\" then\n\t\t\t\t\tset theList to rList\n\t\t\t\telse if defaultList is not \"\" then\n\t\t\t\t\tset theList to defaultList\n\t\t\t\telse\n\t\t\t\t\tset theList to first list's name\n\t\t\t\tend if\n\t\t\t\tif theDate is not \"\" then\n\t\t\t\t\ttell list theList\n\t\t\t\t\t\tset theReminder to make new reminder with properties {name:theText, remind me date:theDate, body:theBody}\n\t\t\t\t\tend tell\n\t\t\t\telse\n\t\t\t\t\ttell list theList\n\t\t\t\t\t\tset theReminder to make new reminder with properties {name:theText, body:theBody}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tif shouldOpen then\n\t\t\t\t\tactivate\n\t\t\t\t\tshow theReminder\n\t\t\t\tend if\n\t\t\tend using terms from\n\t\tend tell\n\t\tmy cacheReminders(wf, cacheFile)\n\t\tset theResult to \"Created reminder: \" & theText\n\tend if\n\treturn theResult\nend actionReminderQuery\n\non reminderApplicationInfo(appname, supportedReminderApplications)\n\trepeat with supportedApp in supportedReminderApplications\n\t\tif appname of supportedApp is appname then\n\t\t\treturn supportedApp\n\t\tend if\n\tend repeat\n\treturn missing value\nend reminderApplicationInfo\n\n-- notes specific\n\non setNotesActive()\n\ttell application \"System Events\"\n\t\tset notesIsRunning to (bundle identifier of processes) contains \"com.apple.notes\"\n\tend tell\n\tif notesIsRunning then\n\t\tset closeNotes to false\n\telse\n\t\tset closeNotes to true\n\tend if\nend setNotesActive\n\non createNote(noteTitle, noteBody, notesFolder, notesAccount)\n\ttell application id \"com.apple.Notes\"\n\t\tusing terms from application \"Notes\"\n\t\t\tif notesAccount is not \"\" then\n\t\t\t\ttell account notesAccount\n\t\t\t\t\tif notesFolder is not \"\" then\n\t\t\t\t\t\ttell folder notesFolder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\telse\n\t\t\t\t\t\ttell first folder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\telse\n\t\t\t\ttell first account\n\t\t\t\t\tif notesFolder is not \"\" then\n\t\t\t\t\t\ttell folder notesFolder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\telse\n\t\t\t\t\t\ttell first folder to make new note with properties {name:noteTitle, body:noteBody}\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend using terms from\n\tend tell\nend createNote\n\non noteFromClipboard(q, notesFolder, notesAccount, wf)\n\tset noteHTMLText to my clipboardAsHTML(wf)\n\tif q is not \"\" then\n\t\tset noteTitle to q\n\telse\n\t\tset noteTitle to first paragraph of (the clipboard as string)\n\tend if\n\tcreateNote(noteTitle, noteHTMLText, notesFolder, notesAccount)\n\treturn noteTitle\nend noteFromClipboard\n\non clipboardAsHTML(wf)\n\ttry\n\t\tset thex to (the clipboard as class HTML)\n\t\t-- This will trigger an error if you've copied something other than HTML data\n\t\tset f to wf's get_cache() & \"temp.html\"\n\t\t-- Writes to a file named \"temp.html\" in cache\n\t\tset newFile to open for access POSIX file f with write permission\n\t\tset eof of newFile to 0\n\t\twrite thex to newFile\n\t\tclose access newFile\n\t\tset newFile to open for access POSIX file f\n\t\tset theHTML to read newFile as class utf8\n\t\tclose access newFile\n\t\treturn theHTML\n\ton error\n\t\treturn \"<pre>\" & (the clipboard as Unicode text) & \"<\/pre>\"\n\tend try\nend clipboardAsHTML\n\non formatNoteSubtitle(theText, notesAccount, notesFolder)\n\tset subtitle to \"Create a new note about \" & theText\n\tif notesFolder is not \"\" then set subtitle to subtitle & \" in \" & quoted form of notesFolder\n\tif notesAccount is not \"\" then set subtitle to subtitle & \" in \" & quoted form of notesAccount\n\treturn subtitle\nend formatNoteSubtitle\n\n-- file metadata specific\n\non fileMeta(theFile, mediainfo, openmeta)\n\tset meta to my formatMediaInfo(mediainfo)\n\tset openmeta to my formatopenmeta(openmeta)\n\tif openmeta is not \"\" then set end of meta to openmeta\n\tset comment to my getSpotlightComment(theFile)\n\tif comment is not \"\" then\n\t\tset end of meta to my alfred_result_item(\"metadata-spotlightcomment\", \"Spotlight comment\", comment, comment, \"yes\")\n\tend if\n\treturn my alfred_result_items(meta)\nend fileMeta\n\non formatMediaInfo(metadata)\n\t-- generate list of items\n\tset metadataProperties to {}\n\trepeat with i from 1 to number of paragraphs in metadata\n\t\tset this_item to paragraph i of metadata\n\t\tset this_data to my splitByColon(this_item)\n\t\tif item 1 of this_data is not \"\" and item 2 of this_data is not \"\" then\n\t\t\tif item 1 of this_data is \"Complete name\" then\n\t\t\t\tset metadataProperties to metadataProperties & {completename:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-completename\"}}\n\t\t\telse if item 1 of this_data is \"Format\" then\n\t\t\t\tset metadataProperties to metadataProperties & {format:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-format\"}}\n\t\t\telse if item 1 of this_data is \"File size\" then\n\t\t\t\tset metadataProperties to metadataProperties & {filesize:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-filesize\"}}\n\t\t\telse if item 1 of this_data is \"Width\" then\n\t\t\t\tset metadataProperties to metadataProperties & {width:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-width\"}}\n\t\t\telse if item 1 of this_data is \"Height\" then\n\t\t\t\tset metadataProperties to metadataProperties & {height:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-height\"}}\n\t\t\telse if item 1 of this_data is \"Duration\" then\n\t\t\t\tset metadataProperties to metadataProperties & {duration:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-duration\"}}\n\t\t\telse if item 1 of this_data is \"Display aspect ratio\" then\n\t\t\t\tset metadataProperties to metadataProperties & {aspectratio:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-aspectratio\"}}\n\t\t\telse if item 1 of this_data is \"Frame rate\" then\n\t\t\t\tset metadataProperties to metadataProperties & {framerate:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-framerate\"}}\n\t\t\telse if item 1 of this_data is \"Color space\" then\n\t\t\t\tset metadataProperties to metadataProperties & {colorspace:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-colorspace\"}}\n\t\t\telse if item 1 of this_data is \"Chroma subsampling\" then\n\t\t\t\tset metadataProperties to metadataProperties & {chromasubsampling:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-chromasubsampling\"}}\n\t\t\telse if item 1 of this_data is \"Bit depth\" then\n\t\t\t\tset metadataProperties to metadataProperties & {bitdepth:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-bitdepth\"}}\n\t\t\telse if item 1 of this_data is \"Compression mode\" then\n\t\t\t\tset metadataProperties to metadataProperties & {compressionmode:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-compressionmode\"}}\n\t\t\telse if item 1 of this_data is \"Stream size\" then\n\t\t\t\tset metadataProperties to metadataProperties & {streamsize:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-streamsize\"}}\n\t\t\telse if item 1 of this_data is \"Language\" then\n\t\t\t\tset metadataProperties to metadataProperties & {|language|:{label:(item 1 of this_data), value:(item 2 of this_data), uid:\"metadata-language\"}}\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- format the list\t\n\tset theResult to {}\n\tset metadataList to metadataProperties as list\n\trepeat with i from 1 to number of items in metadataList\n\t\tset this_item to item i of metadataList\n\t\tset end of theResult to my alfred_result_item(uid of this_item, label of this_item, value of this_item, value of this_item, \"yes\")\n\tend repeat\n\treturn theResult\nend formatMediaInfo\n\non formatopenmeta(metadata)\n\t-- generate list of items\n\tset metadataProperties to {}\n\trepeat with i from 1 to number of paragraphs in metadata\n\t\tset this_item to paragraph i of metadata\n\t\tset this_data to my splitByColon(this_item)\n\t\tif item 1 of this_data is not \"\" and item 2 of this_data is not \"\" then\n\t\t\tif item 1 of this_data is \"tags\" then\n\t\t\t\tset metadataProperties to metadataProperties & {tags:{label:\"Tags\", value:(item 2 of this_data), uid:\"metadata-tags\"}}\n\t\t\telse if item 1 of this_data is \"rating\" and item 2 of this_data is not \"none found\" then\n\t\t\t\tset metadataProperties to metadataProperties & {rating:{label:\"Rating\", value:(item 2 of this_data), uid:\"metadata-rating\"}}\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- format the list\t\n\tset theResult to {}\n\tset metadataList to metadataProperties as list\n\trepeat with i from 1 to number of items in metadataList\n\t\tset this_item to item i of metadataList\n\t\tset end of theResult to my alfred_result_item_with_icon(uid of this_item, label of this_item, value of this_item, value of this_item, \"yes\", \"OpenMetaLogoIconOnly256.png\")\n\tend repeat\n\treturn theResult\nend formatopenmeta\n\non getSpotlightComment(theFile)\n\ttell application id \"com.apple.Finder\"\n\t\tusing terms from application \"Finder\"\n\t\t\ttry\n\t\t\t\treturn comment of (POSIX file theFile as alias)\n\t\t\tend try\n\t\tend using terms from\n\tend tell\nend getSpotlightComment\n\n-- alfred specific\n\non alfred_result(uid, title, subtitle, arg, valid)\n\t-- format the list\t\n\tset theResult to alfred_result_items({my alfred_result_item(uid, title, subtitle, arg, valid)})\n\treturn theResult\nend alfred_result\n\non alfred_result_items(itemList)\n\tset theResult to \"<?xml version=\\\"1.0\\\"?><items>\"\n\trepeat with alfred_item in itemList\n\t\tset theResult to theResult & alfred_item\n\tend repeat\n\tset theResult to theResult & \"<\/items>\"\n\treturn theResult\nend alfred_result_items\n\non alfred_result_item(uid, title, subtitle, arg, valid)\n\treturn my alfred_result_item_with_icon(uid, title, subtitle, arg, valid, \"icon.png\")\nend alfred_result_item\n\non alfred_result_item_with_icon(uid, title, subtitle, arg, valid, icon)\n\tset theResult to \"<item uid=\\\"\" & uid & \"\\\" arg=\\\"\" & my q_encode(arg) & \"\\\" type=\\\"file\\\" valid=\\\"\" & valid & \"\\\">\"\n\tset theResult to theResult & \"<title>\" & my q_encode(title) & \"<\/title>\"\n\tset theResult to theResult & \"<subtitle>\" & my q_encode(subtitle) & \"<\/subtitle>\"\n\tset theResult to theResult & \"<icon>\" & icon & \"<\/icon>\"\n\tset theResult to theResult & \"<\/item>\"\n\treturn theResult\nend alfred_result_item_with_icon\n\non isAppSupported(appname, Workflow)\n\tif Workflow is \"Reminders\" then\n\t\tif my reminderApplicationInfo(appname, supportedReminderApplications) is not missing value then return true\n\tend if\n\treturn false\nend isAppSupported\n\n-- check version\n\non alfred_version_notify(wfname, bundleid, currentversion, wf, cacheFile, checkFrequency)\n\tset notify to {}\n\tif not isLatestVersion(bundleid, currentversion, wf, cacheFile, checkFrequency) then\n\t\tset notify to alfred_result_item_with_icon(bundleid & \"-update\", \"A new version of the \" & wfname & \" workflow is available\", \"Download the latest version\", \"@@UPDATE@@\", true, \"new.png\")\n\tend if\n\treturn notify\nend alfred_version_notify\n\non isLatestVersion(bundleid, currentversion, wf, cacheFile, checkFrequency)\n\tset timestamp to wf's get_value(\"updatecheck\", cacheFile)\n\tset lastResult to wf's get_value(\"isLatestVersion\", cacheFile)\n\tset lastVersion to wf's get_value(\"latestversion\", cacheFile)\n\ttry\n\t\tset lastVersion to lastVersion as number\n\tend try\n\t\n\tif timestamp is not missing value and lastResult is not missing value and lastVersion is not missing value then\n\t\tif ((current date) - timestamp is less than checkFrequency) and lastVersion is less than or equal to currentversion then\n\t\t\t-- cache is still valid\n\t\t\treturn true\n\t\telse if lastVersion is greater than currentversion then\n\t\t\t-- no need to check if we already know there's a newer version, regardless of age\n\t\t\treturn false\n\t\tend if\n\tend if\n\t-- spawn cache process\n\tdo shell script \"osascript \" & quoted form of (workflowFolder & \"\/cache-update.scpt\") & space & quoted form of bundleid & space & currentversion & \" > \/dev\/null 2>&1 & \"\n\treturn true\nend isLatestVersion\n\non checkVersion(bundleid)\n\tset cmd to \"curl --connect-timeout 5 -s \" & updateURL & \"?bundle=\" & bundleid\n\ttry\n\t\treturn do shell script cmd\n\tend try\nend checkVersion\n\n-- this is performed as a last step, and so is ok to be slow\non getVersionURL(bundleid)\n\tset cmd to \"curl --connect-timeout 5 -s \" & downloadURL & \"?bundle=\" & bundleid\n\ttry\n\t\treturn do shell script cmd\n\tend try\nend getVersionURL\n\n-- general utility\n\non curlAddHeader(header)\n\treturn \" -H \" & quoted form of header\nend curlAddHeader\n\non curlAddData(theData)\n\treturn \" -d \" & quoted form of theData\nend curlAddData\n\non middleText(theText, startWord, endWord)\n\tset old_delims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to space\n\tset itemList to text items of theText\n\ttry\n\t\tset theResult to (items startWord thru endWord of itemList) as string\n\ton error\n\t\tset theResult to \"\"\n\tend try\n\tset AppleScript's text item delimiters to old_delims\n\treturn theResult\nend middleText\n\non convertTime(theTimeStr)\n\tset am to false\n\tset pm to false\n\tset num to 0\n\ttry\n\t\tif (count of (characters of theTimeStr)) is greater than 1 then\n\t\t\tset old_delims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to \"\"\n\t\t\tif characters -2 thru -1 of theTimeStr is {\"a\", \"m\"} then\n\t\t\t\tset theTimeStr to (characters 1 thru -3 of theTimeStr) as string\n\t\t\t\tset am to true\n\t\t\telse if characters -2 thru -1 of theTimeStr is {\"p\", \"m\"} then\n\t\t\t\tset theTimeStr to (characters 1 thru -3 of theTimeStr) as string\n\t\t\t\tset pm to true\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to old_delims\n\t\tend if\n\t\tif (offset of \".\" in theTimeStr) is greater than 0 then\n\t\t\t-- check for form 1.30\n\t\t\tset theOffset to (offset of \".\" in theTimeStr)\n\t\t\tset num to num + ((text 1 thru (theOffset - 1) of theTimeStr) * hours)\n\t\t\tset num to num + ((text (theOffset + 1) thru -1 of theTimeStr) * minutes)\n\t\telse if (offset of \":\" in theTimeStr) is greater than 0 then\n\t\t\t-- check for form 1:30\n\t\t\tset theOffset to (offset of \":\" in theTimeStr)\n\t\t\tset num to num + ((text 1 thru (theOffset - 1) of theTimeStr) * hours)\n\t\t\tset num to num + ((text (theOffset + 1) thru -1 of theTimeStr) * minutes)\n\t\telse\n\t\t\t-- assume hours\n\t\t\tset num to num + (theTimeStr * hours)\n\t\tend if\n\t\t\n\t\t-- determine am or pm based on current time\n\t\tif (not am and not pm) \n\t\t\tand num is less than (12 * hours) \n\t\t\tand num is less than ((current date)'s time) then\n\t\t\tset pm to true\n\t\tend if\n\t\t\n\t\tif pm then\n\t\t\tset num to num + (12 * hours)\n\t\tend if\n\t\t\n\ton error\n\t\treturn\n\tend try\n\t\n\tif num is less than ((current date)'s time) then\n\t\t--tomorrow\n\t\tset theDate to ((current date) + days)\n\telse\n\t\t--today\n\t\tset theDate to (current date)\n\tend if\n\t\n\tset theDate's time to num\n\t\n\treturn theDate\n\t\nend convertTime\n\non splitByColon(theText)\n\tset text1 to \"\"\n\tset text2 to \"\"\n\ttry\n\t\tset pos to offset of \":\" in theText\n\t\tif (pos) is greater than 0 then\n\t\t\tset text1 to text 1 thru (pos - 1) of theText\n\t\t\tset text2 to text (pos + 1) thru -1 of theText\n\t\t\tset text1 to my trim(true, text1)\n\t\t\tset text2 to my trim(true, text2)\n\t\tend if\n\tend try\n\treturn {text1, text2}\nend splitByColon\n\n-- theseCharacters : A list of characters to trim\n-- someText : The text to be trimmed\n--\non trim(theseCharacters, someText)\n\t-- Lazy default (AppleScript doesn't support default values)\n\tif theseCharacters is true then set theseCharacters to \n\t\t{\" \", tab, ASCII character 10, return, ASCII character 0}\n\t\n\tif someText is \"\" then return\n\t\n\trepeat until first character of someText is not in theseCharacters\n\t\tset someText to text 2 thru -1 of someText\n\tend repeat\n\t\n\trepeat until last character of someText is not in theseCharacters\n\t\tset someText to text 1 thru -2 of someText\n\tend repeat\n\t\n\treturn someText\nend trim\n\non echo(something)\n\tdo shell script \"echo \" & quoted form of something\nend echo\n\non format_date(the_date, format_string)\n\t-- store all elements of the date into variables\n\tset {year_num, month_num, day_num, hour_num, minute_num, second_num} to \n\t\t{year of the_date, (month of the_date) as integer, day of the_date, hours of the_date, \n\t\t\tminutes of the_date, seconds of the_date}\n\tset {month_name, day_name} to {(month of the_date) as string, (weekday of the_date) as string}\n\tset suffix_list to {\"th\", \"st\", \"nd\", \"rd\", \"th\", \"th\", \"th\", \"th\", \"th\", \"th\"}\n\t\n\tset placeholders to \n\t\t{\"<<Year>>\", \n\t\t\t\"<<Year 2>>\", \n\t\t\t\"<<Century number>>\", \n\t\t\t\"<<Century>>\", \n\t\t\t\"<<Month>>\", \n\t\t\t\"<<Month 2>>\", \n\t\t\t\"<<Month name>>\", \n\t\t\t\"<<Day>>\", \n\t\t\t\"<<Day 2>>\", \n\t\t\t\"<<Day name>>\", \n\t\t\t\"<<Day suffix>>\", \n\t\t\t\"<<Hour>>\", \n\t\t\t\"<<Hour 2>>\", \n\t\t\t\"<<Minute>>\", \n\t\t\t\"<<Minute 2>>\", \n\t\t\t\"<<Second>>\", \n\t\t\t\"<<Second 2>>\"}\n\t\n\tset value_list to {\n\t\tyear_num as string, \n\t\tdd(year_num), \n\t\t(year_num div 100) as string, \n\t\t(year_num div 100 + 1) as string, \n\t\tmonth_num as string, \n\t\tdd(month_num), \n\t\tlocalized string of (month_name), \n\t\tday_num as string, \n\t\tdd(day_num), \n\t\tlocalized string of (day_name), \n\t\titem (day_num mod 10 + 1) of suffix_list, \n\t\thour_num as string, \n\t\tdd(hour_num), \n\t\tminute_num as string, \n\t\tdd(minute_num), \n\t\tsecond_num as string, \n\t\tdd(second_num)}\n\t\n\t-- repace elements of format string\n\tset old_delims to AppleScript's text item delimiters\n\t-- in a loop, replace all placeholders by the\n\t-- values from value_list\n\trepeat with x from 1 to count placeholders\n\t\tset ph to item x of placeholders\n\t\tset val to item x of value_list\n\t\tset AppleScript's text item delimiters to ph\n\t\tset temp to every text item of format_string\n\t\tset AppleScript's text item delimiters to val as text\n\t\tset format_string to temp as text\n\tend repeat\n\t\n\tset AppleScript's text item delimiters to old_delims\n\treturn format_string\nend format_date\n\non datefromweekday(q)\n\trepeat with i from 1 to 7\n\t\tset d to (current date) + i * days\n\t\tset w to (weekday of d) as string\n\t\tif w is q then return d\n\tend repeat\n\treturn false\nend datefromweekday\n\non dd(the_num) -- double digits\n\tset the_val to (text -2 thru -1 of ((the_num + 100) as text)) as text\n\treturn the_val\nend dd\n\non coerceDateToNum(theDate)\n\tset {dDate, dDateNum} to {\"1\/1\/1000\", 364878}\n\treturn (theDate - (date dDate)) div days + dDateNum\nend coerceDateToNum\n\non unixtime(theDate)\n\tset epoch to current date\n\tset the month of epoch to 1\n\tset the day of epoch to 1\n\tset the year of epoch to 1970\n\tset the hours of epoch to 0\n\tset the minutes of epoch to 0\n\tset the seconds of epoch to 0\n\t(theDate - (epoch + (time to GMT)))\nend unixtime\n\non frontmostapp()\n\treturn name of (info for (path to frontmost application))\nend frontmostapp\n\non filterRecords(recordList, searchProperty)\n\tset theResult to {}\n\ttell application \"System Events\"\n\t\tset theList to make new property list item with properties {value:recordList}\n\t\tset theValueList to value of (every property list item of (property list items of theList) whose name is searchProperty)\n\tend tell\n\trepeat with theItem in theValueList\n\t\tset the end of theResult to first item of theItem\n\tend repeat\n\treturn theResult\nend filterRecords\n\non q_is_empty(str)\n\tif str is missing value then return true\n\treturn length of (my q_trim(str)) is 0\nend q_is_empty\n\non q_trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\t\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend q_trim\n\non q_encode(str)\n\tif class of str is not text or (my q_is_empty(str)) then return str\n\tset s to \"\"\n\trepeat with sRef in str\n\t\tset c to contents of sRef\n\t\tif c is in {\"&\", \"'\", \"\\\"\", \"<\", \">\"} then\n\t\t\tif c is \"&\" then\n\t\t\t\tset s to s & \"&\"\n\t\t\telse if c is \"'\" then\n\t\t\t\tset s to s & \"'\"\n\t\t\telse if c is \"\\\"\" then\n\t\t\t\tset s to s & \""\"\n\t\t\telse if c is \"<\" then\n\t\t\t\tset s to s & \"<\"\n\t\t\telse if c is \">\" then\n\t\t\t\tset s to s & \">\"\n\t\t\tend if\n\t\telse\n\t\t\tset s to s & c\n\t\tend if\n\tend repeat\n\treturn s\nend q_encode\n\non path2url(thePath)\n\treturn do shell script \"python -c \\\"import urllib, sys; print (urllib.quote(sys.argv[1]))\\\" \" & quoted form of thePath\nend path2url\n\non keyDowntest(workflowPath, modifierKey) -- test for key down\n\tset modKeyDown to do shell script quoted form of (workflowPath & \"\/checkModifierKeys\") & space & modifierKey\n\tset modKeyDown to modKeyDown as integer\n\tset modKeyDown to modKeyDown as boolean\nend keyDowntest\n\non FileExists(theFile) -- (String) as Boolean\n\ttell application \"System Events\"\n\t\tif exists file theFile then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend tell\nend FileExists","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3755272e03311275a8845f1848cbb8a96b62c915","subject":"improve uninstaller script","message":"improve uninstaller script\n","repos":"binaryage\/totalterminal-installer","old_file":"uninstall.applescript","new_file":"uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalTerminalCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalTerminalCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalTerminalCrashWatcher was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to quit\n\ton error\n\t\tset stdout to stdout & \" Terminal was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalTerminal.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalTerminal.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalTerminal.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalTerminal.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalTerminal.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalTerminal.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Terminal\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalTerminal uninstallation finished\" & newline\n\t\n\t-- at this point Terminal should start cleanly and with no signs of TotalTerminal\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalTerminalCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalTerminalCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalTerminalCrashWatcher.com not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to quit\n\ton error\n\t\tset stdout to stdout & \" Terminal was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalTerminal.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalTerminal.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalTerminal.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalTerminal.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalTerminal.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalTerminal.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Terminal\" & newline\n\tend try\n\t\n\t-- at this point Terminal should start cleanly and with no signs of TotalTerminal\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4aafec64d1586ce1ef7f7fae4b66b0025e3eeabf","subject":"TIMOB-12740: Refactor script to use proper AppleScript types and iTunes idioms.","message":"TIMOB-12740: Refactor script to use proper AppleScript types and iTunes idioms.\n","repos":"smit1625\/titanium_mobile,KangaCoders\/titanium_mobile,kopiro\/titanium_mobile,pinnamur\/titanium_mobile,bhatfield\/titanium_mobile,jvkops\/titanium_mobile,jhaynie\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,prop\/titanium_mobile,benbahrenburg\/titanium_mobile,pinnamur\/titanium_mobile,indera\/titanium_mobile,openbaoz\/titanium_mobile,sriks\/titanium_mobile,benbahrenburg\/titanium_mobile,pec1985\/titanium_mobile,linearhub\/titanium_mobile,jhaynie\/titanium_mobile,ashcoding\/titanium_mobile,taoger\/titanium_mobile,prop\/titanium_mobile,ashcoding\/titanium_mobile,emilyvon\/titanium_mobile,bhatfield\/titanium_mobile,mvitr\/titanium_mobile,openbaoz\/titanium_mobile,indera\/titanium_mobile,openbaoz\/titanium_mobile,peymanmortazavi\/titanium_mobile,falkolab\/titanium_mobile,jhaynie\/titanium_mobile,AngelkPetkov\/titanium_mobile,formalin14\/titanium_mobile,taoger\/titanium_mobile,shopmium\/titanium_mobile,peymanmortazavi\/titanium_mobile,falkolab\/titanium_mobile,mano-mykingdom\/titanium_mobile,KangaCoders\/titanium_mobile,shopmium\/titanium_mobile,AngelkPetkov\/titanium_mobile,csg-coder\/titanium_mobile,perdona\/titanium_mobile,pec1985\/titanium_mobile,prop\/titanium_mobile,mano-mykingdom\/titanium_mobile,falkolab\/titanium_mobile,ashcoding\/titanium_mobile,jvkops\/titanium_mobile,openbaoz\/titanium_mobile,bhatfield\/titanium_mobile,AngelkPetkov\/titanium_mobile,taoger\/titanium_mobile,KangaCoders\/titanium_mobile,bright-sparks\/titanium_mobile,benbahrenburg\/titanium_mobile,cheekiatng\/titanium_mobile,cheekiatng\/titanium_mobile,ashcoding\/titanium_mobile,smit1625\/titanium_mobile,linearhub\/titanium_mobile,openbaoz\/titanium_mobile,FokkeZB\/titanium_mobile,taoger\/titanium_mobile,csg-coder\/titanium_mobile,kopiro\/titanium_mobile,prop\/titanium_mobile,benbahrenburg\/titanium_mobile,prop\/titanium_mobile,indera\/titanium_mobile,linearhub\/titanium_mobile,cheekiatng\/titanium_mobile,formalin14\/titanium_mobile,mvitr\/titanium_mobile,FokkeZB\/titanium_mobile,sriks\/titanium_mobile,jhaynie\/titanium_mobile,formalin14\/titanium_mobile,mvitr\/titanium_mobile,jvkops\/titanium_mobile,FokkeZB\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,mvitr\/titanium_mobile,jhaynie\/titanium_mobile,pec1985\/titanium_mobile,rblalock\/titanium_mobile,bright-sparks\/titanium_mobile,collinprice\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,cheekiatng\/titanium_mobile,rblalock\/titanium_mobile,bright-sparks\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,linearhub\/titanium_mobile,bhatfield\/titanium_mobile,mano-mykingdom\/titanium_mobile,jvkops\/titanium_mobile,ashcoding\/titanium_mobile,csg-coder\/titanium_mobile,perdona\/titanium_mobile,falkolab\/titanium_mobile,falkolab\/titanium_mobile,perdona\/titanium_mobile,jvkops\/titanium_mobile,indera\/titanium_mobile,bright-sparks\/titanium_mobile,FokkeZB\/titanium_mobile,rblalock\/titanium_mobile,benbahrenburg\/titanium_mobile,shopmium\/titanium_mobile,linearhub\/titanium_mobile,taoger\/titanium_mobile,collinprice\/titanium_mobile,shopmium\/titanium_mobile,indera\/titanium_mobile,mano-mykingdom\/titanium_mobile,mano-mykingdom\/titanium_mobile,rblalock\/titanium_mobile,collinprice\/titanium_mobile,emilyvon\/titanium_mobile,csg-coder\/titanium_mobile,FokkeZB\/titanium_mobile,perdona\/titanium_mobile,sriks\/titanium_mobile,emilyvon\/titanium_mobile,openbaoz\/titanium_mobile,kopiro\/titanium_mobile,cheekiatng\/titanium_mobile,formalin14\/titanium_mobile,mano-mykingdom\/titanium_mobile,bright-sparks\/titanium_mobile,perdona\/titanium_mobile,prop\/titanium_mobile,AngelkPetkov\/titanium_mobile,FokkeZB\/titanium_mobile,pinnamur\/titanium_mobile,emilyvon\/titanium_mobile,falkolab\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,csg-coder\/titanium_mobile,AngelkPetkov\/titanium_mobile,peymanmortazavi\/titanium_mobile,jhaynie\/titanium_mobile,csg-coder\/titanium_mobile,mvitr\/titanium_mobile,collinprice\/titanium_mobile,sriks\/titanium_mobile,KangaCoders\/titanium_mobile,sriks\/titanium_mobile,peymanmortazavi\/titanium_mobile,indera\/titanium_mobile,KangaCoders\/titanium_mobile,bhatfield\/titanium_mobile,collinprice\/titanium_mobile,AngelkPetkov\/titanium_mobile,openbaoz\/titanium_mobile,cheekiatng\/titanium_mobile,collinprice\/titanium_mobile,linearhub\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,formalin14\/titanium_mobile,falkolab\/titanium_mobile,rblalock\/titanium_mobile,pinnamur\/titanium_mobile,rblalock\/titanium_mobile,jhaynie\/titanium_mobile,KangaCoders\/titanium_mobile,pec1985\/titanium_mobile,emilyvon\/titanium_mobile,kopiro\/titanium_mobile,benbahrenburg\/titanium_mobile,jvkops\/titanium_mobile,taoger\/titanium_mobile,shopmium\/titanium_mobile,benbahrenburg\/titanium_mobile,peymanmortazavi\/titanium_mobile,pinnamur\/titanium_mobile,jvkops\/titanium_mobile,pec1985\/titanium_mobile,bhatfield\/titanium_mobile,shopmium\/titanium_mobile,FokkeZB\/titanium_mobile,emilyvon\/titanium_mobile,perdona\/titanium_mobile,linearhub\/titanium_mobile,ashcoding\/titanium_mobile,smit1625\/titanium_mobile,kopiro\/titanium_mobile,smit1625\/titanium_mobile,formalin14\/titanium_mobile,cheekiatng\/titanium_mobile,smit1625\/titanium_mobile,mvitr\/titanium_mobile,falkolab\/titanium_mobile,pec1985\/titanium_mobile,peymanmortazavi\/titanium_mobile,mano-mykingdom\/titanium_mobile,bhatfield\/titanium_mobile,smit1625\/titanium_mobile,smit1625\/titanium_mobile,bright-sparks\/titanium_mobile,rblalock\/titanium_mobile,pec1985\/titanium_mobile,sriks\/titanium_mobile,pec1985\/titanium_mobile,emilyvon\/titanium_mobile,bright-sparks\/titanium_mobile,shopmium\/titanium_mobile,kopiro\/titanium_mobile,mvitr\/titanium_mobile,ashcoding\/titanium_mobile,prop\/titanium_mobile,rblalock\/titanium_mobile,formalin14\/titanium_mobile,taoger\/titanium_mobile,AngelkPetkov\/titanium_mobile,cheekiatng\/titanium_mobile,peymanmortazavi\/titanium_mobile,mvitr\/titanium_mobile,ashcoding\/titanium_mobile,collinprice\/titanium_mobile,bright-sparks\/titanium_mobile,pinnamur\/titanium_mobile,pinnamur\/titanium_mobile,indera\/titanium_mobile,bhatfield\/titanium_mobile,emilyvon\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,KangaCoders\/titanium_mobile,KoketsoMabuela92\/titanium_mobile,pec1985\/titanium_mobile,AngelkPetkov\/titanium_mobile,taoger\/titanium_mobile,csg-coder\/titanium_mobile,peymanmortazavi\/titanium_mobile,prop\/titanium_mobile,kopiro\/titanium_mobile,formalin14\/titanium_mobile,jvkops\/titanium_mobile,KangaCoders\/titanium_mobile,collinprice\/titanium_mobile,jhaynie\/titanium_mobile,sriks\/titanium_mobile,perdona\/titanium_mobile,sriks\/titanium_mobile,pinnamur\/titanium_mobile,smit1625\/titanium_mobile,indera\/titanium_mobile,linearhub\/titanium_mobile,mano-mykingdom\/titanium_mobile,perdona\/titanium_mobile,csg-coder\/titanium_mobile,kopiro\/titanium_mobile,shopmium\/titanium_mobile,benbahrenburg\/titanium_mobile,FokkeZB\/titanium_mobile,pinnamur\/titanium_mobile,openbaoz\/titanium_mobile","old_file":"support\/iphone\/itunes_sync.scpt","new_file":"support\/iphone\/itunes_sync.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000K\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000K\u0000\b\u0000\t\r\u0000\b\u0000\u0003X\u0000\u0000\u0000\u0004\u0000J\u0000\n\u0000\u000b\r\u0000\n\u0000\u0004Z\u0000\u0000\u0000\u0016\u0000E\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u001b\u0000\u000e\r\u0000\u000e\u0000\u0002=\u0000\u0003\u0000\u0016\u0000\u001b\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u0019\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\npKnd\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u001c0\u0000\fitunessource\u0000\fiTunesSource\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000beSrckPod\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\r\u0000\u0003Q\u0000\u0000\u0000\u001e\u0000A\u0000\u0013\u0000\u0014\u0000\u0015\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000!\u0000&\u0000\u0016\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u001c0\u0000\fitunessource\u0000\fiTunesSource\u0002\u0000\u0000\r\u0000\u0014\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u0000\u0018\u0000\u0003\u0000\u0019\n\u0000\u0004\nerrn\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000.\u0000A\u0000\u001a\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000.\u0000=\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002b\u0000\u0000\u0000.\u0000;\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002b\u0000\u0000\u0000.\u00009\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002b\u0000\u0000\u0000.\u00007\u0000!\u0000\"\r\u0000!\u0000\u0002b\u0000\u0000\u0000.\u00005\u0000#\u0000$\r\u0000#\u0000\u0002b\u0000\u0000\u0000.\u00003\u0000%\u0000&\r\u0000%\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000'\u000e\u0000'\u0000\u0001\u0000(\u0011\u0000(\u0000\u0016\u0000T\u0000h\u0000e\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \r\u0000&\u0000\u0002n\u0000\u0000\u0000\/\u00002\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u00000\u00002\n\u0000\u0004\npnam\r\u0000*\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u001c0\u0000\fitunessource\u0000\fiTunesSource\r\u0000$\u0000\u0001m\u0000\u0000\u00003\u00004\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000*\u0000 \u0000w\u0000a\u0000s\u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000n\u0000c\u0000 \u0000(\r\u0000\"\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\r\u0000 \u0000\u0001m\u0000\u0000\u00007\u00008\u0000-\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000\u0002\u0000:\r\u0000\u001e\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001c0\u0000\fitunessource\u0000\fiTunesSource\r\u0000\u000b\u0000\u00012\u0000\u0001\u0000\u0007\u0000\n\n\u0000\u0004\ncSrc\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00001\u000f\u00001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001N\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000QH+\u0000\u0000\u0000\u0000\u0000\\\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00001\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000br\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\\\u0000\u0002\u0000%Macintosh HD:Applications:\u0000iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u00002\r\u00002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u00003\u00004\u0001\u0000\u0000\u0010\u00003\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00004\u0000\u0007\u0010\u00005\u00006\u00007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u00008\u0002\u00008\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u00006\u0000\u0003\u000b\u0000\u001c0\u0000\fitunessource\u0000\fiTunesSource\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0010\u00007\u0000\u0010\u00001\u00009\u0000'\u0000+\u0000-\u0000\/\n\u0000\u0004\ncSrc\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npKnd\n\u0000\b\u000beSrckPod\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u00009\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\n\u0000\u0004\npnam\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0011\u0000L\u0012\u0000H\u0017\u0000E*-[l\f\u0000\u0004kh\u001b\u0000\u0000,\u0000\u001d\u0000(\u0014\u0000\nj\f\u0000\u0007W\u0000\u001aX\u0000\b\u0000\t,%%%%%%j\f\u0000\u000fY\u0000\u0003h[OYU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000L\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000L\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0005Y\u0000\u0000\u0000\u0004\u0000K\u0000\u0007\u0000\b\u0000\t\r\u0000\u0007\u0000\u0004Z\u0000\u0000\u0000\u0014\u0000F\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002=\u0000\u0003\u0000\u0014\u0000\u001c\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u001a\u0000\u000e\r\u0000\u000e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u001a\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\npKnd\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0018\u0000\u0011\n\u0000\u0004\ncSrc\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\b\u000beSrckPod\r\u0000\u000b\u0000\u0003Q\u0000\u0000\u0000\u001f\u0000B\u0000\u0012\u0000\u0013\u0000\u0014\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000\u0015\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u0000\u0017\u0000\u0003\u0000\u0018\n\u0000\u0004\nerrn\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\/\u0000B\u0000\u0019\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0019\u0000\u0002b\u0000\u0000\u0000\/\u0000>\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\/\u0000<\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\/\u0000:\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000 \u0000!\r\u0000 \u0000\u0002b\u0000\u0000\u0000\/\u00006\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000$\u0000%\r\u0000$\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0016\u0000T\u0000h\u0000e\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \r\u0000%\u0000\u0002n\u0000\u0000\u00000\u00003\u0000(\u0000)\r\u0000(\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000)\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000#\u0000\u0001m\u0000\u0000\u00004\u00005\u0000*\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000*\u0000 \u0000w\u0000a\u0000s\u0000 \u0000u\u0000n\u0000a\u0000b\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000n\u0000c\u0000 \u0000(\r\u0000!\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\r\u0000\u001f\u0000\u0001m\u0000\u0000\u00008\u00009\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0002\u0000:\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0000\u0001\r\u0000\t\u0000\u0003l\u0001\u0000\u0000\b\u0000\u000f\u00000\r\u00000\u0000\u0003I\u0000\u0001\u0000\b\u0000\u000f\u00001\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00001\u0000\u00012\u0000\u0001\u0000\b\u0000\u000b\n\u0000\u0004\ncSrc\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00002\u000f\u00002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006SH+\u0000\u0000\u0000\u0000\u0000q\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00007\u0003l\u0007\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0006\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000m$w\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000q\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u00003\u00004\u0001\u0000\u0000\u0010\u00003\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00004\u0000\u0007\u0010\u00005\u00006\u00007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000L\u00008\u0002\u00008\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u00006\u0000\u0003\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0010\u00007\u0000\u000e\u00002\u00009\u0000&\u0000*\u0000,\u0000.\n\u0000\u0004\ncSrc\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npKnd\n\u0000\b\u000beSrckPod\n\u0000\u0018.hookUpdtnull\u0000\u0000\u0000\u0000\u0000cSrc\u000b\u0000\u00140\u0000\berrorstr\u0000\berrorStr\u0006\u00009\u0000\u0003\n\u0000\u0004\nerrn\u000b\u0000\u001a0\u0000\u000berrornumber\u0000\u000berrorNumber\u0006\u0000\u0000\n\u0000\u0004\npnam\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0011\u0000M\u0012\u0000I\u0017\u0000Fk*-j\f\u0000\u0002kh\u001c\u0000\u0000*\/,\u0000\u001d\u0000(\u0014\u0000\nj\f\u0000\u0005W\u0000\u001aX\u0000\u0006\u0000\u0007,%%%%%%j\f\u0000\rY\u0000\u0003h[OYU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"1f79cb95f1105551e41eda2cc7190cd08c5817fb","subject":"fixed for iTerm2 3.0.0","message":"fixed for iTerm2 3.0.0\n","repos":"miromannino\/alfred-new-terminal-window","old_file":"iterm_new.scpt","new_file":"iterm_new.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000'\u0000! Copyright (c) 2015 Miro Mannino \u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000B\u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000(\u0000c\u0000)\u0000 \u00002\u00000\u00001\u00005\u0000 \u0000M\u0000i\u0000r\u0000o\u0000 \u0000M\u0000a\u0000n\u0000n\u0000i\u0000n\u0000o\u0000 \u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000$\u0000\u001e remember to save it compiled \u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000<\u0000 \u0000r\u0000e\u0000m\u0000e\u0000m\u0000b\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000d\u0000 \u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0015\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0018\u0002\u0000\u0018\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000-\u0000\u001b\u0000\u001c\u0000\u001d\r\u0000\u001b\u0000\u0002F\u0000\u0000\u0000\u0004\u0000\u0016\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002=\u0000\u0000\u0000\u0004\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0000\"\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\u0000#\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000!\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002>\u0000\u0000\u0000\u000e\u0000\u0014\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u000e\u0000\u0012\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0012\u0000'\u0000(\r\u0000'\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\n\u0000\u0004\ncobj\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0003\u0000\u0001\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000*\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000\u0000\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\u0019\u0000#\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0005\u0000\u0019\u0000!\u0000.\r\u0000.\u0000\u0003I\u0000\u0002\u0000\u0019\u0000!\u0000\/\n\u0000\u0018.Itrmnwwpcwin\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000ctxt\r\u0000\/\u0000\u0003l\u0000\u0005\u0000\u0019\u0000\u001d\u00000\r\u00000\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u00001\u00002\r\u00001\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u00003\n\u0000\u0004\ncobj\r\u00003\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0000\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000&\u0000-\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0005\u0000&\u0000+\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000&\u0000+\n\u0000\u0018.Itrmnwwncwin\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u001a\u0000\u0002\u00007\r\u00007\u0000\u0004Z\u0000\u0000\u0000.\u0000\u00008\u00009\r\u00008\u0000\u0002F\u0000\u0000\u0000.\u0000@\u0000:\u0000;\r\u0000:\u0000\u0002=\u0000\u0000\u0000.\u00005\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0005\u0000.\u00003\u0000>\r\u0000>\u0000\u0003I\u0000\u0002\u0000.\u00003\u0000?\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000?\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000=\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0002\r\u0000;\u0000\u0002=\u0000\u0000\u00008\u0000>\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0005\u00008\u0000<\u0000B\r\u0000B\u0000\u0002n\u0000\u0000\u00008\u0000<\u0000C\u0000D\r\u0000C\u0000\u00024\u0000\u0000\u00009\u0000<\u0000E\n\u0000\u0004\ncobj\r\u0000E\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0000\u0002\r\u0000D\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0006\u0000c\u0000d\u0000f\r\u00009\u0000\u0002O\u0000\u0000\u0000C\u0000\u0000H\u0000I\r\u0000H\u0000\u0002O\u0000\u0000\u0000G\u0000\u0000J\u0000K\r\u0000J\u0000\u0001k\u0000\u0000\u0000M\u0000\u0000L\u0002\u0000L\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002O\u0000\u0000\u0000M\u0000|\u0000O\u0000P\r\u0000O\u0000\u0001k\u0000\u0000\u0000Q\u0000{\u0000Q\u0002\u0000Q\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003Q\u0000\u0000\u0000Q\u0000s\u0000T\u0000U\u0000V\r\u0000T\u0000\u0002r\u0000\u0000\u0000T\u0000^\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0005\u0000T\u0000\\\u0000Y\r\u0000Y\u0000\u0002c\u0000\u0000\u0000T\u0000\\\u0000Z\u0000[\r\u0000Z\u0000\u0002n\u0000\u0000\u0000T\u0000Z\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000X\u0000Z\n\u0000\u0004\ncfol\r\u0000]\u0000\u0003l\u0001\u0000\u0000T\u0000X\u0000^\r\u0000^\u0000\u00024\u0001\u0000\u0000T\u0000X\u0000_\n\u0000\u0004\ncwin\r\u0000_\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000[\u0000\u0001m\u0000\u0000\u0000Z\u0000[\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\r\u0000U\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000V\u0000\u0002r\u0000\u0000\u0000f\u0000s\u0000`\u0000a\r\u0000`\u0000\u0003l\u0000\u0005\u0000f\u0000q\u0000b\r\u0000b\u0000\u0003I\u0000\u0002\u0000f\u0000q\u0000c\u0000d\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000c\u0000\u0001m\u0000\u0000\u0000f\u0000i\n\u0000\b\u000bafdmdesk\u0006\u0000d\u0000\u0003\u0000e\n\u0000\u0004\nrtyp\r\u0000e\u0000\u0001m\u0000\u0000\u0000l\u0000m\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0002\u0000S\u0000\u0002\u0000f\r\u0000f\u0000\u0002r\u0000\u0000\u0000t\u0000{\u0000g\u0000h\r\u0000g\u0000\u0002n\u0000\u0000\u0000t\u0000y\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000u\u0000y\n\u0000\u0004\npsxp\r\u0000j\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0002\u0000\u0000\r\u0000P\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000k\u000f\u0000k\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001`\u0000\u0002\u0000\u0001\u0005MACOS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049e\u001f?H+\u0000\u0000\u0000\u0000\u00000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002g_I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g'\t\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0000\u0000.\u0000\u0002\u0000\/MACOS:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000M\u0000A\u0000C\u0000O\u0000S\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000N\u0000\u0002\u0000l\r\u0000l\u0000\u0003I\u0000\u0002\u0000}\u0000\u0000m\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000m\u0000\u0003\u0000n\n\u0000\u0004\nText\r\u0000n\u0000\u0002b\u0000\u0000\u0000\u0000\u0000o\u0000p\r\u0000o\u0000\u0001m\u0000\u0000\u0000\u0000\u0000q\u000e\u0000q\u0000\u0001\u0000r\u0011\u0000r\u0000\u0006\u0000c\u0000d\u0000 \r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000K\u0000\u00011\u0000\u0000\u0000G\u0000J\n\u0000\u0004\nWcsn\r\u0000I\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000s\u000f\u0000s\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0005MACOS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049e\u001f?H+\u0000\u0000\u0000\u0000\u0000O\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000[L{s\u0004\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u049d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000r\u0326\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000O\u0000\u0002\u0000\u001dMACOS:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000M\u0000A\u0000C\u0000O\u0000S\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000t\r\u0000t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000u\u0000v\u0001\u0000\u0000\u0010\u0000u\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000v\u0000\u0007\u0010\u0000\u0014\u0000w\u0000x\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000w\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000x\u0000\u0018\u0000s\u0000*\u0000F\u0000k\u0000q\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0004\nbool\n\u0000\u0018.Itrmnwwpcwin\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000ctxt\u000b\u0000\u00160\u0000\tnewwindow\u0000\tnewWindow\n\u0000\u0018.Itrmnwwncwin\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\nWcsn\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\nText\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0012\u0000j\f\u0000\u0001k\u0000\t\u0000\nk\/\u0001&\u001d\u0000\u000fk\/j\f\u0000\u0005EY\u0000\t*j\f\u0000\u0007EOj\f\u0000\u0001l\u0000\t\u0000\nl\/\u0000&\u001d\u0000N\u0012\u0000F*,\u0012\u0000?\u0012\u0000,\u0014\u0000\u000f*k\/,&EW\u0000\u0014X\u0000\u000f\u0000\u0010a\u0000\u0011a\u0000\u0012l\f\u0000\u0013EOa\u0000\u0014,EUO*a\u0000\u0015a\u0000\u0016%l\f\u0000\u0017UUY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000'\u0000! Copyright (c) 2015 Miro Mannino \u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000B\u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000(\u0000c\u0000)\u0000 \u00002\u00000\u00001\u00005\u0000 \u0000M\u0000i\u0000r\u0000o\u0000 \u0000M\u0000a\u0000n\u0000n\u0000i\u0000n\u0000o\u0000 \u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000$\u0000\u001e remember to save it compiled \u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000<\u0000 \u0000r\u0000e\u0000m\u0000e\u0000m\u0000b\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000d\u0000 \u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0015\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0018\u0002\u0000\u0018\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u000b\u0000\u001d\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\u000b\u0000\u001e\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\nkocl\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nPtrm\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006myterm\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000 \r\u0000 \u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0000!\u0000\"\r\u0000!\u0000\u0001k\u0000\u0000\u0000\u0012\u0000\u0000#\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0004Z\u0000\u0000\u0000\u0012\u00000\u0000&\u0000'\u0000(\r\u0000&\u0000\u0002=\u0000\u0000\u0000\u0012\u0000\u0019\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u0017\u0000+\r\u0000+\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\u0000,\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0001\r\u0000'\u0000\u0003I\u0000\u0002\u0000\u001c\u0000&\u0000-\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000-\u0000\u0003\u0000.\n\u0000\u0004\nPssn\r\u0000.\u0000\u0003l\u0000\u0005\u0000\u001e\u0000\"\u0000\/\r\u0000\/\u0000\u0002n\u0000\u0000\u0000\u001e\u0000\"\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000\u001f\u0000\"\u00002\n\u0000\u0004\ncobj\r\u00002\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0003I\u0000\u0002\u0000)\u00000\u00003\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u00003\u0000\u0003\u00004\n\u0000\u0004\nPssn\r\u00004\u0000\u0001m\u0000\u0000\u0000+\u0000,\u00005\u000e\u00005\u0000\u0001\u00006\u0011\u00006\u0000\u0000\u0006\u0000\u0000\u0002\u0000%\u0000\u0002\u00007\r\u00007\u0000\u0004Z\u0000\u0000\u00001\u0000\u00008\u00009\r\u00008\u0000\u0002F\u0000\u0000\u00001\u0000C\u0000:\u0000;\r\u0000:\u0000\u0002=\u0000\u0000\u00001\u00008\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0005\u00001\u00006\u0000>\r\u0000>\u0000\u0003I\u0000\u0002\u00001\u00006\u0000?\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000?\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000=\u0000\u0001m\u0000\u0000\u00006\u00007\u0003\u0000\u0002\r\u0000;\u0000\u0002=\u0000\u0000\u0000;\u0000A\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0005\u0000;\u0000?\u0000B\r\u0000B\u0000\u0002n\u0000\u0000\u0000;\u0000?\u0000C\u0000D\r\u0000C\u0000\u00024\u0000\u0000\u0000<\u0000?\u0000E\n\u0000\u0004\ncobj\r\u0000E\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0002\r\u0000D\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0006\u0000c\u0000d\u0000f\r\u00009\u0000\u0002O\u0000\u0000\u0000F\u0000\u0000H\u0000I\r\u0000H\u0000\u0001k\u0000\u0000\u0000M\u0000\u0000J\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000M\u0000\u0000M\u0000N\r\u0000M\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000O\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003Q\u0000\u0000\u0000Q\u0000w\u0000R\u0000S\u0000T\r\u0000R\u0000\u0002r\u0000\u0000\u0000T\u0000`\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0005\u0000T\u0000\\\u0000W\r\u0000W\u0000\u0002c\u0000\u0000\u0000T\u0000\\\u0000X\u0000Y\r\u0000X\u0000\u0002n\u0000\u0000\u0000T\u0000Z\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000X\u0000Z\n\u0000\u0004\ncfol\r\u0000[\u0000\u0003l\u0001\u0000\u0000T\u0000X\u0000\\\r\u0000\\\u0000\u00024\u0001\u0000\u0000T\u0000X\u0000]\n\u0000\u0004\ncwin\r\u0000]\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000Z\u0000[\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\r\u0000S\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000T\u0000\u0002r\u0000\u0000\u0000h\u0000w\u0000^\u0000_\r\u0000^\u0000\u0003l\u0000\u0005\u0000h\u0000s\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000h\u0000s\u0000a\u0000b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000a\u0000\u0001m\u0000\u0000\u0000h\u0000k\n\u0000\b\u000bafdmdesk\u0006\u0000b\u0000\u0003\u0000c\n\u0000\u0004\nrtyp\r\u0000c\u0000\u0001m\u0000\u0000\u0000n\u0000o\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0002\u0000Q\u0000\u0002\u0000d\r\u0000d\u0000\u0002r\u0000\u0000\u0000x\u0000\u0000e\u0000f\r\u0000e\u0000\u0002n\u0000\u0000\u0000x\u0000\u0000g\u0000h\r\u0000g\u0000\u00011\u0000\u0000\u0000{\u0000\n\u0000\u0004\npsxp\r\u0000h\u0000\u0001o\u0000\u0000\u0000x\u0000{\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0002\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000i\u000f\u0000i\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001`\u0000\u0002\u0000\u0001\u0005MACOS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049d\u000fH+\u0000\u0000\u0000\u0000\u00000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002g5\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u049d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g'\t\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0000\u0000.\u0000\u0002\u0000\/MACOS:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000M\u0000A\u0000C\u0000O\u0000S\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000L\u0000\u0002\u0000j\r\u0000j\u0000\u0003I\u0000\u0002\u0000\u0000\u0000k\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000k\u0000\u0003\u0000l\n\u0000\u0004\niTxt\r\u0000l\u0000\u0002b\u0000\u0000\u0000\u0000\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000\u0000\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000\u0006\u0000c\u0000d\u0000 \r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0003l\u0001\u0000\u0000F\u0000J\u0000q\r\u0000q\u0000\u00024\u0000\u0001\u0000F\u0000J\u0000r\n\u0000\u0004\nPssn\r\u0000r\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\n0\u0000\u0006myterm\u0000\u0000\u0002\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000s\u000f\u0000s\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0005MACOS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049d\u000fH+\u0000\u0000\u0000\u0000\u0000O\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t:7VL\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u049d\u0000\u0000\u0000\u0011\u0000\b\u0000\u00007:,\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000O\u0000\u0002\u0000\u001dMACOS:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000M\u0000A\u0000C\u0000O\u0000S\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000t\r\u0000t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000u\u0000v\u0000w\u0000x\u0001\u0000\u0000\u0010\u0000u\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\n0\u0000\u0006myterm\u0000\u0000\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0001\u0000\u0000\u000e\u0000v\u0000\u0007\u0010\u0000\u0014\u0000y\u0000z\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000y\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000z\u0000\u001a\u0000s\u00005\u0000F\u0000i\u0000o\n\u0000\u0004\nkocl\n\u0000\u0004\nPtrm\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u000b\u0000\n0\u0000\u0006myterm\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nPssn\n\u0000\u0004\ncobj\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nbool\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00180\u0000\ncurrfolder\u0000\ncurrFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\niTxt\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000\u0012\u0000*l\f\u0000\u0003EO\u0012\u0000j\f\u0000\u0005k\u0000\u001d\u0000\u000f*k\/l\f\u0000\bY\u0000\t*l\f\u0000\bOj\f\u0000\u0005l\u0000\t\u0000\nl\/\u0000&\u001d\u0000T*i\/\u0012\u0000I\u0012\u00004\u0014\u0000\u0011*k\/,&E`\u0000\u0010W\u0000\u0016X\u0000\u0011\u0000\u0012a\u0000\u0013a\u0000\u0014l\f\u0000\u0015E`\u0000\u0010O_\u0000\u0010a\u0000\u0016,E`\u0000\u0010UO*a\u0000\u0017a\u0000\u0018_\u0000\u0010%l\f\u0000\u0019UY\u0000\u0003hUU\u000f\u000e\u0000w\u0000\u0001\u0014\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000s\n\u0000\u0004\nPtrm\u0003\u0000\u0004\u000e\u0000x\u0000\u0001\u0000|\u0011\u0000|\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000m\u0000i\u0000r\u0000o\u0000\/\u0000D\u0000r\u0000o\u0000p\u0000b\u0000o\u0000x\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000s\u0000\/\u0000u\u0000s\u0000e\u0000r\u0000.\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u00003\u00000\u00004\u00003\u00003\u00003\u00005\u0000B\u0000-\u00002\u0000D\u0000B\u00000\u0000-\u00004\u00007\u00004\u00002\u0000-\u00009\u00002\u00004\u00000\u0000-\u0000B\u0000A\u0000B\u00009\u0000B\u0000E\u0000F\u00003\u0000E\u0000A\u0000B\u0000E\u0000\/\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a5d990cebb620ca071306a74178f32db58abcdd1","subject":"improve readability of play_song.scpt","message":"improve readability of play_song.scpt\n","repos":"kasoki\/Maestro","old_file":"play_song.scpt","new_file":"play_song.scpt","new_contents":"on run argv\n\tset song_title to item 1 in argv\n\n\ttell application \"iTunes\" to set playlist_list to the name of every user playlist\n\n\tif playlist_list does not contain song_title then\n\t\ttell application \"iTunes\" to play track song_title of current playlist\n\telse\n\t\ttell application \"iTunes\" to play playlist song_title\n\tend if\n\nend run","old_contents":"on run argv\n\tset song_title to item 1 in argv\n\n\ttry\n\t\ttell application \"iTunes\" to play track song_title of current playlist\n\ton error error_message\n\t\ttell application \"iTunes\" to play playlist song_title\n\tend try\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"12446fe7d7e7bcc4ac707400559a751e4727c3b8","subject":"Refactor first record upper record delimiter","message":"Refactor first record upper record delimiter\n\nInstead of checking the last line of the file every time, just write the\ninitial record delimiter after the header section when creating a new\nfile. Much of the last commit was reverted to make this change.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\tproperty _last_line : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Is file empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Scan last 5 lines of file to find last non-blank line.\n\t\t\t-- (If it's a record delimiter, we won't need to include an\n\t\t\t-- upper delimiter when writing a new record.)\n\t\t\tset _last_line to _get_last_line(5, log_file_mac)\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _get_last_line(tail_number, mac_path) --> string\n\t\t\t(*\n\t\t\t\tGet last non-blank line from file\n\t\t\t\t\n\t\t\t\t@param tail_number (integer) How many lines from end of file to check\n\t\t\t\t@param mac_path (string) Mac file path\n\t\t\t*)\n\t\t\tlocal mac_path, file_tail, tail_num\n\t\t\ttry\n\t\t\t\tset file_tail to reverse of (paragraphs -(tail_number) thru -1 of (read mac_path))\n\t\t\t\trepeat with i from 1 to (file_tail's length)\n\t\t\t\t\tlog file_tail's item i\n\t\t\t\t\tif file_tail's item i is not \"\" then return file_tail's item i\n\t\t\t\tend repeat\n\t\t\tend try\n\t\t\treturn \"\"\n\t\tend _get_last_line\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tif _last_line is record_sep then\n\t\t\t\tset final_text to \"\"\n\t\t\telse\n\t\t\t\tset final_text to record_sep & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset final_text to final_text & join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8694a51e8c146b23f1427eaa80ff8f9a1f401674","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"719e1bcff70a3cb7c1b96dbd3d0e524581fa4ec9","subject":"Start with just a list of top-level categories","message":"Start with just a list of top-level categories\n\nChoosing a top-level category will bring up a second dialog choice with\na list of all of that category's subcategories.\n\nBoth list dialog's have an option to display the full list of all\ncategories and subcategories.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-19\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt_all to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt_all to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt_all & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt_all to do shell script s without altering line endings\n--return cat_txt_all -- :DEBUG:\n-- Coerce the lines into a list:\nset cat_list_all to paragraphs of cat_txt_all\nif cat_list_all's last item is \"\" then set cat_list_all to cat_list_all's items 1 thru -2\n--return cat_list_all -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & cat_txt_all & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset cat_txt_top to do shell script s without altering line endings\n--return cat_txt_top -- :DEBUG:\n-- Coerce the lines into a list:\nset cat_list_top to paragraphs of cat_txt_top\nif cat_list_top's last item is \"\" then set cat_list_top to cat_list_top's items 1 thru -2\n--return cat_list_top -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset prompt_count to 1 -- increment with every dialog or list prompt\nset prompt_total to 4 -- increment if the subcategory list is displayed\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select an existing top-level category\nset extra_items to {\"Show full list with subcategories...\", multiply_text(uRule, 20)}\nset cat_choice to choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\nset prompt_count to prompt_count + 1\n--return cat_choice\n\n--if cat_choice is false then return false\nif cat_choice is false then -- skip the subcategory list\n\tset cat_choice to \"Please enter a category...\"\nelse\n\tset prompt_threshold to 1\n\tif cat_choice as text is extra_items's first item then\n\t\tset cat_list_sub to cat_list_all\n\telse\n\t\tset extra_items to {\"Show full list of existing categories...\", multiply_text(uRule, 35)}\n\t\t--set cat_list_sub to {}\n\t\tcopy extra_items to cat_list_sub -- use 'copy' instead of 'set' for separate lists\n\t\t-- Account for extra menu items:\n\t\tset prompt_threshold to prompt_threshold + (count of extra_items)\n\t\t-- Build subcategory list:\n\t\trepeat with this_cat in cat_list_all\n\t\t\tif (this_cat as text) is (cat_choice as text) \n\t\t\t\tor (this_cat as text) starts with (cat_choice & \":\") then\n\t\t\t\tset end of cat_list_sub to this_cat as text\n\t\t\tend if\n\t\tend repeat\n\tend if\n\t--return cat_list_sub\n\t\n\t-- Only show a subcategory list if there is more than one item:\n\tif (count of cat_list_sub) is greater than prompt_threshold then\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\t\tset prompt_count to prompt_count + 1\n\t\tset prompt_total to prompt_total + 1\n\tend if\nend if\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset prompt_count to prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\n\t--log \"[debug] in choose_top_category()\"\n\tset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\tset cat_choice to choose from list extra_items & cat_list_top with title t with prompt m OK button name \"Next...\"\n\t-- If the list separator was selected instead of a list item, then recursively prompt again:\n\tif cat_choice as text is extra_items's last item then\n\t\tset cat_choice to choose_top_category(cat_list_top, extra_items, prompt_count, prompt_total)\n\tend if\n\treturn cat_choice\nend choose_top_category\n\non choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\t--log \"[debug] in choose_subcategory()\"\n\t\n\t-- Select an existing category\n\tset t to \"\" & script_name & \": Category (\" & prompt_count & \"\/\" & prompt_total & \")\"\n\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t--set cat_choice to choose from list cat_list_all with title t with prompt m OK button name \"Next...\"\n\tset cat_choice to choose from list cat_list_sub with title t with prompt m OK button name \"Next...\"\n\t--if cat_choice is false then return false\n\tif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\t\n\tif cat_choice as text is extra_items's last item then\n\t\t--log \"[debug] choose_subcategory(): choice is extra_items's last item\"\n\t\t-- If list separator was selected instead of a list item, then recursively prompt again:\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_sub, extra_items, prompt_count, prompt_total)\n\telse if cat_choice as text is extra_items's first item then\n\t\t--log \"[debug] choose_subcategory(): choice is extra_items's first item\"\n\t\t-- If full list was selected, then recursively prompt using that list (note that the full list is used for both list arguments):\n\t\tset cat_choice to choose_subcategory(cat_list_all, cat_list_all, extra_items, prompt_count, prompt_total)\n\tend if\n\treturn cat_choice\nend choose_subcategory\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (1\/4)\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\teditLog(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select an existing category\nset t to \"\" & script_name & \": Category (2\/4)\"\nset m to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title t with prompt m OK button name \"Next...\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (3\/4)\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (4\/4)\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1f5d5cd032e233883f8f230cbfc176c56d82de9f","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"29911ebaa647ac12946ddadca8acb682837535dc","subject":"Fix #73","message":"Fix #73","repos":"kalamuna\/kalaboxv1,kalamuna\/kalaboxv1,kalamuna\/kalaboxv1","old_file":"kalabox\/utils\/task-runner\/sudo-pass.scpt","new_file":"kalabox\/utils\/task-runner\/sudo-pass.scpt","new_contents":"set kalaicon to 2\ntell application \"System Events\" to set itExists to \u00ac\n exists of alias ((path to me as text) & \":app.icns\")\nif itExists\n set kalaicon to alias ((path to me as text) & \":app.icns\")\nend if\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your Mac user account password. Installation will fail if your account does not have administrative privileges.\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","old_contents":"set kalaicon to 2\ntell application \"System Events\" to set itExists to \u00ac\n exists of alias ((path to me as text) & \":app.icns\")\nif itExists\n set kalaicon to alias ((path to me as text) & \":app.icns\")\nend if\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f7a84629310df5cce7f338a47824e715b11dfc11","subject":"Switching from endless loop to app idling.","message":"Switching from endless loop to app idling.\n\nReplacing the endless repeat with an on idle statement. Timing probably\nneeds more tweaking to lower CPU usage.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"property debug : false\nproperty currentVolume : null\nproperty idleTime: 0.3\n\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\non idle\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n\t\t\t\t\tset idleTime to 0.3\n end try\n repeat\n set idleTime to 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n set idleTime to 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n return idleTime\nend idle\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","old_contents":"property debug : false\nproperty currentVolume : null\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\nrepeat\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n end try\n repeat\n delay 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n delay 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n delay 0.3\nend repeat\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"142eef3022d96040f3c5b2c53632bf532eb41992","subject":"Need to make this example more generic.","message":"Need to make this example more generic.\n","repos":"WoLpH\/celery,frac\/celery,mitsuhiko\/celery,WoLpH\/celery,ask\/celery,mitsuhiko\/celery,cbrepo\/celery,cbrepo\/celery,ask\/celery,frac\/celery","old_file":"contrib\/mac\/watch-workers.applescript","new_file":"contrib\/mac\/watch-workers.applescript","new_contents":"set broker to \"h8.opera.com\"\nset workers to {\"h6.opera.com\", \"h8.opera.com\", \"h9.opera.com\", \"h10.opera.com\"}\ntell application \"iTerm\"\n activate\n set myterm to (make new terminal)\n tell myterm\n set number of columns to 80\n set number of rows to 50\n repeat with workerhost in workers\n set worker to (make new session at the end of sessions)\n tell worker\n set name to workerhost\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & workerhost & \" 'tail -f \/var\/log\/celeryd.log'\"\n end tell\n end repeat\n set rabbit to (make new session at the end of sessions)\n tell rabbit\n set name to \"rabbit.log\"\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & broker & \" 'tail -f \/var\/log\/rabbitmq\/rabbit.log'\"\n end tell\n tell the first session\n activate\n end tell\n end tell\nend tell\n","old_contents":"set broker to \"h8.opera.com\"\nset workers to {\"h8.opera.com\", \"h9.opera.com\", \"h10.opera.com\"}\ntell application \"iTerm\"\n activate\n set myterm to (make new terminal)\n tell myterm\n set number of columns to 80\n set number of rows to 50\n repeat with workerhost in workers\n set worker to (make new session at the end of sessions)\n tell worker\n set name to workerhost\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & workerhost & \" 'tail -f \/var\/log\/celeryd.log'\"\n end tell\n end repeat\n set rabbit to (make new session at the end of sessions)\n tell rabbit\n set name to \"rabbit.log\"\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & broker & \" 'tail -f \/var\/log\/rabbitmq\/rabbit.log'\"\n end tell\n tell the first session\n activate\n end tell\n end tell\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7db80129c1106a77994f41936488c61d66e15307","subject":"fix to compile htcLib into Compiled folder","message":"fix to compile htcLib into Compiled folder\n","repos":"NYHTC\/applescript-fm-helper","old_file":"main_helper.applescript","new_file":"main_helper.applescript","new_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a folder of compiled .scpt files, then builds the htcLib app to reference those compiled scripts.\n\n\n(* HISTORY:\n\t2019-12-10 ( dshockley ): Changed to COMPILE each handler, then also compile htcLib into the same folder.\n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\nproperty debugMode : true\n\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\n\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty compiledFolderName : \"CompiledHandlers\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\tset shouldBuildAPP to true\n\tif showDialogs then\n\t\tdisplay dialog \"Build (or rebuild\/replace) the htcLib?\" buttons {\"Cancel\", \"Only Scripts\", \"App & Scripts\"} default button \"App & Scripts\"\n\t\tif button returned of result is \"Only Scripts\" then\n\t\t\tset shouldBuildAPP to false\n\t\tend if\n\tend if\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t-- substrings for parsing sub-handler code:\n\tset subStr_handlerProperties to \"property debugMode: false\" & LF & \"property ScriptName: \\\"\" & appName & \"\\\"\" & LF\n\tset subStr_beforeHandlerName to LF & \"on \"\n\tset subStr_beforeHandlerParams to \"(\"\n\tset subStr_endPrefixHandler to LF & \"end \"\n\t\n\tset subStr_templateHandlerWrapperCode to \n\t\t\"\ttell application \\\"Finder\\\" to set handlerPath to \" & \n\t\t\"((container of (path to me)) as text) & \\\"###HANDLER_NAME###\\\" & \\\".scpt\\\"\" & LF & \n\t\t\"\ttell (load script alias handlerPath) to return ###HANDLER_CALL###\"\n\t\n\tset subStr_special_clickAtCoords_InternalCode_InsertAfter to (ASCII character 9) & \"try\" & LF\n\tset subStr_special_clickAtCoords_InternalCode_ToAdd to \n\t\t\"tell application \\\"Finder\\\" to set clickCommandPosix to POSIX path of (((container of container of (path to me)) as string) & \\\"vendor:cliclick:cliclick\\\")\" & LF\n\t\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathLibrary to pathRoot & folderName_library\n\tset pathCompiledFolder to pathRoot & compiledFolderName & \":\"\n\tset pathApp to pathCompiledFolder & appName & appExtension\n\t\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\t\n\t\n\t-- loop over each sub-directory, compiling each handler and adding to htcLib APP code:\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset codeOneHandler to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset codeOneHandler to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerCall to getTextBetween({codeOneHandler, subStr_beforeHandlerName, LF})\n\t\t\t\t\tif handlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\tset handlerName to getTextBefore(handlerCall, \"(\")\n\t\t\t\t\telse\n\t\t\t\t\t\tset handlerName to handlerCall\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif handlerName is \"clickAtCoords\" then\n\t\t\t\t\t\t-- SPECIAL MODIFICATION to bring a \"property\" into the actual handler code. \n\t\t\t\t\t\tset codeOneHandler to my replaceSimple({codeOneHandler, subStr_special_clickAtCoords_InternalCode_InsertAfter, subStr_special_clickAtCoords_InternalCode_InsertAfter & subStr_special_clickAtCoords_InternalCode_ToAdd})\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif shouldBuildAPP then\n\t\t\t\t\t\t-- APPEND TO APP: now append to htcLib APP code:\n\t\t\t\t\t\t\n\t\t\t\t\t\tset handlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", handlerName}), \"###HANDLER_CALL###\", handlerCall})\n\t\t\t\t\t\tset codeHandlerWrapper to subStr_beforeHandlerName & handlerCall & LF & handlerInternalCode & subStr_endPrefixHandler & handlerName & LF\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\t\tset tempCode to tempCode & codeHandlerWrapper\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- SUBHANDLERS: process each sub-handler this handler depends upon:\n\t\t\t\t\t\n\t\t\t\t\tset codeSubHandlers to getTextAfter(oneFileRawCode, codeEnd)\n\t\t\t\t\t\n\t\t\t\t\t-- trim the Handler code now (NOT above, since it needs the leading linefeed before the handler call):\t\t\t\n\t\t\t\t\tset codeOneHandler to trimWhitespace(codeOneHandler)\n\t\t\t\t\t\n\t\t\t\t\tset codeHandlerWithNewSubCalls to subStr_handlerProperties & codeOneHandler\n\t\t\t\t\trepeat while codeSubHandlers contains subStr_beforeHandlerName\n\t\t\t\t\t\tset skipThisSubhandler to false\n\t\t\t\t\t\tset oneSubhandlerCall to getTextBetween({codeSubHandlers, subStr_beforeHandlerName, LF})\n\t\t\t\t\t\tif oneSubhandlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\t\tset oneSubhandlerName to getTextBefore(oneSubhandlerCall, \"(\")\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset oneSubhandlerName to oneSubhandlerCall\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif oneSubhandlerName is \"coerceToString\" then\n\t\t\t\t\t\t\tif codeOneHandler does not contain \"coerceToString\" then\n\t\t\t\t\t\t\t\t-- the coerceToString was NOT used in the main handler, so we don't actually NEED it:\n\t\t\t\t\t\t\t\t-- so SKIP this:\n\t\t\t\t\t\t\t\tset skipThisSubhandler to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif not skipThisSubhandler then\n\t\t\t\t\t\t\t-- we DO need this subhandler, so reformat it:\n\t\t\t\t\t\t\tset subHandlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", oneSubhandlerName}), \"###HANDLER_CALL###\", oneSubhandlerCall})\n\t\t\t\t\t\t\tset oneSubHandlerCode to subStr_beforeHandlerName & oneSubhandlerCall & LF & subHandlerInternalCode & subStr_endPrefixHandler & oneSubhandlerName & LF\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset codeHandlerWithNewSubCalls to codeHandlerWithNewSubCalls & LF & oneSubHandlerCode\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeSubHandlers to getTextAfter(codeSubHandlers, subStr_endPrefixHandler & oneSubhandlerName)\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- write the modified code into a temporary file:\n\t\t\t\t\ttry\n\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\tend try\n\t\t\t\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\t\t\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t\t\t\twrite codeHandlerWithNewSubCalls to fileRef\n\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\n\t\t\t\t\t-- COMPILE the temporary file to the desired destination:\n\t\t\t\t\tset compiledFileName to replaceSimple({oneFileName, \".applescript\", \".scpt\"})\n\t\t\t\t\tset pathCompiled to (pathCompiledFolder & compiledFileName)\n\t\t\t\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathCompiled & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\tif shouldBuildAPP then\n\t\t-- prepend code with documentation\n\t\tset docCode to \"-- main script\"\n\t\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\t\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" to after making changes in any .applescript file and after each git pull.\"\n\t\tset docCode to docCode & LF & \"-- Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"property DebugMode : \" & debugMode\n\t\tset docCode to docCode & LF & \"property ScriptName : \\\"\" & appName & \"\\\"\"\n\t\tset docCode to docCode & LF & \"property clickCommandPosix : POSIX path of (((path to home folder) as string)) & \\\"Code\/applescript-fm-helper\/vendor\/cliclick\/cliclick\\\"\"\n\t\t\n\t\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\t\n\t\t\n\t\t-- create a temp file of all libaries, then create a compiled version of it.\n\t\t--\tdo shell script \"echo \" & quoted form of tempCode & \" > \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\ttry\n\t\t\tclose access fileRef\n\t\tend try\n\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t--> now write the flag\n\t\t--\twrite ((ASCII character 239) & (ASCII character 187) & (ASCII character 191)) to fileRef --> not as class utf8\n\t\t--> now write the data\n\t\twrite tempCode to fileRef\n\t\tclose access fileRef\n\t\t\n\t\t\n\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\t\tdo shell script \"pwd\"\n\t\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\t\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\t\n\t\t\n\t\tset appExists to false\n\t\ttell application \"Finder\"\n\t\t\tif exists pathApp then set appExists to true\n\t\tend tell\n\t\t\n\t\t\n\t\t--quit the pre-existing app\n\t\tif appExists then\n\t\t\ttell application appName to quit\n\t\tend if\n\t\t\n\t\t-- remove pre-existing app file\n\t\ttell application \"Finder\"\n\t\t\tif appExists then delete file pathApp\n\t\tend tell\n\t\t\n\t\t-- now make it into an app\n\t\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\t\n\t\tif showDialogs then\n\t\t\ttell it to activate\n\t\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\t\n\t\t\t\n\t\t\t-- navigate to security preference pane\n\t\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Preferences\" to activate\n\t\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- unlock if needed\n\t\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the \" & appName & \" checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tset visible to false\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttell me to activate\n\t\t\t\tdisplay dialog appName & \" is ready\" buttons \"OK\" default button \"OK\"\n\t\t\tend if\n\t\t\treturn true\n\t\telse\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\tend if -- should build APP.\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n\n\n\n\non getTextAfter(sourceTEXT, afterThis)\n\t-- version 1.2\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {afterThis}}\n\t\t\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\t-- the split-string didn't appear at all\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the resultAsList to text items 2 thru -1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to {afterThis}\n\t\tset finalResult to resultAsList as string\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextAfter\n\non getTextBefore(sourceTEXT, stopHere)\n\t-- version 1.1\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, stopHere}\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the finalResult to text item 1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextBefore\n\n\non replaceSimple(prefs)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {considerCase:true}\n\t\n\tif class of prefs is list then\n\t\tif (count of prefs) is greater than 3 then\n\t\t\t-- get any parameters after the initial 3\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\telse\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\tend if\n\t\t\n\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\n\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\n\tend if\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\t\n\tset considerCase to considerCase of prefs\n\tset sourceTEXT to sourceTEXT of prefs\n\tset oldChars to oldChars of prefs\n\tset newChars to newChars of prefs\n\t\n\tset sourceTEXT to sourceTEXT as string\n\t\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to the oldChars\n\tif considerCase then\n\t\tconsidering case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend considering\n\telse\n\t\tignoring case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend ignoring\n\tend if\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newText\n\t\nend replaceSimple\n","old_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a folder of compiled .scpt files, then builds the htcLib app to reference those compiled scripts.\n\n\n(* HISTORY:\n\t2019-12-06 ( dshockley ): Changed to COMPILE each handler, then also compile htcLib into the same folder.\n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\nproperty debugMode : true\n\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\n\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty compiledFolderName : \"CompiledHandlers\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\tset shouldBuildAPP to true\n\tif showDialogs then\n\t\tdisplay dialog \"Build (or rebuild\/replace) the htcLib?\" buttons {\"Cancel\", \"Only Scripts\", \"App & Scripts\"} default button \"App & Scripts\"\n\t\tif button returned of result is \"Only Scripts\" then\n\t\t\tset shouldBuildAPP to false\n\t\tend if\n\tend if\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t-- substrings for parsing sub-handler code:\n\tset subStr_handlerProperties to \"property debugMode: false\" & LF & \"property ScriptName: \\\"\" & appName & \"\\\"\" & LF\n\tset subStr_beforeHandlerName to LF & \"on \"\n\tset subStr_beforeHandlerParams to \"(\"\n\tset subStr_endPrefixHandler to LF & \"end \"\n\t\n\tset subStr_templateHandlerWrapperCode to \n\t\t\"\ttell application \\\"Finder\\\" to set handlerPath to \" & \n\t\t\"((container of (path to me)) as text) & \\\"###HANDLER_NAME###\\\" & \\\".scpt\\\"\" & LF & \n\t\t\"\ttell (load script alias handlerPath) to return ###HANDLER_CALL###\"\n\t\n\tset subStr_special_clickAtCoords_InternalCode_InsertAfter to (ASCII character 9) & \"try\" & LF\n\tset subStr_special_clickAtCoords_InternalCode_ToAdd to \n\t\t\"tell application \\\"Finder\\\" to set clickCommandPosix to POSIX path of (((container of container of (path to me)) as string) & \\\"vendor:cliclick:cliclick\\\")\" & LF\n\t\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathApp to pathRoot & appName & appExtension\n\tset pathLibrary to pathRoot & folderName_library\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\tset pathFunctionLib to pathRoot & compiledFolderName & \":\"\n\t\n\t\n\t-- loop over each sub-directory, compiling each handler and adding to htcLib APP code:\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset codeOneHandler to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset codeOneHandler to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tset handlerCall to getTextBetween({codeOneHandler, subStr_beforeHandlerName, LF})\n\t\t\t\t\tif handlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\tset handlerName to getTextBefore(handlerCall, \"(\")\n\t\t\t\t\telse\n\t\t\t\t\t\tset handlerName to handlerCall\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif handlerName is \"clickAtCoords\" then\n\t\t\t\t\t\t-- SPECIAL MODIFICATION to bring a \"property\" into the actual handler code. \n\t\t\t\t\t\tset codeOneHandler to my replaceSimple({codeOneHandler, subStr_special_clickAtCoords_InternalCode_InsertAfter, subStr_special_clickAtCoords_InternalCode_InsertAfter & subStr_special_clickAtCoords_InternalCode_ToAdd})\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif shouldBuildAPP then\n\t\t\t\t\t\t-- APPEND TO APP: now append to htcLib APP code:\n\t\t\t\t\t\t\n\t\t\t\t\t\tset handlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", compiledFolderName & \":\" & handlerName}), \"###HANDLER_CALL###\", handlerCall})\n\t\t\t\t\t\tset codeHandlerWrapper to subStr_beforeHandlerName & handlerCall & LF & handlerInternalCode & subStr_endPrefixHandler & handlerName & LF\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\t\tset tempCode to tempCode & codeHandlerWrapper\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- SUBHANDLERS: process each sub-handler this handler depends upon:\n\t\t\t\t\t\n\t\t\t\t\tset codeSubHandlers to getTextAfter(oneFileRawCode, codeEnd)\n\t\t\t\t\t\n\t\t\t\t\t-- trim the Handler code now (NOT above, since it needs the leading linefeed before the handler call):\t\t\t\n\t\t\t\t\tset codeOneHandler to trimWhitespace(codeOneHandler)\n\t\t\t\t\t\n\t\t\t\t\tset codeHandlerWithNewSubCalls to subStr_handlerProperties & codeOneHandler\n\t\t\t\t\trepeat while codeSubHandlers contains subStr_beforeHandlerName\n\t\t\t\t\t\tset skipThisSubhandler to false\n\t\t\t\t\t\tset oneSubhandlerCall to getTextBetween({codeSubHandlers, subStr_beforeHandlerName, LF})\n\t\t\t\t\t\tif oneSubhandlerCall contains subStr_beforeHandlerParams then\n\t\t\t\t\t\t\tset oneSubhandlerName to getTextBefore(oneSubhandlerCall, \"(\")\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset oneSubhandlerName to oneSubhandlerCall\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif oneSubhandlerName is \"coerceToString\" then\n\t\t\t\t\t\t\tif codeOneHandler does not contain \"coerceToString\" then\n\t\t\t\t\t\t\t\t-- the coerceToString was NOT used in the main handler, so we don't actually NEED it:\n\t\t\t\t\t\t\t\t-- so SKIP this:\n\t\t\t\t\t\t\t\tset skipThisSubhandler to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tif not skipThisSubhandler then\n\t\t\t\t\t\t\t-- we DO need this subhandler, so reformat it:\n\t\t\t\t\t\t\tset subHandlerInternalCode to replaceSimple({replaceSimple({subStr_templateHandlerWrapperCode, \"###HANDLER_NAME###\", oneSubhandlerName}), \"###HANDLER_CALL###\", oneSubhandlerCall})\n\t\t\t\t\t\t\tset oneSubHandlerCode to subStr_beforeHandlerName & oneSubhandlerCall & LF & subHandlerInternalCode & subStr_endPrefixHandler & oneSubhandlerName & LF\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset codeHandlerWithNewSubCalls to codeHandlerWithNewSubCalls & LF & oneSubHandlerCode\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tset codeSubHandlers to getTextAfter(codeSubHandlers, subStr_endPrefixHandler & oneSubhandlerName)\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- write the modified code into a temporary file:\n\t\t\t\t\ttry\n\t\t\t\t\t\tclose access fileRef\n\t\t\t\t\tend try\n\t\t\t\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\t\t\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t\t\t\twrite codeHandlerWithNewSubCalls to fileRef\n\t\t\t\t\tclose access fileRef\n\t\t\t\t\t\n\t\t\t\t\t-- COMPILE the temporary file to the desired destination:\n\t\t\t\t\tset compiledFileName to replaceSimple({oneFileName, \".applescript\", \".scpt\"})\n\t\t\t\t\tset pathCompiled to (pathFunctionLib & compiledFileName)\n\t\t\t\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathCompiled & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\tif shouldBuildAPP then\n\t\t-- prepend code with documentation\n\t\tset docCode to \"-- main script\"\n\t\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\t\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" to after making changes in any .applescript file and after each git pull.\"\n\t\tset docCode to docCode & LF & \"-- Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\"\n\t\tset docCode to docCode & LF\n\t\tset docCode to docCode & LF & \"property DebugMode : \" & debugMode\n\t\tset docCode to docCode & LF & \"property ScriptName : \\\"\" & appName & \"\\\"\"\n\t\tset docCode to docCode & LF & \"property clickCommandPosix : POSIX path of (((path to home folder) as string)) & \\\"Code\/applescript-fm-helper\/vendor\/cliclick\/cliclick\\\"\"\n\t\t\n\t\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\t\n\t\t\n\t\t-- create a temp file of all libaries, then create a compiled version of it.\n\t\t--\tdo shell script \"echo \" & quoted form of tempCode & \" > \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\ttry\n\t\t\tclose access fileRef\n\t\tend try\n\t\tset fileRef to (open for access file pathTempCode with write permission)\n\t\tset eof of fileRef to 0 --> empty file contents if needed\n\t\t--> now write the flag\n\t\t--\twrite ((ASCII character 239) & (ASCII character 187) & (ASCII character 191)) to fileRef --> not as class utf8\n\t\t--> now write the data\n\t\twrite tempCode to fileRef\n\t\tclose access fileRef\n\t\t\n\t\t\n\t\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\t\tdo shell script \"pwd\"\n\t\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\t\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\t\n\t\t\n\t\tset appExists to false\n\t\ttell application \"Finder\"\n\t\t\tif exists pathApp then set appExists to true\n\t\tend tell\n\t\t\n\t\t\n\t\t--quit the pre-existing app\n\t\tif appExists then\n\t\t\ttell application appName to quit\n\t\tend if\n\t\t\n\t\t-- remove pre-existing app file\n\t\ttell application \"Finder\"\n\t\t\tif appExists then delete file pathApp\n\t\tend tell\n\t\t\n\t\t-- now make it into an app\n\t\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\t\n\t\t\n\t\tif showDialogs then\n\t\t\ttell it to activate\n\t\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\t\n\t\t\t\n\t\t\t-- navigate to security preference pane\n\t\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Preferences\" to activate\n\t\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- unlock if needed\n\t\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the HtcLib checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tset visible to false\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttell me to activate\n\t\t\t\tdisplay dialog \"HtcLib is ready\" buttons \"OK\" default button \"OK\"\n\t\t\tend if\n\t\t\treturn true\n\t\telse\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\tend if -- should build APP.\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n\n\n\n\non getTextAfter(sourceTEXT, afterThis)\n\t-- version 1.2\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {afterThis}}\n\t\t\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\t-- the split-string didn't appear at all\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the resultAsList to text items 2 thru -1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to {afterThis}\n\t\tset finalResult to resultAsList as string\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextAfter\n\non getTextBefore(sourceTEXT, stopHere)\n\t-- version 1.1\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, stopHere}\n\t\tif (count of text items of sourceTEXT) is 1 then\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn \"\"\n\t\telse\n\t\t\tset the finalResult to text item 1 of sourceTEXT\n\t\tend if\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn finalResult\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\treturn \"\" -- return nothing if the stop text is not found\n\tend try\nend getTextBefore\n\n\non replaceSimple(prefs)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {considerCase:true}\n\t\n\tif class of prefs is list then\n\t\tif (count of prefs) is greater than 3 then\n\t\t\t-- get any parameters after the initial 3\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\telse\n\t\t\tset prefs to {sourceTEXT:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\tend if\n\t\t\n\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\n\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\n\tend if\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\t\n\tset considerCase to considerCase of prefs\n\tset sourceTEXT to sourceTEXT of prefs\n\tset oldChars to oldChars of prefs\n\tset newChars to newChars of prefs\n\t\n\tset sourceTEXT to sourceTEXT as string\n\t\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to the oldChars\n\tif considerCase then\n\t\tconsidering case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend considering\n\telse\n\t\tignoring case\n\t\t\tset the parsedList to every text item of sourceTEXT\n\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\tset the newText to the parsedList as string\n\t\tend ignoring\n\tend if\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newText\n\t\nend replaceSimple\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"27e57aad6c720ec478c595d5ca6697aa9583fd21","subject":"fiddle with where the padding spaces are added","message":"fiddle with where the padding spaces are added\n","repos":"brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen","old_file":"AppleScript\/Mail-CreateOutgoingMessage.applescript","new_file":"AppleScript\/Mail-CreateOutgoingMessage.applescript","new_contents":"-- This script grabs the current article in NetNewsWire and copies relevant information about it \n-- to a new outgoing message in Mail\n-- the intended use is that the user wants to send email about the current article, and \n-- would fill in the recipient and then send the message\n\n-- sometimes, an article has contents, and sometimes it has html contents\n-- this function getContentsOrHtml() gets the contents as text, despite the representation\n-- first it checks to see if there are plain text contents\n-- if not, it looks for html contents, and converts those to plain text using a shell script that invokes textutil\n-- if it can't find either plain text or html, it returns \"couldn't find article text\"\nto getContentsOrHtml()\n\ttell application \"NetNewsWire\"\n\t\tset textContents to the contents of the current article\n\t\tif textContents is not \"\" then\n\t\t\treturn textContents\n\t\telse\n\t\t\tset htmlContents to html of the current article\n\t\t\tif htmlContents is not \"\" then\n\t\t\t\tset shellScript to \" echo '\" & htmlContents & \"' | \/usr\/bin\/textutil -stdin -stdout -format html -convert txt\"\n\t\t\t\tset pureText to do shell script shellScript\n\t\t\t\treturn pureText\n\t\t\tend if\n\t\tend if\n\tend tell\n\treturn \"couldn't find article text\"\nend getContentsOrHtml\n\n\n-- given a list of author names, generate a happily formatted list like \"Jean MacDonald and James Dempsey\"\n-- if the list is more than two names, use Oxford comma structure: \"Brent Simmons, Jean MacDonald, and James Dempsey\"\n\nto formatListOfNames(listOfNames)\n\tset c to count listOfNames\n\tif c is 1 then\n\t\tset formattedList to item 1 of listOfNames\n\telse if c is 2 then\n\t\tset formattedList to item 1 of listOfNames & \" and \" & item 2 of listOfNames\n\telse\n\t\tset frontOfList to items 1 thru (c - 1) of listOfNames\n\t\tset lastName to item c of listOfNames\n\t\tset tid to AppleScript's text item delimiters\n\t\tset AppleScript's text item delimiters to \", \"\n\t\tset t1 to frontOfList as text\n\t\tset formattedList to t1 & \", and \" & lastName\n\t\tset AppleScript's text item delimiters to tid\n\tend if\n\treturn formattedList\nend formatListOfNames\n\n\n-- sometimes, an article has an author, sometimes it has more than one, sometimes there's no author\n-- this function getAuthorStub() returns a string like \" from Jean MacDonald \" that can be used in crafting a message\n-- about the current article. If there are no authors, it just returns a single space.\nto getAuthorStub(authorNames)\n\ttry\n\t\tif ((count authorNames) is greater than 0) then\n\t\t\treturn \" from \" & formatListOfNames(authorNames) & \" \"\n\t\tend if\n\tend try\n\treturn \" \"\nend getAuthorStub\n\n\n\n-- Here's where the script starts\n\n-- first, get some relevant info out for NetNewsWire\ntell application \"NetNewsWire\"\n\tset articleUrl to the url of the current article\n\tset articleTitle to the title of the current article\n\tset authorNames to name of authors of the current article\nend tell\n\n\n-- then, prepare the message subject and message contents\nset messageSubject to \"From NetNewsWire to you: \" & articleTitle\nset myIntro to \"Here's something\" & getAuthorStub(authorNames) & \"that I was reading on NetNewsWire: \"\nset messageContents to myIntro & return & return & articleUrl & return & return & getContentsOrHtml()\n\n\n-- lastly, make a new outgoing message in Mail with the given subject and contents\ntell application \"Mail\"\n\tset m1 to make new outgoing message with properties {subject:messageSubject}\n\tset content of m1 to messageContents\nend tell","old_contents":"-- This script grabs the current article in NetNewsWire and copies relevant information about it \n-- to a new outgoing message in Mail\n-- the intended use is that the user wants to send email about the current article, and \n-- would fill in the recipient and then send the message\n\n-- sometimes, an article has contents, and sometimes it has html contents\n-- this function getContentsOrHtml() gets the contents as text, despite the representation\n-- first it checks to see if there are plain text contents\n-- if not, it looks for html contents, and converts those to plain text using a shell script that invokes textutil\n-- if it can't find either plain text or html, it returns \"couldn't find article text\"\nto getContentsOrHtml()\n\ttell application \"NetNewsWire\"\n\t\tset textContents to the contents of the current article\n\t\tif textContents is not \"\" then\n\t\t\treturn textContents\n\t\telse\n\t\t\tset htmlContents to html of the current article\n\t\t\tif htmlContents is not \"\" then\n\t\t\t\tset shellScript to \" echo '\" & htmlContents & \"' | \/usr\/bin\/textutil -stdin -stdout -format html -convert txt\"\n\t\t\t\tset pureText to do shell script shellScript\n\t\t\t\treturn pureText\n\t\t\tend if\n\t\tend if\n\tend tell\n\treturn \"couldn't find article text\"\nend getContentsOrHtml\n\n\n-- given a list of author names, generate a happily formatted list like \"Jean MacDonald and James Dempsey\"\n-- if the list is more than two names, use Oxford comma structure: \"Brent Simmons, Jean MacDonald, and James Dempsey\"\n-- the returned string is padded by spaces on both sides\n\nto formatListOfNames(listOfNames)\n\tset c to count listOfNames\n\tif c is 1 then\n\t\tset formattedList to item 1 of listOfNames\n\telse if c is 2 then\n\t\tset formattedList to item 1 of listOfNames & \" and \" & item 2 of listOfNames\n\telse\n\t\tset frontOfList to items 1 thru (c - 1) of listOfNames\n\t\tset lastName to item c of listOfNames\n\t\tset tid to AppleScript's text item delimiters\n\t\tset AppleScript's text item delimiters to \", \"\n\t\tset t1 to frontOfList as text\n\t\tset formattedList to t1 & \", and \" & lastName\n\t\tset AppleScript's text item delimiters to tid\n\tend if\n\treturn \" from \" & formattedList & \" \"\nend formatListOfNames\n\n\n-- sometimes, an article has an author, sometimes it has more than one, sometimes there's no author\n-- this function getAuthorStub() returns a string like \" by Kaya Thomas \" that can be used in crafting a message\n-- about the current article. If there are no authors, it just returns a single space.\nto getAuthorStub(authorNames)\n\ttry\n\t\tif ((count authorNames) is greater than 0) then\n\t\t\treturn formatListOfNames(authorNames)\n\t\tend if\n\tend try\n\treturn \" \"\nend getAuthorStub\n\n\n\n-- Here's where the script starts\n\n-- first, get some relevant info out for NetNewsWire\ntell application \"NetNewsWire\"\n\tset articleUrl to the url of the current article\n\tset articleTitle to the title of the current article\n\tset authorNames to name of authors of the current article\nend tell\n\n\n-- then, prepare the message subject and message contents\nset messageSubject to \"From NetNewsWire to you: \" & articleTitle\nset myIntro to \"Here's something\" & getAuthorStub(authorNames) & \"that I was reading on NetNewsWire: \"\nset messageContents to myIntro & return & return & articleUrl & return & return & getContentsOrHtml()\n\n\n-- lastly, make a new outgoing message in Mail with the given subject and contents\ntell application \"Mail\"\n\tset m1 to make new outgoing message with properties {subject:messageSubject}\n\tset content of m1 to messageContents\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"68e6bc63ade12431f3615b3a39119b21d341be1b","subject":"TAB to Space","message":"TAB to Space\n","repos":"JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits","old_file":"FetchLyric\/FetchLyric.applescript","new_file":"FetchLyric\/FetchLyric.applescript","new_contents":"-\u0000-\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\n\u0000-\u0000-\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000QS_MR\t-Nvfv\ua068R\u000bN}v^OX[Lk\u034b\fLk\u034b]X[(W\u0006\\_eu\f\/e\u0001cG\u0000r\u0000o\u0000w\u0000l\u0000\u001aw\n\u0000-\u0000-\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\n\u0000-\u0000-\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0000\n\u0000-\u0000-\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0000\n\u0000-\u0000-\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000:\u0000 \u0000\"\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000 \u0000:\u0000 \u0000\"\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000:\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000 \u0000:\u0000 \u0000{\u0000\"\u0000Lk\u034b]X[(W\fe\u0000QS\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS\u0010bR\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS1Y%\u00020\"\u0000,\u0000 \u0000\"\u0000*g\tbLkf\u00020\"\u0000}\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000 \u0000:\u0000 \u00001\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000 \u0000:\u0000 \u00002\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000 \u0000:\u0000 \u00003\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000 \u0000:\u0000 \u00004\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000(\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000)\u0000)\u0000 \u0000>\u0000 \u00000\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000o\u0000n\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000=\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000\"\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000-\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000 \u0000a\u0000s\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000-\u0000-\u0000 \u0000\u001d\\\u054bO(uLkf\u0001\\b\\O:NG\u0000r\u0000o\u0000w\u0000l\u0000V\u0007hQ\u0019\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000{\u0000}\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000\"\u0000\"\u0000,\u0000 \u0000\"\u0000\"\u0000,\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000k\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u00001\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000-\u0000-\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000<\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000-\u0000-\u0000 \u0000S\tgS_Lkf-N*gX[(WLk\u034beMb\u001d\\\u054bSLk\u034b\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000&\u0000 \u0000\"\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000>\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000-\u0000-\u0000 \u0000Lk\u034b\u0010bRS\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000e\u0000l\u0000s\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u0000i\u0000 \u0000+\u0000 \u00001\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000i\u0000 \u0000>\u0000 \u0000k\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000-\u0000-\u0000 \u0000YgG\u0000r\u0000o\u0000w\u0000l\u0000*g\u040fL\u0019R>f:y[\u074bFh\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000&\u0000 \u0000\"\u0000Lk\u034bS~_g\u0001\"\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000nx[\"\u0000}\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u00001\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u00001\u0000 \u0000g\u0000i\u0000v\u0000i\u0000n\u0000g\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u00005\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000","old_contents":"-\u0000-\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\n\u0000-\u0000-\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000QS_MR\t-Nvfv\ua068R\u000bN}v^OX[Lk\u034b\fLk\u034b]X[(W\u0006\\_eu\f\/e\u0001cG\u0000r\u0000o\u0000w\u0000l\u0000\u001aw\n\u0000-\u0000-\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\n\u0000-\u0000-\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0000\n\u0000-\u0000-\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0000\n\u0000-\u0000-\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000:\u0000 \u0000\"\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000 \u0000:\u0000 \u0000\"\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000:\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000 \u0000:\u0000 \u0000{\u0000\"\u0000Lk\u034b]X[(W\fe\u0000QS\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS\u0010bR\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS1Y%\u00020\"\u0000,\u0000 \u0000\"\u0000*g\tbLkf\u00020\"\u0000}\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000 \u0000:\u0000 \u00001\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000 \u0000:\u0000 \u00002\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000 \u0000:\u0000 \u00003\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000 \u0000:\u0000 \u00004\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000(\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000)\u0000)\u0000 \u0000>\u0000 \u00000\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000\n\u0000\t\u0000o\u0000n\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000=\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000-\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000 \u0000a\u0000s\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000c\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000n\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000\u001d\\\u054bO(uLkf\u0001\\b\\O:NG\u0000r\u0000o\u0000w\u0000l\u0000V\u0007hQ\u0019\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000{\u0000}\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000\"\u0000\"\u0000,\u0000 \u0000\"\u0000\"\u0000,\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000)\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000k\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u00001\u0000\n\u0000\t\u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000<\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000S\tgS_Lkf-N*gX[(WLk\u034beMb\u001d\\\u054bSLk\u034b\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000&\u0000 \u0000\"\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000>\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000Lk\u034b\u0010bRS\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000e\u0000l\u0000s\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u0000i\u0000 \u0000+\u0000 \u00001\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000 \u0000>\u0000 \u0000k\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000-\u0000-\u0000 \u0000YgG\u0000r\u0000o\u0000w\u0000l\u0000*g\u040fL\u0019R>f:y[\u074bFh\n\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000&\u0000 \u0000\"\u0000Lk\u034bS~_g\u0001\"\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000nx[\"\u0000}\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u00001\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u00001\u0000 \u0000g\u0000i\u0000v\u0000i\u0000n\u0000g\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u00005\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"244fae96404c15c168d5d79768dc1bbe854b6828","subject":"Update halt_vagrant.applescript","message":"Update halt_vagrant.applescript\n","repos":"smathson\/dotfiles","old_file":"applescripts\/halt_vagrant.applescript","new_file":"applescripts\/halt_vagrant.applescript","new_contents":"set close_ubervu_vagrant to \"cd ~\/uberVU\/puppet\/hs_analytics_vagrant; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_ubervu_vagrant\n\tend tell\nend tell\n","old_contents":"set close_ubervu_vagrant to \"cd ~\/uberVU\/puppet; vagrant halt -f;\"\nset close_hs_vagrant to \"cd ~\/hootsuite\/dash-board; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_ubervu_vagrant\n\t\twrite text close_hs_vagrant\n\tend tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2add2e22e5bff60f64866ef20364cad72dedfe13","subject":"Fixed for any version of alfred","message":"Fixed for any version of alfred\n\nFixed for any version of alfred","repos":"deanishe\/alfred-similar-image-search","old_file":"src\/call_with_finder_selection.applescript","new_file":"src\/call_with_finder_selection.applescript","new_contents":"(*\n\tGet images in Finder selection, then call the workflow again with\n\tthe first selected image.\n\n\tIf no images are selected, return an error message, which\n\tcan be passed to a Post Notification action.\n*)\n\n-- The filetypes understood by Google Image Search\nset imageExtensions to {\"jpg\", \"jpeg\", \"bmp\", \"gif\", \"png\"}\n\n-- Return list of files selected in Finder whose extensions are\n-- in imageExtensions\non selectedImages()\n\tset theImages to {}\n\ttell application \"Finder\"\n\t\tset theSelection to the selection\n\t\tif (the count of theSelection) is greater than 0 then\n\t\t\trepeat with theFile in theSelection\n\t\t\t\tif the name extension of theFile is in my imageExtensions then\n\t\t\t\t\tset the end of theImages to (theFile as alias)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\t\tlog ((the count of theImages) as text) & \" image(s) selected\"\n\tend tell\n\treturn theImages\nend selectedImages\n\nset theImages to my selectedImages()\nif (count of theImages) is greater than 0 then\n\tset theImage to item 1 of theImages\n\tset thePath to POSIX path of theImage\n\n\t-- Use the workflow's own external trigger\n\ttell application id \"com.runningwithcrayons.Alfred\" to run trigger \"Find Similar Images\" in workflow \"net.deanishe.alfred-google-similar-images\" with argument thePath\nelse\n\treturn \"No images selected\"\nend if\n","old_contents":"(*\n\tGet images in Finder selection, then call the workflow again with\n\tthe first selected image.\n\n\tIf no images are selected, return an error message, which\n\tcan be passed to a Post Notification action.\n*)\n\n-- The filetypes understood by Google Image Search\nset imageExtensions to {\"jpg\", \"jpeg\", \"bmp\", \"gif\", \"png\"}\n\n-- Return list of files selected in Finder whose extensions are\n-- in imageExtensions\non selectedImages()\n\tset theImages to {}\n\ttell application \"Finder\"\n\t\tset theSelection to the selection\n\t\tif (the count of theSelection) is greater than 0 then\n\t\t\trepeat with theFile in theSelection\n\t\t\t\tif the name extension of theFile is in my imageExtensions then\n\t\t\t\t\tset the end of theImages to (theFile as alias)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\t\tlog ((the count of theImages) as text) & \" image(s) selected\"\n\tend tell\n\treturn theImages\nend selectedImages\n\nset theImages to my selectedImages()\nif (count of theImages) is greater than 0 then\n\tset theImage to item 1 of theImages\n\tset thePath to POSIX path of theImage\n\n\t-- Use the workflow's own external trigger\n\ttell application \"Alfred 4\" to run trigger \"Find Similar Images\" in workflow \"net.deanishe.alfred-google-similar-images\" with argument thePath\nelse\n\treturn \"No images selected\"\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9c5d2481b023df7654f05d567d7891335681cbfb","subject":"INTEGRATION: CWS changefileheader (1.3.160); FILE MERGED 2008\/03\/31 16:04:19 rt 1.3.160.1: #i87441# Change license header to LPGL v3.","message":"INTEGRATION: CWS changefileheader (1.3.160); FILE MERGED\n2008\/03\/31 16:04:19 rt 1.3.160.1: #i87441# Change license header to LPGL v3.\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/PostInstall.applescript","new_file":"instsetoo_native\/macosx\/application\/PostInstall.applescript","new_contents":"(*************************************************************************\n *\n * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.\n * \n * Copyright 2008 by Sun Microsystems, Inc.\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: PostInstall.applescript,v $\n * $Revision: 1.4 $\n *\n * This file is part of OpenOffice.org.\n *\n * OpenOffice.org is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Lesser General Public License version 3\n * only, as published by the Free Software Foundation.\n *\n * OpenOffice.org is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License version 3 for more details\n * (a copy is included in the LICENSE file that accompanied this code).\n *\n * You should have received a copy of the GNU Lesser General Public License\n * version 3 along with OpenOffice.org. If not, see\n * <http:\/\/www.openoffice.org\/license.html>\n * for a copy of the LGPLv3 License.\n *\n *************************************************************************)\n\n-- This is the PostInstall -script for .pkg installation\n-- \n-- Currently this script does the following things:\n-- 1) Uses fondu to extract and convert .dfont -fonts from Mac OS X system to .ttf -fonts for OpenOffice.org\n\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\treturn (((path to me) as string) & \"Contents:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"MacOS:\")\nend getOOProgramPath\n\n-- OSXSystemFontPathList : {\"\/System\/Library\/Fonts\/\", \"\/Library\/Fonts\/\"}\n-- OSXUserFontPathList : {\"~\/Library\/Fonts\/\"}\n\non getOSXSystemFontPathList()\n\treturn {(path to fonts folder from system domain) as string, \n\t\t(path to fonts folder from local domain) as string}\nend getOSXSystemFontPathList\n\non getOSXUserFontPathList()\n\treturn {(path to fonts folder from user domain) as string}\nend getOSXUserFontPathList\n\non getOOSystemFontPath()\n\treturn (getOOInstallPath() & \"share:fonts:truetype:\")\nend getOOSystemFontPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\n\non getOOCookieSystemFondu()\n\t-- nosystemfondu : file does exist if user does not want to use fondu for system fonts\n\treturn \"no_system_fondu\"\nend getOOCookieSystemFondu\n\non getOOCookieSystemFonduDone()\n\t-- systemfondudone : file does exist if native fonts already extracted from system fonts\n\treturn \"system_fondu_done\"\nend getOOCookieSystemFonduDone\n\non getOOCookieUserFondu()\n\t-- nouserfondu : file does exist if user does not want to use fondu for user fonts\n\treturn \"no_user_fondu\"\nend getOOCookieUserFondu\n\non getOOCookieUserFonduDone()\n\t-- userfondudone : file does exist if native fonts already extracted from user fonts\n\treturn \"user_fondu_done\"\nend getOOCookieUserFonduDone\n\n--\n-- the default handler: run\n--\n\non run\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find OOo installation from \" & POSIX path of getOOProgramPath())\n\t\treturn\n\tend if\n\t\n\t-- checks are ok, now we can start doing the real stuff\n\tfirstLaunch()\n\trunSystemFondu()\n\trunUserFondu()\n\t\n\treturn\nend run\n\n\n-------------------------------------------------------------\n\n\non runSystemFondu()\n\t-- check if user does not want font conversion \n\tif (isRealPath(getOOSystemFontPath() & getOOCookieSystemFondu())) then\n\t\treturn\n\tend if\n\t\n\t-- check if font conversion was already run\n\tif (isRealPath(getOOSystemFontPath() & getOOCookieSystemFonduDone())) then\n\t\treturn\n\tend if\n\t\n\tlogEvent(\"(scripts\/PostInstall) Extracting system fonts...\")\n\t-- else try to create footprint\n\tif (setCookie(getOOSystemFontPath(), getOOCookieSystemFonduDone())) then\n\t\t-- call fondu for each font (i.e. without wildcard), so if it crashes only one font is missing\n\t\tfonduConvertFonts(getOOSystemFontPath(), getOSXSystemFontPathList())\n\tend if\n\tlogEvent(\"(scripts\/PostInstall) Extracting system fonts completed.\")\nend runSystemFondu\n\n\non runUserFondu()\n\t-- check if user does not want font conversion \n\tif (isRealPath(getOOUserFontPath() & getOOCookieUserFondu())) then\n\t\treturn\n\tend if\n\t\n\t-- check if font conversion was already run\n\tif (isRealPath(getOOUserFontPath() & getOOCookieUserFonduDone())) then\n\t\treturn\n\tend if\n\t\n\tlogEvent(\"(scripts\/PostInstall) Extracting user fonts...\")\n\t-- try to create footprint\n\tif (setCookie(getOOUserFontPath(), getOOCookieUserFonduDone())) then\n\t\t-- call fondu for each font (i.e. without wildcard), so if it crashes only one font is missing\n\t\tfonduConvertFonts(getOOUserFontPath(), getOSXUserFontPathList())\n\tend if\n\tlogEvent(\"(scripts\/PostInstall) Extracting user fonts completed.\")\nend runUserFondu\n\n\non firstLaunch()\n\t-- continue only if OOSysFontdir exists\t\n\tif (not isRealPath(getOOSystemFontPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find System font folder from \" & POSIX path of getOOSystemFontPath())\n\t\treturn\n\tend if\n\t\n\tif (setCookie(getOOSystemFontPath(), getOOCookieSystemFondu() & \".in_progress\")) then\n\t\t-- Has user already decided that he does not want to extract system fonts ?\n\t\tif (not isRealPath(getOOSystemFontPath() & getOOCookieSystemFondu())) then\n\t\t\t-- Are system fonts already extracted ?\n\t\t\tif (not isRealPath(getOOSystemFontPath() & getOOCookieSystemFonduDone())) then\n\t\t\t\t-- ask if the user wants to use fondu to extract system fonts\n\t\t\t\tset yesKey to getMessage(\"YES_KEY\")\n\t\t\t\tset noKey to getMessage(\"NO_KEY\")\n\t\t\t\tdisplay dialog getMessage(\"OOO_EXTRACT_NATIVE_SYSFONTS\") buttons {noKey, yesKey} default button yesKey\n\t\t\t\tset theResult to the button returned of the result\n\t\t\t\tif theResult is noKey then\n\t\t\t\t\t-- not use fondu for system fonts extraction !\n\t\t\t\t\tsetCookie(getOOSystemFontPath(), getOOCookieSystemFondu())\n\t\t\t\t\tlogEvent(\"(scripts\/PostInstall) Setting: no system fonts\")\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\t-- continue only if OOUserFontdir exists\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find User font folder from \" & POSIX path of getOOUserFontPath())\n\t\treturn\n\tend if\n\t\n\t-- Has user already decided that he does not want to extract user fonts ?\n\tif (not isRealPath(getOOUserFontPath() & getOOCookieUserFondu())) then\n\t\t-- Are system fonts already extracted ?\n\t\tif (not isRealPath(getOOUserFontPath() & getOOCookieUserFonduDone())) then\n\t\t\t-- ask if the user wants to use fondu to extract user fonts\n\t\t\tset yesKey to getMessage(\"YES_KEY\")\n\t\t\tset noKey to getMessage(\"NO_KEY\")\n\t\t\tdisplay dialog getMessage(\"OOO_EXTRACT_NATIVE_USERFONTS\") buttons {noKey, yesKey} default button yesKey\n\t\t\tset theResult to the button returned of the result\n\t\t\tif theResult is noKey then\n\t\t\t\t-- not use fondu for user fonts extraction !\n\t\t\t\tsetCookie(getOOUserFontPath(), getOOCookieUserFondu())\n\t\t\t\tlogEvent(\"(scripts\/PostInstall) Setting: no user fonts\")\n\t\t\tend if\n\t\tend if\n\tend if\n\t\nend firstLaunch\n\n\non fonduConvertFonts(targetPath, sourcePathList)\n\t\n\t-- define the location of fondu\n\tset fondu to quoted form of (POSIX path of getOOProgramPath() & \"fondu\")\n\t\n\t-- first go to the target directory\n\tset fonduCmd to \"cd \" & (quoted form of POSIX path of targetPath) & \"; \"\n\t\n\trepeat with q from 1 to number of items in sourcePathList\n\t\tset aPath to POSIX path of (item q of sourcePathList)\n\t\tset fonduCmd to fonduCmd & \"for i in \" & aPath & \"*; do \" & fondu & \" -force \\\"$i\\\" >> \/dev\/null 2>&1; done; \"\n\tend repeat\n\ttry\n\t\t-- ignore errors\n\t\t-- with admin privileges does not work well on panther\n\t\tdo shell script \"sh -c \" & quoted form of fonduCmd\n\tend try\n\tlogEvent(\"fonduCMD: \" & fonduCmd)\n\t\nend fonduConvertFonts\n\n\n(* ===== (Helper functions) ======= *)\n\n-- set a cookiefile. The content is empty.\non setCookie(aPath, cookieFile)\n\ttry\n\t\tif (isRealPath(aPath)) then\n\t\t\tset newFile to (aPath & cookieFile)\n\t\t\topen for access file newFile\n\t\t\tclose access file newFile\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error\n\t\treturn false\n\tend try\nend setCookie\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"OOO_EXTRACT_NATIVE_SYSFONTS\") then\n\t\t\treturn \"Do you want OpenOffice.org to use the Apple system fonts?\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"OOO_EXTRACT_NATIVE_USERFONTS\") then\n\t\t\treturn \"Do you want OpenOffice.org to use the fonts you have installed on this system?\"\n\t\tend if\n\tend try\nend getMessage\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n","old_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: PostInstall.applescript,v $\n *\n * $Revision: 1.3 $\n *\n * last change: $Author: ihi $ $Date: 2007-06-05 11:52:07 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n-- This is the PostInstall -script for .pkg installation\n-- \n-- Currently this script does the following things:\n-- 1) Uses fondu to extract and convert .dfont -fonts from Mac OS X system to .ttf -fonts for OpenOffice.org\n\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\treturn (((path to me) as string) & \"Contents:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"MacOS:\")\nend getOOProgramPath\n\n-- OSXSystemFontPathList : {\"\/System\/Library\/Fonts\/\", \"\/Library\/Fonts\/\"}\n-- OSXUserFontPathList : {\"~\/Library\/Fonts\/\"}\n\non getOSXSystemFontPathList()\n\treturn {(path to fonts folder from system domain) as string, \n\t\t(path to fonts folder from local domain) as string}\nend getOSXSystemFontPathList\n\non getOSXUserFontPathList()\n\treturn {(path to fonts folder from user domain) as string}\nend getOSXUserFontPathList\n\non getOOSystemFontPath()\n\treturn (getOOInstallPath() & \"share:fonts:truetype:\")\nend getOOSystemFontPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\n\non getOOCookieSystemFondu()\n\t-- nosystemfondu : file does exist if user does not want to use fondu for system fonts\n\treturn \"no_system_fondu\"\nend getOOCookieSystemFondu\n\non getOOCookieSystemFonduDone()\n\t-- systemfondudone : file does exist if native fonts already extracted from system fonts\n\treturn \"system_fondu_done\"\nend getOOCookieSystemFonduDone\n\non getOOCookieUserFondu()\n\t-- nouserfondu : file does exist if user does not want to use fondu for user fonts\n\treturn \"no_user_fondu\"\nend getOOCookieUserFondu\n\non getOOCookieUserFonduDone()\n\t-- userfondudone : file does exist if native fonts already extracted from user fonts\n\treturn \"user_fondu_done\"\nend getOOCookieUserFonduDone\n\n--\n-- the default handler: run\n--\n\non run\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find OOo installation from \" & POSIX path of getOOProgramPath())\n\t\treturn\n\tend if\n\t\n\t-- checks are ok, now we can start doing the real stuff\n\tfirstLaunch()\n\trunSystemFondu()\n\trunUserFondu()\n\t\n\treturn\nend run\n\n\n-------------------------------------------------------------\n\n\non runSystemFondu()\n\t-- check if user does not want font conversion \n\tif (isRealPath(getOOSystemFontPath() & getOOCookieSystemFondu())) then\n\t\treturn\n\tend if\n\t\n\t-- check if font conversion was already run\n\tif (isRealPath(getOOSystemFontPath() & getOOCookieSystemFonduDone())) then\n\t\treturn\n\tend if\n\t\n\tlogEvent(\"(scripts\/PostInstall) Extracting system fonts...\")\n\t-- else try to create footprint\n\tif (setCookie(getOOSystemFontPath(), getOOCookieSystemFonduDone())) then\n\t\t-- call fondu for each font (i.e. without wildcard), so if it crashes only one font is missing\n\t\tfonduConvertFonts(getOOSystemFontPath(), getOSXSystemFontPathList())\n\tend if\n\tlogEvent(\"(scripts\/PostInstall) Extracting system fonts completed.\")\nend runSystemFondu\n\n\non runUserFondu()\n\t-- check if user does not want font conversion \n\tif (isRealPath(getOOUserFontPath() & getOOCookieUserFondu())) then\n\t\treturn\n\tend if\n\t\n\t-- check if font conversion was already run\n\tif (isRealPath(getOOUserFontPath() & getOOCookieUserFonduDone())) then\n\t\treturn\n\tend if\n\t\n\tlogEvent(\"(scripts\/PostInstall) Extracting user fonts...\")\n\t-- try to create footprint\n\tif (setCookie(getOOUserFontPath(), getOOCookieUserFonduDone())) then\n\t\t-- call fondu for each font (i.e. without wildcard), so if it crashes only one font is missing\n\t\tfonduConvertFonts(getOOUserFontPath(), getOSXUserFontPathList())\n\tend if\n\tlogEvent(\"(scripts\/PostInstall) Extracting user fonts completed.\")\nend runUserFondu\n\n\non firstLaunch()\n\t-- continue only if OOSysFontdir exists\t\n\tif (not isRealPath(getOOSystemFontPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find System font folder from \" & POSIX path of getOOSystemFontPath())\n\t\treturn\n\tend if\n\t\n\tif (setCookie(getOOSystemFontPath(), getOOCookieSystemFondu() & \".in_progress\")) then\n\t\t-- Has user already decided that he does not want to extract system fonts ?\n\t\tif (not isRealPath(getOOSystemFontPath() & getOOCookieSystemFondu())) then\n\t\t\t-- Are system fonts already extracted ?\n\t\t\tif (not isRealPath(getOOSystemFontPath() & getOOCookieSystemFonduDone())) then\n\t\t\t\t-- ask if the user wants to use fondu to extract system fonts\n\t\t\t\tset yesKey to getMessage(\"YES_KEY\")\n\t\t\t\tset noKey to getMessage(\"NO_KEY\")\n\t\t\t\tdisplay dialog getMessage(\"OOO_EXTRACT_NATIVE_SYSFONTS\") buttons {noKey, yesKey} default button yesKey\n\t\t\t\tset theResult to the button returned of the result\n\t\t\t\tif theResult is noKey then\n\t\t\t\t\t-- not use fondu for system fonts extraction !\n\t\t\t\t\tsetCookie(getOOSystemFontPath(), getOOCookieSystemFondu())\n\t\t\t\t\tlogEvent(\"(scripts\/PostInstall) Setting: no system fonts\")\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\t-- continue only if OOUserFontdir exists\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tlogEvent(\"(scripts\/PostInstall) ERROR: could not find User font folder from \" & POSIX path of getOOUserFontPath())\n\t\treturn\n\tend if\n\t\n\t-- Has user already decided that he does not want to extract user fonts ?\n\tif (not isRealPath(getOOUserFontPath() & getOOCookieUserFondu())) then\n\t\t-- Are system fonts already extracted ?\n\t\tif (not isRealPath(getOOUserFontPath() & getOOCookieUserFonduDone())) then\n\t\t\t-- ask if the user wants to use fondu to extract user fonts\n\t\t\tset yesKey to getMessage(\"YES_KEY\")\n\t\t\tset noKey to getMessage(\"NO_KEY\")\n\t\t\tdisplay dialog getMessage(\"OOO_EXTRACT_NATIVE_USERFONTS\") buttons {noKey, yesKey} default button yesKey\n\t\t\tset theResult to the button returned of the result\n\t\t\tif theResult is noKey then\n\t\t\t\t-- not use fondu for user fonts extraction !\n\t\t\t\tsetCookie(getOOUserFontPath(), getOOCookieUserFondu())\n\t\t\t\tlogEvent(\"(scripts\/PostInstall) Setting: no user fonts\")\n\t\t\tend if\n\t\tend if\n\tend if\n\t\nend firstLaunch\n\n\non fonduConvertFonts(targetPath, sourcePathList)\n\t\n\t-- define the location of fondu\n\tset fondu to quoted form of (POSIX path of getOOProgramPath() & \"fondu\")\n\t\n\t-- first go to the target directory\n\tset fonduCmd to \"cd \" & (quoted form of POSIX path of targetPath) & \"; \"\n\t\n\trepeat with q from 1 to number of items in sourcePathList\n\t\tset aPath to POSIX path of (item q of sourcePathList)\n\t\tset fonduCmd to fonduCmd & \"for i in \" & aPath & \"*; do \" & fondu & \" -force \\\"$i\\\" >> \/dev\/null 2>&1; done; \"\n\tend repeat\n\ttry\n\t\t-- ignore errors\n\t\t-- with admin privileges does not work well on panther\n\t\tdo shell script \"sh -c \" & quoted form of fonduCmd\n\tend try\n\tlogEvent(\"fonduCMD: \" & fonduCmd)\n\t\nend fonduConvertFonts\n\n\n(* ===== (Helper functions) ======= *)\n\n-- set a cookiefile. The content is empty.\non setCookie(aPath, cookieFile)\n\ttry\n\t\tif (isRealPath(aPath)) then\n\t\t\tset newFile to (aPath & cookieFile)\n\t\t\topen for access file newFile\n\t\t\tclose access file newFile\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error\n\t\treturn false\n\tend try\nend setCookie\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"OOO_EXTRACT_NATIVE_SYSFONTS\") then\n\t\t\treturn \"Do you want OpenOffice.org to use the Apple system fonts?\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"OOO_EXTRACT_NATIVE_USERFONTS\") then\n\t\t\treturn \"Do you want OpenOffice.org to use the fonts you have installed on this system?\"\n\t\tend if\n\tend try\nend getMessage\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"aeb09d5d41b5f39a01eaae5c836f4c3f1da3e6f4","subject":"Update chapter list for PDF","message":"Update chapter list for PDF\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Update cover.html with the new version date\n# 2. Open cover.html in safari and generate Cover.pdf\n# 3. Place Cover.pdf in ~\/Downloads folder\n# 4. Ensure \"Downloads\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 5. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\nwrapping-up\ngiving-back\nchangelog\nstaying-up-to-date\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n#################\n# Download PDFs #\n#################\n#repeat with theCurrentChapter in theChapters\n# downloadPdf(theCurrentChapter)\n#end repeat\n\n##############\n# Merge PDFs #\n##############\nset outputFile to \"~\/Downloads\/ServerlessStack.pdf\"\n\nset pdfFiles to \"~\/Downloads\/Cover.pdf\"\nrepeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/\" & theCurrentChapter & \".pdf\"\nend repeat\n\ndo shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\n\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"Downloads\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Update cover.html with the new version date\n# 2. Open cover.html in safari and generate Cover.pdf\n# 3. Place Cover.pdf in ~\/Downloads folder\n# 4. Ensure \"Downloads\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 5. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\nconnect-to-api-gateway-with-iam-auth\ncall-the-create-api\nupload-a-file-to-s3\nclear-aws-credentials-cache\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\ncode-splitting-in-create-react-app\nwrapping-up\ngiving-back\nolder-versions\nstaying-up-to-date\nserverless-es7-service\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n#################\n# Download PDFs #\n#################\n#repeat with theCurrentChapter in theChapters\n# downloadPdf(theCurrentChapter)\n#end repeat\n\n##############\n# Merge PDFs #\n##############\nset outputFile to \"~\/Downloads\/ServerlessStack.pdf\"\n\nset pdfFiles to \"~\/Downloads\/Cover.pdf\"\nrepeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/\" & theCurrentChapter & \".pdf\"\nend repeat\n\ndo shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\n\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"Downloads\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a2ec45c0fa19bdde02fa206ac453c13f95e688aa","subject":"Make playartist filter faster and honor sort order","message":"Make playartist filter faster and honor sort order\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\treturn every track of playlist 2 whose genre is genreName\n\n\tend tell\n\nend getGenreSongs\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\treturn every track of playlist 2 whose genre is genreName\n\n\tend tell\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b238cf697288b4c1d708d40f9b6f8bdd37d44d25","subject":"Reduce nesting in sortSongsByAlbumOrder()","message":"Reduce nesting in sortSongsByAlbumOrder()\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"f531396b49acaf5c7cf87e75252f5ec60adad8f3","subject":"final version of convert script","message":"final version of convert script","repos":"documents4j\/documents4j,documents4j\/documents4j","old_file":"documents4j-transformer-msoffice\/documents4j-transformer-msoffice-excel\/src\/main\/resources\/excel_convert.applescript","new_file":"documents4j-transformer-msoffice\/documents4j-transformer-msoffice-excel\/src\/main\/resources\/excel_convert.applescript","new_contents":"on run argv\n\tset MagicFormatPDF to 999\n\tset appName to \"Microsoft Excel\"\n\ttry\n\t\t-- get a posix file object to avoid grant access issue with 'Microsoft Office 2016', not the same as (file documentPath) when using the 'open ...' command\n\t\tset tFile to (POSIX path of (item 1 of argv)) as POSIX file\n\t\tset PDFFile to (POSIX path of (item 2 of argv)) as POSIX file\n\t\t--tell application \"Finder\"\n\t\tif fileExists(PDFFile) then\n\t\t\ttell application \"Finder\"\n\t\t\tdelete file PDFFile\n\t\t\tend tell\n\t\tend if\n\t\t--end tell\n\t\ttell application \"Microsoft Excel\"\n\t\t\tset isRun to running\n\t\t\tactivate\n\t\t\topen tFile\n\t\t\ttell active workbook\n\t\t\t\talias PDFFile -- This is necessary to any script for 'Microsoft Office 2016', this avoid errors with any \"save ... \" command\n\t\t\t\tset wkbk1 to active workbook\n\t\t\t\tsave as active sheet filename PDFFile file format PDF file format with overwrite\n\t\t\t\tclose saving no\n\t\t\tend tell\n\t\tend tell\n\t\treturn 2\n\ton error errMsg number errorNumber\n\t\tlog (\"ERROR: \")\n\t\tlog (errMsg)\n\t\ttell application appName to quit\n\t\treturn -6\n\tend try\nend run\non fileExists(theFile) -- (String) as Boolean\n\ttell application \"System Events\"\n\t\tif exists file (theFile as text) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend tell\nend fileExists","old_contents":"# See http:\/\/msdn.microsoft.com\/en-us\/library\/bb243311%28v=office.12%29.aspx\nset WdExportFormatPDF to 17\nset MagicFormatPDF to 999\nset appName to \"Microsoft Excel\"\n\non fun argv\n\ttry \n\t\ttell application appName\n\t\t\topen (quoted form of (item 1 of argv))\n\t\t\t\n\t\t\tif formatEnumeration = MagicFormatPDF then\n\t\t\t\tsave workbook as workbook (active workbook) filename (quoted form of (item 2 of argv)) file format (PDF file format) with overwrite\n\t\t\telse\n\t\t\t save workbook as workbook (active workbook) filename (quoted form of (item 2 of argv)) file format ((item 3 of argv) file format) with overwrite\n\t\t\tend if\n\t\t\t\n\t\t\tclose (active workbook) saving no\n\t\t\t\n\t\t\treturn 2\n\t\tend tell\n\ton error errMsg number errorNumber\n\t\treturn -6\n\tend try\nend run\t\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"3ad5a30ae30fd8297b98d572feee8bea64610d67","subject":"Update arrange windows.","message":"Update arrange windows.\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000x\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000x\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000h\u0000n\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000k\u0000l\u0003\u0000$\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001J\u0000\u0000\u0000n\u0000t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000q}\u0003}\u0002\u0002\u0000\u0000\u0002\u0000|\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000r{\u0003{\u0003\u0002|\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000y\u0000\u0000zy\r\u0000\u0000\u0003I\u0000\u0000\u0000y\u0000x\u0000w\u000bx\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000}\u0000~v\u000bv\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000t\u000bt\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000lk\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000j\u0000i\u000bj\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000g\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002g\u0000\u0000\u0002i\u0000\u0000\u0001l\u0000\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ed\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000c\u0000b\u000bc\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000`\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002`\u0000\u0000\u0002b\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000^]\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\\\u0000[\u000b\\\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000Z\u000bZ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0001\u0000\u0002\u0001\u0002Y\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002Y\u0000\u0000\u0002[\u0000\u0000\u0001^\u0000\u0000\u0001]\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0005WV\r\u0001\u0005\u0000\u0003I\u0000\u0000\u0000\u0000U\u0001\u0006T\u000bU\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\t\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001\b\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\rR\r\u0001\r\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002R\u0000\u0000\u0002T\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0010PO\r\u0001\u0010\u0000\u0003I\u0000\u0000\u0000\u0000N\u0001\u0011M\u000bN\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\u000e\u0001\u0014\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u0001\u0013\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000\u0000L\u000bL\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u0018K\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002K\u0000\u0000\u0002M\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001bIH\r\u0001\u001b\u0000\u0003I\u0000\u0000\u0000\u0000G\u0001\u001cF\u000bG\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001f\u000e\u0001\u001f\u0000\u0001\u0001 \u0011\u0001 \u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001\u001e\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000E\u000bE\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001#D\r\u0001#\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002D\u0000\u0000\u0002F\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002\u0001\u001a\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0000\u0000\u0001&BA\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000@\u0001'?\u000b@\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001'\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001)\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000>\u000b>\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.=\r\u0001.\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002=\u0000\u0000\u0002?\u0000\u0000\u0001B\u0000\u0000\u0001A\u0000\u0000\u0002\u0001%\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011;:\r\u00011\u0000\u0003I\u0000\u0000\u0000\u00009\u000128\u000b9\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0001m\u0000\u0000\u0000\u0000\u00015\u000e\u00015\u0000\u0001\u00016\u0011\u00016\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u00014\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001o\u0000\u0000\u0000\u00007\u000b7\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00018\u0000\u0002\u000196\r\u00019\u0000\u0001J\u0000\u0000\u0000\u0000\u0001:\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u00005\u00035\u0006\"\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u00003\u00033\u0003\u00024\u0000\u0000\u00026\u0000\u0000\u00028\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u00010\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0001\u0002\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u0001\u00020\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001J\u0000\u0000\u0000\u0000\u0001H\u0002\u0001H\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0001m\u0000\u0000\u0000\u0000.\u0003.\u0000\u000f\u0002\u0001J\u0000\u0002\u0001K-\r\u0001K\u0000\u0001m\u0000\u0000\u0000\u0000,\u0003,\u0003]\u0002-\u0000\u0000\u0002\u0001G\u0000\u0002\u0001L+\r\u0001L\u0000\u0001J\u0000\u0000\u0000\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001N\u0001O\r\u0001N\u0000\u0001m\u0000\u0000\u0000\u0000*\u0003*\u0003R\u0002\u0001O\u0000\u0002\u0001P)\r\u0001P\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u00024\u0002)\u0000\u0000\u0002+\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\u0017\u0001S'&\r\u0001S\u0000\u0003I\u0000\u0000\u0001\u0003\u0001\u0017%\u0001T$\u000b%\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0007\u0001W\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001V\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0001J\u0000\u0000\u0001\u0007\u0001\r\u0001[\u0002\u0001[\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001m\u0000\u0000\u0001\u0007\u0001\n#\u0003#\u0000\u000f\u0002\u0001]\u0000\u0002\u0001^\"\r\u0001^\u0000\u0001m\u0000\u0000\u0001\n\u0001\u000b!\u0003!\u0000$\u0002\"\u0000\u0000\u0002\u0001Z\u0000\u0002\u0001_ \r\u0001_\u0000\u0001J\u0000\u0000\u0001\r\u0001\u0013\u0001`\u0002\u0001`\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u001f\u0003\u001f\u0002\u0002\u0001b\u0000\u0002\u0001c\u001e\r\u0001c\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0011\u001d\u0003\u001d\u0003\u0002\u001e\u0000\u0000\u0002 \u0000\u0000\u0002$\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001R\u0000\u0002\u0001d\u001c\r\u0001d\u0000\u0003l\u0000\u0002\u0001\u0018\u0001%\u0001e\u001b\u001a\r\u0001e\u0000\u0003I\u0000\u0000\u0001\u0018\u0001%\u0019\u0001f\u0018\u000b\u0019\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001h\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001o\u0000\u0000\u0001\u001c\u0001\u001d\u0017\u000b\u0017\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001J\u0000\u0000\u0001\u001d\u0001!\u0001n\u0002\u0001n\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0001m\u0000\u0000\u0001\u001d\u0001\u001e\u0015\u0003\u0015\u0006\"\u0002\u0001p\u0000\u0002\u0001q\u0014\r\u0001q\u0000\u0001m\u0000\u0000\u0001\u001e\u0001\u001f\u0013\u0003\u0013\u0003\u0002\u0014\u0000\u0000\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u001c\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0012\u0001r\u0001s\u0001t\u0001\u0012\u0000\u0000\u0010\u0001r\u0000\u0002\u0011\u0010\u000b\u0011\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0010\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001s\u0000\u0007\u0010\u000f\u0000\b\u000e\r\u0001u\u0001v\f\u000b\u000f\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u000e\u0000\u0002\u0004\u000b\u0001w\u0003\u000b\u0000\u0003\u000e\u0001w\u0000\u0003\u0000\n\t\b\u000b\n\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\t\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001u\u0000\u0003\u0007\u0006\u0005\u000b\u0007\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0006\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0005\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001v\u0000\b\u0004\u0003\u0000=\u0002\u0001\u0000\n\u0004\u0000\u0004\ncapp\n\u0003\u0000\u0004\nprun\n\u0002\u0000\u0004\nprcs\n\u0001\u0000\u0004\ncobj\n\u0000\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\f\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001t\u0000\u0007\u0010\u0001x\u0001y\u0001z\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001x\u0000\u0001k\u0000\u0000\u0000\u0000\u0001%\u0001{\u0002\u0001{\u0000\u0002\u0000@\u0001|\u0002\u0001|\u0000\u0002\u0000I\u0001}\u0002\u0001}\u0000\u0002\u0000T\u0001~\u0002\u0001~\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0003\u0001\u0002\u0001\u0000\u0002\u0001\u000e\u0001\u0002\u0001\u0000\u0002\u0001\u0019\u0001\u0002\u0001\u0000\u0002\u0001$\u0001\u0002\u0001\u0000\u0002\u0001\/\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001Q\u0001\u0002\u0001\u0000\u0002\u0001d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001y\u0000\u0000\u0010\u0001z\u0000&\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\t\u0001\u0014\u0001\u001f\u0001*\u00015\u0001D\u0001W\u0001i\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001&lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013a\u0000\u0014lva\u0000\u0015lvm+\u0000\u000bO*a\u0000\u0016m+\u0000\u000bO*a\u0000\u0017m+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001flvm+\u0000\u000bO*a\u0000 a\u0000\u0014a\u0000!lva\u0000\"a\u0000#lvm+\u0000\u000bO*a\u0000$a\u0000\u0014lva\u0000\u0015lvm+\u0000\u000bO*a\u0000%lvm+\u0000\u000b\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000n\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000n\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000o\u0000\u0000~}\r\u0000\u0000\u0003I\u0000\u0000\u0000o\u0000|\u0000{\u000b|\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000vz\u0003z\u0000\u000f\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000wx\u0003x\u0000$\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001J\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|v\u0003v\u0002\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000}t\u0003t\u0003\u0002u\u0000\u0000\u0002w\u0000\u0000\u0002{\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001e\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000T\u0000e\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0006\"\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\tUT\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\nR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011P\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0014NM\r\u0001\u0014\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0015K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0001\u0018\u0000\u0001\u0001\u0019\u0011\u0001\u0019\u0000\u0010\u0000O\u0000b\u0000s\u0000i\u0000d\u0000i\u0000a\u0000n\u0002\u0001\u0017\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001cI\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002I\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001fGF\r\u0001\u001f\u0000\u0003I\u0000\u0000\u0000\u0000E\u0001 D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001&\u0000\u0002\u0001'B\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002B\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u001e\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*@?\r\u0001*\u0000\u0003I\u0000\u0000\u0000\u0000>\u0001+=\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u001c\u0000P\u0000i\u0000x\u0000e\u0000l\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000P\u0000r\u0000o\u0002\u0001-\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00011\u0000\u0002\u00012;\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001)\u0000\u0002\u00013\u00014\r\u00013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001598\r\u00015\u0000\u0003I\u0000\u0000\u0000\u00007\u000166\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u00018\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00024\u0000\u0000\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00014\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0000\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u00000\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H-\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002-\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0001K+*\r\u0001K\u0000\u0003I\u0000\u0000\u0000\u0000)\u0001L(\u000b)\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0001m\u0000\u0000\u0000\u0000\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001N\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001R\u0000\u0002\u0001S&\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002&\u0000\u0000\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001J\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\n\u0001V$#\r\u0001V\u0000\u0003I\u0000\u0000\u0001\u0000\u0001\n\"\u0001W!\u000b\"\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001Y\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005 \u000b \u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001]\u0000\u0002\u0001^\u001f\r\u0001^\u0000\u0001o\u0000\u0000\u0001\u0005\u0001\u0006\u001e\u000b\u001e\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001f\u0000\u0000\u0002!\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0001U\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0018\u0001a\u001d\u001c\r\u0001a\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0018\u001b\u0001b\u001a\u000b\u001b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001b\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001d\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\u0019\u000b\u0019\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001h\u0000\u0002\u0001i\u0018\r\u0001i\u0000\u0001J\u0000\u0000\u0001\u0010\u0001\u0014\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0011\u0017\u0003\u0017\u0006\"\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0011\u0001\u0012\u0015\u0003\u0015\u0003\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0002\u001a\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001`\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0003l\u0000\u0002\u0001\u0019\u0001#\u0001p\u0014\u0013\r\u0001p\u0000\u0003I\u0000\u0000\u0001\u0019\u0001#\u0012\u0001q\u0011\u000b\u0012\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001s\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u0010\u000b\u0010\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001w\u0000\u0002\u0001x\u000f\r\u0001x\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\u001f\u000e\u000b\u000e\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u000f\u0000\u0000\u0002\u0011\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0001o\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001$\u0001<\u0001{\r\f\r\u0001{\u0000\u0003I\u0000\u0000\u0001$\u0001<\u000b\u0001|\n\u000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001|\u0000\u0002\u0001}\u0001~\r\u0001}\u0000\u0001m\u0000\u0000\u0001%\u0001(\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001~\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001(\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+\t\u0003\t\u0000\u000f\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0007\u0003\u0007\u0003]\u0002\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0006\r\u0001\u0000\u0001J\u0000\u0000\u00010\u00018\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\u0005\u0003\u0005\u0003R\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0001m\u0000\u0000\u00013\u00016\u0003\u0003\u0003\u00024\u0002\u0004\u0000\u0000\u0002\u0006\u0000\u0000\u0002\n\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001=\u0001Q\u0001\u0002\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001=\u0001Q\u0000\u0001\u000b\u0000\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001>\u0001A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001A\u0001G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0003\u0000\u000f\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001D\u0001E\u0003\u0000$\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001J\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001J\u0001K\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001R\u0001_\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001R\u0001_\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001V\u0001W\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001W\u0001[\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001W\u0001X\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001X\u0001Y\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001_\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0012\u0001\u0002\u0001\u0000\u0002\u0001\u001d\u0001\u0002\u0001\u0000\u0002\u0001(\u0001\u0002\u0001\u0000\u0002\u00013\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001I\u0001\u0002\u0001\u0000\u0002\u0001T\u0001\u0002\u0001\u0000\u0002\u0001_\u0001\u0002\u0001\u0000\u0002\u0001n\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000+\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\r\u0001\u0018\u0001#\u0001.\u00019\u0001D\u0001O\u0001Z\u0001e\u0001t\u0001\u0001\u0001\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001`lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#lvm+\u0000\u000bO*a\u0000$m+\u0000\u000bO*a\u0000%a\u0000\u0015a\u0000&lva\u0000'a\u0000(lvm+\u0000\u000bO*a\u0000)a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000*lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1d263cc7331d874ddabeffcd357cbae9465a13d4","subject":"Run mac script","message":"Run mac script\n","repos":"trevordmiller\/shell-scripts,trevordmiller\/shell-scripts,trevordmiller\/settings,trevordmiller\/settings","old_file":"mac\/script-quit-all.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/script-quit-all.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000l\u0000l\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0003\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\u000b\u0000\u0005 QUIT\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\n\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000Q\u0000u\u0000i\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000!\u0000\u001b Close running applications\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00006\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002O\u0000\u0001\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovtrue\r\u0000e\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000f\r\u0000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\u0000h\r\u0000g\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\npvis\r\u0000h\u0000\u00012\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000i\u000f\u0000i\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000&\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000m\u0000n\r\u0000m\u0000\u0001J\u0000\u0000\u0000 \u0000$\u0000o\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000q\u0000\u0002\u0000t\r\u0000t\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000'\u0000\u0000y\r\u0000y\u0000\u0003Q\u0000\u0000\u0000'\u0000\u0000z\u0000{\u0000|\r\u0000z\u0000\u0001k\u0000\u0000\u0000*\u0000}\u0000}\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002O\u0000\u0000\u0000*\u0000?\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000.\u0000>\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000.\u0000<\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000.\u00003\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000.\u00003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0000\u0000.\u00001\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00004\u0000;\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npvis\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000:\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000@\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000x\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000U\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000R\u0000U\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000Q\u0000R\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Z\u0000x\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0000Z\u0000`\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000Z\u0000_\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000[\u0000^\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000c\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000s\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000c\u0000k\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0005\u0000D\u0000L\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000D\u0000L\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000K\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000D\u0000G\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000E\u0000G\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000{\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000n\u0000 \u0000a\u0000p\u0000p\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000!\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000k\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 Kill running processes\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000K\u0000i\u0000l\u0000l\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000n\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000p\u0000h\u0000a\u0000n\u0000t\u0000o\u0000m\u0000j\u0000s\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000k\u0000i\u0000l\u0000l\u0000a\u0000l\u0000l\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u0002\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000~\u0000\u0000\u0001~\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0000\u0000\u0001}\u0000\u0000\f\u0000\u0000\f\u0000\u0006 EJECT\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000E\u0000J\u0000E\u0000C\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000xw\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000v\u0000u\u000bv\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000t\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002t\u0000\u0000\u0002u\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p\u0000\u0000\u0001p\u0000\u0000\f\u0000\u0000\u001f\u0000\u0019 Eject plugged-in devices\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000 \u0000p\u0000l\u0000u\u0000g\u0000g\u0000e\u0000d\u0000-\u0000i\u0000n\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0000on\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\n\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000m\u0001\u0000l\nm\u0000\u0018.fndrejctnull\u0000\u0000obj \r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0001\u0001kj\r\u0001\u0001\u0000\u00012\u0000\u0001\u0000\u0000i\ni\u0000\u0004\ncdis\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000f\u0001\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000hgf\nh\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001g\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\ne\u0001\u0003\u0001\u0004\ne\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u0005dc\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000H\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000j\u0000e\u0000c\u0000t\u0000e\u0000d\u0000!\u0001d\u0000\u0000\u0001c\u0000\u0000\u0006\u0001\u0004\u0000\u0003b\u0001\b\u0001\t\nb\u0000\u0004\nbtns\r\u0001\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000ba\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0004\u0000O\u0000k\u0002a\u0000\u0000\u0006\u0001\t\u0000\u0003`\u0001\u000e_\n`\u0000\u0004\ndisp\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004^\n^\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006_\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W\u0001\u0015\u0001\u0016\u0001W\u0000\u0000\f\u0001\u0015\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u0014\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000V\u0001\u001a\u0001\u001b\u0001V\u0000\u0000\f\u0001\u001a\u0000\f\u0000\u0006 CLEAN\u0000\u0002\u0000\u0000\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\f\u0000 \u0000C\u0000L\u0000E\u0000A\u0000N\u0002\u0001\u0019\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000U\u0001\u001f\u0001 \u0001U\u0000\u0000\f\u0001\u001f\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u001e\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0013\u0001&QP\r\u0001&\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0013O\u0001'N\u000bO\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001'\u0000\u0002\u0001(M\r\u0001(\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001)\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000(\u0000C\u0000l\u0000e\u0000a\u0000n\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0002M\u0000\u0000\u0002N\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001%\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I\u0001\/\u00010\u0001I\u0000\u0000\f\u0001\/\u0000\u0012\u0000\f Empty trash\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0002\u0001\u0014\u0001\"\u00014HG\r\u00014\u0000\u0002O\u0000\u0000\u0001\u0014\u0001\"\u00015\u00016\r\u00015\u0000\u0003I\u0000\u0002\u0001\u0018\u0001!F\u00017E\nF\u0000\u0018.fndremptnull\u0000\u0000obj \r\u00017\u0000\u0003l\u0001\u0000\u0001\u0018\u0001\u001d\u00018DC\r\u00018\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001dB\nB\u0000\u0004\ntrsh\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002E\u0000\u0000\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u00019\u000f\u00019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00013\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001;\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000>\u0001>\u0001?\u0001>\u0000\u0000\f\u0001>\u0000*\u0000$ Delete contents of Downloads folder\u0000\u0002\u0000\u0000\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000H\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000c\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0001=\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0001#\u0001*\u0001C=<\r\u0001C\u0000\u0003I\u0000\u0002\u0001#\u0001*;\u0001D:\n;\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001D\u0000\u0001m\u0000\u0000\u0001#\u0001&\u0001E\u000e\u0001E\u0000\u0001\u0001F\u0011\u0001F\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000\/\u0000*\u0002:\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001B\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001H\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00006\u0001K\u0001L\u00016\u0000\u0000\f\u0001K\u0000,\u0000& Delete all extra node_modules folders\u0000\u0002\u0000\u0000\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000L\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0002\u0001J\u0000\u0002\u0001N5\r\u0001N\u0000\u0003l\u0000\u0002\u0001+\u00012\u0001O43\r\u0001O\u0000\u0003I\u0000\u0002\u0001+\u000122\u0001P1\n2\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001P\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0001Q\u000e\u0001Q\u0000\u0001\u0001R\u0011\u0001R\u0000\u0000f\u0000i\u0000n\u0000d\u0000 \u0000~\u0000\/\u0000'\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0000'\u0000 \u0000-\u0000n\u0000a\u0000m\u0000e\u0000 \u0000'\u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000'\u0000 \u0000-\u0000t\u0000y\u0000p\u0000e\u0000 \u0000d\u0000 \u0000-\u0000e\u0000x\u0000e\u0000c\u0000 \u0000r\u0000m\u0000 \u0000-\u0000r\u0000 \u0000'\u0000{\u0000}\u0000'\u0000 \u0000'\u0000;\u0000'\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u00021\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u000e0\u0001S\/\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y.-,+*\u00010\u0000\u0000\u0010\u0001S\u0000\f)('&%$#\"! \u001f\u001e\u000b)\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b(\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b&\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b%\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b$\u0000\u00100\u0000\fthis_process\u0000\u0000\u000b#\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0003\/\u0000!\u000e\u0001T\u0000\u0007\u0010\u001d\u0000(\u001c\u001b\u0001Z\u0001[\u001a\u000b\u001d\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001c\u0000\u0002\u0004\u0019\u0001\\\u0003\u0019\u0000\u0001\u000e\u0001\\\u0000\u0001\u0000\u0018\n\u0018\u0000\u0004\ndscr\u0002\u001b\u0000\u0000\u0010\u0001Z\u0000\u0001\u0017\n\u0017\u0000\u0004\ndscr\u0010\u0001[\u0000\u0003\u0016\u0015\u0014\n\u0016\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0015\u0000\u0004\nppga\n\u0014\u0000\u0004\nppgc\u0011\u001a\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001U\u0000\u0007\u0010\u0013\u0001]\u0012\u0011\u0001^\u0001_\u0010\n\u0013\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001]\u0000\u0001k\u0000\u0000\u0000\u0000\u00012\u0001`\u0002\u0001`\u0000\u0002\u0000\u0016\u0001a\u0002\u0001a\u0000\u0002\u0000\u001d\u0001b\u0002\u0001b\u0000\u0002\u0000Q\u0001c\u0002\u0001c\u0000\u0002\u0000_\u0001d\u0002\u0001d\u0000\u0002\u0000j\u0001e\u0002\u0001e\u0000\u0002\u0000w\u0001f\u0002\u0001f\u0000\u0002\u0000\u0001g\u0002\u0001g\u0000\u0002\u0000\u0001h\u0002\u0001h\u0000\u0002\u0000\u0001i\u0002\u0001i\u0000\u0002\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001$\u0001k\u0002\u0001k\u0000\u0002\u00012\u0001l\u0002\u0001l\u0000\u0002\u0001A\u0001m\u0002\u0001m\u0000\u0002\u0001N\u000f\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\u0010\u0001^\u0000\u0002\u000e\r\u000b\u000e\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\r\u0000\u000b0\u0000\u0007process\u0000\u0000\u0010\u0001_\u0000\/\u0000\u001b\f\u000b\u0000V\n\u0000i\t\b\u0000r\u0000u\u0007\u0000\u0006\u0001n\u0005\u0004\u0003\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\f\u0001)\u0001E\u0001Q\n\f\u0000\u0004\nppgd\n\u000b\u0000\u0004\nppgt\u000b\n\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n\t\u0000\u0004\nprcs\n\b\u0000\u0004\npvis\u000b\u0007\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0006\u0000\u0004\npnam\u000e\u0001n\u0000\u0000\u0013\u000b\u0005\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0004\u0000\u0004\ncobj\n\u0003\u0000\u0004\nnmbr\u000b\u0002\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0001\u0000\u0004\ncapp\n\u0000\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\ncdis\n\u0000\u0018.fndrejctnull\u0000\u0000obj \n\u0000\u0004\ntrsh\n\u0000\u0018.fndremptnull\u0000\u0000obj \u0011\u0010\u00013*,FOm*,FO*k+\u0000\u0004O\u0012\u0000\te*-,FUOlvEO\u0014\u0000X\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u0000<k-a\u0000\u0010,Ekh\u001c\u0000\u0000\/E`\u0000\u0011O_\u0000\u0011\b\u000b\u001d\u0000\u0016*a\u0000\u0012_\u0000\u0011\/\u0012\u0000\u0007*j\f\u0000\u0013UY\u0000\u0003h[OYW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cOa\u0000\u001da\u0000\u001elvE`\u0000\u001fO\u0017\u0000%_\u0000\u001f[a\u0000 l\f\u0000!kh\u001b\u0000\u0001a\u0000\"%a\u0000#%j\f\u0000$[OYO*a\u0000%k+\u0000\u0004O\u0014\u0000\u0013\u0012\u0000\u000b*a\u0000&-j\f\u0000'UW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000(a\u0000\u0017a\u0000)kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cO*a\u0000*k+\u0000\u0004O\u0012\u0000\u000b*a\u0000+,j\f\u0000,UOa\u0000-j\f\u0000$Oa\u0000.j\f\u0000$\u000f\u000e\u0001V\u0000\u0002\u0004\u0001o\u0003\u0000\u0002\u000e\u0001o\u0000\u0002\u0000\u0000r\u0000u\u000e\u0001W\u0000\u0002\u0004\u0001p\u0003\u0000\n\u000e\u0001p\u0000\n\u0000\u0001q\u0001r\u0001s\u0001t\u0001u\u0001v\u0001w\u0001x\u0001y\u0001X\u000e\u0001q\u0000\u0001\u0001z\u0011\u0001z\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0001r\u0000\u0001\u0001{\u0011\u0001{\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u000e\u0001s\u0000\u0001\u0001|\u0011\u0001|\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0001t\u0000\u0001\u0001}\u0011\u0001}\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u000e\u0001u\u0000\u0001\u0001~\u0011\u0001~\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u000e\u0001v\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u000e\u0001w\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0001x\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000M\u0000a\u0000i\u0000l\u000e\u0001y\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000D\u0000a\u0000s\u0000h\u000e\u0001X\u0000\u0001\u0001\u0011\u0001\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u000e\u0001Y\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000\u000f\u0000\t PROGRESS\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0012\u0000 \u0000P\u0000R\u0000O\u0000G\u0000R\u0000E\u0000S\u0000S\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0018\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001b\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0010\u0000Q\u0000u\u0000i\u0000t\u0000 \u0000A\u0000l\u0000l\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0004\n\u0000\u0004\nppgd\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0000\u001f\r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0003\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppgt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000$\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndscr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000.\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\ndscr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nppga\u0002\u00000\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0019\u00005\u00006\r\u00005\u0000\u0002[\u0000\u0000\u0000\f\u0000\u0013\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000\f\u0000\u0011\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u0002\u00004\u0000\u0002\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001f\u000b\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\r\u0000;\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"\n\u0000\u0004\nppgc\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000\u000b\u0000\u0005 QUIT\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000\n\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000L\u0000M\u0001\u0000\u0000\f\u0000L\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000K\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0012\u0000S\r\u0000S\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0012\u0000T\u000b\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000T\u0000\u0002\u0000U\r\u0000U\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00006\u0000Q\u0000u\u0000i\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000!\u0000\u001b Close running applications\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00006\u0000 \u0000C\u0000l\u0000o\u0000s\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0002\u0000[\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u001f\u0000a\r\u0000a\u0000\u0002O\u0000\u0001\u0000\u0013\u0000\u001f\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u0000d\u0000e\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovtrue\r\u0000e\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000f\r\u0000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\u0000h\r\u0000g\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\npvis\r\u0000h\u0000\u00012\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000i\u000f\u0000i\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000]u\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000&\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000m\u0000n\r\u0000m\u0000\u0001J\u0000\u0000\u0000 \u0000$\u0000o\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000q\u0000\u0002\u0000t\r\u0000t\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000'\u0000\u0000y\r\u0000y\u0000\u0003Q\u0000\u0000\u0000'\u0000\u0000z\u0000{\u0000|\r\u0000z\u0000\u0001k\u0000\u0000\u0000*\u0000}\u0000}\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002O\u0000\u0000\u0000*\u0000?\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000.\u0000>\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000.\u0000<\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000.\u00003\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000.\u00003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0000\u0000.\u00001\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00004\u0000;\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00005\u00007\n\u0000\u0004\npvis\r\u0000\u0000\u0001m\u0000\u0000\u00008\u0000:\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000@\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000x\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000U\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000R\u0000U\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000Q\u0000R\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Z\u0000x\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0000Z\u0000`\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000Z\u0000_\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u000e0\u0000\nwhite_list\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000[\u0000^\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000c\u0000t\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000s\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000c\u0000k\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00100\u0000\fthis_process\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0005\u0000D\u0000L\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000D\u0000L\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000K\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000D\u0000G\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000E\u0000G\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00100\u0000\fprocess_list\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000{\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000n\u0000 \u0000a\u0000p\u0000p\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000d\u0000!\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000k\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 Kill running processes\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000K\u0000i\u0000l\u0000l\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000n\u0000o\u0000d\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000p\u0000h\u0000a\u0000n\u0000t\u0000o\u0000m\u0000j\u0000s\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000k\u0000i\u0000l\u0000l\u0000a\u0000l\u0000l\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u0002\u0000\u0000\u000b\u0000\u000b0\u0000\u0007process\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000~\u0000\u0000\u0001~\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000}\u0000\u0000\u0001}\u0000\u0000\f\u0000\u0000\f\u0000\u0006 EJECT\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000E\u0000J\u0000E\u0000C\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000{zy\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000xw\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000v\u0000u\u000bv\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0000\u0000\u0002\u0000t\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002t\u0000\u0000\u0002u\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000srq\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000p\u0000\u0000\u0001p\u0000\u0000\f\u0000\u0000\u001f\u0000\u0019 Eject plugged-in devices\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 \u0000E\u0000j\u0000e\u0000c\u0000t\u0000 \u0000p\u0000l\u0000u\u0000g\u0000g\u0000e\u0000d\u0000-\u0000i\u0000n\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0001\n\u0000on\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\n\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000m\u0001\u0000l\nm\u0000\u0018.fndrejctnull\u0000\u0000obj \r\u0001\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0001\u0001kj\r\u0001\u0001\u0000\u00012\u0000\u0001\u0000\u0000i\ni\u0000\u0004\ncdis\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000f\u0001\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000hgf\nh\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001g\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\ne\u0001\u0003\u0001\u0004\ne\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u0005dc\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000H\u0000E\u0000r\u0000r\u0000o\u0000r\u0000:\u0000 \u0000A\u0000 \u0000d\u0000e\u0000v\u0000i\u0000c\u0000e\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000j\u0000e\u0000c\u0000t\u0000e\u0000d\u0000!\u0001d\u0000\u0000\u0001c\u0000\u0000\u0006\u0001\u0004\u0000\u0003b\u0001\b\u0001\t\nb\u0000\u0004\nbtns\r\u0001\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000ba\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0004\u0000O\u0000k\u0002a\u0000\u0000\u0006\u0001\t\u0000\u0003`\u0001\u000e_\n`\u0000\u0004\ndisp\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004^\n^\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0006_\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000]\\[\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000W\u0001\u0015\u0001\u0016\u0001W\u0000\u0000\f\u0001\u0015\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u0014\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000V\u0001\u001a\u0001\u001b\u0001V\u0000\u0000\f\u0001\u001a\u0000\f\u0000\u0006 CLEAN\u0000\u0002\u0000\u0000\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\f\u0000 \u0000C\u0000L\u0000E\u0000A\u0000N\u0002\u0001\u0019\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000U\u0001\u001f\u0001 \u0001U\u0000\u0000\f\u0001\u001f\u0000I\u0000C ==================================================================\u0000\u0002\u0000\u0000\u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0000 \u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0000=\u0002\u0001\u001e\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000TSR\u0001T\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0013\u0001&QP\r\u0001&\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0013O\u0001'N\u000bO\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u0002\u0001'\u0000\u0002\u0001(M\r\u0001(\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001)\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000(\u0000C\u0000l\u0000e\u0000a\u0000n\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0002M\u0000\u0000\u0002N\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001%\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000I\u0001\/\u00010\u0001I\u0000\u0000\f\u0001\/\u0000\u0012\u0000\f Empty trash\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0002\u0001\u0014\u0001\"\u00014HG\r\u00014\u0000\u0002O\u0000\u0000\u0001\u0014\u0001\"\u00015\u00016\r\u00015\u0000\u0003I\u0000\u0002\u0001\u0018\u0001!F\u00017E\nF\u0000\u0018.fndremptnull\u0000\u0000obj \r\u00017\u0000\u0003l\u0001\u0000\u0001\u0018\u0001\u001d\u00018DC\r\u00018\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001dB\nB\u0000\u0004\ntrsh\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002E\u0000\u0000\r\u00016\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u00019\u000f\u00019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000{H+\u0000\u0000\u0000ZK\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000])\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\n\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000ZK\u0000ZJ\u0000ZI\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00013\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000A@?\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001;\u0000\u0002\u0001<\u0001=\r\u0001<\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000>\u0001>\u0001?\u0001>\u0000\u0000\f\u0001>\u0000*\u0000$ Delete contents of Downloads folder\u0000\u0002\u0000\u0000\u000e\u0001?\u0000\u0001\u0001@\u0011\u0001@\u0000H\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000c\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0001=\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0001#\u0001*\u0001C=<\r\u0001C\u0000\u0003I\u0000\u0002\u0001#\u0001*;\u0001D:\n;\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001D\u0000\u0001m\u0000\u0000\u0001#\u0001&\u0001E\u000e\u0001E\u0000\u0001\u0001F\u0011\u0001F\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000\/\u0000*\u0002:\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001B\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000987\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001H\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00006\u0001K\u0001L\u00016\u0000\u0000\f\u0001K\u0000,\u0000& Delete all extra node_modules folders\u0000\u0002\u0000\u0000\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000L\u0000 \u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000e\u0000x\u0000t\u0000r\u0000a\u0000 \u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0002\u0001J\u0000\u0002\u0001N5\r\u0001N\u0000\u0003l\u0000\u0002\u0001+\u00012\u0001O43\r\u0001O\u0000\u0003I\u0000\u0002\u0001+\u000122\u0001P1\n2\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001P\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0001Q\u000e\u0001Q\u0000\u0001\u0001R\u0011\u0001R\u0000\u0000f\u0000i\u0000n\u0000d\u0000 \u0000~\u0000\/\u0000'\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000D\u0000r\u0000i\u0000v\u0000e\u0000'\u0000 \u0000-\u0000n\u0000a\u0000m\u0000e\u0000 \u0000'\u0000n\u0000o\u0000d\u0000e\u0000_\u0000m\u0000o\u0000d\u0000u\u0000l\u0000e\u0000s\u0000'\u0000 \u0000-\u0000t\u0000y\u0000p\u0000e\u0000 \u0000d\u0000 \u0000-\u0000e\u0000x\u0000e\u0000c\u0000 \u0000r\u0000m\u0000 \u0000-\u0000r\u0000 \u0000'\u0000{\u0000}\u0000'\u0000 \u0000'\u0000;\u0000'\u0000 \u0000|\u0000|\u0000 \u0000t\u0000r\u0000u\u0000e\u00021\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u000e0\u0001S\/\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y.-,+*\u00010\u0000\u0000\u0010\u0001S\u0000\f)('&%$#\"! \u001f\u001e\u000b)\u0000\u001e0\u0000\rprogresssteps\u0000\rprogressSteps\u000b(\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b&\u0000\u000e0\u0000\nwhite_list\u0000\u0000\u000b%\u0000\u00100\u0000\fprocess_list\u0000\u0000\u000b$\u0000\u00100\u0000\fthis_process\u0000\u0000\u000b#\u0000\r0\u0000\tprocesses\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0003\/\u0000\u001e\u000e\u0001T\u0000\u0007\u0010\u001d\u0000(\u001c\u001b\u0001Z\u0001[\u001a\u000b\u001d\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\u000e\u001c\u0000\u0002\u0004\u0019\u0001\\\u0003\u0019\u0000\u0001\u000e\u0001\\\u0000\u0001\u0000\u0018\n\u0018\u0000\u0004\ndscr\u0002\u001b\u0000\u0000\u0010\u0001Z\u0000\u0001\u0017\n\u0017\u0000\u0004\ndscr\u0010\u0001[\u0000\u0003\u0016\u0015\u0014\n\u0016\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0015\u0000\u0004\nppga\n\u0014\u0000\u0004\nppgc\u0011\u001a\u0000$kj\f\u0000\u0000O*,FOb\u0000\u0001\u0000\u0000k\u001eEc\u0000\u0001\u0000\u0000Ob\u0000\u0001\u0000\u0000*,F\u000f\u000e\u0001U\u0000\u0007\u0010\u0013\u0001]\u0012\u0011\u0001^\u0001_\u0010\n\u0013\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001]\u0000\u0001k\u0000\u0000\u0000\u0000\u00012\u0001`\u0002\u0001`\u0000\u0002\u0000\u0016\u0001a\u0002\u0001a\u0000\u0002\u0000\u001d\u0001b\u0002\u0001b\u0000\u0002\u0000Q\u0001c\u0002\u0001c\u0000\u0002\u0000_\u0001d\u0002\u0001d\u0000\u0002\u0000j\u0001e\u0002\u0001e\u0000\u0002\u0000w\u0001f\u0002\u0001f\u0000\u0002\u0000\u0001g\u0002\u0001g\u0000\u0002\u0000\u0001h\u0002\u0001h\u0000\u0002\u0000\u0001i\u0002\u0001i\u0000\u0002\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001$\u0001k\u0002\u0001k\u0000\u0002\u00012\u0001l\u0002\u0001l\u0000\u0002\u0001A\u0001m\u0002\u0001m\u0000\u0002\u0001N\u000f\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\u0010\u0001^\u0000\u0002\u000e\r\u000b\u000e\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\r\u0000\u000b0\u0000\u0007process\u0000\u0000\u0010\u0001_\u0000\/\u0000\u001b\f\u000b\u0000V\n\u0000i\t\b\u0000r\u0000u\u0007\u0000\u0006\u0001n\u0005\u0004\u0003\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\f\u0001)\u0001E\u0001Q\n\f\u0000\u0004\nppgd\n\u000b\u0000\u0004\nppgt\u000b\n\u0000 0\u0000\u000eupdateprogress\u0000\u000eupdateProgress\n\t\u0000\u0004\nprcs\n\b\u0000\u0004\npvis\u000b\u0007\u0000\u000e0\u0000\nwhite_list\u0000\u0000\n\u0006\u0000\u0004\npnam\u000e\u0001n\u0000\u0000\u0013\u000b\u0005\u0000\u00100\u0000\fprocess_list\u0000\u0000\n\u0004\u0000\u0004\ncobj\n\u0003\u0000\u0004\nnmbr\u000b\u0002\u0000\u00100\u0000\fthis_process\u0000\u0000\n\u0001\u0000\u0004\ncapp\n\u0000\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0002\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tprocesses\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\ncdis\n\u0000\u0018.fndrejctnull\u0000\u0000obj \n\u0000\u0004\ntrsh\n\u0000\u0018.fndremptnull\u0000\u0000obj \u0011\u0010\u00013*,FOm*,FO*k+\u0000\u0004O\u0012\u0000\te*-,FUOlvEO\u0014\u0000X\u0012\u0000\u0012*-,[,\\Ze81EUO\u0017\u0000<k-a\u0000\u0010,Ekh\u001c\u0000\u0000\/E`\u0000\u0011O_\u0000\u0011\b\u000b\u001d\u0000\u0016*a\u0000\u0012_\u0000\u0011\/\u0012\u0000\u0007*j\f\u0000\u0013UY\u0000\u0003h[OYW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000\u0016a\u0000\u0017a\u0000\u0018kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cOa\u0000\u001da\u0000\u001elvE`\u0000\u001fO\u0017\u0000%_\u0000\u001f[a\u0000 l\f\u0000!kh\u001b\u0000\u0001a\u0000\"%a\u0000#%j\f\u0000$[OYO*a\u0000%k+\u0000\u0004O\u0014\u0000\u0013\u0012\u0000\u000b*a\u0000&-j\f\u0000'UW\u0000\u001eX\u0000\u0014\u0000\u0015a\u0000(a\u0000\u0017a\u0000)kva\u0000\u0019a\u0000\u001aa\u0000\u001b\f\u0000\u001cO*a\u0000*k+\u0000\u0004O\u0012\u0000\u000b*a\u0000+,j\f\u0000,UOa\u0000-j\f\u0000$Oa\u0000.j\f\u0000$\u000f\u000e\u0001V\u0000\u0002\u0004\u0001o\u0003\u0000\u0002\u000e\u0001o\u0000\u0002\u0000\u0000r\u0000u\u000e\u0001W\u0000\u0002\u0004\u0001p\u0003\u0000\t\u000e\u0001p\u0000\t\u0000\u0001q\u0001r\u0001s\u0001t\u0001u\u0001v\u0001w\u0001x\u0001X\u000e\u0001q\u0000\u0001\u0001y\u0011\u0001y\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u000e\u0001r\u0000\u0001\u0001z\u0011\u0001z\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u000e\u0001s\u0000\u0001\u0001{\u0011\u0001{\u0000\u000e\u0000T\u0000o\u0000d\u0000o\u0000i\u0000s\u0000t\u000e\u0001t\u0000\u0001\u0001|\u0011\u0001|\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\u000e\u0001u\u0000\u0001\u0001}\u0011\u0001}\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u000e\u0001v\u0000\u0001\u0001~\u0011\u0001~\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u000e\u0001w\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000M\u0000a\u0000i\u0000l\u000e\u0001x\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000D\u0000a\u0000s\u0000h\u000e\u0001X\u0000\u0001\u0001\u0011\u0001\u0000\u001e\u0000q\u0000u\u0000i\u0000t\u0000-\u0000a\u0000l\u0000l\u0000-\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u000e\u0001Y\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c07a79cda06f5267907bdeab742e86619b89001f","subject":"Go to Document","message":"Go to Document\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\"\\t\"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n\non myOpenDocument()\nset command1 to \"cd ~\/Library\/Developer\/CoreSimulator\/Devices\/;\"\nset command2 to \"cd `ls -t | head -n 1`\/data\/Containers\/Data\/Application;\"\nset command3 to \"cd `ls -t | head -n 1`\/Documents;\"\nset command4 to \"open .\"\ndo shell script command1 & command2 & command3 & command4\nend myOpenDocument\n\non myOpenAbout()\nopen location \"https:\/\/github.com\/onmyway133\/XcodeWay\"\nend myOpenAbout\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\"\\t\"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n\non myOpenAbout()\nopen location \"https:\/\/github.com\/onmyway133\/XcodeWay\"\nend myOpenAbout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5ca2a0af88602d49c0f8f7863d63555b23006119","subject":"Update with fixes for Yosemite & Shellshock test","message":"Update with fixes for Yosemite & Shellshock test\n\nCleaned up OS version detection to use \"as number\" for clarity and accuracy.\r\n\r\nSpecified a single \"OK\" button on dialogs that didn't need a cancel button.\r\n\r\nAdded Yosemite SWUpdate URL.\r\n\r\nAdded a \"target file\" variable in the reset functions to gracefully handle using either the \".bashrc\" or \".profile\" as needed by the OS version.\r\n\r\nRestored the missing \"current user\" text insert in the resetThisUserCPU() function. This was causing it not to actually specify the user account to delete, so it wasn't deleting anything.\r\n\r\nAdded testing for several Shellshock vulnerabilities, although currently it does nothing to resolve.\r\n\r\nAdded Yosemite-specific command to FlushDNSCache()","repos":"nilness\/mhqtools","old_file":"main.scpt","new_file":"main.scpt","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4c62865b8514a97650337791112b5eab5bd92523","subject":"Cleanup show_results script","message":"Cleanup show_results script\n","repos":"ascarter\/Go-bbpackage,ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,grmartin\/Go-bbpackage,ascarter\/Go-bbpackage,grmartin\/Go-bbpackage,ascarter\/Go.bbpackage,ascarter\/Go.bbpackage,ascarter\/Go-bbpackage","old_file":"Contents\/Resources\/show_results.applescript","new_file":"Contents\/Resources\/show_results.applescript","new_contents":"#! \/usr\/bin\/osascript\n\n# Display runner results in BBEdit Results Browser\n#\n# Expected arguments:\n# title -- tile for results browser\n#\tdoc -- path to document\n# messages -- sorted list of messages\non run argv\n\tif (count of argv) < 3 then\n\t\terror \"Usage: bbresults [title] [doc] [messages]\"\n\tend if\n\t\n\tset title to ((item 1 of argv) as string)\n\tset doc to POSIX file ((item 2 of argv) as string)\n\tset messages to (item 3 of argv)\n\t\n\ttell application \"Finder\"\n\t\tset resources to (container of (path to me)) as string\n\t\tset golib to load script ((resources & \"package.scpt\") as alias)\n\t\ttell golib to showResults(title, doc, messages)\n\tend tell\n\t\n\treturn\nend run","old_contents":"#! \/usr\/bin\/osascript\n\n# Display runner results in BBEdit Results Browser\n#\n# Expected arguments:\n# title -- tile for results browser\n#\tdoc -- path to document\n# messages -- sorted list of messages\non run argv\n\tif (count of argv) < 3 then\n\t\terror \"Usage: bbresults [title] [doc] [messages]\"\n\tend if\n\t\n\t\n\tset title to ((item 1 of argv) as string)\n\tset doc to POSIX file ((item 2 of argv) as string)\n\tset messages to (item 3 of argv)\n\t\n\ttell application \"Finder\"\n\t\tset resources to (container of (path to me)) as string\n\t\tset golib to load script ((resources & \"package.scpt\") as alias)\n\t\ttell golib to showResults(title, doc, messages)\n\tend tell\n\t\n\treturn\nend run","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"72a32386a7ee951a413e6228317f3cedf8460553","subject":"Wording change","message":"Wording change\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Processing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"b9239b0fb9c7aee148d59846287d711e56245a81","subject":"The chapter file is now generated.","message":"The chapter file is now generated.\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg, via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/chapters\" as text)\n set theCounter to (do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/chapters\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Clean up\n -- do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/chapters\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Make the pipes\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n display dialog (item theIndex of these_files as text)\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"b439c64f60db0bf30649041686753bb7eb2e9e37","subject":"Properly use tab","message":"Properly use tab\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\"\\t\"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\" \"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5ec1c244b021710645dc22e0cc07404ab8e5861f","subject":"remove tab","message":"remove tab\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_track.applescript","new_file":"lib\/scripts\/get_track.applescript","new_contents":"on escape_quotes(string_to_escape)\n set AppleScript's text item delimiters to the \"\\\"\"\n set the item_list to every text item of string_to_escape\n set AppleScript's text item delimiters to the \"\\\\\\\"\"\n set string_to_escape to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n set ctrack to \"{\"\n set ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n set ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n set ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n set ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n set ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n set ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n set ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n set ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"artwork_url\\\": \\\"\" & current track's artwork url & \"\\\"\"\n set ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n set ctrack to ctrack & \"}\"\nend tell\n","old_contents":"on escape_quotes(string_to_escape)\n\tset AppleScript's text item delimiters to the \"\\\"\"\n\tset the item_list to every text item of string_to_escape\n\tset AppleScript's text item delimiters to the \"\\\\\\\"\"\n\tset string_to_escape to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n\tset ctrack to \"{\"\n\tset ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n\tset ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n\tset ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n\tset ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n\tset ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n\tset ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"artwork_url\\\": \\\"\" & current track's artwork url & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n\tset ctrack to ctrack & \"}\"\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"01a0e8eeca2e98715ebb487bf8b0d2af5034c5a2","subject":"Simplified iCal script","message":"Simplified iCal script\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402688\n","repos":"incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(\u0000\u0000\u0000\u0000\u0001x\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u0001zGRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000=\u0000L\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000=\u0000L\u0000m\u0000n\r\u0000m\u0000\u0002\\\u0000\u0000\u0000=\u0000H\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000p\u0000\u0002l\u0000\u0005\u0000@\u0000G\u0000q\r\u0000q\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000r\u0000s\r\u0000r\u0000\u00011\u0000\u0000\u0000C\u0000G\n\u0000\u0004\ntime\r\u0000s\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0002\u0000M\u0000T\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000M\u0000T\u0000w\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0002l\u0000\u0005\u0000M\u0000P\u0000x\r\u0000x\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002l\u0000\u0002\u0000U\u0000d\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000U\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002\\\u0000\u0000\u0000U\u0000`\u0000~\u0000\r\u0000~\u0000\u0002[\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002]\u0000\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\ndays\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000e\u0000l\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000e\u0000h\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000h\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000m\u0002B\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0002B\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0002A\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000s\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000}\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000s\u0000y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000u\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000~\u0001z\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001u\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001t\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001o\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001n\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e\tCatch events that start today\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000F\u0000@\tCatch events that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\u0007\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\b\u0001\b\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001\b\u0001n\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0001\b\u0001\r\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\b\u0001\r\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\b\u0001\u000b\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\r\u0000\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\f\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0010\u0001j\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0010\u0001\u0017\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0001\u0010\u0001\u0013\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0013\u0000\f\u0000\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0018\u0001!\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001d\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\"\u0001-\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\"\u0001)\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001%\u0001)\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0001\"\u0001%\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001.\u0001P\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001.\u0001L\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0001.\u0001H\u0000\u0006\u0000\u0000\u0003}\u0000\u0000\u000b}\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u00011\u00016\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00012\u00016|\n|\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u00011\u00012{\u000b{\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003z\u0000\u0000\u000bz\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u00019\u0001>\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001:\u0001>y\ny\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u00019\u0001:x\u000bx\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003w\u0000v\u000bw\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001Du\u000bu\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001H\u0001Kt\nt\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001Q\u0001^\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001Q\u0001Z\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001Q\u0001V\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0001o\u0000\u0000\u0001Q\u0001Tq\u000bq\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002r\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001V\u0001Yp\np\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0002r\u0000\u0000\u0001_\u0001j\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u0001_\u0001f\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0001_\u0001bm\u000bm\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0001b\u0001el\u000bl\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002n\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000i\ni\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000g\ng\u0000\u0004\nwres\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0002l\u0000\u0002\u0001{\u0001{fe\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0002l\u0000\u0001\u0001{\u0001{d\u0001\b\u0001d\u0000\u0000\f\u0001\b\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002l\u0000\u0002\u0001{\u0001{cb\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0004Z\u0000\u0000\u0001{\u0001\u0001\r\u0001\u000ea`\r\u0001\r\u0000\u0002l\u0000\u0005\u0001{\u0001\u0001\u000f_\r\u0001\u000f\u0000\u0002=\u0000\u0000\u0001{\u0001\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002n\u0000\u0000\u0001{\u0001\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0001\u0001^\n^\u0000\u0004\nnmbr\r\u0001\u0013\u0000\u0002n\u0001\u0000\u0001{\u0001\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u00012\u0000\u0001\u0001~\u0001]\n]\u0000\u0004\ncobj\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001{\u0001~\\\u000b\\\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0001\u0001[\u0003[\u0000\u0000\u0001_\u0000\u0000\r\u0001\u000e\u0000\u0002O\u0000\u0001\u0001\u0001\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\t\u0001\u0001\u0001\u0018Z\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0001\u0001YX\u0001\u0019\nY\u0000\u0018.notifygrnull\u0000\u0000null\u0001X\u0000\u0000\u0006\u0001\u0019\u0000\u0003W\u0001\u001a\u0001\u001b\nW\u0000\u0004\nname\r\u0001\u001a\u0000\u0002l\u0000\t\u0001\u0001\u0001\u001cV\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001d\f\u0001\u001d\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001V\u0000\u0000\u0006\u0001\u001b\u0000\u0003U\u0001\u001e\u0001\u001f\nU\u0000\u0004\ntitl\r\u0001\u001e\u0000\u0002l\u0000\t\u0001\u0001\u0001 T\r\u0001 \u0000\u0001m\u0000\u0000\u0001\u0001\u0001!\f\u0001!\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u001f\u0000\u0003S\u0001\"\u0001#\nS\u0000\u0004\ndesc\r\u0001\"\u0000\u0002l\u0000\t\u0001\u0001\u0001$R\r\u0001$\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001R\u0000\u0000\u0006\u0001#\u0000\u0003Q\u0001&P\nQ\u0000\u0004\nappl\r\u0001&\u0000\u0001m\u0000\u0000\u0001\u0001\u0001'\f\u0001'\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006P\u0000\u0000\u0001Z\u0000\u0000\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0002l\u0000\u0002\u0001\u0001ON\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0001)\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0005Y\u0000\u0000\u0001\u0002?\u0001,M\u0001-\u0001.L\r\u0001,\u0000\u0001k\u0000\u0000\u0001\u0002:\u0001\/\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0002r\u0000\u0000\u0001\u0001\u00012\u00013\r\u00012\u0000\u0002n\u0000\u0000\u0001\u0001\u00014\u00015\r\u00014\u0000\u00024\u0000\u0000\u0001\u0001K\u00016\nK\u0000\u0004\ncobj\r\u00016\u0000\u0001o\u0000\u0000\u0001\u0001J\u000bJ\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u00011\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003Q\u0000\u0000\u0001\u0001\u00019\u0001:\u0001;\r\u00019\u0000\u0002r\u0000\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u0002l\u0000\u0005\u0001\u0001\u0001>G\r\u0001>\u0000\u0002b\u0000\u0000\u0001\u0001\u0001?\u0001@\r\u0001?\u0000\u0002b\u0000\u0000\u0001\u0001\u0001A\u0001B\r\u0001A\u0000\u0002n\u0000\u0000\u0001\u0001\u0001C\u0001D\r\u0001C\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001D\u0000\u0001o\u0000\u0000\u0001\u0001E\u000bE\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001B\u0000\u0001m\u0000\u0000\u0001\u0001\u0001E\f\u0001E\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001@\u0000\u0002n\u0000\u0000\u0001\u0001\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0001\u0001D\u000bD\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001G\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001G\u0000\u0000\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001:\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000A@?\nA\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001@\u0000\u0000\u0002?\u0000\u0000\r\u0001;\u0000\u0002r\u0000\u0000\u0001\u0001\u0001H\u0001I\r\u0001H\u0000\u0002b\u0000\u0000\u0001\u0001\u0001J\u0001K\r\u0001J\u0000\u0001m\u0000\u0000\u0001\u0001\u0001L\f\u0001L\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001K\u0000\u0002n\u0000\u0000\u0001\u0001\u0001M\u0001N\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001N\u0000\u0001o\u0000\u0000\u0001\u0001=\u000b=\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u00018\u0000\u0002\u0001O\u0001P\r\u0001O\u0000\u0002l\u0000\u0002\u0002\u0000\u0002\u0000;:\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003Q\u0000\u0000\u0002\u0000\u0002\u001d\u0001S\u0001T\u0001U\r\u0001S\u0000\u0002r\u0000\u0000\u0002\u0003\u0002\u000e\u0001V\u0001W\r\u0001V\u0000\u0002n\u0000\u0000\u0002\u0003\u0002\n\u0001X\u0001Y\r\u0001X\u0000\u0001o\u0000\u0000\u0002\u0006\u0002\n9\u000b9\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001Y\u0000\u0001o\u0000\u0000\u0002\u0003\u0002\u00068\u000b8\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001T\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000654\n6\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00015\u0000\u0000\u00024\u0000\u0000\r\u0001U\u0000\u0002r\u0000\u0000\u0002\u0016\u0002\u001d\u0001Z\u0001[\r\u0001Z\u0000\u0001m\u0000\u0000\u0002\u0016\u0002\u0019\u0001\\\f\u0001\\\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00003\u000b3\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001R\u0000\u0002\u0001]\u0001^\r\u0001]\u0000\u0002l\u0000\u0002\u0002\u001e\u0002\u001e21\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001^\u0000\u0002\u0001_0\r\u0001_\u0000\u0002O\u0000\u0001\u0002\u001e\u0002:\u0001`\u0001a\r\u0001`\u0000\u0002l\u0000\t\u0002\"\u00029\u0001b\/\r\u0001b\u0000\u0003I\u0000\u0002\u0002\"\u00029.-\u0001c\n.\u0000\u0018.notifygrnull\u0000\u0000null\u0001-\u0000\u0000\u0006\u0001c\u0000\u0003,\u0001d\u0001e\n,\u0000\u0004\nname\r\u0001d\u0000\u0002l\u0000\t\u0002$\u0002'\u0001f+\r\u0001f\u0000\u0001m\u0000\u0000\u0002$\u0002'\u0001g\f\u0001g\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001+\u0000\u0000\u0006\u0001e\u0000\u0003*\u0001h\u0001i\n*\u0000\u0004\ntitl\r\u0001h\u0000\u0002l\u0000\t\u0002(\u0002+\u0001j)\r\u0001j\u0000\u0001o\u0000\u0000\u0002(\u0002+(\u000b(\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001)\u0000\u0000\u0006\u0001i\u0000\u0003'\u0001k\u0001l\n'\u0000\u0004\ndesc\r\u0001k\u0000\u0002l\u0000\t\u0002.\u00021\u0001m&\r\u0001m\u0000\u0001o\u0000\u0000\u0002.\u00021%\u000b%\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001&\u0000\u0000\u0006\u0001l\u0000\u0003$\u0001n#\n$\u0000\u0004\nappl\r\u0001n\u0000\u0001m\u0000\u0000\u00022\u00025\u0001o\f\u0001o\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006#\u0000\u0000\u0001\/\u0000\u0000\r\u0001a\u0000\u0001m\u0000\u0000\u0002\u001e\u0002\u001f\u0000P\u00020\u0000\u0000\u000bM\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001-\u0000\u0001m\u0000\u0000\u0001\u0001\"\u0003\"\u0000\u0001\r\u0001.\u0000\u0002n\u0000\u0000\u0001\u0001\u0001p\u0001q\r\u0001p\u0000\u0001m\u0000\u0000\u0001\u0001!\n!\u0000\u0004\nnmbr\r\u0001q\u0000\u0002n\u0001\u0000\u0001\u0001\u0001r\u0001s\r\u0001r\u0000\u00012\u0000\u0001\u0001\u0001 \n \u0000\u0004\ncobj\r\u0001s\u0000\u0001o\u0000\u0000\u0001\u0001\u001f\u000b\u001f\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001L\u0000\u0000\u0002\u0001+\u0000\u0002\u0001t\u001e\r\u0001t\u0000\u0002l\u0000\u0002\u0002@\u0002@\u001d\u001c\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0001u\u000f\u0001u\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app\u05a0\u0000\u0000\u0000\u0000\u001fP<\u0004(\u0000\u0000\u0000\u0001\u0001x\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u0001zwrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001w\u0000\u0002\u0001x\u0019\r\u0001x\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0018\u0017\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\u0019\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0016\u0001y\u0001z\u0001\u0016\u0000\u0000\u0010\u0001y\u0000\u0001\u0015\n\u0015\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001z\u0000\u0007\u0010\u0014\u0001{\u0013\u0012\u0001|\u0001}\u0011\n\u0014\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001{\u0000\u0001k\u0000\u0000\u0000\u0000\u0002B\u0001~\u0002\u0001~\u0000\u0002\u0000.\u0001\u0002\u0001\u0000\u0002\u0000e\u0001\u0002\u0001\u0000\u0002\u0000j\u0001\u0002\u0001\u0000\u0002\u0000t\u0001\u0002\u0001\u0000\u0002\u0000y\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0010\u0002\u0010\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0012\u0000\u0000\u0010\u0001|\u0000\u0003\u000f\u000e\r\u000b\u000f\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u000e\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\r\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0001}\u0000C\u0000P\u0000B\u0000D\f\u000b\u0000I\n\t\b\u0000O\u0007\u0006\u0005\u0000X\u0004\u0000\\\u0003\u0000`\u0000b\u0002\u0001\u0000\u0001u\u0000\u0001\u001d\u0001!\u0001%\u0001'\u0001E\u0001L\u0001\\\u0001g\u0001o\u000b\f\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u000b\u0000\u0004\nappl\n\n\u0000\u0004\nanot\n\t\u0000\u0004\ndnot\n\b\u0000\u0004\niapp\u0003\u0007\u0000\b\n\u0006\u0000\u0018.registernull\u0000\u0000null\n\u0005\u0000\u0004\nname\n\u0004\u0000\u0004\ntitl\n\u0003\u0000\u0004\ndesc\n\u0002\u0000\u0018.notifygrnull\u0000\u0000null\n\u0001\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0000\u0004\ntime\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ndays\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0000\u0004\nlist\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0000\u0004\nwres\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nwrev\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\n\u0000\u0004\nwr1s\n\u0000\u0004\nbool\n\u0000\u0004\nwr5s\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\n\u0000\u0004\ntstr\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0000\u0004\nwr11\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0000\u0004\nwr12\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0000\u0006\n\u0000\u0004\nreco\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\n\u0000\u0004\nnmbr\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011\u0011\u0002C\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015O_\u0000\u0015_\u0000\u0015a\u0000\u0016,\u001fE`\u0000\u0017O_\u0000\u0017j\f\u0000\u0018O_\u0000\u0017k_\u0000\u0019 \u001ek\u001fE`\u0000\u001aO_\u0000\u001aj\f\u0000\u0018Oa\u0000\u001b\u0012\u0001jva\u0000\u001c&E`\u0000\u001dO\u0017\u0000*a\u0000\u001e-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0000\u0012\u0000\u0017\u0000*a\u0000\"-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0001\u0012\u0000fE`\u0000#O*a\u0000$,_\u0000\u0017\u0003\t\u0000\u000f*a\u0000$,_\u0000\u001a\u0005a\u0000%&\u001d\u0000\neE`\u0000#Y\u0000\u0003hO*a\u0000&,_\u0000\u0015\u0003\t\u0000\u000f*a\u0000$,_\u0000\u0017\u0005a\u0000%&\u001d\u0000\neE`\u0000#Y\u0000\u0003hO_\u0000#e\u0000\u001d\u0000_a\u0000'j\f\u0000\u0018O*a\u0000$,E`\u0000(O_\u0000(a\u0000),E`\u0000*Oa\u0000+a\u0000,,a\u0000-a\u0000.,a\u0000\/_\u0000*a\u00000\u000ea\u00001&E`\u00002O_\u00002kva\u0000\u001c&E`\u00003O_\u0000\u001d_\u00003%E`\u0000\u001dY\u0000\u0003hU[OY=U[OY\u001bO_\u0000\u001da\u0000 -a\u00004,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u00005a\u00006a\u0000\u0010a\u00007a\u00008\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000k_\u0000\u001da\u0000 -a\u00004,Ekh\u001c\u0000\u0002_\u0000\u001da\u0000 \/E`\u00009O\u0014\u0000\u001c_\u00009a\u0000+,a\u0000:%_\u00009a\u0000\/,%E`\u0000;W\u0000\u0016X\u0000<\u0000=a\u0000>_\u00009a\u0000\/,%E`\u0000;O\u0014\u0000\u0010_\u00009a\u0000-,E`\u0000?W\u0000\u000eX\u0000<\u0000=a\u0000@E`\u0000?O\u0012\u0000\u0019*a\u0000A_\u0000;a\u0000\u0010_\u0000?a\u0000B\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u0002L\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000O\u0012GrowlHelperApp.appL\u00007\u0010\u0690\u00000\u0000g`\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0003z(K \u06b0\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000O\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000)\u0000\u0000\u0000\u0001\u0000\u001c\u0000O\u0000O\u0000O\u0000\u0003+m\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000bWideBoy:Users:diggory:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000ZUsers\/diggory\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000l\u0000m\r\u0000l\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u0000=\u0000|\u0000p\r\u0000p\u0000\u0002r\u0000\u0000\u0000=\u0000|\u0000q\u0000r\r\u0000q\u0000\u0002c\u0000\u0000\u0000=\u0000x\u0000s\u0000t\r\u0000s\u0000\u0002l\u0000\u0005\u0000=\u0000t\u0000u\r\u0000u\u0000\u0002b\u0000\u0000\u0000=\u0000t\u0000v\u0000w\r\u0000v\u0000\u0002b\u0000\u0000\u0000=\u0000p\u0000x\u0000y\r\u0000x\u0000\u0002b\u0000\u0000\u0000=\u0000l\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000=\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000=\u0000`\u0000~\u0000\r\u0000~\u0000\u0002b\u0000\u0000\u0000=\u0000X\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000T\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000L\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000H\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000G\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000L\u0000S\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000S\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000L\u0000O\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000X\u0000_\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000[\u0000_\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000[\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000`\u0000c\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000{\u0000\u0002n\u0000\u0000\u0000d\u0000k\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000g\u0000k\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000d\u0000g\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000y\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0000\f\u0000\u0000\u0012\u0000\f 12:00:00 am\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000t\u0000w\n\u0000\u0004\nTEXT\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000}\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000}\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0012\u0000\f 11:59:59 pm\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwres\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0001\u0002\u0002&\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0002!\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001#\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0017\u0001\u001f\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0001\u001a\u0001\u001f\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u001a\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001$\u0001$\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001$\u0002!\u0000\u0001\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001*\u0002 \u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002r\u0000\u0000\u0001*\u00013\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u00012\u0000\u0000\u0001*\u0001\/\n\u0000\u0004\nwrev\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0002\u0001\u0003\u0000\u0002\u0001\u0006\r\u0001\u0006\u0000\u0005Y\u0000\u0000\u00014\u0002 \u0001\u0007\u0001\b\u0001\t~\r\u0001\u0007\u0000\u0001k\u0000\u0000\u0001I\u0002\u001b\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0001I\u0001U\u0001\r\u0001\u000e\r\u0001\r\u0000\u0002n\u0000\u0000\u0001I\u0001Q\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u00024\u0000\u0000\u0001L\u0001Q}\u0001\u0011\n}\u0000\u0004\ncobj\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001O\u0001P|\u000b|\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001I\u0001L{\u000b{\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0001\f\u0000\u0002\u0001\u0012y\r\u0001\u0012\u0000\u0002O\u0000\u0000\u0001V\u0002\u001b\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001k\u0000\u0000\u0001\\\u0002\u001a\u0001\u0015\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\u0002\u0001\\\u0001\\xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0001\u0001\\\u0001\\v\u0001\u001a\u0001v\u0000\u0000\f\u0001\u001a\u0000$\u0000\u001e\tCatch events that start today\u0000\u0002\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\\\u0001a\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0001\\\u0001]u\nu\u0000\b\u000bboovfals\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0001\u001c\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0004Z\u0000\u0000\u0001b\u0001\u0001!\u0001\"sr\r\u0001!\u0000\u0002F\u0000\u0000\u0001b\u0001{\u0001#\u0001$\r\u0001#\u0000\u0002l\u0000\u0005\u0001b\u0001k\u0001%q\r\u0001%\u0000\u0002?\u0000\u0000\u0001b\u0001k\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0001b\u0001gp\np\u0000\u0004\nwr1s\r\u0001'\u0000\u0001o\u0000\u0000\u0001g\u0001jo\u000bo\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001q\u0000\u0000\r\u0001$\u0000\u0002l\u0000\u0005\u0001n\u0001w\u0001(n\r\u0001(\u0000\u0002A\u0000\u0000\u0001n\u0001w\u0001)\u0001*\r\u0001)\u0000\u00011\u0000\u0000\u0001n\u0001sm\nm\u0000\u0004\nwr1s\r\u0001*\u0000\u0001o\u0000\u0000\u0001s\u0001vl\u000bl\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001n\u0000\u0000\r\u0001\"\u0000\u0002r\u0000\u0000\u0001~\u0001\u0001+\u0001,\r\u0001+\u0000\u0001m\u0000\u0000\u0001~\u0001k\nk\u0000\b\u000bboovtrue\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002s\u0000\u0000\u0001r\u0000\u0000\u0002\u0001 \u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002l\u0000\u0002\u0001\u0001ih\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0001\u0001\u0001g\u00011\u0001g\u0000\u0000\f\u00011\u0000F\u0000@\tCatch events that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u00010\u0000\u0002\u00012\u00013\r\u00012\u0000\u0004Z\u0000\u0000\u0001\u0001\u00014\u00015fe\r\u00014\u0000\u0002F\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002l\u0000\u0005\u0001\u0001\u00018d\r\u00018\u0000\u0002?\u0000\u0000\u0001\u0001\u00019\u0001:\r\u00019\u0000\u00011\u0000\u0000\u0001\u0001c\nc\u0000\u0004\nwr5s\r\u0001:\u0000\u0001o\u0000\u0000\u0001\u0001b\u000bb\u0000\u00070\u0000\u0003now\u0000\u0000\u0001d\u0000\u0000\r\u00017\u0000\u0002l\u0000\u0005\u0001\u0001\u0001;a\r\u0001;\u0000\u0002A\u0000\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u00011\u0000\u0000\u0001\u0001`\n`\u0000\u0004\nwr1s\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001a\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001>\u0001?\r\u0001>\u0000\u0001m\u0000\u0000\u0001\u0001^\n^\u0000\b\u000bboovtrue\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002f\u0000\u0000\u0001e\u0000\u0000\u0002\u00013\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\u0002\u0001\u0001\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0002l\u0000\u0002\u0001\u0001ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001C\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0004Z\u0000\u0000\u0001\u0002\u0018\u0001F\u0001GXW\r\u0001F\u0000\u0002l\u0000\u0005\u0001\u0001\u0001HV\r\u0001H\u0000\u0002=\u0000\u0003\u0001\u0001\u0001I\u0001J\r\u0001I\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\r\u0001J\u0000\u0001m\u0000\u0000\u0001\u0001T\nT\u0000\b\u000bboovtrue\u0001V\u0000\u0000\r\u0001G\u0000\u0001k\u0000\u0000\u0001\u0002\u0014\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001S\u0001NR\nS\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001N\u0000\u0002l\u0000\u0005\u0001\u0001\u0001OQ\r\u0001O\u0000\u0001m\u0000\u0000\u0001\u0001\u0001P\f\u0001P\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001Q\u0000\u0000\u0002R\u0000\u0000\u0002\u0001M\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002r\u0000\u0000\u0001\u0001\u0001S\u0001T\r\u0001S\u0000\u00011\u0000\u0000\u0001\u0001P\nP\u0000\u0004\nwr1s\r\u0001T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002r\u0000\u0000\u0001\u0001\u0001W\u0001X\r\u0001W\u0000\u0002n\u0000\u0000\u0001\u0001\u0001Y\u0001Z\r\u0001Y\u0000\u00011\u0000\u0000\u0001\u0001N\nN\u0000\u0004\ntstr\r\u0001Z\u0000\u0001o\u0000\u0000\u0001\u0001M\u000bM\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0001X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0001V\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0002r\u0000\u0000\u0001\u0001\u0001]\u0001^\r\u0001]\u0000\u0002c\u0000\u0000\u0001\u0001\u0001_\u0001`\r\u0001_\u0000\u0001K\u0000\u0000\u0001\u0001\u0001a\u0006\u0001a\u0000\u0003K\u0001b\u0001c\u000bK\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001b\u0000\u0002n\u0000\u0000\u0001\u0001\u0001d\u0001e\r\u0001d\u0000\u00011\u0000\u0000\u0001\u0001J\nJ\u0000\u0004\nwr11\r\u0001e\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001c\u0000\u0003H\u0001f\u0001g\u000bH\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001f\u0000\u0002n\u0000\u0000\u0001\u0001\u0001h\u0001i\r\u0001h\u0000\u00011\u0000\u0000\u0001\u0001G\nG\u0000\u0004\nwr12\r\u0001i\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001g\u0000\u0003E\u0001jD\u000bE\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001j\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006D\u0000\u0000\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0001B\nB\u0000\u0004\nreco\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0001\\\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002r\u0000\u0000\u0001\u0002\b\u0001m\u0001n\r\u0001m\u0000\u0002c\u0000\u0000\u0001\u0002\u0004\u0001o\u0001p\r\u0001o\u0000\u0001J\u0000\u0000\u0001\u0002\u0000\u0001q\u0002\u0001q\u0000\u0002\u0001r@\r\u0001r\u0000\u0001o\u0000\u0000\u0001\u0001?\u000b?\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002@\u0000\u0000\r\u0001p\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0003>\n>\u0000\u0004\nlist\r\u0001n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0001l\u0000\u0002\u0001s<\r\u0001s\u0000\u0002r\u0000\u0000\u0002\t\u0002\u0014\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0002\t\u0002\u0010\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0002\t\u0002\f;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001w\u0000\u0001o\u0000\u0000\u0002\f\u0002\u000f:\u000b:\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0001u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002<\u0000\u0000\u0002X\u0000\u0000\u0001W\u0000\u0000\u0002\u0001E\u0000\u0002\u0001x\u0001y\r\u0001x\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001987\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z6\r\u0001z\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001954\u00015\u0000\u0000\u00014\u0000\u0000\u00026\u0000\u0000\r\u0001\u0014\u0000\u0001o\u0000\u0000\u0001V\u0001Y3\u000b3\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002y\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\b\u0000\u0001m\u0000\u0000\u00017\u000182\u00032\u0000\u0001\r\u0001\t\u0000\u0002n\u0000\u0000\u00018\u0001D\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001?\u0001C1\n1\u0000\u0004\nnmbr\r\u0001|\u0000\u0002n\u0001\u0000\u00018\u0001?\u0001}\u0001~\r\u0001}\u0000\u00012\u0000\u0001\u0001;\u0001?0\n0\u0000\u0004\ncobj\r\u0001~\u0000\u0001o\u0000\u0000\u00018\u0001;\/\u000b\/\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0001~\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001$\u0001'.\u000b.\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006-\u0003-\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\u0012\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0011,\n,\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0001\u0006\u0001\r\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0001\t\u0001\r+\n+\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0006\u0001\t*\u000b*\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002')(\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002''&\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0001\u0002'\u0002'%\u0001\u0001%\u0000\u0000\f\u0001\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002'$#\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0002'\u0002W\u0001\u0001\"!\r\u0001\u0000\u0002l\u0000\u0005\u0002'\u00024\u0001 \r\u0001\u0000\u0002=\u0000\u0000\u0002'\u00024\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002'\u00022\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002.\u00022\u001f\n\u001f\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0002'\u0002.\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0002*\u0002.\u001e\n\u001e\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002'\u0002*\u001d\u000b\u001d\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0000\u0001m\u0000\u0000\u00022\u00023\u001c\u0003\u001c\u0000\u0000\u0001 \u0000\u0000\r\u0001\u0000\u0002O\u0000\u0001\u00027\u0002S\u0001\u0001\r\u0001\u0000\u0002l\u0000\t\u0002;\u0002R\u0001\u001b\r\u0001\u0000\u0003I\u0000\u0002\u0002;\u0002R\u001a\u0019\u0001\n\u001a\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0019\u0000\u0000\u0006\u0001\u0000\u0003\u0018\u0001\u0001\n\u0018\u0000\u0004\nname\r\u0001\u0000\u0002l\u0000\t\u0002=\u0002@\u0001\u0017\r\u0001\u0000\u0001m\u0000\u0000\u0002=\u0002@\u0001\f\u0001\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0017\u0000\u0000\u0006\u0001\u0000\u0003\u0016\u0001\u0001\n\u0016\u0000\u0004\ntitl\r\u0001\u0000\u0002l\u0000\t\u0002A\u0002D\u0001\u0015\r\u0001\u0000\u0001m\u0000\u0000\u0002A\u0002D\u0001\f\u0001\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001\u0015\u0000\u0000\u0006\u0001\u0000\u0003\u0014\u0001\u0001\n\u0014\u0000\u0004\ndesc\r\u0001\u0000\u0002l\u0000\t\u0002G\u0002J\u0001\u0013\r\u0001\u0000\u0001m\u0000\u0000\u0002G\u0002J\u0001\f\u0001\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001\u0013\u0000\u0000\u0006\u0001\u0000\u0003\u0012\u0001\u0011\n\u0012\u0000\u0004\nappl\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\f\u0001\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0011\u0000\u0000\u0001\u001b\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00027\u00028\u0000P\u0002\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002X\u0002X\u0010\u000f\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u0002X\u0002\u0001\u000e\u0001\u0001\r\r\u0001\u0000\u0001k\u0000\u0000\u0002m\u0002\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002m\u0002y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002m\u0002u\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0002p\u0002u\f\u0001\n\f\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002s\u0002t\u000b\u000b\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002m\u0002p\n\u000b\n\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002z\u0002\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002}\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0005\u0002}\u0002\u0001\b\r\u0001\u0000\u0002b\u0000\u0000\u0002}\u0002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002}\u0002\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002}\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u0007\u000b\u0007\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001\u0000\u0001o\u0000\u0000\u0002}\u0002\u0006\u000b\u0006\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u0005\u000b\u0005\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u0004\u000b\u0004\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001\b\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\n\u0002\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002\u0002\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002O\u0000\u0001\u0002\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u0002\u0001\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\nname\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\ntitl\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\ndesc\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nappl\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0000P\u0002\u0000\u0000\u000b\u000e\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002[\u0002\\\u0003\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\\\u0002h\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002c\u0002g\n\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0002\\\u0002c\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0002_\u0002c\n\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002\\\u0002_\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001\r\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000f\u0001\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0003^\biCal.app`\u00000L\u00007\u0010\u0590\u00000\u0000g\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0003z(K \u05b0\u0001wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\u0003^\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0014\u001e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0006\u000e\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0003^\u0000\u0002\u0000\u001dWideBoy:Applications:iCal.app\u0000\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001\u0002\u0001\u0000\u0002\u0000.\u0002\u0000\u0002\u0002\u0000\u0000\u0002\u0000i\u0002\u0001\u0002\u0002\u0001\u0000\u0002\u0000n\u0002\u0002\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0003\u0002\u0002\u0003\u0000\u0002\u0000\u0002\u0004\u0002\u0002\u0004\u0000\u0002\u0000\u0002\u0005\u0002\u0002\u0005\u0000\u0002\u0000\u0002\u0006\u0002\u0002\u0006\u0000\u0002\u0000\u0002\u0007\u0002\u0002\u0007\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\u0010\u0001\u0000W\u0000P\u0000B\u0000D\u0000I\u0000O\u0000X\u0000\\\u0000`\u0000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001P\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u0000\u0004\nappl\n\u0000\u0004\nanot\n\u0000\u0004\ndnot\n\u0000\u0004\niapp\u0003\u0000\b\n\u0000\u0018.registernull\u0000\u0000null\n\u0000\u0004\nname\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0018.notifygrnull\u0000\u0000null\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0000\u0004\nwkdy\n\u0000\u0004\nmnth\n\u0000\u0004\nday \n\u0000\u0004\nyear\n\u0000\u0004\nTEXT\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\n\u0000\u0004\nldt \u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0000\u0004\nwres\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\n\u0000\u0004\nlist\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\n\u0000\u0004\nwrev\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\n\u0000\u0004\nwr1s\n\u0000\u0004\nbool\n\u0000\u0004\nwr5s\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\n\u0000\u0004\ntstr\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0000\u0004\nwr11\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0000\u0004\nwr12\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0000\u0006\n\u0000\u0004\nreco\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011\u0002\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015Oa\u0000\u0016_\u0000\u0015a\u0000\u0017,%a\u0000\u0018%_\u0000\u0015a\u0000\u0019,%a\u0000\u001a%_\u0000\u0015a\u0000\u001b,%a\u0000\u001c%_\u0000\u0015a\u0000\u001d,%a\u0000\u001e%a\u0000\u001f%a\u0000 &E`\u0000!O*a\u0000\"_\u0000!\/E`\u0000#O_\u0000#j\f\u0000$Oa\u0000%_\u0000\u0015a\u0000\u0017,%a\u0000&%_\u0000\u0015a\u0000\u0019,%a\u0000'%_\u0000\u0015a\u0000\u001b,%a\u0000(%_\u0000\u0015a\u0000\u001d,%a\u0000)%a\u0000*%a\u0000 &E`\u0000+O*a\u0000\"_\u0000+\/E`\u0000,O_\u0000,j\f\u0000$Oa\u0000-\u0012\u0002\u0002*a\u0000.-E`\u0000\/Ojva\u00000&E`\u00001O\u0017\u0001#k_\u0000\/a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u0000\/a\u00002\/E`\u00004O_\u00004\u0012\u0000*a\u00005-E`\u00006O\u0017\u0000k_\u00006a\u00002-a\u00003,Ekh\u001c\u0000\u0001_\u00006a\u00002\/E`\u00007O_\u00007\u0012\u0000fE`\u00008O*a\u00009,_\u0000#\u0002\t\u0000\u000f*a\u00009,_\u0000,\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO*a\u0000;,_\u0000\u0015\u0002\t\u0000\u000f*a\u00009,_\u0000#\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO_\u00008e\u0000\u001d\u0000ca\u0000<j\f\u0000$O*a\u00009,E`\u0000=O_\u0000=a\u0000>,E`\u0000?Oa\u0000@_\u00007a\u0000A,a\u0000B_\u00007a\u0000C,a\u0000D_\u0000?a\u0000E\u000ea\u0000F&E`\u0000GO_\u0000Gkva\u00000&E`\u0000HO_\u00001_\u0000H%E`\u00001Y\u0000\u0003hOPU[OY(U[OYO_\u00001a\u00002-a\u00003,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u0000Ia\u0000Ja\u0000\u0010a\u0000Ka\u0000L\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000k_\u00001a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u00001a\u00002\/E`\u0000MO\u0014\u0000\u001c_\u0000Ma\u0000@,a\u0000N%_\u0000Ma\u0000D,%E`\u0000OW\u0000\u0016X\u0000P\u0000Qa\u0000R_\u0000Ma\u0000D,%E`\u0000OO\u0014\u0000\u0010_\u0000Ma\u0000B,E`\u0000SW\u0000\u000eX\u0000P\u0000Qa\u0000TE`\u0000SO\u0012\u0000\u0019*a\u0000U_\u0000Oa\u0000\u0010_\u0000Sa\u0000V\f\u0000\u0013U[OYOPU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b97c601301bf27c73656787f4350103647b0c445","subject":"remove unnecessary usage of System Events","message":"remove unnecessary usage of System Events\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_artwork.applescript","new_file":"lib\/scripts\/get_artwork.applescript","new_contents":"on replace_chars(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\non file_exists(filePath)\n tell application \"Finder\" to return exists filePath as POSIX file\nend file_exists\n\ntell application \"Spotify\"\n set currentArtwork to current track's artwork\n set savePath to POSIX path of (path to temporary items from user domain as string) & my replace_chars(current track's id,\":\",\"_\")\n set tiffPath to (savePath & \".tiff\")\n set pngPath to (savePath & \".png\")\nend tell\n\n-- don't do the image events dance when the file already exists\nif my file_exists(pngPath) then return pngPath\n\nif not (my file_exists(tiffPath)) then\n set fileRef to (open for access tiffPath with write permission)\n write currentArtwork to fileRef\n close access fileRef\nend\n\ntell application \"Image Events\"\n launch\n set theImage to open tiffPath\n save theImage as PNG in pngPath\n delete file tiffPath\n quit\nend tell\n\nreturn pngPath\n","old_contents":"on replace_chars(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\non file_exists(filePath)\n tell application \"Finder\" to return exists filePath as POSIX file\nend file_exists\n\ntell application \"Spotify\"\n set currentArtwork to current track's artwork\n set savePath to POSIX path of (path to temporary items from user domain as string) & my replace_chars(current track's id,\":\",\"_\")\n set tiffPath to (savePath & \".tiff\")\n set pngPath to (savePath & \".png\")\nend tell\n\n-- don't do the image events dance when the file already exists\nif my file_exists(pngPath) then return pngPath\n\ntell application \"System Events\"\n if not (my file_exists(tiffPath)) then\n set fileRef to (open for access tiffPath with write permission)\n write currentArtwork to fileRef\n close access fileRef\n end\n\n tell application \"Image Events\"\n launch\n set theImage to open tiffPath\n save theImage as PNG in pngPath\n quit\n end tell\n\n delete file tiffPath\n quit\nend tell\n\nreturn pngPath\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bdaf67af3fb3bcb4441348ee97d8ec77d7be34eb","subject":"Added code to handle checking for ffmpeg","message":"Added code to handle checking for ffmpeg\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Run NSTask to see if ffmpeg is installed...\n on awakeFromNib()\n -- Check for FFMPEG\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Cancel\",\"Install FFMPEG\"} default button 2\n end try\n \n end awakeFromNib\n \n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Run NSTask to see if ffmpeg is installed...\n\n \n \n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"7af829a404d3715bafb7165e92ae8230fadb2903","subject":"Escape double quote in name of track, alnum and artist.","message":"Escape double quote in name of track, alnum and artist.\n","repos":"katsuma\/itunes-client","old_file":"scripts\/track\/finder.tmpl.scpt","new_file":"scripts\/track\/finder.tmpl.scpt","new_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n\n set prop_name to name of specified_track\n\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & my escape_quote(name of specified_track) & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & my escape_quote(album of specified_track) & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & my escape_quote(artist of specified_track) & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n\n\non escape_quote(someText)\n return replaceText(someText, \"\\\"\", \"\\\\\\\"\")\nend escape_quote\n\n(*\n https:\/\/discussions.apple.com\/thread\/4588230?start=0&tstart=0\n*)\non replaceText(someText, oldItem, newItem)\n set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, oldItem}\n try\n set {itemList, AppleScript's text item delimiters} to {text items of someText, newItem}\n set {someText, AppleScript's text item delimiters} to {itemList as text, tempTID}\n on error errorMessage number errorNumber -- oops\n set AppleScript's text item delimiters to tempTID\n error errorMessage number errorNumber -- pass it on\n end try\n \n return someText\nend replaceText\n","old_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & name of specified_track & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & album of specified_track & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & artist of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d93c0aed7d6f94cf7469047c6bc24af94f14f635","subject":"Fix: Missing log file header causes error","message":"Fix: Missing log file header causes error\n\nThe missing log file header itself, which is caused when the log file\nlocation preference is changed during a script run, will be fixed in a\nfuture update.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-24\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\tset settings_controller to make_settings_controller(settings_model)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the main model\n\t\t\t--\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\ttell page_log\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _initialize_category()\n\t\t\tmy debug_log(1, my class & \"._initialize_category()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend _initialize_category\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tthis's _initialize_category()\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _root_categories to this's _model's get_root_categories()\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _all_categories to this's _model's get_all_categories()\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-24\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\tset settings_controller to make_settings_controller(settings_model)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the main model\n\t\t\t--\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\ttell page_log\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\t-- :TODO: Error handling\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\tend parse_log\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _initialize_category()\n\t\t\tmy debug_log(1, my class & \"._initialize_category()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend _initialize_category\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tthis's _initialize_category()\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here.\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Default Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _root_categories to this's _model's get_root_categories()\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _all_categories to this's _model's get_all_categories()\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2a62e31fa2b99a4e1ca2d2f7607f1afb33b61b5f","subject":"Fix new file selection edge cases","message":"Fix new file selection edge cases\n\nIf an empty or nonexistent file was the configured bookmarks log file on\nscript launch and then an existing, nonempty file was selected to be the\nnew log file in the script preferences dialog, then all the sample file\ndata would still get written to the new file selection because that new\nfile selection was not getting rechecked properly.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2015-01-13\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\tset __NULL_IO__ to this_arg's val\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2015-01-12\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\tset __NULL_IO__ to this_arg's val\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"5d51706d1477a5ca3801a8cb4e575ebbdceaa410","subject":"General housekeeping.","message":"General housekeeping.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign a result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\nrepeat\n\ttry\n\t\t-- Checking if Spotify is running and playing right now.\n\t\tif (isRunning() and isPlaying()) then\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ton error number errorNumber\n\t\t\t\t\t\t\t\t-- Checking if Spotify returns \"Cant get current track.\" error. It's being thrown when there's no track after an ad.\n\t\t\t\t\t\t\t\t-- Happens, for instance, when an ad has played after the last song on the playlist.\n\t\t\t\t\t\t\t\tif (errorNumber = -1728) then\n\t\t\t\t\t\t\t\t\t-- If it is, unmute Spotify and exit the loop.\n\t\t\t\t\t\t\t\t\tmy unmute(currentVolume)\n\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- Check if current track is an ad. Or if Spotify was paused during an advertisement.\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\t\t\t\t-- Delay until the end of an ad + 1 sec. \n\t\t\t\t\t\t\t-- If Spotify was paused, or there is a second ad, this loop will continue to repeat.\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t-- If there's no more ads, unmute and exit the loop.\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\tend if\n\t\tend if\n\tend try\n\t-- This is how fast we are polling Spotify. \n\t-- The only speed at which you will hear no sounds passing through.\n\t-- Fortunately, combined with the added load on Spotify, the CPU usage stays well below 1% even on an old dual-core 3.6 GHz processor.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- This is the only way possible to mute Spotify during an advertisement. Otherwise it pauses when you mute the sound.\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\tlocal currentVolume\n\tset currentVolume to volume\n\t\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(popularity, duration)\n\tlocal trackPopularity, trackDuration\n\tset trackPopularity to popularity\n\tset trackDuration to duration\n\t\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal applicationName, allLoginItems\n\tset applicationName to appName\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif applicationName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal applicationName, applicationPath, posixAppPath\n\tset applicationName to appName\n\tset applicationPath to appPath\n\t\n\ttry\n\t\t-- Translate a supplied application path to a POSIX standard (e.g. \"\/Applications\/SpotiFree.app\" to \":Applications:SpotiFree.app\").\n\t\tset posixAppPath to POSIX path of alias applicationPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","old_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign the result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\n-- Repeat this entire block every .3 seconds. As set at the end.\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying()) then -- Is Spotify running? Is it playing?\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ton error errorNumber\n\t\t\t\t\t\t\t\t-- Checking if Spotify returns \"Cant get current track.\" error. It's being thrown when there's no track after an ad.\n\t\t\t\t\t\t\t\t-- Happens when an ad has played after the last song on the playlist.\n\t\t\t\t\t\t\t\tif (errorNumber = -1728) then\n\t\t\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then -- Check if current track is not an advertisement.\n\t\t\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend if\n\tend try\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level it was before muting.\n\t\t\tset sound volume to volume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(trackPopularity, trackDuration)\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal allLoginItems\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif appName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal posixAppPath\n\ttry\n\t\t-- Get the POSIX (Portable Operating System Interface) path of inputted appPath.\n\t\tset posixAppPath to POSIX path of alias appPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6234acb82717bba55b5dc059cb54cef82241b822","subject":"Added a newline to the end of the script - snak seemed unhappy without this.","message":"Added a newline to the end of the script - snak seemed unhappy without this.\n","repos":"Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,morganestes\/morganestes-growl,timbck2\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,chashion\/growl,nkhorman\/archive-growl,ylian\/growl,nkhorman\/archive-growl,xhruso00\/growl,nochkin\/growl,nagyistoce\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,timbck2\/growl,tectronics\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,chashion\/growl,timbck2\/growl,nkhorman\/archive-growl,nochkin\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,tectronics\/growl,timbck2\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,xhruso00\/growl,nagyistoce\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,nochkin\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,ylian\/growl,nochkin\/growl,SalrJupiter\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,timbck2\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,SalrJupiter\/growl,SalrJupiter\/growl,xhruso00\/growl,ylian\/growl,tectronics\/growl,CarlosCD\/growl,CarlosCD\/growl,nagyistoce\/growl,tectronics\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,chashion\/growl,Shalaco\/shalzers-growl,ylian\/growl,CarlosCD\/growl,nagyistoce\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,an0nym0u5\/growl,ylian\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,chashion\/growl,morganestes\/morganestes-growl,timbck2\/growl,SalrJupiter\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,an0nym0u5\/growl","old_file":"Scripts\/Snak\/Growl.scpt","new_file":"Scripts\/Snak\/Growl.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000! \u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u0001o\u0000\u0002\u0001p\u001f\r\u0001p\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001c\u0001q\u0001r\u0001s\u0001t\u0001\u001c\u0000\u0000\u0010\u0001q\u0000\u0003\u001b\u001a\u0019\u000b\u001b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001a\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u0019\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001r\u0000\u0007\u0010\u0018\u0000\b\u0017\u0016\u0001u\u0001v\u0015\u000b\u0018\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0017\u0000\u0000\u0002\u0016\u0000\u0000\u0010\u0001u\u0000\u0001\u0014\u000b\u0014\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001v\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0013\u0000\u001a\u0012\u0011\u0010\u0000 \u000f\u000e\n\u0013\u0000\u0004\nappl\n\u0012\u0000\u0004\nanot\n\u0011\u0000\u0004\ndnot\n\u0010\u0000\u0004\niapp\u0003\u000f\u0000\b\n\u000e\u0000\u0018.registernull\u0000\u0000null\u0011\u0015\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001s\u0000\u0007\u0010\r\u0000)\f\u000b\u0001w\u0001x\n\u000b\r\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\f\u0000\u0002\u0004\t\u0001y\u0003\t\u0000\u0005\u000e\u0001y\u0000\u0005\u0000\b\u0007\u0006\u0005\u0004\u000b\b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0006\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0005\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0004\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u000b\u0000\u0000\u0010\u0001w\u0000\f\u0003\u0002\u0001\u0000\u000b\u0003\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0001\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001x\u0000\u0019\u0000|\u0001z\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001z\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\n\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001t\u0000\u0007\u0010\u0001'\u0001{\u0001|\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001}\u0003\u0000\u0005\u000e\u0001}\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001{\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001|\u0000\u0012\u0000|\u0001z\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n!\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000 \u001f\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001e\u0001o\u0001p\u0001q\u0001r\u0001\u001e\u0000\u0000\u0010\u0001o\u0000\u0003\u001d\u001c\u001b\u000b\u001d\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001c\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u001b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001p\u0000\u0007\u0010\u001a\u0000\b\u0019\u0018\u0001s\u0001t\u0017\u000b\u001a\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0010\u0001s\u0000\u0001\u0016\u000b\u0016\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001t\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0015\u0000\u001a\u0014\u0013\u0012\u0000 \u0011\u0010\n\u0015\u0000\u0004\nappl\n\u0014\u0000\u0004\nanot\n\u0013\u0000\u0004\ndnot\n\u0012\u0000\u0004\niapp\u0003\u0011\u0000\b\n\u0010\u0000\u0018.registernull\u0000\u0000null\u0011\u0017\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001q\u0000\u0007\u0010\u000f\u0000)\u000e\r\u0001u\u0001v\f\u000b\u000f\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\u000e\u0000\u0002\u0004\u000b\u0001w\u0003\u000b\u0000\u0005\u000e\u0001w\u0000\u0005\u0000\n\t\b\u0007\u0006\u000b\n\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\t\u0000\n0\u0000\u0006source\u0000\u0000\u000b\b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0006\u0000\r0\u0000\tthestring\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001u\u0000\f\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0005\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0004\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0003\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0001\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001v\u0000\u0019\u0000|\u0001x\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001x\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\f\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001r\u0000\u0007\u0010\u0001'\u0001y\u0001z\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001{\u0003\u0000\u0005\u000e\u0001{\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001y\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001z\u0000\u0012\u0000|\u0001x\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8383a2c0f01ef2e79a74a291b20c5895d00497db","subject":"Woot for delay 0.5! applescript handles non-integer delays!","message":"Woot for delay 0.5! applescript handles non-integer delays!","repos":"gskielian\/Jarvis","old_file":"Jarvis.applescript","new_file":"Jarvis.applescript","new_contents":"tell application \"System Events\" to key code 49 using {command down}\ndelay 0.3\ntell application \"System Events\" to keystroke \"terminal\"\ntell application \"System Events\" to key code 36\ndelay 0.3\ntell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\ntell application \"System Events\" to key code 123\n\ntell application \"System Events\" to key code 63\ntell application \"System Events\" to key code 63\ndelay 4\ntell application \"System Events\" to tell process \"DictationIM\"\n\tclick button 1\nend tell\ndelay 1.2\ntell application \"System Events\" to key code 36\n","old_contents":"tell application \"System Events\" to key code 49 using {command down}\ndelay 1\ntell application \"System Events\" to keystroke \"terminal\"\ntell application \"System Events\" to key code 36\ndelay 2\ntell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\ntell application \"System Events\" to key code 123\n\ntell application \"System Events\" to key code 63\ntell application \"System Events\" to key code 63\ndelay 2\ntell application \"System Events\" to tell process \"DictationIM\"\n\tclick button 1\nend tell\ndelay 1\ntell application \"System Events\" to key code 36\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ab9e11ce88fb10bd5ed9915044fa88da99179725","subject":"update fmGUI_ManageScripts_FmScript_Select","message":"update fmGUI_ManageScripts_FmScript_Select\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageScripts\/fmGUI_ManageScripts_FmScript_Select.applescript","new_file":"library\/fmGUI_ManageScripts\/fmGUI_ManageScripts_FmScript_Select.applescript","new_contents":"-- fmGUI_ManageScripts_FmScript_Select({})\n-- Daniel A. Shockley, NYHTC\n-- Select an existing script in the Script Workspace.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository.\n\t1.3.1 - 2017-06-05 ( eshagdar ): the name of the script is the name of UI elemnt, not the value of a text field.\n\t1.3 - 2017-01-12 ( eshagdar ): updated for FM15 - script names are now in a splitter group.\n\t2017-06-05 ( eshagdar ): we should just be using the search bar instead of scanning through the list\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_DataViewer_Close\n\tfmGUI_Inspector_Close\n\tfmGUI_ManageScripts_Open\n\tfmGUI_ManageScripts_ScriptListFocus\n\tfmGUI_ManageScripts_SearchBoxClear\n\tfmGUI_ManageScripts_SearchBoxFind\n\tquoteString\n\tunParseChars\n\t\n*)\n\nproperty debugMode : true\nproperty ScriptName : \"fmGUI_ManageScripts_FmScript_Select\"\n\non run\n\tfmGUI_ManageScripts_FmScript_Select({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageScripts_FmScript_Select(prefs)\n\t-- version 1.3.1\n\t\n\t-- Attempt to select a FileMaker Script based on name or, alternatively, other partial matches.\n\t\n\t\n\tset defaultPrefs to {fmScriptName:null, altPatterns:null}\n\tset prefs to prefs & defaultPrefs\n\t(* EXAMPLE:\n\taltPatterns:{\n\t\t{pattern:{{testType:\"is\", testMatch:\"z_Auto1\"}}},\n\t\t{pattern:{{testType:\"startsWith\", testMatch:\"z\"},{testType:\"endsWith\", testMatch:\"_Auto1\"}}}\n\t\t}\n\t*)\n\t\n\t\n\t-- CONSTANTS: \n\tset testCodeHeader to \"tell application \\\"System Events\\\"\" & return & \"tell application process \\\"FileMaker Pro Advanced\\\"\" & return\n\tset selectCode to \"select (\"\n\tset rowRefCode to \"first row of (outline 1 of scroll area 1 of splitter group 1 of window 1)\"\n\tset whoseCode to \" whose \"\n\tset scriptNameObjectCode to \"name of UI Element 1\"\n\t-- (then some test will be inserted)\n\tset betweenTestsCode to \" and \"\n\t-- (then possibly some other test will be inserted)\n\tset afterAllTestsCode to \")\"\n\tset testCodeFooter to return & \"end tell\" & return & \"end tell\"\n\t\n\t\n\ttry\n\t\tif fmScriptName of prefs is equal to \"-\" then error \"This is a SEPARATOR SCRIPT - don't try to edit it!\" number -1024\n\t\t\n\t\tfmGUI_AppFrontMost()\n\t\tfmGUI_Inspector_Close()\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageScripts_Open({})\n\t\tfmGUI_ManageScripts_ScriptListFocus({})\n\t\t\n\t\t\n\t\tfmGUI_ManageScripts_SearchBoxFind({searchCriteria:fmScriptName of prefs})\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t(*\n\t\t\t\tset searchField to text field 1 of splitter group 1 of window 1\n\t\t\t\tset focused of searchField to true\n\t\t\t\tdelay 0.25\n\t\t\t\tkeystroke \"a\" using command down\n\t\t\t\tkey code 51 -- clear the search box\n\t\t\t\tdelay 0.25\n\t\t\t\tset value of searchField to fmScriptName of prefs\n\t\t\t\tkeystroke tab\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t-- SELECT the easy way if the object is directly available:\n\t\t\t\tif (exists (first row of (outline 1 of scroll area 1 of splitter group 1 of window 1) whose name of UI element 1 is fmScriptName of prefs)) then\n\t\t\t\t\tselect (first row of (outline 1 of scroll area 1 of splitter group 1 of window 1) whose name of UI element 1 is fmScriptName of prefs)\n\t\t\t\t\treturn true\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\telse -- if NOT found, then seek by alternate patterns, if specified: \n\t\t\t\t\t\n\t\t\t\t\t-- NOT FOUND, so try each altPattern: \n\t\t\t\t\tset scriptNowSelected to false\n\t\t\t\t\t\n\t\t\t\t\tmy fmGUI_ManageScripts_SearchBoxClear({})\n\t\t\t\t\trepeat with oneAltPattern in altPatterns of prefs\n\t\t\t\t\t\tset testList to contents of pattern of oneAltPattern\n\t\t\t\t\t\tif testList is equal to {{}} then\n\t\t\t\t\t\t\t--list of empty list, so we can't do anything with it\t\t\t\t\t\t\t\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t-- there are some valid items, so loop over them\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- BEGIN: try oneAltPattern: \n\t\t\t\t\t\t\t\tset testCode to {}\n\t\t\t\t\t\t\t\trepeat with oneTestRec in testList\n\t\t\t\t\t\t\t\t\tcopy (\"\" & testType of oneTestRec & \" \" & quoteString(testMatch of oneTestRec)) to end of testCode\n\t\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset testCode to unParseChars(testCode, betweenTestsCode & scriptNameObjectCode & \" \")\n\t\t\t\t\t\t\t\tset testCode to selectCode & rowRefCode & whoseCode & scriptNameObjectCode & \" \" & testCode & afterAllTestsCode\n\t\t\t\t\t\t\t\tset testCode to testCodeHeader & testCode & testCodeFooter\n\t\t\t\t\t\t\t\ttell me to run script testCode\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset scriptNowSelected to true -- no error, so we selected it.\n\t\t\t\t\t\t\t\texit repeat -- no need to keep checking altPatterns\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t-- ERROR: try oneAltPattern. \n\t\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t\tif errNum is not -1719 then\n\t\t\t\t\t\t\t\t\t-- some error OTHER than not found in list:\n\t\t\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t-- just try the next altPattern, so continue repeat loop.\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t-- END OF: try oneAltPattern. \n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t-- END OF: List had things. \n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\treturn scriptNowSelected\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageScripts_FmScript_Select '\" & fmScriptName of prefs & \"' - \" & errMsg number errNum\n\tend try\nend fmGUI_ManageScripts_FmScript_Select\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_Inspector_Close()\n\ttell application \"htcLib\" to fmGUI_Inspector_Close()\nend fmGUI_Inspector_Close\n\non fmGUI_ManageScripts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_Open(prefs)\nend fmGUI_ManageScripts_Open\n\non fmGUI_ManageScripts_ScriptListFocus(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_ScriptListFocus(prefs)\nend fmGUI_ManageScripts_ScriptListFocus\n\non fmGUI_ManageScripts_SearchBoxClear(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_SearchBoxClear(prefs)\nend fmGUI_ManageScripts_SearchBoxClear\n\non fmGUI_ManageScripts_SearchBoxFind(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_SearchBoxFind(prefs)\nend fmGUI_ManageScripts_SearchBoxFind\n\non quoteString(prefs)\n\ttell application \"htcLib\" to quoteString(prefs)\nend quoteString\n\non unParseChars(prefs)\n\ttell application \"htcLib\" to unParseChars(prefs)\nend unParseChars\n\n","old_contents":"-- fmGUI_ManageScripts_FmScript_Select({})\n-- Daniel A. Shockley, NYHTC\n-- Select an existing script in the Script Workspace.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository.\n\t1.3.1 - 2017-06-05 ( eshagdar ): the name of the script is the name of UI elemnt, not the value of a text field.\n\t1.3 - 2017-01-12 ( eshagdar ): updated for FM15 - script names are now in a splitter group.\n\t2017-06-05 ( eshagdar ): we should just be using the search bar instead of scanning through the list\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_DataViewer_Close\n\tfmGUI_Inspector_Close\n\tfmGUI_ManageScripts_Open\n\tfmGUI_ManageScripts_ScriptListFocus\n\tfmGUI_ManageScripts_SearchBoxClear\n\tfmGUI_ManageScripts_SearchBoxFind\n\tunParseChars\n\t\n*)\n\nproperty debugMode : true\nproperty ScriptName : \"fmGUI_ManageScripts_FmScript_Select\"\n\non run\n\tfmGUI_ManageScripts_FmScript_Select({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageScripts_FmScript_Select(prefs)\n\t-- version 1.3.1\n\t\n\t-- Attempt to select a FileMaker Script based on name or, alternatively, other partial matches.\n\t\n\t\n\tset defaultPrefs to {fmScriptName:null, altPatterns:null}\n\tset prefs to prefs & defaultPrefs\n\t(* EXAMPLE:\n\taltPatterns:{\n\t\t{pattern:{{testType:\"is\", testMatch:\"z_Auto1\"}}},\n\t\t{pattern:{{testType:\"startsWith\", testMatch:\"z\"},{testType:\"endsWith\", testMatch:\"_Auto1\"}}}\n\t\t}\n\t*)\n\t\n\t\n\t-- CONSTANTS: \n\tset testCodeHeader to \"tell application \\\"System Events\\\"\" & return & \"tell application process \\\"FileMaker Pro Advanced\\\"\" & return\n\tset selectCode to \"select (\"\n\tset rowRefCode to \"first row of (outline 1 of scroll area 1 of splitter group 1 of window 1)\"\n\tset whoseCode to \" whose \"\n\tset scriptNameObjectCode to \"name of UI Element 1\"\n\t-- (then some test will be inserted)\n\tset betweenTestsCode to \" and \"\n\t-- (then possibly some other test will be inserted)\n\tset afterAllTestsCode to \")\"\n\tset testCodeFooter to return & \"end tell\" & return & \"end tell\"\n\t\n\t\n\ttry\n\t\tif fmScriptName of prefs is equal to \"-\" then error \"This is a SEPARATOR SCRIPT - don't try to edit it!\" number -1024\n\t\t\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\tfmGUI_Inspector_Close()\n\t\t\tfmGUI_DataViewer_Close()\n\t\t\tfmGUI_ManageScripts_Open({})\n\t\t\tfmGUI_ManageScripts_ScriptListFocus({})\n\t\tend tell\n\t\t\n\t\t\n\t\tfmGUI_ManageScripts_SearchBoxFind({searchCriteria:fmScriptName of prefs})\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t(*\n\t\t\t\tset searchField to text field 1 of splitter group 1 of window 1\n\t\t\t\tset focused of searchField to true\n\t\t\t\tdelay 0.25\n\t\t\t\tkeystroke \"a\" using command down\n\t\t\t\tkey code 51 -- clear the search box\n\t\t\t\tdelay 0.25\n\t\t\t\tset value of searchField to fmScriptName of prefs\n\t\t\t\tkeystroke tab\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t-- SELECT the easy way if the object is directly available:\n\t\t\t\tif (exists (first row of (outline 1 of scroll area 1 of splitter group 1 of window 1) whose name of UI element 1 is fmScriptName of prefs)) then\n\t\t\t\t\tselect (first row of (outline 1 of scroll area 1 of splitter group 1 of window 1) whose name of UI element 1 is fmScriptName of prefs)\n\t\t\t\t\treturn true\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\telse -- if NOT found, then seek by alternate patterns, if specified: \n\t\t\t\t\t\n\t\t\t\t\t-- NOT FOUND, so try each altPattern: \n\t\t\t\t\tset scriptNowSelected to false\n\t\t\t\t\t\n\t\t\t\t\tmy fmGUI_ManageScripts_SearchBoxClear({})\n\t\t\t\t\trepeat with oneAltPattern in altPatterns of prefs\n\t\t\t\t\t\tset testList to contents of pattern of oneAltPattern\n\t\t\t\t\t\tif testList is equal to {{}} then\n\t\t\t\t\t\t\t--list of empty list, so we can't do anything with it\t\t\t\t\t\t\t\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t-- there are some valid items, so loop over them\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- BEGIN: try oneAltPattern: \n\t\t\t\t\t\t\t\tset testCode to {}\n\t\t\t\t\t\t\t\ttell application \"htcLib\"\n\t\t\t\t\t\t\t\t\trepeat with oneTestRec in testList\n\t\t\t\t\t\t\t\t\t\tcopy (\"\" & testType of oneTestRec & \" \" & quoteString(testMatch of oneTestRec)) to end of testCode\n\t\t\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\ttell application \"htcLib\" to set testCode to unParseChars(testCode, betweenTestsCode & scriptNameObjectCode & \" \")\n\t\t\t\t\t\t\t\tset testCode to selectCode & rowRefCode & whoseCode & scriptNameObjectCode & \" \" & testCode & afterAllTestsCode\n\t\t\t\t\t\t\t\tset testCode to testCodeHeader & testCode & testCodeFooter\n\t\t\t\t\t\t\t\ttell me to run script testCode\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tset scriptNowSelected to true -- no error, so we selected it.\n\t\t\t\t\t\t\t\texit repeat -- no need to keep checking altPatterns\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t-- ERROR: try oneAltPattern. \n\t\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t\tif errNum is not -1719 then\n\t\t\t\t\t\t\t\t\t-- some error OTHER than not found in list:\n\t\t\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\t\t-- just try the next altPattern, so continue repeat loop.\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t-- END OF: try oneAltPattern. \n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t-- END OF: List had things. \n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\treturn scriptNowSelected\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageScripts_FmScript_Select '\" & fmScriptName of prefs & \"' - \" & errMsg number errNum\n\tend try\nend fmGUI_ManageScripts_FmScript_Select\n\n--------------------\n-- END OF CODE\n--------------------\n\n\n\n\n\n\n\n\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_Inspector_Close()\n\ttell application \"htcLib\" to fmGUI_Inspector_Close()\nend fmGUI_Inspector_Close\n\non fmGUI_ManageScripts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_Open(prefs)\nend fmGUI_ManageScripts_Open\n\non fmGUI_ManageScripts_ScriptListFocus(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_ScriptListFocus(prefs)\nend fmGUI_ManageScripts_ScriptListFocus\n\non fmGUI_ManageScripts_SearchBoxClear(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_SearchBoxClear(prefs)\nend fmGUI_ManageScripts_SearchBoxClear\n\non fmGUI_ManageScripts_SearchBoxFind(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageScripts_SearchBoxFind(prefs)\nend fmGUI_ManageScripts_SearchBoxFind\n\non unParseChars(prefs)\n\ttell application \"htcLib\" to unParseChars(prefs)\nend unParseChars\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1888de683e549d5809085fc22248ea6ef007b764","subject":"Fixed toggle DnD for Hammerspoon","message":"Fixed toggle DnD for Hammerspoon\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/ToggleDND.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/ToggleDND.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"94f71a4eaf05df93eace0a9d61df99a762efea5c","subject":"Delete jLinuxUpdater.scpt","message":"Delete jLinuxUpdater.scpt","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxUpdater.scpt","new_file":"Launcher\/Mac\/jLinuxUpdater.scpt","new_contents":"","old_contents":"display dialog \"Opening jLinux Updater...\" with title \"jLinux Updater\" buttons {\"Ok\"} default button 1\ndisplay alert \"Updating jLinux will close all active Terminal sessions and overwrite your current jLinux executable. Is this OK?\" buttons {\"Yes\", \"No\"} default button 1\nif button returned of result = \"Yes\" then\n\tdisplay alert \"Updating...\" giving up after 2\n\ttell application \"Terminal\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/latest.jar -o \/Applications\/jLinux\/latest.jar\"\n\t\tdelay 10\n\t\tdo script \"rm \/Applications\/jLinux\/jLinux.jar\"\n\t\tdo script \"mv \/Applications\/jLinux\/latest.jar \/Applications\/jLinux\/jLinux.jar\"\n\t\tquit\n\t\tdelay 1\n\tend tell\n\tdisplay alert \"Updated! Relaunching jLinux!\" giving up after 3\n\ttell application \"Terminal\"\n\t\tdo script \"java -jar \/Applications\/jLinux\/jLinux.jar\"\n\tend tell\nelse\n\tdisplay alert \"jLinux has NOT been updated! Re-run this program at any time to update to the latest jLinux version!\" giving up after 6\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"63370ef4fac3601f91a6c0422c41cfb646a39346","subject":"refactor: minor update to test AppleScript watcher","message":"refactor: minor update to test AppleScript watcher\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_contents":"--- Inspired by: http:\/\/www.makeuseof.com\/tag\/3-tools-unleash-mac-os-menu-bar\n\nto conditionalclose(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\tquit\n\t\t\treturn \"Quit \" & application_name\n\t\telse\n\t\t\t-- \tdisplay dialog \"Already quit \" & application_name\n\t\t\treturn \"Already quit \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.4\nend conditionalclose\n\nto conditionalopen(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\t-- \tdisplay dialog \"Already running \" & application_name\n\t\t\treturn application_name & \" is already open\"\n\t\telse\n\t\t\tlaunch\n\t\t\treturn \"Opened \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.2\nend conditionalopen\n\n-- if you are not sure about the exact name, start \"Activity Monitor\" (e.g. search it with Spotlight)\n-- and look up the \"Process Name\" (first column) in the list of running processes\n\n-- Open apps if not open already:\nconditionalopen(\"Sip\")\nconditionalopen(\"Dash\")\n-- conditionalopen(\"PopClip\") -- Causes CMD C to fail. Currently deactivated\nconditionalopen(\"Dropshelf\")\nconditionalopen(\"Flux\")\nconditionalopen(\"Downlink\")\n-- conditionalopen(\"Numi\")\n\n-- Background Apps\n-- conditionalopen(\"Rocket\")\n-- conditionalopen(\"BetterTouchTool\")\n-- conditionalopen(\"EvernoteHelper\")\nconditionalopen(\"Bartender 2\")\nconditionalopen(\"Dropbox\")\nconditionalopen(\"Backup and Sync\") -- Google Drive Sync\n\n-- Debugging:\n\n-- Use console to log timestamp and info to console upon error\n-- to logit(log_string, log_file)\n-- \tdo shell script \n-- \t\t\"echo `date '+%Y-%m-%d %T: '`\\\"\" & log_string & \n-- \t\t\"\\\" >> $HOME\/Library\/Logs\/\" & log_file & \".log\"\n-- end logit\n\n-- Quit any unneccessary apps\n-- conditionalclose(\"KeepingYouAwake\")\n\n-- Other method of printing results\nset dateStamp to date string of (current date)\nset timeStamp to time string of (current date)\nreturn \"This script was run on \" & dateStamp & \" at \" & timeStamp\n","old_contents":"--- Inspired by: http:\/\/www.makeuseof.com\/tag\/3-tools-unleash-mac-os-menu-bar\n\nto conditionalclose(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\tquit\n\t\t\treturn \"Quit \" & application_name\n\t\telse\n\t\t\t-- \tdisplay dialog \"Already quit \" & application_name\n\t\t\treturn \"Already quit \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.4\nend conditionalclose\n\nto conditionalopen(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\t-- \tdisplay dialog \"Already running \" & application_name\n\t\t\treturn application_name & \" is already open\"\n\t\telse\n\t\t\tlaunch\n\t\t\treturn \"Opened \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.2\nend conditionalopen\n\n-- if you are not sure about the exact name, start \"Activity Monitor\" (e.g. search it with Spotlight)\n-- and look up the \"Process Name\" (first column) in the list of running processes\n\n-- Open apps if not open already:\nconditionalopen(\"Sip\")\nconditionalopen(\"Dash\")\n-- conditionalopen(\"PopClip\") -- causes CMD C to fail...\nconditionalopen(\"Dropshelf\")\nconditionalopen(\"Flux\")\nconditionalopen(\"Downlink\")\n-- conditionalopen(\"Numi\")\n\n-- Background Apps\n-- conditionalopen(\"Rocket\")\n-- conditionalopen(\"BetterTouchTool\")\n-- conditionalopen(\"EvernoteHelper\")\nconditionalopen(\"Bartender 2\")\nconditionalopen(\"Dropbox\")\nconditionalopen(\"Backup and Sync\") -- Google Drive Sync\n\n-- Debugging:\n\n-- Use console to log timestamp and info to console upon error\n-- to logit(log_string, log_file)\n-- \tdo shell script \u00ac\n-- \t\t\"echo `date '+%Y-%m-%d %T: '`\\\"\" & log_string & \u00ac\n-- \t\t\"\\\" >> $HOME\/Library\/Logs\/\" & log_file & \".log\"\n-- end logit\n\n-- Quit any unneccessary apps\n-- conditionalclose(\"KeepingYouAwake\")\n\n-- Other method of printing results\nset dateStamp to date string of (current date)\nset timeStamp to time string of (current date)\nreturn \"This script was run on \" & dateStamp & \" at \" & timeStamp\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7db77bfb965e81abc1ec4f5d6b3017a8394e158b","subject":"also paste","message":"also paste\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"463d7d022de91452af3d57bc998646a891baca9f","subject":"Simplify sent mail script","message":"Simplify sent mail script\n","repos":"timkurvers\/waddup","old_file":"lib\/waddup\/sources\/apple_mail\/sent_mail.applescript","new_file":"lib\/waddup\/sources\/apple_mail\/sent_mail.applescript","new_contents":"on run argv\n set window_from to date (item 1 of argv)\n set window_to to date (item 2 of argv)\n\n tell application \"Mail\"\n set results to {}\n\n set msgs to (messages of sent mailbox whose date sent >= window_from and date sent <= window_to)\n repeat with msg in msgs\n set the end of results to {subject:subject of msg, datetime:date sent of msg as string}\n end repeat\n\n results\n end tell\nend run\n","old_contents":"on run argv\n set window_from to date (item 1 of argv)\n set window_to to date (item 2 of argv)\n\n tell application \"Mail\"\n set results to {}\n\n repeat with acct in every account\n set username to user name of acct\n try\n set mbox to mailbox \"[Gmail]\/All Mail\" of acct\n on error\n set mbox to mailbox \"Sent\" of acct\n end try\n\n set msgs to (messages whose sender contains username and date sent >= window_from and date sent <= window_to) in mbox\n repeat with msg in msgs\n set the end of results to {subject:subject of msg, datetime:date sent of msg as string}\n end repeat\n end repeat\n\n results\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"306b8d34795ac62c939e0f82bded76f76a094abd","subject":"Simplified \"Set Homepage\"","message":"Simplified \"Set Homepage\"\n\nChanged the mechanism for creating a new Safari preference file from launching Safari to just using \"touch\". This should eliminate the side effect of Safari opening every time the MHQ Tools app is opened.","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\tdo shell script \"touch \" & fileTarget\n\tend try\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or later we need to supply password\n\ttry\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or later we need to supply password\n\ttry\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"22cc98de79632c6c2647be6973b220be60c45b30","subject":"Encapsulate parts of Settings class that vary","message":"Encapsulate parts of Settings class that vary\n\nThe Settings class should be generic and reusable between applications.\nTake the parts that are unique to this application and encapsulate them\nin a separate class.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a78b011c7b4b1f132799f7568d2fb6f0a736efab","subject":"change `_read_file` to `read_file`","message":"change `_read_file` to `read_file`\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"bundler\/AlfredBundler.applescript","new_file":"bundler\/AlfredBundler.applescript","new_contents":"(* GLOBAL PROPERTIES \n\n&& $? for bash status codes\n\n*)\nproperty BUNDLER_VERSION : \"devel\"\n--# Bundler paths\nproperty _home : POSIX path of (path to \"cusr\" as text)\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty DATA_DIR : BUNDLER_DIR & \"\/data\"\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n--# Main Applescript Bundler\nproperty AS_BUNDLER : BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\"\n--# Root directory under which workflow-specific applescript libraries are installed\nproperty APPLESCRIPT_DIR : DATA_DIR & \"\/assets\/applescript\"\n--# Root directory under which Bundler utilities are installed\nproperty UTILITIES_DIR : DATA_DIR & \"\/assets\/utility\"\n--# Directory for Bundler icons\nproperty ICONS_DIR : DATA_DIR & \"\/assets\/icons\"\n--# Where color alternatives are cached\nproperty COLOR_CACHE : DATA_DIR & \"\/color-cache\"\n\n(* GLOBAL VARIABLES *)\n\n--# Where installer.sh can be downloaded from\nglobal BASH_BUNDLET_URL\nset BASH_BUNDLET_URL to my formatter(\"https:\/\/raw.githubusercontent.com\/shawnrice\/alfred-bundler\/{}\/bundler\/bundlets\/alfred.bundler.sh\", BUNDLER_VERSION)\n\n--# Bundler log file\nglobal BUNDLER_LOGFILE\nset BUNDLER_LOGFILE to my formatter((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\n\n(* \/\/\/\nUSER API\n\/\/\/ *)\n\non utility(_name, _version, _json)\n\t--# partial support for \"optional\" args in Applescript\n\tif my is_empty(_version) then\n\t\tset _version to \"latest\"\n\tend if\n\tif my is_empty(_json) then\n\t\tset _json to \"\"\n\tend if\n\t--# path to specific utility\n\tset utility to my joiner({UTILITIES_DIR, _name, _version}, \"\/\")\n\tif my folder_exists(utility) = false then\n\t\t--# if utility isn't already installed\n\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Utility at `{}` not found...\", utility))\n\t\tset bash_bundlet to (my dirname(AS_BUNDLER)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my joiner({bash_bundlet_cmd, \"utility\", _name, _version, _json}, space)\n\t\t\tset cmd to my prepare_cmd(cmd)\n\t\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Running shell command: `{}`...\", cmd))\n\t\t\tset full_path to (do shell script cmd)\n\t\t\treturn full_path\n\t\telse\n\t\t\tset error_msg to my logger(\"utility\", \"DEBUG\", my formatter(\"Internal bash bundlet `{}` does not exist.\", bash_bundlet))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\telse\n\t\t--# if utility is already installed\n\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Utility at `{}` found...\", utility))\n\t\t--# read utilities invoke file\n\t\tset invoke_file to utility & \"\/invoke\"\n\t\tif my file_exists(invoke_file) = true then\n\t\t\tset invoke_path to my _read_file(invoke_file)\n\t\t\t--# combine utility path with invoke path\n\t\t\tset full_path to utility & \"\/\" & invoke_path\n\t\t\treturn full_path\n\t\telse\n\t\t\tset error_msg to my logger(\"utility\", \"DEBUG\", my formatter(\"Internal invoke file `{}` does not exist.\", invoke_file))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\tend if\nend utility\n\n\non icon(_font, _name, _color, _alter)\n\t--# partial support for \"optional\" args in Applescript\n\tif my is_empty(_color) then\n\t\tset _color to \"000000\"\n\t\tif my is_empty(_alter) then\n\t\t\tset _alter to true\n\t\tend if\n\tend if\n\tif my is_empty(_alter) then\n\t\tset _alter to false\n\tend if\n\t--# path to specific icon\n\tset icon to my joiner({ICONS_DIR, _font, _color, _name}, \"\/\")\n\tif my folder_exists(icon) = false then\n\t\t--# if icon isn't already installed\n\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Icon at `{}` not found...\", icon))\n\t\tset bash_bundlet to (my dirname(AS_BUNDLER)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my joiner({bash_bundlet_cmd, \"icon\", _font, _name, _color, _alter}, space)\n\t\t\tset cmd to my prepare_cmd(cmd)\n\t\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Running shell command: `{}`...\", cmd))\n\t\t\tset full_path to (do shell script cmd)\n\t\telse\n\t\t\tset error_msg to my logger(\"icon\", \"DEBUG\", my formatter(\"Internal bash bundlet `{}` does not exist.\", bash_bundlet))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\telse\n\t\t--# if icon is already installed\n\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Icon at `{}` found...\", icon))\n\t\treturn icon\n\tend if\nend icon\n\n\n\n(* \/\/\/\nLOGGING HANDLER\n\/\/\/ *)\n\non logger(_handler, _level, _message)\n\t--# Ensure log file exists, with\n\t--# checking for scope of global var\n\ttry\n\t\tmy check_file(BUNDLER_LOGFILE)\n\ton error\n\t\tset BUNDLER_LOGFILE to my formatter((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\t\tmy check_file(BUNDLER_LOGFILE)\n\tend try\n\tdelay 0.1 -- delay to ensure IO action is completed\n\t--# Prepare time string format %Y-%m-%d %H:%M:%S\n\tset log_time to \"[\" & (my date_formatter()) & \"]\"\n\tset formatterted_time to text items 1 thru -4 of (time string of (current date)) as string\n\tset error_time to \"[\" & formatterted_time & \"]\"\n\t--# Prepare location message\n\tset _location to \"[bundler.scpt:\" & _handler & \"]\"\n\t--# Prepare level message\n\tset _level to \"[\" & _level & \"]\"\n\t--# Generate full error message for logging\n\tset log_msg to (my joiner({log_time, _location, _level, _message}, space)) & (ASCII character 10)\n\tmy write_to_file(log_msg, BUNDLER_LOGFILE, true)\n\t--# Generate regular error message for returning to user\n\tset error_msg to error_time & space & _location & space & _level & space & _message\n\treturn error_msg\nend logger\n\n(* \/\/\/\nSUB-ACTION HANDLERS\n\/\/\/ *)\n\non date_formatter()\n\tset {year:y, month:m, day:d} to current date\n\tset date_num to (y * 10000 + m * 100 + d) as string\n\tset formatterted_date to ((text 1 thru 4 of date_num) & \"-\" & (text 5 thru 6 of date_num) & \"-\" & (text 7 thru 8 of date_num))\n\tset formatterted_time to text items 1 thru -4 of (time string of (current date)) as string\n\treturn formatterted_date & space & formatterted_time\nend date_formatter\n\non _read_file(target_file)\n\topen for access POSIX file target_file\n\tset _contents to (read target_file)\n\tclose access target_file\n\treturn _contents\nend _read_file\n\non prepare_cmd(cmd)\n\tset pwd to quoted form of (my pwd())\n\treturn \"cd \" & pwd & \"; bash \" & cmd\nend prepare_cmd\n\n\n(* \/\/\/\nIO HELPER FUNCTIONS\n\/\/\/ *)\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access POSIX file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\n--# \non pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend pwd\n\non dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend dirname\n\non check_dir(_folder)\n\tif not my folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend check_dir\n\non check_file(_path)\n\tif not my file_exists(_path) then\n\t\tset _dir to dirname(_path)\n\t\tmy check_dir(_dir)\n\t\tdelay 0.1\n\t\tdo shell script \"touch \" & (quoted form of _path)\n\tend if\nend check_file\n\n--# handler to check if a folder exists\non folder_exists(_folder)\n\tif my path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend folder_exists\n\n--# handler to check if a file exists\non file_exists(_file)\n\tif my path_exists(_file) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _file) is file)\n\t\tend tell\n\tend if\n\treturn false\nend file_exists\n\n--# handler to check if a path exists\non path_exists(_path)\n\tif _path is missing value or my is_empty(_path) then return false\n\t\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend path_exists\n\n(* \/\/\/\nTEXT HELPER FUNCTIONS\n\/\/\/ *)\n\non split(str, delimiter)\n\tlocal delimiter, str, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delimiter\n\t\tset str to text items of str\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str --> list\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't explode: \" & msg number num\n\tend try\nend split\n\n--# format string \u00e1 la Python\non formatter(str, arg)\n\tlocal ASTID, str, arg, lst\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tconsidering case\n\t\t\tset AppleScript's text item delimiters to \"{}\"\n\t\t\tset lst to every text item of str\n\t\t\tset AppleScript's text item delimiters to arg\n\t\t\tset str to lst as string\n\t\tend considering\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't replaceString: \" & msg number num\n\tend try\nend formatter\n\n--# removes white space surrounding a string\non trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend trim\n\non joiner(pieces, delim)\n\tlocal delim, pieces, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delim\n\t\tset pieces to \"\" & pieces\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn pieces --> text\n\ton error emsg number eNum\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't implode: \" & emsg number eNum\n\tend try\nend joiner\n\n(* \/\/\/\nLOWER LEVEL HELPER FUNCTIONS\n\/\/\/ *)\n\n--# checks if a value is empty\non is_empty(str)\n\tif {true, false} contains str then return false\n\tif str is missing value then return true\n\treturn length of (my trim(str)) is 0\nend is_empty\n\n--TESTING!!\non test()\n\tset as_pwd to POSIX path of (path to me) as string\n\tset pwd to quoted form of my dirname(as_pwd)\n\tset cmd to quoted form of \"\/Users\/smargheim\/Documents\/DEVELOPMENT\/GitHub\/alfred-bundler\/bundler\/bundlets\/TEST.sh\"\n\tset sh_pwd to do shell script \"cd \" & pwd & \"; bash \" & cmd\n\treturn \"Applescript PWD: \" & as_pwd & return & \"Shell PWD: \" & sh_pwd\nend test","old_contents":"(* GLOBAL PROPERTIES \n\n&& $? for bash status codes\n\n*)\nproperty BUNDLER_VERSION : \"devel\"\n--# Bundler paths\nproperty _home : POSIX path of (path to \"cusr\" as text)\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty DATA_DIR : BUNDLER_DIR & \"\/data\"\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n--# Main Applescript Bundler\nproperty AS_BUNDLER : BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\"\n--# Root directory under which workflow-specific applescript libraries are installed\nproperty APPLESCRIPT_DIR : DATA_DIR & \"\/assets\/applescript\"\n--# Root directory under which Bundler utilities are installed\nproperty UTILITIES_DIR : DATA_DIR & \"\/assets\/utility\"\n--# Directory for Bundler icons\nproperty ICONS_DIR : DATA_DIR & \"\/assets\/icons\"\n--# Where color alternatives are cached\nproperty COLOR_CACHE : DATA_DIR & \"\/color-cache\"\n\n(* GLOBAL VARIABLES *)\n\n--# Where installer.sh can be downloaded from\nglobal BASH_BUNDLET_URL\nset BASH_BUNDLET_URL to my formatter(\"https:\/\/raw.githubusercontent.com\/shawnrice\/alfred-bundler\/{}\/bundler\/bundlets\/alfred.bundler.sh\", BUNDLER_VERSION)\n\n--# Bundler log file\nglobal BUNDLER_LOGFILE\nset BUNDLER_LOGFILE to my formatter((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\n\n(* \/\/\/\nUSER API\n\/\/\/ *)\n\non utility(_name, _version, _json)\n\t--# partial support for \"optional\" args in Applescript\n\tif my is_empty(_version) then\n\t\tset _version to \"latest\"\n\tend if\n\tif my is_empty(_json) then\n\t\tset _json to \"\"\n\tend if\n\t--# path to specific utility\n\tset utility to my joiner({UTILITIES_DIR, _name, _version}, \"\/\")\n\tif my folder_exists(utility) = false then\n\t\t--# if utility isn't already installed\n\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Utility at `{}` not found...\", utility))\n\t\tset bash_bundlet to (my dirname(AS_BUNDLER)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my joiner({bash_bundlet_cmd, \"utility\", _name, _version, _json}, space)\n\t\t\tset cmd to my prepare_cmd(cmd)\n\t\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Running shell command: `{}`...\", cmd))\n\t\t\tset full_path to (do shell script cmd)\n\t\t\treturn full_path\n\t\telse\n\t\t\tset error_msg to my logger(\"utility\", \"DEBUG\", my formatter(\"Internal bash bundlet `{}` does not exist.\", bash_bundlet))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\telse\n\t\t--# if utility is already installed\n\t\tmy logger(\"utility\", \"INFO\", my formatter(\"Utility at `{}` found...\", utility))\n\t\t--# read utilities invoke file\n\t\tset invoke_file to utility & \"\/invoke\"\n\t\tif my file_exists(invoke_file) = true then\n\t\t\tset invoke_path to my read_file(invoke_file)\n\t\t\t--# combine utility path with invoke path\n\t\t\tset full_path to utility & \"\/\" & invoke_path\n\t\t\treturn full_path\n\t\telse\n\t\t\tset error_msg to my logger(\"utility\", \"DEBUG\", my formatter(\"Internal invoke file `{}` does not exist.\", invoke_file))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\tend if\nend utility\n\n\non icon(_font, _name, _color, _alter)\n\t--# partial support for \"optional\" args in Applescript\n\tif my is_empty(_color) then\n\t\tset _color to \"000000\"\n\t\tif my is_empty(_alter) then\n\t\t\tset _alter to true\n\t\tend if\n\tend if\n\tif my is_empty(_alter) then\n\t\tset _alter to false\n\tend if\n\t--# path to specific icon\n\tset icon to my joiner({ICONS_DIR, _font, _color, _name}, \"\/\")\n\tif my folder_exists(icon) = false then\n\t\t--# if icon isn't already installed\n\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Icon at `{}` not found...\", icon))\n\t\tset bash_bundlet to (my dirname(AS_BUNDLER)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my joiner({bash_bundlet_cmd, \"icon\", _font, _name, _color, _alter}, space)\n\t\t\tset cmd to my prepare_cmd(cmd)\n\t\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Running shell command: `{}`...\", cmd))\n\t\t\tset full_path to (do shell script cmd)\n\t\telse\n\t\t\tset error_msg to my logger(\"icon\", \"DEBUG\", my formatter(\"Internal bash bundlet `{}` does not exist.\", bash_bundlet))\n\t\t\terror error_msg number 1\n\t\t\t--##TODO: need a stable error number schema\n\t\tend if\n\telse\n\t\t--# if icon is already installed\n\t\tmy logger(\"icon\", \"INFO\", my formatter(\"Icon at `{}` found...\", icon))\n\t\treturn icon\n\tend if\nend icon\n\n\n\n(* \/\/\/\nLOGGING HANDLER\n\/\/\/ *)\n\non logger(_handler, _level, _message)\n\t--# Ensure log file exists, with\n\t--# checking for scope of global var\n\ttry\n\t\tmy check_file(BUNDLER_LOGFILE)\n\ton error\n\t\tset BUNDLER_LOGFILE to my formatter((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\t\tmy check_file(BUNDLER_LOGFILE)\n\tend try\n\tdelay 0.1 -- delay to ensure IO action is completed\n\t--# Prepare time string format %Y-%m-%d %H:%M:%S\n\tset log_time to \"[\" & (my date_formatter()) & \"]\"\n\tset formatterted_time to text items 1 thru -4 of (time string of (current date)) as string\n\tset error_time to \"[\" & formatterted_time & \"]\"\n\t--# Prepare location message\n\tset _location to \"[bundler.scpt:\" & _handler & \"]\"\n\t--# Prepare level message\n\tset _level to \"[\" & _level & \"]\"\n\t--# Generate full error message for logging\n\tset log_msg to (my joiner({log_time, _location, _level, _message}, space)) & (ASCII character 10)\n\tmy write_to_file(log_msg, BUNDLER_LOGFILE, true)\n\t--# Generate regular error message for returning to user\n\tset error_msg to error_time & space & _location & space & _level & space & _message\n\treturn error_msg\nend logger\n\n(* \/\/\/\nSUB-ACTION HANDLERS\n\/\/\/ *)\n\non date_formatter()\n\tset {year:y, month:m, day:d} to current date\n\tset date_num to (y * 10000 + m * 100 + d) as string\n\tset formatterted_date to ((text 1 thru 4 of date_num) & \"-\" & (text 5 thru 6 of date_num) & \"-\" & (text 7 thru 8 of date_num))\n\tset formatterted_time to text items 1 thru -4 of (time string of (current date)) as string\n\treturn formatterted_date & space & formatterted_time\nend date_formatter\n\non read_file(target_file)\n\topen for access POSIX file target_file\n\tset _contents to (read target_file)\n\tclose access target_file\n\treturn _contents\nend read_file\n\non prepare_cmd(cmd)\n\tset pwd to quoted form of (my _pwd())\n\treturn \"cd \" & pwd & \"; bash \" & cmd\nend prepare_cmd\n\n\n(* \/\/\/\nIO HELPER FUNCTIONS\n\/\/\/ *)\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access POSIX file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\n--# \non pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend pwd\n\non dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend dirname\n\non check_dir(_folder)\n\tif not my folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend check_dir\n\non check_file(_path)\n\tif not my file_exists(_path) then\n\t\tset _dir to dirname(_path)\n\t\tmy check_dir(_dir)\n\t\tdelay 0.1\n\t\tdo shell script \"touch \" & (quoted form of _path)\n\tend if\nend check_file\n\n--# handler to check if a folder exists\non folder_exists(_folder)\n\tif my path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend folder_exists\n\n--# handler to check if a file exists\non file_exists(_file)\n\tif my path_exists(_file) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _file) is file)\n\t\tend tell\n\tend if\n\treturn false\nend file_exists\n\n--# handler to check if a path exists\non path_exists(_path)\n\tif _path is missing value or my is_empty(_path) then return false\n\t\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend path_exists\n\n(* \/\/\/\nTEXT HELPER FUNCTIONS\n\/\/\/ *)\n\non split(str, delimiter)\n\tlocal delimiter, str, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delimiter\n\t\tset str to text items of str\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str --> list\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't explode: \" & msg number num\n\tend try\nend split\n\n--# format string \u00e1 la Python\non formatter(str, arg)\n\tlocal ASTID, str, arg, lst\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tconsidering case\n\t\t\tset AppleScript's text item delimiters to \"{}\"\n\t\t\tset lst to every text item of str\n\t\t\tset AppleScript's text item delimiters to arg\n\t\t\tset str to lst as string\n\t\tend considering\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't replaceString: \" & msg number num\n\tend try\nend formatter\n\n--# removes white space surrounding a string\non trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend trim\n\non joiner(pieces, delim)\n\tlocal delim, pieces, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delim\n\t\tset pieces to \"\" & pieces\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn pieces --> text\n\ton error emsg number eNum\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't implode: \" & emsg number eNum\n\tend try\nend joiner\n\n(* \/\/\/\nLOWER LEVEL HELPER FUNCTIONS\n\/\/\/ *)\n\n--# checks if a value is empty\non is_empty(str)\n\tif {true, false} contains str then return false\n\tif str is missing value then return true\n\treturn length of (my trim(str)) is 0\nend is_empty\n\n--TESTING!!\non test()\n\tset as_pwd to POSIX path of (path to me) as string\n\tset pwd to quoted form of my dirname(as_pwd)\n\tset cmd to quoted form of \"\/Users\/smargheim\/Documents\/DEVELOPMENT\/GitHub\/alfred-bundler\/bundler\/bundlets\/TEST.sh\"\n\tset sh_pwd to do shell script \"cd \" & pwd & \"; bash \" & cmd\n\treturn \"Applescript PWD: \" & as_pwd & return & \"Shell PWD: \" & sh_pwd\nend test","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"83969d4a72c1dcd3542de13d92e43a589da3338d","subject":"added Escape text for use as FM Calc","message":"added Escape text for use as FM Calc\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Escape text for use as FM Calc.applescript","new_file":"Scripts\/fmClip - Escape text for use as FM Calc.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"98168f21d7e776c1d0dbeb732feb030721e39457","subject":"Make sure we're checking the artwork count of the current track","message":"Make sure we're checking the artwork count of the current track\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40584\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000r\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0005\u0000g\u0000p\u0000]\r\u0000]\u0000\u0003I\u0000\u0001\u0000g\u0000p\u0000^\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000^\u0000\u0002n\u0000\u0000\u0000g\u0000l\u0000_\u0000`\r\u0000_\u0000\u0001m\u0000\u0000\u0000h\u0000l\n\u0000\u0004\ncArt\r\u0000`\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000p\u0000q\u0003\u0000\u0001\r\u0000Z\u0000\u0002r\u0000\u0000\u0000u\u0000\u0000a\u0000b\r\u0000a\u0000\u0002n\u0000\u0000\u0000u\u0000\u0000c\u0000d\r\u0000c\u0000\u00011\u0000\u0000\u0000{\u0000\n\u0000\u0004\npPCT\r\u0000d\u0000\u0002n\u0000\u0000\u0000u\u0000{\u0000e\u0000f\r\u0000e\u0000\u00024\u0000\u0000\u0000v\u0000{\u0000g\n\u0000\u0004\ncArt\r\u0000g\u0000\u0001m\u0000\u0000\u0000y\u0000z\u0003\u0000\u0001\r\u0000f\u0000\u0001o\u0000\u0000\u0000u\u0000v\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000h\r\u0000h\u0000\u0002r\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u0001J\u0000\u0000\u0000\u0000\u0000k\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0010\u00000\b\u00007\u0010@\u0000\u000f \u0000j\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\bh(\u0007 `\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0005Shire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016O\u000fH+\u0000\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u037cG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0016O\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0018\u0000\u0002\u0000\u001dShire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000S\u0000h\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012~}|{\u0000\u0000zy\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n~\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n}\u0000\u0004\npPCT\u0003|\u0000\t\n{\u0000\b\u000bePlSkPSp\u0001z\u0000\u0000\u0002y\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001a,j\f\u0000\u001bk\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u000e\u0000\u0000\u0002\u0004x\u0000\u0003x\u0000\t\u000e\u0000\u0000\t\u0000w\u0000\u0000\u0000\u0000vu\u0000\u0000\u0003w\u001b\t\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000F\u0000e\u0000t\u0000t\u0000'\u0000s\u0000 \u0000'\u0000V\u0000e\u0000t\u0000t\u0000e\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u00003\u0000:\u00002\u00002\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000C\u0000 \u0000C\u0000h\u0000r\u0000i\u0000s\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\nv\u0000\b\u000bboovfals\u0003u\u0000d\u000f\u0000l\u0002\rPICTk\u0000\u0000\u0000\u0000\u0001,\u0001,\u0000\u0011\u0002\f\u0000\u0000\u0000\u0000H\u0000\u0000\u0000H\u0000\u0000\u0000\u0000\u0000\u0000\u0001,\u0001,\u0000\u0000\u0000\u0000\u0000\u001f\u0000\u0000\u0000\u0000\u001e\u0000\u0001\u0000\n\u0000\u0000\u0000\u0000\u0001,\u0001,\u0000\u0000\u0000k6\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0000\u0000\u0000\u0000\u0001,\u0001,\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000Vjpeg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000appl\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0001,\u0001,\u0000H\u0000\u0000\u0000H\u0000\u0000\u0000\u0000j\u0000\u0001\fPhoto - JPEG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0010JFIF\u0000\u0001\u0001\u0000\u0001,\u0001,\u0000\u0000\u0000C\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0002\u0001\u0001\u0002\u0001\u0001\u0001\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0001\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0000C\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0001\u0001\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0000\u0011\b\u0001,\u0001,\u0003\u0001\"\u0000\u0002\u0011\u0001\u0003\u0011\u0001\u0000\u001f\u0000\u0001\u0000\u0001\u0004\u0003\u0001\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u0007\b\n\u000b\u0003\u0005\u0006\u0004\u0001\u0002\u0000P\u0010\u0000\u0000\u0007\u0000\u0002\u0001\u0003\u0002\u0003\u0003\b\u0006\u0003\f\u000b\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0000\b\t\u0011\u0012\u0013\n!\u0014\u0015\"\u0016#1\u00179TV\u0018\u001a2At4Q\u0019$%38BYax')FUXqw\u0000\u0018\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0003\u0004\u0000*\u0011\u0001\u0001\u0000\u0002\u0001\u0003\u0003\u0002\u0006\u0003\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0011Q\u0012!12aq\u0013A\u0003\"\u0451\u0000\f\u0003\u0001\u0000\u0002\u0011\u0003\u0011\u0000?\u0000\u0000\u001cp\u001cq\u0001\u001c\/mR*\u0001\u076aS3#j&j\u0015G\u001b8\u0006V\u001d\u0006Bw08LSju\nc5_\"S:\u0014{M\u000b8K{Pyv(\r^rpQ\u0006SY\u0018{\u0016u2r.\u0005D\u001e$=\u0268C\u000fH\u02bb`]G41\uba18\u000f\u001cGR( db\u00145\u0012m?B\ni{\u0002\u001c\u000e88a\u0015\u0015);)\u001b\u0007\t\u001afje8n$%%e$\\&\u0444lk\u0006\u001dW\u000bY\u0014E\"\u0019ETT!Lc\u0000\u000f\u000bO#^;h>B=\uc7f0zVY<jtUSt\u970a&r:bS\u0000\b\b\u0000|rK\u46b5|=hP!CNbd:98+\u001a:y\u001aAN\"\u0004&\u0007=f\u000bw\n\u0003}.*\u000evN\nf:\u000e\u0394oYXP|\\r\u000e\u0010*26Ef\f\u0002+dT\u0012Q(t\u0007\u001cqq;J\u074a\u0012M,\u0004Dp\r\"e\"0t\u001af\u0007m\u022a\u01bbdH$tA\u00052*\u001d'\u001cLG\u07bd3\nF6fHU'X\\jGq=k8\u0003D-\u0014Y6\u0007)]04rI!Y078\u0253'#Z:t&\f\u00197U\u05ef\u001d*D\u001ah\u0002](\"i9\u03a0\u0014\" \u0003+\u0015)\u0005)%\u00077\u001a\u001aj\u0019\u0229xVn#\"#(l\u0007i\u0011V2\b;EdER\u0015DH9Jb\u0000uq\u0001\u001cMhg\u064d\u0011:?\u0567Mk)Vk#Ii\nrb\u038bAe\u0019:\f\uc66e\u001c:F\u0019\u06a8&\u001bb\u00078\u000e88\u000e88\u000e88\u000ee\"\u0019-\u0000\u046c\u0001n_\u000f\u04c9MOW\u04af];\b#Yed\u00181\u015e>mtVh,\u001000\"Cy<vI5x]a\u001c\u00009:e#]s2?~M sV\u0007`T0\b\u0010;^\u0164~3g\u001eBw~i!.-\u0002?\u0015V\ua69dAszo\u0012\/db\"F\u0001\u0019\u0018Wj~l#\u001b\u0013}n\ub7a6\b$i\u06f8.[;sZu9lj\u000e)\/v\u001e\t\u0006\u0011s;Y\"anp\u0019\u00197wxf5|[S2#95M3FTK\f!.\u0015X\u0012m'\u0001S1u\u0012uTr\u10b4C>\u07eam\u00113E5j\tiz-\u0005\u0006\r\u0018>\u05b2(UH\\)<{v!I\u0006f\u9a0a\u0015Mw\u0005T..)\u4ea5\u000eX:\rNf`ZY\u07b6|{K&thL\u0005gn.-H\u001bbQvc,NZu\u05297H:\\gu\u001f\fw]_@.\u036b:V\u051aV{IF:e\t\u0007Rh{ql\u0016l\u0000\u0005\u000b\u001a\u0772dn_2]\u0010h~K]9~Gr\f<tY\u03b3v1q's\u000fHv\u0006N=s&u[0?\u065cJ\u00f8-\u000eFg:f#\u0017^Ze\u0148\u001a\u2695\u05aab\u017c\u2695 $\\W\u040a]G7s{?E\/z\u06a3\u001fP1\u0000(v}5|jQz\n]\u0017\u0007\/\u07c3V\u0330P8&((\u001fcr[)\u001d5yIW9=Bll>''%{\u0017EPi\r2\u000b\u0272@\u001a*%H\u0004!=}\u0171[\u001aI\u0015{}vVRIQ\u001b+xBC.CYZ\"ff\u0016KQ5\u0014)SGmFXr\u0018\u001d=\u0001\u0007\u001c;\\_\u0019xiSN%=A\u001b.y\u0018\u00121f;3\u0693>[\u000bxM.\u00f88}>]-6BZ\u043d({9I>ol\u0003\u04b6ba1:;8H5w\"x\u05a2za\u0019l\u0002\u047aN\\&l;cv&SBcqjF\u000bV\u0004~g>v\u000b]_\u0667;q\u001anr6AlUm\fc$\u000fo,\u000bX(=7z\u00ef\u0019\u0003JI\\\u000f\u00bcf9=\u000b\u0000\fX!=\u0017P\u0017p\n\u0247ezU\u0002f8N\u001b4]\u03ee\u06eap1RgbJ\u023cgWc1\"L\\8Qx\u0016(1!\u001a&\\(5>V\u001abwQ\u001dgp\f\\+O\u0019ID?}<\u0015$Z7tbL6qgE+\u000b\u0011j\u0011\u001d5k\u00fe:`f^f.3fc\u0011<[y\u000bhgp\u00031EA\"\u0249mcK\u0470S&p\u000b5s\u0018g8N4\u0011\ucb46:!\u0019\u000bS\u000b\/D\u04ae^\u000bQX\u0233;s\nCiW.^wcB5V'.iVH6\u0004!\/\"\u0628*R\u0002%\/\u0000io|tv;U\u001f_:I}]enZ\u074a\u07b1lZ,$l+SRk\u000ej395RbiCK kM\u00e83H\u0001_ui\u01ec;\u0637Y\u0000\u0017a5\u04dbF\u0000Qr\u0019ds,,Mf>e!QDKG~gxR2G\u0015\\\u0006:3Mk_\u0015\/Z\/q[6\u001dA,I\u0018*=_AwZX$TyafU;t\/r\u0010M{.\u053aW):m%$Ud'h\u0015:1\u001as2\u013bg\u001f!GO3~\u0017dWHW:Z\u0000P6\u06f2Z\r+.d9=Wo\u05b0(>F95#\u026c1);h$$BrPT\u001e(\u0757DlO7\u000b]\u0011\\|q\u0017M\/\fr\u06df\u00b5lwDbL\u001dftL#.\u0014S\u0012\u0010{3*Q\u01ab9k86K\u01ee \u001bM&.S\u001ac\u0005!\u001c\r\u001f>p\u0004\\'G{\u0005],`w\u000f_0GOd\u001aHM#\u04abYMY6q7v\u001aB\u0005\u02dd\u0011Y\u0659\u00f3U8M\u00bb~Q{\u001bN=\u0574CL\u0000 \/%H\u001d\u001fN:n\u000e\u001f)\u05fa\n>\u0007\u027bs\u001aa\u00079!\u8928ij\u0017yD4\t\u000e\u001dP\/]\u0006J.@\u05d6,\u04e9\u047e\u04edQU\u077a),dfFW#Em7\u01b5gw&l\u06cb-;M\u001aR\u0004l\r;!NP\"#^,\u0018F\u009eV}!\u0634lx\u0005\f\rK94x|?\\n|\u0007UquJ\u9d91l\u04ff\tEP^L7\t\u0019\r\u001f\u062e\u0014QSk}\u03efnye\u0172wJ\u04eb=\ub567<\u000b\u0003{-\u0005\u0005k\u0015\u053bB&iw.H\u00114\u000ex\r\u06d9o;-+}\u073ci,\u0013PseS\u0012\u001a}'`XuJBrU\u0014i)\u4ae9! +\u01f4\"A\u02c8a{?k\u001b~_-&\u0016i\u000b#AUtETB\u001dDSk#0\u0014\u0004N\u0014Ys)\u0007l7r\u073b7-\u0269-]\u00c3\u0007 JD]*Y\b?T\u0001\u0006J=Fh-\u001a\u0016jO\u0016\u001dL\u0000M\u047a[mH@\u0475.g|\u0000Kz\u00075g\u042b}v\u001e#Z$mJ4S\u0004z<<A(\u000ec\u05dc#\u000e\u0005_7NW:vCY7\u012bltgt\u0321\u000f\u000bTBHH\/ I\u2b91nXu!r~2'ka)`#r\/YrHn\u001b\u0011Ud.RJzT()T\u001b3f)PU\b&\u0019P(\u0002a2e`\u0016\uee86*k[\u03e15|+6\"\u0010\u0015\u0011v\tysW\u268c$-33Epv\u0004]\u06a4I\u0012$B\u07b1tw+]\u001b\u0005-\u001bc\u062b\u001aK\u0005\u000e1N? \u001duz\u0000bR\u0002%\u0011\u000ekVWG\u0010*\u0013\u01ed\uf7c3*9\u0003nQb{\u0017r4Xjzm}*GA[\u0018EXeRN(\u0644\u001b.wA\/j:]W\u00065f\u00054}\u0662U\\\u973b\u001ati*t!\u0018\u0010~Z5&5\u001cbD\u05bb#Hh\u017bw)jVsU\u0017X!%]Qun\rp6E\u001a\u00118\u001f`\u0770o\u05ce+oY8\u079bZ\u001cZ(UiJ7`]uh7\u001do\"H'jdZ*S\u001flDO#W%w:]\u0013y\ud167\bX?zKl\u07eeM_{ab1\u000bo%I7?;i,]\u001b\"1S-\u001b!2tIA\\6=\u001fioL\u06ebA\u0005ye,SdV\u9f32fy\u00007{!\u0304s:i\n5\u0779R\u001eR\u04b2SUL\u00c9>k}u^N|$f\u000eEs}``Fwd2VP9u \u0019\u0001M\u0016\u07741O\u0006IW)Yoms%4{Cp\u64fa\u0013Ngu\u0004\u0542(]^\u0017kaE\u0003]`RG\u0019vZz\\\r\u0176{IsR\u034eq? \u0229\/m'V=\u0011GEn.D@MH\u000b\u0647\u00f1j\u01f0n8\u000e88\u000e88\u000e88\u0013'n}vHKr\u014bU3\u001cS\u001a\u0012k\n{\u0014#\tLc\u0000F\u0108@\u024afPU\u0017G\t\u0001 *]~D=\u0001DzF\u0001\u0012-@5\u0003\u0000=J*\u000f}\u001dB}\u0003\u0000\u000b}rp\u001c:c[<\b\u0000So^m \u001e@\u001d~\bLQ\u0017\u0002\u0000:{S\u0001\u0003\u0000>\u0014\u0000S\u001e_\u0000\u001f\u0001G\/V}~?{=}\u07e3\u001cWF<1\b\u0000SNm\"\u001e\u5022=~\u0000JP\u0016 \u001aLc@\u001e\u0015\u0007G]b;\u06f5\u000f\u0017\u043d}\u0018\/V\u0000Q\u02a7\u0010=C\u0001\u0011LO2Vt:\\5j\u0665i_T\u0012\f\u0583JG\u0015?\u00178S\u05a7QvpJ5!\u07f2L8;yEu\u0136\u0019l3\u00129:\u0013L\u0012\u02ea,ENkTe'\u0001FD.-ah'\u0010\u00107n\\eO1`f$\u015e\u001bCT{)lw\u001dj\u0006\u0011(te\u0012BNh_\u5585m5X\u01cb7f\u000bYJe\u000e\u001b\u001f\\0u3*VS]t\u02c4F\u0015j\r^raxc\u001c.\u001c*_y\u0002 z9_Q~\u03122\\\u03d2\r\u069dfe*-\u0007_\u000bqfJJre\u0005uZ~\u0381\u0004\nc6M8\u0019u\u000f\u0016wI\u0014\tUb~\b&D^zQ A\u0004wRn9P*(\"au>OE1'M7}6\u0012v\u001c\n\u46eeYb\u0012eAS\u0010(z\rq\t{*\n\u0001\fck\u00e0\"P\u0000zz\u001eK}\u00a4H{zUX\"jI@bx|&\u000f\u0575A5\u0016\u0018Q\u0002(>0D\u0011\u0013\b}y\u0279\u3ca6\u0012y\u028d{_\u0002 *gS\"\u0329\b?\/6$\u000eM\"\n\u0000S}L7\u0005\u0013rH:m\u0002v+a#D\t1\u01e5&\u001fwD\u0002\u0000\u0000\u001e33.[\u044f\b7n8!J\u05echC\u0001L\u0002gbva1L\u0000a\tc\bz\u0014\u0003\u0521\u0002\u001e4\u0002xQN7rc\u001c\u001a\u0017[c\u0013\u0014)\u0015al\u001c.\"0\u0000>LD\u0011\f.Nxa}\u001f\u0017\u0005v\u0006<\u0003\u0015\u000e\u001bgRpU)\u0000SA{-\u0006?\nF\u00107\u0012a(\u0007`8D.yQ{%LA3\u0007\u0019\u0005c3>,\u0664\u000b|\u0000Wfs\u00169\u0004JDXzs(Oa}d,x\u0017ON\ue571w\u0007U\u0012?LD\n>!,\u001b)\u000fD\u0002\t\f\u0006\u0001)\u0004\u0004i7@&K*\u0006m\u0019\b-V\u0017H'\u00005QhgT\u0000pV\bp\u0011R2}U:5\u0000'\r\fYLsAf\t`dtuf\u03beE\u0014\u001f\u0789MS*@D A\u0012r\"g}\\r\u00f7\u0001'P\u00069=FBIu^Y\u0019\u000b&cxI#.\u0000\u2760l$\u000e|7 \u0019?\u00029H8\u000388\u000388\u000388\u000388\u0004\"~m's\uaf95\u000bgsZ=.\u0005kNV?`;hF\u0749\u076dJD[n\b%T\u0014\u0001K';\/\u0000\u000f@\u0000;#1CSz1\u000eQ\u0012,4b\u0007\u0526\u0001\u0000\u0010\u00106~k)\u0000O\u0000?\u0000NFVMnmx\u032cu\u0018\u0000\t\u0004@Z\u0007\u0000)\u0733}Xvl<{;\u0011\u0006\u052c\"\u000by\u001fJv\u000ey|\u0000:\u073b%\u001e7\b3\u0000\u02a2e\u00161\u00159^Y\u01bfY\u0017\ud26b\u06dd&f~8_gu^*\u047bLG\u001dC\u0011\u0014ceZWH\u489b\u04c2\u0000\u000bq2\t\f6x\u001fz\u0000$^B!^,wL{D\u0003\u03edfRiR5\u0006\u041cRp]8Q\u0014Kq\u001c5&\u0007H\u0311Y&6nO\u0737w~\u0014{\u0017gFm\u0007\u02d6Fqa3P\u0228ZU(e\"\u0015m|<\u0013\u0011M5bQHV-[Oq9\u0006=f\f.$BCRhDMr\t+)$\u0015b\u00009'\u000f$]\u001c;JDySYW\u000b\u001de:>QC\ta\u0000\u0002GP\u0000\u0000\u0000\u0000\u0000\u001f`\u0017#,\\O\u0007\u001cqi\u001cp\u001cq\u0001\u001cp\u001cq\u0001\u001cp<NfU\u0006\u00d5lt\n[~\u0012CAVS)Q%\u0004Y\u0262(c \u0015V\u0011P8`\u9ab2aqmd1x\u001f\/xv\u01edeh\u0002d&\u000f\u0015sm\naY\u0013QYvq =~r(EPUDVHtHMDQ\u0001)\u0221\u0004\u0004\u0001\u0002\u0003+>\u0019qI:g:g)r\u00189\u000eQ)r9L\u001e0\b\b\b\u000f\u00049s<\/?\u001e\u0007`+{ILo\r\u00a1)ov\u000bW`x\u001a\u0019\nOk|3B$\u0004\u001bd\t\u0005Yh\u0452AyL\u000f\u0004\u0004@@@@D\u0004\u0007 !@@:,eU\u001csXq\u001c\u0007\u001cqq\u001c\u0007\u001cqq\u001c\u0007\u001cqq\u001c\thK}\u0006\u0000'\u0000'9{Q(\u0018~em\u001a+YMLh7\tEFU\u0005_Mf\u0000\u02f9:h`\u0000Nf\u0254*R\u000f\u0014_\"I\u000e:eZu<\u0016V.\tde6l5G)RA3o\u0000\u0002!\u000f5|:\u0000\u001dJs\u001aK=Rd.QD6*'z~Y7h P^\u0016r*f\u075cE\u3518]\u000f.\\(\u06bcv.z\u01d0!K_\u0016q!UM\u0001z\u001c\u000e\u0004)0UVe-~L_D\u0015,sUc8\u0017oh\u0001SM4!J\u0000B&)\u0014E\u0012)\bB)@(\u0014\u0000\u0002z\u0017BzRFk=%qNL\u000bve1&49w-dUfL\u0005A1\u04c9C%D9w\\\u0017:9*8\u000388\u000388\u000388\u0007\"JU#5S0\u0018(\u0018\u000f ?\u001ekSuG_\u000b\\B'=g{5+h{vHh\t\u001dJo)-\u0012drdn\b\udbff\udc3bN;} gh6Y\",j\u0261\u04d6o-\bA5\u054c+$v0$_Z7=N'\u001c:nwk\u0234{QzR\u001a\\\u001btJ m4\u0002q@=\u0094{z}y8\u000e88\u000e88\u000e88\u000eM\u001f\u0754Ek^\\~\u0018pt\u000b\rb~T\u032bfr\u001dUrB\u0018=QF\u0019Y8z\u0004\u0014!s]}#\u0093&t~FY$\u0229!|F\fl\u0004\u07e0\u0002\u0002\u001c|\u03d6q\u00110\"&\u0011\u0011\u0011\u0011\u0011\u0011\u0011\u001fQ\u0011\u0011\u001fL\u000e\u001ep\u0000\u0000\u000f\u017fdL \u0000#+\u0004\u0015\u0000=CK\u0001'>\u001fr\u001bw8j]<sO|?7>$\u0000\u0000nCW8x7\u011fo|I\u0000O\u0706\u0000\u001d\u01af\u0014po?\u0000\u06d0\u000f\r;^(\u0012\u0000!q'>\u001fr\u001bw\u001aQ9$\u0000\u0000nCO|?75xs|I\u0000O\u0706\u0000\u001d\u011fojG\u000f\u001c\u000f\r;?\u0000\u06d0\u001e9'>\u001fr\u001bw\u001f\u0012\u0000!q\u001c<sO|?7q\u0018\n\u0006\u0012Vzz\u0000\u0001\u0010\u0001U9}}\u0004\u001epW5p}B\u0526\u050f0}A%Y2(\u0012%Q\u0007.]\u001a82{U\"9)S\u001cB23+>E3m\t6#\u001d[\u0002i'\u0012\u050b\r\u0195 BA*&2\u0014\r\u001f\n&\u0000\u0003\u0014M;K\/.\u0019M[\u000e8\u00ce88\u000388\u000388\u0003} yv6E\rG2z:zohELP\/\u001cS\u0018\u07a0OP!D\u0004#eW\u00012xZ[B7&s\u000ffHAc{\u0011\u0015-3\u000fS\u00112\u001f`N~'CW\fatiR@T&\u0002\u0014\u0014:ij\u038cgS)XJ\u0002>*Ca\u00e8==~\u0000q\u07a4nZ?\u001ec[F!\u0005V_Q'e}_zbU\u0001#\u0268_h(\u0001\u000fylU\u02dec\u0019\\`\u0012Vv\u00058E\u0002\u04f4fen\"` ~\n\u001e\u0012PdjKnX[mj4\u0000L\u05c8KG19\u0006\u01de\tDE\u0005r$&\u0013\b\u000b3\b=\u0002a\u0000 {\"a;\u001fUPN5\u07f7\u0000S\u0014HY\u0019\u0302R>~\u0014}DC\ba\r\u01d6t^c^O\u001cz{nD\u001d\u0107\u0000\u017cu&_%z+\\\u055bz'\b\u000fG Q\u0000\u0000s\u0d92\u0001=R\u000b}1\r\n\u0011\u0013P\u0012D\u0000GR\u0019p\u05cedkO<A\u0015SI\u04012\u001c%waJ\u001f\u0019\u000be\u0004\u000fS\u0007D\u000e%0n'y\u0016K3v\u000b\u001bB\u0668\n\u05afeq\uda18\uddff@]^@\u0012p\u0698(\f4\u0329Ac'\/3WPq\u001c08\u000e9>\u001d\"v;\u07bb\u07604nQP*\u00e5^m*#M3r0(\u0002R(*\u0013bIG@&#Y\u0013 \u0007:t\u073fJ\nUD\u0004J\u05c0S\u0013\u0015\u0000M@\u0013|\u0013\u0000T+L:8uU\u001f$j\u0005P;}1TLNJ6\u0003\u0007\bS%aU2-c\u04de\t\r$\u00008>Q\u0440\u07a5j_(J6}7\/B\b1T\u001c\u0480@d?p\u0001}\u000b:\u02c69c'i\u0000\u0001v\u0007HH\u0015\u0010\u0012\b\u17bc\t{>_\u0012t%S4\u001fCq\"\tyt`8\u0000+\r\u0014\u0000\u000f\u001e[yP'\u001f(Q\u000fkw_\u0102\u0005!U*\u07f2\u0014D\u0011;\u0003a\u00010\u0014~\u0013\"_o1.Q\u000ee)]\u001a\u001dmC\u0010\u0015\u001a4PJ1\u0003\u4780va\u0012%\u0011\u001fR\u0014@\n@-TT\u0004@W5\u001f=\u000f\u00bd\u04ebTx\u0001|\u0013+\u0003BUb54A\u0002*V1S \u0016rYj\u001bt`j\u0011\u0010#\u0732yC(f\u001a\r\u07b8Q0XIn(}V\u0002#0z_:%m~E={KPYw*+(k\u0012_t\tHA0H\u0001\u00010\u0001r>\u0011q5'\u001cqq\u001c\u0007\u001cqq\u001c\u0007\u001cqq\u001c\u00076~\u03cbxS).b\"DL2Z3k\u000b2&s\tQc\u0007\uba61%_hrfMLe\u0015]A\u0014(}s\u001dB\u0000}G\u04db2\\~ky:&m\u0013\u00161\u07a82!D@)\u042c\u00125xy8qu8\u000389\u0004R}|;n\ud962\uddf3\\\ub87d#P\"1\u0003_CA}A\u001f\u0530_w]~5\u000e$:oq\u00079>E\u001f\u074f\u001fr\n>\ufdf4\u0547'?Mk\u001b98\u001bK>b\u0007\u000faqr\u001ab\u0007\u000faqs~\uf3c9q\u001cq\u0001\u001cp\"\u0013\u03c6zm+?s#SM#-OP56T\b?\u0012\u001dJ\u0004Ta^K\f\u001eJB\u001cO:\u05f8yCfHF\u0006qnOe\u001cL0\u0004JU\u000b\\G\u001c\"\u0000'H\u0001(L\u0002\u0002\u0002 ?a\u0001\u0001\u0010\u0010\u0000p\u0000:?28Z\u000e88\u000e88\u000e88\u00176u\u066bFvkod1-\u0298J\b]C_$SW8\u0007\u0619\"D\u0b03\u0004\n'(\u000f\b\u00019\u0003?y\u0007Dhwq\u001aE2t1@!l.@Ja\u0002)|C\u0013g\u0000B\u001dU\nB\u00149R\u00112\u0014Ls\u0000R\u001e0\u0000\u0007Dy>\u03b8x\u0730\u0013(\u0018)\fS\u00165\u0010\u0001(?p\u0010\u001eu\u001ah\u0000\u0014$*\u0000{__b\u0001\u0014?D?kpq\u001c\u0007\u001cqr\b:q&C{?\/[,\u001f\u0018}Q}A\u001f\u0530_w]~5\u000e$:oq\u00079>E\u001f\u074f\u001fr\n>\ufdf4\u0547'?Mk\u001b98\u001bK>b\u0007\u000faqr\u001ab\u0007\u000faqs~\uf3c9q\u001cq\u0001>\u001d;?\u0473J}v\u0015\u0016?})Ga\u0000\u000f\u01dfy'S\u0018\u0412)@Lc\u001a5\u0014\u0000\u00110?`\u0000\u000e\u0007\u0016KHj;p'\u0006\u0010\u0013z6z?sJ>}\u0004\u0004>-\u0019\ue651\n\u001f;t8PL\nj\b\u0014\u0000HR\u000fD@=}\u0000Gr!\u00009\r\u0000)?\u0010\u001f!P~km,=lF\u0019x6AV\nKY\u0220\u0003Z\u001bZfDDE\u0004\u000bL\/k\u001c\u0000\u0013\uc2de8\u001c88\u000e88\u000e88\u0012\u0214'mJwN}A\u016cvgV-n\u001d5p\\%Z\"ZD@.Lc\u020aO(b\u0019\u0012\u0010Ng'[d\u001eJU9\u0002$ng\u0134na\u0004MdXG\u0013vo`(\u0012\u0013\u1efa.1\u0000p{i*\u0000Y>v!\t\u0007VN\u962eU\t%8!#\u001e\u02efB3\u0011t9*c$s\u001cU5D\u0019\u0011\u0013\u0014RIA\u001fC\u0002r\u014cN8c:X\u0014M\u0007vT6|v\u0313\u0016\u0013\u0013&P;\u0003\"xL\u0012\u0015]\u05dd=\u001fQ0\u0005\u033c)7j^K9gwh\u07a9\f\u0015[,a)2\"]Mp*%U3\tWA@\u0014$1\u0003K\/%G\u0492\u001ffkX P\u0013jCUs5\"Q $Q\u0017lN.\u0012Wvv\u001bS8\u0010c^`\u0017\u0016lB;\u0002[K487[S)^?7|Q\u0011!\"u.\u00b5jr\b:q&C{?\/[,\u001f\u0018}Q}A\u001f\u0530_w]~5\u000e$:oq\u00079>E\u001f\u074f\u001fr\n>\ufdf4\u0547'?Mk\u001b98\u001bK>b\u0007\u000faqr\u001ab\u0007\u000faqs~\uf3c9q-\u04f6=:E\\\u001f\u062bPzej\u055b\u0012uo[ Zu<z,7Y\u0015\u001a#F\u035c,5)L\u001aNcT\u001b6^y~eLf\u000f7X\u001a+s U\u07fb0~%\u0018f\u072b<v&P@{xGT\u000f\u001d\u0014}<\u0748\u07a2\u0768{7tY#N\u0001\u0002AL='z\r\u0016@|R(\u0007_+N\u0015PGnR]_!h8\u010a]TX!\u001d\u001dF-c'r;|v*|y9;N~\u01f9UcAim\u0012X\u0000iO\u033f)#RR3s\u000f\b1aH\u0016D&\"{G\u0608beBI\u04e3|\n\u0a54Rv@?U\u00000LP0\u0007)\tOOKo#==H5VX\u0014\u001c5@*Wg+G\tBN\u000f5JB\u0014,?s#|vF\u069c\u000ev[u%\u001b\u0010\u06a3\u0018)\u001a\u000eQ\u001c\u044d\u0017Z!UMB\u0013Q\u0015\u0016_\u000b\u001e\u00f8\u1efa\u001cq\f8\u000388\u000388\u000388\u35c5~v\u0017dS,Q\u001a8\u0600`TH\u7299$%\/748E\u0003_Pp\fN\u0005zgl\"\u0019J\u001fY\u001a\"'[ #\u0017\u00031\u001d\/Gp|@\f5\u0584*\u0002&\u0000J\u049428@\u00041\u0003L`&\u0006\u0000\u0002?}\u0000\u0003\u0000\u000eOV3\uea46W\u001e9Fun\u0006~e*GF5mJrVo)\u0010(t\u03b8\u0000l\u00052@\u0019(%\u00006(}\/\u001cR\f\u052fYI\u0012FVwL\u04cb=c|\"\bYd\u000b\tc&FH\u001c\u001b*t[*\u0005QeYq\\\u07c3,V\u000f\u001b}BJH\u0013q\u0002e#K:Gf)\u0010J\b\u000f@ixQp@2,gGLMK0c\/\u000b7\u000e\u0019\byiVD?@D9l\u0011\"9\"\u0011)Q|*rtP\u0017U\u041d<2\u05beH\u0267\u001e\u000f\u0019GkSl,\u001a\"b\u0015(KLkR&Txe\u0000R?`\u000ej\u001cIu\u000fKr|\u0007?\u001f>j\u0014}oisG,\u0017w\u001fC5\u03ba\u001bA)zO`c\u0007\u073fB4aZvq8\u0006\u03e7A\u0000\u0003oy2A\u0000\u0003oy2\u37ea|:J\u0002n*\u0015(){M>\u0018*^\u001e^z~a\u0001\u001aFhu#\u0004@@c\tJ:|yOy4XG2\u001dcJVz]do\u0011\u04ed,@%[&\u0209L1A2J\u000f|>\u001f\"2.#{\u0019\u001f){Gy\u000b9\u0002gkVas.2EI\u001dTMdTy\u0017\/\ts\ub0ceJ\u000e]8gq\\\n8;G'`\u97fb\"%\n\u02fcF)vPLWICAM\f1\u000f{uffWfw]f!K#T\u0018\u0241\u000eK\\-IJ~u\n')=\u07c6LG\u0015lk&6\u0002q\u034fUV)f{PPnr\u0013\u0000(\t\u0006\u0000?\u0000z\b{=\u001c=k%\u0360gv^\re\u001853K\u0013\u0002\u0014\fd(\u0012\u0001\u0019\u054f'F\\0wU\u06devZGhK&agU\u0015<I'K:J\u0015 \\#\u0015V6\n&:@e8TP: \u0019\"\u06af)'\u001cqq\u001c\u0007\u001cqq\u001c\u0007\u001cqq\u001c\u0007\u001cr\u0015~?:bI\u001b\u07b9~g5&R6R~4\n0UE\u0015\f=7\/H@IE\u0004\u0004\u001e\u0004xr\u0011yE\u065djc9\\=\u076eb\n=X\u001c\u02f3azdFsV\u0005\u001aC1%\u0013ThCfn\u0007Y+\u0018W^,)P&sCM%e\u0576\u0014$(aDO\u0699|\u0017MtCyV2\u0006\u021eE\t'\u0002&RV&T^\u0011\u032c*fU\u0001cf\u0011h\u001b\u000e\\9eO\u000eN8\u3423\u0015TT\u001b^y\\\u001d\\)6\u0616{D\u001b\u0229w\u0019'\u000e\u001fp\u0003a\u0005\u0012:j\/{\u0003]'\u001f\u0006f\\\t\u079c'QV\u001d*zw\t\u0245E2'F20\u0013.;\u0000\u000b*\u001fK\u00dfY:\u001d'\u0007x}\u0002+\u0013E[\tO\u0001TO#(D~B;#w%\/\u0202b\u001bo\/\u001a>Deui7*tJP\u0016\u001az}_Wn=\u0015j\u000e\u02e9F-\u001e;{umgWZrK\f`)%D{I\"\u0011\u0000#\tB@I\u001cB\u00009\u001c;Y\u3af9GFDk2gk\u0016H%bu8e9Z6M3]\u00135w\u000e\u0004C\u001fP\u0017}K\u0005xuPMs\u0010J^X>1\/P{M:=w\u0017yT<zaeu?+\\\"\u04d48\u0014@\u000eL%#\tDNjb1a\/,\u0017w\u001fC5\u03ba\u001bA)zO`c\u0007\u073fB4I.n\\\u001cq\u001c\rOW1t\u0007[]-:mP\u001a\f\u0010\u0014,d\u0728T\u0011S\u062c\/1\"\t\u0003&8\u0003\u0018QA\u0000\u0003oyoSWi)L$vW^Qx%nO3&:'\u0007lR\u0014!nT\u00067+7e5[.vr\u0005\u02a75_%l,\u03a2JTC\u3264S\u069d\u0004\u0012!\u04e3R1S HP9gf$_q;{\u000f$\u03eb\u0010\nff;y^A$\u001f=~\b~4E\\Pf^q\u0016fnQ3\/\u0018;JGePuovx)]\u05f2\n\u0015E\f\u0005i7\/ \"\u00065Q\u0003\/-\u0019\u0015DkvYV\ub52aMv*I@DT\b\u00161U+\u0010C@+h\u644d[@=D\u0012\u001cLs\u0018yeF8sV `uH\u0018JJ\u0012\u0002SE2 c\u0010#hJ\u001cb)Ad\"h\b\u0000\u001e\u0002a1qu8\u0005\u0007X~c,\u0017YN@W#'Rp\u001b:)m~7\f\u0000\u0004$\u988a>-*\u000f\u0017{*2N\u07b0M\u0014S\u0018.,\f\u0015\u06deFh\"\u0005bx_3BM}Mvm\bV\b[Wf\u0016s?GW443whiSu].[$3g?v\u0006P\u0003\u000bGK\u0019$_:J'xe\u001d\u0003]~Z3\u000b6D\u0005*\b\u0000\u001dDY*\u03a1'#\\z}\u0012l\\\"\u001fa\u0014@D=9y8\u000e88\u000e88\u000eO\u0017gU\u0641*7qX\u0006J1T(\u0004=\u001c'tN\u0003\u0000@3(@R.\u030249b$Lm26I,\u0006\u0000x(_OA)\u0001\u0001^\u001bc88\u000e8)_V'Ri\u001dM{\u0005\u001c'uexz\u0000\u0015]<\u001bUQ\u04a3Xj\" P\u001d\u0019N`\u0010D\u05d6E\"kxVO>aAR\u0016\u0001}V\u0004\u000e_oZLa\nq\u0011\u0002&))\u001b=\u0654\u0731o++Yh\u0242;d4c\u0010\u000e[2(M\u0013:e=\ba8@\u0002b\u0001\u0004\u000f>R}\u001dwq8\\\ub87d\u001f\u0497\u0016\u000fv>\u0000`}(a\u0013\\6\/\u58e4%VY(NE2n9ae\u0010X\u001fES\u00076\u01aa|#\u0019S\u0000\u0018\u00043z\u0012\u0012y\u0788b\u001dC!u\u0004ht\u0015\u0012\u0015\u0014L}R\u00117?j}oi_V?\u0013\u0016q\u001c38m,z\u001f=\u0000\u01d8YVL,^\u0002\u041dq\u00a2^4\u0004\u0014@\u0374-\u0331oG'\u001a[<\u0500`!}\u079eg6ta(\u0001>oC\u001d2Q\u001fq\u6faf\/{\t's*a\b\u0001\u0015\u0000\u0011XC1\u0001\u000f\u0005E\u0010\u0004JO_aL`(\u0018fO\u0355t\\g,>>3\u000ff\ucf3cyRv@^9PP\u01b19jm]AB+=Y8'&^[Lt0~u7\u0017lh\u0000&}n\u01ab\/J\u0005?|Qa,kA\u0000rJUEQ:!\fc\u0014.C5$8KN8\b@\u0011\u0003\u0000\b\b\u000f\b\b\u000f}y\u0003V}<kWnF\u0017\u000b\\!vHDE}V\u000bpx\u001e\u07f9NFxN\u0006\u00117\fa1@\u61aeeud$t\u001bMg\u0004*\u0005Mw3x_;\u0549\u0000I[r\\E10{\u020b\u0012&\"$*|\u0107\u0717\f\u001cqa\u001cp\u001cq\u0001\u001cp\u001cq\u0001\u034c?K\u000ew\u0005x\u05f1f'2anV\u64f1`FCH~m($}f\u0002\t%\u000e\u0002\u0002q\u0333r[.\u03ea\u05cc\u00a4\u0000W\u0000xTiQ9\u07dfU\u0019I\u0000?=?\u04a3\u001d\u0013}Of\u03ea\u05cc\u00a4\u0000W\u0000xTiQ\u3389>uw_{RX\u001f%k6\u0217l%j\u0016\u0637$%FF(B)\u0388\u0004\u0000DG\u0000D4qK\/\u001fSUpf\u06ceTU\u00179\u03a7^\u06eaId\u05a8bl\t\u001d%H\u001e\u0007(\u0002\u001e\u0352?S\\bO\u0117a\u0000(l\u001co\tl\u02793q\u045c(U\/Yc$\r\u001f 0H`\u6c5e9Z\/\bRN8\u00ce8m\u0016}nuZ\u000eJK\u06eapU\u0754z\u001d \u0531\u0012:\u0013r@&p\u001fHp8{drv\u0007.B2\u0550^%].U\u001eX\u0511|8A]0\u0011\u0011\u001e]W\u001dg\u000e\u000f]+oTe\/\u04ba\u0015rLr\u0006J\u0004\\UX:r\u0000a'\u001c\nw$\u05b4y'5OBAfj\u0002mY.&~\"m\u0018\u001atT)9[\t\u0004\u0012}{Cx*O\u00004}Of\u03ea\u05cc\u00a4\u0000W\u0000xTj\u8fc7\u001c5s\u0019\u000b+\u0017\u0018\\VIYk^iQ!BjU5I\u0003\u062d\u0005UOb\bM\u0017p\u06d1Hr7\u000bv]YV[9H\u00072K J\u0019%LS\u0014\u0002S\u0014@@\u00048{7S}Ug\u0015'\u0000\u03ea\u05cc\u00a4\u0000J\u001ctNi=>\u0000^3\n_{RG:'4\u0343?VFw\u0007x\u0015KRe\u001a*Ah\u0015~za[PH3pT']FXu\u0000\u000e\u0010T\u0004D\u0014!B;I8Eq\u001c08\u000e88\u000e88\u000e8\/8 =\u001e]&V3\u0353R&Aj\u05afy\u001b\u00125Se[3w!'%(\u045c|KsJU\u0006$UbI\u033772qzk+\u0559cx_C\u001bl$x\u0000&5qv\u06acio1I\u0013}\ue583\u0000\u0014Fvuz^\u000f\u00194oYj\u001d\u0003\u001d\"f\u000ea\u04f28l+4]J\bEfU#EK\u0007p>Nz}r{#\u0535G6]\u0016aWSZ=r\u0006P#bd\u001cMPf6\/\u00195]\u0011;9}\u001aS{:e\u0639\u15c9Lj\u001cDrVT9gxr\f!\u0774Ag\/\u0013nE>D~#7;\u0015l8\u0017\u0000n\rj&l\u05e92\u06e9PR- vc \u046bMxoy\u0004y\r1}W\u001df\u0003y(\u0017aw\u0573G\u0000\u001adV`\u0013\u001b6\u0019Yb7Vuytp\u001fHvj3x]~p\u02e4$mA\u034b9\"j<QH\u0678\u02ccjQjw0\u0000!Pp\u0013\t\u0266\u0011\u0014uUTM4)R\u0010(\ba\u0000\u0000\u0000\u0011\u001f@I]VSvk=fOXk\u001bJ@Gf;PIG=I\u0005Z:wFSg*g8,\u0001io$\u001f{R'\u001fHKy\u000b\u0014m,\rf\u0003$D;,\u0751Fsas\u0014\u0003' 4{\u000bS\tvqp2>)^`{c\u06f07kLV$'\f%F*\u043f\u001c y\u0003\u0016&+\u06c8\u00b5<z\u020a)[hasgc=,\u0019\u001b}\ua42bX$AMfdf'\u001a5a\u001a4\u0005\\<~%\u0016M[*RQR\u0258_2g'oM3\u001c\u0006&l\fkk\b\u0324(UV<$CM4@d\u0004VnYDr^\u0004]j\u000eNkau\u063aB%Y\u00f8\u06b5R\u0011\u0004\u05ab.D0hm7I4\u0011!SL\u00019 ]\u0007{\u076f%9ZR1[\u001a\u0685Cx\u02a5\u0401{%iN4eD*-tui\u001eH.t\u0015e\u001dl\u001fOK}\u0003YBOQ\u0000p{\u001c\u03cb7fn~\t-\u048f\u0012}\u0005wKE>H\u0005 t[A\u0010\u0016\u0019h[z'Q=\u0661<f\u0019(\u02acD$S\u0006)B9FHjx]\u00137IMP_*\u0003W\u0419OYdO\"\u04cf$\u0003\u0000e\u0011D\u001eWf\u061ek3xgh2Kv5@Uk4S|Sg?[`\uaec7\r\u001e\u0011SNbC$\u0017{?Eg\u03bfG\u0018\u0256a\u001bkEEZ$S\u0018riW~'\u0005\u0015*\\\u0011b,t)s\u031ffUz\u0001*@s\u0007%zMi(KUX\u038ej\u000f\u000b\u0016\r\u0450\u0017Nh\u0016n\u0758eE\u46e9\u0746\uefc0\u0001~\u0006]a\u05b5k<&\u0002z\u0004}%lvk\u0004#W\"R$AC.I)-?G_\u0018\fF\u0011c\u001b\nYcd}n\u050d53R\u001663\"$\u0014+ E?y!'\/\rSSv\u001d\u0000\n\r]#\u0016\\\u0012[\n[5ON-,-\u0000rI3Q7\u001b\u001cCxhz<\u001fl{dBKKJJ9.:Nocv;Q;;)hg\/P9\n T7Y\u0722\u0016p\n\u04ffv=klnuV\u0018>bBKZ\no\rf\u0005\u0017\"~>\u0015\u0004\u001fo'QIv~Bbk{da\u0466\u034e^yHt\u001c5\u001d\u0534\u0325]wZ\u00e8kgUtd\u0018}Iy=s>tj\u00e6\u0015V\u07a5RR\u0007e_: \u0010U\u01abUP\u00017\u0000>0r~o\u0014\u01ee&4N7tMu`YkTvQ\u000f\u0013p\u001a\u0015\u0011\r\fb6;\u0011,\f*5yY?\u001f\u0397E_Z'G;\u00114kL\u0016mV\u001aflEsJ\u001fJiSd%Rx E2\u0005X\u000f\u001b\u0773\ud9d7\uddbdNkb5\u0000zI+\u0001gn\\\u001d\u0014f63C~\n$\u0363f_*\u045a\u0277t99},\u0012\u0493C99%!351\u001a\u00122o\u000e\u07bb#% CUETQE\u00141c\u0018#N\r\u0013y\u0015a\u000ew{2c\u0003\u075b\u060d:\u001bJ\u001a&I\u0016\u0002k\u00039H\r^\u0002\u0485f\u18d6i,c\u0011KCr\t^\u02f7\u0736\u001cgE\ub566q ECHm5;].\nUjV*$\u001bF6n3h\u001ed9\u001e\\u-J+\u001d\u001a0=9s\u0019Yq1sLO#\u01a1 bWd-1>Nn\u0019x\u000e88\u000e88\u000e88\u000e9\u0332\u000b8\u0011*P\u0266HgH*\u00058\u0000\u000eb1L\u0002\u0002 !\u04e0I ,.Js6UDD\u0015%\fAA(\u0002*1L%\u00111D\u0007\u001e\u000e\u000e8~\b\u0000\u0000\u0000\u0007DG\u0000\u0000\u001e\u0006is\u0017G\u8ca5\u02a4;n\u8268r\u0011\u0005%QpR\u0002\u0203\u0002\u0001D\bOq\n!E@\r\u039cD\u0007={\u0001)3\u000eP\u00037 ' }\u001f>G\u001d\u001e\\gK\u001668\u00caa#[k{3Fop.a\u001a\"dS]L(\u00010\u000b]\\,\u01a7J\u0005p\u0660\u0015IU5(j\nUNQ%\u0017o(\u026a*12\u0000\u0007!\"Q6]Yxek\b\u0738C\u0000\u0006I\u0000\u001e\u0014^wc\u0000e8'W?ou^_kot[Fu5AyWXk5g\u0015*\u0331 \"\u0002]x)\\\u00aa4\u00150.\u0705\u000fCW\u000bPIn\u0562VS% *\u0013+BQ(F\\M~d\u067ar$0\u0000SM\u041eOU{\tc\u1770\u01ec7\u0002a[^6,c&bTVtyW2,pBVIHn\u00134N{\u0017<\u02caW$t+>6Y?e\u001ar\u0563FK7n\\0ydAU\u0010]5\u0011Y\u0015\u000e\u022aC&Jc\u0011DH\u0002E\n`\u0010\u0010\u0010\u0001\u0001\u0001\u0001\u000f^KOWfw\u0017=\u04a0i\u0003JJ\u0007Ik1&\u0611\u0014sk)*Pm\u001f\u0010F)Q81\f'\/\u001avcg[\u0014+M\u6175G\u0797t\u0019z-b\u0018r\u0013%\u001a9QgQhUZuR] ^aAU\fkwigq\b\u0006v(4n\u01a9j\u0010zBA\u0015@Ay).v\u0397P=i\u001b^\u02f3\u0163\u0720^i[h w\u02f59dLL\u00021Au[.MYDpQ3z\u000f9@sao\u07b2<ru_\u001d\u0019;Z\u000eIZ\"f\u001fI3wA\u032b63\u0178&\\|\u0005I\u001b\u0013^g.K\u0768\/N4v\u001aoV=;\u000f\u041f7h\u0432\t\b=7\ra\u000e^RIFE+*{9\u000b\u0010}\u0132\u001fMh\u01e4gf\u0109\u000e\u001f+^\u00bc`\u0002E\u028bk{Fy\u0000Q\"g\u03f6JRmxr\u001aAQ>Ml\u00002~\u02e6p%\u0406~0.\u001e\u0018v\\\u079a)\u021aY;j\/!'M\u000b`+3~\u0011BzK&\u0018>f\u000bv\u06a99\bWMX\/M\u0460^K.wi[M,@e'l\u0013nw- {]U\u00147z\u001c\f|\u0018\r1\u0012\b\u0004g]\u0002\u0002\u001e>S`\u0010\u001f=9\b\u0000m\u0017)C\u0014t\u0006!\u06dd\fQ\u0013\u00103\b\bQ(\u0003\u000f+ow:m6[^61\\^R3\u001ekJF\u059bIJkWx\u0002|G\u00101m\u001e'5\t9\u0013;\\Yi\t\u0006\/\u00199}\u0006e[\u0224AL\u0000{\u0016\u00111D\u0004\u0004\u000fh\u000f\u00037\u07ea\u0018m\u0007:>_\u06cd8=}'C\u0436\u0018\uda8d\ude80\bzAL\u0000 \"S*{\f\u0001\u0007b\u0000}\u00197]#qa{}R!\u001am\/\u0019EV+\fcMM\u0002\u0015W\u0797\u0003\u00f9\u001d\u039abN?iU;\u001acKD\rj%]\u0016'567\u0014{Dc&2o\u021cTTC\u00057~~'J\u0000\u023b7to\u0014v=\tT6uv_q\u001beI\u0011-\u03b4Fv9#\u0013MWe*EHe\u049dk\u0194n,\u0014Nw]7>\u0019eKU-\u001a2LF]C3|h\u001bv$\u0007bUD%c\u001cL&OG@\/No7Jf\u0092,(\u001d:bn\u001b}\u0012\u001e\u0006vex-\u0006F9\u061eD2\n'\u0013\u0019t\/O\u03db(~-\\\u00ae1Xm\u068f\u001dN5f\u0012#t\\%\u0466LN\u0016T\u0005w!\u0018S[\u001e\uefd6\u0000\">Cn{3k\u0015I\u00012\u0500\u0004E\u0019jmZedA\u0005&.\u0732M\udad1\ude6an\u0017\"q\u001c\u0007\u001cs\u0016\/J#?2lV\"`xg\nM[\t=\u2c4crK\b\u0000\u0000DCqUU\u0005TAtEdT:K\"\f*E\u0012U#\t\u0014)@@@\u0004\u0004\u0004\u0004=yTW2*9**J$\n\u0014pUJ*\u0001\"#w\u0002B\u00118\b\u0014\u0781\u001cA\u0004ZU\fTL*bTe\u0011\u0012\"\u001c\u001fO@)\u0004G\u0000G\u001cp\u001cq\u0002N{5^w#<\u037bs\u01a7X\\]$-Q]K\/h6\u001cn\u0015G'\u055b'$\u011b5R>\u0012\u050e.r\u047eumeIH:)+\u0007){b2,j@\u014eVFh0U%bQ=9N,`\u0006P+?\u0285Wm\u001ffX\u000b7zgQ36Q{$\u0016dv$'lW\u0002\\,\u04ad\u0017\u0118vz\u0019\/\u0015w\u0019)|3\u0017e\u02a8r5m \u02e0-mq,xfN\b3\"V*0r\u0010\u0358c\u0007\t\/eWg'\u0018BAD2s%-11*&\u0011qq\u0313:\\=]\u0004PA\"\u001dEUX1\u0006^FgoRq\u0006\u0528\u05b4n\u067f`iM\u03edK}eCF\u001bJaGW+g'mwTa\u001f3\u0019U\u0002.6\u001d\u001e\u0575N2dq\u073bw\u0013?w\u0014-7N`u]5n\u012b\u000f\u001c{yKF'THF]#\u000b}\u001c\u000e+y79|\u000eeX\u0005\u00121=nHM43UohJmN\rN^A\"\u06c6.LJ>\u001d*`\ucb994QM-JuY\u0004h]\u04a6H\u055bX~]~I8\u01158\u05ee]',_g::Z\rv\n~v\u0018&\u0001\u000f\u04ae^\u0019wly%&`cgV\tS<\u0017\u0017qw@7NJ\uda23\udd63\/?o1{\u0010V&e@n\\uJ<2\u02f4<UXI-Q\u001btB\b<\u0003Ym\u0003q\n]lk\\u\u001d~\/5A1cTWr2EFS't)'\u05e0\u0014q;O|fE:\u0605\\@]+-UH`8\u0140Le\u067f\u001cu0\/+\rUH\u000fK\\!f'\u0015\u0000\u001a)\u000f{S\u0011S|\u0013}\u016bDi9cZ\u076e_q\u02a4^-wSA[O\u001aI\u0004\u058fU'\n&2\u000fy\u000b\uc0eeW?uzm\u0185}z5C\u00b2m&\u0007&\u00a5Zzt\u001a=\u0011u)?\t\u0016I\u0007Vk\u0001\u0000\u93a5AU&\/R}T!EL;\u001f=x_\u001f\u0012=\u0011QS65\"\u0016u\u0002JZeIOix{-8\u0007\u06ad\u0002m_I\u00137z-hZ&kl\u0011&]~!U\u058f~F:Gc\u055bq\/)h\u001bzgf\u0307_ljn\u000b]K#f?wN5;Yr\u0441\"]o91WtF~M6;Ba.v\u0016Czs\u001b3,s\b3iq\u0012\u0004U*ko7\u001a\u0013)\u05edZN=\n\u0017`.\u001dR\u0017N\u001bT.'Nsx\u001c3LCn1`K(#K\u0012y\"'h+LV\u07ab\u061eUN{\bV_R\u001av\u001dBN?]|%b~\u03a8\"y\u001b7\u0016\t\u03d4\u02cbm\u00039!\fUEJX\\M;D_l\\b\u0015;<$l\u0015\u000f[\u00173.j;v%{}\u9f99\u001fZ5^l9gYbc=5\u001a\u04f6sg8\u0012!kLW;CS.\\\u02b07}\u0015\u0000,-f\r=:\u06fczWg2\u0015p\rKfW,y+h\u052c$-\/2=4\u0013]-\be4t\u001f\u001dN{5\rW\ua442a=opj}z.L:\u000exE\u001efKK\u065c=\u0003wT2\u0002.\u001f?)% \u000b~Z\r,\u05cd+Aia\u028f-K6\u001f^\u0772W4\r#Do!3gF$%}X1\u001d%*U%1S5\ub5c92i\u0011\u0014l+4O`U\u001b4\u0019\r&,N\u0007\u001a,\u0000i\u0019\u0012@2vC$!P=i9\u00162\u03929iz\u0343Z>Ps)-1\u0018V^\u0006%\/PRlfKLk'\u0011\u0579{7\u001c;\u0011<cZ_xS\u0011XlmmF\u00e5{s\u060b5:\u001c7a1\u000e^\u001ea\n\u0092+>\u0553i\u001d,E4!\u0013z.)+\u0117[\f+;\\\u001dpp\u0376tH:[\u0018;\u001fuf${#\u056czZ\fV\bo\u001b-\u001aP`PJ\u0080y_\u000fu\\]{m{!7\u4d1d\u001e\u05ec;KJ,\u0010S3\u0019?Y;\u0487\u0015YRQg\u0012\u06aeBKZ X0Vx3m*q\u001d\u0011T\u969e;S=Z5^8BFU04dj\ub1b1(\u000b;Fr%tiy\nPngl\u0012h\u057a+Mk~\u0297\u0005\t^\u001a\u0563\"w\u001frIz6Lx\u0013\u00075xvuj\u000bx\u026dVSLq>\u0019!Y\u0005AjZF#;\u001e>\u0293\u000fR;\u0015\u001aR\"!\u001c\f{FFw\u0737nm_r\u001c,5n\u000fi'ry]~\u0012\u001eNk-oi\u001e0D\u34691G\u0019N=2DRuh-i\u0011z\u0019d.,J{\fE~T,~_z\u0019R\ncbu\u00188usyT0MBM[[_\u001d\u001dtFt\u04e4,;UM\u0011\u0003\u0016\u0019+\u00152aC7R\u06c4w\u001d\r[=icCkX_\u001by)\u0000\u058f\u06aa|4gu1{,O\u0004qS\u07cb+x+zZCUOVwORk;\u001c%\u041cU;M\u0010d&Y79\b\u0019U\u001cI^\u02e2\u0470X\u0467gknIW;d\u064cm\u0019\u0019^#IU+\u001djF<\u001fZY\u058d\u0016[.7xO=\u057a\u0005eVO\njV\u07abt;]-\u0413\u0015C[4cl\u0019m<\u0004\u0002#9_n\bZ#\u044e\u000f`X6}7\u001d\u0016D\u001fazb{\u001dgGe>\u0013\u0015g&96J:Ru\u0003\u0018\udab1\udd24MX\rl\/rjnj:JoZ)-Y[$\u0766?\u001e\u02dfAR^5[{`AG\u008b{\"\/\u058cA\u0019\u0006i\/(f\u001eVJJ]_iZH\u001e\u0003<f\u0002Y\u0002g#uK\u033c\rc\u07213\nRB\t\u0019\u0004M$\u0012f@.= N\u0013\u052aO5\f\u054c\u0003*j34=.N5\u00044\u0629\u025a\u036e3J\u0005K$U`FB[:\rCB{]\u01adZ\u0007jZ\u0018h\u03aa\u041avu\u001eW-&\u0017.lRM\u0014NLfB\u0016^\u001e\\U+\u0006\u049d>Na\u0014j9\u0015\ub12e+YaClf \"*0\u0000!\f:\u00156H.\u001f\u0677nS.\u023e]+\u0001\u9d2cVCp.6yMe\u0018\t,\u0002\u000fjr\u0018'VTu)rK\u0007`Tb\/Y;9\b\/T@ddX\u0653\u0002\"{\"d8-\u0010\u0018 \b^^]4n5+\\Y;xV)\u0576fQP\u0124\u037eeW]$:`L_\u03b5^:g5zk@,kNSL&\u0012O,bEwWJ\u001e\u0003\u046cgi\u0323]71Ry\u0007D\u001b\u001c!\u0004Ef!\u0405rr\u07f6k[.iueEv_>w\u0006\u001f\u0011\u03aeru\u011aJD\u0000eh\/g\u0012k\u0018H\u001c\u001c.H\u06be:\u0267Wy[n*et\b>q^\u0019\u0015Nf8=cG[@wOvkppP&d\u045f\"lV[8\u039f#m2i\u0225J}\u001fg\u0017:\u0016\u0016\u0002e]SQOEr\u076dC\u0017Rm8\u0015\\\u0014j\u0010\u0011s\/\u0007\u0005Bzx'fWv\u000b<=k>9E}jV\t(\u0012\u0013r\n\u0153\u0013y(j2p\u030ejg=M\u0346R(\u001dp}R?m+\u0789%\u0279AzN\u061b\u000b.k\nQ.uwo\u0000G0\u001b-u~Yk\u001d2\u0017kgA\u06b2g:?&u\b\u001e\u0018-K\t?d\u0015\u0019\u0007\u04bdB=[\f\u0547Y#u\u0744\u0264\n;2\u000b=V\u001c|D\u000b}]\u0315>AksM#\t\ffx\u034cKu\u0006_:uu{5\u0003+\u001e6~}\t5>\u0019\u0549Jp3G;4\u001c _dnk\u001aQB{I-s}(P:mg1-\u69b6\u001d~lwJ\fl\u000bz&b0is2F0-\u0013d^.9<S\u0132fI>e\u07fa{_(\u0619)XW_Xt1Pz'fx-&\u001fXm\nL\b1(2X\ud973\udd76\u061eC\t\u03b5T+\u001db4a.>\u0658\u001d5ALZ&1+\u0011\u0015Z\u000fii\u0011\u0003U\u001e32+^-(b\u001eHcSZ\u0004.c\\N\u00f05>\u001b\n+\u0014ly|\u02d1\u0137PZ\u0016\/\u0356p]1I8\u000e88\u001f0@\u0011) `\u0011\u0001\u0001\u0001\u0001\u0001\u0001\u000f+\u001d\u04f1]\u07bf\u0437=#+KC7}qgYY\u0586I\u00073SK8fL\u0018\u0232\rSz\b~$T(\u001c\u000f{T4\u001cVG\u046ft\u001d\u00157Rl\u0015;trrJ\/\u000f n\u00152h@\u0017\u0015\u0000\u00aa\u001fh\u062bwZX\u04a0ZR+V;\u0013v]bYJ\u0011\u000bQ\u03938Mq1^\u0003\nLT\u001e3$T\u06a42\u0011\u009bk\u0002\f1\u0007\u0012(\u0001\u0005\u0006\u0016)\u0018\u001eo&GKH0oLtoNG\rTf.\u001e-~UL*\u001faU\u00022oM9D\u052dRnr\u0015\u0012uT3\f%\u0012iuY8\u0013\n\u0427_\u0018~\rON\u0011|\u06a1XC\u066e\u0016\u0005\u0013\u001b\bs)\r\u001f\u001b37 \fZ(c\u0019I*D\u06c9R)\u0004y{#L\u00152\\\u001c.*+8\u0419%\u001b]Q\u0017\u07aa-9\u001c-\f>E\u0012W!@.u\u0015v\u0001X\u001a`\u0172Wv\u0015\u001a4y'\"2\u000bEZ\u0514svX\u0006C).4YBSG{r\ud45cw.j3\u00164\u07b4)y36eb\r]\ua7b5x\u066a6\u001d\u015byV6)5E\u0002'[\"\u026f\u072e\ub839<\u001b\u0018v1F[\u000fuf\u001f\u001fenDQ#fr:\u0017;@e\u001dWA* $Qh\tG(r{UqPm\\ztQY\r\u0011\u0018IM^<BXR\u0002On!\u04b7TW)\u0004gqL+s1aknxvg1T\u0002vvn9}Zujuuz\u0005p7\u0324iZD$\u0005\bI\u0016(oJF\u000e\u0016n^-^K\u046d\u0006\u0013#\/\u001dVhV9\n)\u0019\u0010I\u05a7,VGP\n\u001aIz\u0011nJ\u0207mKV\u0010[EBbh\/i\u01d4kE\u000b\u001b_SB\u01fd]\u03e6L#rgN>?\u0014\u02b4kP|eP-..Ske2\u0005~F,m?=\u001a\u0000$+cnPL=6I\u0017Qnu\u0526<v=CcrZ\u0577V\u04e9'\u000ei\u0017tt,s\u00149X`z\u035d7nIHf\u0012lKCy\u0014\u94f9Yu\"f*\u0014*\r\u001a\u0215e\u001d;^\u04a2<$m\u0015,*)+2#4Pz\u0363\u00167\u0004<!I.lV+C\u07b7\u0015\u0006\u0732d]r\u0014\u026c V7\uc251\u001a;\u00062MN\u0013_#{\u0019J\u001b$+z1\u0616\"Ca\u0466\u000bCy?\u0010lU\u065f\u010e4D\u001d\u0687_n\u0018a*\u0010\u0006\u0005O?p\fzMSP1z6$jf\u000fS1\b\u001c\u0000#\f\u0017;\u001f\u55f0}}\\C\u0708h}\u0183af\u0016\u000ex\u05afxt\u01a6\u0012L}Uy)VH\u00fb<,z\u0018PW-W\u001a]7EQW;l=*h\u00177_7;5\u03e36W9\u05ea;k\"\u0018&X?j,:oKZ4:%K7\u000fE\f7U\u001a\u078aak:L)E]\u001b=f\r^D1I\u02d75h=\u0000\u0774\rnR\u0686gFI@.3:LmoX\teY\u0015`~o\u001biBJV\u064a\u034bJ4Ng1\t=zZWJ\u001dg\u057a\fs;k7|\u00133\u0012n.F1:U.\u0732P.#\u0013^U2mnck\u0001e%V;Y\fu6\u001aN^sxmy\u0005[th\u001dU\u025dz\r!kwM\u0017\u0696j>\"!e\u0012n*\u00101;+\/Mv\u00056\u0010\u0015D8\u0001q\u001dFfpz\u00046}\u0005\rY\u000e\rB+^e_WJgVJ9vZ>\u0007!\u001f(\u0012\u0012RrrN\u07abi\u000fy\u0534f}\u001bVCv\r\"\u0432_\u000b\u0011\u000e%1br6\bu$J&a!@L>-F^M\u0383\ub5e7\u00135\u0018\u0004\u001d\"eZV\u0007:\u000bJRjea}SighIrfhH6#\u0511+\u0015P\u001cp*-;_\u05b3\u0763>tZ%\u001b!\rPSZV\u001eY\u0513H\u073c$\u000e \\Y\rTI%r1TO\u0521[.ksg\bKX]e\u0015o\u0015lID+)\u0016\u046bi\u0017\u0005\u0010Yv\u0262B<\u001c\u000ffM\u001bBNZdKs\u4589\u0017\u0431\u05a8\u0003\u0570J=3qr\b\u0013\u0005}Xh5|vY\u0530ULbE3\u02ad\u001eY(KLZrXO\u0018q2)|\u0000\u001c\nhus\u04f4+u)fX\\F;keUy\u031dB\u00ea\u040eT\u0509lt@A!';Maj[(\u001d](FCh)9p\u001eQ*7\u0017v_DO9Pq#M88\u000388\u000388\u000388\u000388\u000388\u000388\u000388\u000388\u000388\u000388\u00038\u0000\u0000\u0007\u0000\u0000|\u0000\u0007\u0000\u0001\u0000\u0001\u0000\u0003\u0000\u0003\u0000\u0004\u0000\u0000\u0000\r\u0000\f\u0000\u0010\u0001,\u0001,\u0001,\u0001,\u0000(\u0000\u0000a\u0010QuickTime and a\u0000\u0000(\u0000\u0000F\u0019Photo - JPEG decompressor\u0000(\u0000\u0000<\u001fare needed to see this picture.\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\n\u0000\b\u000bePlSkPSP\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0004\u0019\u0000tsr\u000e\u0000\u0000\u0004\u0019\u0000qpo\u000e\u0000\u0000\u0004\u0019\u0000nml\nn\u0000\u0004\ncSrc\u0003m\u0000&\nl\u0000\b\u000bkfrmID \nq\u0000\u0004\ncLiP\u0003p\"\no\u0000\b\u000bkfrmID \nt\u0000\u0004\ncFlT\u0003s=\nr\u0000\b\u000bkfrmID \u0003\u001b\t\n\u0000\b\u000bboovfals\u0003\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000p\u0000[\u0000\\\r\u0000[\u0000\u0003I\u0000\u0001\u0000g\u0000n\u0000]\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000]\u0000\u0001m\u0000\u0000\u0000g\u0000j\n\u0000\u0004\ncArt\u0002\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0003\u0000\u0001\r\u0000Z\u0000\u0002r\u0000\u0000\u0000s\u0000\u0000^\u0000_\r\u0000^\u0000\u0002n\u0000\u0000\u0000s\u0000}\u0000`\u0000a\r\u0000`\u0000\u00011\u0000\u0000\u0000y\u0000}\n\u0000\u0004\npPCT\r\u0000a\u0000\u0002n\u0000\u0000\u0000s\u0000y\u0000b\u0000c\r\u0000b\u0000\u00024\u0000\u0000\u0000t\u0000y\u0000d\n\u0000\u0004\ncArt\r\u0000d\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0003\u0000\u0001\r\u0000c\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000e\r\u0000e\u0000\u0002r\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000h\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000x\u0000\u0002\u0000y\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000{\u0000\u0002\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0004\niTunes.app\u00000L\u00007\u0010 \u0000\u000f\u0004\u0000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u00054(K @\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FwH+\u0000\u0000\u0000\u0000\u0004\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@T\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000F\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0004\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012~}|\u0000\u0000{z\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n~\u0000\u0004\npPCT\u0003}\u0000\t\n|\u0000\b\u000bePlSkPSp\u0001{\u0000\u0000\u0002z\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001aj\f\u0000\u001bk\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u000e\u0000\u0000\u0002\u0004y\u0000\u0003y\u0000\t\u000e\u0000\u0000\t\u0000x\u0000\u0000\u0000\u0000wvu\u0000\u0003x\u0001H\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000R\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000D\u0000r\u0000i\u0000n\u0000k\u0000i\u0000n\u0000g\u0000 \u0000S\u0000o\u0000n\u0000g\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u00003\u0000:\u00003\u00002\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\nw\u0000\b\u000bboovfals\u0003v\u0000<\nu\u0000\u0004\nnull\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000P\u0000a\u0000r\u0000t\u0000y\u0000 \u0000S\u0000h\u0000u\u0000f\u0000f\u0000l\u0000e\n\u0000\b\u000bePlSkPSP\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0004\u0019\u0000tsr\u000e\u0000\u0000\u0004\u0019\u0000qpo\u000e\u0000\u0000\u0004\u0019\u0000nml\nn\u0000\u0004\ncSrc\u0003m\u0000#\nl\u0000\b\u000bkfrmID \nq\u0000\u0004\ncUsP\u0003p\fE\no\u0000\b\u000bkfrmID \nt\u0000\u0004\ncFlT\u0003s4.\nr\u0000\b\u000bkfrmID \u0003\u0001H\n\u0000\b\u000bboovfals\u0003\u0000<\n\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"be4a9341061c8bd3e269760d82b847ff57b39c59","subject":"addNearTop for fmGUI_ManageLayouts_Layout_CreateOrUpdate","message":"addNearTop for fmGUI_ManageLayouts_Layout_CreateOrUpdate\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): Minor fixes. Proper calls to fmGUI_CheckboxSet and fmGUI_PopupSet. 1625: Added support for addNearTop. \n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\nproperty ScriptName : \"fmGUI_ManageLayouts_Layout_CreateOrUpdate\"\nproperty debugMode : true\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 2020-03-04-1625\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}, addNearTop:false}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet({objRef:inludeInMenuButton, objValue:includeInLayoutMenus of layoutOptions})\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:menuSetButton, objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:formCheckbox, objValue:formViewEnabled of layoutOptions})\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:listCheckbox, objValue:listViewEnabled of layoutOptions})\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:tableCheckbox, objValue:tableViewEnabled of layoutOptions})\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:defaultButton, objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect({folderName:layoutParentFolder of layoutOptions}) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet({objRef:checkboxRef, objValue:1})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\telse if addNearTop of layoutOptions then\n\t\t\t\t-- select the 1st row\/layout so that this new one gets added just below it, instead of at bottom of whole list:\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tselect row 1 of outline 1 of scroll area 1 of manageLayoutsWindow\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjectByCoords(buttonRef)\n\t\t\twindowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tfmGUI_PopupSet({objRef:buttonRef, objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): Minor fixes. Proper calls to fmGUI_CheckboxSet and fmGUI_PopupSet.\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\nproperty ScriptName : \"fmGUI_ManageLayouts_Layout_CreateOrUpdate\"\nproperty debugMode : true\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 2020-03-04-1543\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet({objRef:inludeInMenuButton, objValue:includeInLayoutMenus of layoutOptions})\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:menuSetButton, objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:formCheckbox, objValue:formViewEnabled of layoutOptions})\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:listCheckbox, objValue:listViewEnabled of layoutOptions})\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet({objRef:tableCheckbox, objValue:tableViewEnabled of layoutOptions})\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:defaultButton, objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect({folderName:layoutParentFolder of layoutOptions}) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet({objRef:checkboxRef, objValue:1})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjectByCoords(buttonRef)\n\t\t\twindowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tfmGUI_PopupSet({objRef:buttonRef, objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"95c17841486cc2683248d67f88dc525a87cd283a","subject":"removed tell htcLib code from fmGUI_ManageLayouts_Layout_CreateOrUpdate","message":"removed tell htcLib code from fmGUI_ManageLayouts_Layout_CreateOrUpdate\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjectByCoords(buttonRef)\n\t\t\twindowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then tell application \"htcLib\" to logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjFromHtcLib(buttonRef)\n\t\t\ttell application \"htcLib\" to windowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f003d36ff2542b9c147409e4a752a12fe9114ed1","subject":"added fmClip - Button Info from Clipboard","message":"added fmClip - Button Info from Clipboard\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"48299cd8e44a71d039b0009e2fef1cf0f2d8a480","subject":"Move fileRef outside of try (where it can be accessed)","message":"Move fileRef outside of try (where it can be accessed)\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes XML reserved characters in the given string\non encodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\"\\\"\", \""\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend encodeXmlChars\n\n-- decodes XML reserved characters in the given string\non decodeXmlChars(theString)\n\n\tset theString to replace(\"&\", \"&\", theString)\n\tset theString to replace(\"<\", \"<\", theString)\n\tset theString to replace(\">\", \">\", theString)\n\tset theString to replace(\""\", \"\\\"\", theString)\n\tset theString to replace(\"'\", \"'\", theString)\n\treturn theString\n\nend decodeXmlChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as XML\non getResultXml(theResult)\n\n\t-- encode reserved XML characters\n\tset resultUid to encodeXmlChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeXmlChars(title of theResult)\n\tset resultSubtitle to encodeXmlChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeXmlChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset xml to \"<item uid='\" & resultUid & \"' arg='\" & resultUid & \"' valid='\" & resultValid & \"'>\"\n\tset xml to xml & \"<title>\" & resultTitle & \"<\/title>\"\n\tset xml to xml & \"<subtitle>\" & resultSubtitle & \"<\/subtitle>\"\n\tset xml to xml & \"<icon>\" & resultIcon & \"<\/icon>\"\n\tset xml to xml & \"<\/item>\"\n\treturn xml\n\nend getResultXml\n\n-- retrieves XML document for Alfred results\non getResultListXml()\n\n\tset xml to \"<?xml version='1.0'?><items>\"\n\n\trepeat with theResult in resultList\n\n\t\tset xml to xml & getResultXml(theResult)\n\n\tend repeat\n\n\tset xml to xml & \"<\/items>\"\n\treturn xml\n\nend getResultListXml\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\ttry\n\n\t\tset fileRef to open for access theFile with write permission\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\n\ton error\n\n\t\tclose access fileRef\n\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeXmlChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeXmlChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeXmlChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c7bc373763eb24309ac63966ae3788ffba33b822","subject":"Fix #114: GrowlTunes hanging if pictd has died.","message":"Fix #114: GrowlTunes hanging if pictd has died.\n\nAs noted in the ticket, the fix here is to ask for the raw data, not the PICT data, for the artwork.\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000$\u0000%\r\u0000$\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$\u0000(\r\u0000(\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000)\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000%\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000,\u0000-\r\u0000,\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npRaw\r\u0000\/\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000*\u0000-\u00002\n\u0000\u0004\ncArt\r\u00002\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u00006\u0000<\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u00006\u0000:\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000:\u000f\u0000:\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000I\u0000K\u0000A\r\u0000A\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000I\u0002\u0000I\u0000\u0002\u0000\u0005\u0000J\u0002\u0000J\u0000\u0002\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0010\u0000:\u0000\u0012\u0000=\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0014\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001a\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001e\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000#\u0000$\r\u0000#\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0005\u0000\u001d\u0000$\u0000'\r\u0000'\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000(\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000&\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000$\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npPCT\r\u0000.\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000\/\u00000\r\u0000\/\u0000\u00024\u0000\u0000\u0000*\u0000-\u00001\n\u0000\u0004\ncArt\r\u00001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u00002\r\u00002\u0000\u0002r\u0000\u0000\u00006\u0000<\u00003\u00004\r\u00003\u0000\u0001J\u0000\u0000\u00006\u0000:\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00007\u0000\u0002\u00008\r\u00008\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u00009\u000f\u00009\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0005:\niTunes.app0\u00000\b\u00007\u0010`\u00002\u00000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0002|(\u0007 \u07c0\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001>\u0000\u0002\u0000\u0001\u0007Saulire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\u0000\u0005:\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001#\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000M\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0005:\u0000\u0002\u0000\u001fSaulire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000S\u0000a\u0000u\u0000l\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000<\f\u0000<\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002l\u0000\u0002\u0000I\u0000K\u0000?\r\u0000?\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000@\r\u0000@\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000A\r\u0000A\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000B\u0000C\u0001\u0000\u0000\u0010\u0000B\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000C\u0000\u0007\u0010\u0000D\u0000E\u0000F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000G\u0002\u0000G\u0000\u0002\u0000\u0005\u0000H\u0002\u0000H\u0000\u0002\u0000=\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000E\u0000\u0000\u0010\u0000F\u0000\u0010\u00009\u0000\u0012\u0000<\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npPCT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ed5a7dd8b667953a16d612c361547c42a4c27a3a","subject":"Fixed authentication test under 10.7","message":"Fixed authentication test under 10.7\n\nChecking for OS greater than 10.7 was using wrong comparison","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) exit; URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or later we need to supply password\n\ttry\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) exit; URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"272fe457191b5baba931bcb427e4c6604d501985","subject":"Get the metadata for the first track","message":"Get the metadata for the first track\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Log some debugging information\n log (pcatArtist as string)\n log (pcatAlbum as string)\n log (pcatComposer as string)\n log (pcatGenre as string)\n log (pcatDisc as string)\n log (pcatDiscs as string)\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"753ec6e70849ab9350dc59fad5ac6e3d7875ad39","subject":"Delete DirectJarvis.applescript","message":"Delete DirectJarvis.applescript","repos":"gskielian\/Jarvis","old_file":"DirectJarvis.applescript","new_file":"DirectJarvis.applescript","new_contents":"","old_contents":"(*Instead of using the spotlight app, this opens a new terminal directly*)\n\ntell application \"Terminal\"\n\tactivate\n\t(*sets up the script for dictation*)\n\ttell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\n\ttell application \"System Events\" to key code 123\n\n\t(*opens up speech-to-text*)\n\ttell application \"System Events\" to key code 63\n\ttell application \"System Events\" to key code 63\n\tdelay 4\n\n\t(*presses \"enter\" on DictationIM*)\n\ttell application \"System Events\" to tell process \"DictationIM\"\n\t\tclick button 1\n\tend tell\n\tdelay 1.2\n\t\n\t\n\t(*presses \"enter\" in the terminal*)\n\ttell application \"System Events\" to key code 36\n\n\n\t(*closes the terminal when process is completed*)\t\n\tset mainID to id of front window\n\tset toggle to 1\n\tdelay 0.1\n\tset thetimeout to 100\n\trepeat until toggle \u2265 thetimeout\n\t\tif busy of currentTab is false then\n\t\t\tclose (every window whose id = mainID)\n\t\t\tset toggle to thetimeout\n\t\tend if\n\t\tset toggle to (toggle + 1)\n\t\tdelay 0.1\n\tend repeat\n\t\n\t\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fe3c87031922dddc2ab0c991ade8a4218c79d7ac","subject":"We're going to use this applescript, after I rename it.","message":"We're going to use this applescript, after I rename it.\n","repos":"nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode,nagyistoce\/maccode","old_file":"Release\/dmg_sdk.applescript","new_file":"Release\/dmg_sdk.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"MacCode\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tclose\n\t\tset opts to icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 60\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:maccodeDMGBackground.png\"\n\t\t--set position of item \"Bindings\" to {263, 76}\n\t\tset position of item \"Source\" to {370, 76}\n\t\tset position of item \"MacCode.webloc\" to {263, 196}\n\t\t-- set position of item \"Growl version history for developers.webloc\" to {370, 183}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 490, 360}\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl-SDK\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tclose\n\t\tset opts to icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 60\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlSDK.png\"\n\t\tset position of item \"Bindings\" to {263, 76}\n\t\tset position of item \"Frameworks\" to {370, 76}\n\t\tset position of item \"Growl Developer Documentation.webloc\" to {263, 196}\n\t\tset position of item \"Growl version history for developers.webloc\" to {370, 183}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 490, 360}\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d69fb119cd6aac50aca0d7dcf2946f98903a2746","subject":"Issue #247: Fix bug in which loading of Kalabox icon fails on OS x < 10.7.","message":"Issue #247: Fix bug in which loading of Kalabox icon fails on OS x < 10.7.\n","repos":"kalamuna\/kalaboxv1,kalamuna\/kalaboxv1,kalamuna\/kalaboxv1,pirog\/kalabox-server","old_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_contents":"set kalaicon to 2\ntell application \"System Events\" to set itExists to \u00ac\n exists of alias ((path to me as text) & \":..:..:..:..:app.icns\")\nif itExists\n set kalaicon to alias ((path to me as text) & \":..:..:..:..:app.icns\")\nend if\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","old_contents":"set kalaicon to alias ((path to me as text) & \":..:..:..:..:app.icns\")\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"462a485f0686b44fbaabad875ee8a21e3e0f61bc","subject":"[FIX] Xmo'd wasn't creating MO src folder. Bug introduced in https:\/\/github.com\/rentzsch\/mogenerator\/commit\/0894c56ed471b4c5d0d30cb312f1d8970a0dd216#L0L118","message":"[FIX] Xmo'd wasn't creating MO src folder.\nBug introduced in https:\/\/github.com\/rentzsch\/mogenerator\/commit\/0894c56ed471b4c5d0d30cb312f1d8970a0dd216#L0L118","repos":"rentzsch\/mogenerator,seanm\/mogenerator,seanm\/mogenerator,casademora\/mogenerator,Erin-Mounts\/mogenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,mjasa\/mogenerator,adozenlines\/mogenerator,pronebird\/mogenerator,bewebste\/mogenerator,VladimirGoncharov\/mogenerator,fizker\/mogenerator,seanm\/mogenerator,anton-matosov\/mogenerator,willowtreeapps\/mattgenerator,kostiakoval\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,willowtreeapps\/mattgenerator,skywinder\/mogenerator,hardikdevios\/mogenerator,bewebste\/mogenerator,mjasa\/mogenerator,Erin-Mounts\/mogenerator,untitledstartup\/mogenerator,pronebird\/mogenerator,casademora\/mogenerator,otaran\/mogenerator,Erin-Mounts\/mogenerator,ef-ctx\/mogenerator,mjasa\/mogenerator,skywinder\/mogenerator,willowtreeapps\/mattgenerator,rentzsch\/mogenerator,skywinder\/mogenerator,kostiakoval\/mogenerator,anton-matosov\/mogenerator,fizker\/mogenerator,iv-mexx\/mogenerator,bewebste\/mogenerator,rentzsch\/mogenerator,iv-mexx\/mogenerator,hardikdevios\/mogenerator,otaran\/mogenerator,hardikdevios\/mogenerator,adozenlines\/mogenerator,iv-mexx\/mogenerator,fizker\/mogenerator,bgulanowski\/mogenerator,untitledstartup\/mogenerator,untitledstartup\/mogenerator,VladimirGoncharov\/mogenerator,iv-mexx\/mogenerator,anton-matosov\/mogenerator,bgulanowski\/mogenerator,bewebste\/mogenerator,bgulanowski\/mogenerator,otaran\/mogenerator,VladimirGoncharov\/mogenerator,casademora\/mogenerator,ef-ctx\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","old_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1d6a7196b724238a2f6cec6083a8abd71b2dd25f","subject":"corrected resources_directory","message":"corrected resources_directory\n\nChanged it to go up one more level.","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5ee8b7a89839a63885d0ef25a1b40ee361cb4a71","subject":"fix personal switch","message":"fix personal switch\n","repos":"lfender6445\/dotfiles,lfender6445\/dotfiles","old_file":"osx\/switch_personal.scpt","new_file":"osx\/switch_personal.scpt","new_contents":"property thePane : \"com.apple.preferences.bluetooth\"\n\ntell application \"Terminal\"\n activate\n my execCmd(\"ssh ${TARGET_2}\", 1)\n set pass to system attribute \"TARGET_2_P\"\n my execCmd(pass, 5)\n my execCmd(\"osascript ~\/.dotfiles\/osx\/bluetooth.scpt\", 0)\n my toggleBluetooth()\nend tell\n\non execCmd(cmd, pause)\n tell application \"System Events\"\n tell application process \"Terminal\"\n set frontmost to true\n keystroke cmd\n keystroke return\n end tell\n end tell\n delay pause\nend execCmd\n\non toggleBluetooth()\n tell application \"System Preferences\"\n activate\n set the current pane to pane id thePane\n end tell\n tell application \"System Events\"\n tell application process \"System Preferences\"\n try\n click button \"Turn Bluetooth Off\" of window \"Bluetooth\"\n on error\n click button \"Turn Bluetooth On\" of window \"Bluetooth\"\n end try\n end tell\n end tell\nend toggleBluetooth\n","old_contents":"property thePane : \"com.apple.preferences.bluetooth\"\n\ntell application \"Terminal\"\n activate\n my execCmd(\"ssh ${TARGET_2}\", 1)\n my execCmd(\"${TARGET_2_P}\", 5)\n my execCmd(\"osascript ~\/.dotfiles\/osx\/bluetooth.scpt\", 0)\n my toggleBluetooth()\nend tell\n\non execCmd(cmd, pause)\n tell application \"System Events\"\n tell application process \"Terminal\"\n set frontmost to true\n keystroke cmd\n keystroke return\n end tell\n end tell\n delay pause\nend execCmd\n\non toggleBluetooth()\n tell application \"System Preferences\"\n activate\n set the current pane to pane id thePane\n end tell\n tell application \"System Events\"\n tell application process \"System Preferences\"\n try\n click button \"Turn Bluetooth Off\" of window \"Bluetooth\"\n on error\n click button \"Turn Bluetooth On\" of window \"Bluetooth\"\n end try\n end tell\n end tell\nend toggleBluetooth\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ff5693ce8eb58b2f4904aa05ae92ea51586d2450","subject":"added fileChoose 1.0","message":"added fileChoose 1.0\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\tset regexSearch_ExtraSpacesBeforeSemicolon to \"([^\n]) +;\"\n\t\n\tset regexReplace_ExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\t\n\tset literalSearch_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\n\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\n\tset literalSearch_queryDebugOLD to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) & Char ( 13 ) &\"\n\t\n\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_ExtraSpacesBeforeSemicolon using regexReplace_ExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace literalSearch_ExecuteOLD using literalReplace_ExecuteOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\tset regexSearch_ExtraSpacesBeforeSemicolon to \"([^\\r]) +;\"\n\t\n\tset regexReplace_ExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_ExtraSpacesBeforeSemicolon using regexReplace_ExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"799f04ed9bbf92f74b244851ceaf9f86327d8bad","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"38be35e0c9d3eb0ff048b271bf46a9b1c746a23f","subject":"Add myOpenGitHub","message":"Add myOpenGitHub\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myUrl to (do shell script \"cd \/Users\/khoa\/XcodeProject2\/XcodeWay; git config --get remote.origin.url\")\nend myOpenGitHub\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\nmyOpenDerivedDataFolder()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"47c63765b8b72b2302c73d1bc43d9b39e9e04c97","subject":"macosx: partially revert 884199d83044b4ce5b0a4c4ebb8896ae23cf4d96","message":"macosx: partially revert 884199d83044b4ce5b0a4c4ebb8896ae23cf4d96\n\nthis removes the unintended changes to the 'Delete_Prefs' script\n","repos":"xkfz007\/vlc,xkfz007\/vlc,jomanmuk\/vlc-2.2,jomanmuk\/vlc-2.1,krichter722\/vlc,krichter722\/vlc,vlc-mirror\/vlc-2.1,krichter722\/vlc,vlc-mirror\/vlc,vlc-mirror\/vlc-2.1,shyamalschandra\/vlc,vlc-mirror\/vlc,krichter722\/vlc,shyamalschandra\/vlc,xkfz007\/vlc,vlc-mirror\/vlc,jomanmuk\/vlc-2.1,xkfz007\/vlc,vlc-mirror\/vlc-2.1,vlc-mirror\/vlc-2.1,xkfz007\/vlc,vlc-mirror\/vlc-2.1,shyamalschandra\/vlc,jomanmuk\/vlc-2.1,jomanmuk\/vlc-2.2,vlc-mirror\/vlc,jomanmuk\/vlc-2.1,shyamalschandra\/vlc,krichter722\/vlc,vlc-mirror\/vlc,jomanmuk\/vlc-2.2,vlc-mirror\/vlc-2.1,shyamalschandra\/vlc,vlc-mirror\/vlc-2.1,jomanmuk\/vlc-2.1,vlc-mirror\/vlc,krichter722\/vlc,jomanmuk\/vlc-2.2,xkfz007\/vlc,vlc-mirror\/vlc,krichter722\/vlc,jomanmuk\/vlc-2.2,shyamalschandra\/vlc,jomanmuk\/vlc-2.2,jomanmuk\/vlc-2.2,xkfz007\/vlc,jomanmuk\/vlc-2.1,shyamalschandra\/vlc,jomanmuk\/vlc-2.1","old_file":"extras\/package\/macosx\/Delete_Preferences.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"extras\/package\/macosx\/Delete_Preferences.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0010\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0010\u0000\b\u0000\t\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000n\u0000A\u0000r\u0000e\u0000 \u0000y\u0000o\u0000u\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000V\u0000L\u0000C\u0000'\u0000s\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000?\u0006\u0000\t\u0000\u0003\u0000\f\u0000\r\n\u0000\u0004\nbtns\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0014\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000\f\u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0002\u0000\u0000\u0006\u0000\r\u0000\u0003\u0000\u0016\u0000\u0017\n\u0000\u0004\ndflt\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0006\u0000\u0017\u0000\u0003\u0000\u001a\u0000\u001b\n\u0000\u0004\ncbtn\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nappr\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u001f\u000e\u0000\u001f\u0000\u0001\u0000 \u0011\u0000 \u0000\"\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000 \u0000r\u0000e\u0000s\u0000e\u0000t\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u0011\u0001\u0000%\r\u0000%\u0000\u0003Q\u0000\u0000\u0000\u0011\u0001\u0000&\u0000'\u0000(\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u0014\u0001\u0000)\u0002\u0000)\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0002r\u0000\u0000\u0000\u0014\u0000#\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001f\u0000.\r\u0000.\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001f\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001b\u00001\r\u00001\u0000\u0003I\u0000\u0002\u0000\u0014\u0000\u001b\u00002\u00003\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u00004\u000e\u00004\u0000\u0001\u00005\u0011\u00005\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u00003\u0000\u0003\u00006\n\u0000\u0004\nrtyp\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001e\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000,\u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000+\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002r\u0000\u0000\u0000$\u00005\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0005\u0000$\u00001\u0000=\r\u0000=\u0000\u0002b\u0000\u0000\u0000$\u00001\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0005\u0000$\u0000-\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000$\u0000-\u0000A\u0000B\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000A\u0000\u0001m\u0000\u0000\u0000$\u0000'\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u0000B\u0000\u0003\u0000E\n\u0000\u0004\nrtyp\r\u0000E\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000-\u00000\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0006\u0000V\u0000L\u0000C\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000:\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002r\u0000\u0000\u00006\u0000K\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0005\u00006\u0000G\u0000L\r\u0000L\u0000\u0002b\u0000\u0000\u00006\u0000G\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0005\u00006\u0000C\u0000O\r\u0000O\u0000\u0002b\u0000\u0000\u00006\u0000C\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0000\u0005\u00006\u0000?\u0000R\r\u0000R\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000S\u0000T\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000S\u0000\u0001m\u0000\u0000\u00006\u00009\n\u0000\b\u000bafdrdlib\u0006\u0000T\u0000\u0003\u0000U\n\u0000\u0004\nrtyp\r\u0000U\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Q\u0000\u0001m\u0000\u0000\u0000?\u0000B\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000C\u0000F\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\u0006\u0000V\u0000L\u0000C\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000I\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000L\u0000]\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000L\u0000Y\u0000^\r\u0000^\u0000\u0002b\u0000\u0000\u0000L\u0000Y\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0005\u0000L\u0000U\u0000a\r\u0000a\u0000\u0003I\u0000\u0002\u0000L\u0000U\u0000b\u0000c\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000b\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000d\u000e\u0000d\u0000\u0001\u0000e\u0011\u0000e\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u0000c\u0000\u0003\u0000f\n\u0000\u0004\nrtyp\r\u0000f\u0000\u0001m\u0000\u0000\u0000P\u0000Q\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000U\u0000X\u0000g\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000 \u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002\u0000[\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002r\u0000\u0000\u0000^\u0000s\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0005\u0000^\u0000o\u0000m\r\u0000m\u0000\u0002b\u0000\u0000\u0000^\u0000o\u0000n\u0000o\r\u0000n\u0000\u0003l\u0000\u0005\u0000^\u0000k\u0000p\r\u0000p\u0000\u0002b\u0000\u0000\u0000^\u0000k\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0005\u0000^\u0000g\u0000s\r\u0000s\u0000\u0003I\u0000\u0002\u0000^\u0000g\u0000t\u0000u\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000t\u0000\u0001m\u0000\u0000\u0000^\u0000a\n\u0000\b\u000bafdrdlib\u0006\u0000u\u0000\u0003\u0000v\n\u0000\u0004\nrtyp\r\u0000v\u0000\u0001m\u0000\u0000\u0000b\u0000c\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000r\u0000\u0001m\u0000\u0000\u0000g\u0000j\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000o\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000 \u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002\u0000j\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0002r\u0000\u0000\u0000t\u0000\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0005\u0000t\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000t\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000t\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000t\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000t\u0000}\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000t\u0000}\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u0000\u0001m\u0000\u0000\u0000t\u0000w\n\u0000\b\u000bafdrdlib\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nrtyp\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000f\u0000o\u0000n\u0000t\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016 moves it to the trash\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0001\u0003\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0003\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001\b\u0001-\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\b\u0001\u0014\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001\b\u0001\u0010\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001\f\u0001\u000f\u000b\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0001)\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001\u001c\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001d\u0001)\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u001d\u0001)\u0000~\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001\u001d\u0001%}\u0000\n}\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001!\u0001$|\u000b|\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002~\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001.\u0001S\u0000\u0000{z\r\u0000\u0000\u0003I\u0000\u0002\u0001.\u0001:y\u0000x\ny\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001.\u00016w\u0000\nw\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u00012\u00015v\u000bv\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002x\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001=\u0001O\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001=\u0001B\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001=\u0001>u\nu\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000s\r\u0000\u0000\u0003l\u0000\u0001\u0001C\u0001O\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001C\u0001Or\u0000q\nr\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001C\u0001Kp\u0000\np\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001G\u0001Jo\u000bo\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002q\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002s\u0000\u0000\u0002{\u0000\u0000\u0001z\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001T\u0001y\u0000\u0000nm\r\u0000\u0000\u0003I\u0000\u0002\u0001T\u0001`l\u0000k\nl\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001T\u0001\\j\u0000\nj\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001X\u0001[i\u000bi\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002k\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001c\u0001u\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001c\u0001h\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001c\u0001dh\nh\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000f\r\u0000\u0000\u0003l\u0000\u0001\u0001i\u0001u\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001i\u0001ue\u0000d\ne\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001i\u0001qc\u0001\u0000\nc\u0000\u0004\ncfol\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001m\u0001pb\u000bb\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002d\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002f\u0000\u0000\u0002n\u0000\u0000\u0001m\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002a\r\u0001\u0002\u0000\u0004Z\u0000\u0000\u0001z\u0001\u0001\u0003\u0001\u0004`\u0001\u0005\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0001z\u0001}_\u000b_\u0000\f0\u0000\bchanges_\u0000\u0000\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0001\u0001^\u0001\u0006\u0001\u0007\n^\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0006\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\b\u000e\u0001\b\u0000\u0001\u0001\t\u0011\u0001\t\u0000d\u0000T\u0000h\u0000e\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000b\u0000e\u0000e\u0000n\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000T\u0000r\u0000a\u0000s\u0000h\u0000.\u0006\u0001\u0007\u0000\u0003]\u0001\n\u0001\u000b\n]\u0000\u0004\nbtns\r\u0001\n\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\f\u0002\u0001\f\u0000\u0002\u0001\r\\\r\u0001\r\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0004\u0000O\u0000K\u0002\\\u0000\u0000\u0006\u0001\u000b\u0000\u0003[\u0001\u0010Z\n[\u0000\u0004\ndflt\r\u0001\u0010\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\u0011\u0002\u0001\u0011\u0000\u0002\u0001\u0012Y\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0013\u000e\u0001\u0013\u0000\u0001\u0001\u0014\u0011\u0001\u0014\u0000\u0004\u0000O\u0000K\u0002Y\u0000\u0000\u0006Z\u0000\u0000\u0002`\u0000\u0000\r\u0001\u0005\u0000\u0003I\u0000\u0002\u0001\u0001X\u0001\u0015\u0001\u0016\nX\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0017\u000e\u0001\u0017\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u00004\u0000N\u0000o\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000.\u0006\u0001\u0016\u0000\u0003W\u0001\u0019\u0001\u001a\nW\u0000\u0004\nbtns\r\u0001\u0019\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\u001b\u0002\u0001\u001b\u0000\u0002\u0001\u001cV\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0004\u0000O\u0000K\u0002V\u0000\u0000\u0006\u0001\u001a\u0000\u0003U\u0001\u001fT\nU\u0000\u0004\ndflt\r\u0001\u001f\u0000\u0001J\u0000\u0000\u0001\u0001\u0001 \u0002\u0001 \u0000\u0002\u0001!S\r\u0001!\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000\u0004\u0000O\u0000K\u0002S\u0000\u0000\u0006T\u0000\u0000\u0002a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000f\u0001$\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A\u0006\fH+\u0000\u0000\u0000\u0000\u0000<\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000@\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000(\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000<\u0000\u0000\u0000\/\u0000\u0000\u0000.\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001%R\r\u0001%\u0000\u0003l\u0000\u0002\u0001\u0001QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002R\u0000\u0000\r\u0000'\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000N\u0001&M\nN\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002M\u0000\u0000\r\u0000(\u0000\u0003I\u0000\u0002\u0001\u0001K\u0001'J\nK\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001'\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002J\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0001(H\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003D\u0001)\u0001*\u0001D\u0000\u0000\u0010\u0001)\u0000\u0001C\nC\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001*\u0000\u0007\u0010B\u0001+A@\u0001,\u0001-?\nB\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001+\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001.\u0002\u0001.\u0000\u0002\u0000\u0005\u0001\/\u0002\u0001\/\u0000\u0002\u0000#>\u0002>\u0000\u0000\u0001A\u0000\u0000\u0002@\u0000\u0000\u0010\u0001,\u0000\u0001=\u000b=\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0010\u0001-\u00001\u0000\n<\u0000\u0011\u0000\u0014;\u0000\u0018:\u0000\u001c9\u0000\u001f87\u00004654\u000073\u0000C\u0000F21\u0000V\u0000X0\u0000d\u0000g\/\u0000w\u0000y.\u0000\u0000-,\u0001$+*)(\u0001\b\u0001\u000e\u0001\u0013'\u0001\u0017\u0001\u001d\u0001\"&%\n<\u0000\u0004\nbtns\n;\u0000\u0004\ndflt\n:\u0000\u0004\ncbtn\n9\u0000\u0004\nappr\u00038\u0000\b\n7\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n6\u0000\u0004\nrtyp\n5\u0000\u0004\nctxt\n4\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b3\u0000\n0\u0000\u0006path1_\u0000\u0000\u000b2\u0000\n0\u0000\u0006path2_\u0000\u0000\n1\u0000\b\u000bafdrdlib\u000b0\u0000\n0\u0000\u0006path3_\u0000\u0000\u000b\/\u0000\n0\u0000\u0006path4_\u0000\u0000\u000b.\u0000\n0\u0000\u0006path5_\u0000\u0000\u000b-\u0000\n0\u0000\u0006path6_\u0000\u0000\u000b,\u0000\f0\u0000\bchanges_\u0000\u0000\n+\u0000\u0004\nfile\n*\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \n)\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n(\u0000\u0004\ncfol\u0003'\u0000\u0004\u000b&\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002%\u0000\u0000\u0011?\u0001lv\f\u0000\u000bO\u0014\u0001l\f\u0000\u000fa\u0000\u0010%E`\u0000\u0011Oa\u0000\u0012l\f\u0000\u000fa\u0000\u0013%E`\u0000\u0014Oa\u0000\u0015l\f\u0000\u000fa\u0000\u0016%a\u0000\u0017%E`\u0000\u0018Oa\u0000\u0019l\f\u0000\u000fa\u0000\u001a%E`\u0000\u001bOa\u0000\u0015l\f\u0000\u000fa\u0000\u001c%a\u0000\u001d%E`\u0000\u001eOa\u0000\u0015l\f\u0000\u000fa\u0000\u001f%a\u0000 %E`\u0000!OfE`\u0000\"Oa\u0000#\u0012\u0001\u0019*a\u0000$_\u0000\u0011\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000$_\u0000\u0011\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u0014\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u0014\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u0018\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u0018\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u001b\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u001b\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u001e\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u001e\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000!\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000!\/j\f\u0000&Y\u0000\u0003hO_\u0000\"\u001d\u0000\u001aa\u0000(a\u0000)kva\u0000*kva\u0000+\f\u0000\u000bY\u0000\u0017a\u0000,a\u0000-kva\u0000.kva\u0000+\f\u0000\u000bUOPW\u0000\fX\u0000\/\u00000j\f\u0000\u000b\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0010\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0010\u0000\b\u0000\t\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000n\u0000A\u0000r\u0000e\u0000 \u0000y\u0000o\u0000u\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000l\u0000e\u0000t\u0000e\u0000 \u0000V\u0000L\u0000C\u0000'\u0000s\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000?\u0006\u0000\t\u0000\u0003\u0000\f\u0000\r\n\u0000\u0004\nbtns\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0014\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000\f\u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0002\u0000\u0000\u0006\u0000\r\u0000\u0003\u0000\u0016\u0000\u0017\n\u0000\u0004\ndflt\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\f\u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0006\u0000\u0017\u0000\u0003\u0000\u001a\u0000\u001b\n\u0000\u0004\ncbtn\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nappr\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u001f\u000e\u0000\u001f\u0000\u0001\u0000 \u0011\u0000 \u0000\"\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000 \u0000r\u0000e\u0000s\u0000e\u0000t\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u0011\u0001\u0000%\r\u0000%\u0000\u0003Q\u0000\u0000\u0000\u0011\u0001\u0000&\u0000'\u0000(\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u0014\u0001\u0000)\u0002\u0000)\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0002r\u0000\u0000\u0000\u0014\u0000#\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001f\u0000.\r\u0000.\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001f\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001b\u00001\r\u00001\u0000\u0003I\u0000\u0002\u0000\u0014\u0000\u001b\u00002\u00003\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u00004\u000e\u00004\u0000\u0001\u00005\u0011\u00005\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u00003\u0000\u0003\u00006\n\u0000\u0004\nrtyp\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001e\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000,\u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000+\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002r\u0000\u0000\u0000$\u00005\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0005\u0000$\u00001\u0000=\r\u0000=\u0000\u0002b\u0000\u0000\u0000$\u00001\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0005\u0000$\u0000-\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000$\u0000-\u0000A\u0000B\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000A\u0000\u0001m\u0000\u0000\u0000$\u0000'\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u0000B\u0000\u0003\u0000E\n\u0000\u0004\nrtyp\r\u0000E\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000-\u00000\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0006\u0000V\u0000L\u0000C\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000:\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002r\u0000\u0000\u00006\u0000K\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0005\u00006\u0000G\u0000L\r\u0000L\u0000\u0002b\u0000\u0000\u00006\u0000G\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0005\u00006\u0000C\u0000O\r\u0000O\u0000\u0002b\u0000\u0000\u00006\u0000C\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0000\u0005\u00006\u0000?\u0000R\r\u0000R\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000S\u0000T\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000S\u0000\u0001m\u0000\u0000\u00006\u00009\n\u0000\b\u000bafdrdlib\u0006\u0000T\u0000\u0003\u0000U\n\u0000\u0004\nrtyp\r\u0000U\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Q\u0000\u0001m\u0000\u0000\u0000?\u0000B\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000C\u0000F\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\u0006\u0000V\u0000L\u0000C\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000I\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000L\u0000]\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000L\u0000Y\u0000^\r\u0000^\u0000\u0002b\u0000\u0000\u0000L\u0000Y\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0005\u0000L\u0000U\u0000a\r\u0000a\u0000\u0003I\u0000\u0002\u0000L\u0000U\u0000b\u0000c\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000b\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000d\u000e\u0000d\u0000\u0001\u0000e\u0011\u0000e\u0000\b\u0000p\u0000r\u0000e\u0000f\u0006\u0000c\u0000\u0003\u0000f\n\u0000\u0004\nrtyp\r\u0000f\u0000\u0001m\u0000\u0000\u0000P\u0000Q\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000U\u0000X\u0000g\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000 \u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002\u0000[\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002r\u0000\u0000\u0000^\u0000s\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0005\u0000^\u0000o\u0000m\r\u0000m\u0000\u0002b\u0000\u0000\u0000^\u0000o\u0000n\u0000o\r\u0000n\u0000\u0003l\u0000\u0005\u0000^\u0000k\u0000p\r\u0000p\u0000\u0002b\u0000\u0000\u0000^\u0000k\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0005\u0000^\u0000g\u0000s\r\u0000s\u0000\u0003I\u0000\u0002\u0000^\u0000g\u0000t\u0000u\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000t\u0000\u0001m\u0000\u0000\u0000^\u0000a\n\u0000\b\u000bafdrdlib\u0006\u0000u\u0000\u0003\u0000v\n\u0000\u0004\nrtyp\r\u0000v\u0000\u0001m\u0000\u0000\u0000b\u0000c\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000r\u0000\u0001m\u0000\u0000\u0000g\u0000j\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000o\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000 \u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002\u0000j\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0002r\u0000\u0000\u0000t\u0000\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0005\u0000t\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000t\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000t\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000t\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000t\u0000}\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000t\u0000}\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u0000\u0001m\u0000\u0000\u0000t\u0000w\n\u0000\b\u000bafdrdlib\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nrtyp\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000f\u0000o\u0000n\u0000t\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path1_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016 moves it to the trash\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path2_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0003\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0001\u0003\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0003\u0000\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006path3_\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001\b\u0001-\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\b\u0001\u0014\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001\b\u0001\u0010\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001\f\u0001\u000f\u000b\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0001)\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001\u001c\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001d\u0001)\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u001d\u0001)\u0000~\n\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001\u001d\u0001%}\u0000\n}\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001!\u0001$|\u000b|\u0000\n0\u0000\u0006path4_\u0000\u0000\u0002~\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001.\u0001S\u0000\u0000{z\r\u0000\u0000\u0003I\u0000\u0002\u0001.\u0001:y\u0000x\ny\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001.\u00016w\u0000\nw\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u00012\u00015v\u000bv\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002x\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001=\u0001O\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001=\u0001B\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001=\u0001>u\nu\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000s\r\u0000\u0000\u0003l\u0000\u0001\u0001C\u0001O\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001C\u0001Or\u0000q\nr\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001C\u0001Kp\u0000\np\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001G\u0001Jo\u000bo\u0000\n0\u0000\u0006path5_\u0000\u0000\u0002q\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002s\u0000\u0000\u0002{\u0000\u0000\u0001z\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001T\u0001y\u0000\u0000nm\r\u0000\u0000\u0003I\u0000\u0002\u0001T\u0001`l\u0000k\nl\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001T\u0001\\j\u0000\nj\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0001X\u0001[i\u000bi\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002k\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001c\u0001u\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001c\u0001h\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001c\u0001dh\nh\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\f0\u0000\bchanges_\u0000\u0000\u0002\u0000\u0000\u0002\u0000f\r\u0000\u0000\u0003l\u0000\u0001\u0001i\u0001u\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001i\u0001ue\u0000d\ne\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0001i\u0001qc\u0001\u0000\nc\u0000\u0004\ncfol\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001m\u0001pb\u000bb\u0000\n0\u0000\u0006path6_\u0000\u0000\u0002d\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 moves it to the trash\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000.\u0000 \u0000m\u0000o\u0000v\u0000e\u0000s\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000r\u0000a\u0000s\u0000h\u0000\t\u0002f\u0000\u0000\u0002n\u0000\u0000\u0001m\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002a\r\u0001\u0002\u0000\u0004Z\u0000\u0000\u0001z\u0001\u0001\u0003\u0001\u0004`\u0001\u0005\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0001z\u0001}_\u000b_\u0000\f0\u0000\bchanges_\u0000\u0000\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0001\u0001^\u0001\u0006\u0001\u0007\n^\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0006\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\b\u000e\u0001\b\u0000\u0001\u0001\t\u0011\u0001\t\u0000d\u0000T\u0000h\u0000e\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000b\u0000e\u0000e\u0000n\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000T\u0000r\u0000a\u0000s\u0000h\u0000.\u0006\u0001\u0007\u0000\u0003]\u0001\n\u0001\u000b\n]\u0000\u0004\nbtns\r\u0001\n\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\f\u0002\u0001\f\u0000\u0002\u0001\r\\\r\u0001\r\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0004\u0000O\u0000K\u0002\\\u0000\u0000\u0006\u0001\u000b\u0000\u0003[\u0001\u0010Z\n[\u0000\u0004\ndflt\r\u0001\u0010\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\u0011\u0002\u0001\u0011\u0000\u0002\u0001\u0012Y\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0013\u000e\u0001\u0013\u0000\u0001\u0001\u0014\u0011\u0001\u0014\u0000\u0004\u0000O\u0000K\u0002Y\u0000\u0000\u0006Z\u0000\u0000\u0002`\u0000\u0000\r\u0001\u0005\u0000\u0003I\u0000\u0002\u0001\u0001X\u0001\u0015\u0001\u0016\nX\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0017\u000e\u0001\u0017\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u00004\u0000N\u0000o\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000.\u0006\u0001\u0016\u0000\u0003W\u0001\u0019\u0001\u001a\nW\u0000\u0004\nbtns\r\u0001\u0019\u0000\u0001J\u0000\u0000\u0001\u0001\u0001\u001b\u0002\u0001\u001b\u0000\u0002\u0001\u001cV\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0004\u0000O\u0000K\u0002V\u0000\u0000\u0006\u0001\u001a\u0000\u0003U\u0001\u001fT\nU\u0000\u0004\ndflt\r\u0001\u001f\u0000\u0001J\u0000\u0000\u0001\u0001\u0001 \u0002\u0001 \u0000\u0002\u0001!S\r\u0001!\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000\u0004\u0000O\u0000K\u0002S\u0000\u0000\u0006T\u0000\u0000\u0002a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000f\u0001$\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006H+\u0000\u0000\u0002%q{\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002&+\u0018[\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u07ba\u0016\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000[ja\u0000\u0000\u0000\u0001\u0000\f\u0002%q{\u0002%qn\u0002%qm\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001%R\r\u0001%\u0000\u0003l\u0000\u0002\u0001\u0001QPO\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0001O\u0000\u0000\u0002R\u0000\u0000\r\u0000'\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000N\u0001&M\nN\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002M\u0000\u0000\r\u0000(\u0000\u0003I\u0000\u0002\u0001\u0001K\u0001'J\nK\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001'\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002J\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0001(H\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002H\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\nD\u0001)\u0001*\u0001+\u0001,\u0001-\u0001.\u0001\/\u00010C\u0001D\u0000\u0000\u0010\u0001)\u0000\bBA@?>=<;\nB\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bA\u0000\n0\u0000\u0006path1_\u0000\u0000\u000b@\u0000\n0\u0000\u0006path2_\u0000\u0000\u000b?\u0000\n0\u0000\u0006path3_\u0000\u0000\u000b>\u0000\n0\u0000\u0006path4_\u0000\u0000\u000b=\u0000\n0\u0000\u0006path5_\u0000\u0000\u000b<\u0000\n0\u0000\u0006path6_\u0000\u0000\u000b;\u0000\f0\u0000\bchanges_\u0000\u0000\u000e\u0001*\u0000\u0007\u0010:\u0001198\u00012\u000137\n:\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00011\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00014\u0002\u00014\u0000\u0002\u0000\u0005\u00015\u0002\u00015\u0000\u0002\u0000#6\u00026\u0000\u0000\u00019\u0000\u0000\u00028\u0000\u0000\u0010\u00012\u0000\u00015\u000b5\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0010\u00013\u00001\u0000\n4\u0000\u0011\u0000\u00143\u0000\u00182\u0000\u001c1\u0000\u001f0\/\u00004.-,\u00007+\u0000C\u0000F*)\u0000V\u0000X(\u0000d\u0000g'\u0000w\u0000y&\u0000\u0000%$\u0001$#\"! \u0001\b\u0001\u000e\u0001\u0013\u001f\u0001\u0017\u0001\u001d\u0001\"\u001e\u001d\n4\u0000\u0004\nbtns\n3\u0000\u0004\ndflt\n2\u0000\u0004\ncbtn\n1\u0000\u0004\nappr\u00030\u0000\b\n\/\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n.\u0000\u0004\nrtyp\n-\u0000\u0004\nctxt\n,\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b+\u0000\n0\u0000\u0006path1_\u0000\u0000\u000b*\u0000\n0\u0000\u0006path2_\u0000\u0000\n)\u0000\b\u000bafdrdlib\u000b(\u0000\n0\u0000\u0006path3_\u0000\u0000\u000b'\u0000\n0\u0000\u0006path4_\u0000\u0000\u000b&\u0000\n0\u0000\u0006path5_\u0000\u0000\u000b%\u0000\n0\u0000\u0006path6_\u0000\u0000\u000b$\u0000\f0\u0000\bchanges_\u0000\u0000\n#\u0000\u0004\nfile\n\"\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \n!\u0000\u0018.coredeloobj \u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n \u0000\u0004\ncfol\u0003\u001f\u0000\u0004\u000b\u001e\u0000\u00140\u0000\berrormsg\u0000\berrorMsg\u0002\u001d\u0000\u0000\u00117\u0001lv\f\u0000\u000bO\u0014\u0001l\f\u0000\u000fa\u0000\u0010%E`\u0000\u0011Oa\u0000\u0012l\f\u0000\u000fa\u0000\u0013%E`\u0000\u0014Oa\u0000\u0015l\f\u0000\u000fa\u0000\u0016%a\u0000\u0017%E`\u0000\u0018Oa\u0000\u0019l\f\u0000\u000fa\u0000\u001a%E`\u0000\u001bOa\u0000\u0015l\f\u0000\u000fa\u0000\u001c%a\u0000\u001d%E`\u0000\u001eOa\u0000\u0015l\f\u0000\u000fa\u0000\u001f%a\u0000 %E`\u0000!OfE`\u0000\"Oa\u0000#\u0012\u0001\u0019*a\u0000$_\u0000\u0011\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000$_\u0000\u0011\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u0014\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u0014\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u0018\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u0018\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u001b\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u001b\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000\u001e\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000\u001e\/j\f\u0000&Y\u0000\u0003hO*a\u0000'_\u0000!\/j\f\u0000%\u001d\u0000\u0017eE`\u0000\"O*a\u0000'_\u0000!\/j\f\u0000&Y\u0000\u0003hO_\u0000\"\u001d\u0000\u001aa\u0000(a\u0000)kva\u0000*kva\u0000+\f\u0000\u000bY\u0000\u0017a\u0000,a\u0000-kva\u0000.kva\u0000+\f\u0000\u000bUOPW\u0000\fX\u0000\/\u00000j\f\u0000\u000b\u000f\u000e\u0001+\u0000\u0001\u00016\u0011\u00016\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000d\u0000a\u0000f\u0000u\u0000h\u0000r\u0000m\u0000a\u0000n\u0000n\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u000e\u0001,\u0000\u0001\u00017\u0011\u00017\u0000j\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000d\u0000a\u0000f\u0000u\u0000h\u0000r\u0000m\u0000a\u0000n\u0000n\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000V\u0000L\u0000C\u000e\u0001-\u0000\u0001\u00018\u0011\u00018\u0000<\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000V\u0000L\u0000C\u000e\u0001.\u0000\u0001\u00019\u0011\u00019\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000d\u0000a\u0000f\u0000u\u0000h\u0000r\u0000m\u0000a\u0000n\u0000n\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u000e\u0001\/\u0000\u0001\u0001:\u0011\u0001:\u0000V\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000o\u0000r\u0000g\u0000.\u0000v\u0000i\u0000d\u0000e\u0000o\u0000l\u0000a\u0000n\u0000.\u0000v\u0000l\u0000c\u000e\u00010\u0000\u0001\u0001;\u0011\u0001;\u0000J\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000f\u0000o\u0000n\u0000t\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\nC\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"20be962bc503c78ced76ef6ae1e8489dd8592d51","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f63f8567ea38b6e95f34259fee1632a30eed66ef","subject":"bug-fix: get currentCode","message":"bug-fix: get currentCode\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Clipboard FM Objects to XML.applescript","new_file":"Scripts\/fmClip - Clipboard FM Objects to XML.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"c1ca719baab48f368810b1bcab7022338f30a48a","subject":"Update jLinuxInstaller.scpt","message":"Update jLinuxInstaller.scpt\n\nBE WARNED, this file does not work yet.","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_contents":"--jLinuxInstaller.scpt DOES NOT work fully yet\n--Due to the fact that .app files are actually folders, getting them with cURL does not work\n--This will be fixed later but isn't a high priority right now\n-- \n-- (c) 2016 Brendan Manning\n-- MIT Liscense\ndisplay dialog \"jLinux Quick Installer...\" with title \"Install jLinux\" buttons {\"Install\", \"Quit\"} default button 1\nif button returned of result = \"Install\" then\n\tdisplay alert \"Downloading files from the Internet...If you do not have Internet access, you may be required to install manually\" giving up after 2\n\ttell application \"Terminal\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"mkdir \/Applications\/jLinux\/\"\n\t\tdelay 1\n\t\tdo script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/latest.jar -o \/Applications\/jLinux\/latest.jar\"\n\t\tdelay 10\n\t\tdo script \"rm \/Applications\/jLinux\/jLinux.jar\"\n\t\tdo script \"mv \/Applications\/jLinux\/latest.jar \/Applications\/jLinux\/jLinux.jar\"\n\t\t--commented code that doesn't work yet\n\t\t--delay 1\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxLauncher.app -o \/Applications\/jLinux\/jLinuxLauncher.app\"\n\t\t--delay 10\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxUpdater.app -o \/Applications\/jLinux\/jLinuxUpdater.app\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"java -jar \/Applications\/jLinux\/jLinux.jar\"\n\t\tdisplay alert \"jLinux Installed!\" buttons {\"Great\", \"ALRIGHT!\", \"Rock on man!\"} default button 3\n\tend tell\nelse\n\tdisplay alert \"You have aborted jLinux installation. If you would like to return, simply reopen this app!\" buttons {\"Acknowledged\", \"Affirmative\", \"10-4\"} default button 2\nend if\n","old_contents":"--jLinuxInstaller.scpt DOES NOT work fully yet\n--Due to the fact that .app files are actually folders, getting them with cURL does not work\n--This will be fixed later but isn't a high priority right now\n--\n-- (c) 2016 Brendan Manning\n-- MIT Liscense\ndisplay dialog \"jLinux Quick Installer...\" with title \"Install jLinux\" buttons {\"Install\", \"Quit\"} default button 1\nif button returned of result = \"Install\" then\n\tdisplay alert \"Downloading files from the Internet...If you do not have Internet access, you may be required to install manually\" giving up after 2\n\ttell application \"Terminal\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"mkdir \/Applications\/jLinux\/\"\n\t\tdelay 1\n\t\tdo script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/latest.jar -o \/Applications\/jLinux\/latest.jar\"\n\t\tdelay 10\n\t\tdo script \"rm \/Applications\/jLinux\/jLinux.jar\"\n\t\tdo script \"mv \/Applications\/jLinux\/latest.jar \/Applications\/jLinux\/jLinux.jar\"\n\t\t--commented code that doesn't work yet\n\t\t--delay 1\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxLauncher.app -o \/Applications\/jLinux\/jLinuxLauncher.app\"\n\t\t--delay 10\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxUpdater.app -o \/Applications\/jLinux\/jLinuxUpdater.app\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"java -jar \/Applications\/jLinux\/jLinux.jar\"\n\t\tdisplay alert \"jLinux Installed!\" buttons {\"Great\", \"ALRIGHT!\", \"Rock on man!\"} default button 3\n\tend tell\nelse\n\tdisplay alert \"You have aborted jLinux installation. If you would like to return, simply reopen this app!\" buttons {\"Acknowledged\", \"Affirmative\", \"10-4\"} default button 2\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bb86d877957a070881dcb384501de4063c3e08ca","subject":"Abstract artwork DB file out to its own parameter","message":"Abstract artwork DB file out to its own parameter\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork files and folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkDbPath : \"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite\"\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (artworkDbPath & \" '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"21a29be9ccdf2d3220bbd05936a0d18bc0b637c4","subject":"incognito","message":"incognito\n","repos":"mlinzner\/LaunchBar-Actions-Padraic,marcomasser\/launchbar-prenagha,prenagha\/launchbar,marcomasser\/launchbar-prenagha,prenagha\/launchbar,mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar,Joilence\/launchbar","old_file":"Incognito.lbaction\/Contents\/Scripts\/main.applescript","new_file":"Incognito.lbaction\/Contents\/Scripts\/main.applescript","new_contents":"--\n-- launchbar integration for Incognito Google Chrome\n-- see http:\/\/apple.stackexchange.com\/a\/123909\n-- see https:\/\/github.com\/chrisfsmith\/launchbar\/blob\/master\/incognito\/\n--\nproperty CHROME : \"com.google.Chrome\"\nproperty SAFARI : \"com.apple.Safari\"\n\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.Incognito' \" & txt\nend dlog\n\n-- called by launchbar when it has string input\non handle_string(input)\n\ttell application \"LaunchBar\" to hide\n\t\n\tset theURL to makeURL(input)\n\t\n\t-- look for open Chrome incognito and open there\n\t-- otherwise open new Chrome window\n\t-- otherwise start the Chrome app in incognito mode\n\tif not app_running(CHROME) then\n\t\tdo shell script \"open -b \" & CHROME & \" --new --args -incognito \" & theURL\n\t\treturn\n\tend if\n\t\n\ttell application \"Google Chrome\"\n\t\trepeat with win in (windows)\n\t\t\tif mode of win is \"incognito\" then\n\t\t\t\tset index of win to 1\n\t\t\t\tset myTab to make new tab at end of tabs of window 1\n\t\t\t\tset URL of myTab to theURL\n\t\t\t\tactivate\n\t\t\t\treturn\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\t\n\ttell application \"Google Chrome\"\n\t\ttell (make new window with properties {mode:\"incognito\"})\n\t\t\tset URL of active tab to theURL\n\t\tend tell\n\t\tactivate\n\tend tell\nend handle_string\n\n-- is application running?\non app_running(bundleId)\n\ttell application \"System Events\"\n\t\treturn (bundle identifier of processes) contains bundleId\n\tend tell\nend app_running\n\n-- http:\/\/applescript.bratis-lover.net\/library\/url\/#urlEncode\non urlEncode(str)\n\tlocal str\n\ttry\n\t\treturn (do shell script \"\/bin\/echo \" & quoted form of str & \n\t\t\t\" | perl -MURI::Escape -lne 'print uri_escape($_)'\")\n\ton error eMsg number eNum\n\t\terror \"Can't urlEncode: \" & eMsg number eNum\n\tend try\nend urlEncode\n\n-- called by launchbar when it has an item input\non handle_item(item)\n\thandle_string(title of item)\nend handle_item\n\n-- called by launchbar when it has URL input\non handle_URL(theURL, theDetails)\n\thandle_string(theURL)\nend handle_URL\n\n-- called by launchbar when files are passed to the action\non open (thePaths)\n\trepeat with thePath in thePaths\n\t\thandle_string(POSIX path of thePath as string)\n\tend repeat\nend open\n\non makeURL(input)\n\tif input is not \"\" and input does not start with \"http\" then\n\t\treturn \"https:\/\/www.google.com\/search?q=\" & urlEncode(input)\n\tend if\n\treturn input\nend makeURL\n\n-- called by launchbar when enter or browse into from top item\non run\n\tset out to {}\n\t\n\tset theURL to \"\"\n\tset appName to \"Safari\"\n\tif app_running(SAFARI) then\n\t\t\ttell application \"Safari\"\n\t\t\t\tset theName to name of current tab of window 1\n\t\t\t\tset theURL to URL of current tab of window 1\n\t\t\t\tset x to {title:theName, icon:SAFARI, subtitle:theURL, |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\t\tcopy x to end of out\n\t\t\tend tell\n\tend if\n\t\n\tset clip to get the clipboard as string\n\tif clip is not \"\" and clip is not theURL then\n\t\tif clip starts with \"http\" then\n\t\t\tset theURL to clip\n\t\t\tset x to {title:theURL, icon:\"ClipURL.icns\", subtitle:theURL, |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\tcopy x to end of out\n\t\telse\n\t\t\tset theURL to makeURL(clip)\n\t\t\tset x to {title:\"Search '\" & clip & \"'\", subtitle:theURL, icon:\"Google.icns\", |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\tcopy x to end of out\n\t\tend if\n\tend if\n\t\n\t-- if only one out then do it\n\tif (count of out) is less than or equal to 1 then\n\t\thandle_string(theURL)\n\telse\n\t\t-- otherwise return items so the user can pick \n\t\tset x to {title:\"Blank\", icon:\"ClipObject.icns\", action:\"handle_string\", actionArgument:\"\"}\n\t\tcopy x to end of out\n\t\treturn out\n\tend if\n\t\nend run\n","old_contents":"--\n-- launchbar integration for Incognito Google Chrome\n-- see http:\/\/apple.stackexchange.com\/a\/123909\n-- see https:\/\/github.com\/chrisfsmith\/launchbar\/blob\/master\/incognito\/\n--\nproperty CHROME : \"com.google.Chrome\"\nproperty SAFARI : \"com.apple.Safari\"\n\non dlog(myObj)\n\tset txt to quoted form of (myObj as string)\n\tlog txt\n\tdo shell script \"logger -t 'LaunchBar.Incognito' \" & txt\nend dlog\n\n-- called by launchbar when it has string input\non handle_string(input)\n\ttell application \"LaunchBar\" to hide\n\t\n\tset theURL to makeURL(input)\n\t\n\t-- look for open Chrome incognito and open there\n\t-- otherwise open new Chrome window\n\t-- otherwise start the Chrome app in incognito mode\n\tif not app_running(CHROME) then\n\t\tdo shell script \"open -b \" & CHROME & \" --new --args -incognito \" & theURL\n\t\treturn\n\tend if\n\t\n\ttell application \"Google Chrome\"\n\t\trepeat with win in (windows)\n\t\t\tif mode of win is \"incognito\" then\n\t\t\t\tset index of win to 1\n\t\t\t\tset myTab to make new tab at end of tabs of window 1\n\t\t\t\tset URL of myTab to theURL\n\t\t\t\tactivate\n\t\t\t\treturn\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\t\n\ttell application \"Google Chrome\"\n\t\ttell (make new window with properties {mode:\"incognito\"})\n\t\t\tset URL of active tab to theURL\n\t\tend tell\n\t\tactivate\n\tend tell\nend handle_string\n\n-- is application running?\non app_running(bundleId)\n\ttell application \"System Events\"\n\t\treturn (bundle identifier of processes) contains bundleId\n\tend tell\nend app_running\n\n-- http:\/\/applescript.bratis-lover.net\/library\/url\/#urlEncode\non urlEncode(str)\n\tlocal str\n\ttry\n\t\treturn (do shell script \"\/bin\/echo \" & quoted form of str & \n\t\t\t\" | perl -MURI::Escape -lne 'print uri_escape($_)'\")\n\ton error eMsg number eNum\n\t\terror \"Can't urlEncode: \" & eMsg number eNum\n\tend try\nend urlEncode\n\n-- called by launchbar when it has an item input\non handle_item(item)\n\thandle_string(title of item)\nend handle_item\n\n-- called by launchbar when it has URL input\non handle_URL(theURL, theDetails)\n\thandle_string(theURL)\nend handle_URL\n\n-- called by launchbar when files are passed to the action\non open (thePaths)\n\trepeat with thePath in thePaths\n\t\thandle_string(POSIX path of thePath as string)\n\tend repeat\nend open\n\non makeURL(input)\n\tif input is not \"\" and input does not start with \"http\" then\n\t\treturn \"https:\/\/www.google.com\/search?q=\" & urlEncode(input)\n\tend if\n\treturn input\nend makeURL\n\n-- called by launchbar when enter or browse into from top item\non run\n\tset out to {}\n\t\n\tset theURL to \"\"\n\tif app_running(SAFARI) then\n\t\ttell application \"Safari\"\n\t\t\tset theName to name of current tab of window 1\n\t\t\tset theURL to URL of current tab of window 1\n\t\t\tset x to {title:theName, icon:SAFARI, subtitle:theURL, |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\tcopy x to end of out\n\t\tend tell\n\tend if\n\t\n\tset clip to get the clipboard as string\n\tif clip is not \"\" and clip is not theURL then\n\t\tif clip starts with \"http\" then\n\t\t\tset theURL to clip\n\t\t\tset x to {title:theURL, icon:\"ClipURL.icns\", subtitle:theURL, |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\tcopy x to end of out\n\t\telse\n\t\t\tset theURL to makeURL(clip)\n\t\t\tset x to {title:\"Search '\" & clip & \"'\", subtitle:theURL, icon:\"Google.icns\", |url|:theURL, action:\"handle_string\", actionArgument:theURL}\n\t\t\tcopy x to end of out\n\t\tend if\n\tend if\n\t\n\t-- if only one out then do it\n\tif (count of out) is less than or equal to 1 then\n\t\thandle_string(theURL)\n\telse\n\t\t-- otherwise return items so the user can pick \n\t\tset x to {title:\"Blank\", icon:\"ClipObject.icns\", action:\"handle_string\", actionArgument:\"\"}\n\t\tcopy x to end of out\n\t\treturn out\n\tend if\n\t\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"e30a0a2541a2501851c065ef3f40c88e3537be91","subject":"v4.0 because this was a significant change. Updated documentation","message":"v4.0 because this was a significant change. Updated documentation\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.9, Daniel A. Shockley\n\t\t-- 3.9.9 - 2018-10-25 ( dshockley\/eshagdar ): added tab-size 4 to the tidy prettify options. Tidy CANNOT output tabs. \n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a22e8ee5fe8bd5ba6bdf63dbd2044ffcd40c2b25","subject":"Add check for active hotkey window in iTerm2 (#86)","message":"Add check for active hotkey window in iTerm2 (#86)\n\nOld way of checking if terminal window is active didn't work for hotkey\r\nwindow with `Floating window` option active. Used iTerm scripting API\r\nto use different checks, if last used window is the hotkey window.","repos":"marzocchi\/zsh-notify,mehanoid\/zsh-notify","old_file":"applescript\/resources\/is-iterm2-active.applescript","new_file":"applescript\/resources\/is-iterm2-active.applescript","new_contents":"#!\/usr\/bin\/osascript\n\non run ttyName\n try \n set ttyName to first item of ttyName\n on error\n set ttyName to \"\"\n end\n\n if ttyName is equal to \"\" then error \"Usage: is-iterm2-active.applescript TTY\"\n\n tell application id \"com.googlecode.iterm2\"\n tell current window\n set isHotkeyWindow to is hotkey window\n if isHotkeyWindow and visible is not true then error \"iTerm is not the frontmost application\"\n end tell\n end tell\n\n if isHotkeyWindow is not true then\n tell application \"System Events\"\n tell item 1 of (application processes whose bundle identifier is \"com.googlecode.iterm2\")\n if frontmost is not true then error \"iTerm is not the frontmost application\"\n end tell\n end tell\n end if\n\n tell application id \"com.googlecode.iterm2\"\n set currentTty to tty of (current session of current tab of current window) as text\n if currentTty is not equal to ttyName then error \"Current tab TTY '\" & currentTty & \"' does not match expected '\" & ttyName & \"'\" \n end tell\n\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n\non run ttyName\n try \n set ttyName to first item of ttyName\n on error\n set ttyName to \"\"\n end\n\n if ttyName is equal to \"\" then error \"Usage: is-iterm2-active.applescript TTY\"\n\n tell application \"System Events\"\n tell item 1 of (application processes whose bundle identifier is \"com.googlecode.iterm2\")\n if frontmost is not true then error \"iTerm is not the frontmost application\"\n end tell\n end tell\n\n tell application id \"com.googlecode.iterm2\"\n set currentTty to tty of (current session of current tab of current window) as text\n if currentTty is not equal to ttyName then error \"Current tab TTY '\" & currentTty & \"' does not match expected '\" & ttyName & \"'\" \n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"215680372992a4ef82c4e7f2d098dac23601d7b6","subject":"Update get_state.applescript","message":"Update get_state.applescript\n\nRemove cast to integer for position.","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_state.applescript","new_file":"lib\/scripts\/get_state.applescript","new_contents":"tell application \"Spotify\"\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n set cstate to cstate & \",\\\"position\\\": \" & (player position)\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell\n","old_contents":"tell application \"Spotify\"\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n set cstate to cstate & \",\\\"position\\\": \" & (player position as integer)\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"78b0c50fa62ddbda19b735b8ea96a59a383b3853","subject":"Allow fuzzy matching on URLs for clean-tabs","message":"Allow fuzzy matching on URLs for clean-tabs\n","repos":"alexwlchan\/safari.rs,alexwlchan\/safari.rs","old_file":"src\/scripts\/clean-tabs.scpt","new_file":"src\/scripts\/clean-tabs.scpt","new_contents":"tell application \"Safari\"\n repeat with t in tabs of windows\n tell t\n -- If you open lots of windows in Safari, some of this book-\n -- keeping goes wrong. It will try to look up tab N, except\n -- tab N was already closed -- error!\n --\n -- For safety, we just catch and discard all errors.\n {% for url in urls %}\n try\n tell t\n if (URL contains \"{{ url }}\") then close\n end tell\n end try\n {% endfor %}\n end tell\n end repeat\nend tell\n","old_contents":"tell application \"Safari\"\n repeat with t in tabs of windows\n tell t\n -- If you open lots of windows in Safari, some of this book-\n -- keeping goes wrong. It will try to look up tab N, except\n -- tab N was already closed -- error!\n --\n -- For safety, we just catch and discard all errors.\n {% for url in urls %}\n try\n tell t\n if (URL starts with \"{{ url }}\") then close\n end tell\n end try\n {% endfor %}\n end tell\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7f375e6b72e5b1097205cbd615fbb9a9802f52ec","subject":"Revert \"Update get_state.applescript\"","message":"Revert \"Update get_state.applescript\"\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_state.applescript","new_file":"lib\/scripts\/get_state.applescript","new_contents":"tell application \"Spotify\"\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n set cstate to cstate & \",\\\"position\\\": \" & (player position as integer)\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell\n","old_contents":"tell application \"Spotify\"\n set cstate to \"{\"\n set cstate to cstate & \"\\\"track_id\\\": \\\"\" & current track's id & \"\\\"\"\n set cstate to cstate & \",\\\"volume\\\": \" & sound volume\n set cstate to cstate & \",\\\"position\\\": \" & (player position)\n set cstate to cstate & \",\\\"state\\\": \\\"\" & player state & \"\\\"\"\n set cstate to cstate & \"}\"\n\n return cstate\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"750d7e56c6457a4c1ed24430e5b5c85daa46db00","subject":"Add support for command-line\/runtime configuration","message":"Add support for command-line\/runtime configuration\n\nThe script now supports run handler parameters which can be supplied by\na calling script or by osascript from the command-line. The configurable\nscript properties are ones used during development and testing for\nchanging the bundle ID, the plist directory, the bookmarks log file\nlocation, the debug level, and for disabling IO.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2015-01-11\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\tset __NULL_IO__ to this_arg's val\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2015-01-11\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"13cede066d543f4911494bc8d5a2a80a275eed2f","subject":"small delay after each keypress and play sound after typing in","message":"small delay after each keypress and play sound after typing in","repos":"trivix\/clipboard_paste","old_file":"main.scpt","new_file":"main.scpt","new_contents":"(*\nWrite clipboard content character by character to input-device.\n*)\n\nset input to do shell script \"pbpaste\"\t\t\t\t\t\t-- get string from clipboard \/ input = clipboard\nif (input is not missing value) then\t\t\t\t\t\t-- if input not null, do\n\ttell application \"System Events\"\t\t\t\t\t\t-- call System Events\n\t\trepeat with char in the characters of input\t\t\t-- for character in input, do\n\t\t\tkeystroke char \t\t\t\t\t\t\t\t\t-- write character\n\t\t\tdelay 0.05\n\t\tend repeat\n\tend tell\nend if\n\nsay \"fertig\"\n","old_contents":"(*\nWrite clipboard content character by character to input-device.\n*)\n\nset input to do shell script \"pbpaste\"\t\t\t\t\t\t-- get string from clipboard \/ input = clipboard\nif (input is not missing value) then\t\t\t\t\t\t-- if input not null, do\n\ttell application \"System Events\"\t\t\t\t\t\t-- call System Events\n\t\trepeat with char in the characters of input\t\t\t-- for character in input, do\n\t\t\tkeystroke char \t\t\t\t\t\t\t\t\t-- write character\n\t\tend repeat\n\tend tell\nend if","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"76e4b839ba195e953c6f52c1acb160f5b603a83c","subject":"Added \"ValueList\" object support (code \"XMVL\") to fmObjectTranslator","message":"Added \"ValueList\" object support (code \"XMVL\") to fmObjectTranslator\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.8, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.8 - 2019-07-17 ( dshockley ): Added \"ValueList\" object support (code \"XMVL\"), per GitHub Issue #6. \n\t\t-- 4.0.7 - 2019-03-12 ( eshagdar ): debugMode should be set to false by default. Users can overwrite it if they need to turn it on.\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"}, \n\t\t\t{objName:\"ValueList\", objCode:\"XMVL\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.7, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.7 - 2019-03-12 ( eshagdar ): debugMode should be set to false by default. Users can overwrite it if they need to turn it on.\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4729f51472ebfb3f3e724c3ae1aa1805df3acd59","subject":"fix prettify and simpleFormat options, line ending issues","message":"fix prettify and simpleFormat options, line ending issues\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.8, Daniel A. Shockley\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat and not shouldPrettify then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.7, Daniel A. Shockley\n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"30454a6a84fb9e634718a2f158bfea3784c85246","subject":"Fix playgenre filter including songs from disparate genres","message":"Fix playgenre filter including songs from disparate genres\n\nThis is because the original implementation of playgenre assumed that a\ngiven album contained songs from the same genre. However, there are\nreal-world cases where an album can contain songs from multiple genres.\nFixing this also improved the performance of playgenre substantially.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\treturn every track of playlist 2 whose genre is genreName\n\n\tend tell\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ef7694444938ab899fb5fad6c99fc7e4c5b0148a","subject":"Reduce usage of ambiguous variable name theSongs","message":"Reduce usage of ambiguous variable name theSongs\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3e9fae2fc86014b80eedc757c3ddc6ad77a54fc4","subject":"Fix bug where Apple Music playlists could not be played","message":"Fix bug where Apple Music playlists could not be played\n\nThe bug in question was a regression introduced in c309730.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/play-direct.applescript","new_file":"actions\/play-direct.applescript","new_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\n\t\telse if theType ends with \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\n\t\telse\n\n\t\t\tlog \"Unknown type: \" & theType\n\n\t\tend if\n\n\tend tell\nend run\n","old_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\n\t\telse if theType is \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\n\t\telse\n\n\t\t\tlog \"Unknown type: \" & theType\n\n\t\tend if\n\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cd964eef3ea4e3f5144bee53f7b5d0f890ba15db","subject":"Save state for selected category to use next run","message":"Save state for selected category to use next run\n\nThe selected category will be saved to the preferences file to be used\non the next script run as the default selections in the category list\ndialogs.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--\n-- Save category label to use as default for next run\n--\nset last_main_label to split_text(this_label, \":\")'s first item\n--return {last_main_label, this_label} -- :DEBUG:\ntell settings_model\n\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\tend if\n\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\twrite_pref(\"lastFullCategory\", this_label)\n\tend if\nend tell\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"60683a1ff469dfe9e54ef7569eb0936a282e91ed","subject":"Fix: Missing file header for new log file","message":"Fix: Missing file header for new log file\n\nProblem occurred when changing the log file location preference during\nscript run. The file was not being parsed again.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-24\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\tset settings_controller to make_settings_controller(settings_model)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the main model\n\t\t\t--\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\ttell page_log\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _initialize_category()\n\t\t\tmy debug_log(1, my class & \"._initialize_category()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend _initialize_category\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tthis's _initialize_category()\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _root_categories to this's _model's get_root_categories()\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _all_categories to this's _model's get_all_categories()\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9c496bfc24c3118439da2d9a11f948df5cc6044b","subject":"update","message":"update\n","repos":"LinusLing\/LNCodeSet,LinusLing\/LNCodeSet","old_file":"CleanDerivedData.scpt","new_file":"CleanDerivedData.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u00007\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u00007\u0000\f\u0000\r\r\u0000\f\u0000\u0001k\u0000\u0000\u0000\u0004\u00006\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\u0000\u0011\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0018\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0016\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001v\u0000\u0000\u0000\u0012\u0000\u0015\u0000%\u0002\u0000%\u0000\u0002\u0000&\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\u0000)\u0000*\u0001\u0000\u0000\f\u0000)\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000(\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e\u0000.\u0000\/\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001c\u00000\u00001\r\u00000\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\ntcnt\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u00004\u00005\u0001\u0000\u0000\f\u00004\u0000&\u0000 \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u0000\u0002\u0000\u0000\u000e\u00005\u0000\u0001\u00006\u0011\u00006\u0000&\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\u0002\u00003\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003I\u0000\u0002\u0000\u001f\u0000&\u00009\u0000:\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00009\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000;\u000e\u0000;\u0000\u0001\u0000<\u0011\u0000<\u00008\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000\/\u0000X\u0000c\u0000o\u0000d\u0000e\u0006\u0000:\u0000\u0003\u0000=\n\u0000\u0004\nkfil\r\u0000=\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u00008\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0001\u0000'\u0000'\u0000@\u0000A\u0001\u0000\u0000\f\u0000@\u0000\u000b\u0000\u0005 \u04f3\u0000\u0002\u0000\u0000\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\u0006\u0000 ^\u0002\u0000?\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000'\u0000,\u0000E\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000E\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0001\u0000-\u0000-\u0000H\u0000I\u0001\u0000\u0000\f\u0000H\u0000\u0019\u0000\u0013 \u05b4\u0132\u0000\u0002\u0000\u0000\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0000\u0014\u0000 bgLn\u0005d\u0013[XvdO\\\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000-\u00004\u0000M\u0000N\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000M\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000O\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000D\u0000e\u0000r\u0000i\u0000v\u0000e\u0000d\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000 \u0006\u0000N\u0000\u0003\u0000Q\n\u0000\u0004\nkfil\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000L\u0000\u0002\u0000R\r\u0000R\u0000\u0003l\u0000\u0002\u00005\u00005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000S\u000f\u0000S\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001X\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001]PS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\b\u0001X\u0001Z\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000T\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000U\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u00007\u0000Y\u0002\u0000Y\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0000\u0010\u0000X\u0000\f\u0000S\u0000\u0012\u0000;\u0000O\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ncwin\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\n\u0000\u0004\ntcnt\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\n\u0000\u0004\nkfil\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u00008\u0012\u00004j\f\u0000\u0002O*j\f\u0000\u0003O*jk\r\/EO,EOl\f\u0000\u0002Okj\f\u0000\nOl\f\u0000\u0002OPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u00001\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u00001\u0000\f\u0000\r\r\u0000\f\u0000\u0001k\u0000\u0000\u0000\u0004\u00000\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\u0000\u0011\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0018\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0016\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001v\u0000\u0000\u0000\u0012\u0000\u0015\u0000%\u0002\u0000%\u0000\u0002\u0000&\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\u0000)\u0000*\u0001\u0000\u0000\f\u0000)\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000(\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001e\u0000.\u0000\/\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001c\u00000\u00001\r\u00000\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\ntcnt\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u00004\u00005\u0001\u0000\u0000\f\u00004\u0000&\u0000 \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u0000\u0002\u0000\u0000\u000e\u00005\u0000\u0001\u00006\u0011\u00006\u0000&\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\u0002\u00003\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003I\u0000\u0002\u0000\u001f\u0000&\u00009\u0000:\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00009\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000;\u000e\u0000;\u0000\u0001\u0000<\u0011\u0000<\u00008\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000\/\u0000X\u0000c\u0000o\u0000d\u0000e\u0006\u0000:\u0000\u0003\u0000=\n\u0000\u0004\nkfil\r\u0000=\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u00008\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0001\u0000'\u0000'\u0000@\u0000A\u0001\u0000\u0000\f\u0000@\u0000\u0019\u0000\u0013 \u05b4\u0132\u0000\u0002\u0000\u0000\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\u0014\u0000 bgLn\u0005d\u0013[XvdO\\\u0002\u0000?\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000'\u0000.\u0000E\u0000F\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000E\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0000G\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000D\u0000e\u0000r\u0000i\u0000v\u0000e\u0000d\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000 \u0006\u0000F\u0000\u0003\u0000I\n\u0000\u0004\nkfil\r\u0000I\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000D\u0000\u0002\u0000J\r\u0000J\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000K\u000f\u0000K\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001X\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001]PS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\b\u0001X\u0001Z\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000L\u0000M\u0001\u0000\u0000\u0010\u0000L\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000M\u0000\u0007\u0010\u0000N\u0000O\u0000P\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000N\u0000\u0001k\u0000\u0000\u0000\u0000\u00001\u0000Q\u0002\u0000Q\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000O\u0000\u0000\u0010\u0000P\u0000\u000b\u0000K\u0000\u0012\u0000;\u0000G\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ncwin\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\n\u0000\u0004\ntcnt\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\n\u0000\u0004\nkfil\u0011\u00002\u0012\u0000.j\f\u0000\u0002O*j\f\u0000\u0003O*jk\r\/EO,EOl\f\u0000\u0002Ol\f\u0000\u0002OPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c61c42c658d9ce0107fc860b163958ac4eb1c292","subject":"updated getObjectAndSubs to use ensureObjectRef","message":"updated getObjectAndSubs to use ensureObjectRef\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/misc\/getObjectAndSubs.applescript","new_file":"library\/misc\/getObjectAndSubs.applescript","new_contents":"-- getObjectAndSubs({someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0})\n-- Daniel A. Shockley & Erik Shagdar, NYHTC\n-- Gets detailed UI Scripting info for the specified object, recursively for all sub-objects. \n\n\n(*\nHISTORY:\n\t1.1 - 2017-06-29 ( dshockley ): added ensureObjectRef. \n\t1.0 - 2016-10-21 ( dshockley ): first created.\n\n\nTODO:\n\t2017-01-12 ( dshockley ): Try to figure out a way to preseve human-friendly class names (without the chevrons)\n\n\nREQUIRES:\n\tcoerceToString\n\tensureObjectRef\n\tquoteString\n\trepeatString\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 0.5\n\t\t\t\n\t\t\t-- WARNING!!! If you pick a high (or no) maxSubLevel, it can take a LONG time for objects with many sub-objects.\n\t\t\tset objectString to my getObjectAndSubs({someObjectRef:window 1, maxSubLevel:4})\n\t\t\t\n\t\t\tset the clipboard to objectString\n\t\t\t\n\t\t\treturn objectString\n\t\tend tell\n\tend tell\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non getObjectAndSubs(prefs)\n\t-- version 1.1\n\t\n\tset defaultPrefs to {someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0}\n\t(* \n\t\tOther options: \n\t\t outputType:\"TEXT\", \"Record\"\n\t*)\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\tset someObjectRef to someObjectRef of prefs\n\tset outputType to outputType of prefs\n\tset maxSubLevel to maxSubLevel of prefs\n\tset subLevel to subLevel of prefs\n\t\n\tset someObjectRef to ensureObjectRef(someObjectRef)\n\t\n\tset indentString to my repeatString({someString:tab, repeatCount:subLevel})\n\tset subIndentString to my repeatString({someString:tab, repeatCount:subLevel + 1})\n\t\n\t\n\ttell application \"System Events\"\n\t\t\n\t\tset thisObjectInfo to properties of someObjectRef\n\t\t\n\t\ttry\n\t\t\tset thisObjClass to class of someObjectRef\n\t\tend try\n\t\ttry\n\t\t\tset thisObjectName to name of someObjectRef\n\t\tend try\n\t\t\n\t\tif maxSubLevel is null then\n\t\t\tset doSub to true\n\t\telse if subLevel is greater than or equal to maxSubLevel then\n\t\t\tset doSub to false\n\t\telse\n\t\t\tset doSub to true\n\t\tend if\n\t\t\n\t\t\n\t\t\n\t\tif not doSub then\n\t\t\tset thisSubObjectList to null\n\t\telse\n\t\t\t\n\t\t\ttry\n\t\t\t\tset subObjects to UI elements of someObjectRef\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(*\n\t\t\t\tif subLevel is 1 then\n\t\t\t\t\ttell me to activate\n\t\t\t\t\tdisplay dialog my coerceToString(someObjectRef)\n\t\t\t\t\tdisplay dialog \"subObjects : \" & my coerceToString(subObjects)\n\t\t\t\t\tdisplay dialog (length of indentString) as string\n\t\t\t\t\terror -128\n\t\t\t\tend if\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\tset thisSubObjectList to {}\n\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\tif (count of subObjects) is 0 then\n\t\t\t\t\t\tset thisSubObjectList to \"{}\"\n\t\t\t\t\telse\n\t\t\t\t\t\tset subList_START to \"{ \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset subList_BeforeEach to return & subIndentString\n\t\t\t\t\t\tset subList_BetweenAdjacent to \", \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset thisSubObjectList to subList_START\n\t\t\t\t\t\tset subObjectsListHasItems to false\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tif (count of subObjects) is greater than 0 then\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneSubObject in subObjects\n\t\t\t\t\t\tset subObjectInfo to my getObjectAndSubs({someObjectRef:oneSubObject, subLevel:subLevel + 1} & prefs)\n\t\t\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\t\t\tcopy subObjectInfo to end of thisSubObjectList\n\t\t\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\t\t\tif subObjectsListHasItems then\n\t\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BetweenAdjacent\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset subObjectsListHasItems to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BeforeEach & subObjectInfo\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t-- had sub-objects, so need to put on ending string:\n\t\t\t\t\tif outputType is \"TEXT\" then\n\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & \"\" & return & indentString & \"}\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -128 then error -128\n\t\t\t\t-- had no sub-objects, so list will be\/remain empty\t\t\t\t\n\t\t\t\tif outputType is \"TEXT\" then set thisSubObjectList to \"missing value\"\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\tif outputType is \"Record\" then\n\t\t\treturn {objClass:thisObjClass, objName:thisObjectName, objRef:someObjectRef, objInfo:thisObjectInfo, subObjList:thisSubObjectList}\n\t\telse if outputType is \"TEXT\" then\n\t\t\t\n\t\t\t(* CANNOT make uppercase until we figure out how to preserve classes without chevrons... 2016-10-21 ( dshockley )\n\t\t\t-- make the class uppercase for legibility:\n\t\t\tset thisObjClass to my coerceToString(thisObjClass)\n\t\t\tset thisObjClass to do shell script \"echo \" & quoted form of thisObjClass & \" | tr [:lower:] [:upper:]\"\n\t\t\t*)\n\t\t\t\n\t\t\tset resultString to \"\"\n\t\t\tset resultString to resultString & \n\t\t\t\t\"{objClass: \" & my coerceToString(thisObjClass) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objName: \" & my quoteString(thisObjectName) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objRef: \" & my coerceToString(someObjectRef) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objInfo: \" & my coerceToString(thisObjectInfo) & \", \"\n\t\t\t\n\t\t\tif thisSubObjectList is null then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse if (count of thisSubObjectList) is 0 then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\t\t(* \n\t\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & return & thisSubObjectList & \" \"\n\t\t\t\t*)\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset resultString to resultString & return & indentString & \"}\"\n\t\t\t\n\t\t\treturn resultString\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t\nend getObjectAndSubs\n\n--------------------\n-- END OF CODE\n--------------------\n\non coerceToString(incomingObject)\n\ttell application \"htcLib\" to coerceToString(incomingObject)\nend coerceToString\n\non ensureObjectRef(someObject)\n\ttell application \"htcLib\" to ensureObjectRef(someObject)\nend ensureObjectRef\n\non quoteString(someString)\n\ttell application \"htcLib\" to quoteString(someString)\nend quoteString\n\non repeatString(prefs)\n\ttell application \"htcLib\" to repeatString(prefs)\nend repeatString\n","old_contents":"-- getObjectAndSubs({someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0})\n-- Daniel A. Shockley & Erik Shagdar, NYHTC\n-- Gets detailed UI Scripting info for the specified object, recursively for all sub-objects. \n\n\n(*\nHISTORY:\n\t1.0 - 2016-10-21 ( dshockley ): first created.\n\n\nTODO:\n\t2017-01-12 ( dshockley ): Try to figure out a way to preseve human-friendly class names (without the chevrons)\n\n\nREQUIRES:\n\tcoerceToString\n\tquoteString\n\trepeatString\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 0.5\n\t\t\t\n\t\t\t-- WARNING!!! If you pick a high (or no) maxSubLevel, it can take a LONG time for objects with many sub-objects.\n\t\t\tset objectString to my getObjectAndSubs({someObjectRef:window 1, maxSubLevel:4})\n\t\t\t\n\t\t\tset the clipboard to objectString\n\t\t\t\n\t\t\treturn objectString\n\t\tend tell\n\tend tell\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non getObjectAndSubs(prefs)\n\t-- version 1.0\n\t\n\tset defaultPrefs to {someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0}\n\t(* \n\t\tOther options: \n\t\t outputType:\"TEXT\", \"Record\"\n\t*)\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\tset someObjectRef to someObjectRef of prefs\n\tset outputType to outputType of prefs\n\tset maxSubLevel to maxSubLevel of prefs\n\tset subLevel to subLevel of prefs\n\t\n\t\n\tset indentString to my repeatString({someString:tab, repeatCount:subLevel})\n\tset subIndentString to my repeatString({someString:tab, repeatCount:subLevel + 1})\n\t\n\t\n\ttell application \"System Events\"\n\t\t\n\t\tset thisObjectInfo to properties of someObjectRef\n\t\t\n\t\ttry\n\t\t\tset thisObjClass to class of someObjectRef\n\t\tend try\n\t\ttry\n\t\t\tset thisObjectName to name of someObjectRef\n\t\tend try\n\t\t\n\t\tif maxSubLevel is null then\n\t\t\tset doSub to true\n\t\telse if subLevel is greater than or equal to maxSubLevel then\n\t\t\tset doSub to false\n\t\telse\n\t\t\tset doSub to true\n\t\tend if\n\t\t\n\t\t\n\t\t\n\t\tif not doSub then\n\t\t\tset thisSubObjectList to null\n\t\telse\n\t\t\t\n\t\t\ttry\n\t\t\t\tset subObjects to UI elements of someObjectRef\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(*\n\t\t\t\tif subLevel is 1 then\n\t\t\t\t\ttell me to activate\n\t\t\t\t\tdisplay dialog my coerceToString(someObjectRef)\n\t\t\t\t\tdisplay dialog \"subObjects : \" & my coerceToString(subObjects)\n\t\t\t\t\tdisplay dialog (length of indentString) as string\n\t\t\t\t\terror -128\n\t\t\t\tend if\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\tset thisSubObjectList to {}\n\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\tif (count of subObjects) is 0 then\n\t\t\t\t\t\tset thisSubObjectList to \"{}\"\n\t\t\t\t\telse\n\t\t\t\t\t\tset subList_START to \"{ \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset subList_BeforeEach to return & subIndentString\n\t\t\t\t\t\tset subList_BetweenAdjacent to \", \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset thisSubObjectList to subList_START\n\t\t\t\t\t\tset subObjectsListHasItems to false\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tif (count of subObjects) is greater than 0 then\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneSubObject in subObjects\n\t\t\t\t\t\tset subObjectInfo to my getObjectAndSubs({someObjectRef:oneSubObject, subLevel:subLevel + 1} & prefs)\n\t\t\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\t\t\tcopy subObjectInfo to end of thisSubObjectList\n\t\t\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\t\t\tif subObjectsListHasItems then\n\t\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BetweenAdjacent\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset subObjectsListHasItems to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BeforeEach & subObjectInfo\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t-- had sub-objects, so need to put on ending string:\n\t\t\t\t\tif outputType is \"TEXT\" then\n\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & \"\" & return & indentString & \"}\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -128 then error -128\n\t\t\t\t-- had no sub-objects, so list will be\/remain empty\t\t\t\t\n\t\t\t\tif outputType is \"TEXT\" then set thisSubObjectList to \"missing value\"\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\tif outputType is \"Record\" then\n\t\t\treturn {objClass:thisObjClass, objName:thisObjectName, objRef:someObjectRef, objInfo:thisObjectInfo, subObjList:thisSubObjectList}\n\t\telse if outputType is \"TEXT\" then\n\t\t\t\n\t\t\t(* CANNOT make uppercase until we figure out how to preserve classes without chevrons... 2016-10-21 ( dshockley )\n\t\t\t-- make the class uppercase for legibility:\n\t\t\tset thisObjClass to my coerceToString(thisObjClass)\n\t\t\tset thisObjClass to do shell script \"echo \" & quoted form of thisObjClass & \" | tr [:lower:] [:upper:]\"\n\t\t\t*)\n\t\t\t\n\t\t\tset resultString to \"\"\n\t\t\tset resultString to resultString & \n\t\t\t\t\"{objClass: \" & my coerceToString(thisObjClass) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objName: \" & my quoteString(thisObjectName) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objRef: \" & my coerceToString(someObjectRef) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objInfo: \" & my coerceToString(thisObjectInfo) & \", \"\n\t\t\t\n\t\t\tif thisSubObjectList is null then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse if (count of thisSubObjectList) is 0 then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\t\t(* \n\t\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & return & thisSubObjectList & \" \"\n\t\t\t\t*)\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset resultString to resultString & return & indentString & \"}\"\n\t\t\t\n\t\t\treturn resultString\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t\nend getObjectAndSubs\n\n--------------------\n-- END OF CODE\n--------------------\n\non coerceToString(incomingObject)\n\ttell application \"htcLib\" to coerceToString(incomingObject)\nend coerceToString\n\non quoteString(someString)\n\ttell application \"htcLib\" to quoteString(someString)\nend quoteString\n\n\non repeatString(prefs)\n\ttell application \"htcLib\" to repeatString(prefs)\nend repeatString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0eaffb774173bf469b6832b9cc2582ce96d29aeb","subject":"Added tagging support for Camino","message":"Added tagging support for Camino\n","repos":"nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea","old_file":"CurrentSelection.scpt","new_file":"CurrentSelection.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0011\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0001\u0011\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0001\u0010\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npnam\r\u0000\u0014\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b\u0000\u0015\n\u0000\u0004\npcap\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0001\r\u0000\u0012\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\npisf\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u0002\u0000\u000e\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0006\u0000\u0016\u0000\u0016\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Handle file selection\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001a\u0000!\u0000\"\r\u0000!\u0000\u0001J\u0000\u0000\u0000\u0016\u0000\u0018\u0002\u0000\u0000\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0004Z\u0000\u0000\u0000\u001b\u0000M\u0000'\u0000(\r\u0000'\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\u0000)\u0000*\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\r\u0000(\u0000\u0002O\u0000\u0000\u0000!\u0000I\u0000-\u0000.\r\u0000-\u0000\u0001k\u0000\u0000\u0000%\u0000H\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000%\u0000*\u00002\u00003\r\u00002\u0000\u0003l\u0001\u0000\u0000%\u0000(\u00004\r\u00004\u0000\u00011\u0000\u0000\u0000%\u0000(\n\u0000\u0004\nsele\u0001\u0000\u0000\u0001\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0003X\u0000\u0000\u0000+\u0000H\u00006\u00007\r\u00006\u0000\u0002s\u0000\u0000\u0000;\u0000C\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0005\u0000;\u0000@\u0000:\r\u0000:\u0000\u0002n\u0000\u0000\u0000;\u0000@\u0000;\u0000<\r\u0000;\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npsxp\r\u0000<\u0000\u0003l\u0000\u0005\u0000;\u0000>\u0000=\r\u0000=\u0000\u0002c\u0000\u0000\u0000;\u0000>\u0000>\u0000?\r\u0000>\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0000?\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000@\r\u0000@\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000A\u0000B\r\u0000A\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0000B\u0000\u0003l\u0001\u0000\u0000@\u0000A\u0000C\r\u0000C\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u00007\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000D\u000f\u0000D\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sZ\u07c4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000Zt\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u0000*Mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0002\u0000N\u0000N\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000N\u0000N\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0006\u0000N\u0000N\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u0000\u001b\u0000\u0015 Handle URL selection\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000*\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000U\u0000R\u0000L\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0006\u0000N\u0000U\u0000P\u0000Q\u0000R\r\u0000P\u0000\u0002r\u0000\u0000\u0000N\u0000U\u0000S\u0000T\r\u0000S\u0000\u0001m\u0000\u0000\u0000N\u0000Q\u0000U\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\f\u0000Q\u0000\u0017\u0000\u0011 Declare variable\u0000\u0002\u0000\u0000\u000e\u0000R\u0000\u0001\u0000W\u0011\u0000W\u0000\"\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0000O\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000V\u0000V\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0004Z\u0000\u0000\u0000V\u0000\u0000\\\u0000]\u0000^\r\u0000\\\u0000\u0002=\u0000\u0003\u0000V\u0000[\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000`\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000\u0016\u0000f\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000-\u0000b\u0000i\u0000n\r\u0000]\u0000\u0002O\u0000\u0000\u0000^\u0000|\u0000c\u0000d\r\u0000c\u0000\u0001k\u0000\u0000\u0000d\u0000{\u0000e\u0002\u0000e\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0006\u0000d\u0000d\u0000h\u0000i\u0001\u0000\u0000\f\u0000h\u0000(\u0000\" Title is class pTit of window 1\u0000\u0002\u0000\u0000\u000e\u0000i\u0000\u0001\u0000j\u0011\u0000j\u0000D\u0000 \u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000p\u0000T\u0000i\u0000t\u0000\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0002\u0000g\u0000\u0002\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u0000d\u0000{\u0000l\u0000m\r\u0000l\u0000\u0001J\u0000\u0000\u0000d\u0000w\u0000n\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002c\u0000\u0000\u0000d\u0000r\u0000q\u0000r\r\u0000q\u0000\u0002n\u0000\u0000\u0000d\u0000n\u0000s\u0000t\r\u0000s\u0000\u0001m\u0000\u0000\u0000j\u0000n\n\u0000\u0004\ncurl\r\u0000t\u0000\u00024\u0000\u0000\u0000d\u0000j\u0000u\n\u0000\u0004\ncwin\r\u0000u\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0003\u0000\u0001\r\u0000r\u0000\u0001m\u0000\u0000\u0000n\u0000q\n\u0000\u0004\nTEXT\u0002\u0000p\u0000\u0002\u0000v\r\u0000v\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\u0000\u0002\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000d\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000y\u000f\u0000y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZB\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u000bFirefox.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000_t;U\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000t\u001f5\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001cMac:Applications:Firefox.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000F\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0018Applications\/Firefox.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000^\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000O\u0000p\u0000e\u0000r\u0000a\u0002\u0000{\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000OPRA\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001,\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\tOpera.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000dr\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000r\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001aMac:Applications:Opera.app\u0000\u000e\u0000\u0014\u0000\t\u0000O\u0000p\u0000e\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0016Applications\/Opera.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npURL\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npTtl\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZC\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nCamino.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002h+\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000h\u001b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001bMac:Applications:Camino.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Camino.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npURL\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0013\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001bMac:Applications:Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\t\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0001\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0000\u0001\u0003\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\n\u0001\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0001\n\u0001\u000e\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\n\u0001\r\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u000f\u0001\u000f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0016c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00001Mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0011\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0010\u0000\u0000%\u0000\u0000\u0000+\u0000D~\u0000U}\u0000a\u0000y|{z\u0000w\u0000~\u0000y\u0000\u0000xwvu\u0000\u0000ts\n\u0000\u0004\npcap\n\u0000\u0004\npnam\u000e\u0000\u0000\u0000\u0013\n\u0000\u0004\npisf\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\n\u0000\u0004\nsele\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nalis\n~\u0000\u0004\npsxp\u000b}\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\n|\u0000\u0004\ncwin\n{\u0000\u0004\ncurl\nz\u0000\u0004\nTEXT\ny\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\nx\u0000\u0004\nBWin\nw\u0000\u0004\npCTb\nv\u0000\u0004\npURL\nu\u0000\u0004\npTtl\nt\u0000\u0004\ndocu\u000bs\u0000\u000b0\u0000\u0007results\u0000\u0000\u0011\u0001\u0012\u0012\u0001\u000e*k\/,[,\\Ze81EOjvEO\u0000\u001d\u0000-\u0012\u0000%*,EO\u0017\u0000\u001c[l\f\u0000\rkh\u001b\u0000\u0000&,6G[OYUY\u0000\u0003hOa\u0000\u0010E`\u0000\u0011Oa\u0000\u0012\u0000\u001d\u0000#a\u0000\u0013\u0012\u0000\u0019*a\u0000\u0014k\/a\u0000\u0015,a\u0000\u0016&a\u0000\u0017lvE`\u0000\u0011UY\u0000a\u0000\u0018\u0000\u001d\u0000\u001aa\u0000\u0019\u0012\u0000\u0010*a\u0000\u0014k\/j\f\u0000\u001aE`\u0000\u0011UY\u0000aa\u0000\u001b\u0000\u001d\u0000.a\u0000\u001c\u0012\u0000$*a\u0000\u001dk\/a\u0000\u001e,a\u0000\u001f,*a\u0000\u001dk\/a\u0000\u001e,a\u0000 ,lvE`\u0000\u0011UY\u0000-a\u0000!\u0000\u001d\u0000$a\u0000\"\u0012\u0000\u001a*a\u0000#k\/a\u0000\u001f,*a\u0000#k\/,lvE`\u0000\u0011UY\u0000\u0003hO_\u0000\u0011lvE`\u0000$O_\u0000$\u000fOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npnam\r\u0000\u0014\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b\u0000\u0015\n\u0000\u0004\npcap\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0001\r\u0000\u0012\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\npisf\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u0002\u0000\u000e\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0006\u0000\u0016\u0000\u0016\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Handle file selection\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001a\u0000!\u0000\"\r\u0000!\u0000\u0001J\u0000\u0000\u0000\u0016\u0000\u0018\u0002\u0000\u0000\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0004Z\u0000\u0000\u0000\u001b\u0000M\u0000'\u0000(\r\u0000'\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\u0000)\u0000*\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\r\u0000(\u0000\u0002O\u0000\u0000\u0000!\u0000I\u0000-\u0000.\r\u0000-\u0000\u0001k\u0000\u0000\u0000%\u0000H\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000%\u0000*\u00002\u00003\r\u00002\u0000\u0003l\u0001\u0000\u0000%\u0000(\u00004\r\u00004\u0000\u00011\u0000\u0000\u0000%\u0000(\n\u0000\u0004\nsele\u0001\u0000\u0000\u0001\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0003X\u0000\u0000\u0000+\u0000H\u00006\u00007\r\u00006\u0000\u0002s\u0000\u0000\u0000;\u0000C\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0005\u0000;\u0000@\u0000:\r\u0000:\u0000\u0002n\u0000\u0000\u0000;\u0000@\u0000;\u0000<\r\u0000;\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npsxp\r\u0000<\u0000\u0003l\u0000\u0005\u0000;\u0000>\u0000=\r\u0000=\u0000\u0002c\u0000\u0000\u0000;\u0000>\u0000>\u0000?\r\u0000>\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0000?\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000@\r\u0000@\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000A\u0000B\r\u0000A\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0000B\u0000\u0003l\u0001\u0000\u0000@\u0000A\u0000C\r\u0000C\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u00007\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000D\u000f\u0000D\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sZ\u07c4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000Zt\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u0000*Mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0002\u0000N\u0000N\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000N\u0000N\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0006\u0000N\u0000N\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u0000\u001b\u0000\u0015 Handle URL selection\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000*\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000U\u0000R\u0000L\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0006\u0000N\u0000U\u0000P\u0000Q\u0000R\r\u0000P\u0000\u0002r\u0000\u0000\u0000N\u0000U\u0000S\u0000T\r\u0000S\u0000\u0001m\u0000\u0000\u0000N\u0000Q\u0000U\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\f\u0000Q\u0000\u0017\u0000\u0011 Declare variable\u0000\u0002\u0000\u0000\u000e\u0000R\u0000\u0001\u0000W\u0011\u0000W\u0000\"\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0000O\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000V\u0000V\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0004Z\u0000\u0000\u0000V\u0000\u0000\\\u0000]\u0000^\r\u0000\\\u0000\u0002=\u0000\u0003\u0000V\u0000[\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000`\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000\u0016\u0000f\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000-\u0000b\u0000i\u0000n\r\u0000]\u0000\u0002O\u0000\u0000\u0000^\u0000|\u0000c\u0000d\r\u0000c\u0000\u0001k\u0000\u0000\u0000d\u0000{\u0000e\u0002\u0000e\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0006\u0000d\u0000d\u0000h\u0000i\u0001\u0000\u0000\f\u0000h\u0000(\u0000\" Title is class pTit of window 1\u0000\u0002\u0000\u0000\u000e\u0000i\u0000\u0001\u0000j\u0011\u0000j\u0000D\u0000 \u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000p\u0000T\u0000i\u0000t\u0000\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0002\u0000g\u0000\u0002\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u0000d\u0000{\u0000l\u0000m\r\u0000l\u0000\u0001J\u0000\u0000\u0000d\u0000w\u0000n\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002c\u0000\u0000\u0000d\u0000r\u0000q\u0000r\r\u0000q\u0000\u0002n\u0000\u0000\u0000d\u0000n\u0000s\u0000t\r\u0000s\u0000\u0001m\u0000\u0000\u0000j\u0000n\n\u0000\u0004\ncurl\r\u0000t\u0000\u00024\u0000\u0000\u0000d\u0000j\u0000u\n\u0000\u0004\ncwin\r\u0000u\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0003\u0000\u0001\r\u0000r\u0000\u0001m\u0000\u0000\u0000n\u0000q\n\u0000\u0004\nTEXT\u0002\u0000p\u0000\u0002\u0000v\r\u0000v\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\u0000\u0002\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\u0002\u0000\u0000\r\u0000d\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000y\u000f\u0000y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZB\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u000bFirefox.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000_t;U\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000t\u001f5\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001cMac:Applications:Firefox.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000F\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0018Applications\/Firefox.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000^\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000O\u0000p\u0000e\u0000r\u0000a\u0002\u0000{\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000OPRA\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001,\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\tOpera.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000dr\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000r\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001aMac:Applications:Opera.app\u0000\u000e\u0000\u0014\u0000\t\u0000O\u0000p\u0000e\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0016Applications\/Opera.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npURL\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0013\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001bMac:Applications:Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0016c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00001Mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0010\u0000\u0000 \u0000\u0000\u0000+\u0000D\u0000U\u0000a\u0000y\u0000w\u0000~\u0000\u0000\u0000\n\u0000\u0004\npcap\n\u0000\u0004\npnam\u000e\u0000\u0000\u0000\u0013\n\u0000\u0004\npisf\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\n\u0000\u0004\nsele\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nalis\n\u0000\u0004\npsxp\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theUrl\n\u0000\u0004\ncwin\n\u0000\u0004\ncurl\n\u0000\u0004\nTEXT\n\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\n\u0000\u0004\ndocu\n\u0000\u0004\npURL\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0011\u0000\u0012\u0000*k\/,[,\\Ze81EOjvEO\u0000\u001d\u0000-\u0012\u0000%*,EO\u0017\u0000\u001c[l\f\u0000\rkh\u001b\u0000\u0000&,6G[OYUY\u0000\u0003hOa\u0000\u0010E`\u0000\u0011Oa\u0000\u0012\u0000\u001d\u0000#a\u0000\u0013\u0012\u0000\u0019*a\u0000\u0014k\/a\u0000\u0015,a\u0000\u0016&a\u0000\u0017lvE`\u0000\u0011UY\u0000Ma\u0000\u0018\u0000\u001d\u0000\u001aa\u0000\u0019\u0012\u0000\u0010*a\u0000\u0014k\/j\f\u0000\u001aE`\u0000\u0011UY\u0000-a\u0000\u001b\u0000\u001d\u0000$a\u0000\u001c\u0012\u0000\u001a*a\u0000\u001dk\/a\u0000\u001e,*a\u0000\u001dk\/,lvE`\u0000\u0011UY\u0000\u0003hO_\u0000\u0011lvE`\u0000\u001fO_\u0000\u001f\u000fOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"71444c20209244c96d84e2ab0373995b7b4e314b","subject":"Complete refactoring! Solving issue #2","message":"Complete refactoring! Solving issue #2\n\nAll code is rewritten and tidied up from the ground up. Commented\neverything.\n(issue #2) Spotify is no longer getting unpaused when it is paused on\nan ad.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.scpt","new_file":"SpotiFree.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0000\t\r\u0000\u0007\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\n\u000b\u0000\u000b0\u0000\u0007playing\u0000\u0000\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000b****kPSP\f\u0000\b\u0000p\u0000j Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\u0000\u0002\u0000\u0000\u000e\u0000\t\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u0000 \u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000p\u0000l\u0000a\u0000y\u0000i\u0000n\u0000g\u0000\"\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000\"\u0000p\u0000l\u0000a\u0000y\u0000e\u0000r\u0000 \u0000s\u0000t\u0000a\u0000t\u0000e\u0000\"\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000p\u0000l\u0000a\u0000y\u0000i\u0000n\u0000g\u0000.\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\\u0000\u0010\r\u0000\u0010\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\\\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\t\u0000\u0013\r\u0000\u0013\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\t\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0007\u0000\u0016\u000b\u0000 0\u0000\u000eisinloginitems\u0000\u000eisInLoginItems\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0012\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0002\u0000\u0018\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u00006\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000.\u0000a\u0000p\u0000p\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0012\u0000\u0003l\u0000\u0003\u0000\f\u0000X\u0000\u001e\u0000\u001f\u0000 \r\u0000\u001e\u0000\u0001k\u0000\u0000\u0000\f\u0000X\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0001q\u0000\u0000\u0000\f\u0000\f\u0000$\u0002\u0000$\u0000\u0002\u0000%\u000b\u0000\u001a0\u0000\u000bdialogtitle\u0000\u000bdialogTitle\u0002\u0000%\u0000\u0002\u0000&\u000b\u0000\u001e0\u0000\rdialogmessage\u0000\rdialogMessage\u0002\u0000&\u0000\u0002\u0000'\u000b\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u0002\u0000'\u0000\u0002\u0000(\u000b\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u0002\u0000(\u0000\u0002\u0000)\u000b\u0000$0\u0000\u0010spotifreeappname\u0000\u0010spotifreeAppName\u0002\u0000)\u0000\u0002\u000b\u0000$0\u0000\u0010spotifreeapppath\u0000\u0010spotifreeAppPath\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0000,\u0000-\r\u0000,\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u0012\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010spotifreeappname\u0000\u0010spotifreeAppName\u0002\u0000+\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0013\u00002\u00003\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u00004\u000e\u00004\u0000\u0001\u00005\u0011\u00005\u00006\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000.\u0000a\u0000p\u0000p\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000$0\u0000\u0010spotifreeapppath\u0000\u0010spotifreeAppPath\u0002\u00001\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u00008\u00009\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000.\u0000O\u0000p\u0000e\u0000n\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000a\u0000t\u0000 \u0000l\u0000o\u0000g\u0000i\u0000n\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bdialogtitle\u0000\u000bdialogTitle\u0002\u00007\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001b\u0000>\u0000?\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000@\u000e\u0000@\u0000\u0001\u0000A\u0011\u0000A\u0000\u0000D\u0000o\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000a\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000 \u0000o\u0000n\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000u\u0000p\u0000?\u0000 \u0000Y\u0000o\u0000u\u0000'\u0000l\u0000l\u0000 \u0000n\u0000e\u0000v\u0000e\u0000r\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000l\u0000y\u0000.\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rdialogmessage\u0000\rdialogMessage\u0002\u0000=\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\u001f\u0000D\u0000E\r\u0000D\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0014\u0000N\u0000o\u0000,\u0000 \u0000t\u0000h\u0000a\u0000n\u0000k\u0000s\r\u0000E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000edialogbuttonno\u0000\u000edialogButtonNo\u0002\u0000C\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002r\u0000\u0000\u0000 \u0000#\u0000J\u0000K\r\u0000J\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000L\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000\u0004\u0000O\u0000K\r\u0000K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u0002\u0000I\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0002\u0000$\u0000$\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0000\u0001\u0000$\u00008\u0000R\u0000S\u0000T\r\u0000R\u0000\u0002r\u0000\u0000\u0000$\u00008\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0005\u0000$\u00004\u0000W\r\u0000W\u0000\u0003I\u0000\u0002\u0000$\u00004\u0000X\u0000Y\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000X\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u001e0\u0000\rdialogmessage\u0000\rdialogMessage\u0006\u0000Y\u0000\u0003\u0000Z\u0000[\n\u0000\u0004\nappr\r\u0000Z\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u001a0\u0000\u000bdialogtitle\u0000\u000bdialogTitle\u0006\u0000[\u0000\u0003\u0000\\\u0000]\n\u0000\u0004\ndisp\r\u0000\\\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\u0006\u0000]\u0000\u0003\u0000^\u0000_\n\u0000\u0004\nbtns\r\u0000^\u0000\u0001J\u0000\u0000\u0000*\u0000.\u0000`\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000 0\u0000\u000edialogbuttonno\u0000\u000edialogButtonNo\u0002\u0000b\u0000\u0002\u0000c\r\u0000c\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u0002\u0000\u0000\u0006\u0000_\u0000\u0003\u0000d\n\u0000\u0004\ndflt\r\u0000d\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0003\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\f\u0000S\u0000 \u0000\u001a Run the dialog to a user.\u0000\u0002\u0000\u0000\u000e\u0000T\u0000\u0001\u0000e\u0011\u0000e\u00004\u0000 \u0000R\u0000u\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000t\u0000o\u0000 \u0000a\u0000 \u0000u\u0000s\u0000e\u0000r\u0000.\u0002\u0000Q\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0001\u00009\u0000D\u0000h\u0000i\u0000j\r\u0000h\u0000\u0002r\u0000\u0000\u00009\u0000D\u0000k\u0000l\r\u0000k\u0000\u0003l\u0001\u0000\u00009\u0000@\u0000m\r\u0000m\u0000\u0002n\u0000\u0000\u00009\u0000@\u0000n\u0000o\r\u0000n\u0000\u00011\u0000\u0000\u0000<\u0000@\n\u0000\u0004\nbhit\r\u0000o\u0000\u0001o\u0000\u0000\u00009\u0000<\u000b\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\f\u0000i\u0000<\u00006 Assign the result to the variable runAtStartupAnswer.\u0000\u0002\u0000\u0000\u000e\u0000j\u0000\u0001\u0000p\u0011\u0000p\u0000l\u0000 \u0000A\u0000s\u0000s\u0000i\u0000g\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000r\u0000u\u0000n\u0000A\u0000t\u0000S\u0000t\u0000a\u0000r\u0000t\u0000u\u0000p\u0000A\u0000n\u0000s\u0000w\u0000e\u0000r\u0000.\u0002\u0000g\u0000\u0002\u0000q\r\u0000q\u0000\u0004Z\u0000\u0000\u0000E\u0000X\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0005\u0000E\u0000J\u0000t\r\u0000t\u0000\u0002=\u0000\u0000\u0000E\u0000J\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000E\u0000H\u000b\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\r\u0000v\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000s\u0000\u0003l\u0000\u0003\u0000M\u0000T\u0000w\u0000x\u0000y\r\u0000w\u0000\u0003l\u0000\u0001\u0000M\u0000T\u0000z\u0000{\u0000|\r\u0000z\u0000\u0002n\u0000\u0001\u0000M\u0000T\u0000}\u0000~\r\u0000}\u0000\u0003I\u0000\u0000\u0000N\u0000T\u0000\u000b\u0000\"0\u0000\u000faddtologinitems\u0000\u000faddToLoginItems\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000$0\u0000\u0010spotifreeappname\u0000\u0010spotifreeAppName\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000O\u0000P\u000b\u0000$0\u0000\u0010spotifreeapppath\u0000\u0010spotifreeAppPath\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000~\u0000\u0000f\u0000\u0000\u0000M\u0000N\f\u0000{\u0000(\u0000\" Add SpotiFree to the Login Items.\u0000\u0002\u0000\u0000\u000e\u0000|\u0000\u0001\u0000\u0011\u0000\u0000D\u0000 \u0000A\u0000d\u0000d\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000L\u0000o\u0000g\u0000i\u0000n\u0000 \u0000I\u0000t\u0000e\u0000m\u0000s\u0000.\f\u0000x\u0000\u001c\u0000\u0016 Check if user agreed.\u0000\u0002\u0000\u0000\u000e\u0000y\u0000\u0001\u0000\u0011\u0000\u0000,\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000a\u0000g\u0000r\u0000e\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u0000\u001f\u0000)\u0000# Check if SpotiFree is login items.\u0000\u0002\u0000\u0000\u000e\u0000 \u0000\u0001\u0000\u0011\u0000\u0000F\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000i\u0000s\u0000 \u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000]\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000]\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000b\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000e\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000e\u0000v\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000e\u0000v\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000e\u0000j\u000b\u0000\u00160\u0000\tisrunning\u0000\tisRunning\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000m\u0000r\u000b\u0000\u00160\u0000\tisplaying\u0000\tisPlaying\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0003\u0000y\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001q\u0000\u0000\u0000y\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u0002\u0000\u0000\u0002\u0000\u000b\u000000\u0000\u0016currenttrackpopularity\u0000\u0016currentTrackPopularity\u0002\u0000\u0000\u0002\u0000\u000b\u0000,0\u0000\u0014currenttrackduration\u0000\u0014currentTrackDuration\u0002\u0000\u0000\u0002\u000b\u0000,0\u0000\u0014currenttrackposition\u0000\u0014currentTrackPosition\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000y\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npVol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\f\u0000\u0000\u0000 Get the current sound volume from Spotify and save it in a variable currentVolume. To prevent shocking a user with the volume of 100 when he had set it to 20.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0001>\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000s\u0000o\u0000u\u0000n\u0000d\u0000 \u0000v\u0000o\u0000l\u0000u\u0000m\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000V\u0000o\u0000l\u0000u\u0000m\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000p\u0000r\u0000e\u0000v\u0000e\u0000n\u0000t\u0000 \u0000s\u0000h\u0000o\u0000c\u0000k\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000o\u0000l\u0000u\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u00001\u00000\u00000\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000h\u0000e\u0000 \u0000h\u0000a\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u00002\u00000\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nspPo\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016currenttrackpopularity\u0000\u0016currentTrackPopularity\f\u0000\u0000^\u0000X Get the popularity of a current track and save it in a variable currentTrackPopularity.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000o\u0000p\u0000u\u0000l\u0000a\u0000r\u0000i\u0000t\u0000y\u0000 \u0000o\u0000f\u0000 \u0000a\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000r\u0000a\u0000c\u0000k\u0000P\u0000o\u0000p\u0000u\u0000l\u0000a\u0000r\u0000i\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npDur\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014currenttrackduration\u0000\u0014currentTrackDuration\f\u0000\u0000X\u0000R Get the duration of current track and save it in a variable currentTrackDuration.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000r\u0000a\u0000c\u0000k\u0000D\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npPos\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014currenttrackposition\u0000\u0014currentTrackPosition\f\u0000\u0000U\u0000O Get the current track position and save it in a variable currentTrackPosition.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000p\u0000o\u0000s\u0000i\u0000t\u0000i\u0000o\u0000n\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000a\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000r\u0000a\u0000c\u0000k\u0000P\u0000o\u0000s\u0000i\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t5.\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006isanad\u0000\u0006isAnAd\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016currenttrackpopularity\u0000\u0016currentTrackPopularity\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014currenttrackduration\u0000\u0014currentTrackDuration\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0003\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmutespotify\u0000\u000bmuteSpotify\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014currenttrackduration\u0000\u0014currentTrackDuration\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014currenttrackposition\u0000\u0014currentTrackPosition\u0002\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000'\u0000! If it's an ad, mute it to death!\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000,\u0000 \u0000m\u0000u\u0000t\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000t\u0000h\u0000!\f\u0000\u00002\u0000, Check if current track is an advertisement.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000X\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000i\u0000s\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000v\u0000e\u0000r\u0000t\u0000i\u0000s\u0000e\u0000m\u0000e\u0000n\u0000t\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\f\u0000\u0000)\u0000# Is Spotify running? Is it playing?\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000F\u0000 \u0000I\u0000s\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000?\u0000 \u0000I\u0000s\u0000 \u0000i\u0000t\u0000 \u0000p\u0000l\u0000a\u0000y\u0000i\u0000n\u0000g\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\b\u0000\u0000\b?333333\u0002\u0000\u0000\f\u0000\u00001\u0000+ Repeat this entire block every .3 seconds.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000V\u0000 \u0000R\u0000e\u0000p\u0000e\u0000a\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000e\u0000n\u0000t\u0000i\u0000r\u0000e\u0000 \u0000b\u0000l\u0000o\u0000c\u0000k\u0000 \u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000.\u00003\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0003\u0000\u0006\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmutespotify\u0000\u000bmuteSpotify\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fcurrentduration\u0000\u000fcurrentDuration\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000}\u000b}\u0000\"0\u0000\u000fcurrentposition\u0000\u000fcurrentPosition\u0002~\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u00007\u0000\u0000|\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0003\u0000.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0019\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0018\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0007\u0000\f{zy\n{\u0000\u0018.spfyPausnull\u0000\u0000null\u0001z\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0012\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000ex\u0003x\u0000\u0000\r\u0001\u0002\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0011w\nw\u0000\u0004\npVol\u0002\u0001\u0000\u0000\u0002\u0001\u0003v\r\u0001\u0003\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018uts\nu\u0000\u0018.spfyPlaynull\u0000\u0000null\u0001t\u0000\u0000\u0002s\u0000\u0000\u0002v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0001\u0004\u000f\u0001\u0004\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t5.\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0001\u0000\u001a\u0000#\u0001\u0007\u0001\b\u0001\t\r\u0001\u0007\u0000\u0003I\u0000\u0002\u0000\u001a\u0000#r\u0001\nq\nr\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\n\u0000\u0002[\u0000\u0000\u0000\u001a\u0000\u001f\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002\\\u0000\u0000\u0000\u001a\u0000\u001d\u0001\r\u0001\u000e\r\u0001\r\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bp\u000bp\u0000\"0\u0000\u000fcurrentduration\u0000\u000fcurrentDuration\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001co\u000bo\u0000\"0\u0000\u000fcurrentposition\u0000\u000fcurrentPosition\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001en\u0003n\u0000\u0001\u0002q\u0000\u0000\f\u0001\b\u0000<\u00006 Wait until the end of an ad. Then run the code below.\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000l\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000.\u0000 \u0000T\u0000h\u0000e\u0000n\u0000 \u0000r\u0000u\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000d\u0000e\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0000.\u0002\u0001\u0006\u0000\u0002\u0001\u0010m\r\u0001\u0010\u0000\u0002O\u0000\u0000\u0000$\u0000.\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0001\u0000(\u0000-\u0001\u0013\u0001\u0014\u0001\u0015\r\u0001\u0013\u0000\u0002r\u0000\u0000\u0000(\u0000-\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000(\u0000)l\u000bl\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\r\u0001\u0017\u0000\u00011\u0000\u0000\u0000)\u0000,k\nk\u0000\u0004\npVol\f\u0001\u0014\u00004\u0000. Restore the volume to the level it was before\u0000\u0002\u0000\u0000\u000e\u0001\u0015\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u0000\\\u0000 \u0000R\u0000e\u0000s\u0000t\u0000o\u0000r\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000o\u0000l\u0000u\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000i\u0000t\u0000 \u0000w\u0000a\u0000s\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0001\u0019\u000f\u0001\u0019\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t5.\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000jih\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001i\u0000\u0000\u0002h\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002i\u0000\u0000\u0000\u0007\u0000\n\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000d\u0001 c\u000bd\u0000\u00100\u0000\u0006isanad\u0000\u0006isAnAd\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\"0\u0000\u000ftrackpopularity\u0000\u000ftrackPopularity\u0002\u0001\"\u0000\u0002\u0001#a\r\u0001#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\u001e0\u0000\rtrackduration\u0000\rtrackDuration\u0002a\u0000\u0000\u0002c\u0000\u0000\r\u0001\u001f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000!\u0001$\u0001%_\r\u0001$\u0000\u0004Z\u0000\u0000\u0000\u0003\u0000\u0018\u0001&\u0001'^\u0001(\r\u0001&\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\u000e\u0001)]\\\r\u0001)\u0000\u0002F\u0000\u0000\u0000\u0003\u0000\u000e\u0001*\u0001+\r\u0001*\u0000\u0002=\u0000\u0000\u0000\u0003\u0000\u0006\u0001,\u0001-\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004[\u000b[\u0000\"0\u0000\u000ftrackpopularity\u0000\u000ftrackPopularity\r\u0001-\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005Z\u0003Z\u0000\u0000\r\u0001+\u0000\u0002A\u0000\u0000\u0000\t\u0000\f\u0001.\u0001\/\r\u0001.\u0000\u0001o\u0000\u0000\u0000\t\u0000\nY\u000bY\u0000\u001e0\u0000\rtrackduration\u0000\rtrackDuration\r\u0001\/\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000bX\u0003X\u0000(\u0001]\u0000\u0000\u0001\\\u0000\u0000\r\u0001'\u0000\u0003l\u0000\u0003\u0000\u0011\u0000\u0013\u00010\u00011\u00012\r\u00010\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u00013\r\u00013\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012W\nW\u0000\b\u000bboovtrue\f\u00011\u0000\u0000} If popularity is 0 and duration of current track is less then 40, then it's almost certainly an ad. If it is, return \"true\".\u0000\u0002\u0000\u0000\u000e\u00012\u0000\u0001\u00014\u0011\u00014\u0000\u0000 \u0000I\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000l\u0000a\u0000r\u0000i\u0000t\u0000y\u0000 \u0000i\u0000s\u0000 \u00000\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000i\u0000s\u0000 \u0000l\u0000e\u0000s\u0000s\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u00004\u00000\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000a\u0000l\u0000m\u0000o\u0000s\u0000t\u0000 \u0000c\u0000e\u0000r\u0000t\u0000a\u0000i\u0000n\u0000l\u0000y\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000,\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000\"\u0000t\u0000r\u0000u\u0000e\u0000\"\u0000.\u0002^\u0000\u0000\r\u0001(\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u00015\r\u00015\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017V\nV\u0000\b\u000bboovfals\r\u0001%\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000UTS\nU\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001T\u0000\u0000\u0002S\u0000\u0000\u0001_\u0000\u0000\u0002\u0001\u001d\u0000\u0002\u00016\u00017\r\u00016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u00017\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002i\u0000\u0000\u0000\u000b\u0000\u000e\u0001:\u0001;\r\u0001:\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000ONM\u000bO\u0000\u00160\u0000\tisplaying\u0000\tisPlaying\u0002N\u0000\u0000\u0002M\u0000\u0000\r\u0001;\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u0001<\u0002\u0001<\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000\u0001?\u0002\u0001?\u0000\u0002LK\u000bL\u0000\u001a0\u0000\u000bplayerstate\u0000\u000bplayerState\u0002K\u0000\u0000\u0002\u0001>\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000(\u0001B\u0001CJ\r\u0001B\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u001f\u0001D\u0002\u0001D\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\r\u0001G\u0001H\r\u0001G\u0000\u0003l\u0000\u0001\u0000\u0007\u0000\f\u0001I\u0001J\u0001K\r\u0001I\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\f\u0001L\u0001M\r\u0001L\u0000\u00011\u0000\u0000\u0000\u0007\u0000\nI\nI\u0000\u0004\npPlS\r\u0001M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u000bplayerstate\u0000\u000bplayerState\f\u0001J\u0000O\u0000I Hook the variable playerState to Spotify's state (playing, paused etc.).\u0000\u0002\u0000\u0000\u000e\u0001K\u0000\u0001\u0001N\u0011\u0001N\u0000\u0000 \u0000H\u0000o\u0000o\u0000k\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000 \u0000p\u0000l\u0000a\u0000y\u0000e\u0000r\u0000S\u0000t\u0000a\u0000t\u0000e\u0000 \u0000t\u0000o\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000'\u0000s\u0000 \u0000s\u0000t\u0000a\u0000t\u0000e\u0000 \u0000(\u0000p\u0000l\u0000a\u0000y\u0000i\u0000n\u0000g\u0000,\u0000 \u0000p\u0000a\u0000u\u0000s\u0000e\u0000d\u0000 \u0000e\u0000t\u0000c\u0000.\u0000)\u0000.\r\u0001H\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0001O\u000f\u0001O\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t5.\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001F\u0000\u0002\u0001P\u0001Q\r\u0001P\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000eGFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001Q\u0000\u0002\u0001RD\r\u0001R\u0000\u0004Z\u0000\u0000\u0000\u000e\u0000\u001f\u0001S\u0001TC\u0001U\r\u0001S\u0000\u0002=\u0000\u0000\u0000\u000e\u0000\u0015\u0001V\u0001W\r\u0001V\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000fB\u000bB\u0000\u001a0\u0000\u000bplayerstate\u0000\u000bplayerState\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0014A\u000bA\u0000\u000b0\u0000\u0007playing\u0000\u0000\r\u0001T\u0000\u0003l\u0000\u0003\u0000\u0018\u0000\u001a\u0001X\u0001Y\u0001Z\r\u0001X\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0001[\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019@\n@\u0000\b\u000bboovtrue\f\u0001Y\u0000O\u0000I Compare Spotify's state with a constant saved in the property on line 1.\u0000\u0002\u0000\u0000\u000e\u0001Z\u0000\u0001\u0001\\\u0011\u0001\\\u0000\u0000 \u0000C\u0000o\u0000m\u0000p\u0000a\u0000r\u0000e\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000'\u0000s\u0000 \u0000s\u0000t\u0000a\u0000t\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000a\u0000 \u0000c\u0000o\u0000n\u0000s\u0000t\u0000a\u0000n\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000o\u0000n\u0000 \u0000l\u0000i\u0000n\u0000e\u0000 \u00001\u0000.\u0002C\u0000\u0000\r\u0001U\u0000\u0001L\u0000\u0000\u0000\u001d\u0000\u001f\u0001]\r\u0001]\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e?\n?\u0000\b\u000bboovfals\u0002D\u0000\u0000\r\u0001C\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000>=<\n>\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001=\u0000\u0000\u0002<\u0000\u0000\u0001J\u0000\u0000\u0002\u0001A\u0000\u0002\u0001^;\r\u0001^\u0000\u0003l\u0000\u0002\u0000)\u0000):98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002;\u0000\u0000\u0002\u00019\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0001`\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002i\u0000\u0000\u0000\u000f\u0000\u0012\u0001c\u0001d\r\u0001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000432\u000b4\u0000\u00160\u0000\tisrunning\u0000\tisRunning\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001d\u0000\u0001k\u0000\u0000\u0000\u0000\u00003\u0001e\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000\u0001h\u0002\u0001h\u0000\u000210\u000b1\u0000$0\u0000\u0010spotifyprocesses\u0000\u0010spotifyProcesses\u00020\u0000\u0000\u0002\u0001g\u0000\u0002\u0001i\/\r\u0001i\u0000\u0003Q\u0000\u0000\u0000\u0000\u00003\u0001j\u0001k.\r\u0001j\u0000\u0001k\u0000\u0000\u0000\u0003\u0000*\u0001l\u0002\u0001l\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u001c\u0001o\u0001p\r\u0001o\u0000\u0003l\u0000\u0001\u0000\u0007\u0000\u001b\u0001q\u0001r\u0001s\r\u0001q\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u001b\u0001t\u0001u\r\u0001t\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u0019\u0001v\u0001w\r\u0001v\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u0017\u0001x-,\r\u0001x\u0000\u0003I\u0000\u0001\u0000\u0007\u0000\u0017+\u0001y*\n+\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0001y\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u0013\u0001z)(\r\u0001z\u0000\u00026\u0001\u0000\u0000\u0007\u0000\u0013\u0001{\u0001|\r\u0001{\u0000\u00012\u0000\u0000\u0000\u0007\u0000\n'\n'\u0000\u0004\nprcs\r\u0001|\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001}\u0001~\r\u0001}\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e&\n&\u0000\u0004\nbnid\r\u0001~\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000$\u0000c\u0000o\u0000m\u0000.\u0000s\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002*\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\r\u0001w\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018%\n%\u0000\u0004\nTEXT\r\u0001u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000$0\u0000\u0010spotifyprocesses\u0000\u0010spotifyProcesses\f\u0001r\u00000\u0000* Check if there are any Spotify processes.\u0000\u0002\u0000\u0000\u000e\u0001s\u0000\u0001\u0001\u0011\u0001\u0000T\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000y\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0000.\r\u0001p\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001n\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001\u0000\u0002\u0001 \r\u0001\u0000\u0004Z\u0000\u0000\u0000\u001d\u0000*\u0001\u0001\u001f\u0001\r\u0001\u0000\u0002?\u0000\u0000\u0000\u001d\u0000 \u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u001e\u000b\u001e\u0000$0\u0000\u0010spotifyprocesses\u0000\u0010spotifyProcesses\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u001d\u0003\u001d\u0000\u0000\r\u0001\u0000\u0003l\u0000\u0003\u0000#\u0000%\u0001\u0001\u0001\r\u0001\u0000\u0001L\u0000\u0000\u0000#\u0000%\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000#\u0000$\u001c\n\u001c\u0000\b\u000bboovtrue\f\u0001\u0000#\u0000\u001d If there are, return \"true\".\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000:\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000a\u0000r\u0000e\u0000,\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000\"\u0000t\u0000r\u0000u\u0000e\u0000\"\u0000.\u0002\u001f\u0000\u0000\r\u0001\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000(\u0000)\u001b\n\u001b\u0000\b\u000bboovfals\u0002 \u0000\u0000\r\u0001k\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u0019\u0018\n\u001a\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0001.\u0000\u0000\u0002\/\u0000\u0000\u0002\u0001b\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u0013\u0000\u0016\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u0001\u0013\u000b\u0014\u0000 0\u0000\u000eisinloginitems\u0000\u000eisInLoginItems\u0002\u0001\u0000\u0002\u0001\u0012\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u0012\u0000\u0000\u0002\u0013\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0000\u0002\u0010\u000f\u000b\u0010\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\u0002\u000f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000e\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000(\u0001\u0001\r\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u001f\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u0011\u0001\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0001\u0000\u0003\u0000\u0011\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0010\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000e\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\f\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000\n\u0000\f\f\n\f\u0000\u0004\npnam\r\u0001\u0000\u00012\u0000\u0000\u0000\u0007\u0000\n\u000b\n\u000b\u0000\u0004\nlogi\r\u0001\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\n\n\n\u0000\u0004\nTEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\f\u0001\u0000#\u0000\u001d Get all apps in Login Items.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000:\u0000 \u0000G\u0000e\u0000t\u0000 \u0000a\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000s\u0000 \u0000i\u0000n\u0000 \u0000L\u0000o\u0000g\u0000i\u0000n\u0000 \u0000I\u0000t\u0000e\u0000m\u0000s\u0000.\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0004Z\u0000\u0000\u0000\u0012\u0000\u001f\u0001\u0001\u0007\u0001\r\u0001\u0000\u0002E\u0000\u0001\u0000\u0012\u0000\u0015\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u0006\u000b\u0006\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u0005\u000b\u0005\u0000\u00120\u0000\u0007appname\u0000\u0007appName\r\u0001\u0000\u0003l\u0000\u0003\u0000\u0018\u0000\u001a\u0001\u0001\u0001\r\u0001\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0004\n\u0004\u0000\b\u000bboovtrue\f\u0001\u0000B\u0000< Check if inputted app is in there. If it is, return \"true\".\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000x\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000i\u0000n\u0000p\u0000u\u0000t\u0000t\u0000e\u0000d\u0000 \u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000.\u0000 \u0000I\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000,\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000\"\u0000t\u0000r\u0000u\u0000e\u0000\"\u0000.\u0002\u0007\u0000\u0000\r\u0001\u0000\u0001L\u0000\u0000\u0000\u001d\u0000\u001f\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0003\n\u0003\u0000\b\u000bboovfals\u0002\b\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\n\u0002\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0001\u0000\u0000\u0002\u0000\u0000\u0000\u0001\r\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u0017\u0000\u001a\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\"0\u0000\u000faddtologinitems\u0000\u000faddToLoginItems\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0000\u0002\u000b\u0000\u001c0\u0000\fposixapppath\u0000\fposixAppPath\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000)\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0003\u0000 \u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0003\u0000\u000b\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000b\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\t\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npsxp\r\u0001\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0001\n\u0000\u0004\nalis\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fposixapppath\u0000\fposixAppPath\f\u0001\u0000T\u0000N Get the POSIX (Portable Operating System Interface) path of inputted appPath.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000(\u0000P\u0000o\u0000r\u0000t\u0000a\u0000b\u0000l\u0000e\u0000 \u0000O\u0000p\u0000e\u0000r\u0000a\u0000t\u0000i\u0000n\u0000g\u0000 \u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000I\u0000n\u0000t\u0000e\u0000r\u0000f\u0000a\u0000c\u0000e\u0000)\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000i\u0000n\u0000p\u0000u\u0000t\u0000t\u0000e\u0000d\u0000 \u0000a\u0000p\u0000p\u0000P\u0000a\u0000t\u0000h\u0000.\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\f\u0000 \u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u001f\u0001\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0010\u0000\u001f\u0001\u0001\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\u0004\nlogi\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\ninsh\r\u0001\u0000\u0000;\u0000\u0000\u0000\u0012\u0000\u0014\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nprdt\r\u0001\u0000\u0001K\u0000\u0000\u0000\u0015\u0000\u001b\u0001\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\nppth\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u001c0\u0000\fposixapppath\u0000\fposixAppPath\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nhidn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0006\u0000\u0000\f\u0001\u0000+\u0000% Add inputted app to the Login Items.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000 \u0000A\u0000d\u0000d\u0000 \u0000i\u0000n\u0000p\u0000u\u0000t\u0000t\u0000e\u0000d\u0000 \u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000L\u0000o\u0000g\u0000i\u0000n\u0000 \u0000I\u0000t\u0000e\u0000m\u0000s\u0000.\r\u0001\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u000b0\u0000\u0007playing\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmutespotify\u0000\u000bmuteSpotify\u000b\u0000\u00100\u0000\u0006isanad\u0000\u0006isAnAd\u000b\u0000\u00160\u0000\tisplaying\u0000\tisPlaying\u000b\u0000\u00160\u0000\tisrunning\u0000\tisRunning\u000b\u0000 0\u0000\u000eisinloginitems\u0000\u000eisInLoginItems\u000b\u0000\"0\u0000\u000faddtologinitems\u0000\u000faddToLoginItems\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\b\u000b****kPSP\u000e\u0001\u0000\u0007\u0010\u0000\u0001\u0001\u000b\u0000\u001a0\u0000\u000bmutespotify\u0000\u000bmuteSpotify\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u000b\u0000\"0\u0000\u000fcurrentduration\u0000\u000fcurrentDuration\u000b\u0000\"0\u0000\u000fcurrentposition\u0000\u000fcurrentPosition\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u000b\u0000\"0\u0000\u000fcurrentduration\u0000\u000fcurrentDuration\u000b\u0000\"0\u0000\u000fcurrentposition\u0000\u000fcurrentPosition\u0010\u0001\u0000\u0007\u0001\u0004\n\u0000\u0018.spfyPausnull\u0000\u0000null\n\u0000\u0004\npVol\n\u0000\u0018.spfyPlaynull\u0000\u0000null\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u00008\u0014\u00000\u0012\u0000\u0013*j\f\u0000\u0001Oj*,FO*j\f\u0000\u0003UO\u001fk\u001ej\f\u0000\u0004O\u0012\u0000\u0007*,FUW\u0000\bX\u0000\u0005\u0000\u0006h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u001f\u0001\u0001\u000b\u0000\u00100\u0000\u0006isanad\u0000\u0006isAnAd\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u000b\u0000\"0\u0000\u000ftrackpopularity\u0000\u000ftrackPopularity\u000b\u0000\u001e0\u0000\rtrackduration\u0000\rtrackDuration\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\"0\u0000\u000ftrackpopularity\u0000\u000ftrackPopularity\u000b\u0000\u001e0\u0000\rtrackduration\u0000\rtrackDuration\u0010\u0001\u0000\u0004\u0003\u0000(\n\u0000\u0004\nbool\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\"\u0014\u0000\u001aj\u0000\t\u0000\u0007\u0004&\u001d\u0000\u0007e\u000fY\u0000\u0004f\u000fW\u0000\bX\u0000\u0002\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001;\u0001\u0001\u000b\u0000\u00160\u0000\tisplaying\u0000\tisPlaying\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0001\u000b\u0000\u001a0\u0000\u000bplayerstate\u0000\u000bplayerState\u0010\u0001\u0000\u0004\u0001O\n\u0000\u0004\npPlS\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000+\u0014\u0000!\u0012\u0000\u0007*,EUOb\u0000\u0001\u0000\u0000\u0000\u001d\u0000\u0007e\u000fY\u0000\u0004f\u000fW\u0000\bX\u0000\u0002\u0000\u0003hOP\u000f\u000e\u0001\u0000\u0007\u0010\u0001d\u0001\u0001\u000b\u0000\u00160\u0000\tisrunning\u0000\tisRunning\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0001\u000b\u0000$0\u0000\u0010spotifyprocesses\u0000\u0010spotifyProcesses\u0010\u0001\u0000\t\u0001\u0001\u0001\n\u0000\u0004\nprcs\u000e\u0001\u0000\u0000\u0013\n\u0000\u0004\nbnid\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u00004\u0014\u0000,\u0012\u0000\u0016*-[,\\Z81j\f\u0000\u0005&EUOj\u0002\u001d\u0000\u0007e\u000fY\u0000\u0004f\u000fW\u0000\bX\u0000\u0007\u0000\bh\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\u000b\u0000 0\u0000\u000eisinloginitems\u0000\u000eisInLoginItems\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\u0010\u0001\u0000\u0006\u0001\n\u0000\u0004\nlogi\n\u0000\u0004\npnam\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000)\u0014\u0000!\u0012\u0000\u000b*-,&EUO\b\u001d\u0000\u0007e\u000fY\u0000\u0004f\u000fW\u0000\bX\u0000\u0004\u0000\u0005h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0002\u0000\u000b\u0000\"0\u0000\u000faddtologinitems\u0000\u000faddToLoginItems\u000e\u0000\u0002\u0004\u0002\u0001\u0003\u0000\u0002\u000e\u0002\u0001\u0000\u0002\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u000b\u0000\u001c0\u0000\fposixapppath\u0000\fposixAppPath\u0010\u0002\u0000\u0000\f\u0001\n\u0000\u0004\nalis\n\u0000\u0004\npsxp\n\u0000\u0004\nlogi\n\u0000\u0004\ninsh\n\u0000\u0004\nprdt\n\u0000\u0004\nppth\n\u0000\u0004\nhidn\u0003\u0000\u0004\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000*\u0014\u0000\"*\/,EO\u0012\u0000\u0011*6e\u000e\f\u0000\tUW\u0000\bX\u0000\n\u0000\u000bh\u000f\u000e\u0001\u0000\u0007\u0010\u0002\u0002\u0002\u0003\u0002\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0005\u0002\u0002\u0005\u0000\u0002\u0000\u000e\u0002\u0006\u0002\u0002\u0006\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0003\u0000\t~}|{zyxwv\u000b~\u0000\u001a0\u0000\u000bdialogtitle\u0000\u000bdialogTitle\u000b}\u0000\u001e0\u0000\rdialogmessage\u0000\rdialogMessage\u000b|\u0000\"0\u0000\u000fdialogbuttonyes\u0000\u000fdialogButtonYes\u000b{\u0000$0\u0000\u0010spotifreeappname\u0000\u0010spotifreeAppName\u000bz\u0000$0\u0000\u0010spotifreeapppath\u0000\u0010spotifreeAppPath\u000by\u0000\u001e0\u0000\rcurrentvolume\u0000\rcurrentVolume\u000bx\u000000\u0000\u0016currenttrackpopularity\u0000\u0016currentTrackPopularity\u000bw\u0000,0\u0000\u0014currenttrackduration\u0000\u0014currentTrackDuration\u000bv\u0000,0\u0000\u0014currenttrackposition\u0000\u0014currentTrackPosition\u0010\u0002\u0004\u0000#\u0000\u0019\u0000\u001cu\u0000.\u00004\u0000:\u0000@\u0000Ft\u0000Lsrqponmlkjihg\u0000fedcba`_^\u0000]\u000bu\u0000 0\u0000\u000eisinloginitems\u0000\u000eisInLoginItems\u000bt\u0000 0\u0000\u000edialogbuttonno\u0000\u000edialogButtonNo\ns\u0000\u0004\nappr\nr\u0000\u0004\ndisp\nq\u0000\u0004\nbtns\np\u0000\u0004\ndflt\u0003o\u0000\b\nn\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000bm\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\nl\u0000\u0004\nbhit\u000bk\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\u000bj\u0000\"0\u0000\u000faddtologinitems\u0000\u000faddToLoginItems\u000bi\u0000\u00160\u0000\tisrunning\u0000\tisRunning\u000bh\u0000\u00160\u0000\tisplaying\u0000\tisPlaying\ng\u0000\u0004\nbool\nf\u0000\u0004\npVol\ne\u0000\u0004\npTrk\nd\u0000\u0004\nspPo\nc\u0000\u0004\npDur\nb\u0000\u0004\npPos\u000ba\u0000\u00100\u0000\u0006isanad\u0000\u0006isAnAd\u000b`\u0000\u001a0\u0000\u000bmutespotify\u0000\u000bmuteSpotify\u0001_\u0000\u0000\u0002^\u0000\u0000\n]\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000*l+\u0000\u0002f\u0000\u001d\u0000QEOEOEOEOEOEOk\u0222lvl\f\u0000\u000fE`\u0000\u0010O_\u0000\u0010a\u0000\u0011,E`\u0000\u0012O_\u0000\u0012\u0000\u001d\u0000\f)l+\u0000\u0013Y\u0000\u0003hY\u0000\u0003hO\u0017\u0000zhZ\u0014\u0000b*j+\u0000\u0014\t\u0000\u000b*j+\u0000\u0015a\u0000\u0016&\u001d\u0000Ja\u0000\u0017\u0012\u0000)*a\u0000\u0018,EO*a\u0000\u0019,a\u0000\u001a,EO*a\u0000\u0019,a\u0000\u001b,EO*a\u0000\u001c,EUO*l+\u0000\u001d\u001d\u0000\r*m+\u0000\u001eY\u0000\u0003hY\u0000\u0003hW\u0000\bX\u0000\u001f\u0000 hOa\u0000!j\f\u0000\"[OY\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u000040\u0000\u0018checkifappisinloginitems\u0000\u0018checkIfAppIsInLoginItems\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u0000\u000b\u0000\u0002\u0000\f\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000,\u0000\r\u0000\u000e\u0000\u000f\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u001f\u0000\u0010\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002O\u0000\u0001\u0000\u0003\u0000\u0011\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000e\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\f\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npnam\r\u0000\u001a\u0000\u00012\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nlogi\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\n\u0000\u0004\nTEXT\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001b\u000f\u0000\u001b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0004Z\u0000\u0000\u0000\u0012\u0000\u001f\u0000\u001d\u0000\u001e\u0000\u001f\r\u0000\u001d\u0000\u0002E\u0000\u0001\u0000\u0012\u0000\u0015\u0000 \u0000!\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\r\u0000\u001e\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0000\"\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u0000\u001f\u0000\u0001L\u0000\u0000\u0000\u001d\u0000\u001f\u0000#\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\b\u000bboovfals\u0002\u0000\u0000\r\u0000\u000e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000$\u0000%\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000$\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000&\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rerror_message\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000%\u0000\u0003\u0000'\n\u0000\u0004\nerrn\r\u0000'\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000(\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\ferror_number\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\r\u0000\u000f\u0000\u0003I\u0000\u0002\u0000'\u0000,\u0000)\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000)\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0000*\b\u0000*\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\/\u00000\r\u0000\/\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u00001\u000b\u0000(0\u0000\u0012addapptologinitems\u0000\u0012addAppToLoginItems\u0002\u00001\u0000\u0002\u00002\u00003\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u00003\u0000\u0002\u00004\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u0002\u0000\u0000\u0002\u0000\u0000\r\u00000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000-\u00005\u00006\u00007\r\u00005\u0000\u0001k\u0000\u0000\u0000\u0003\u0000 \u00008\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u000b\u0000;\u0000<\r\u0000;\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\t\u0000=\u0000>\r\u0000=\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npsxp\r\u0000>\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0000?\n\u0000\u0004\nalis\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u0002\u0000:\u0000\u0002\u0000@\r\u0000@\u0000\u0002O\u0000\u0000\u0000\f\u0000 \u0000A\u0000B\r\u0000A\u0000\u0003I\u0000\u0002\u0000\u0010\u0000\u001f\u0000C\u0000D\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\r\u0000C\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\u0004\nlogi\u0006\u0000D\u0000\u0003\u0000E\u0000F\n\u0000\u0004\ninsh\r\u0000E\u0000\u0000;\u0000\u0000\u0000\u0012\u0000\u0014\u0006\u0000F\u0000\u0003\u0000G\n\u0000\u0004\nprdt\r\u0000G\u0000\u0001K\u0000\u0000\u0000\u0015\u0000\u001b\u0000H\u0006\u0000H\u0000\u0003\u0000I\u0000J\n\u0000\u0004\nppth\r\u0000I\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u0006\u0000J\u0000\u0003\u0000K\n\u0000\u0004\nhidn\r\u0000K\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0006\u0000\u0000\r\u0000B\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000L\u000f\u0000L\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u00006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000M\u0000N\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rerror_message\u0000\u0000\u0006\u0000N\u0000\u0003\u0000O\n\u0000\u0004\nerrn\r\u0000O\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000P\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\ferror_number\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\r\u00007\u0000\u0003l\u0000\u0003\u0000(\u0000-\u0000Q\u0000R\u0000S\r\u0000Q\u0000\u0003I\u0000\u0002\u0000(\u0000-\u0000T\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000T\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000U\b\u0000U\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\f\u0000R\u0000\u0012\u0000\fOn any error\u0000\u0002\u0000\u0000\u000e\u0000S\u0000\u0001\u0000V\u0011\u0000V\u0000\u0018\u0000O\u0000n\u0000 \u0000a\u0000n\u0000y\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0000.\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000[\r\u0000[\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0001\u0000^\r\u0000^\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000_\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u00006\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000.\u0000a\u0000p\u0000p\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0002\u0000\u0004\u0000F\u0000e\r\u0000e\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000F\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\r\u0000h\r\u0000h\u0000\u0002=\u0000\u0000\u0000\u0004\u0000\r\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\u000b\u0000k\u000b\u000040\u0000\u0018checkifappisinloginitems\u0000\u0018checkIfAppIsInLoginItems\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0002\u0000m\u0000\u0002\u0000p\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000g\u0000\u0001k\u0000\u0000\u0000\u0010\u0000B\u0000q\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\"\u0000t\u0000u\r\u0000t\u0000\u0003l\u0000\u0005\u0000\u0010\u0000 \u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000\u0010\u0000 \u0000w\u0000x\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000w\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0000D\u0000o\u0000 \u0000y\u0000o\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000a\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000 \u0000o\u0000n\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000u\u0000p\u0000?\u0000 \u0000Y\u0000o\u0000u\u0000'\u0000l\u0000l\u0000 \u0000n\u0000e\u0000v\u0000e\u0000r\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000l\u0000y\u0000.\u0006\u0000x\u0000\u0003\u0000{\u0000|\n\u0000\u0004\nappr\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000}\u000e\u0000}\u0000\u0001\u0000~\u0011\u0000~\u0000.\u0000O\u0000p\u0000e\u0000n\u0000 \u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0000 \u0000a\u0000t\u0000 \u0000l\u0000o\u0000g\u0000i\u0000n\u0006\u0000|\u0000\u0003\u0000\u0000\n\u0000\u0004\ndisp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0016\u0000\u001a\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000N\u0000o\u0000,\u0000 \u0000t\u0000h\u0000a\u0000n\u0000k\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndflt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0002\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\u0002\u0000s\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000*\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000#\u0000&\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000#\u0000&\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\nbhit\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000+\u0000B\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000+\u00002\u0000\r\u0000\u0000\u0002=\u0000\u0000\u0000+\u00002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000.\u000b\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u00001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000O\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u00005\u0000>\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00006\u0000>\u0000\u000b\u0000(0\u0000\u0012addapptologinitems\u0000\u0012addAppToLoginItems\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00006\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000S\u0000p\u0000o\u0000t\u0000i\u0000F\u0000r\u0000e\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u00005\u00006\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0001G\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000G\u0001G\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000L\u0001B\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000L\u0000q\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000R\u0000p\u0000\u0000\r\u0000\u0000\u0002?\u0000\u0000\u0000R\u0000l\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000R\u0000j\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000R\u0000j\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0003l\u0000\u0005\u0000R\u0000f\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000R\u0000f\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000R\u0000W\n\u0000\u0004\nprcs\r\u0000\u0000\u0002=\u0000\u0003\u0000Z\u0000e\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000[\u0000_\n\u0000\u0004\nbnid\r\u0000\u0000\u0001m\u0000\u0000\u0000`\u0000d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000c\u0000o\u0000m\u0000.\u0000s\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000k\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tisrunning\u0000\tisRunning\r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b\u00000\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0007s\u0007s\u0007s\u0000\u0002\u0000>Mountain Lion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000r\u0001B\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000r\u0000u\u000b\u0000\u00160\u0000\tisrunning\u0000\tisRunning\r\u0000\u0000\u0003Q\u0000\u0000\u0000x\u00018\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0003\u0000{\u0001)\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000{\u0001)\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000{\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011Setting variables\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npVol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000}\n}\u0000\u0004\npTrN\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000|\n|\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\n0\u0000\u0006trackk\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000z\nz\u0000\u0004\npnam\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000y\ny\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\t0\u0000\u0005namme\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000w\nw\u0000\u0004\nspPo\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000v\nv\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00070\u0000\u0003pop\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000t\nt\u0000\u0004\npDur\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000s\ns\u0000\u0004\npTrk\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003dur\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000p\np\u0000\u0004\npPos\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00070\u0000\u0003pos\u0000\u0000\u0002q\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001'\u0000\u0000k\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00070\u0000\u0003pop\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000i\u0003i\u0000\u0000\r\u0000\u0000\u0002A\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00070\u0000\u0003dur\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000g\u0003g\u0000(\r\u0000\u0000\u0003l\u0000\u0003\u0000\u0001\u001d\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u001d\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003l\u0000\u0003\u0000\u0000\u0001\u0005\u0001\u0006\u0001\u0007\r\u0001\u0005\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\b\u0002\u0001\b\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0003I\u0000\u0002\u0000\u0000fed\nf\u0000\u0018.spfyPausnull\u0000\u0000null\u0001e\u0000\u0000\u0002d\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\r\u0001\u000e\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000c\u0003c\u0000\u0000\r\u0001\u000e\u0000\u00011\u0000\u0000\u0000\u0000b\nb\u0000\u0004\npVol\u0002\u0001\f\u0000\u0002\u0001\u000fa\r\u0001\u000f\u0000\u0003I\u0000\u0002\u0000\u0000`_^\n`\u0000\u0018.spfyPlaynull\u0000\u0000null\u0001_\u0000\u0000\u0002^\u0000\u0000\u0002a\u0000\u0000\f\u0001\u0006\u0000\u0012\u0000\fDo our thing\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\u0010\u0011\u0001\u0010\u0000\u0018\u0000D\u0000o\u0000 \u0000o\u0000u\u0000r\u0000 \u0000t\u0000h\u0000i\u0000n\u0000g\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000f\u0001\u0011\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0001\u0000\u0001\f\u0001\u0014\u0001\u0015\u0001\u0016\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0000\u0001\f]\u0001\u0017\\\n]\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0017\u0000\u0002[\u0000\u0000\u0000\u0001\b\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002\\\u0000\u0000\u0000\u0001\u0006\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0001\u0002[\u000b[\u0000\u00070\u0000\u0003dur\u0000\u0000\r\u0001\u001b\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0005Z\u000bZ\u0000\u00070\u0000\u0003pos\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\u0007Y\u0003Y\u0000\u0001\u0002\\\u0000\u0000\f\u0001\u0015\u0000\u0016\u0000\u0010When an ad ends,\u0000\u0002\u0000\u0000\u000e\u0001\u0016\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000 \u0000W\u0000h\u0000e\u0000n\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000 \u0000e\u0000n\u0000d\u0000s\u0000,\u0002\u0001\u0013\u0000\u0002\u0001\u001dX\r\u0001\u001d\u0000\u0002O\u0000\u0000\u0001\r\u0001\u001d\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0003l\u0000\u0001\u0001\u0013\u0001\u001c\u0001 \u0001!\u0001\"\r\u0001 \u0000\u0002r\u0000\u0000\u0001\u0013\u0001\u001c\u0001#\u0001$\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0016W\u000bW\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\r\u0001$\u0000\u00011\u0000\u0000\u0001\u0016\u0001\u001bV\nV\u0000\u0004\npVol\f\u0001!\u00003\u0000-restore the volume to the level it was before\u0000\u0002\u0000\u0000\u000e\u0001\"\u0000\u0001\u0001%\u0011\u0001%\u0000Z\u0000r\u0000e\u0000s\u0000t\u0000o\u0000r\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000v\u0000o\u0000l\u0000u\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000i\u0000t\u0000 \u0000w\u0000a\u0000s\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\r\u0001\u001f\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u0001&\u000f\u0001&\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002X\u0000\u0000\f\u0000\u0000F\u0000@If popularity is 0 and duration of current track is less then 40\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001'\u0011\u0001'\u0000\u0000I\u0000f\u0000 \u0000p\u0000o\u0000p\u0000u\u0000l\u0000a\u0000r\u0000i\u0000t\u0000y\u0000 \u0000i\u0000s\u0000 \u00000\u0000 \u0000a\u0000n\u0000d\u0000 \u0000d\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000 \u0000i\u0000s\u0000 \u0000l\u0000e\u0000s\u0000s\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u00004\u00000\u0002k\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001 \u0001'\u0001(\u0001)\u0001*\r\u0001(\u0000\u0003I\u0000\u0002\u0001 \u0001'U\u0001+T\nU\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001+\u0000\u0001m\u0000\u0000\u0001 \u0001#\u0001,\b\u0001,\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002T\u0000\u0000\f\u0001)\u0000l\u0000fIf nothing worked (it must be a music track, not an ad), try and run this script again in 0.5 seconds.\u0000\u0002\u0000\u0000\u000e\u0001*\u0000\u0001\u0001-\u0011\u0001-\u0000\u0000I\u0000f\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000w\u0000o\u0000r\u0000k\u0000e\u0000d\u0000 \u0000(\u0000i\u0000t\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000m\u0000u\u0000s\u0000i\u0000c\u0000 \u0000t\u0000r\u0000a\u0000c\u0000k\u0000,\u0000 \u0000n\u0000o\u0000t\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0000)\u0000,\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00000\u0000.\u00005\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000.\u0002\u0000\u0000\u0002\u0001.S\r\u0001.\u0000\u0003l\u0000\u0002\u0001(\u0001(RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002S\u0000\u0000\f\u0000\u0000N\u0000HTry to do this thing, and on error... (look at \"on error\" at the bottom)\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000t\u0000h\u0000i\u0000n\u0000g\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000o\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000.\u0000.\u0000.\u0000 \u0000(\u0000l\u0000o\u0000o\u0000k\u0000 \u0000a\u0000t\u0000 \u0000\"\u0000o\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000\"\u0000 \u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000o\u0000t\u0000t\u0000o\u0000m\u0000)\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000O\u00010N\nO\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002N\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0003\u00011\u00018\u00011\u00012\u00013\r\u00011\u0000\u0003l\u0000\u0001\u00011\u00018\u00014\u00015\u00016\r\u00014\u0000\u0003I\u0000\u0002\u00011\u00018L\u00017K\nL\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00017\u0000\u0001m\u0000\u0000\u00011\u00014\u00018\b\u00018\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002K\u0000\u0000\f\u00015\u0000*\u0000$Run this script again in 0.5 seconds\u0000\u0002\u0000\u0000\u000e\u00016\u0000\u0001\u00019\u0011\u00019\u0000H\u0000R\u0000u\u0000n\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00000\u0000.\u00005\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\f\u00012\u0000\u0013\u0000\rOn any error \u0000\u0002\u0000\u0000\u000e\u00013\u0000\u0001\u0001:\u0011\u0001:\u0000\u001a\u0000O\u0000n\u0000 \u0000a\u0000n\u0000y\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001;\u0001BJ\u0001;I\nJ\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001;\u0000\u0001m\u0000\u0000\u0001;\u0001>\u0001<\b\u0001<\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002I\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005H\u0001=\u0001>\u0001?\u0001@\u0001H\u0000\u0000\u0010\u0001=\u0000\u0003GFE\u000bG\u000040\u0000\u0018checkifappisinloginitems\u0000\u0018checkIfAppIsInLoginItems\u000bF\u0000(0\u0000\u0012addapptologinitems\u0000\u0012addAppToLoginItems\nE\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001>\u0000\u0007\u0010D\u0000\bCB\u0001A\u0001BA\u000bD\u000040\u0000\u0018checkifappisinloginitems\u0000\u0018checkIfAppIsInLoginItems\u000eC\u0000\u0002\u0004@\u0001C\u0003@\u0000\u0002\u000e\u0001C\u0000\u0002\u0000?>\u000b?\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b>\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u0002B\u0000\u0000\u0010\u0001A\u0000\u0005=<;:9\u000b=\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b<\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u000b;\u0000\u001e0\u0000\rallloginitems\u0000\rallLoginItems\u000b:\u0000\u00110\u0000\rerror_message\u0000\u0000\u000b9\u0000\u00100\u0000\ferror_number\u0000\u0000\u0010\u0001B\u0000\b\u0000\u001b8765\u0001D\u0000*4\n8\u0000\u0004\nlogi\n7\u0000\u0004\npnam\n6\u0000\u0004\nTEXT\u000b5\u0000\u00110\u0000\rerror_message\u0000\u0000\u0006\u0001D\u0000\u0003321\n3\u0000\u0004\nerrn\u000b2\u0000\u00100\u0000\ferror_number\u0000\u0000\u00061\u0000\u0000\n4\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011A\u0000-\u0014\u0000!\u0012\u0000\u000b*-,&EUO\b\u001d\u0000\u0007e\u000fY\u0000\u0004f\u000fW\u0000\fX\u0000\u0004\u0000\u0005j\f\u0000\u0007\u000f\u000e\u0001?\u0000\u0007\u00100\u00000\/.\u0001E\u0001F-\u000b0\u0000(0\u0000\u0012addapptologinitems\u0000\u0012addAppToLoginItems\u000e\/\u0000\u0002\u0004,\u0001G\u0003,\u0000\u0002\u000e\u0001G\u0000\u0002\u0000+*\u000b+\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b*\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u0002.\u0000\u0000\u0010\u0001E\u0000\u0005)('&%\u000b)\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u000b(\u0000\u00160\u0000\tpathofapp\u0000\tpathOfApp\u000b'\u0000\u00120\u0000\u0007apppath\u0000\u0007appPath\u000b&\u0000\u00110\u0000\rerror_message\u0000\u0000\u000b%\u0000\u00100\u0000\ferror_number\u0000\u0000\u0010\u0001F\u0000\u000e$#\u0000L\"! \u001f\u001e\u001d\u001c\u001b\u0001H\u0000U\u001a\n$\u0000\u0004\nalis\n#\u0000\u0004\npsxp\n\"\u0000\u0004\nlogi\n!\u0000\u0004\ninsh\n \u0000\u0004\nprdt\n\u001f\u0000\u0004\nppth\n\u001e\u0000\u0004\nhidn\u0003\u001d\u0000\u0004\n\u001c\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u000b\u001b\u0000\u00110\u0000\rerror_message\u0000\u0000\u0006\u0001H\u0000\u0003\u0019\u0018\u0017\n\u0019\u0000\u0004\nerrn\u000b\u0018\u0000\u00100\u0000\ferror_number\u0000\u0000\u0006\u0017\u0000\u0000\n\u001a\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011-\u0000.\u0014\u0000\"*\/,EO\u0012\u0000\u0011*6e\u000e\f\u0000\tUW\u0000\fX\u0000\n\u0000\u000bj\f\u0000\r\u000f\u000e\u0001@\u0000\u0007\u0010\u0016\u0001I\u0015\u0014\u0001J\u0001K\u0013\n\u0016\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001I\u0000\u0001k\u0000\u0000\u0000\u0000\u0001G\u0001L\u0002\u0001L\u0000\u0002\u0000Y\u0001M\u0002\u0001M\u0000\u0002\u0000c\u0001N\u0002\u0001N\u0000\u0002\u0000\u0012\u0002\u0012\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0014\u0000\u0000\u0010\u0001J\u0000\u0001\u0011\u000b\u0011\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0010\u0001K\u00001\u0000_\u0010\u0000n\u000f\u0000y\u000e\u0000}\r\f\u0000\u0000\u000b\n\t\b\u0007\u0006\u0000\u0000\u0005\u0000\u0004\u0001O\u0003\u0000\u0002\u0001\u0000\u0000\u0001,\u000b\u0010\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u000b\u000f\u000040\u0000\u0018checkifappisinloginitems\u0000\u0018checkIfAppIsInLoginItems\n\u000e\u0000\u0004\nappr\n\r\u0000\u0004\ndisp\n\f\u0000\u0004\nbtns\n\u000b\u0000\u0004\ndflt\u0003\n\u0000\b\n\t\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u000b\b\u0000,0\u0000\u0014runatstartupquestion\u0000\u0014runAtStartupQuestion\n\u0007\u0000\u0004\nbhit\u000b\u0006\u0000(0\u0000\u0012runatstartupanswer\u0000\u0012runAtStartupAnswer\u000b\u0005\u0000(0\u0000\u0012addapptologinitems\u0000\u0012addAppToLoginItems\n\u0004\u0000\u0004\nprcs\u000e\u0001O\u0000\u0000\u0013\n\u0003\u0000\u0004\nbnid\n\u0002\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0001\u0000\u00160\u0000\tisrunning\u0000\tisRunning\n\u0000\u0000\u0004\npVol\u000b\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\n\u0000\u0004\npTrk\n\u0000\u0004\npTrN\u000b\u0000\n0\u0000\u0006trackk\u0000\u0000\n\u0000\u0004\npnam\u000b\u0000\t0\u0000\u0005namme\u0000\u0000\n\u0000\u0004\nspPo\u000b\u0000\u00070\u0000\u0003pop\u0000\u0000\n\u0000\u0004\npDur\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\n\u0000\u0004\npPos\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\u0003\u0000(\n\u0000\u0004\nbool\n\u0000\u0018.spfyPausnull\u0000\u0000null\n\u0000\u0018.spfyPlaynull\u0000\u0000null\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0000\u0000\u0011\u0013\u0001HEO*l+\u0000\u0003f\u0000\u001d\u00007klvl\f\u0000\rEO,E`\u0000\u0010O_\u0000\u0010a\u0000\u0011\u0000\u001d\u0000\u000e)a\u0000\u0012l+\u0000\u0013Y\u0000\u0003hY\u0000\u0003hO\u0017\u0000hZa\u0000\u0014\u0012\u0000 *a\u0000\u0015-a\u0000\u0016[a\u0000\u0017,\\Za\u0000\u001881j\f\u0000\u0019j\u0002E`\u0000\u001aUO_\u0000\u001a\u001d\u0000\u0014\u0000a\u0000\u001b\u0012\u0000M*a\u0000\u001c,E`\u0000\u001dO*a\u0000\u001e,a\u0000\u001f,E`\u0000 O*a\u0000\u001e,a\u0000!,E`\u0000\"O*a\u0000\u001e,a\u0000#,E`\u0000$O*a\u0000\u001e,a\u0000%,E`\u0000&O*a\u0000',E`\u0000(UO_\u0000$j\u0000\t\u0000\r_\u0000&a\u0000)\u0004a\u0000*&\u001d\u0000>a\u0000\u001b\u0012\u0000\u0015*j\f\u0000+Oj*a\u0000\u001c,FO*j\f\u0000,UO_\u0000&_\u0000(\u001fk\u001ej\f\u0000-Oa\u0000\u001b\u0012\u0000\u000b_\u0000\u001d*a\u0000\u001c,FUY\u0000\ta\u0000.j\f\u0000-OPW\u0000\u000eX\u0000\/\u00000a\u0000.j\f\u0000-Y\u0000\ta\u0000.j\f\u0000-[OY\u0006\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e93d1d042a75fb530b460bf1ce590589a5bd24a5","subject":"Add \"About\" menu item\/dialog w\/website button","message":"Add \"About\" menu item\/dialog w\/website button\n\nThe About dialog has the script name, short description and version\nalong with a copyright notice and button for going to the script's web\npage.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a3a93896ef5a24c6c28a9d9f98690d7d6114b243","subject":"Mkfifo to add named pipes","message":"Mkfifo to add named pipes\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n say \"We'll concatenate\"\n repeat with theItem in these_titles\n say theItem\n end repeat\n repeat with theIndex in the_index\n set the_shellscript to \"\/usr\/bin\/mkfifo \/private\/tmp\/concat\" & theIndex as text\n do shell script the_shellscript\n end repeat\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n repeat with theItem in these_titles\n say theItem\n end repeat\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"e580afe28e30b734dc4aebc13d782e90e3ae5d8c","subject":"timeout set 15 mins","message":"timeout set 15 mins\n","repos":"sumipan\/photoshop-jsx.rb","old_file":"bin\/PhotoshopJsx.scpt","new_file":"bin\/PhotoshopJsx.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000L\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0016\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002[\u0000\u0000\u0000\u000e\u0000\u0014\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0000\r\u0000 \u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0013\u0000!\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0013\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0013\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0003\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\u0002\u0000\u001c\u0000\u0002\u0000%\r\u0000%\u0000\u0002O\u0000\u0000\u0000\u0017\u0000L\u0000&\u0000'\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u001b\u0000K\u0000(\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000\u001b\u0000 \n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003I\u0000\u0002\u0000!\u0000)\u0000\/\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000\/\u0000\u00024\u0000\u0000\u0000!\u0000%\u00000\n\u0000\u0004\nalis\r\u00000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002t\u0000\u0000\u0000*\u00005\u00003\u00004\r\u00003\u0000\u0003I\u0000\u0002\u0000,\u00004\u00005\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00005\u0000\u0003l\u0000\u0005\u0000,\u00000\u00006\r\u00006\u0000\u00024\u0000\u0000\u0000,\u00000\u00007\n\u0000\u0004\nfile\r\u00007\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0003\u0002\u00002\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003I\u0000\u0002\u00006\u0000;\u0000:\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000:\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\u0002\u0000\u0000\u0002\u00009\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000<\u0000<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003I\u0000\u0002\u0000<\u0000E\u0000?\u0000@\n\u0000\u0018.PsCSclosnull\u0000\u0000\u0000\u0010\u0000docu\r\u0000?\u0000\u00012\u0000\u0000\u0000<\u0000?\n\u0000\u0004\ndocu\u0006\u0000@\u0000\u0003\u0000A\n\u0000\u0004\nsavo\r\u0000A\u0000\u0001m\u0000\u0000\u0000@\u0000A\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000>\u0000\u0002\u0000B\r\u0000B\u0000\u0003I\u0000\u0002\u0000F\u0000K\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000C\u000f\u0000C\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000D\r\u0000D\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000E\u0000F\u0001\u0000\u0000\u0010\u0000E\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000F\u0000\u0007\u0010\u0000\b\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000H\u0000\u0011\u0000C\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\u0003\u0003\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\ndocu\n\u0000\u0004\nsavo\n\u0000\b\u000bsavono \n\u0000\u0018.PsCSclosnull\u0000\u0000\u0000\u0010\u0000docu\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u0000Mk\/EOl\/EOjm\/\u001eEO\u0012\u00002*j\f\u0000\u0005O*\/j\f\u0000\u0007On*\/j\f\u0000\noOj\f\u0000\u000bO*-l\f\u0000\u000fO*j\f\u0000\u0010U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0016\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002[\u0000\u0000\u0000\u000e\u0000\u0014\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0000\r\u0000 \u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0013\u0000!\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0013\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0013\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0003\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\u0002\u0000\u001c\u0000\u0002\u0000%\r\u0000%\u0000\u0002O\u0000\u0000\u0000\u0017\u0000I\u0000&\u0000'\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u001b\u0000H\u0000(\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003I\u0000\u0002\u0000\u001b\u0000 \n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003I\u0000\u0002\u0000!\u0000)\u0000-\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000-\u0000\u00024\u0000\u0000\u0000!\u0000%\u0000.\n\u0000\u0004\nalis\r\u0000.\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003I\u0000\u0002\u0000*\u00002\u00001\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00001\u0000\u0003l\u0000\u0005\u0000*\u0000.\u00002\r\u00002\u0000\u00024\u0000\u0000\u0000*\u0000.\u00003\n\u0000\u0004\nfile\r\u00003\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0003I\u0000\u0002\u00003\u00008\u00008\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00008\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\u0002\u0000\u0000\u0002\u00007\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u00009\u00009\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u00009\u0000B\u0000=\u0000>\n\u0000\u0018.PsCSclosnull\u0000\u0000\u0000\u0010\u0000docu\r\u0000=\u0000\u00012\u0000\u0000\u00009\u0000<\n\u0000\u0004\ndocu\u0006\u0000>\u0000\u0003\u0000?\n\u0000\u0004\nsavo\r\u0000?\u0000\u0001m\u0000\u0000\u0000=\u0000>\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000<\u0000\u0002\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000C\u0000H\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000A\u000f\u0000A\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000B\r\u0000B\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000C\u0000D\u0001\u0000\u0000\u0010\u0000C\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000D\u0000\u0007\u0010\u0000\b\u0000E\u0000F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000E\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000F\u0000\u0010\u0000A\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u000b\u0000\u00140\u0000\bwaittime\u0000\bwaitTime\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\ndocu\n\u0000\u0004\nsavo\n\u0000\b\u000bsavono \n\u0000\u0018.PsCSclosnull\u0000\u0000\u0000\u0010\u0000docu\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u0000Jk\/EOl\/EOjm\/\u001eEO\u0012\u0000\/*j\f\u0000\u0005O*\/j\f\u0000\u0007O*\/j\f\u0000\tOj\f\u0000\nO*-l\f\u0000\u000eO*j\f\u0000\u000fU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cfbead944cc78a0ddbff9dabccadd12595715286","subject":"Update window arrange script","message":"Update window arrange script\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-1440x900.scpt","new_file":"scripts\/arrange-windows-for-1440x900.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000R\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000R\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000F\u0000J\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0003\u0000$\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000J\u0000N\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000S\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000S\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001m\u0000\u0000\u0000\u0000]\u0003]\u0000\u000f\u0002\u0001\u0002\u0000\u0002\u0001\u0003\\\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000[\u0003[\u0001\u0002\\\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004Z\r\u0001\u0004\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0005\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0001m\u0000\u0000\u0000\u0000Y\u0003Y\u0002\u0002\u0001\u0007\u0000\u0002\u0001\bX\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000W\u0003W\u0001\u0002X\u0000\u0000\u0002Z\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\tV\r\u0001\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\nUT\r\u0001\n\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\u000bR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0012\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000Q\u0003Q\u0000\u000f\u0002\u0001\u0014\u0000\u0002\u0001\u0015P\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000$\u0002P\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0016N\r\u0001\u0016\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0002?\u0002\u0001\u0019\u0000\u0002\u0001\u001aL\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000K\u0003K\u0003Q\u0002L\u0000\u0000\u0002N\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002V\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006J\u0001\u001b\u0001\u001c\u0001\u001d\u0001\u001e\u0001\u001f\u0001J\u0000\u0000\u0010\u0001\u001b\u0000\u0004IHGF\u000bI\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\nH\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bG\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000bF\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u0001\u001c\u0000\u0007\u0010E\u0000\bDC\u0001 \u0001!B\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000eD\u0000\u0002\u0004A\u0001\"\u0003A\u0000\u0003\u000e\u0001\"\u0000\u0003\u0000@?>\u000b@\u0000\f0\u0000\bapp_name\u0000\u0000\u000b?\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b>\u0000\f0\u0000\bwin_size\u0000\u0000\u0002C\u0000\u0000\u0010\u0001 \u0000\u0003=<;\u000b=\u0000\f0\u0000\bapp_name\u0000\u0000\u000b<\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b;\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001!\u0000\b:9\u0000=87654\n:\u0000\u0004\ncapp\n9\u0000\u0004\nprun\n8\u0000\u0004\nprcs\n7\u0000\u0004\ncobj\n6\u0000\u0004\ncwin\n5\u0000\u0004\nposn\n4\u0000\u0004\nptsz\u0011B\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u001d\u0000\u0007\u00103\u0001#21\u0001$\u0001%0\n3\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001#\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001&\u0002\u0001&\u0000\u0002\u0000@\u0001'\u0002\u0001'\u0000\u0002\u0000I\u0001(\u0002\u0001(\u0000\u0002\u0000T\u0001)\u0002\u0001)\u0000\u0002\u0000_\u0001*\u0002\u0001*\u0000\u0002\u0000j\u0001+\u0002\u0001+\u0000\u0002\u0000u\u0001,\u0002\u0001,\u0000\u0002\u0000\u0001-\u0002\u0001-\u0000\u0002\u0000\u0001.\u0002\u0001.\u0000\u0002\u0000\u0001\/\u0002\u0001\/\u0000\u0002\u0000\u00010\u0002\u00010\u0000\u0002\u0000\u00011\u0002\u00011\u0000\u0002\u0000\u00012\u0002\u00012\u0000\u0002\u0000\u00013\u0002\u00013\u0000\u0002\u0000\u00014\u0002\u00014\u0000\u0002\u0000\u00015\u0002\u00015\u0000\u0002\u0000\u00016\u0002\u00016\u0000\u0002\u0000\u00017\u0002\u00017\u0000\u0002\u0001\t\/\u0002\/\u0000\u0000\u00012\u0000\u0000\u00021\u0000\u0000\u0010\u0001$\u0000\u0000\u0010\u0001%\u0000\u001b.-,+*)\u0000Z(\u0000e\u0000p\u0000{\u0000\u0000\u0000'\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000&%$\u0001\u000e\u0003.\u0000\u000f\u0003-\u0000$\u000b,\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003+\u0005\u0003*\u0003Q\u000b)\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b(\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003'\u0002?\u0003&\u0001\u0003%\u0002\u0003$\u0001\u00110\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*m+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016a\u0000\u0017lva\u0000\u0018a\u0000\u0019lvm+\u0000\u0007O*a\u0000\u001alvlvm+\u0000\u0007\u000f\u000e\u0001\u001e\u0000\u0002\u0004#\u00018\u0003#\u0000\u0002\u000e\u00018\u0000\u0002\u0000\"!\u0003\"\u0000\u000f\u0003!\u0000$\u000e\u0001\u001f\u0000\u0002\u0004 \u00019\u0003 \u0000\u0002\u000e\u00019\u0000\u0002\u0000\u001f\u001e\u0003\u001f\u0005\u0003\u001e\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000R\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000R\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000F\u0000J\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0003\u0000$\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000J\u0000N\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000S\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000S\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001m\u0000\u0000\u0000\u0000]\u0003]\u0000\u000f\u0002\u0001\u0002\u0000\u0002\u0001\u0003\\\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000\u0000[\u0003[\u0001\u0002\\\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004Z\r\u0001\u0004\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0005\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0001m\u0000\u0000\u0000\u0000Y\u0003Y\u0002\u0002\u0001\u0007\u0000\u0002\u0001\bX\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000W\u0003W\u0001\u0002X\u0000\u0000\u0002Z\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\tV\r\u0001\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\nUT\r\u0001\n\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\u000bR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\r\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0012\u0002\u0001\u0012\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000Q\u0003Q\u0000\u000f\u0002\u0001\u0014\u0000\u0002\u0001\u0015P\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000$\u0002P\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0016N\r\u0001\u0016\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0002?\u0002\u0001\u0019\u0000\u0002\u0001\u001aL\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000K\u0003K\u0003Q\u0002L\u0000\u0000\u0002N\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002V\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004J\u0001\u001b\u0001\u001c\u0001\u001d\u0001J\u0000\u0000\u0010\u0001\u001b\u0000\u0002IH\u000bI\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\nH\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u001c\u0000\u0007\u0010G\u0000\bFE\u0001\u001e\u0001\u001fD\u000bG\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000eF\u0000\u0002\u0004C\u0001 \u0003C\u0000\u0003\u000e\u0001 \u0000\u0003\u0000BA@\u000bB\u0000\f0\u0000\bapp_name\u0000\u0000\u000bA\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b@\u0000\f0\u0000\bwin_size\u0000\u0000\u0002E\u0000\u0000\u0010\u0001\u001e\u0000\u0003?>=\u000b?\u0000\f0\u0000\bapp_name\u0000\u0000\u000b>\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b=\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u001f\u0000\b<;\u0000=:9876\n<\u0000\u0004\ncapp\n;\u0000\u0004\nprun\n:\u0000\u0004\nprcs\n9\u0000\u0004\ncobj\n8\u0000\u0004\ncwin\n7\u0000\u0004\nposn\n6\u0000\u0004\nptsz\u0011D\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u001d\u0000\u0007\u00105\u0001!43\u0001\"\u0001#2\n5\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001!\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001$\u0002\u0001$\u0000\u0002\u0000@\u0001%\u0002\u0001%\u0000\u0002\u0000I\u0001&\u0002\u0001&\u0000\u0002\u0000T\u0001'\u0002\u0001'\u0000\u0002\u0000_\u0001(\u0002\u0001(\u0000\u0002\u0000j\u0001)\u0002\u0001)\u0000\u0002\u0000u\u0001*\u0002\u0001*\u0000\u0002\u0000\u0001+\u0002\u0001+\u0000\u0002\u0000\u0001,\u0002\u0001,\u0000\u0002\u0000\u0001-\u0002\u0001-\u0000\u0002\u0000\u0001.\u0002\u0001.\u0000\u0002\u0000\u0001\/\u0002\u0001\/\u0000\u0002\u0000\u00010\u0002\u00010\u0000\u0002\u0000\u00011\u0002\u00011\u0000\u0002\u0000\u00012\u0002\u00012\u0000\u0002\u0000\u00013\u0002\u00013\u0000\u0002\u0000\u00014\u0002\u00014\u0000\u0002\u0000\u00015\u0002\u00015\u0000\u0002\u0001\t1\u00021\u0000\u0000\u00014\u0000\u0000\u00023\u0000\u0000\u0010\u0001\"\u0000\u0000\u0010\u0001#\u0000\u001b0\/.-,+\u0000Z*\u0000e\u0000p\u0000{\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000('&\u0001\u000e\u00030\u0000\u000f\u0003\/\u0000$\u000b.\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003-\u0005\u0003,\u0003Q\u000b+\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b*\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003)\u0002?\u0003(\u0001\u0003'\u0002\u0003&\u0001\u00112\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*m+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016a\u0000\u0017lva\u0000\u0018a\u0000\u0019lvm+\u0000\u0007O*a\u0000\u001alvlvm+\u0000\u0007\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4035e6259c5f0ac5ee56122621bd5f60199f2d07","subject":"Update script to open DerivedData folder","message":"Update script to open DerivedData folder\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\nmyOpenDerivedDataFolder()\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bbf9ead2c4cfa563f9bd9e08d90c27e16b7ba226","subject":"Update Vagrant path","message":"Update Vagrant path\n","repos":"smathson\/dotfiles","old_file":"applescripts\/open_vagrant.applescript","new_file":"applescripts\/open_vagrant.applescript","new_contents":"set open_vagrant to \"cd ~\/uberVU\/puppet\/hs_analytics_vagrant && git pull && vagrant up\"\n\ntell application \"iTerm\"\n\tactivate\n\ttry\n\t\tset mysession to current session of current terminal\n\ton error\n\t\tset myterm to (make new terminal)\n\t\ttell myterm\n\t\t\tlaunch session \"Default\"\n\t\t\tset mysession to current session\n\t\tend tell\n\tend try\n\n\ttell mysession\n\t\twrite text open_vagrant\n\tend tell\nend tell\n","old_contents":"set open_vagrant to \"cd ~\/uberVU\/puppet && vagrant up\"\n\ntell application \"iTerm\"\n\tactivate\n\ttry\n\t\tset mysession to current session of current terminal\n\ton error\n\t\tset myterm to (make new terminal)\n\t\ttell myterm\n\t\t\tlaunch session \"Default\"\n\t\t\tset mysession to current session\n\t\tend tell\n\tend try\n\n\ttell mysession\n\t\twrite text open_vagrant\n\tend tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"15913b7cbcde9ae6a852913dbbf7a41737eae3e5","subject":"Re-add logging to `AlfredBundler.scpt`","message":"Re-add logging to `AlfredBundler.scpt`\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"bundler\/AlfredBundler.applescript","new_file":"bundler\/AlfredBundler.applescript","new_contents":"(* GLOBAL PROPERTIES *)\n\nproperty BUNDLER_VERSION : \"devel\"\n\n--# Used for notifications, paths\nproperty BUNDLER_ID : \"com.hackademic.alfred-bundler-applescript\"\n\n--# Bundler paths\nproperty _home : POSIX path of (path to \"cusr\" as text)\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty DATA_DIR : BUNDLER_DIR & \"\/data\"\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n\n--# Main Applescript library\nproperty BUNDLER_AS_LIB : BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\"\n\n--# Root directory under which workflow-specific Python libraries are installed\nproperty APPLESCRIPT_LIB_DIR : DATA_DIR & \"\/assets\/applescript\"\n\n--# Root directory under which workflow-specific Python libraries are installed\nproperty UTILITIES_LIB_DIR : DATA_DIR & \"\/assets\/utility\"\n\n--# Wrappers module path\nproperty WRAPPERS_DIR : BUNDLER_DIR & \"\/bundler\/includes\/wrappers\/applescript\"\n\n--# Where helper scripts and metadata are stored\nproperty HELPER_DIR : APPLESCRIPT_LIB_DIR & \"\/\" & BUNDLER_ID\n\n--# Directory for Bundler icons\nproperty BUNDLER_ICONS_LIB : DATA_DIR & \"\/assets\/icons\"\n\n--# Where color alternatives are cached\nproperty COLOR_CACHE : DATA_DIR & \"\/color-cache\"\n\n(* GLOBAL VARIABLES *)\n\n--# Where installer.sh can be downloaded from\nglobal BASH_BUNDLET_URL\nset BASH_BUNDLET_URL to my _format(\"https:\/\/raw.githubusercontent.com\/shawnrice\/alfred-bundler\/{}\/bundler\/bundlets\/alfred.bundler.sh\", BUNDLER_VERSION)\n\n--# Bundler log file\nglobal BUNDLER_LOGFILE\nset BUNDLER_LOGFILE to my _format((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\n--# The actual bundler module will be imported into this variable\nproperty _bundler : missing value\n\n\n(* \/\/\/\nUSER API\n\/\/\/ *)\n\non load_utility(_name, _version, _json)\n\t--# partial support for \"optional\" args in Applescript\n\tif my _is_empty(_version) then\n\t\tset _version to \"latest\"\n\tend if\n\tif my _is_empty(_json) then\n\t\tset _json to \"\"\n\tend if\n\t--# path to specific utility\n\tset utility to UTILITIES_LIB_DIR & \"\/\" & _name & \"\/\" & _version\n\t--# if utility isn't already installed\n\tif my _folder_exists(utility) = false then\n\t\tset bash_bundlet to (my _dirname(BUNDLER_AS_LIB)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my _file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my _join({bash_bundlet_cmd, \"utility\", _name, _version, _json}, space)\n\t\t\tset cmd to my _prepare_cmd(cmd)\n\t\t\tdo shell script cmd\n\t\tend if\n\t\t\n\t\t--# if utility is already installed\n\telse\n\t\t--# read utilities invoke file\n\t\tset invoke_file to utility & \"\/invoke\"\n\t\tif my _file_exists(invoke_file) = true then\n\t\t\tset invoke_path to my _read_file(invoke_file)\n\t\t\t--# combine utility path with invoke path\n\t\t\tset full_path to utility & \"\/\" & invoke_path\n\t\t\treturn full_path\n\t\tend if\n\tend if\nend load_utility\n\n\non get_icon(_font, _name, _color, _alter)\n\t--# partial support for \"optional\" args in Applescript\n\tif my _is_empty(_color) then\n\t\tset _color to \"000000\"\n\t\tif my _is_empty(_alter) then\n\t\t\tset _alter to true\n\t\tend if\n\tend if\n\tif my _is_empty(_alter) then\n\t\tset _alter to false\n\tend if\n\t\n\tset icon to BUNDLER_ICONS_LIB & \"\/\" & _font & \"\/\" & _color & \"\/\" & _name\n\tif my _folder_exists(icon) = false then\n\t\tset bash_bundlet to (my _dirname(BUNDLER_AS_LIB)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my _file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my _join({bash_bundlet_cmd, \"icon\", _font, _name, _color, _alter}, space)\n\t\t\tset cmd to my _prepare_cmd(cmd)\n\t\t\tdo shell script cmd\n\t\tend if\n\telse\n\t\treturn icon\n\tend if\nend get_icon\n\n\n\n\n\n(* \/\/\/\nMAIN ACTION HANDLERS \n\/\/\/ *)\n\non _log(_handler, _level, _message)\n\t--# Ensure log file exists\n\tmy _check_file(BUNDLER_LOGFILE)\n\tdelay 0.1 -- delay to ensure IO action is completed\n\t--# Prepare time string format %Y-%m-%d %H:%M:%S\n\tset log_time to \"[\" & (my date_format()) & \"]\"\n\tset formatted_time to text items 1 thru -4 of (time string of (current date)) as string\n\tset error_time to \"[\" & formatted_time & \"]\"\n\t--# Prepare location message\n\tset _location to \"[bundler.scpt:\" & _handler & \"]\"\n\t--# Prepare level message\n\tset _level to \"[\" & _level & \"]\"\n\t--# Generate full error message for logging\n\tset log_msg to (ASCII character 10) & log_time & space & _location & space & _level & tab & _message\n\tmy write_to_file(log_msg, BUNDLER_LOGFILE, true)\n\t--# Generate regular error message for returning to user\n\tset error_msg to error_time & space & _location & space & _level & tab & _message\n\treturn error_msg\nend _log\n\n(* \/\/\/\nSUB-ACTION HANDLERS\n\/\/\/ *)\n\non date_format() -- Old_date is text, not a date.\n\tset {year:y, month:m, day:d} to current date\n\tset date_num to (y * 10000 + m * 100 + d) as string\n\tset formatted_date to ((text 1 thru 4 of date_num) & \"-\" & (text 5 thru 6 of date_num) & \"-\" & (text 7 thru 8 of date_num))\n\tset formatted_time to text items 1 thru -4 of (time string of (current date)) as string\n\treturn formatted_date & space & formatted_time\nend date_format\n\non _read_file(target_file)\n\topen for access POSIX file target_file\n\tset _contents to (read target_file)\n\tclose access target_file\n\treturn _contents\nend _read_file\n\non _prepare_cmd(cmd)\n\tset pwd to quoted form of (my _pwd())\n\treturn \"cd \" & pwd & \"; bash \" & cmd\nend _prepare_cmd\n\n\n(* \/\/\/\nIO HELPER FUNCTIONS\n\/\/\/ *)\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access POSIX file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\n--# \non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _dirname\n\non _check_dir(_folder)\n\tif not my _folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend _check_dir\n\non _check_file(_path)\n\tif not my _file_exists(_path) then\n\t\tset _dir to _dirname(_path)\n\t\tmy _check_dir(_dir)\n\t\tdelay 0.1\n\t\tdo shell script \"touch \" & (quoted form of _path)\n\tend if\nend _check_file\n\n--# handler to check if a folder exists\non _folder_exists(_folder)\n\tif my _path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend _folder_exists\n\n--# handler to check if a file exists\non _file_exists(_file)\n\tif my _path_exists(_file) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _file) is file)\n\t\tend tell\n\tend if\n\treturn false\nend _file_exists\n\n--# handler to check if a path exists\non _path_exists(_path)\n\tif _path is missing value or my _is_empty(_path) then return false\n\t\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend _path_exists\n\n(* \/\/\/\nTEXT HELPER FUNCTIONS\n\/\/\/ *)\n\non _split(str, delimiter)\n\tlocal delimiter, str, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delimiter\n\t\tset str to text items of str\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str --> list\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't explode: \" & msg number num\n\tend try\nend _split\n\n--# format string \u00e1 la Python\non _format(str, arg)\n\tlocal ASTID, str, arg, lst\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tconsidering case\n\t\t\tset AppleScript's text item delimiters to \"{}\"\n\t\t\tset lst to every text item of str\n\t\t\tset AppleScript's text item delimiters to arg\n\t\t\tset str to lst as string\n\t\tend considering\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't replaceString: \" & msg number num\n\tend try\nend _format\n\n--# removes white space surrounding a string\non _trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend _trim\n\non _join(pieces, delim)\n\tlocal delim, pieces, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delim\n\t\tset pieces to \"\" & pieces\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn pieces --> text\n\ton error emsg number eNum\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't implode: \" & emsg number eNum\n\tend try\nend _join\n\n(* \/\/\/\nLOWER LEVEL HELPER FUNCTIONS\n\/\/\/ *)\n\n--# checks if a value is empty\non _is_empty(str)\n\tif {true, false} contains str then return false\n\tif str is missing value then return true\n\treturn length of (my _trim(str)) is 0\nend _is_empty\n\n--TESTING!!\non test()\n\tset as_pwd to POSIX path of (path to me) as string\n\tset pwd to quoted form of my _dirname(as_pwd)\n\tset cmd to quoted form of \"\/Users\/smargheim\/Documents\/DEVELOPMENT\/GitHub\/alfred-bundler\/bundler\/bundlets\/TEST.sh\"\n\tset sh_pwd to do shell script \"cd \" & pwd & \"; bash \" & cmd\n\t\n\treturn \"Applescript PWD: \" & as_pwd & return & \"Shell PWD: \" & sh_pwd\n\t\nend test","old_contents":"(* GLOBAL PROPERTIES *)\n\nproperty BUNDLER_VERSION : \"devel\"\n\n--# Used for notifications, paths\nproperty BUNDLER_ID : \"com.hackademic.alfred-bundler-applescript\"\n\n--# Bundler paths\nproperty _home : POSIX path of (path to \"cusr\" as text)\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty DATA_DIR : BUNDLER_DIR & \"\/data\"\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n\n--# Main Applescript library\nproperty BUNDLER_AS_LIB : BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\"\n\n--# Root directory under which workflow-specific Python libraries are installed\nproperty APPLESCRIPT_LIB_DIR : DATA_DIR & \"\/assets\/applescript\"\n\n--# Root directory under which workflow-specific Python libraries are installed\nproperty UTILITIES_LIB_DIR : DATA_DIR & \"\/assets\/utility\"\n\n--# Wrappers module path\nproperty WRAPPERS_DIR : BUNDLER_DIR & \"\/bundler\/includes\/wrappers\/applescript\"\n\n--# Where helper scripts and metadata are stored\nproperty HELPER_DIR : APPLESCRIPT_LIB_DIR & \"\/\" & BUNDLER_ID\n\n--# Directory for Bundler icons\nproperty BUNDLER_ICONS_LIB : DATA_DIR & \"\/assets\/icons\"\n\n--# Where color alternatives are cached\nproperty COLOR_CACHE : DATA_DIR & \"\/color-cache\"\n\n(* GLOBAL VARIABLES *)\n\n--# Where installer.sh can be downloaded from\nglobal BASH_BUNDLET_URL\nset BASH_BUNDLET_URL to my _format(\"https:\/\/raw.githubusercontent.com\/shawnrice\/alfred-bundler\/{}\/bundler\/bundlets\/alfred.bundler.sh\", BUNDLER_VERSION)\n\n--# Bundler log file\nglobal BUNDLER_LOGFILE\nset BUNDLER_LOGFILE to my _format((DATA_DIR & \"\/logs\/bundler-{}.log\"), BUNDLER_VERSION)\n\n--# The actual bundler module will be imported into this variable\nproperty _bundler : missing value\n\n\n(* \/\/\/\nUSER API\n\/\/\/ *)\n\non load_utility(_name, _version, _json)\n\t--# partial support for \"optional\" args in Applescript\n\tif my _is_empty(_version) then\n\t\tset _version to \"latest\"\n\tend if\n\tif my _is_empty(_json) then\n\t\tset _json to \"\"\n\tend if\n\t--# path to specific utility\n\tset utility to UTILITIES_LIB_DIR & \"\/\" & _name & \"\/\" & _version\n\t--# if utility isn't already installed\n\tif my _folder_exists(utility) = false then\n\t\tset bash_bundlet to (my _dirname(BUNDLER_AS_LIB)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my _file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my _join({bash_bundlet_cmd, \"utility\", _name, _version, _json}, space)\n\t\t\tset cmd to my _prepare_cmd(cmd)\n\t\t\tdo shell script cmd\n\t\tend if\n\t\t\n\t\t--# if utility is already installed\n\telse\n\t\t--# read utilities invoke file\n\t\tset invoke_file to utility & \"\/invoke\"\n\t\tif my _file_exists(invoke_file) = true then\n\t\t\tset invoke_path to my _read_file(invoke_file)\n\t\t\t--# combine utility path with invoke path\n\t\t\tset full_path to utility & \"\/\" & invoke_path\n\t\t\treturn full_path\n\t\tend if\n\tend if\nend load_utility\n\n\non get_icon(_font, _name, _color, _alter)\n\t--# partial support for \"optional\" args in Applescript\n\tif my _is_empty(_color) then\n\t\tset _color to \"000000\"\n\t\tif my _is_empty(_alter) then\n\t\t\tset _alter to true\n\t\tend if\n\tend if\n\tif my _is_empty(_alter) then\n\t\tset _alter to false\n\tend if\n\t\n\tset icon to BUNDLER_ICONS_LIB & \"\/\" & _font & \"\/\" & _color & \"\/\" & _name\n\tif my _folder_exists(icon) = false then\n\t\tset bash_bundlet to (my _dirname(BUNDLER_AS_LIB)) & \"bundlets\/alfred.bundler.sh\"\n\t\tif my _file_exists(bash_bundlet) = true then\n\t\t\tset bash_bundlet_cmd to quoted form of bash_bundlet\n\t\t\tset cmd to my _join({bash_bundlet_cmd, \"icon\", _font, _name, _color, _alter}, space)\n\t\t\tset cmd to my _prepare_cmd(cmd)\n\t\t\tdo shell script cmd\n\t\tend if\n\telse\n\t\treturn icon\n\tend if\nend get_icon\n\n\n\n\n\n(* \/\/\/\nMAIN ACTION HANDLERS \n\/\/\/ *)\n\n\n(* \/\/\/\nSUB-ACTION HANDLERS\n\/\/\/ *)\n\non date_format() -- Old_date is text, not a date.\n\tset {year:y, month:m, day:d} to current date\n\tset date_num to (y * 10000 + m * 100 + d) as string\n\tset formatted_date to ((text 1 thru 4 of date_num) & \"-\" & (text 5 thru 6 of date_num) & \"-\" & (text 7 thru 8 of date_num))\n\tset formatted_time to text items 1 thru -4 of (time string of (current date)) as string\n\treturn formatted_date & space & formatted_time\nend date_format\n\non _read_file(target_file)\n\topen for access POSIX file target_file\n\tset _contents to (read target_file)\n\tclose access target_file\n\treturn _contents\nend _read_file\n\non _prepare_cmd(cmd)\n\tset pwd to quoted form of (my _pwd())\n\treturn \"cd \" & pwd & \"; bash \" & cmd\nend _prepare_cmd\n\n\n(* \/\/\/\nIO HELPER FUNCTIONS\n\/\/\/ *)\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access POSIX file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\n--# \non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _dirname\n\non _check_dir(_folder)\n\tif not my _folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend _check_dir\n\non _check_file(_path)\n\tif not my _file_exists(_path) then\n\t\tset _dir to _dirname(_path)\n\t\tmy _check_dir(_dir)\n\t\tdelay 0.1\n\t\tdo shell script \"touch \" & (quoted form of _path)\n\tend if\nend _check_file\n\n--# handler to check if a folder exists\non _folder_exists(_folder)\n\tif my _path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend _folder_exists\n\n--# handler to check if a file exists\non _file_exists(_file)\n\tif my _path_exists(_file) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _file) is file)\n\t\tend tell\n\tend if\n\treturn false\nend _file_exists\n\n--# handler to check if a path exists\non _path_exists(_path)\n\tif _path is missing value or my _is_empty(_path) then return false\n\t\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend _path_exists\n\n(* \/\/\/\nTEXT HELPER FUNCTIONS\n\/\/\/ *)\n\non _split(str, delimiter)\n\tlocal delimiter, str, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delimiter\n\t\tset str to text items of str\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str --> list\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't explode: \" & msg number num\n\tend try\nend _split\n\n--# format string \u00e1 la Python\non _format(str, arg)\n\tlocal ASTID, str, arg, lst\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tconsidering case\n\t\t\tset AppleScript's text item delimiters to \"{}\"\n\t\t\tset lst to every text item of str\n\t\t\tset AppleScript's text item delimiters to arg\n\t\t\tset str to lst as string\n\t\tend considering\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn str\n\ton error msg number num\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't replaceString: \" & msg number num\n\tend try\nend _format\n\n--# removes white space surrounding a string\non _trim(str)\n\tif class of str is not text or class of str is not string or str is missing value then return str\n\tif str is \"\" then return str\n\trepeat while str begins with \" \"\n\t\ttry\n\t\t\tset str to items 2 thru -1 of str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while str ends with \" \"\n\t\ttry\n\t\t\tset str to items 1 thru -2 of str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn str\nend _trim\n\non _join(pieces, delim)\n\tlocal delim, pieces, ASTID\n\tset ASTID to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to delim\n\t\tset pieces to \"\" & pieces\n\t\tset AppleScript's text item delimiters to ASTID\n\t\treturn pieces --> text\n\ton error emsg number eNum\n\t\tset AppleScript's text item delimiters to ASTID\n\t\terror \"Can't implode: \" & emsg number eNum\n\tend try\nend _join\n\n(* \/\/\/\nLOWER LEVEL HELPER FUNCTIONS\n\/\/\/ *)\n\n--# checks if a value is empty\non _is_empty(str)\n\tif {true, false} contains str then return false\n\tif str is missing value then return true\n\treturn length of (my _trim(str)) is 0\nend _is_empty\n\n--TESTING!!\non test()\n\tset as_pwd to POSIX path of (path to me) as string\n\tset pwd to quoted form of my _dirname(as_pwd)\n\tset cmd to quoted form of \"\/Users\/smargheim\/Documents\/DEVELOPMENT\/GitHub\/alfred-bundler\/bundler\/bundlets\/TEST.sh\"\n\tset sh_pwd to do shell script \"cd \" & pwd & \"; bash \" & cmd\n\t\n\treturn \"Applescript PWD: \" & as_pwd & return & \"Shell PWD: \" & sh_pwd\n\t\nend test","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"84388e72f99cf3c333be314f2d90f85dc6dfd907","subject":"Amend history and fix a bug that caused prettifyXML to always fail on xml strings shorter than 1926 characters.","message":"Amend history and fix a bug that caused prettifyXML to always fail on xml strings shorter than 1926 characters.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : { \u00ac\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \u00ac\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \u00ac\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \u00ac\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \u00abclass utf8\u00bb\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\u00abclass \" & objCode & \"\u00bb\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \u00abclass utf8\u00bb\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\u00abclass usrf\u00bb:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : { \u00ac\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \u00ac\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \u00ac\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \u00ac\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \u00abclass utf8\u00bb\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\u00abclass \" & objCode & \"\u00bb\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \u00abclass utf8\u00bb\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\u00abclass usrf\u00bb:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"87764b4958cb3ac4ced816825f2ad5b86b5d403d","subject":"handle backslashes properly","message":"handle backslashes properly\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\ufffd\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \ufffd\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \ufffd\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \ufffd\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \ufffd\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \ufffd\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \ufffd\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \ufffd\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \ufffd\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write\ufffdto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \ufffdclass utf8\ufffd\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\ufffdclass \" & objCode & \"\ufffd\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \ufffdclass utf8\ufffd\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can\ufffdt make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\ufffdclass usrf\ufffd:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0, Daniel A. Shockley\n\t\t\n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"edb7b492a7f6f7ae28d82949d2df920f16d8d3e0","subject":"uncompliled testing script","message":"uncompliled testing script\n\nstill working on it, but have the load script down to one line\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/testing.applescript","new_file":"tests\/applescript\/testing.applescript","new_contents":"global bundler\n--One line version of loading the Alfred Bundler into a workflow script\nset bundler to (load script (my _pwd()) & \"alfred.bundler.scpt\")'s load_bundler()\n--Two line version (for clarity's sake)\n--set bundlet to load script (my _pwd()) & \"alfred.bundler.scpt\"\n--set bundler to bundlet's load_bundler()\nclass Utility()\n\nend\n(* TESTS *)\non utility_tests()\n\t--load utility with no other info\n\tbundler's load_utility(\"pashua\", \"\", \"\")\nend utility_tests\n\non icon_tests()\n\tbundler's icon(\"octicons\", \"markdown\", \"000\", true)\nend icon_tests\n--\n\non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd","old_contents":"set bundler to load script (my _pwd()) & \"alfred.bundler.scpt\"\n\n\nbundler's get_icon(\"octicons\", \"markdown\", \"000\", true)\nbundler's load_utility(\"pashua\", \"\", \"\")\n\non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5c88445e366b15d4a4700b7f9a10a6915ff6b20b","subject":"[CHANGE] Xmo'd: add .h human+machine header files to project (in addition to current .m + .mm files). Closes #1.","message":"[CHANGE] Xmo'd: add .h human+machine header files to project (in addition to current .m + .mm files). Closes #1.\n","repos":"hardikdevios\/mogenerator,adozenlines\/mogenerator,skywinder\/mogenerator,rentzsch\/mogenerator,iv-mexx\/mogenerator,anton-matosov\/mogenerator,rentzsch\/mogenerator,iv-mexx\/mogenerator,skywinder\/mogenerator,fizker\/mogenerator,anton-matosov\/mogenerator,pronebird\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,Erin-Mounts\/mogenerator,casademora\/mogenerator,mjasa\/mogenerator,seanm\/mogenerator,willowtreeapps\/mattgenerator,bgulanowski\/mogenerator,iv-mexx\/mogenerator,seanm\/mogenerator,adozenlines\/mogenerator,bgulanowski\/mogenerator,kostiakoval\/mogenerator,mjasa\/mogenerator,casademora\/mogenerator,casademora\/mogenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,untitledstartup\/mogenerator,bewebste\/mogenerator,VladimirGoncharov\/mogenerator,fizker\/mogenerator,rentzsch\/mogenerator,untitledstartup\/mogenerator,bewebste\/mogenerator,VladimirGoncharov\/mogenerator,anton-matosov\/mogenerator,untitledstartup\/mogenerator,skywinder\/mogenerator,otaran\/mogenerator,ef-ctx\/mogenerator,fizker\/mogenerator,willowtreeapps\/mattgenerator,Erin-Mounts\/mogenerator,VladimirGoncharov\/mogenerator,hardikdevios\/mogenerator,otaran\/mogenerator,seanm\/mogenerator,otaran\/mogenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,willowtreeapps\/mattgenerator,mjasa\/mogenerator,bgulanowski\/mogenerator,iv-mexx\/mogenerator,Erin-Mounts\/mogenerator,kostiakoval\/mogenerator,bewebste\/mogenerator,hardikdevios\/mogenerator,bewebste\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelIt in modelList\n\t\t\tif comments of modelIt contains \"xmod\" then\n\t\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\n\t\t\t\t\ttell group of modelIt\n\t\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file modelSrcDir as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanHeaderFileList & humanSourceFileList & machineHeaderFileList & machineSourceFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\trepeat with pathIt in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetIt to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetIt\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetIt in (every target of _project)\n\t\t\trepeat with buildFileIt in build files of targetIt\n\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {(targetIt as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non modelSrcDirPath(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\tset modelFileName to name of modelFileAlias\n\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\n\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\n\tend tell\n\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\nend modelSrcDirPath\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","old_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelIt in modelList\n\t\t\tif comments of modelIt contains \"xmod\" then\n\t\t\t\tset modelSrcDir to my modelSrcDirPath(full path of modelIt)\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelIt)\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of group of modelIt whose full path is modelSrcDir)) then\n\t\t\t\t\ttell group of modelIt\n\t\t\t\t\t\tmake new group with properties {full path:modelSrcDir, name:text 1 thru -13 of ((name of modelIt) as string)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of group of modelIt whose full path is modelSrcDir)\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelIt & \"' --output-dir '\" & modelSrcDir & \"'\"\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset humanFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineFileList to (every file of (POSIX file modelSrcDir as alias) whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanFileList & machineFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\trepeat with pathIt in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathIt, name:name of (info for POSIX file pathIt)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetIt to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetIt\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetIt in (every target of _project)\n\t\t\trepeat with buildFileIt in build files of targetIt\n\t\t\t\tif full path of file reference of buildFileIt is _buildFilePath then set theResult to theResult & {(targetIt as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non modelSrcDirPath(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\tset modelFileName to name of modelFileAlias\n\t\tset modelSrcFolderName to text 1 thru -13 of modelFileName -- pull off the .xcdatamodel extension\n\t\tif not (exists folder modelSrcFolderName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelSrcFolderName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelSrcFolderName of modelFileFolder\n\tend tell\n\treturn text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\nend modelSrcDirPath\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"59bee19f69dc5a945d120a6991e88dd186f9ed0a","subject":"windowSizeAll.applescript, from darwin11","message":"windowSizeAll.applescript, from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"windowSizeAll.applescript","new_file":"windowSizeAll.applescript","new_contents":"","old_contents":"-- app to be excepted\nset expApp to {\"XRG\", \"Skype\"}\n\n-- app to be half size, in left monitor (0.7 times full)\nset halfSizeApp_L to {}\n\n-- app to be half size, in right monitor\nset halfSizeApp_R to {\"AdobeReader\"}\n\n-- app only to be moved, in left monitor\nset noResizeApp_L to {}\n\n-- app only to be moved, in right monitor\nset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\n-- app to be moved left\nset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\n-- app to be moved right\nset app_R to {\"iTerm\"}\n\n-- get screen size\ntell application \"Finder\"\n\tset scriptPath to (path to me)'s folder as text\nend tell\nset windowSizeScpt to scriptPath & \"windowSize.scpt\"\nset windowSize to load script file windowSizeScpt\n\n-- main screen\nset svs to windowSize's getVisibleFrame(100, 100)\nset dPosX to (item 1 of svs) + 100\nset dPosY to (item 2 of svs) + 100\nset dWidth to item 3 of svs\nset dHeight to item 4 of svs\n\n-- try to get left screen\nset dPosX_L to dPosX\nset dPosY_L to dPosY\ntry\n\tset svsL to windowSize's getVisibleFrame(-100, 100)\n\tset dPosX_L to (item 1 of svsL) + 100\n\tset dPosY_L to (item 2 of svsL) + 100\nend try\n\n-- try to get right screen\nset dPosX_R to dPosX\nset dPosY_R to dPosY\ntry\n\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 100, 100)\n\tset dPosX_R to (item 1 of svsR) + 100\n\tset dPosY_R to (item 2 of svsR) + 100\nend try\n\nlog \"dPosX:\" & dPosX & \", dPosY:\" & dPosY & \", dPosX_L:\" & dPosX_L & \", dPosY_L:\" & dPosY_L & \", dPosX_R:\" & dPosX_R & \",dPosY_R:\" & dPosY_R\n\n-- get application name\ntell application \"System Events\"\n\tset appList to (get name of every application process whose visible is true)\nend tell\n\n-- repeat for all app\nrepeat with appName in appList\n\tif appName is not in expApp then\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\ttell process appName\n\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t--display dialog appName & \" \" & nW\n\t\t\t\t\t\n\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\tlog appName & \":\" & i\n\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t--windowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t--windowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t--windowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t--windowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\tlog \"app_L\" & appName & \", windowSize(\" & appName & \",\" & i & \",\" & dPosX_L & \",\" & dPosY_L & \")\"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\tlog \"app_R\" & appName\n\t\t\t\t\t\t\t--windowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\tend if\nend repeat\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5b777198ec35b8be5e7dde9bc54fc61d9e9f283f","subject":" moveForMon.applescript, from darwin19","message":" moveForMon.applescript, from darwin19\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property USE_SIDEBAR : false\nproperty DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 0\n\non moveForMon(pars)\n\t-- set default variables\n\tset all to all of (pars & {all:DEF_ALL})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- set monitoring tools' positions\n\t\t-- SimpleFloatingClock\n\t\tset w_sfcCEST to 1\n\t\tset w_sfcJST to 2\n\t\t\n\t\t-- XRG\n\t\tset w_XRG to 1\n\t\t\n\t\t-- set monitoring tool's name\n\t\t-- GeekTool\n\t\tset s_gtCal to \"gcalCal\"\n\t\tset s_gtGcal to \"gcalList\"\n\t\tset s_gtTask to \"gtasklist\"\n\t\tset s_gtPs to \"myps\"\n\t\t\n\t\t-- x posiiotn for monitoring\n\t\tset m_width to 160\n\t\tset ledge to -1 * m_width\n\t\tset ledgeSFCoffset to 20\n\t\t\n\t\t-- y positions\n\t\tset y_sfcCEST to 30\n\t\tset sfc_height to 100\n\t\tset y_sfcJST to y_sfcCEST + sfc_height\n\t\tset y_gtCal to y_sfcJST + sfc_height + 5\n\t\tset gtCal_height to 115\n\t\tset y_gtGcal to y_gtCal + gtCal_height\n\t\tset gtGcal_height to 175\n\t\tset y_gtTask to y_gtGcal + gtGcal_height\n\t\tset gtTask_height to 85\n\t\tset y_gtPs to y_gtTask + gtTask_height\n\t\tset gtPs_height to 75\n\t\tset y_XRG to y_gtPs + gtPs_height\n\t\tset XRG_height to 400\n\tend if\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\tset scriptPath to ((path to me as text) & \"::\")\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset ws to load script file windowSizeScpt\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\t\n\t-- main screen\n\tset vframes to gf's getAllVisibleFrames()\n\t-- dpoxY needs to be enough bigger than menubar's (~23) height\n\tset dPosX to 100\n\tset dPosY to 100\n\tset dWidth to gf's getFrameWidth(item 1 of (vframes's main_frames))\n\tset dHeight to gf's getFrameHeight(item 1 of (vframes's main_frames))\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX\n\tset dPosY_L to dPosY\n\tif length of vframes's left_frames > 0 then\n\t\tset dPosX_L to (gf's getFrameOriginX(item 1 of (vframes's left_frames))) + 100\n\t\tset dPosY_L to (gf's getFrameOriginY(item 1 of (vframes's left_frames))) + 100\n\tend if\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\tif length of vframes's right_frames > 0 then\n\t\tset dPosX_R to (gf's getFrameOriginX(item 1 of (vframes's right_frames))) + 100\n\t\tset dPosY_R to (gf's getFrameOriginY(item 1 of (vframes's right_frames))) + 100\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- move monitoring tools\n\t\tif length of vframes's left_frames > 0 then\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeDual\"\n\t\t\tend if\n\t\telse\n\t\t\tset ledge to dWidth + ledge\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeSingle\"\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttell application \"System Events\"\n\t\t\t-- SimpleFloatingClock\n\t\t\ttry\n\t\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\t\tend tell\n\t\t\t\t\ttell window w_sfcJST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\t\t\n\t\t\t---- GeekTool\n\t\t\t--try\n\t\t\t--\t--set appName to \"GeekTool\"\n\t\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t--\t\n\t\t\t--\ttell process appName\n\t\t\t--\t\tset nW to number of windows\n\t\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t--\t\ttell window w_gtCal\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtGcal\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtTask\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtPs\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t\t--\t\tend tell\n\t\t\t--\tend tell\n\t\t\t--\t--on error errMsg\n\t\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t\t--end try\n\t\t\t\n\t\t\t-- XRG\n\t\t\ttry\n\t\t\t\tset appName to \"XRG\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_XRG\n\t\t\t\t\t\tset size to {m_width, XRG_height}\n\t\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t\t-- can't use position to geeklets\n\t\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t\t--geeklets\n\t\t\trepeat with g in geeklets\n\t\t\t\ttell g\n\t\t\t\t\tif name is s_gtCal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtCal\n\t\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtGcal\n\t\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtTask\n\t\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtPs\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend tell\n\tend if\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property USE_SIDEBAR : false\nproperty DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 0\n\non moveForMon(pars)\n\t-- set default variables\n\tset all to all of (pars & {all:DEF_ALL})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- set monitoring tools' positions\n\t\t-- SimpleFloatingClock\n\t\tset w_sfcCEST to 1\n\t\tset w_sfcJST to 2\n\t\t\n\t\t-- XRG\n\t\tset w_XRG to 1\n\t\t\n\t\t-- set monitoring tool's name\n\t\t-- GeekTool\n\t\tset s_gtCal to \"gcalCal\"\n\t\tset s_gtGcal to \"gcalList\"\n\t\tset s_gtTask to \"gtasklist\"\n\t\tset s_gtPs to \"myps\"\n\t\t\n\t\t-- x posiiotn for monitoring\n\t\tset m_width to 160\n\t\tset ledge to -1 * m_width\n\t\tset ledgeSFCoffset to 20\n\t\t\n\t\t-- y positions\n\t\tset y_sfcCEST to 30\n\t\tset sfc_height to 100\n\t\tset y_sfcJST to y_sfcCEST + sfc_height\n\t\tset y_gtCal to y_sfcJST + sfc_height + 5\n\t\tset gtCal_height to 115\n\t\tset y_gtGcal to y_gtCal + gtCal_height\n\t\tset gtGcal_height to 175\n\t\tset y_gtTask to y_gtGcal + gtGcal_height\n\t\tset gtTask_height to 85\n\t\tset y_gtPs to y_gtTask + gtTask_height\n\t\tset gtPs_height to 75\n\t\tset y_XRG to y_gtPs + gtPs_height\n\t\tset XRG_height to 400\n\tend if\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\tset scriptPath to ((path to me as text) & \"::\")\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset ws to load script file windowSizeScpt\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\t\n\t-- main screen\n\tset vframes to gf's getAllVisibleFrames()\n\t-- dpoxY needs to be enough bigger than menubar's (~23) height\n\tset dPosX to 100\n\tset dPosY to 100\n\tset dWidth to gf's getFrameWidth(item 1 of (vframes's main_frames))\n\tset dHeight to gf's getFrameHeight(item 1 of (vframes's main_frames))\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX\n\tset dPosY_L to dPosY\n\tif length of vframes's left_frames > 0 then\n\t\tset dPosX_L to (gf's getFrameOriginX(item 1 of (vframes's left_frames))) + 100\n\t\tset dPosY_L to (gf's getFrameOriginY(item 1 of (vframes's left_frames))) + 100\n\tend if\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\tif length of vframes's right_frames > 0 then\n\t\tset dPosX_R to (gf's getFrameOriginX(item 1 of (vframes's right_frames))) + 100\n\t\tset dPosY_R to (gf's getFrameOriginY(item 1 of (vframes's right_frames))) + 100\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- move monitoring tools\n\t\tif length of vframes's left_frames > 0 then\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeDual\"\n\t\t\tend if\n\t\telse\n\t\t\tset ledge to dWidth + ledge\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeSingle\"\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttell application \"System Events\"\n\t\t\t-- SimpleFloatingClock\n\t\t\ttry\n\t\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\t\tend tell\n\t\t\t\t\ttell window w_sfcJST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\t\t\n\t\t\t---- GeekTool\n\t\t\t--try\n\t\t\t--\t--set appName to \"GeekTool\"\n\t\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t--\t\n\t\t\t--\ttell process appName\n\t\t\t--\t\tset nW to number of windows\n\t\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t--\t\ttell window w_gtCal\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtGcal\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtTask\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtPs\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t\t--\t\tend tell\n\t\t\t--\tend tell\n\t\t\t--\t--on error errMsg\n\t\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t\t--end try\n\t\t\t\n\t\t\t-- XRG\n\t\t\ttry\n\t\t\t\tset appName to \"XRG\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_XRG\n\t\t\t\t\t\tset size to {m_width, XRG_height}\n\t\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t\t-- can't use position to geeklets\n tell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t\t--geeklets\n\t\t\trepeat with g in geeklets\n\t\t\t\ttell g\n\t\t\t\t\tif name is s_gtCal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtCal\n\t\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtGcal\n\t\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtTask\n\t\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtPs\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend tell\n\tend if\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"81100325399b3c7dcf6f9d662f6eb6082054cea5","subject":"RestoreApp.scpt is no longer used","message":"RestoreApp.scpt is no longer used\n","repos":"binaryage\/totalterminal-i18n,binaryage\/totalterminal-i18n","old_file":"plugin\/RestoreApp.scpt","new_file":"plugin\/RestoreApp.scpt","new_contents":"","old_contents":"-- see: http:\/\/lists.apple.com\/archives\/Applescript-users\/2007\/Mar\/msg00265.html\n\n-- related issues:\n-- Visor launches app when returning focus (http:\/\/github.com\/darwin\/visor\/issues#issue\/8)\n-- Visor crashes when trying to return focus to non-running application? (http:\/\/github.com\/darwin\/visor\/issues#issue\/12)\n\non restoreApp(appName)\n with timeout of 1 second\n tell application appName\n activate\n end tell\n end timeout\nend restoreApp\n\nrestoreApp(\"%@\")","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ba14cdb482c61dfae762aab976f25299fb11e640","subject":"Fix up clear notifs to put all into a handler","message":"Fix up clear notifs to put all into a handler\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/clear-notifications.scpt","new_file":"scripts\/clear-notifications.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012clearnotifications\u0000\u0012clearNotifications\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\f\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000f\u0000\r\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0013\r\u0000\u0013\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000 \n\u0000\u0004\nsgrp\r\u0000 \u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000#\n\u0000\u0004\nuiel\r\u0000#\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000&\n\u0000\u0004\nscra\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000%\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000'\n\u0000\u0004\ncwin\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001b\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0018\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000+\u0000\u0002\u0000,\r\u0000,\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000-\u0000.\r\u0000-\u0000\u0001k\u0000\u0000\u00005\u0000\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u00005\u0000:\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u00005\u00008\u00004\u00005\r\u00004\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00005\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u00001\u0000\u0002\u00006\u00007\r\u00006\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00007\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0006\u0000;\u0000;\u0000:\u0000;\u0001\u0000\u0000\f\u0000:\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u0000;\u0000\u0001\u0000<\u0011\u0000<\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00009\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003X\u0000\u0000\u0000;\u0000p\u0000?\u0000@\r\u0000?\u0000\u0004Z\u0000\u0000\u0000K\u0000k\u0000A\u0000B\r\u0000A\u0000\u0002=\u0000\u0003\u0000K\u0000T\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\ndesc\r\u0000F\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000D\u0000\u0001m\u0000\u0000\u0000P\u0000S\u0000G\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000B\u0000\u0001k\u0000\u0000\u0000W\u0000g\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000W\u0000Z\u0000L\u0000M\r\u0000L\u0000\u0001m\u0000\u0000\u0000W\u0000X\n\u0000\b\u000bboovtrue\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002O\u0000\u0000\u0000[\u0000e\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000_\u0000d\u0000R\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000R\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000O\u0000\u0002\u0000S\r\u0000S\u0000\u0000S\u0000\u0000\u0000f\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000@\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000>\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000q\u0000q\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003X\u0000\u0000\u0000q\u0000\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000Z\u0000[\r\u0000Z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\\\u0000]\r\u0000\\\u0000\u0002n\u0000\u0000\u0000\u0000\u0000^\u0000_\r\u0000^\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000]\u0000\u0001m\u0000\u0000\u0000\u0000\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000[\u0000\u0001k\u0000\u0000\u0000\u0000\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002r\u0000\u0000\u0000\u0000\u0000e\u0000f\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002O\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0002\u0000\u0000\u0000k\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000h\u0000\u0002\u0000l\r\u0000l\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Y\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000W\u0000\u0002\u0000m\r\u0000m\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000n\n\u0000\u0004\nprcs\r\u0000n\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000q\u000f\u0000q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0000(0\u0000\u0012clearnotifications\u0000\u0012clearNotifications\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000v\u0000w\u0000x\u0001\u0000\u0000\u0010\u0000v\u0000\u0002\u000b\u0000(0\u0000\u0012clearnotifications\u0000\u0012clearNotifications\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000w\u0000\u0007\u0010\u0000\b\u0000y\u0000z\u000b\u0000(0\u0000\u0012clearnotifications\u0000\u0012clearNotifications\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0000y\u0000\u0004\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0010\u0000z\u0000\u0014\u0000\r\u0000q\u0000o\u0000(\u0000G\u0000`\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\n\u0000\u000b\u0016O\u0014\u0000x-EO\u0017\u00004[l\f\u0000\u000fkh\u001b\u0000\u0002a\u0000\u0010,a\u0000\u0011\u0000\u001d\u0000\u0015eEO\u0012\u0000\u0007j\f\u0000\u0012UO\u0016Y\u0000\u0003h[OYO\u0017\u00004[l\f\u0000\u000fkh\u001b\u0000\u0002a\u0000\u0010,a\u0000\u0013\u0000\u001d\u0000\u0015eEO\u0012\u0000\u0007j\f\u0000\u0012UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\n\u0000\u000bh[OYaUU\u000f\u000e\u0000x\u0000\u0007\u0010\u0000{\u0000|\u0000}\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000{\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0005\u0000~\u0002\u0000~\u0000\u0002\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000|\u0000\u0000\u0010\u0000}\u0000\u0001\u000b\u0000(0\u0000\u0012clearnotifications\u0000\u0012clearNotifications\u0011\u0000\u0006*j+\u0000\u0000\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000o\u0000p\u0000q\u0000r\u0001\u0000\u0000\u0010\u0000o\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u000e\u0000p\u0000\u0007\u0010\u0000s\u0000t\u0000u\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000s\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000v\u0002\u0000v\u0000\u0002\u0000\u0005\u0000w\u0002\u0000w\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000t\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000u\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u000e\u0000q\u0000\u0001\u0014\u0000x\u000e\u0000x\u0000\u0003\u0018\u0000y\u000e\u0000y\u0000\u0003\u0018\u0000z\u000e\u0000z\u0000\u0003\u0018\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000|\u0000}\u000e\u0000|\u0000\u0003\u0018\u0000n\u0000~\n\u0000\u0004\npcap\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\u000e\u0000r\u0000\u0002\u0004\u0000\u0003\u0000\u0002\u000e\u0000\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000A\u0000X\u0000S\u0000c\u0000r\u0000o\u0000l\u0000l\u0000T\u0000o\u0000V\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000A\u0000X\u0000S\u0000h\u0000o\u0000w\u0000M\u0000e\u0000n\u0000u\n\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"be5470729f24ebdac6d636e24010df6e1ec8faee","subject":"Fixed Terminal test script bugs.","message":"Fixed Terminal test script bugs.\n","repos":"timoc\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,timoc\/scaliendb","old_file":"test\/test.applescript","new_file":"test\/test.applescript","new_contents":"tell application \"Terminal\"\n\tactivate\n\tset window_id to id of first window\n\t-- set project path\n\tset cd_path to \"cd ~\/Projects\/Scalien\/ScalienDB;\"\n\t-- clear database\n\tset clearall_cmd to cd_path & \"test\/clearall\"\n\t-- do script does not block while do shell script does\n\t--do script clearall_cmd in tab 1 of window id window_id\n\tdo shell script clearall_cmd\n\t\n\t-- clear scrollbacks\n\tset twin to first window\n\ttell twin\n\t\trepeat with t from 1 to 6\n\t\t\tset selected of tab t to true\n\t\t\tmy menu_click({\"Terminal\", \"View\", \"Clear Scrollback\"})\n\t\tend repeat\n\t\tset selected of tab 1 to true\n\tend tell\n\t\n\t-- start controllers\n\trepeat with c from 0 to 2\n\t\tset t to c + 1\n\t\tset cmd to cd_path & \"test\/runc \" & c\n\t\tdo script cmd in tab t of window id window_id\n\tend repeat\n\t\n\t-- start data nodes\n\trepeat with d from 0 to 2\n\t\tset t to d + 4\n\t\tset cmd to cd_path & \"test\/rund \" & d\n\t\tdo script cmd in tab t of window id window_id\n\tend repeat\nend tell\n\n-- `menu_click`, by Jacob Rus, September 2006\n-- \n-- Accepts a list of form: `{\"Finder\", \"View\", \"Arrange By\", \"Date\"}`\n-- Execute the specified menu item. In this case, assuming the Finder \n-- is the active application, arranging the frontmost folder by date.\n\non menu_click(mList)\n\tlocal appName, topMenu, r\n\t\n\t-- Validate our input\n\tif mList's length < 3 then error \"Menu list is not long enough\"\n\t\n\t-- Set these variables for clarity and brevity later on\n\tset {appName, topMenu} to (items 1 through 2 of mList)\n\tset r to (items 3 through (mList's length) of mList)\n\t\n\t-- This overly-long line calls the menu_recurse function with\n\t-- two arguments: r, and a reference to the top-level menu\n\ttell application \"System Events\" to my menu_click_recurse(r, ((process appName)'s \n\t\t(menu bar 1)'s (menu bar item topMenu)'s (menu topMenu)))\nend menu_click\n\non menu_click_recurse(mList, parentObject)\n\tlocal f, r\n\t\n\t-- `f` = first item, `r` = rest of items\n\tset f to item 1 of mList\n\tif mList's length > 1 then set r to (items 2 through (mList's length) of mList)\n\t\n\t-- either actually click the menu item, or recurse again\n\ttell application \"System Events\"\n\t\tif mList's length is 1 then\n\t\t\tclick parentObject's menu item f\n\t\telse\n\t\t\tmy menu_click_recurse(r, (parentObject's (menu item f)'s (menu f)))\n\t\tend if\n\tend tell\nend menu_click_recurse","old_contents":"#!\/usr\/bin\/osascript\ntell application \"Terminal\"\n\tactivate\nend tell\nmenu_click({\"Terminal\", \"View\", \"Clear Scrollback\"})\ntell application \"Terminal\"\n\tset window_id to id of first window whose frontmost is true\n\t-- set project path\n\tset cd_path to \"cd ~\/Projects\/Scalien\/ScalienDB;\"\n\t\n\t-- clear database\n\tset cmd to cd_path & \"test\/clearall\"\n\tdo script cmd in tab 1 of window id window_id\n\t\n\t-- start controllers\n\trepeat with c from 0 to 2\n\t\tset t to c + 1\n\t\tset cmd to cd_path & \"test\/runc \" & c\n\t\tdo script cmd in tab t of window id window_id\n\tend repeat\n\t\n\t-- start data nodes\n\trepeat with d from 0 to 2\n\t\tset t to d + 4\n\t\tset cmd to cd_path & \"test\/rund \" & d\n\t\tdo script cmd in tab t of window id window_id\n\tend repeat\nend tell\n\n-- `menu_click`, by Jacob Rus, September 2006\n-- \n-- Accepts a list of form: `{\"Finder\", \"View\", \"Arrange By\", \"Date\"}`\n-- Execute the specified menu item. In this case, assuming the Finder \n-- is the active application, arranging the frontmost folder by date.\n\non menu_click(mList)\n\tlocal appName, topMenu, r\n\t\n\t-- Validate our input\n\tif mList's length < 3 then error \"Menu list is not long enough\"\n\t\n\t-- Set these variables for clarity and brevity later on\n\tset {appName, topMenu} to (items 1 through 2 of mList)\n\tset r to (items 3 through (mList's length) of mList)\n\t\n\t-- This overly-long line calls the menu_recurse function with\n\t-- two arguments: r, and a reference to the top-level menu\n\ttell application \"System Events\" to my menu_click_recurse(r, ((process appName)'s \n\t\t(menu bar 1)'s (menu bar item topMenu)'s (menu topMenu)))\nend menu_click\n\non menu_click_recurse(mList, parentObject)\n\tlocal f, r\n\t\n\t-- `f` = first item, `r` = rest of items\n\tset f to item 1 of mList\n\tif mList's length > 1 then set r to (items 2 through (mList's length) of mList)\n\t\n\t-- either actually click the menu item, or recurse again\n\ttell application \"System Events\"\n\t\tif mList's length is 1 then\n\t\t\tclick parentObject's menu item f\n\t\telse\n\t\t\tmy menu_click_recurse(r, (parentObject's (menu item f)'s (menu f)))\n\t\tend if\n\tend tell\nend menu_click_recurse","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"d7b86bcbf56242a99c6a17959ef573d69de637b8","subject":"Remove extra line breaker in pdf script","message":"Remove extra line breaker in pdf script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\ngetting-production-ready\ninitialize-the-backend-repo\norganize-the-backend-repo\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\nuse-environment-variables-in-lambda-functions\ndeploy-your-serverless-infrastructure\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env-yml\ntest-the-billing-api\nunit-tests-in-serverless\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nmonitoring-deployments-in-seed\ninitialize-the-frontend-repo\nmanage-environments-in-create-react-app\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nautomating-react-deployments\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\nwrapping-up\nfurther-reading\ngiving-back\nchangelog\nstaying-up-to-date\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\napi-gateway-domains-across-services\ncognito-as-a-serverless-service\ndeploying-multiple-services-in-serverless\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\ngetting-production-ready\ninitialize-the-backend-repo\norganize-the-backend-repo\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\nuse-environment-variables-in-lambda-functions\ndeploy-your-serverless-infrastructure\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env-yml\ntest-the-billing-api\nunit-tests-in-serverless\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nmonitoring-deployments-in-seed\ninitialize-the-frontend-repo\nmanage-environments-in-create-react-app\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nautomating-react-deployments\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\nwrapping-up\nfurther-reading\ngiving-back\nchangelog\nstaying-up-to-date\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\napi-gateway-domains-across-services\ncognito-as-a-serverless-service\ndeploying-multiple-services-in-serverless\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\nfacebook-login-with-cognito-using-aws-amplify\n\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"25f842bc30ec4b525b2899f284dc47abb1298d62","subject":"Do a git pull before vagrant halt because ops think we should halt Vagrant only with the latest version","message":"Do a git pull before vagrant halt because ops think we should halt Vagrant only with the latest version\n","repos":"smathson\/dotfiles","old_file":"applescripts\/halt_vagrant.applescript","new_file":"applescripts\/halt_vagrant.applescript","new_contents":"set close_vagrant to \"z puppet; git pull; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","old_contents":"set close_vagrant to \"z puppet; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9c96e14df2855729863394e11015cfafaa014380","subject":"replicate - typo in comments","message":"replicate - typo in comments\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"0dedf537531d3c18e2981e596f5d9b3691a9eb7f","subject":"remove EndOfText characters from XML.","message":"remove EndOfText characters from XML.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.2, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a5016a549ebee96b2affc59ce0a362ac09512a97","subject":"First commit","message":"First commit\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"Mute Spotify Ads.scpt","new_file":"Mute Spotify Ads.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"306336163d8d8ea8ba1bf6888474a13f80ef8153","subject":"Full path for curl","message":"Full path for curl\n\nSpecified full path for curl","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"77df42d21ff843dc724b9396b7ee022eeb049091","subject":"- from Br'fin, patch #642397: Applescript:Fix to handle spaces in path This patch fixes bochs.applescript to handle a case where there are spaces in the current path.","message":"- from Br'fin, patch #642397: Applescript:Fix to handle spaces in path\n This patch fixes bochs.applescript to handle a case where there are\n spaces in the current path.\n","repos":"marmolejo\/bochs-zet,marmolejo\/bochs-zet,marmolejo\/bochs-zet,marmolejo\/bochs-zet,marmolejo\/bochs-zet","old_file":"build\/macosx\/bochs.applescript","new_file":"build\/macosx\/bochs.applescript","new_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\n\nset script_name to name of (info for (path to me))\nset script_path to POSIX path of (path to me)\n\n-- replace target string using delimiters\nset AppleScript's text item delimiters to the script_name\nset the text_item_list to every text item of the script_path\nset AppleScript's text item delimiters to \"\"\nset the script_path to the text_item_list as string\n\ntell application \"Terminal\"\n\tactivate\n\tdo script \"cd \\\"\" & script_path & \"\\\";\" & bochs_path\n\t-- Wait for Terminal to change the name first, then change it to ours\n\tdelay 1\n\tset AppleScript's text item delimiters to \"\/\"\n\tset the text_item_list to every text item of the script_path\n\tset AppleScript's text item delimiters to \"\"\n\tset next_to_last to ((count of text_item_list) - 1)\n\tset the folder_name to item next_to_last of text_item_list\n\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\nend tell\n","old_contents":"property bochs_path : \"bochs.app\/Contents\/MacOS\/bochs\"\n\nset script_name to name of (info for (path to me))\nset script_path to POSIX path of (path to me)\n\n-- replace target string using delimiters\nset AppleScript's text item delimiters to the script_name\nset the text_item_list to every text item of the script_path\nset AppleScript's text item delimiters to \"\"\nset the script_path to the text_item_list as string\n\ntell application \"Terminal\"\n\tactivate\n\tdo script \"cd \" & script_path & \";\" & bochs_path\n\t-- Wait for Terminal to change the name first, then change it to ours\n\tdelay 1\n\tset AppleScript's text item delimiters to \"\/\"\n\tset the text_item_list to every text item of the script_path\n\tset AppleScript's text item delimiters to \"\"\n\tset next_to_last to ((count of text_item_list) - 1)\n\tset the folder_name to item next_to_last of text_item_list\n\tset name of front window to \"Running bochs in ..\/\" & folder_name & \"\/\"\nend tell\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"51e58fbfc2ff15507aac4a89d2f318d41721815c","subject":"Updated Snak AppleScript to behave properly for 0.6","message":"Updated Snak AppleScript to behave properly for 0.6\n","repos":"morganestes\/morganestes-growl,Shalaco\/shalzers-growl,chashion\/growl,chashion\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,tectronics\/growl,xhruso00\/growl,nkhorman\/archive-growl,CarlosCD\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,tectronics\/growl,nkhorman\/archive-growl,timbck2\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,timbck2\/growl,morganestes\/morganestes-growl,chashion\/growl,ylian\/growl,nochkin\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,timbck2\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,timbck2\/growl,an0nym0u5\/growl,tectronics\/growl,chashion\/growl,nochkin\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,tectronics\/growl,nochkin\/growl,SalrJupiter\/growl,nochkin\/growl,timbck2\/growl,SalrJupiter\/growl,SalrJupiter\/growl,nagyistoce\/growl,ylian\/growl,ylian\/growl,nagyistoce\/growl,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nagyistoce\/growl,nagyistoce\/growl,nochkin\/growl,tectronics\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,nochkin\/growl,CarlosCD\/growl,xhruso00\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,nagyistoce\/growl,an0nym0u5\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,ylian\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,timbck2\/growl,chashion\/growl,xhruso00\/growl,an0nym0u5\/growl,nkhorman\/archive-growl","old_file":"Scripts\/Snak\/Growl.scpt","new_file":"Scripts\/Snak\/Growl.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0001\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000\t\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\f\u0000\r\r\u0000\f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\f\u0000\u0011\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\f\u0000\u0013\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0002\u0000\u000b\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0001\u0000\u0007\u0000\u0019\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0018\u0000\u0017\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0017\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nappl\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u001a\f\u0000\u001a\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0019\u0000\u0003\u0000\u001b\u0000\u001c\n\u0000\u0004\nanot\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001c\u0000\u0003\u0000\u001d\u0000\u001e\n\u0000\u0004\ndnot\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0006\u0000\u001e\u0000\u0003\u0000\u001f\n\u0000\u0004\niapp\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000 \f\u0000 \u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000!\u000f\u0000!\u0002\"\bnull\u0000\u0000\u0000\u0000\u0000a\u0000a;\u0012GrowlHelperApp.appL\u00007\u0010P@\u0000\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K p\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000a3\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000a8v\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v\u000f\u0000\u0000\u0000\u0001\u0000\u0014\u0000a3\u0000a2\u0000a1\u0000\u0005\u0000\u0000\t\u0000\u0002\u0000TWideBoy:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00002\u0000\u0002\u00003\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\f\u0000;\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000:\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\f\u0000>\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\f\u0000A\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\f\u0000F\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\f\u0000I\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000K\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000P\u0000Q\r\u0000P\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000O\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u0000V\u0001\u0000\u0000\f\u0000V\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000Y\u0000Z\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000_\u0001\u0000\u0000\f\u0000_\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000b\u0001\u0000\u0000\f\u0000b\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000e\u0001\u0000\u0000\f\u0000e\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000n\u0001\u0000\u0000\f\u0000n\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000m\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000s\u0000t\r\u0000s\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000u\u0000v\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000x\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000y\n\u0000\u0004\nprcs\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000v\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000z\u0000{\r\u0000z\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000r\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000|\u000f\u0000|\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\n\u001c\nFinder.app\u0380\u00000L\u00007\u0010\u03b0\u0000\u0000\u0000\u0000\u0000p\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\n\u001c\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00002\u001d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\n\u001c\u0000\u0000\n\u0014\u0000\u0000\n\u0013\u0000\u0002\u0000.WideBoy:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000p\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000\n\u0000\u0004\nCONN\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000`ba\u0004SnakQP\u00000L\u00007\u0010\u0540\u0000\u0000\u0000Z\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(K \u0560\u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000`ba\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`b\u06fatM\u0000\u0002t\u0002\u0004\u0013\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tSnak 4.13\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tM\u0000\u0000\u0000\u0001\u0000\u0010\u0000`ba\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000,WideBoy:Users:diggory:Desktop:Snak 4.13:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000$Users\/diggory\/Desktop\/Snak 4.13\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u00003\u00003\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00003\u00006\u0000\r\u0000\u0000\u0002>\u0001\u0000\u00003\u00006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000{\n{\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000t\u0000\u0001t\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000s\u0000\u0001s\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000rq\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000p\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000n\nn\u0000\b\u000bboovtrue\u0001p\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0000\u0000\u0000mlk\u000bm\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002l\u0000\u0000\u0002k\u0000\u0000\r\u0001\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003j\r\u0001\u0003\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0000\u0000ih\u0001\u0006\ni\u0000\u0018.notifygrnull\u0000\u0000null\u0001h\u0000\u0000\u0006\u0001\u0006\u0000\u0003g\u0001\u0007\u0001\b\ng\u0000\u0004\ntitl\r\u0001\u0007\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\tf\r\u0001\t\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\f\u0001\u000e\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006target\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\b\u0000\u0003c\u0001\u000f\u0001\u0010\nc\u0000\u0004\ndesc\r\u0001\u000f\u0000\u0002l\u0000\u0005\u0000\u0000\u0001\u0011b\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthestring\u0000\u0000\u0001b\u0000\u0000\u0006\u0001\u0010\u0000\u0003`\u0001\u0012\u0001\u0013\n`\u0000\u0004\nappl\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0014\f\u0001\u0014\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001\u0013\u0000\u0003_\u0001\u0015^\n_\u0000\u0004\nname\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0016\f\u0001\u0016\u0000\u0014\u0000\u000ePublic Message\u0000\u0002\u0000\u0000\u0006^\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0000!\u0002j\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0017]\r\u0001\u0017\u0000\u0002l\u0000\u0002\u0000\u0000\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0002\u0000\u0000ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001aX\r\u0001\u001a\u0000\u0002l\u0000\u0002\u0000\u0000WV\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002X\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002l\u0000\u0002\u0000\u0000UT\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001dS\r\u0001\u001d\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u001e\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000R\nR\u0000\b\u000bboovfals\u0002S\u0000\u0000\u0002\u0000'\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000QP\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000O\u0001#\u0001O\u0000\u0000\f\u0001#\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001&\u0001'\r\u0001&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000N\u0001(M\u000bN\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0001(\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u00010\u0000\u0002\u00011H\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0002H\u0000\u0000\u0002M\u0000\u0000\r\u0001'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\u00012\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000FE\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000D\u00017\u0001D\u0000\u0000\f\u00017\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u00016\u0000\u0002\u00018\u00019\r\u00018\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001<\u0001=\r\u0001<\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001>\u0001?\r\u0001>\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001@\u0001A\r\u0001@\u0000\u00011\u0000\u0000\u0000\b\u0000\nC\nC\u0000\u0004\npnam\r\u0001A\u0000\u00024\u0000\u0001\u0000\u0004\u0000\bB\u0001B\nB\u0000\u0004\nprcs\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007A\u0003A\u0000\u0001\r\u0001?\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001C\u0001D\r\u0001C\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e@\n@\u0000\u0004\npisf\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011?\n?\u0000\b\u000bboovtrue\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000|\u0002\u00019\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017=<\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000G\u0001I\u0001J;:\r\u0001I\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001K\u0001L\r\u0001K\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001M9\r\u0001M\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001N\u0001O\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u00188\u000b8\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001O\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001P\f\u0001P\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u00019\u0000\u0000\r\u0001L\u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001Q7\r\u0001Q\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001R\u0001S\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e6\u000b6\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f5\n5\u0000\b\u000bboovfals\u00017\u0000\u0000\r\u0001J\u0000\u0001k\u0000\u0000\u0000%\u0000C\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002n\u0000\u0001\u0000%\u0000*\u0001W\u0001X\r\u0001W\u0000\u0003I\u0000\u0000\u0000&\u0000*432\u000b4\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u00023\u0000\u0000\u00022\u0000\u0000\r\u0001X\u0000\u0000f\u0000\u0000\u0000%\u0000&\u0002\u0001V\u0000\u0002\u0001Y1\r\u0001Y\u0000\u0002O\u0000\u0001\u0000+\u0000C\u0001Z\u0001[\r\u0001Z\u0000\u0003I\u0000\u0002\u0000\/\u0000B0\/\u0001\\\n0\u0000\u0018.notifygrnull\u0000\u0000null\u0001\/\u0000\u0000\u0006\u0001\\\u0000\u0003.\u0001]\u0001^\n.\u0000\u0004\ntitl\r\u0001]\u0000\u0002l\u0000\u0005\u00001\u00006\u0001_-\r\u0001_\u0000\u0002b\u0000\u0000\u00001\u00006\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u00001\u00004\u0001b\u0001c\r\u0001b\u0000\u0001o\u0000\u0000\u00001\u00002,\u000b,\u0000\n0\u0000\u0006source\u0000\u0000\r\u0001c\u0000\u0001m\u0000\u0000\u00002\u00003\u0001d\f\u0001d\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0001a\u0000\u0001o\u0000\u0000\u00004\u00005+\u000b+\u0000\n0\u0000\u0006target\u0000\u0000\u0001-\u0000\u0000\u0006\u0001^\u0000\u0003*\u0001e\u0001f\n*\u0000\u0004\ndesc\r\u0001e\u0000\u0002l\u0000\u0005\u00007\u00008\u0001g)\r\u0001g\u0000\u0001o\u0000\u0000\u00007\u00008(\u000b(\u0000\r0\u0000\tthestring\u0000\u0000\u0001)\u0000\u0000\u0006\u0001f\u0000\u0003'\u0001h\u0001i\n'\u0000\u0004\nappl\r\u0001h\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001j\f\u0001j\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0006\u0001i\u0000\u0003&\u0001k%\n&\u0000\u0004\nname\r\u0001k\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001l\f\u0001l\u0000\u0015\u0000\u000fPrivate Message\u0000\u0002\u0000\u0000\u0006%\u0000\u0000\r\u0001[\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000!\u00021\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001H\u0000\u0002\u0001m$\r\u0001m\u0000\u0002l\u0000\u0002\u0000H\u0000H#\"\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002$\u0000\u0000\u0002\u0001%\u0000\u0002\u0001n!\r\u0001n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000 \u001f\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002!\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001e\u0001o\u0001p\u0001q\u0001r\u0001\u001e\u0000\u0000\u0010\u0001o\u0000\u0003\u001d\u001c\u001b\u000b\u001d\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u000b\u001c\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b\u001b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0001p\u0000\u0007\u0010\u001a\u0000\b\u0019\u0018\u0001s\u0001t\u0017\u000b\u001a\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\u0002\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0010\u0001s\u0000\u0001\u0016\u000b\u0016\u0000\u00140\u0000\ballnotes\u0000\ballNotes\u0010\u0001t\u0000\u000b\u0000\u0011\u0000\u0013\u0000!\u0015\u0000\u001a\u0014\u0013\u0012\u0000 \u0011\u0010\n\u0015\u0000\u0004\nappl\n\u0014\u0000\u0004\nanot\n\u0013\u0000\u0004\ndnot\n\u0012\u0000\u0004\niapp\u0003\u0011\u0000\b\n\u0010\u0000\u0018.registernull\u0000\u0000null\u0011\u0017\u0000\u001alvEO\u0012\u0000\u000f*\f\u0000\nU\u000f\u000e\u0001q\u0000\u0007\u0010\u000f\u0000)\u000e\r\u0001u\u0001v\f\u000b\u000f\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e\u000e\u0000\u0002\u0004\u000b\u0001w\u0003\u000b\u0000\u0005\u000e\u0001w\u0000\u0005\u0000\n\t\b\u0007\u0006\u000b\n\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\t\u0000\n0\u0000\u0006source\u0000\u0000\u000b\b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0007\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0006\u0000\r0\u0000\tthestring\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001u\u0000\f\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0005\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0004\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0003\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0002\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0001\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001v\u0000\u0019\u0000|\u0001x\u0000\u0000\u0000!\u0001\u000e\u0001\u0014\u0001\u0016\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\u000e\u0001x\u0000\u0000\u0013\n\u0000\u0004\npisf\n\u0000\u0004\nCONN\n\u0000\u0004\nNICK\n\u0000\u0004\nbool\n\u0000\u0004\nleng\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\f\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u00001)j+\u0000\u000eO\u0012\u0000#*a\u0000\u0010a\u0000\u0011%%a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017\f\u0000\u0018UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u0001r\u0000\u0007\u0010\u0001'\u0001y\u0001z\u000b\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0000\u0002\u0004\u0001{\u0003\u0000\u0005\u000e\u0001{\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0010\u0001y\u0000\u0007\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001z\u0000\u0012\u0000|\u0001x\u0001P\u0000!\u0001d\u0001j\u0001l\n\u0000\u0004\nprcs\n\u0000\u0004\npnam\n\u0000\u0004\npisf\n\u0000\u0004\nbool\u000b\u0000\u001e0\u0000\rregistergrowl\u0000\rregisterGrowl\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\nappl\n\u0000\u0004\nname\u0003\u0000\b\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000J\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000#)j+\u0000\u0007O\u0012\u0000\u0015*%%a\u0000\u0010\f\u0000\u0011UY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000\f\u0000\u001a\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\f\u0000\u001d\u00004\u0000.########\tEdit these values to suit your wishes\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000 \u0001\u0000\u0000\f\u0000 \u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\f\u0000%\u0000:\u00004 set ChannelsToMonitor to {\"#example1\", \"#example2\"}\u0000\u0002\u0000\u0000\u0002\u0000$\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000(\u0001\u0000\u0000\f\u0000(\u0000\/\u0000) set keywords to {\"keyword1\", \"keyword2\"}\u0000\u0002\u0000\u0000\u0002\u0000'\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000+\u0000,\r\u0000+\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u0002\u0000*\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000\u0005\u0000\t\u0000\/\u00000\r\u0000\/\u0000\u0001J\u0000\u0000\u0000\u0005\u0000\u0007\u0002\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0002\u0000.\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002l\u0000\u0001\u0000\n\u0000\n\u00005\u0001\u0000\u0000\f\u00005\u0000S\u0000M Set to false to popup notifications even when snak is the active application\u0000\u0002\u0000\u0000\u0002\u00004\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u00008\u00009\r\u00008\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0002\u00007\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000>\u0001\u0000\u0000\f\u0000>\u0000V\u0000P################################################################################\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000A\u0001\u0000\u0000\f\u0000A\u0000#\u0000\u001d######## \tEnd Editable Region\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000D\u0001\u0000\u0000\f\u0000D\u0000W\u0000Q################################################################################\t\u0000\u0002\u0000\u0000\u0002\u0000C\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002l\u0000\u0001\u0000\u000e\u0000\u000e\u0000M\u0001\u0000\u0000\f\u0000M\u0000)\u0000# Get the name of the topmost window\u0000\u0002\u0000\u0000\u0002\u0000L\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002O\u0000\u0000\u0000\u000e\u0000$\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u0000\u0012\u0000#\u0000R\u0000S\r\u0000R\u0000\u00026\u0001\u0000\u0000\u0012\u0000!\u0000T\u0000U\r\u0000T\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0018\u0000V\u0000W\r\u0000V\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npnam\r\u0000W\u0000\u00024\u0000\u0001\u0000\u0012\u0000\u0016\u0000X\n\u0000\u0004\nprcs\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000U\u0000\u0002=\u0000\u0003\u0000\u0019\u0000 \u0000Y\u0000Z\r\u0000Y\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npisf\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\b\u000bboovtrue\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000[\u000f\u0000[\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u000b%\nFinder.app\u0620\u00000\b\u00007\u0010\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001b\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u0000\u000b%\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004$Je\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u000b%\u0000\u0000\u000b\u001d\u0000\u0000\u000b\u001c\u0000\u0002\u0000.Panther:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0002l\u0000\u0002\u0000%\u0000%\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002l\u0000\u0001\u0000%\u0000%\u0000b\u0001\u0000\u0000\f\u0000b\u0000$\u0000\u001e Get your current irc nickname\u0000\u0002\u0000\u0000\u0002\u0000a\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002O\u0000\u0000\u0000%\u00002\u0000e\u0000f\r\u0000e\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000g\u0000h\r\u0000g\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\nNICK\r\u0000j\u0000\u00024\u0000\u0000\u0000)\u0000-\u0000k\n\u0000\u0004\nCONN\r\u0000k\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00070\u0000\u0003con\u0000\u0000\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\r\u0000f\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000l\u000f\u0000l\u0001\bnull\u0000\u0000\u0000\u0000\u0000A\u07f8\u0000\u000b&\u0004Snakp\r\u0620\u00000\b\u00007\u0010\u0000r,\u0000(\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000SNpa\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001*\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u000b&\u0004Snak\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000btM\u0000\/\u0000\r\u0002?\u0001\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004Snak\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000tm\u0000\u0000\u0000\u0001\u0000\b\u0000\u000b&\u0000\u0000\u0004g\u0000\u0002\u0000\u001ePanther:Applications:Snak:Snak\u0000\u000e\u0000\n\u0000\u0004\u0000S\u0000n\u0000a\u0000k\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000\u0016Applications\/Snak\/Snak\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000d\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002l\u0000\u0001\u00003\u00003\u0000s\u0001\u0000\u0000\f\u0000s\u0000N\u0000H First, make sure we are either focused on another app, or we want to be\u0000\u0002\u0000\u0000\u0002\u0000r\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0001\u00003\u00003\u0000v\u0001\u0000\u0000\f\u0000v\u0000'\u0000! notified even if Snak is on top\t\u0000\u0002\u0000\u0000\u0002\u0000u\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0004Z\u0000\u0000\u00003\u0000\u0000y\u0000z\r\u0000y\u0000\u0002G\u0000\u0000\u00003\u0000>\u0000{\u0000|\r\u0000{\u0000\u0002l\u0000\u0005\u00003\u00006\u0000}\r\u0000}\u0000\u0002>\u0001\u0000\u00003\u00006\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\f\u0000\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000|\u0000\u0002l\u0000\u0005\u00009\u0000<\u0000\r\u0000\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\n\u0000\b\u000bboovfals\u0001\u0000\u0000\r\u0000z\u0000\u0001k\u0000\u0000\u0000A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000A\u0000A\u0000\u0001\u0000\u0000\f\u0000\u0000a\u0000[ Make sure the message's target is in ChannelsToMonitor, or that ChannelsToMonitor is empty\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000A\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000A\u0000N\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000A\u0000N\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0001\u0000A\u0000D\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\n0\u0000\u0006target\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000G\u0000L\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000Q\u0000Q\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000H\u0000B if keywords is empty, we're successful and we display the message\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000Q\u0000Q\u0000\u0001\u0000\u0000\f\u0000\u0000N\u0000H otherwise, only set success if the message contains one of our keywords\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000Q\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000Q\u0000V\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000Q\u0000V\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000R\u0000T\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Y\u0000\\\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000b\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000`\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000c\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000s\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000s\u0000v\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000s\u0000v\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000y\u0000|\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\r\u0000\u0000\u0002l\u0000\u0005\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bkeywords\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005 if the message contains our nick, we will display it\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthestring\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mynick\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000m\u0000g If the message is coming from a valid channel, and we got success in matching either keywords or nick,\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0018\u0000\u0012 display an alert\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003~\u0000\u0000\n~\u0000\u0004\ntitl\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\n0\u0000\u0006source\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002: \u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\n0\u0000\u0006target\u0000\u0000\u0006\u0000\u0000\u0003{\u0000\u0000\n{\u0000\u0004\ndesc\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000z\u000bz\u0000\r0\u0000\tthestring\u0000\u0000\u0006\u0000\u0000\u0003y\u0000x\ny\u0000\u0004\niapp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017\/Applications\/Snak\/Snak\u0000\u0002\u0000\u0000\u0006x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0002L\bnull\u0000\u0000\u0000\u0000\u0000a\u0000\u0013\u0012GrowlHelperApp.app\b\u00007\u0010\u0000\u0000\u0000@\u0000\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(\u0007 \u0000\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007Panther\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00004\u0007jH+\u0000\u0000\u0000\u0013B\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013D\u00da\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u00004i\u0000\u0000\u0000\u0011\u0000\b\u0000\u00004\u001a\u0000\u0000\u0000\u0001\u0000\u001c\u0000\u0013B\u0000\u0013A\u0000\u0013@\u0000\u00129\u0000\u0001mQ\u0000\u0001mP\u0000\u0000]\u0000\u0002\u0000bPanther:Users:justinb:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000P\u0000a\u0000n\u0000t\u0000h\u0000e\u0000r\u0000\u0012\u0000ZUsers\/justinb\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000vu\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002w\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000ts\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000qp\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002r\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000on\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000m\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000l\nl\u0000\b\u000bboovfals\u0002m\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000kj\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000i\u0000\u0001i\u0000\u0000\f\u0000\u0000(\u0000\" Log all private messages to growl\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000h\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000g\u0000f\u000bg\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u00070\u0000\u0003con\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\n0\u0000\u0006source\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000c\u000bc\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\n0\u0000\u0006target\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005a\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\r0\u0000\tthestring\u0000\u0000\u0002a\u0000\u0000\u0002f\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000?\u0001\u0006\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000_^\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000]\u0001\u000b\u0001]\u0000\u0000\f\u0001\u000b\u0000.\u0000( Get the name of the topmost application\u0000\u0002\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0016\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u00011\u0000\u0000\u0000\b\u0000\n\\\n\\\u0000\u0004\npnam\r\u0001\u0015\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b[\u0001\u0016\n[\u0000\u0004\nprcs\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007Z\u0003Z\u0000\u0001\r\u0001\u0013\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u00011\u0000\u0000\u0000\f\u0000\u000eY\nY\u0000\u0004\npisf\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011X\nX\u0000\b\u000bboovtrue\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000[\u0002\u0001\r\u0000\u0002\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0002l\u0000\u0002\u0000\u0017\u0000\u0017VU\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001\u001a\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000=\u0001\u001d\u0001\u001eTS\r\u0001\u001d\u0000\u0002G\u0000\u0000\u0000\u0017\u0000\"\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002l\u0000\u0005\u0000\u0017\u0000\u001a\u0001!R\r\u0001!\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\u0001\"\u0001#\r\u0001\"\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018Q\u000bQ\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\r\u0001#\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001$\f\u0001$\u0000\n\u0000\u0004Snak\u0000\u0002\u0000\u0000\u0001R\u0000\u0000\r\u0001 \u0000\u0002l\u0000\u0005\u0000\u001d\u0000 \u0001%P\r\u0001%\u0000\u0002=\u0000\u0003\u0000\u001d\u0000 \u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001eO\u000bO\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\r\u0001'\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\nN\u0000\b\u000bboovfals\u0001P\u0000\u0000\r\u0001\u001e\u0000\u0002O\u0000\u0000\u0000%\u00009\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0000)\u00008ML\u0001*\nM\u0000\u0018.notifygrnull\u0000\u0000null\u0001L\u0000\u0000\u0006\u0001*\u0000\u0003K\u0001+\u0001,\nK\u0000\u0004\ntitl\r\u0001+\u0000\u0002b\u0000\u0000\u0000+\u00000\u0001-\u0001.\r\u0001-\u0000\u0002b\u0000\u0000\u0000+\u0000.\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0000+\u0000,J\u000bJ\u0000\n0\u0000\u0006target\u0000\u0000\r\u00010\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00011\f\u00011\u0000\u0007\u0000\u0001:\u0000\u0002\u0000\u0000\r\u0001.\u0000\u0001o\u0000\u0000\u0000.\u0000\/I\u000bI\u0000\n0\u0000\u0006source\u0000\u0000\u0006\u0001,\u0000\u0003H\u00012\u00013\nH\u0000\u0004\ndesc\r\u00012\u0000\u0001o\u0000\u0000\u00001\u00002G\u000bG\u0000\r0\u0000\tthestring\u0000\u0000\u0006\u00013\u0000\u0003F\u00014E\nF\u0000\u0004\niapp\r\u00014\u0000\u0001m\u0000\u0000\u00003\u00004\u00015\f\u00015\u0000\u000e\u0000\bSnak.app\u0000\u0002\u0000\u0000\u0006E\u0000\u0000\r\u0001)\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u00016D\r\u00016\u0000\u0002l\u0000\u0002\u0000>\u0000>CB\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002D\u0000\u0000\u0002h\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004A\u00017\u00018\u00019\u0001A\u0000\u0000\u0010\u00017\u0000\u0002@?\u000b@\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000b?\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u00018\u0000\u0007\u0010>\u0000\b=<\u0001:\u0001;;\u000b>\u0000\n0\u0000\u0006pubmsg\u0000\u0000\u000e=\u0000\u0002\u0004:\u0001<\u0003:\u0000\u0005\u000e\u0001<\u0000\u0005\u000098765\u000b9\u0000\u00070\u0000\u0003con\u0000\u0000\u000b8\u0000\n0\u0000\u0006source\u0000\u0000\u000b7\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b6\u0000\n0\u0000\u0006target\u0000\u0000\u000b5\u0000\r0\u0000\tthestring\u0000\u0000\u0002<\u0000\u0000\u0010\u0001:\u0000\f43210\/.-,+*)\u000b4\u0000\u00070\u0000\u0003con\u0000\u0000\u000b3\u0000\n0\u0000\u0006source\u0000\u0000\u000b2\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b1\u0000\n0\u0000\u0006target\u0000\u0000\u000b0\u0000\r0\u0000\tthestring\u0000\u0000\u000b\/\u0000&0\u0000\u0011channelstomonitor\u0000\u0011ChannelsToMonitor\u000b.\u0000\f0\u0000\bkeywords\u0000\u0000\u000b-\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u000b,\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b+\u0000\n0\u0000\u0006mynick\u0000\u0000\u000b*\u0000\u001c0\u0000\fkeywordmatch\u0000\fkeywordMatch\u000b)\u0000\u001a0\u0000\u000bthiskeyword\u0000\u000bthisKeyword\u0010\u0001;\u0000\u0016\u0000[('\u0001=&\u0000l%$\u0000#\"! \u001f\u0000\u001e\u0000\u001d\u001c\u0000\u001b\u001a\n(\u0000\u0004\nprcs\n'\u0000\u0004\npnam\u000e\u0001=\u0000\u0000\u0013\n&\u0000\u0004\npisf\n%\u0000\u0004\nCONN\n$\u0000\u0004\nNICK\n#\u0000\u0004\nbool\n\"\u0000\u0004\nleng\n!\u0000\u0004\nkocl\n \u0000\u0004\ncobj\n\u001f\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u001e\u0000\u0004\ntitl\n\u001d\u0000\u0004\ndesc\n\u001c\u0000\u0004\niapp\u0003\u001b\u0000\u0006\n\u001a\u0000\u0018.notifygrnull\u0000\u0000null\u0011;\u0000jvEOjvEOeEO\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0012\u0000\n*\/,EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\b\n\u0000\t,j\u0000&\u001d\u0000t,j\u0000\u001d\u0000\beEY\u00008fEO\u0017\u0000![l\f\u0000\rkh\u001b\u0000\u000b\b\u001d\u0000\beEY\u0000\u0003h[OYO\b\u001d\u0000\beEY\u0000\u0003hOPOe\u0000\u001d\u0000#\u0012\u0000\u001b*a\u0000\u0010%%a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014\f\u0000\u0015UY\u0000\u0003hOPY\u0000\u0003hOPY\u0000\u0003hOf\u000f\u000f\u000e\u00019\u0000\u0007\u0010\u0019\u0000\u0018\u0017\u0001>\u0001?\u0016\u000b\u0019\u0000\u000b0\u0000\u0007privmsg\u0000\u0000\u000e\u0018\u0000\u0002\u0004\u0015\u0001@\u0003\u0015\u0000\u0005\u000e\u0001@\u0000\u0005\u0000\u0014\u0013\u0012\u0011\u0010\u000b\u0014\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u0013\u0000\n0\u0000\u0006source\u0000\u0000\u000b\u0012\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\u0011\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u0010\u0000\r0\u0000\tthestring\u0000\u0000\u0002\u0017\u0000\u0000\u0010\u0001>\u0000\u0007\u000f\u000e\r\f\u000b\n\t\u000b\u000f\u0000\u00070\u0000\u0003con\u0000\u0000\u000b\u000e\u0000\n0\u0000\u0006source\u0000\u0000\u000b\r\u0000\u000e0\u0000\nsourcehost\u0000\u0000\u000b\f\u0000\n0\u0000\u0006target\u0000\u0000\u000b\u000b\u0000\r0\u0000\tthestring\u0000\u0000\u000b\n\u0000\"0\u0000\u000fnameofactiveapp\u0000\u000fNameOfActiveApp\u000b\t\u000000\u0000\u0016notifyinbackgroundonly\u0000\u0016NotifyInBackgroundOnly\u0010\u0001?\u0000\u000f\u0000[\b\u0007\u0001=\u0006\u0001$\u0005\u0000\u0004\u00011\u0003\u0002\u00015\u0001\u0000\n\b\u0000\u0004\nprcs\n\u0007\u0000\u0004\npnam\n\u0006\u0000\u0004\npisf\n\u0005\u0000\u0004\nbool\n\u0004\u0000\u0004\ntitl\n\u0003\u0000\u0004\ndesc\n\u0002\u0000\u0004\niapp\u0003\u0001\u0000\u0006\n\u0000\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0016\u0000@\u0012\u0000\u0013*k\/,[,\\Ze81EUO\u0001\n\u0000\u0007f\u0000&\u001d\u0000\u0019\u0012\u0000\u0011*%%\f\u0000\u000eUY\u0000\u0003hOP\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9ed54eed707ab732491b75be4fe330dc5435cbb2","subject":"Update wake-up script to switch to my remote speakers","message":"Update wake-up script to switch to my remote speakers\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/wake-up.applescript","new_file":"macosx\/scripts\/wake-up.applescript","new_contents":"-- Original script from Murphy Mac at http:\/\/murphymac.com\/itunes-alarm-clock\/\n-- Start iTunes from cron and slowly bring volume up\ntell application \"System Events\"\n tell process \"iTunes\"\n -- Switch to the speakers in my bedroom\n set frontmost to true\n click button 15 of window 1 -- Remote Speakers Menu\n key code 115 -- Home Key\n key code 125 -- Down Arrow\n key code 125 -- Down Arrow\n key code 36 -- Return Key\n end tell\nend tell\n\ntell application \"iTunes\"\n set volume 1\n set sound volume to 1\n play playlist \"Wake-Up\"\n set x to 0\n\n repeat until x >= 100\n set x to x + 10\n if x <= 100 then set sound volume to x\n delay 30\n end repeat\nend tell\n","old_contents":"-- Original script from Murphy Mac at http:\/\/murphymac.com\/itunes-alarm-clock\/\n-- Start iTunes from cron and slowly bring volume up\ntell application \"iTunes\"\n set volume 1\n set sound volume to 1\n play playlist \"Wake-Up\"\n set x to 0\n\n repeat until x >= 100\n set x to x + 10\n if x <= 100 then set sound volume to x\n delay 30\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"004b3f39b91002d34a4eebbc020be335550dd6ca","subject":"Obsidian","message":"Obsidian\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000n\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000n\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000o\u0000\u0000~}\r\u0000\u0000\u0003I\u0000\u0000\u0000o\u0000|\u0000{\u000b|\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000vz\u0003z\u0000\u000f\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000wx\u0003x\u0000$\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001J\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|v\u0003v\u0002\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000}t\u0003t\u0003\u0002u\u0000\u0000\u0002w\u0000\u0000\u0002{\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001e\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000T\u0000e\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0006\"\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\tUT\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\nR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011P\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0014NM\r\u0001\u0014\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0015K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0001\u0018\u0000\u0001\u0001\u0019\u0011\u0001\u0019\u0000\u0010\u0000O\u0000b\u0000s\u0000i\u0000d\u0000i\u0000a\u0000n\u0002\u0001\u0017\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001cI\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002I\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001fGF\r\u0001\u001f\u0000\u0003I\u0000\u0000\u0000\u0000E\u0001 D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001&\u0000\u0002\u0001'B\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002B\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u001e\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*@?\r\u0001*\u0000\u0003I\u0000\u0000\u0000\u0000>\u0001+=\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u001c\u0000P\u0000i\u0000x\u0000e\u0000l\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000P\u0000r\u0000o\u0002\u0001-\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00011\u0000\u0002\u00012;\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001)\u0000\u0002\u00013\u00014\r\u00013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001598\r\u00015\u0000\u0003I\u0000\u0000\u0000\u00007\u000166\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u00018\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00024\u0000\u0000\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00014\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0000\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u00000\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H-\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002-\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0001K+*\r\u0001K\u0000\u0003I\u0000\u0000\u0000\u0000)\u0001L(\u000b)\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0001m\u0000\u0000\u0000\u0000\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001N\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001R\u0000\u0002\u0001S&\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002&\u0000\u0000\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001J\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\n\u0001V$#\r\u0001V\u0000\u0003I\u0000\u0000\u0001\u0000\u0001\n\"\u0001W!\u000b\"\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001Y\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005 \u000b \u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001]\u0000\u0002\u0001^\u001f\r\u0001^\u0000\u0001o\u0000\u0000\u0001\u0005\u0001\u0006\u001e\u000b\u001e\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001f\u0000\u0000\u0002!\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0001U\u0000\u0002\u0001_\u0001`\r\u0001_\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u0018\u0001a\u001d\u001c\r\u0001a\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0018\u001b\u0001b\u001a\u000b\u001b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001b\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0001e\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001d\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\u0019\u000b\u0019\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001h\u0000\u0002\u0001i\u0018\r\u0001i\u0000\u0001J\u0000\u0000\u0001\u0010\u0001\u0014\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0011\u0017\u0003\u0017\u0006\"\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0011\u0001\u0012\u0015\u0003\u0015\u0003\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0002\u001a\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001`\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0003l\u0000\u0002\u0001\u0019\u0001#\u0001p\u0014\u0013\r\u0001p\u0000\u0003I\u0000\u0000\u0001\u0019\u0001#\u0012\u0001q\u0011\u000b\u0012\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001s\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u0010\u000b\u0010\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001w\u0000\u0002\u0001x\u000f\r\u0001x\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\u001f\u000e\u000b\u000e\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u000f\u0000\u0000\u0002\u0011\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0001o\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0002\u0001$\u0001<\u0001{\r\f\r\u0001{\u0000\u0003I\u0000\u0000\u0001$\u0001<\u000b\u0001|\n\u000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001|\u0000\u0002\u0001}\u0001~\r\u0001}\u0000\u0001m\u0000\u0000\u0001%\u0001(\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001~\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001(\u00010\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+\t\u0003\t\u0000\u000f\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0007\u0003\u0007\u0003]\u0002\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0006\r\u0001\u0000\u0001J\u0000\u0000\u00010\u00018\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\u0005\u0003\u0005\u0003R\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0001m\u0000\u0000\u00013\u00016\u0003\u0003\u0003\u00024\u0002\u0004\u0000\u0000\u0002\u0006\u0000\u0000\u0002\n\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001=\u0001Q\u0001\u0002\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001=\u0001Q\u0000\u0001\u000b\u0000\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001>\u0001A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001A\u0001G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0003\u0000\u000f\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001D\u0001E\u0003\u0000$\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001J\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001J\u0001K\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001R\u0001_\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001R\u0001_\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001V\u0001W\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001W\u0001[\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001W\u0001X\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001X\u0001Y\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001_\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0012\u0001\u0002\u0001\u0000\u0002\u0001\u001d\u0001\u0002\u0001\u0000\u0002\u0001(\u0001\u0002\u0001\u0000\u0002\u00013\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001I\u0001\u0002\u0001\u0000\u0002\u0001T\u0001\u0002\u0001\u0000\u0002\u0001_\u0001\u0002\u0001\u0000\u0002\u0001n\u0001\u0002\u0001\u0000\u0002\u0001y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000+\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\r\u0001\u0018\u0001#\u0001.\u00019\u0001D\u0001O\u0001Z\u0001e\u0001t\u0001\u0001\u0001\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001`lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#lvm+\u0000\u000bO*a\u0000$m+\u0000\u000bO*a\u0000%a\u0000\u0015a\u0000&lva\u0000'a\u0000(lvm+\u0000\u000bO*a\u0000)a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000*lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000n\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000n\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000o\u0000\u0000~}\r\u0000\u0000\u0003I\u0000\u0000\u0000o\u0000|\u0000{\u000b|\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000vz\u0003z\u0000\u000f\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000wx\u0003x\u0000$\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001J\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|v\u0003v\u0002\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000}t\u0003t\u0003\u0002u\u0000\u0000\u0002w\u0000\u0000\u0002{\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001e\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000T\u0000e\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0006\"\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\tUT\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\nR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011P\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0014NM\r\u0001\u0014\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0015K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0001\u0018\u0000\u0001\u0001\u0019\u0011\u0001\u0019\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0017\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001cI\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002I\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001fGF\r\u0001\u001f\u0000\u0003I\u0000\u0000\u0000\u0000E\u0001 D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\u001c\u0000P\u0000i\u0000x\u0000e\u0000l\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000P\u0000r\u0000o\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001&\u0000\u0002\u0001'B\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002B\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u001e\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*@?\r\u0001*\u0000\u0003I\u0000\u0000\u0000\u0000>\u0001+=\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001-\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00011\u0000\u0002\u00012;\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001)\u0000\u0002\u00013\u00014\r\u00013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001598\r\u00015\u0000\u0003I\u0000\u0000\u0000\u00007\u000166\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00018\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00024\u0000\u0000\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00014\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0000\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u00000\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H-\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002-\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0001K+*\r\u0001K\u0000\u0003I\u0000\u0000\u0000\u0000)\u0001L(\u000b)\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0001m\u0000\u0000\u0000\u0000\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001N\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001R\u0000\u0002\u0001S&\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002&\u0000\u0000\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001J\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\r\u0001V$#\r\u0001V\u0000\u0003I\u0000\u0000\u0001\u0000\u0001\r\"\u0001W!\u000b\"\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001Y\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005 \u000b \u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001]\u0000\u0002\u0001^\u001f\r\u0001^\u0000\u0001J\u0000\u0000\u0001\u0005\u0001\t\u0001_\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006\u001e\u0003\u001e\u0006\"\u0002\u0001a\u0000\u0002\u0001b\u001d\r\u0001b\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\u0007\u001c\u0003\u001c\u0003\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u0002!\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0001U\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0003l\u0000\u0002\u0001\u000e\u0001\u0018\u0001e\u001b\u001a\r\u0001e\u0000\u0003I\u0000\u0000\u0001\u000e\u0001\u0018\u0019\u0001f\u0018\u000b\u0019\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001h\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u0017\u000b\u0017\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0014\u0015\u000b\u0015\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001d\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0003l\u0000\u0002\u0001\u0019\u00011\u0001p\u0014\u0013\r\u0001p\u0000\u0003I\u0000\u0000\u0001\u0019\u00011\u0012\u0001q\u0011\u000b\u0012\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001s\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0001J\u0000\u0000\u0001\u001d\u0001%\u0001x\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0010\u0003\u0010\u0000\u000f\u0002\u0001z\u0000\u0002\u0001{\u000f\r\u0001{\u0000\u0001m\u0000\u0000\u0001 \u0001#\u000e\u0003\u000e\u0003]\u0002\u000f\u0000\u0000\u0002\u0001w\u0000\u0002\u0001|\r\r\u0001|\u0000\u0001J\u0000\u0000\u0001%\u0001-\u0001}\u0002\u0001}\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001m\u0000\u0000\u0001%\u0001(\f\u0003\f\u0003R\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+\n\u0003\n\u00024\u0002\u000b\u0000\u0000\u0002\r\u0000\u0000\u0002\u0011\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0001o\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00012\u0001F\u0001\t\b\r\u0001\u0000\u0003I\u0000\u0000\u00012\u0001F\u0007\u0001\u0006\u000b\u0007\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00013\u00016\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u00016\u0001<\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00016\u00019\u0005\u0003\u0005\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0001m\u0000\u0000\u00019\u0001:\u0003\u0003\u0003\u0000$\u0002\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\r\u0001\u0000\u0001J\u0000\u0000\u0001<\u0001B\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u0003\u0001\u0002\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001?\u0001@\u0003\u0003\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0006\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001G\u0001T\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001G\u0001T\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001K\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001K\u0001L\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001L\u0001P\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001M\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001M\u0001N\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001T\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0012\u0001\u0002\u0001\u0000\u0002\u0001\u001d\u0001\u0002\u0001\u0000\u0002\u0001(\u0001\u0002\u0001\u0000\u0002\u00013\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001I\u0001\u0002\u0001\u0000\u0002\u0001T\u0001\u0002\u0001\u0000\u0002\u0001c\u0001\u0002\u0001\u0000\u0002\u0001n\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000*\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\r\u0001\u0018\u0001#\u0001.\u00019\u0001D\u0001O\u0001Z\u0001i\u0001t\u0001\u0001\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001UlvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"lvm+\u0000\u000bO*a\u0000#m+\u0000\u000bO*a\u0000$a\u0000\u0015a\u0000%lva\u0000&a\u0000'lvm+\u0000\u000bO*a\u0000(a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000)lvm+\u0000\u000b\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3a0ef8efa35c3f916927b5e97a4e551587bd4262","subject":"Add support for cmd-c and cmd-l on results","message":"Add support for cmd-c and cmd-l on results\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"text\\\":{\"\n\tset json to json & \"\\\"copy\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"largetype\\\":\\\"\" & resultTitle & \"\\\"\"\n\tset json to json & \"},\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\n\tend tell\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n tell application \"Music\"\n\n set artistSongs to every track of playlist 2 whose artist is artistName\n set albumNames to {}\n\n repeat with theSong in artistSongs\n\n if (album of theSong) is not in albumNames then\n\n set albumNames to albumNames & (album of theSong)\n\n end if\n\n end repeat\n\n end tell\n\n return albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\n\tend tell\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n tell application \"Music\"\n\n set artistSongs to every track of playlist 2 whose artist is artistName\n set albumNames to {}\n\n repeat with theSong in artistSongs\n\n if (album of theSong) is not in albumNames then\n\n set albumNames to albumNames & (album of theSong)\n\n end if\n\n end repeat\n\n end tell\n\n return albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f5b38c447f87a5d631d7995c01670ef0d75724b6","subject":"Changed example text for name field to First Last","message":"Changed example text for name field to First Last\n","repos":"axelvillamil\/rendify","old_file":"rendify.scpt","new_file":"rendify.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0019\u0000\u0013 Render and Message\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 \u0000R\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000+\u0000% A rendering and notification service\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000J\u0000 \u0000A\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0017\u0000\u0011 by Axel Villamil\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\"\u0000 \u0000b\u0000y\u0000 \u0000A\u0000x\u0000e\u0000l\u0000 \u0000V\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Get users credentials\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000G\u0000e\u0000t\u0000 \u0000u\u0000s\u0000e\u0000r\u0000s\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000T\u0000N must be exact name, email and phone associated with your iMessage credentials\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000x\u0000a\u0000c\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000(\r\u0000(\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000)\u0000*\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u00002\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0006\u0000*\u0000\u0003\u0000-\n\u0000\u0004\ndtxt\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001c\u0000y\u0000o\u0000u\u0000r\u0000@\u0000e\u0000m\u0000a\u0000i\u0000l\u0000.\u0000c\u0000o\u0000m\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000'\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u00002\r\u00002\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u00003\u00004\r\u00003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u00005\u00006\r\u00005\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u00006\u0000\u00011\u0000\u0000\u0000\b\u0000\t\n\u0000\u0004\nrslt\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005email\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0015\u00009\r\u00009\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0015\u0000:\u0000;\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000D\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0006\u0000;\u0000\u0003\u0000>\n\u0000\u0004\ndtxt\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u001c\u0000+\u00001\u0000 \u00006\u00004\u00007\u0000 \u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u001b\u0000C\r\u0000C\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000D\u0000E\r\u0000D\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u0019\u0000F\u0000G\r\u0000F\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nttxt\r\u0000G\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nrslt\r\u0000E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u0000\u001c\u0000#\u0000J\r\u0000J\u0000\u0003I\u0000\u0002\u0000\u001c\u0000#\u0000K\u0000L\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000K\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000M\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000(\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000f\u0000u\u0000l\u0000l\u0000 \u0000n\u0000a\u0000m\u0000e\u0006\u0000L\u0000\u0003\u0000O\n\u0000\u0004\ndtxt\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0014\u0000F\u0000i\u0000r\u0000s\u0000t\u0000 \u0000L\u0000a\u0000s\u0000t\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000$\u0000)\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000$\u0000)\u0000U\u0000V\r\u0000U\u0000\u0002n\u0000\u0000\u0000$\u0000'\u0000W\u0000X\r\u0000W\u0000\u00011\u0000\u0000\u0000%\u0000'\n\u0000\u0004\nttxt\r\u0000X\u0000\u00011\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nrslt\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000]\u0000^\u0001\u0000\u0000\f\u0000]\u0000\u0016\u0000\u0010 Run rendify.jsx\u0000\u0002\u0000\u0000\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000 \u0000 \u0000R\u0000u\u0000n\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\\\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000*\u00004\u0000d\r\u0000d\u0000\u0002O\u0000\u0000\u0000*\u00004\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0003\u0000.\u00003\u0000g\u0000h\u0000i\r\u0000g\u0000\u0003l\u0000\u0001\u0000.\u00003\u0000j\u0000k\u0000l\r\u0000j\u0000\u0003I\u0000\u0001\u0000.\u00003\u0000m\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\r\u0000m\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\/\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000\/\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000\/\u0000A\u0000E\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\u0000\f\u0000k\u00005\u0000\/ Change depending on path of rendify.jsx script\u0000\u0002\u0000\u0000\u000e\u0000l\u0000\u0001\u0000p\u0011\u0000p\u0000^\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\f\u0000h\u00003\u0000- Change depending on version of After Effects\u0000\u0002\u0000\u0000\u000e\u0000i\u0000\u0001\u0000q\u0011\u0000q\u0000Z\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\r\u0000f\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000r\u000f\u0000r\u0002R\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FXTC\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0001\f\u001fAdobe After Effects CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\f\u04e0@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001dAdobe After Effects CC 2015.3\u0000\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u04e0x\u0000\u0000\u0000\u0001\u0000\b\u0001\f\u0000OI\u0000\u0002\u0000YMacintosh HD:Applications:\u0000Adobe After Effects CC 2015.3:\u0000Adobe After Effects CC 2015.app\u0000\u0000\u000e\u0000@\u0000\u001f\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000JApplications\/Adobe After Effects CC 2015.3\/Adobe After Effects CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000w\u0000x\u0001\u0000\u0000\f\u0000w\u0000&\u0000 Read string from jsx error file\u0000\u0002\u0000\u0000\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000@\u0000 \u0000R\u0000e\u0000a\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000j\u0000s\u0000x\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000v\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000{\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0003l\u0000\u0002\u00005\u0000<\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u00005\u0000<\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000X\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000x\u0000e\u0000l\u0000v\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000E\u0000r\u0000r\u0000o\u0000r\u0000.\u0000t\u0000x\u0000t\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000=\u0000H\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000=\u0000H\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000=\u0000D\u0000\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% Checks if jsx render queue is empty \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000s\u0000 \u0000i\u0000f\u0000 \u0000j\u0000s\u0000x\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000I\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000O\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000O\u0000^\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000O\u0000^\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000]\n\u0000\u0004\npnam\r\u0000\u0000\u0002n\u0000\u0000\u0000O\u0000Y\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000U\u0000Y\n\u0000\u0004\nicsv\r\u0000\u0000\u00024\u0000\u0000\u0000O\u0000U\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000E\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000g\u0000p\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000g\u0000l\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000j\u0000k\u000b\u0000\t0\u0000\u0005email\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000q\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000q\u0000x\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000q\u0000t\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00001\r\u0000\u0000\u0003I\u0000\u0002\u0000{\u0000\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\\\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000 =\u000e\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nicsv\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000L\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000fez!\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0000OI\fMessages.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u0018\u0374\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?\u0000\u0000\u0000\u0001\u0000\u0004\u0000OI\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Messages.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Messages.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00007\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000\u0000\u0002\u0000R\u0000\u0002\u0000\u0000\u0002\u0000b\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001f\u0000+\u0000.\u0000<\u0000?\u0000M\u0000P\u0000r\u0000n\u0000\u0000~}\u0000|{\u0000\u0000zy\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\u000b\u0000\t0\u0000\u0005email\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\n\u0000\u0004\npres\n~\u0000\u0004\nicsv\n}\u0000\u0004\npnam\u000b|\u0000\u00050\u0000\u0001a\u0000\u0000\u000b{\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\nz\u0000\u0004\nTO \ny\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\u0011\u0000l\f\u0000\u0003O,EOl\f\u0000\u0003O,EOl\f\u0000\u0003O,EO\u0012\u0000\u0007j\f\u0000\u000fUOa\u0000\u0010E`\u0000\u0011O_\u0000\u0011j\f\u0000\u0012E`\u0000\u0013Oa\u0000\u0014\u0012\u0000I*a\u0000\u0015\/a\u0000\u0016,a\u0000\u0017,EOa\u0000\u0018E`\u0000\u0019O_\u0000\u0019%E`\u0000\u001aO_\u0000\u0013a\u0000\u001b\b\u001d\u0000\u001ca\u0000\u001ca\u0000\u001d*a\u0000\u0016_\u0000\u001a\/a\u0000\u0015\/l\f\u0000\u001eY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0019\u0000\u0013 Render and Message\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 \u0000R\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000+\u0000% A rendering and notification service\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000J\u0000 \u0000A\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0017\u0000\u0011 by Axel Villamil\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\"\u0000 \u0000b\u0000y\u0000 \u0000A\u0000x\u0000e\u0000l\u0000 \u0000V\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Get users credentials\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000G\u0000e\u0000t\u0000 \u0000u\u0000s\u0000e\u0000r\u0000s\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000T\u0000N must be exact name, email and phone associated with your iMessage credentials\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000x\u0000a\u0000c\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000(\r\u0000(\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000)\u0000*\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u00002\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0006\u0000*\u0000\u0003\u0000-\n\u0000\u0004\ndtxt\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001c\u0000y\u0000o\u0000u\u0000r\u0000@\u0000e\u0000m\u0000a\u0000i\u0000l\u0000.\u0000c\u0000o\u0000m\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000'\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u00002\r\u00002\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u00003\u00004\r\u00003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u00005\u00006\r\u00005\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u00006\u0000\u00011\u0000\u0000\u0000\b\u0000\t\n\u0000\u0004\nrslt\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005email\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0015\u00009\r\u00009\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0015\u0000:\u0000;\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000.\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0006\u0000;\u0000\u0003\u0000>\n\u0000\u0004\ndtxt\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u001c\u0000+\u00001\u0000 \u00006\u00004\u00007\u0000 \u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u001b\u0000C\r\u0000C\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0000D\u0000E\r\u0000D\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u0019\u0000F\u0000G\r\u0000F\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nttxt\r\u0000G\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nrslt\r\u0000E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u0000\u001c\u0000#\u0000J\r\u0000J\u0000\u0003I\u0000\u0002\u0000\u001c\u0000#\u0000K\u0000L\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000K\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000M\u000e\u0000M\u0000\u0001\u0000N\u0011\u0000N\u0000(\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000f\u0000u\u0000l\u0000l\u0000 \u0000n\u0000a\u0000m\u0000e\u0006\u0000L\u0000\u0003\u0000O\n\u0000\u0004\ndtxt\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0016\u0000F\u0000r\u0000a\u0000n\u0000k\u0000 \u0000O\u0000c\u0000e\u0000a\u0000n\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000$\u0000)\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000$\u0000)\u0000U\u0000V\r\u0000U\u0000\u0002n\u0000\u0000\u0000$\u0000'\u0000W\u0000X\r\u0000W\u0000\u00011\u0000\u0000\u0000%\u0000'\n\u0000\u0004\nttxt\r\u0000X\u0000\u00011\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nrslt\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000]\u0000^\u0001\u0000\u0000\f\u0000]\u0000\u0016\u0000\u0010 Run rendify.jsx\u0000\u0002\u0000\u0000\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000 \u0000 \u0000R\u0000u\u0000n\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\\\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000*\u00004\u0000d\r\u0000d\u0000\u0002O\u0000\u0000\u0000*\u00004\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0003\u0000.\u00003\u0000g\u0000h\u0000i\r\u0000g\u0000\u0003l\u0000\u0001\u0000.\u00003\u0000j\u0000k\u0000l\r\u0000j\u0000\u0003I\u0000\u0001\u0000.\u00003\u0000m\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\r\u0000m\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\/\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000\/\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000\/\u0000A\u0000E\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\u0000\f\u0000k\u00005\u0000\/ Change depending on path of rendify.jsx script\u0000\u0002\u0000\u0000\u000e\u0000l\u0000\u0001\u0000p\u0011\u0000p\u0000^\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\f\u0000h\u00003\u0000- Change depending on version of After Effects\u0000\u0002\u0000\u0000\u000e\u0000i\u0000\u0001\u0000q\u0011\u0000q\u0000Z\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\r\u0000f\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000r\u000f\u0000r\u0002R\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FXTC\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0001\f\u001fAdobe After Effects CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\f\u04e0@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001dAdobe After Effects CC 2015.3\u0000\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u04e0x\u0000\u0000\u0000\u0001\u0000\b\u0001\f\u0000OI\u0000\u0002\u0000YMacintosh HD:Applications:\u0000Adobe After Effects CC 2015.3:\u0000Adobe After Effects CC 2015.app\u0000\u0000\u000e\u0000@\u0000\u001f\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000JApplications\/Adobe After Effects CC 2015.3\/Adobe After Effects CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000w\u0000x\u0001\u0000\u0000\f\u0000w\u0000&\u0000 Read string from jsx error file\u0000\u0002\u0000\u0000\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000@\u0000 \u0000R\u0000e\u0000a\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000j\u0000s\u0000x\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000v\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000{\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0003l\u0000\u0002\u00005\u0000<\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u00005\u0000<\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00008\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000X\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000x\u0000e\u0000l\u0000v\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000E\u0000r\u0000r\u0000o\u0000r\u0000.\u0000t\u0000x\u0000t\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000=\u0000H\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000=\u0000H\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000=\u0000D\u0000\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% Checks if jsx render queue is empty \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000s\u0000 \u0000i\u0000f\u0000 \u0000j\u0000s\u0000x\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000I\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000O\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000O\u0000^\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000O\u0000^\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000]\n\u0000\u0004\npnam\r\u0000\u0000\u0002n\u0000\u0000\u0000O\u0000Y\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000U\u0000Y\n\u0000\u0004\nicsv\r\u0000\u0000\u00024\u0000\u0000\u0000O\u0000U\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000E\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000g\u0000p\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000g\u0000l\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000j\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000j\u0000k\u000b\u0000\t0\u0000\u0005email\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000q\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000q\u0000x\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000q\u0000t\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00001\r\u0000\u0000\u0003I\u0000\u0002\u0000{\u0000\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\\\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000 =\u000e\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nicsv\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000L\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000fez!\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0000OI\fMessages.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u0018\u0374\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?\u0000\u0000\u0000\u0001\u0000\u0004\u0000OI\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Messages.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Messages.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00007\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000\u0000\u0002\u0000R\u0000\u0002\u0000\u0000\u0002\u0000b\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001f\u0000+\u0000.\u0000<\u0000?\u0000M\u0000P\u0000r\u0000n\u0000\u0000~}\u0000|{\u0000\u0000zy\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\u000b\u0000\t0\u0000\u0005email\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u000b\u0000\u00140\u0000\bfullname\u0000\bfullName\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\n\u0000\u0004\npres\n~\u0000\u0004\nicsv\n}\u0000\u0004\npnam\u000b|\u0000\u00050\u0000\u0001a\u0000\u0000\u000b{\u0000\u00180\u0000\nappleemail\u0000\nappleEmail\nz\u0000\u0004\nTO \ny\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\u0011\u0000l\f\u0000\u0003O,EOl\f\u0000\u0003O,EOl\f\u0000\u0003O,EO\u0012\u0000\u0007j\f\u0000\u000fUOa\u0000\u0010E`\u0000\u0011O_\u0000\u0011j\f\u0000\u0012E`\u0000\u0013Oa\u0000\u0014\u0012\u0000I*a\u0000\u0015\/a\u0000\u0016,a\u0000\u0017,EOa\u0000\u0018E`\u0000\u0019O_\u0000\u0019%E`\u0000\u001aO_\u0000\u0013a\u0000\u001b\b\u001d\u0000\u001ca\u0000\u001ca\u0000\u001d*a\u0000\u0016_\u0000\u001a\/a\u0000\u0015\/l\f\u0000\u001eY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"72024f377cf851c92c37c85135e15f8c417b6627","subject":"Huge overhaul, basically allowed direct opening of Jarvis from the applescript.","message":"Huge overhaul, basically allowed direct opening of Jarvis from the applescript.","repos":"gskielian\/Jarvis","old_file":"Jarvis.applescript","new_file":"Jarvis.applescript","new_contents":"(*Instead of using the spotlight app, this opens a new terminal directly*)\n\ntell application \"Terminal\"\n\tactivate\n\t\n\t(*names currentTab need to find a more elegant method*)\n\tset currentTab to do script \"\"\n\t\n\t(*sets up the script for dictation*)\n\ttell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\n\ttell application \"System Events\" to key code 123\n\t\n\t(*opens up speech-to-text*)\n\ttell application \"System Events\" to key code 63\n\ttell application \"System Events\" to key code 63\n\tdelay 4\n\t\n\t(*presses \"enter\" on DictationIM*)\n\ttell application \"System Events\" to tell process \"DictationIM\"\n\t\tclick button 1\n\tend tell\n\tdelay 1.2\n\t\n\t\n\t(*presses \"enter\" in the terminal*)\n\ttell application \"System Events\" to key code 36\n\t\n\t\n\t(*closes the terminal when process is completed*)\n\tset mainID to id of front window\n\tset toggle to 1\n\tdelay 0.1\n\tset thetimeout to 100\n\trepeat until toggle \u2265 thetimeout\n\t\tif busy of currentTab is false then\n\t\t\tclose (every window whose id = mainID)\n\t\t\tset toggle to thetimeout\n\t\tend if\n\t\tset toggle to (toggle + 1)\n\t\tdelay 0.1\n\tend repeat\n\t\n\t\nend tell\n","old_contents":"tell application \"System Events\" to key code 49 using {command down}\ndelay 0.3\ntell application \"System Events\" to keystroke \"terminal\"\ndelay 0.1\ntell application \"System Events\" to key code 36\ndelay 0.3\ntell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\ntell application \"System Events\" to key code 123\n\ntell application \"System Events\" to key code 63\ntell application \"System Events\" to key code 63\ndelay 4\ntell application \"System Events\" to tell process \"DictationIM\"\n\tclick button 1\nend tell\ndelay 1.2\ntell application \"System Events\" to key code 36\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"384f5f9edbde45ac31e73ddec585cc8ca37371b2","subject":"Updated AppleScript","message":"Updated AppleScript\n","repos":"FabioSpampinato\/Presto,FabioSpampinato\/Presto,svelto\/svelto","old_file":".applescripts\/init_terminals.applescript","new_file":".applescripts\/init_terminals.applescript","new_contents":"tell application \"Visual Studio Code\" to activate\ntell application \"System Events\"\n\t# Start\n\trepeat 20 times\n\t\tkeystroke \"\\\\\" using {shift down, control down, option down, command down}\n\tend repeat\n\t# Base\n\tkeystroke \"`\" using control down\n delay 0.25\n\tkeystroke \"gulp build --fresh && gulp watch\"\n\t# Demo\n\tkeystroke \"n\" using command down\n delay 0.25\n\tkeystroke \"cd demo\"\n\tkeystroke return\n delay 0.1\n keystroke \"meteor run\"\n\t# End\n\tkeystroke \"[\" using {shift down, control down, option down, command down}\n\tkeystroke \"`\" using control down\nend tell\n","old_contents":"tell application \"Visual Studio Code\" to activate\ntell application \"System Events\"\n\t# Start\n\trepeat 20 times\n\t\tkeystroke \"\\\\\" using {shift down, control down, option down, command down}\n\tend repeat\n\t# Base\n\tkeystroke \"`\" using control down\n\tkeystroke \"clear && pwd\"\n\tkeystroke return\n\t# Demo\n\tkeystroke \"n\" using command down\n\tkeystroke \"cd demo\"\n\tkeystroke return\n\tkeystroke \"clear && pwd\"\n\tkeystroke return\n\t# End\n\tkeystroke \"[\" using {shift down, control down, option down, command down}\n\tkeystroke \"`\" using control down\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8d0bee7c5956e38a1a2f9f5eb1cdde0842f4a773","subject":"Improve factory pattern implementation","message":"Improve factory pattern implementation\n\nDecouple concrete products from factory.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\n\tif (count of argv) = 0 then return\n\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\n\t\t\t(* == Settings == *)\n\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\n\t\t\t(* == Data Retrieval == *)\n\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset app_factory to make_factory()\n\t\t\ttell app_factory\n\t\t\t\t-- Register supported web browsers\n\t\t\t\tregister_product(make_safari_browser())\n\t\t\t\tregister_product(make_chrome_browser())\n\t\t\t\tregister_product(make_firefox_browser())\n\t\t\t\tregister_product(make_webkit_browser())\n\t\t\tend tell\n\n\t\t\tset browser_model to app_factory's make_browser(get_front_app_name())\n\t\t\tbrowser_model's fetch_page_info()\n\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\n\t\t\t-- Done with browser. Does this free up memory\/make any difference?\n\t\t\tset {app_factory, browser_model} to {missing value, missing value}\n\n\t\t\t(* == Controllers == *)\n\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t(* == UI == *)\n\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\n\t\t\t(* == Processing == *)\n\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\n\t\t(* == Setters == *)\n\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\n\t\t(* == Getters == *)\n\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\n\t\t(* == Actions == *)\n\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\n\t\t\t_validate_fields()\n\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\n\t\t\tif _should_create_file then _create_log_file()\n\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\n\treturn this\nend make_page_log\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Factory Pattern -- -- --\n\non make_factory() --> Factory\n\tscript\n\t\tproperty class : \"WebBrowserFactory\"\n\t\tproperty _registered_products : {} -- array (concrete products)\n\n\t\ton register_product(this_product) --> void\n\t\t\tmy debug_log(1, \"---> \" & my class & \".register_product(): registering \" & this_product's to_string())\n\t\t\tset end of _registered_products to this_product\n\t\tend register_product\n\n\t\ton make_browser(app_name) --> WebBrowser\n\t\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tif app_name is this_product's to_string() then\n\t\t\t\t\tmy debug_log(1, \"---> using \" & this_product's class)\n\t\t\t\t\treturn this_product\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t_handle_unsupported(app_name)\n\t\tend make_browser\n\n\t\ton _handle_unsupported(app_name) --> void -- PRIVATE\n\t\t\tset err_msg to \"The application \" & app_name & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & _get_app_names()\n\t\t\tset err_num to -2700\n\t\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\t\tset m to err_msg\n\t\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend _handle_unsupported\n\n\t\ton _get_app_names() --> string -- PRIVATE\n\t\t\tset app_names to {}\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tset end of app_names to this_product's to_string()\n\t\t\tend repeat\n\t\t\t--return app_names --> array\n\t\t\tjoin_list(app_names, \", \") --> string\n\t\tend _get_app_names\n\tend script\nend make_factory\n\non make_web_browser() --> abstract product\n\tscript\n\t\tproperty class : \"WebBrowser\"\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser() --> concrete product\n\tscript\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Safari\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_safari_browser\n\non make_webkit_browser() --> concrete product\n\tscript\n\t\tproperty class : \"WebKitBrowser\"\n\t\tproperty parent : make_safari_browser() -- extends SafariBrowser\n\t\tproperty short_name : \"WebKit\"\n\tend script\nend make_webkit_browser\n\non make_chrome_browser() --> concrete product\n\tscript\n\t\tproperty class : \"ChromeBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Chrome\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_chrome_browser\n\non make_firefox_browser() --> concrete product\n\tscript\n\t\tproperty class : \"FirefoxBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Firefox\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard -- be nice\n\t\t\tend try\n\t\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\n\t\t\ttry\n\t\t\t\tset this_url to the clipboard\n\t\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tset the clipboard to old_clipboard\n\t\t\t\tend try\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_firefox_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\n\t\t(* == Plist File Methods (delegate) == *)\n\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\n\t\ton init()\n\t\t\tcontinue init()\n\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\n\t\t(* == State Methods == *)\n\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\n\t\t(* == Utility Methods == *)\n\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\n\t\t(* == Unicode Characters for Views == *)\n\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\n\t\t(* == View Components == *)\n\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\n\t\t(* == Methods == *)\n\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\n\t\tproperty _chosen_category : missing value --> string\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\n\t\t(* == Additional methods == *)\n\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\n\t\t(* == PUBLIC == *)\n\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\n\tset os_ver to system version of (system info)\n\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\n\t\tFrom 'man iconv_open':\n\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file as string\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\n\tif (count of argv) = 0 then return\n\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\n\t\t\t(* == Settings == *)\n\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\n\t\t\t(* == Data Retrieval == *)\n\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\n\t\t\t(* == Controllers == *)\n\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t(* == UI == *)\n\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\n\t\t\t(* == Processing == *)\n\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\n\t\t(* == Setters == *)\n\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\n\t\t(* == Getters == *)\n\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\n\t\t(* == Actions == *)\n\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\n\t\t\t_validate_fields()\n\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\n\t\t\tif _should_create_file then _create_log_file()\n\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\n\t\ttry\n\t\t\tset old_clipboard to the clipboard -- be nice\n\t\tend try\n\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\n\t\t(* == Plist File Methods (delegate) == *)\n\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\n\t\ton init()\n\t\t\tcontinue init()\n\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\n\t\t(* == State Methods == *)\n\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\n\t\t(* == Utility Methods == *)\n\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\n\t\t(* == Unicode Characters for Views == *)\n\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\n\t\t(* == View Components == *)\n\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\n\t\t(* == Methods == *)\n\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\n\t\tproperty _chosen_category : missing value --> string\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\n\t\t(* == Additional methods == *)\n\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\n\t\t(* == PUBLIC == *)\n\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\n\tset os_ver to system version of (system info)\n\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\n\t\tFrom 'man iconv_open':\n\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file as string\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f8ccb8bb6389ad4c0a0958efd57c3c890b7d6dba","subject":"Fix error message","message":"Fix error message\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/start_install.scpt","new_file":"script\/start_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 1.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error errorMessage & \"; Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 1.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fef3aec76ed12dcf508cad22619c93153af3f945","subject":"add run command to current Terminal.app","message":"add run command to current Terminal.app\n","repos":"lexrus\/LTFinderButtons","old_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\t\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000E\u0000x\u0000i\u0000s\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000)\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000=\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0000a\u0000t\u0000(\u00000\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000a\u0000b\u0000 \u0000=\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000T\u0000a\u0000b\u0000(\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000,\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000n\u0000:\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000T\u0000a\u0000b\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000}\u0000)\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000(\u0000e\u0000r\u0000r\u0000)\u0000 \u0000{\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000\/\u0000\/\u0000 \u0000c\u0000o\u0000n\u0000s\u0000o\u0000l\u0000e\u0000.\u0000l\u0000o\u0000g\u0000(\u0000e\u0000r\u0000r\u0000)\u0000 \u0000\/\u0000\/\u0000 \u0000n\u0000o\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000)\u0000;\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000}\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000t\u0000m\u0000u\u0000x\u0000 \u0000-\u00002\u0000 \u0000-\u0000u\u0000 \u0000n\u0000e\u0000w\u0000-\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000-\u0000c\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000`\u0000\n\u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000E\u0000x\u0000i\u0000s\u0000t\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0013jscr\u0000\u0001\u0000\f\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\bm\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e987f1239f41aa73de7914b851e2dbad31023aad","subject":"Do not reveal played song\/playlist in play-direct","message":"Do not reveal played song\/playlist in play-direct\n\nThis change was made to comply with the recent behavior change in commit\n73139f82b556ad71dbe0f83eee79375d386314e1\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/play-direct.applescript","new_file":"actions\/play-direct.applescript","new_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\n\t\telse if theType is \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\n\t\tend if\n\n\tend tell\nend run\n","old_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\t\t\treveal theSong\n\n\t\telse if theType is \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\t\t\treveal thePlaylist\n\n\t\tend if\n\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"605099af1f9416136bd064b34adedc50787f5bea","subject":"Minor refactoring","message":"Minor refactoring\n","repos":"lukaspustina\/Evernote.lbaction","old_file":"Contents\/Scripts\/findNotes.scpt","new_file":"Contents\/Scripts\/findNotes.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001e\u0000\u0018 LaunchBar Action Script\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u00000\u0000 \u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000B\u0000a\u0000r\u0000 \u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0010\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0005\u0000\u0005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002O\u0000\u0000\u0000\u0005\u0000\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001k\u0000\u0000\u0000\t\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0010\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0005\u0000\t\u0000\u000e\u0000%\r\u0000%\u0000\u0003I\u0000\u0002\u0000\t\u0000\u000e\u0000&\n\u0000\u0018.EVRNfindnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthenotes\u0000\btheNotes\u0002\u0000\"\u0000\u0002\u0000'\r\u0000'\u0000\u0003Q\u0000\u0000\u0000\u0011\u0000\u0000(\u0000)\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u0000*\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000-\u0000.\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0000\r\u0000.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002U\u0000\u0000\u0000\u0018\u0000\u00000\u00001\r\u00000\u0000\u0001k\u0000\u0000\u0000!\u0000\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000!\u0000&\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0005\u0000!\u0000$\u00007\r\u00007\u0000\u0002[\u0000\u0000\u0000!\u0000$\u00008\u00009\r\u00008\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u00004\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0002r\u0000\u0000\u0000'\u0000-\u0000<\u0000=\r\u0000<\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000>\u0000?\r\u0000>\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000@\n\u0000\u0004\ncobj\r\u0000@\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00140\u0000\bthenotes\u0000\btheNotes\r\u0000=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0002\u0000;\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000.\u0000.\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000.\u00003\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0005\u0000.\u00001\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u0000.\u00001\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nEVet\r\u0000I\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0001\u00004\u0000G\u0000L\u0000M\u0000N\r\u0000L\u0000\u0002O\u0000\u0001\u00004\u0000G\u0000O\u0000P\r\u0000O\u0000\u0002r\u0000\u0000\u00008\u0000F\u0000Q\u0000R\r\u0000Q\u0000\u0003I\u0000\u0000\u00008\u0000D\u0000S\u000b\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\u0002\u0000'\u0002\u0000U\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\n\u0000@\u0000@\u0000\\\u0000@\u0000@\u0002\u0000Y\u0000\u0002\u0000\\\r\u0000\\\u0000\u0003l\u0000\u0005\u0000;\u0000@\u0000]\r\u0000]\u0000\u0002n\u0000\u0000\u0000;\u0000@\u0000^\u0000_\r\u0000^\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npnam\r\u0000_\u0000\u0003l\u0000\u0005\u0000;\u0000>\u0000`\r\u0000`\u0000\u0002n\u0000\u0000\u0000;\u0000>\u0000a\u0000b\r\u0000a\u0000\u0001m\u0000\u0000\u0000<\u0000>\n\u0000\u0004\nEVnb\r\u0000b\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_label\u0000\u0000\r\u0000P\u0000\u0000f\u0000\u0000\u00004\u00005\f\u0000M\u00000\u0000* nasty way to escape '; cf. suggestions.js\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000c\u0011\u0000c\u0000T\u0000 \u0000n\u0000a\u0000s\u0000t\u0000y\u0000 \u0000w\u0000a\u0000y\u0000 \u0000t\u0000o\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000'\u0000;\u0000 \u0000c\u0000f\u0000.\u0000 \u0000s\u0000u\u0000g\u0000g\u0000e\u0000s\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000j\u0000s\u0002\u0000K\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003l\u0000\u0001\u0000H\u0000H\u0000f\u0000g\u0001\u0000\u0000\f\u0000f\u00000\u0000* do shell script \"logger '\" & _label & \"'\"\u0000\u0002\u0000\u0000\u000e\u0000g\u0000\u0001\u0000h\u0011\u0000h\u0000T\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000_\u0000l\u0000a\u0000b\u0000e\u0000l\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000\"\u0002\u0000e\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002r\u0000\u0000\u0000H\u0000Y\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0005\u0000H\u0000U\u0000m\r\u0000m\u0000\u0002c\u0000\u0000\u0000H\u0000U\u0000n\u0000o\r\u0000n\u0000\u0002c\u0000\u0000\u0000H\u0000Q\u0000p\u0000q\r\u0000p\u0000\u0003l\u0000\u0005\u0000H\u0000M\u0000r\r\u0000r\u0000\u0002n\u0000\u0000\u0000H\u0000M\u0000s\u0000t\r\u0000s\u0000\u00011\u0000\u0000\u0000I\u0000M\n\u0000\u0004\nEVmm\r\u0000t\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000q\u0000\u0001m\u0000\u0000\u0000M\u0000P\n\u0000\u0004\nisot\r\u0000o\u0000\u0001m\u0000\u0000\u0000Q\u0000T\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_date\u0000\u0000\u0002\u0000j\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0002r\u0000\u0000\u0000Z\u0000g\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0005\u0000Z\u0000c\u0000y\r\u0000y\u0000\u0002c\u0000\u0000\u0000Z\u0000c\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0005\u0000Z\u0000_\u0000|\r\u0000|\u0000\u0002n\u0000\u0000\u0000Z\u0000_\u0000}\u0000~\r\u0000}\u0000\u00011\u0000\u0000\u0000[\u0000_\n\u0000\u0004\nEVmm\r\u0000~\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000{\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\t_subtitle\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000h\u0000h\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000h\u0000h\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000h\u0000h\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000{\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000w\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000u\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000q\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000h\u0000o\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000u\u0000v\u000b\u0000\n0\u0000\u0006_label\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000{\u0000~\u000b\u0000\t0\u0000\u0005_date\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\t_subtitle\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000n\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000}\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0000;\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0002c\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\u0004\nlong\u0002\u0000\u0000\r\u0000)\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000EVRN\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000qH+\u0000\u0000\u0000\u0000\u0000G\fEvernote.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049c\t?\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000q\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\t#\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000G\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Evernote.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Evernote.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000,\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000[\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000]\u0002\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004find\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007replace\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000&\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\ntxdl\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\b0\u0000\u0004find\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\r\u0000\u000f\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u000b0\u0000\u0007replace\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016~\n~\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001d\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0018\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019}\u000b}\u0000\u000b0\u0000\u0007subject\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a|\n|\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001e\u0000#\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fz\u000bz\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\r\u0000\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"y\ny\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000$\u0000$xwv\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001L\u0000\u0000\u0000$\u0000&\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%t\u000bt\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002u\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004s\u0000\u0000\u0000\u0001s\u0000\u0000\u0010\u0000\u0000\u0002rq\nr\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bq\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000e\u0000\u0000\u0007\u0010p\u0000\u000fon\u0000\u0001\u0000m\np\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000eo\u0000\u0002\u0004l\u0001\u0001\u0003l\u0000\u0002\u000e\u0001\u0001\u0000\u0002\u0000kj\u000bk\u0000\t0\u0000\u0005query\u0000\u0000\u000bj\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0002n\u0000\u0000\u0010\u0000\u0000\u0002ih\u000bi\u0000\t0\u0000\u0005query\u0000\u0000\u000bh\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0010\u0001\u0000\u0000%g\u0000fedcba`_\u0000V\u0000Z^]\\[ZYXWV\u0000\u0000\u0000\u0000\u0000\u0000\u0000UTS\u0000RQP\u0000\u0000\u000bg\u0000\u000b0\u0000\u0007results\u0000\u0000\nf\u0000\u0018.EVRNfindnull\u0000\u0000\u0000\u0000\u0000ctxt\u000be\u0000\u00140\u0000\bthenotes\u0000\btheNotes\u000bd\u0000\u00050\u0000\u0001x\u0000\u0000\nc\u0000\u0004\nlong\nb\u0000\u0004\ncobj\u000ba\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\n`\u0000\u0004\nEVet\u000b_\u0000\n0\u0000\u0006_title\u0000\u0000\n^\u0000\u0004\nEVnb\n]\u0000\u0004\npnam\u000b\\\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000b[\u0000\n0\u0000\u0006_label\u0000\u0000\nZ\u0000\u0004\nEVmm\nY\u0000\u0004\nisot\nX\u0000\u0004\nTEXT\u000bW\u0000\t0\u0000\u0005_date\u0000\u0000\u000bV\u0000\r0\u0000\t_subtitle\u0000\u0000\u000bU\u0000\u00070\u0000\u0003res\u0000\u0000\u0001T\u0000\u0000\u0002S\u0000\u0000\nR\u0000\u0004\ntxdl\nQ\u0000\u0004\nctxt\u000bP\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\u0011m\u0000jvEO\u0012\u0000j\f\u0000\u0002EO\u0014\u0000jEO\u0017\u0000&kh\u0018k\u001eEO\/EO,EO)\u0012\u0000\u0010*,,m+\u0000\u000eEUOa\u0000\u0010,a\u0000\u0011&a\u0000\u0012&E`\u0000\u0013Oa\u0000\u0010,a\u0000\u0012&E`\u0000\u0014Oa\u0000\u0015a\u0000\u0016%%a\u0000\u0017%%a\u0000\u0018%_\u0000\u0013%a\u0000\u0019%_\u0000\u0014%a\u0000\u001a%a\u0000\u001b%E`\u0000\u001cO_\u0000\u001c6G[OYW\u0000\bX\u0000\u001d\u0000\u001ehUOa\u0000\u001f*a\u0000 ,FOa\u0000!&E`\u0000\"Oa\u0000#_\u0000\"%a\u0000$%\u000f\u000f\u000e\u0000\u0000\u0007\u0010O\u0000NM\u0001\u0002\u0001\u0003L\u000bO\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000eN\u0000\u0002\u0004K\u0001\u0004\u0003K\u0000\u0003\u000e\u0001\u0004\u0000\u0003\u0000JIH\u000bJ\u0000\b0\u0000\u0004find\u0000\u0000\u000bI\u0000\u000b0\u0000\u0007replace\u0000\u0000\u000bH\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002M\u0000\u0000\u0010\u0001\u0002\u0000\u0004GFED\u000bG\u0000\b0\u0000\u0004find\u0000\u0000\u000bF\u0000\u000b0\u0000\u0007replace\u0000\u0000\u000bE\u0000\u000b0\u0000\u0007subject\u0000\u0000\u000bD\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\u0010\u0001\u0003\u0000\u0003CBA\nC\u0000\u0004\ntxdl\nB\u0000\u0004\ncitm\nA\u0000\u0004\nctxt\u0011L\u0000'*,EO*,FO-EO*,FO&EO*,FO\u000f\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001e\u0000\u0018 LaunchBar Action Script\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u00000\u0000 \u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000B\u0000a\u0000r\u0000 \u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0010\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0005\u0000\u0005\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002O\u0000\u0000\u0000\u0005\u0000\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001k\u0000\u0000\u0000\t\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0010\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0005\u0000\t\u0000\u000e\u0000%\r\u0000%\u0000\u0003I\u0000\u0002\u0000\t\u0000\u000e\u0000&\n\u0000\u0018.EVRNfindnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthenotes\u0000\btheNotes\u0002\u0000\"\u0000\u0002\u0000'\r\u0000'\u0000\u0003Q\u0000\u0000\u0000\u0011\u0000\u0000(\u0000)\r\u0000(\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u0000*\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000-\u0000.\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0000\r\u0000.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002U\u0000\u0000\u0000\u0018\u0000\u00000\u00001\r\u00000\u0000\u0001k\u0000\u0000\u0000!\u0000\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000!\u0000&\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0005\u0000!\u0000$\u00007\r\u00007\u0000\u0002[\u0000\u0000\u0000!\u0000$\u00008\u00009\r\u00008\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u00004\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0002r\u0000\u0000\u0000'\u0000-\u0000<\u0000=\r\u0000<\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000>\u0000?\r\u0000>\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000@\n\u0000\u0004\ncobj\r\u0000@\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00140\u0000\bthenotes\u0000\btheNotes\r\u0000=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0002\u0000;\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000.\u0000.\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000.\u00003\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0005\u0000.\u00001\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u0000.\u00001\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nEVet\r\u0000I\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u00004\u0000;\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0005\u00004\u00009\u0000N\r\u0000N\u0000\u0002n\u0000\u0000\u00004\u00009\u0000O\u0000P\r\u0000O\u0000\u00011\u0000\u0000\u00007\u00009\n\u0000\u0004\npnam\r\u0000P\u0000\u0003l\u0000\u0005\u00004\u00007\u0000Q\r\u0000Q\u0000\u0002n\u0000\u0000\u00004\u00007\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u00005\u00007\n\u0000\u0004\nEVnb\r\u0000S\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0000K\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0001\u0000<\u0000M\u0000V\u0000W\u0000X\r\u0000V\u0000\u0002O\u0000\u0001\u0000<\u0000M\u0000Y\u0000Z\r\u0000Y\u0000\u0002r\u0000\u0000\u0000@\u0000L\u0000[\u0000\\\r\u0000[\u0000\u0003I\u0000\u0000\u0000@\u0000H\u0000]\u000b\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000\u0002\u0000'\u0002\u0000_\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0000d\u000e\u0000d\u0000\u0001\u0000e\u0011\u0000e\u0000\n\u0000@\u0000@\u0000\\\u0000@\u0000@\u0002\u0000c\u0000\u0002\u0000f\r\u0000f\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_label\u0000\u0000\r\u0000Z\u0000\u0000f\u0000\u0000\u0000<\u0000=\f\u0000W\u00000\u0000* nasty way to escape '; cf. suggestions.js\u0000\u0002\u0000\u0000\u000e\u0000X\u0000\u0001\u0000g\u0011\u0000g\u0000T\u0000 \u0000n\u0000a\u0000s\u0000t\u0000y\u0000 \u0000w\u0000a\u0000y\u0000 \u0000t\u0000o\u0000 \u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000'\u0000;\u0000 \u0000c\u0000f\u0000.\u0000 \u0000s\u0000u\u0000g\u0000g\u0000e\u0000s\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000j\u0000s\u0002\u0000U\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u0000N\u0000N\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u00000\u0000* do shell script \"logger '\" & _label & \"'\"\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000T\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000_\u0000l\u0000a\u0000b\u0000e\u0000l\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000\"\u0002\u0000i\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002r\u0000\u0000\u0000N\u0000_\u0000o\u0000p\r\u0000o\u0000\u0003l\u0000\u0005\u0000N\u0000[\u0000q\r\u0000q\u0000\u0002c\u0000\u0000\u0000N\u0000[\u0000r\u0000s\r\u0000r\u0000\u0002c\u0000\u0000\u0000N\u0000W\u0000t\u0000u\r\u0000t\u0000\u0003l\u0000\u0005\u0000N\u0000S\u0000v\r\u0000v\u0000\u0002n\u0000\u0000\u0000N\u0000S\u0000w\u0000x\r\u0000w\u0000\u00011\u0000\u0000\u0000O\u0000S\n\u0000\u0004\nEVmm\r\u0000x\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000S\u0000V\n\u0000\u0004\nisot\r\u0000s\u0000\u0001m\u0000\u0000\u0000W\u0000Z\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_date\u0000\u0000\u0002\u0000n\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002r\u0000\u0000\u0000`\u0000m\u0000{\u0000|\r\u0000{\u0000\u0003l\u0000\u0005\u0000`\u0000i\u0000}\r\u0000}\u0000\u0002c\u0000\u0000\u0000`\u0000i\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0005\u0000`\u0000e\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000`\u0000e\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000a\u0000e\n\u0000\u0004\nEVmm\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\t_subtitle\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000n\u0000n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000{\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000w\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000n\u0000u\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000u\u0000v\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000{\u0000~\u000b\u0000\n0\u0000\u0006_label\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_date\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0018\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\t_subtitle\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000n\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000}\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0000;\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0002c\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\u0004\nlong\u0002\u0000\u0000\r\u0000)\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000EVRN\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000qH+\u0000\u0000\u0000\u0000\u0000G\fEvernote.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u049c\t?\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000q\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\t#\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000G\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Evernote.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Evernote.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000,\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000[\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000]\u0002\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004find\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007replace\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000&\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0003\n\u0000\u0004\ntxdl\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\b0\u0000\u0004find\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\r\u0000\u000f\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0012\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u000b0\u0000\u0007replace\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001d\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0018\u0000\u001b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001e\u0000#\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f~\u000b~\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\r\u0000\u0000\u00011\u0000\u0000\u0000\u001f\u0000\"}\n}\u0000\u0004\ntxdl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000$\u0000$|{z\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001L\u0000\u0000\u0000$\u0000&\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%x\u000bx\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012w\u0000\u0000\u0000\u0000\u0001\u0000v\u0001\u0001\u0001\u0002\u0001\u0003\u0001\u0004\u0001\u0005\u0001\u0006\u0001\u0007\u0001\buts\u0001w\u0000\u0000\u0010\u0000\u0000\u0010rqponmlkjihgfedc\nr\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bq\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000bp\u0000\u000b0\u0000\u0007results\u0000\u0000\u000bo\u0000\u00140\u0000\bthenotes\u0000\btheNotes\u000bn\u0000\u00050\u0000\u0001x\u0000\u0000\u000bm\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\u000bl\u0000\n0\u0000\u0006_title\u0000\u0000\u000bk\u0000\t0\u0000\u0005_name\u0000\u0000\u000bj\u0000\n0\u0000\u0006_label\u0000\u0000\u000bi\u0000\t0\u0000\u0005_date\u0000\u0000\u000bh\u0000\r0\u0000\t_subtitle\u0000\u0000\u000bg\u0000\u00070\u0000\u0003res\u0000\u0000\u000bf\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u000e\u0000\u0000\u0007\u0010b\u0000\u000fa`\u0001\t\u0001\n_\nb\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000ea\u0000\u0002\u0004^\u0001\u000b\u0003^\u0000\u0002\u000e\u0001\u000b\u0000\u0002\u0000]\\\u000b]\u0000\t0\u0000\u0005query\u0000\u0000\u000b\\\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0002`\u0000\u0000\u0010\u0001\t\u0000\u0002[Z\u000b[\u0000\t0\u0000\u0005query\u0000\u0000\u000bZ\u0000\u00180\u0000\nmaxresults\u0000\nmaxResults\u0010\u0001\n\u0000&Y\u0000XWVUTSRQPON\u0000`\u0000dMLKJIHG\u0000\u0000\u0000\u0000\u0000\u0000\u0000FED\u0000CBA\u0000\u0000\u000bY\u0000\u000b0\u0000\u0007results\u0000\u0000\nX\u0000\u0018.EVRNfindnull\u0000\u0000\u0000\u0000\u0000ctxt\u000bW\u0000\u00140\u0000\bthenotes\u0000\btheNotes\u000bV\u0000\u00050\u0000\u0001x\u0000\u0000\nU\u0000\u0004\nlong\nT\u0000\u0004\ncobj\u000bS\u0000\u00120\u0000\u0007thenote\u0000\u0007theNote\nR\u0000\u0004\nEVet\u000bQ\u0000\n0\u0000\u0006_title\u0000\u0000\nP\u0000\u0004\nEVnb\nO\u0000\u0004\npnam\u000bN\u0000\t0\u0000\u0005_name\u0000\u0000\u000bM\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000bL\u0000\n0\u0000\u0006_label\u0000\u0000\nK\u0000\u0004\nEVmm\nJ\u0000\u0004\nisot\nI\u0000\u0004\nTEXT\u000bH\u0000\t0\u0000\u0005_date\u0000\u0000\u000bG\u0000\r0\u0000\t_subtitle\u0000\u0000\u000bF\u0000\u00070\u0000\u0003res\u0000\u0000\u0001E\u0000\u0000\u0002D\u0000\u0000\nC\u0000\u0004\ntxdl\nB\u0000\u0004\nctxt\u000bA\u0000\"0\u0000\u000fresultsasstring\u0000\u000fresultsAsString\u0011_\u0000jvEO\u0012\u0000j\f\u0000\u0002EO\u0014\u0000jEO\u0017\u0000&kh\u0018k\u001eEO\/EO,EO,,EO)\u0012\u0000\u000e*m+\u0000\u000fE`\u0000\u0010UOa\u0000\u0011,a\u0000\u0012&a\u0000\u0013&E`\u0000\u0014Oa\u0000\u0011,a\u0000\u0013&E`\u0000\u0015Oa\u0000\u0016a\u0000\u0017%%a\u0000\u0018%_\u0000\u0010%a\u0000\u0019%_\u0000\u0014%a\u0000\u001a%_\u0000\u0015%a\u0000\u001b%a\u0000\u001c%E`\u0000\u001dO_\u0000\u001d6G[OY{W\u0000\bX\u0000\u001e\u0000\u001fhUOa\u0000 *a\u0000!,FOa\u0000\"&E`\u0000#Oa\u0000$_\u0000#%a\u0000%%\u000f\u000f\u000e\u0000\u0000\u0007\u0010@\u0000?>\u0001\f\u0001\r=\u000b@\u0000\u001a0\u0000\u000breplacetext\u0000\u000breplaceText\u000e?\u0000\u0002\u0004<\u0001\u000e\u0003<\u0000\u0003\u000e\u0001\u000e\u0000\u0003\u0000;:9\u000b;\u0000\b0\u0000\u0004find\u0000\u0000\u000b:\u0000\u000b0\u0000\u0007replace\u0000\u0000\u000b9\u0000\u000b0\u0000\u0007subject\u0000\u0000\u0002>\u0000\u0000\u0010\u0001\f\u0000\u00048765\u000b8\u0000\b0\u0000\u0004find\u0000\u0000\u000b7\u0000\u000b0\u0000\u0007replace\u0000\u0000\u000b6\u0000\u000b0\u0000\u0007subject\u0000\u0000\u000b5\u0000\u00140\u0000\bprevtids\u0000\bprevTIDs\u0010\u0001\r\u0000\u0003432\n4\u0000\u0004\ntxdl\n3\u0000\u0004\ncitm\n2\u0000\u0004\nctxt\u0011=\u0000'*,EO*,FO-EO*,FO&EO*,FO\u000f\u000f\u000e\u0000\u0000\u0002\u00041\u0001\u000f\u00031\u0000\u0014\u000e\u0001\u000f\u0000 \u0000\u0001\u0010\u0001\u0011\u0001\u0012\u0001\u0013\u0001\u0014\u0001\u0015\u0001\u0016\u0001\u0017\u0001\u0018\u0001\u0019\u0001\u001a\u0001\u001b\u0001\u001c\u0001\u001d\u0001\u001e\u0001\u001f\u0001 \u0001!\u0001\"\u0001\u00070\/.-,+*)('&%\u000e\u0001\u0010\u0000\u0001\u0001#\u0011\u0001#\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000S\u0000t\u0000e\u0000u\u0000e\u0000r\u0000e\u0000r\u0000k\u0000l\u0000\u0000r\u0000u\u0000n\u0000g\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00003\u0000T\u00001\u00006\u0000:\u00001\u00000\u0000:\u00004\u00009\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000a\u0000t\u0000u\u0000r\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00003\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00006\u0000:\u00001\u00000\u0000:\u00004\u00009\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0011\u0000\u0001\u0001$\u0011\u0001$\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000K\u0000e\u0000r\u0000n\u0000e\u0000l\u0000 \u0000U\u0000p\u0000d\u0000a\u0000t\u0000e\u0000 \u0000n\u0000o\u0000d\u0000e\u00000\u00004\u0000.\u0000b\u0000a\u0000r\u0000e\u0000m\u0000e\u0000t\u0000a\u0000l\u0000,\u0000 \u00001\u00002\u0000.\u00000\u00005\u0000.\u00002\u00000\u00001\u00007\u0000,\u0000 \u0000d\u0000o\u0000n\u0000e\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00002\u0000T\u00002\u00002\u0000:\u00005\u00005\u0000:\u00000\u00000\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000F\u0000r\u0000i\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00002\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00002\u0000:\u00005\u00005\u0000:\u00000\u00000\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0012\u0000\u0001\u0001%\u0011\u0001%\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000C\u0000a\u0000r\u0000e\u0000 \u0000E\u0000n\u0000e\u0000r\u0000g\u0000y\u0000 \u0000D\u0000o\u0000k\u0000u\u0000m\u0000e\u0000n\u0000t\u0000e\u0000n\u0000b\u0000a\u0000c\u0000k\u0000u\u0000p\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00002\u0000T\u00001\u00002\u0000:\u00003\u00004\u0000:\u00004\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000F\u0000r\u0000i\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00002\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00002\u0000:\u00003\u00004\u0000:\u00004\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0013\u0000\u0001\u0001&\u0011\u0001&\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000Z\u0000e\u0000r\u0000t\u0000i\u0000f\u0000i\u0000k\u0000a\u0000t\u0000s\u0000-\u0000S\u0000i\u0000c\u0000h\u0000e\u0000r\u0000h\u0000e\u0000i\u0000t\u0000s\u0000l\u0000e\u0000c\u0000k\u0000,\u0000 \u0000M\u0000\u0000r\u0000z\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00001\u0000T\u00001\u00004\u0000:\u00001\u00007\u0000:\u00004\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000T\u0000h\u0000u\u0000r\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00001\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00001\u00007\u0000:\u00004\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0014\u0000\u0001\u0001'\u0011\u0001'\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000R\u0000e\u0000d\u0000H\u0000a\u0000t\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000 \u0000-\u0000 \u0000C\u0000e\u0000p\u0000h\u0000 \u0000B\u0000u\u0000c\u0000k\u0000e\u0000t\u0000 \u0000S\u0000h\u0000a\u0000r\u0000d\u0000i\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00001\u0000T\u00001\u00000\u0000:\u00005\u00005\u0000:\u00001\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000T\u0000h\u0000u\u0000r\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00001\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00005\u0000:\u00001\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0015\u0000\u0001\u0001(\u0011\u0001(\u0001p\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000B\u0000S\u0000I\u0000 \u0000Z\u0000e\u0000r\u0000t\u0000i\u0000f\u0000i\u0000z\u0000i\u0000e\u0000r\u0000u\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0016\u0000\u0001\u0001)\u0011\u0001)\u0001n\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000A\u0000m\u0000a\u0000z\u0000o\u0000n\u0000 \u0000A\u0000W\u0000S\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0017\u0000\u0001\u0001*\u0011\u0001*\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000h\u0000e\u0000m\u0000e\u0000n\u0000 \u0000f\u0000\u0000r\u0000 \u0000P\u0000a\u0000t\u0000r\u0000i\u0000c\u0000k\u0000 \u0000u\u0000n\u0000d\u0000 \u0000m\u0000i\u0000c\u0000h\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00002\u0000:\u00005\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00002\u0000:\u00005\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0018\u0000\u0001\u0001+\u0011\u0001+\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000e\u0000c\u0000h\u0000n\u0000i\u0000s\u0000c\u0000h\u0000e\u0000 \u0000W\u0000e\u0000i\u0000t\u0000e\u0000r\u0000e\u0000n\u0000t\u0000w\u0000i\u0000c\u0000k\u0000l\u0000u\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00002\u0000:\u00004\u00006\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00002\u0000:\u00004\u00006\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0019\u0000\u0001\u0001,\u0011\u0001,\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000C\u0000o\u0000a\u0000c\u0000h\u0000 \u0000R\u0000i\u0000e\u0000m\u0000e\u0000n\u0000s\u0000c\u0000h\u0000n\u0000e\u0000i\u0000d\u0000e\u0000r\u0000 \u0014\u0000 \u0000S\u0000e\u0000p\u0000t\u0000e\u0000m\u0000b\u0000e\u0000r\u0000 \u00002\u00000\u00001\u00006\u0000 \u0000b\u0000i\u0000s\u0000 \u0000<\u0000o\u0000f\u0000f\u0000e\u0000n\u0000>\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00001\u0000:\u00005\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00001\u0000:\u00005\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001a\u0000\u0001\u0001-\u0011\u0001-\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000B\u0000e\u0000t\u0000t\u0000e\u0000r\u0000 \u0000Z\u0000e\u0000n\u0000 \u0000T\u0000o\u0000 \u0000D\u0000o\u0000n\u0000e\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000E\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00001\u0000:\u00000\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00001\u0000:\u00000\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001b\u0000\u0001\u0001.\u0011\u0001.\u0001~\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000T\u0000e\u0000l\u0000e\u0000k\u0000o\u0000m\u0000 \u0000C\u0000l\u0000o\u0000u\u0000d\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00004\u00001\u0000:\u00004\u00000\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00004\u00001\u0000:\u00004\u00000\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001c\u0000\u0001\u0001\/\u0011\u0001\/\u0001t\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000V\u0000e\u0000r\u0000t\u0000r\u0000i\u0000e\u0000b\u0000s\u0000a\u0000k\u0000t\u0000i\u0000v\u0000i\u0000t\u0000\u0000t\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00003\u00009\u0000:\u00004\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00003\u00009\u0000:\u00004\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001d\u0000\u0001\u00010\u0011\u00010\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000 \u0000B\u0000u\u0000s\u0000i\u0000n\u0000e\u0000s\u0000s\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000i\u0000m\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000 \u0000K\u0000\u0000l\u0000n\u0000 \u0000S\u0000c\u0000h\u0000i\u0000l\u0000d\u0000e\u0000r\u0000g\u0000a\u0000s\u0000s\u0000e\u0000 \u0000-\u0000-\u0000 \u0000A\u0000p\u0000r\u0000i\u0000l\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00008\u0000T\u00002\u00000\u0000:\u00000\u00005\u0000:\u00003\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000M\u0000o\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00008\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00000\u0000:\u00000\u00005\u0000:\u00003\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001e\u0000\u0001\u00011\u0011\u00011\u0001\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000I\u0000n\u0000t\u0000e\u0000r\u0000n\u0000e\u0000 \u0000A\u0000d\u0000m\u0000i\u0000n\u0000i\u0000s\u0000t\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000a\u0000u\u0000f\u0000g\u0000a\u0000b\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00008\u0000T\u00001\u00004\u0000:\u00001\u00003\u0000:\u00000\u00003\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000M\u0000o\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00008\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00001\u00003\u0000:\u00000\u00003\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u001f\u0000\u0001\u00012\u0011\u00012\u0001~\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000-\u0000M\u0000o\u0000b\u0000i\u0000l\u0000e\u0000 \u0000V\u0000e\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000a\u0000u\u0000f\u0000l\u0000\u0000s\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00002\u00002\u0000:\u00000\u00002\u0000:\u00002\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00002\u0000:\u00000\u00002\u0000:\u00002\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001 \u0000\u0001\u00013\u0011\u00013\u0001f\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000R\u0000e\u0000i\u0000s\u0000e\u0000k\u0000o\u0000s\u0000t\u0000e\u0000n\u0000 \u0000M\u0000a\u0000i\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00004\u0000:\u00005\u00007\u0000:\u00004\u00009\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00005\u00007\u0000:\u00004\u00009\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001!\u0000\u0001\u00014\u0011\u00014\u0001j\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000 \u0000T\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\"\u0000\u0001\u00015\u0011\u00015\u0001~\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000P\u0000r\u0000o\u0000j\u0000e\u0000k\u0000t\u0000 \u0000C\u0000a\u0000r\u0000l\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u000e\u0001\u0007\u0000\u0001\u00016\u0011\u00016\u0001x\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000P\u0000r\u0000o\u0000j\u0000e\u0000k\u0000t\u0000 \u0000D\u0000i\u0000r\u0000a\u0000c\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0001%\u0000\u0000\u000e\u0001\u0000\u0000\u0002\u0004$\u00017\u0003$\u0002\u0019\u000e\u00017\u0002\u0019\u0000\u00018\u00019\u0001:\u0001;\u0001<\u0001=\u0001>\u0001?\u0001@\u0001A\u0001B\u0001C\u0001D\u0001E\u0001F\u0001G\u0001H\u0001I\u0001J\u0001\u0001\u0001K\u0001L\u0001M\u0001N\u0001O\u0001P\u0001Q\u0001R\u0001S\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y\u0001Z\u0001[\u0001\\\u0001]\u0001^\u0001_\u0001`\u0001a\u0001b\u0001c\u0001d\u0001e\u0001f\u0001g\u0001h\u0001i\u0001j\u0001k\u0001l\u0001m\u0001n\u0001o\u0001p\u0001q\u0001r\u0001s\u0001t\u0001u\u0001v\u0001w\u0001x\u0001y\u0001z\u0001{\u0001|\u0001}\u0001~\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0000\u0002\u0001\u0002\u0002\u0002\u0003\u0002\u0004\u0002\u0005\u0002\u0006\u0002\u0007\u0002\b\u0002\t\u0002\n\u0002\u000b\u0002\f\u0002\r\u0002\u000e\u0002\u000f\u0002\u0010\u0002\u0011\u0002\u0012\u0002\u0013\u0002\u0014\u0002\u0015\u0002\u0016\u0002\u0017\u0002\u0018\u0002\u0019\u0002\u001a\u0002\u001b\u0002\u001c\u0002\u001d\u0002\u001e\u0002\u001f\u0002 \u0002!\u0002\"\u0002#\u0002$\u0002%\u0002&\u0002'\u0002(\u0002)\u0002*\u0002+\u0002,\u0002-\u0002.\u0002\/\u00020\u00021\u00022\u00023\u00024\u00025\u00026\u00027\u00028\u00029\u0002:\u0002;\u0002<\u0002=\u0002>\u0002?\u0002@\u0002A\u0002B\u0002C\u0002D\u0002E\u0002F\u0002G\u0002H\u0002I\u0002J\u0002K\u0002L\u0002M\u0002N\u0002O\u0002P\u0002Q\u0002R\u0002S\u0002T\u0002U\u0002V\u0002W\u0002X\u0002Y\u0002Z\u0002[\u0002\\\u0002]\u0002^\u0002_\u0002`\u0002a\u0002b\u0002c\u0002d\u0002e\u0002f\u0002g\u0002h\u0002i\u0002j\u0002k\u0002l\u0002m\u0002n\u0002o\u0002p\u0002q\u0002r\u0002s\u0002t\u0002u\u0002v\u0002w\u0002x\u0002y\u0002z\u0002{\u0002|\u0002}\u0002~\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0003\u0000\u0003\u0001\u0003\u0002\u0003\u0003\u0003\u0004\u0003\u0005\u0003\u0006\u0003\u0007\u0003\b\u0003\t\u0003\n\u0003\u000b\u0003\f\u0003\r\u0003\u000e\u0003\u000f\u0003\u0010\u0003\u0011\u0003\u0012\u0003\u0013\u0003\u0014\u0003\u0015\u0003\u0016\u0003\u0017\u0003\u0018\u0003\u0019\u0003\u001a\u0003\u001b\u0003\u001c\u0003\u001d\u0003\u001e\u0003\u001f\u0003 \u0003!\u0003\"\u0003#\u0003$\u0003%\u0003&\u0003'\u0003(\u0003)\u0003*\u0003+\u0003,\u0003-\u0003.\u0003\/\u00030\u00031\u00032\u00033\u00034\u00035\u00036\u00037\u00038\u00039\u0003:\u0003;\u0003<\u0003=\u0003>\u0003?\u0003@\u0003A\u0003B\u0003C\u0003D\u0003E\u0003F\u0003G\u0003H\u0003I\u0003J\u0003K\u0003L\u0003M\u0003N\u0003O\u000e\u00018\u0000\u0001\u0014\u0003P\u000e\u0003P\u0000\u0004\u0019\u0003Q#\u0003R\"\u000e\u0003Q\u0000\u0003\u0018\u0000!\u0003S\n!\u0000\u0004\nEVnb\u000e\u0003S\u0000\u0001\u0003T\u0011\u0003T\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n#\u0000\u0004\nEVnn\u000e\u0003R\u0000\u0001\u0003U\u0011\u0003U\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00002\u00008\n\"\u0000\b\u000bkfrmID \u000e\u00019\u0000\u0001\u0014\u0003V\u000e\u0003V\u0000\u0004\u0019\u0003W \u0003X\u001f\u000e\u0003W\u0000\u0003\u0018\u0000\u001e\u0003Y\n\u001e\u0000\u0004\nEVnb\u000e\u0003Y\u0000\u0001\u0003Z\u0011\u0003Z\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n \u0000\u0004\nEVnn\u000e\u0003X\u0000\u0001\u0003[\u0011\u0003[\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00005\u00000\u00006\n\u001f\u0000\b\u000bkfrmID \u000e\u0001:\u0000\u0001\u0014\u0003\\\u000e\u0003\\\u0000\u0004\u0019\u0003]\u001d\u0003^\u001c\u000e\u0003]\u0000\u0003\u0018\u0000\u001b\u0003_\n\u001b\u0000\u0004\nEVnb\u000e\u0003_\u0000\u0001\u0003`\u0011\u0003`\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u001d\u0000\u0004\nEVnn\u000e\u0003^\u0000\u0001\u0003a\u0011\u0003a\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00009\u00002\n\u001c\u0000\b\u000bkfrmID \u000e\u0001;\u0000\u0001\u0014\u0003b\u000e\u0003b\u0000\u0004\u0019\u0003c\u001a\u0003d\u0019\u000e\u0003c\u0000\u0003\u0018\u0000\u0018\u0003e\n\u0018\u0000\u0004\nEVnb\u000e\u0003e\u0000\u0001\u0003f\u0011\u0003f\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u001a\u0000\u0004\nEVnn\u000e\u0003d\u0000\u0001\u0003g\u0011\u0003g\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00007\u00008\n\u0019\u0000\b\u000bkfrmID \u000e\u0001<\u0000\u0001\u0014\u0003h\u000e\u0003h\u0000\u0004\u0019\u0003i\u0017\u0003j\u0016\u000e\u0003i\u0000\u0003\u0018\u0000\u0015\u0003k\n\u0015\u0000\u0004\nEVnb\u000e\u0003k\u0000\u0001\u0003l\u0011\u0003l\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0017\u0000\u0004\nEVnn\u000e\u0003j\u0000\u0001\u0003m\u0011\u0003m\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00007\u00009\n\u0016\u0000\b\u000bkfrmID \u000e\u0001=\u0000\u0001\u0014\u0003n\u000e\u0003n\u0000\u0004\u0019\u0003o\u0014\u0003p\u0013\u000e\u0003o\u0000\u0003\u0018\u0000\u0012\u0003q\n\u0012\u0000\u0004\nEVnb\u000e\u0003q\u0000\u0001\u0003r\u0011\u0003r\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0014\u0000\u0004\nEVnn\u000e\u0003p\u0000\u0001\u0003s\u0011\u0003s\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00002\n\u0013\u0000\b\u000bkfrmID \u000e\u0001>\u0000\u0001\u0014\u0003t\u000e\u0003t\u0000\u0004\u0019\u0003u\u0011\u0003v\u0010\u000e\u0003u\u0000\u0003\u0018\u0000\u000f\u0003w\n\u000f\u0000\u0004\nEVnb\u000e\u0003w\u0000\u0001\u0003x\u0011\u0003x\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0011\u0000\u0004\nEVnn\u000e\u0003v\u0000\u0001\u0003y\u0011\u0003y\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00002\n\u0010\u0000\b\u000bkfrmID \u000e\u0001?\u0000\u0001\u0014\u0003z\u000e\u0003z\u0000\u0004\u0019\u0003{\u000e\u0003|\r\u000e\u0003{\u0000\u0003\u0018\u0000\f\u0003}\n\f\u0000\u0004\nEVnb\u000e\u0003}\u0000\u0001\u0003~\u0011\u0003~\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u000e\u0000\u0004\nEVnn\u000e\u0003|\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00008\u00002\n\r\u0000\b\u000bkfrmID \u000e\u0001@\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u000b\u0003\n\u000e\u0003\u0000\u0003\u0018\u0000\t\u0003\n\t\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u000b\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00007\n\n\u0000\b\u000bkfrmID \u000e\u0001A\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\b\u0003\u0007\u000e\u0003\u0000\u0003\u0018\u0000\u0006\u0003\n\u0006\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\b\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00000\u00001\n\u0007\u0000\b\u000bkfrmID \u000e\u0001B\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0005\u0003\u0004\u000e\u0003\u0000\u0003\u0018\u0000\u0003\u0003\n\u0003\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0005\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00009\u00006\n\u0004\u0000\b\u000bkfrmID \u000e\u0001C\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0002\u0003\u0001\u000e\u0003\u0000\u0003\u0018\u0000\u0000\u0003\n\u0000\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0002\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00008\u00005\n\u0001\u0000\b\u000bkfrmID \u000e\u0001D\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00005\u00008\n\u0000\b\u000bkfrmID \u000e\u0001E\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00002\u00005\n\u0000\b\u000bkfrmID \u000e\u0001F\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00005\n\u0000\b\u000bkfrmID \u000e\u0001G\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0001H\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00008\u00003\n\u0000\b\u000bkfrmID \u000e\u0001I\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00009\u00006\n\u0000\b\u000bkfrmID \u000e\u0001J\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00007\u00007\n\u0000\b\u000bkfrmID \u000e\u0001\u0001\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00007\u00008\n\u0000\b\u000bkfrmID \u000e\u0001K\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00007\u00002\n\u0000\b\u000bkfrmID \u000e\u0001L\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00007\n\u0000\b\u000bkfrmID \u000e\u0001M\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00009\u00000\n\u0000\b\u000bkfrmID \u000e\u0001N\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00008\u00009\n\u0000\b\u000bkfrmID \u000e\u0001O\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00000\u00005\n\u0000\b\u000bkfrmID \u000e\u0001P\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0016\u0000p\u0000o\u0000s\u0000t\u0000 \u0000m\u0000o\u0000r\u0000t\u0000e\u0000m\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00009\u00001\n\u0000\b\u000bkfrmID \u000e\u0001Q\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00009\u00000\n\u0000\b\u000bkfrmID \u000e\u0001R\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00003\u00003\n\u0000\b\u000bkfrmID \u000e\u0001S\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0003\u000e\u0003\u0000\u0003\u0018\u0000\u0003\n\u0000\u0004\nEVnb\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00007\u00005\n\u0000\b\u000bkfrmID \u000e\u0001T\u0000\u0001\u0014\u0003\u000e\u0003\u0000\u0004\u0019\u0003\u0004\u0000\u000e\u0003\u0000\u0003\u0018\u0000\u0004\u0001\n\u0000\u0004\nEVnb\u000e\u0004\u0001\u0000\u0001\u0004\u0002\u0011\u0004\u0002\u0000\u0016\u0000p\u0000o\u0000s\u0000t\u0000 \u0000m\u0000o\u0000r\u0000t\u0000e\u0000m\n\u0000\u0004\nEVnn\u000e\u0004\u0000\u0000\u0001\u0004\u0003\u0011\u0004\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00009\n\u0000\b\u000bkfrmID \u000e\u0001U\u0000\u0001\u0014\u0004\u0004\u000e\u0004\u0004\u0000\u0004\u0019\u0004\u0005\u0004\u0006\u000e\u0004\u0005\u0000\u0003\u0018\u0000\u0004\u0007\n\u0000\u0004\nEVnb\u000e\u0004\u0007\u0000\u0001\u0004\b\u0011\u0004\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0004\u0006\u0000\u0001\u0004\t\u0011\u0004\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00007\u00004\n\u0000\b\u000bkfrmID \u000e\u0001V\u0000\u0001\u0014\u0004\n\u000e\u0004\n\u0000\u0004\u0019\u0004\u000b\u0004\f\u000e\u0004\u000b\u0000\u0003\u0018\u0000\u0004\r\n\u0000\u0004\nEVnb\u000e\u0004\r\u0000\u0001\u0004\u000e\u0011\u0004\u000e\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0004\f\u0000\u0001\u0004\u000f\u0011\u0004\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0001W\u0000\u0001\u0014\u0004\u0010\u000e\u0004\u0010\u0000\u0004\u0019\u0004\u0011\u0004\u0012\u000e\u0004\u0011\u0000\u0003\u0018\u0000\u0004\u0013\n\u0000\u0004\nEVnb\u000e\u0004\u0013\u0000\u0001\u0004\u0014\u0011\u0004\u0014\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004\u0012\u0000\u0001\u0004\u0015\u0011\u0004\u0015\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0001X\u0000\u0001\u0014\u0004\u0016\u000e\u0004\u0016\u0000\u0004\u0019\u0004\u0017\u0004\u0018\u000e\u0004\u0017\u0000\u0003\u0018\u0000\u0004\u0019\n\u0000\u0004\nEVnb\u000e\u0004\u0019\u0000\u0001\u0004\u001a\u0011\u0004\u001a\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004\u0018\u0000\u0001\u0004\u001b\u0011\u0004\u001b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00000\u00000\n\u0000\b\u000bkfrmID \u000e\u0001Y\u0000\u0001\u0014\u0004\u001c\u000e\u0004\u001c\u0000\u0004\u0019\u0004\u001d\u0004\u001e\u000e\u0004\u001d\u0000\u0003\u0018\u0000\u0004\u001f\n\u0000\u0004\nEVnb\u000e\u0004\u001f\u0000\u0001\u0004 \u0011\u0004 \u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0004\u001e\u0000\u0001\u0004!\u0011\u0004!\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00008\u00008\n\u0000\b\u000bkfrmID \u000e\u0001Z\u0000\u0001\u0014\u0004\"\u000e\u0004\"\u0000\u0004\u0019\u0004#\u0004$\u000e\u0004#\u0000\u0003\u0018\u0000\u0004%\n\u0000\u0004\nEVnb\u000e\u0004%\u0000\u0001\u0004&\u0011\u0004&\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0004$\u0000\u0001\u0004'\u0011\u0004'\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00003\u00000\n\u0000\b\u000bkfrmID \u000e\u0001[\u0000\u0001\u0014\u0004(\u000e\u0004(\u0000\u0004\u0019\u0004)\u0004*\u000e\u0004)\u0000\u0003\u0018\u0000\u0004+\n\u0000\u0004\nEVnb\u000e\u0004+\u0000\u0001\u0004,\u0011\u0004,\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0004*\u0000\u0001\u0004-\u0011\u0004-\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00001\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\\\u0000\u0001\u0014\u0004.\u000e\u0004.\u0000\u0004\u0019\u0004\/\u00040\u000e\u0004\/\u0000\u0003\u0018\u0000\u00041\n\u0000\u0004\nEVnb\u000e\u00041\u0000\u0001\u00042\u0011\u00042\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u00040\u0000\u0001\u00043\u0011\u00043\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00004\u00001\u00001\n\u0000\b\u000bkfrmID \u000e\u0001]\u0000\u0001\u0014\u00044\u000e\u00044\u0000\u0004\u0019\u00045\u00046\u000e\u00045\u0000\u0003\u0018\u0000\u00047\n\u0000\u0004\nEVnb\u000e\u00047\u0000\u0001\u00048\u0011\u00048\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u00046\u0000\u0001\u00049\u0011\u00049\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00002\u00007\n\u0000\b\u000bkfrmID \u000e\u0001^\u0000\u0001\u0014\u0004:\u000e\u0004:\u0000\u0004\u0019\u0004;\u0004<\u000e\u0004;\u0000\u0003\u0018\u0000\u0004=\n\u0000\u0004\nEVnb\u000e\u0004=\u0000\u0001\u0004>\u0011\u0004>\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0004<\u0000\u0001\u0004?\u0011\u0004?\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0001_\u0000\u0001\u0014\u0004@\u000e\u0004@\u0000\u0004\u0019\u0004A\u0004B\u000e\u0004A\u0000\u0003\u0018\u0000\u0004C\n\u0000\u0004\nEVnb\u000e\u0004C\u0000\u0001\u0004D\u0011\u0004D\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0004B\u0000\u0001\u0004E\u0011\u0004E\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00004\u00008\n\u0000\b\u000bkfrmID \u000e\u0001`\u0000\u0001\u0014\u0004F\u000e\u0004F\u0000\u0004\u0019\u0004G\u0004H\u000e\u0004G\u0000\u0003\u0018\u0000\u0004I\n\u0000\u0004\nEVnb\u000e\u0004I\u0000\u0001\u0004J\u0011\u0004J\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0004H\u0000\u0001\u0004K\u0011\u0004K\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00002\u00001\n\u0000\b\u000bkfrmID \u000e\u0001a\u0000\u0001\u0014\u0004L\u000e\u0004L\u0000\u0004\u0019\u0004M\u0004N\u000e\u0004M\u0000\u0003\u0018\u0000\u0004O\n\u0000\u0004\nEVnb\u000e\u0004O\u0000\u0001\u0004P\u0011\u0004P\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0004N\u0000\u0001\u0004Q\u0011\u0004Q\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00002\u00004\n\u0000\b\u000bkfrmID \u000e\u0001b\u0000\u0001\u0014\u0004R\u000e\u0004R\u0000\u0004\u0019\u0004S\u0004T\u000e\u0004S\u0000\u0003\u0018\u0000\u0004U\n\u0000\u0004\nEVnb\u000e\u0004U\u0000\u0001\u0004V\u0011\u0004V\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0004T\u0000\u0001\u0004W\u0011\u0004W\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0001c\u0000\u0001\u0014\u0004X\u000e\u0004X\u0000\u0004\u0019\u0004Y\u0004Z\u000e\u0004Y\u0000\u0003\u0018\u0000\u0004[\n\u0000\u0004\nEVnb\u000e\u0004[\u0000\u0001\u0004\\\u0011\u0004\\\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0004Z\u0000\u0001\u0004]\u0011\u0004]\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00006\n\u0000\b\u000bkfrmID \u000e\u0001d\u0000\u0001\u0014\u0004^\u000e\u0004^\u0000\u0004\u0019\u0004_\u0004`\u000e\u0004_\u0000\u0003\u0018\u0000\u0004a\n\u0000\u0004\nEVnb\u000e\u0004a\u0000\u0001\u0004b\u0011\u0004b\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0004`\u0000\u0001\u0004c\u0011\u0004c\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00003\u00001\n\u0000\b\u000bkfrmID \u000e\u0001e\u0000\u0001\u0014\u0004d\u000e\u0004d\u0000\u0004\u0019\u0004e\u0004f\u000e\u0004e\u0000\u0003\u0018\u0000\u0004g\n\u0000\u0004\nEVnb\u000e\u0004g\u0000\u0001\u0004h\u0011\u0004h\u0000\u0016\u0000p\u0000o\u0000s\u0000t\u0000 \u0000m\u0000o\u0000r\u0000t\u0000e\u0000m\n\u0000\u0004\nEVnn\u000e\u0004f\u0000\u0001\u0004i\u0011\u0004i\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00006\u00006\n\u0000\b\u000bkfrmID \u000e\u0001f\u0000\u0001\u0014\u0004j\u000e\u0004j\u0000\u0004\u0019\u0004k\u0004l\u000e\u0004k\u0000\u0003\u0018\u0000\u0004m\n\u0000\u0004\nEVnb\u000e\u0004m\u0000\u0001\u0004n\u0011\u0004n\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004l\u0000\u0001\u0004o\u0011\u0004o\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00007\u00001\n\u0000\b\u000bkfrmID \u000e\u0001g\u0000\u0001\u0014\u0004p\u000e\u0004p\u0000\u0004\u0019\u0004q\u0004r\u000e\u0004q\u0000\u0003\u0018\u0000\u0004s\n\u0000\u0004\nEVnb\u000e\u0004s\u0000\u0001\u0004t\u0011\u0004t\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004r\u0000\u0001\u0004u\u0011\u0004u\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00006\u00009\n\u0000\b\u000bkfrmID \u000e\u0001h\u0000\u0001\u0014\u0004v\u000e\u0004v\u0000\u0004\u0019\u0004w\u0004x\u000e\u0004w\u0000\u0003\u0018\u0000\u0004y\n\u0000\u0004\nEVnb\u000e\u0004y\u0000\u0001\u0004z\u0011\u0004z\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0004x\u0000\u0001\u0004{\u0011\u0004{\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00008\n\u0000\b\u000bkfrmID \u000e\u0001i\u0000\u0001\u0014\u0004|\u000e\u0004|\u0000\u0004\u0019\u0004}\u0004~\u000e\u0004}\u0000\u0003\u0018\u0000\u0004\n\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0004~\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00009\n\u0000\b\u000bkfrmID \u000e\u0001j\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004\u0004\u000e\u0004\u0000\u0003\u0018\u0000\u0004\n\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00008\u00008\n\u0000\b\u000bkfrmID \u000e\u0001k\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004\u0004\u000e\u0004\u0000\u0003\u0018\u0000\u0004\n\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0001l\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004\u0004\u000e\u0004\u0000\u0003\u0018\u0000\u0004\n\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00002\u00005\n\u0000\b\u000bkfrmID \u000e\u0001m\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004\u0004\u000e\u0004\u0000\u0003\u0018\u0000\u0004\n\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0001n\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004~\u0004}\u000e\u0004\u0000\u0003\u0018\u0000|\u0004\n|\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n~\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00001\u00000\n}\u0000\b\u000bkfrmID \u000e\u0001o\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004{\u0004z\u000e\u0004\u0000\u0003\u0018\u0000y\u0004\ny\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n{\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00006\u00005\nz\u0000\b\u000bkfrmID \u000e\u0001p\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004x\u0004w\u000e\u0004\u0000\u0003\u0018\u0000v\u0004\nv\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nx\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00005\u00001\nw\u0000\b\u000bkfrmID \u000e\u0001q\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004u\u0004t\u000e\u0004\u0000\u0003\u0018\u0000s\u0004\ns\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nu\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00008\u00008\nt\u0000\b\u000bkfrmID \u000e\u0001r\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004r\u0004q\u000e\u0004\u0000\u0003\u0018\u0000p\u0004\np\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\nr\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00001\u00004\nq\u0000\b\u000bkfrmID \u000e\u0001s\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004o\u0004n\u000e\u0004\u0000\u0003\u0018\u0000m\u0004\nm\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\no\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00009\u00008\nn\u0000\b\u000bkfrmID \u000e\u0001t\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004l\u0004k\u000e\u0004\u0000\u0003\u0018\u0000j\u0004\nj\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nl\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00000\u00000\nk\u0000\b\u000bkfrmID \u000e\u0001u\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004i\u0004h\u000e\u0004\u0000\u0003\u0018\u0000g\u0004\ng\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\ni\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00001\u00008\nh\u0000\b\u000bkfrmID \u000e\u0001v\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004f\u0004e\u000e\u0004\u0000\u0003\u0018\u0000d\u0004\nd\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nf\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00003\u00006\ne\u0000\b\u000bkfrmID \u000e\u0001w\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004c\u0004b\u000e\u0004\u0000\u0003\u0018\u0000a\u0004\na\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nc\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00007\u00004\nb\u0000\b\u000bkfrmID \u000e\u0001x\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004`\u0004_\u000e\u0004\u0000\u0003\u0018\u0000^\u0004\n^\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n`\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00008\u00002\n_\u0000\b\u000bkfrmID \u000e\u0001y\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004]\u0004\\\u000e\u0004\u0000\u0003\u0018\u0000[\u0004\n[\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n]\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00000\u00005\n\\\u0000\b\u000bkfrmID \u000e\u0001z\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004Z\u0004Y\u000e\u0004\u0000\u0003\u0018\u0000X\u0004\nX\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nZ\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00001\u00000\nY\u0000\b\u000bkfrmID \u000e\u0001{\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004W\u0004V\u000e\u0004\u0000\u0003\u0018\u0000U\u0004\nU\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nW\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00004\u00008\nV\u0000\b\u000bkfrmID \u000e\u0001|\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004T\u0004S\u000e\u0004\u0000\u0003\u0018\u0000R\u0004\nR\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\nT\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00005\u00008\nS\u0000\b\u000bkfrmID \u000e\u0001}\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004Q\u0004P\u000e\u0004\u0000\u0003\u0018\u0000O\u0004\nO\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\nQ\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00001\u00000\nP\u0000\b\u000bkfrmID \u000e\u0001~\u0000\u0001\u0014\u0004\u000e\u0004\u0000\u0004\u0019\u0004N\u0004M\u000e\u0004\u0000\u0003\u0018\u0000L\u0004\nL\u0000\u0004\nEVnb\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nN\u0000\u0004\nEVnn\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00004\u00005\nM\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u0000\u000e\u0005\u0000\u0000\u0004\u0019\u0005\u0001K\u0005\u0002J\u000e\u0005\u0001\u0000\u0003\u0018\u0000I\u0005\u0003\nI\u0000\u0004\nEVnb\u000e\u0005\u0003\u0000\u0001\u0005\u0004\u0011\u0005\u0004\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\nK\u0000\u0004\nEVnn\u000e\u0005\u0002\u0000\u0001\u0005\u0005\u0011\u0005\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00006\u00007\nJ\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u0006\u000e\u0005\u0006\u0000\u0004\u0019\u0005\u0007H\u0005\bG\u000e\u0005\u0007\u0000\u0003\u0018\u0000F\u0005\t\nF\u0000\u0004\nEVnb\u000e\u0005\t\u0000\u0001\u0005\n\u0011\u0005\n\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nH\u0000\u0004\nEVnn\u000e\u0005\b\u0000\u0001\u0005\u000b\u0011\u0005\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00008\u00007\nG\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\f\u000e\u0005\f\u0000\u0004\u0019\u0005\rE\u0005\u000eD\u000e\u0005\r\u0000\u0003\u0018\u0000C\u0005\u000f\nC\u0000\u0004\nEVnb\u000e\u0005\u000f\u0000\u0001\u0005\u0010\u0011\u0005\u0010\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\nE\u0000\u0004\nEVnn\u000e\u0005\u000e\u0000\u0001\u0005\u0011\u0011\u0005\u0011\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00006\u00008\nD\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u0012\u000e\u0005\u0012\u0000\u0004\u0019\u0005\u0013B\u0005\u0014A\u000e\u0005\u0013\u0000\u0003\u0018\u0000@\u0005\u0015\n@\u0000\u0004\nEVnb\u000e\u0005\u0015\u0000\u0001\u0005\u0016\u0011\u0005\u0016\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\nB\u0000\u0004\nEVnn\u000e\u0005\u0014\u0000\u0001\u0005\u0017\u0011\u0005\u0017\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00002\u00001\nA\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u0018\u000e\u0005\u0018\u0000\u0004\u0019\u0005\u0019?\u0005\u001a>\u000e\u0005\u0019\u0000\u0003\u0018\u0000=\u0005\u001b\n=\u0000\u0004\nEVnb\u000e\u0005\u001b\u0000\u0001\u0005\u001c\u0011\u0005\u001c\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n?\u0000\u0004\nEVnn\u000e\u0005\u001a\u0000\u0001\u0005\u001d\u0011\u0005\u001d\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00002\u00002\n>\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u001e\u000e\u0005\u001e\u0000\u0004\u0019\u0005\u001f<\u0005 ;\u000e\u0005\u001f\u0000\u0003\u0018\u0000:\u0005!\n:\u0000\u0004\nEVnb\u000e\u0005!\u0000\u0001\u0005\"\u0011\u0005\"\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n<\u0000\u0004\nEVnn\u000e\u0005 \u0000\u0001\u0005#\u0011\u0005#\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00002\u00003\n;\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005$\u000e\u0005$\u0000\u0004\u0019\u0005%9\u0005&8\u000e\u0005%\u0000\u0003\u0018\u00007\u0005'\n7\u0000\u0004\nEVnb\u000e\u0005'\u0000\u0001\u0005(\u0011\u0005(\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n9\u0000\u0004\nEVnn\u000e\u0005&\u0000\u0001\u0005)\u0011\u0005)\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00002\u00006\n8\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005*\u000e\u0005*\u0000\u0004\u0019\u0005+6\u0005,5\u000e\u0005+\u0000\u0003\u0018\u00004\u0005-\n4\u0000\u0004\nEVnb\u000e\u0005-\u0000\u0001\u0005.\u0011\u0005.\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n6\u0000\u0004\nEVnn\u000e\u0005,\u0000\u0001\u0005\/\u0011\u0005\/\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00003\u00001\n5\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u00050\u000e\u00050\u0000\u0004\u0019\u000513\u000522\u000e\u00051\u0000\u0003\u0018\u00001\u00053\n1\u0000\u0004\nEVnb\u000e\u00053\u0000\u0001\u00054\u0011\u00054\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n3\u0000\u0004\nEVnn\u000e\u00052\u0000\u0001\u00055\u0011\u00055\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00003\u00007\n2\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u00056\u000e\u00056\u0000\u0004\u0019\u000570\u00058\/\u000e\u00057\u0000\u0003\u0018\u0000.\u00059\n.\u0000\u0004\nEVnb\u000e\u00059\u0000\u0001\u0005:\u0011\u0005:\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n0\u0000\u0004\nEVnn\u000e\u00058\u0000\u0001\u0005;\u0011\u0005;\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00007\u00002\n\/\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005<\u000e\u0005<\u0000\u0004\u0019\u0005=-\u0005>,\u000e\u0005=\u0000\u0003\u0018\u0000+\u0005?\n+\u0000\u0004\nEVnb\u000e\u0005?\u0000\u0001\u0005@\u0011\u0005@\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n-\u0000\u0004\nEVnn\u000e\u0005>\u0000\u0001\u0005A\u0011\u0005A\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00008\u00006\n,\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005B\u000e\u0005B\u0000\u0004\u0019\u0005C*\u0005D)\u000e\u0005C\u0000\u0003\u0018\u0000(\u0005E\n(\u0000\u0004\nEVnb\u000e\u0005E\u0000\u0001\u0005F\u0011\u0005F\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n*\u0000\u0004\nEVnn\u000e\u0005D\u0000\u0001\u0005G\u0011\u0005G\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00006\u00000\n)\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005H\u000e\u0005H\u0000\u0004\u0019\u0005I'\u0005J&\u000e\u0005I\u0000\u0003\u0018\u0000%\u0005K\n%\u0000\u0004\nEVnb\u000e\u0005K\u0000\u0001\u0005L\u0011\u0005L\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n'\u0000\u0004\nEVnn\u000e\u0005J\u0000\u0001\u0005M\u0011\u0005M\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00007\u00006\n&\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005N\u000e\u0005N\u0000\u0004\u0019\u0005O$\u0005P#\u000e\u0005O\u0000\u0003\u0018\u0000\"\u0005Q\n\"\u0000\u0004\nEVnb\u000e\u0005Q\u0000\u0001\u0005R\u0011\u0005R\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n$\u0000\u0004\nEVnn\u000e\u0005P\u0000\u0001\u0005S\u0011\u0005S\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00008\u00003\n#\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005T\u000e\u0005T\u0000\u0004\u0019\u0005U!\u0005V \u000e\u0005U\u0000\u0003\u0018\u0000\u001f\u0005W\n\u001f\u0000\u0004\nEVnb\u000e\u0005W\u0000\u0001\u0005X\u0011\u0005X\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n!\u0000\u0004\nEVnn\u000e\u0005V\u0000\u0001\u0005Y\u0011\u0005Y\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00006\n \u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005Z\u000e\u0005Z\u0000\u0004\u0019\u0005[\u001e\u0005\\\u001d\u000e\u0005[\u0000\u0003\u0018\u0000\u001c\u0005]\n\u001c\u0000\u0004\nEVnb\u000e\u0005]\u0000\u0001\u0005^\u0011\u0005^\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u001e\u0000\u0004\nEVnn\u000e\u0005\\\u0000\u0001\u0005_\u0011\u0005_\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00004\n\u001d\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005`\u000e\u0005`\u0000\u0004\u0019\u0005a\u001b\u0005b\u001a\u000e\u0005a\u0000\u0003\u0018\u0000\u0019\u0005c\n\u0019\u0000\u0004\nEVnb\u000e\u0005c\u0000\u0001\u0005d\u0011\u0005d\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u001b\u0000\u0004\nEVnn\u000e\u0005b\u0000\u0001\u0005e\u0011\u0005e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00004\u00003\n\u001a\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005f\u000e\u0005f\u0000\u0004\u0019\u0005g\u0018\u0005h\u0017\u000e\u0005g\u0000\u0003\u0018\u0000\u0016\u0005i\n\u0016\u0000\u0004\nEVnb\u000e\u0005i\u0000\u0001\u0005j\u0011\u0005j\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0018\u0000\u0004\nEVnn\u000e\u0005h\u0000\u0001\u0005k\u0011\u0005k\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00005\u00005\n\u0017\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005l\u000e\u0005l\u0000\u0004\u0019\u0005m\u0015\u0005n\u0014\u000e\u0005m\u0000\u0003\u0018\u0000\u0013\u0005o\n\u0013\u0000\u0004\nEVnb\u000e\u0005o\u0000\u0001\u0005p\u0011\u0005p\u0000\u0016\u0000p\u0000o\u0000s\u0000t\u0000 \u0000m\u0000o\u0000r\u0000t\u0000e\u0000m\n\u0015\u0000\u0004\nEVnn\u000e\u0005n\u0000\u0001\u0005q\u0011\u0005q\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00007\u00002\n\u0014\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005r\u000e\u0005r\u0000\u0004\u0019\u0005s\u0012\u0005t\u0011\u000e\u0005s\u0000\u0003\u0018\u0000\u0010\u0005u\n\u0010\u0000\u0004\nEVnb\u000e\u0005u\u0000\u0001\u0005v\u0011\u0005v\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0012\u0000\u0004\nEVnn\u000e\u0005t\u0000\u0001\u0005w\u0011\u0005w\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00004\u00001\n\u0011\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005x\u000e\u0005x\u0000\u0004\u0019\u0005y\u000f\u0005z\u000e\u000e\u0005y\u0000\u0003\u0018\u0000\r\u0005{\n\r\u0000\u0004\nEVnb\u000e\u0005{\u0000\u0001\u0005|\u0011\u0005|\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u000f\u0000\u0004\nEVnn\u000e\u0005z\u0000\u0001\u0005}\u0011\u0005}\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00001\u00003\n\u000e\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005~\u000e\u0005~\u0000\u0004\u0019\u0005\f\u0005\u000b\u000e\u0005\u0000\u0003\u0018\u0000\n\u0005\n\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\f\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00003\u00000\u00006\n\u000b\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\t\u0005\b\u000e\u0005\u0000\u0003\u0018\u0000\u0007\u0005\n\u0007\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\t\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00007\u00007\n\b\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0006\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0004\u0005\n\u0004\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0006\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00006\u00000\n\u0005\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0003\u0005\u0002\u000e\u0005\u0000\u0003\u0018\u0000\u0001\u0005\n\u0001\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0003\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00005\u00001\n\u0002\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0000\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00000\u00002\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00000\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00004\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00006\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00002\u00007\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00002\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00002\u00001\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00007\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00008\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00009\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00001\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00001\u00005\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00002\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00002\u00005\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0005\u000e\u0005\u0000\u0004\u0019\u0005\u0005\u000e\u0005\u0000\u0003\u0018\u0000\u0005\n\u0000\u0004\nEVnb\u000e\u0005\u0000\u0001\u0006\u0000\u0011\u0006\u0000\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0005\u0000\u0001\u0006\u0001\u0011\u0006\u0001\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00006\u00008\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u0002\u000e\u0006\u0002\u0000\u0004\u0019\u0006\u0003\u0006\u0004\u000e\u0006\u0003\u0000\u0003\u0018\u0000\u0006\u0005\n\u0000\u0004\nEVnb\u000e\u0006\u0005\u0000\u0001\u0006\u0006\u0011\u0006\u0006\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\n\u0000\u0004\nEVnn\u000e\u0006\u0004\u0000\u0001\u0006\u0007\u0011\u0006\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00000\u00006\u00001\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\b\u000e\u0006\b\u0000\u0004\u0019\u0006\t\u0006\n\u000e\u0006\t\u0000\u0003\u0018\u0000\u0006\u000b\n\u0000\u0004\nEVnb\u000e\u0006\u000b\u0000\u0001\u0006\f\u0011\u0006\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\n\u0000\u0001\u0006\r\u0011\u0006\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00009\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u000e\u0006\u000e\u0000\u0004\u0019\u0006\u000f\u0006\u0010\u000e\u0006\u000f\u0000\u0003\u0018\u0000\u0006\u0011\n\u0000\u0004\nEVnb\u000e\u0006\u0011\u0000\u0001\u0006\u0012\u0011\u0006\u0012\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0006\u0010\u0000\u0001\u0006\u0013\u0011\u0006\u0013\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u0014\u000e\u0006\u0014\u0000\u0004\u0019\u0006\u0015\u0006\u0016\u000e\u0006\u0015\u0000\u0003\u0018\u0000\u0006\u0017\n\u0000\u0004\nEVnb\u000e\u0006\u0017\u0000\u0001\u0006\u0018\u0011\u0006\u0018\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\u0016\u0000\u0001\u0006\u0019\u0011\u0006\u0019\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00008\u00002\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u001a\u000e\u0006\u001a\u0000\u0004\u0019\u0006\u001b\u0006\u001c\u000e\u0006\u001b\u0000\u0003\u0018\u0000\u0006\u001d\n\u0000\u0004\nEVnb\u000e\u0006\u001d\u0000\u0001\u0006\u001e\u0011\u0006\u001e\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0006\u001c\u0000\u0001\u0006\u001f\u0011\u0006\u001f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00007\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006 \u000e\u0006 \u0000\u0004\u0019\u0006!\u0006\"\u000e\u0006!\u0000\u0003\u0018\u0000\u0006#\n\u0000\u0004\nEVnb\u000e\u0006#\u0000\u0001\u0006$\u0011\u0006$\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\"\u0000\u0001\u0006%\u0011\u0006%\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00007\u00001\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006&\u000e\u0006&\u0000\u0004\u0019\u0006'\u0006(\u000e\u0006'\u0000\u0003\u0018\u0000\u0006)\n\u0000\u0004\nEVnb\u000e\u0006)\u0000\u0001\u0006*\u0011\u0006*\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006(\u0000\u0001\u0006+\u0011\u0006+\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00005\u00008\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006,\u000e\u0006,\u0000\u0004\u0019\u0006-\u0006.\u000e\u0006-\u0000\u0003\u0018\u0000\u0006\/\n\u0000\u0004\nEVnb\u000e\u0006\/\u0000\u0001\u00060\u0011\u00060\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0006.\u0000\u0001\u00061\u0011\u00061\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00005\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u00062\u000e\u00062\u0000\u0004\u0019\u00063\u00064\u000e\u00063\u0000\u0003\u0018\u0000\u00065\n\u0000\u0004\nEVnb\u000e\u00065\u0000\u0001\u00066\u0011\u00066\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u00064\u0000\u0001\u00067\u0011\u00067\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00005\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u00068\u000e\u00068\u0000\u0004\u0019\u00069\u0006:\u000e\u00069\u0000\u0003\u0018\u0000\u0006;\n\u0000\u0004\nEVnb\u000e\u0006;\u0000\u0001\u0006<\u0011\u0006<\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0006:\u0000\u0001\u0006=\u0011\u0006=\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006>\u000e\u0006>\u0000\u0004\u0019\u0006?\u0006@\u000e\u0006?\u0000\u0003\u0018\u0000\u0006A\n\u0000\u0004\nEVnb\u000e\u0006A\u0000\u0001\u0006B\u0011\u0006B\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006@\u0000\u0001\u0006C\u0011\u0006C\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00004\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006D\u000e\u0006D\u0000\u0004\u0019\u0006E\u0006F\u000e\u0006E\u0000\u0003\u0018\u0000\u0006G\n\u0000\u0004\nEVnb\u000e\u0006G\u0000\u0001\u0006H\u0011\u0006H\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0006F\u0000\u0001\u0006I\u0011\u0006I\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00003\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006J\u000e\u0006J\u0000\u0004\u0019\u0006K\u0006L\u000e\u0006K\u0000\u0003\u0018\u0000\u0006M\n\u0000\u0004\nEVnb\u000e\u0006M\u0000\u0001\u0006N\u0011\u0006N\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0006L\u0000\u0001\u0006O\u0011\u0006O\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00002\u00007\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006P\u000e\u0006P\u0000\u0004\u0019\u0006Q\u0006R\u000e\u0006Q\u0000\u0003\u0018\u0000\u0006S\n\u0000\u0004\nEVnb\u000e\u0006S\u0000\u0001\u0006T\u0011\u0006T\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006R\u0000\u0001\u0006U\u0011\u0006U\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006V\u000e\u0006V\u0000\u0004\u0019\u0006W\u0006X\u000e\u0006W\u0000\u0003\u0018\u0000\u0006Y\n\u0000\u0004\nEVnb\u000e\u0006Y\u0000\u0001\u0006Z\u0011\u0006Z\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\u0006X\u0000\u0001\u0006[\u0011\u0006[\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00001\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\\\u000e\u0006\\\u0000\u0004\u0019\u0006]\u0006^\u000e\u0006]\u0000\u0003\u0018\u0000\u0006_\n\u0000\u0004\nEVnb\u000e\u0006_\u0000\u0001\u0006`\u0011\u0006`\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n\u0000\u0004\nEVnn\u000e\u0006^\u0000\u0001\u0006a\u0011\u0006a\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00007\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006b\u000e\u0006b\u0000\u0004\u0019\u0006c\u0006d\u000e\u0006c\u0000\u0003\u0018\u0000\u0006e\n\u0000\u0004\nEVnb\u000e\u0006e\u0000\u0001\u0006f\u0011\u0006f\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0006d\u0000\u0001\u0006g\u0011\u0006g\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00000\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006h\u000e\u0006h\u0000\u0004\u0019\u0006i\u0006j\u000e\u0006i\u0000\u0003\u0018\u0000\u0006k\n\u0000\u0004\nEVnb\u000e\u0006k\u0000\u0001\u0006l\u0011\u0006l\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0006j\u0000\u0001\u0006m\u0011\u0006m\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00009\u00000\u00005\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006n\u000e\u0006n\u0000\u0004\u0019\u0006o\u0006p\u000e\u0006o\u0000\u0003\u0018\u0000\u0006q\n\u0000\u0004\nEVnb\u000e\u0006q\u0000\u0001\u0006r\u0011\u0006r\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0006p\u0000\u0001\u0006s\u0011\u0006s\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006t\u000e\u0006t\u0000\u0004\u0019\u0006u\u0006v\u000e\u0006u\u0000\u0003\u0018\u0000\u0006w\n\u0000\u0004\nEVnb\u000e\u0006w\u0000\u0001\u0006x\u0011\u0006x\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006v\u0000\u0001\u0006y\u0011\u0006y\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00003\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006z\u000e\u0006z\u0000\u0004\u0019\u0006{\u0006|\u000e\u0006{\u0000\u0003\u0018\u0000\u0006}\n\u0000\u0004\nEVnb\u000e\u0006}\u0000\u0001\u0006~\u0011\u0006~\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0006|\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00006\u00001\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006\u0006\u000e\u0006\u0000\u0003\u0018\u0000\u0006\n\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00002\u00008\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006\u0006\u000e\u0006\u0000\u0003\u0018\u0000\u0006\n\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00002\u00002\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006\u0006\u000e\u0006\u0000\u0003\u0018\u0000\u0006\n\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00008\u00001\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006\u0006\u000e\u0006\u0000\u0003\u0018\u0000\u0006\n\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00007\u00002\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006\u0006~\u000e\u0006\u0000\u0003\u0018\u0000}\u0006\n}\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00006\u00007\n~\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006|\u0006{\u000e\u0006\u0000\u0003\u0018\u0000z\u0006\nz\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n|\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00004\u00009\n{\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006y\u0006x\u000e\u0006\u0000\u0003\u0018\u0000w\u0006\nw\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\ny\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00007\u00006\nx\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006v\u0006u\u000e\u0006\u0000\u0003\u0018\u0000t\u0006\nt\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nv\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00004\u00000\nu\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006s\u0006r\u000e\u0006\u0000\u0003\u0018\u0000q\u0006\nq\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\ns\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00003\u00009\nr\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006p\u0006o\u000e\u0006\u0000\u0003\u0018\u0000n\u0006\nn\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\np\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00003\u00008\no\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006m\u0006l\u000e\u0006\u0000\u0003\u0018\u0000k\u0006\nk\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nm\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00002\u00008\nl\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006j\u0006i\u000e\u0006\u0000\u0003\u0018\u0000h\u0006\nh\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nj\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00007\u00007\ni\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006g\u0006f\u000e\u0006\u0000\u0003\u0018\u0000e\u0006\ne\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\ng\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00001\u00002\nf\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006d\u0006c\u000e\u0006\u0000\u0003\u0018\u0000b\u0006\nb\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\nd\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00009\u00000\nc\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006a\u0006`\u000e\u0006\u0000\u0003\u0018\u0000_\u0006\n_\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\na\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00008\u00009\n`\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006^\u0006]\u000e\u0006\u0000\u0003\u0018\u0000\\\u0006\n\\\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n^\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00008\u00001\n]\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006[\u0006Z\u000e\u0006\u0000\u0003\u0018\u0000Y\u0006\nY\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n[\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00008\u00000\nZ\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006X\u0006W\u000e\u0006\u0000\u0003\u0018\u0000V\u0006\nV\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nX\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00006\u00008\nW\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006U\u0006T\u000e\u0006\u0000\u0003\u0018\u0000S\u0006\nS\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nU\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00005\u00008\nT\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006R\u0006Q\u000e\u0006\u0000\u0003\u0018\u0000P\u0006\nP\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nR\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00003\u00005\nQ\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006O\u0006N\u000e\u0006\u0000\u0003\u0018\u0000M\u0006\nM\u0000\u0004\nEVnb\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nO\u0000\u0004\nEVnn\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00003\u00003\nN\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0006\u000e\u0006\u0000\u0004\u0019\u0006L\u0007\u0000K\u000e\u0006\u0000\u0003\u0018\u0000J\u0007\u0001\nJ\u0000\u0004\nEVnb\u000e\u0007\u0001\u0000\u0001\u0007\u0002\u0011\u0007\u0002\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\nL\u0000\u0004\nEVnn\u000e\u0007\u0000\u0000\u0001\u0007\u0003\u0011\u0007\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00002\u00002\nK\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u0004\u000e\u0007\u0004\u0000\u0004\u0019\u0007\u0005I\u0007\u0006H\u000e\u0007\u0005\u0000\u0003\u0018\u0000G\u0007\u0007\nG\u0000\u0004\nEVnb\u000e\u0007\u0007\u0000\u0001\u0007\b\u0011\u0007\b\u0000\"\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\nI\u0000\u0004\nEVnn\u000e\u0007\u0006\u0000\u0001\u0007\t\u0011\u0007\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00005\u00001\u00009\nH\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\n\u000e\u0007\n\u0000\u0004\u0019\u0007\u000bF\u0007\fE\u000e\u0007\u000b\u0000\u0003\u0018\u0000D\u0007\r\nD\u0000\u0004\nEVnb\u000e\u0007\r\u0000\u0001\u0007\u000e\u0011\u0007\u000e\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nF\u0000\u0004\nEVnn\u000e\u0007\f\u0000\u0001\u0007\u000f\u0011\u0007\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00005\u00006\nE\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u0010\u000e\u0007\u0010\u0000\u0004\u0019\u0007\u0011C\u0007\u0012B\u000e\u0007\u0011\u0000\u0003\u0018\u0000A\u0007\u0013\nA\u0000\u0004\nEVnb\u000e\u0007\u0013\u0000\u0001\u0007\u0014\u0011\u0007\u0014\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nC\u0000\u0004\nEVnn\u000e\u0007\u0012\u0000\u0001\u0007\u0015\u0011\u0007\u0015\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00009\u00001\nB\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u0016\u000e\u0007\u0016\u0000\u0004\u0019\u0007\u0017@\u0007\u0018?\u000e\u0007\u0017\u0000\u0003\u0018\u0000>\u0007\u0019\n>\u0000\u0004\nEVnb\u000e\u0007\u0019\u0000\u0001\u0007\u001a\u0011\u0007\u001a\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n@\u0000\u0004\nEVnn\u000e\u0007\u0018\u0000\u0001\u0007\u001b\u0011\u0007\u001b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00007\u00008\n?\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u001c\u000e\u0007\u001c\u0000\u0004\u0019\u0007\u001d=\u0007\u001e<\u000e\u0007\u001d\u0000\u0003\u0018\u0000;\u0007\u001f\n;\u0000\u0004\nEVnb\u000e\u0007\u001f\u0000\u0001\u0007 \u0011\u0007 \u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n=\u0000\u0004\nEVnn\u000e\u0007\u001e\u0000\u0001\u0007!\u0011\u0007!\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00007\u00006\n<\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\"\u000e\u0007\"\u0000\u0004\u0019\u0007#:\u0007$9\u000e\u0007#\u0000\u0003\u0018\u00008\u0007%\n8\u0000\u0004\nEVnb\u000e\u0007%\u0000\u0001\u0007&\u0011\u0007&\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n:\u0000\u0004\nEVnn\u000e\u0007$\u0000\u0001\u0007'\u0011\u0007'\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00006\u00003\n9\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007(\u000e\u0007(\u0000\u0004\u0019\u0007)7\u0007*6\u000e\u0007)\u0000\u0003\u0018\u00005\u0007+\n5\u0000\u0004\nEVnb\u000e\u0007+\u0000\u0001\u0007,\u0011\u0007,\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n7\u0000\u0004\nEVnn\u000e\u0007*\u0000\u0001\u0007-\u0011\u0007-\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00001\u00002\n6\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007.\u000e\u0007.\u0000\u0004\u0019\u0007\/4\u000703\u000e\u0007\/\u0000\u0003\u0018\u00002\u00071\n2\u0000\u0004\nEVnb\u000e\u00071\u0000\u0001\u00072\u0011\u00072\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n4\u0000\u0004\nEVnn\u000e\u00070\u0000\u0001\u00073\u0011\u00073\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00001\u00001\n3\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u00074\u000e\u00074\u0000\u0004\u0019\u000751\u000760\u000e\u00075\u0000\u0003\u0018\u0000\/\u00077\n\/\u0000\u0004\nEVnb\u000e\u00077\u0000\u0001\u00078\u0011\u00078\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n1\u0000\u0004\nEVnn\u000e\u00076\u0000\u0001\u00079\u0011\u00079\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00004\u00008\n0\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007:\u000e\u0007:\u0000\u0004\u0019\u0007;.\u0007<-\u000e\u0007;\u0000\u0003\u0018\u0000,\u0007=\n,\u0000\u0004\nEVnb\u000e\u0007=\u0000\u0001\u0007>\u0011\u0007>\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n.\u0000\u0004\nEVnn\u000e\u0007<\u0000\u0001\u0007?\u0011\u0007?\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00000\u00007\n-\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007@\u000e\u0007@\u0000\u0004\u0019\u0007A+\u0007B*\u000e\u0007A\u0000\u0003\u0018\u0000)\u0007C\n)\u0000\u0004\nEVnb\u000e\u0007C\u0000\u0001\u0007D\u0011\u0007D\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n+\u0000\u0004\nEVnn\u000e\u0007B\u0000\u0001\u0007E\u0011\u0007E\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00004\u00000\u00006\n*\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007F\u000e\u0007F\u0000\u0004\u0019\u0007G(\u0007H'\u000e\u0007G\u0000\u0003\u0018\u0000&\u0007I\n&\u0000\u0004\nEVnb\u000e\u0007I\u0000\u0001\u0007J\u0011\u0007J\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n(\u0000\u0004\nEVnn\u000e\u0007H\u0000\u0001\u0007K\u0011\u0007K\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00009\u00007\n'\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007L\u000e\u0007L\u0000\u0004\u0019\u0007M%\u0007N$\u000e\u0007M\u0000\u0003\u0018\u0000#\u0007O\n#\u0000\u0004\nEVnb\u000e\u0007O\u0000\u0001\u0007P\u0011\u0007P\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n%\u0000\u0004\nEVnn\u000e\u0007N\u0000\u0001\u0007Q\u0011\u0007Q\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00009\u00004\n$\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007R\u000e\u0007R\u0000\u0004\u0019\u0007S\"\u0007T!\u000e\u0007S\u0000\u0003\u0018\u0000 \u0007U\n \u0000\u0004\nEVnb\u000e\u0007U\u0000\u0001\u0007V\u0011\u0007V\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\"\u0000\u0004\nEVnn\u000e\u0007T\u0000\u0001\u0007W\u0011\u0007W\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00008\u00003\n!\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007X\u000e\u0007X\u0000\u0004\u0019\u0007Y\u001f\u0007Z\u001e\u000e\u0007Y\u0000\u0003\u0018\u0000\u001d\u0007[\n\u001d\u0000\u0004\nEVnb\u000e\u0007[\u0000\u0001\u0007\\\u0011\u0007\\\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u001f\u0000\u0004\nEVnn\u000e\u0007Z\u0000\u0001\u0007]\u0011\u0007]\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00008\u00002\n\u001e\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007^\u000e\u0007^\u0000\u0004\u0019\u0007_\u001c\u0007`\u001b\u000e\u0007_\u0000\u0003\u0018\u0000\u001a\u0007a\n\u001a\u0000\u0004\nEVnb\u000e\u0007a\u0000\u0001\u0007b\u0011\u0007b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u001c\u0000\u0004\nEVnn\u000e\u0007`\u0000\u0001\u0007c\u0011\u0007c\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00008\u00001\n\u001b\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007d\u000e\u0007d\u0000\u0004\u0019\u0007e\u0019\u0007f\u0018\u000e\u0007e\u0000\u0003\u0018\u0000\u0017\u0007g\n\u0017\u0000\u0004\nEVnb\u000e\u0007g\u0000\u0001\u0007h\u0011\u0007h\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0019\u0000\u0004\nEVnn\u000e\u0007f\u0000\u0001\u0007i\u0011\u0007i\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00005\u00005\n\u0018\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007j\u000e\u0007j\u0000\u0004\u0019\u0007k\u0016\u0007l\u0015\u000e\u0007k\u0000\u0003\u0018\u0000\u0014\u0007m\n\u0014\u0000\u0004\nEVnb\u000e\u0007m\u0000\u0001\u0007n\u0011\u0007n\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0016\u0000\u0004\nEVnn\u000e\u0007l\u0000\u0001\u0007o\u0011\u0007o\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00008\u00000\n\u0015\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007p\u000e\u0007p\u0000\u0004\u0019\u0007q\u0013\u0007r\u0012\u000e\u0007q\u0000\u0003\u0018\u0000\u0011\u0007s\n\u0011\u0000\u0004\nEVnb\u000e\u0007s\u0000\u0001\u0007t\u0011\u0007t\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0013\u0000\u0004\nEVnn\u000e\u0007r\u0000\u0001\u0007u\u0011\u0007u\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00007\u00009\n\u0012\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007v\u000e\u0007v\u0000\u0004\u0019\u0007w\u0010\u0007x\u000f\u000e\u0007w\u0000\u0003\u0018\u0000\u000e\u0007y\n\u000e\u0000\u0004\nEVnb\u000e\u0007y\u0000\u0001\u0007z\u0011\u0007z\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n\u0010\u0000\u0004\nEVnn\u000e\u0007x\u0000\u0001\u0007{\u0011\u0007{\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00005\u00006\n\u000f\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007|\u000e\u0007|\u0000\u0004\u0019\u0007}\r\u0007~\f\u000e\u0007}\u0000\u0003\u0018\u0000\u000b\u0007\n\u000b\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\r\u0000\u0004\nEVnn\u000e\u0007~\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00000\u00008\n\f\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\n\u0007\t\u000e\u0007\u0000\u0003\u0018\u0000\b\u0007\n\b\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00005\u00001\n\t\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u0007\u0006\u000e\u0007\u0000\u0003\u0018\u0000\u0005\u0007\n\u0005\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0007\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00007\u00008\n\u0006\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0004\u0007\u0003\u000e\u0007\u0000\u0003\u0018\u0000\u0002\u0007\n\u0002\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0004\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00007\u00006\n\u0003\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0001\u0007\u0000\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0001\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00007\u00003\n\u0000\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00006\u00008\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00003\u00004\u00007\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00000\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00008\u00005\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00007\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00004\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00007\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00006\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00005\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00004\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00003\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00001\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\u0007\u000e\u0007\u0000\u0004\u0019\u0007\u0007\u000e\u0007\u0000\u0003\u0018\u0000\u0007\n\u0000\u0004\nEVnb\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00001\u00000\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0014\b\u0000\u000e\b\u0000\u0000\u0004\u0019\b\u0001\b\u0002\u000e\b\u0001\u0000\u0003\u0018\u0000\b\u0003\n\u0000\u0004\nEVnb\u000e\b\u0003\u0000\u0001\b\u0004\u0011\b\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b\u0002\u0000\u0001\b\u0005\u0011\b\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00000\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0000\u0001\u0014\b\u0006\u000e\b\u0006\u0000\u0004\u0019\b\u0007\b\b\u000e\b\u0007\u0000\u0003\u0018\u0000\b\t\n\u0000\u0004\nEVnb\u000e\b\t\u0000\u0001\b\n\u0011\b\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\b\b\u0000\u0001\b\u000b\u0011\b\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00002\u00004\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0001\u0000\u0001\u0014\b\f\u000e\b\f\u0000\u0004\u0019\b\r\b\u000e\u000e\b\r\u0000\u0003\u0018\u0000\b\u000f\n\u0000\u0004\nEVnb\u000e\b\u000f\u0000\u0001\b\u0010\u0011\b\u0010\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\b\u000e\u0000\u0001\b\u0011\u0011\b\u0011\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00007\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0002\u0000\u0001\u0014\b\u0012\u000e\b\u0012\u0000\u0004\u0019\b\u0013\b\u0014\u000e\b\u0013\u0000\u0003\u0018\u0000\b\u0015\n\u0000\u0004\nEVnb\u000e\b\u0015\u0000\u0001\b\u0016\u0011\b\u0016\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\b\u0014\u0000\u0001\b\u0017\u0011\b\u0017\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00000\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0003\u0000\u0001\u0014\b\u0018\u000e\b\u0018\u0000\u0004\u0019\b\u0019\b\u001a\u000e\b\u0019\u0000\u0003\u0018\u0000\b\u001b\n\u0000\u0004\nEVnb\u000e\b\u001b\u0000\u0001\b\u001c\u0011\b\u001c\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\b\u001a\u0000\u0001\b\u001d\u0011\b\u001d\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00005\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0004\u0000\u0001\u0014\b\u001e\u000e\b\u001e\u0000\u0004\u0019\b\u001f\b \u000e\b\u001f\u0000\u0003\u0018\u0000\b!\n\u0000\u0004\nEVnb\u000e\b!\u0000\u0001\b\"\u0011\b\"\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b \u0000\u0001\b#\u0011\b#\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0005\u0000\u0001\u0014\b$\u000e\b$\u0000\u0004\u0019\b%\b&\u000e\b%\u0000\u0003\u0018\u0000\b'\n\u0000\u0004\nEVnb\u000e\b'\u0000\u0001\b(\u0011\b(\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\b&\u0000\u0001\b)\u0011\b)\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0006\u0000\u0001\u0014\b*\u000e\b*\u0000\u0004\u0019\b+\b,\u000e\b+\u0000\u0003\u0018\u0000\b-\n\u0000\u0004\nEVnb\u000e\b-\u0000\u0001\b.\u0011\b.\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\b,\u0000\u0001\b\/\u0011\b\/\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0007\u0000\u0001\u0014\b0\u000e\b0\u0000\u0004\u0019\b1\b2\u000e\b1\u0000\u0003\u0018\u0000\b3\n\u0000\u0004\nEVnb\u000e\b3\u0000\u0001\b4\u0011\b4\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\b2\u0000\u0001\b5\u0011\b5\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\b\u0000\u0001\u0014\b6\u000e\b6\u0000\u0004\u0019\b7\b8\u000e\b7\u0000\u0003\u0018\u0000\b9\n\u0000\u0004\nEVnb\u000e\b9\u0000\u0001\b:\u0011\b:\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b8\u0000\u0001\b;\u0011\b;\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\t\u0000\u0001\u0014\b<\u000e\b<\u0000\u0004\u0019\b=\b>\u000e\b=\u0000\u0003\u0018\u0000\b?\n\u0000\u0004\nEVnb\u000e\b?\u0000\u0001\b@\u0011\b@\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\b>\u0000\u0001\bA\u0011\bA\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\n\u0000\u0001\u0014\bB\u000e\bB\u0000\u0004\u0019\bC\bD\u000e\bC\u0000\u0003\u0018\u0000\bE\n\u0000\u0004\nEVnb\u000e\bE\u0000\u0001\bF\u0011\bF\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\bD\u0000\u0001\bG\u0011\bG\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00001\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u000b\u0000\u0001\u0014\bH\u000e\bH\u0000\u0004\u0019\bI\bJ\u000e\bI\u0000\u0003\u0018\u0000\bK\n\u0000\u0004\nEVnb\u000e\bK\u0000\u0001\bL\u0011\bL\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\bJ\u0000\u0001\bM\u0011\bM\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00000\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\f\u0000\u0001\u0014\bN\u000e\bN\u0000\u0004\u0019\bO\bP\u000e\bO\u0000\u0003\u0018\u0000\bQ\n\u0000\u0004\nEVnb\u000e\bQ\u0000\u0001\bR\u0011\bR\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\bP\u0000\u0001\bS\u0011\bS\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00000\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\r\u0000\u0001\u0014\bT\u000e\bT\u0000\u0004\u0019\bU\bV\u000e\bU\u0000\u0003\u0018\u0000\bW\n\u0000\u0004\nEVnb\u000e\bW\u0000\u0001\bX\u0011\bX\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\bV\u0000\u0001\bY\u0011\bY\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00001\u00000\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u000e\u0000\u0001\u0014\bZ\u000e\bZ\u0000\u0004\u0019\b[\b\\\u000e\b[\u0000\u0003\u0018\u0000\b]\n\u0000\u0004\nEVnb\u000e\b]\u0000\u0001\b^\u0011\b^\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b\\\u0000\u0001\b_\u0011\b_\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00005\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u000f\u0000\u0001\u0014\b`\u000e\b`\u0000\u0004\u0019\ba\bb\u000e\ba\u0000\u0003\u0018\u0000\bc\n\u0000\u0004\nEVnb\u000e\bc\u0000\u0001\bd\u0011\bd\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\bb\u0000\u0001\be\u0011\be\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00008\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0010\u0000\u0001\u0014\bf\u000e\bf\u0000\u0004\u0019\bg\bh\u000e\bg\u0000\u0003\u0018\u0000\bi\n\u0000\u0004\nEVnb\u000e\bi\u0000\u0001\bj\u0011\bj\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\bh\u0000\u0001\bk\u0011\bk\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00007\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0011\u0000\u0001\u0014\bl\u000e\bl\u0000\u0004\u0019\bm\bn\u000e\bm\u0000\u0003\u0018\u0000\bo\n\u0000\u0004\nEVnb\u000e\bo\u0000\u0001\bp\u0011\bp\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\bn\u0000\u0001\bq\u0011\bq\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00007\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0012\u0000\u0001\u0014\br\u000e\br\u0000\u0004\u0019\bs\bt\u000e\bs\u0000\u0003\u0018\u0000\bu\n\u0000\u0004\nEVnb\u000e\bu\u0000\u0001\bv\u0011\bv\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\bt\u0000\u0001\bw\u0011\bw\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00007\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0013\u0000\u0001\u0014\bx\u000e\bx\u0000\u0004\u0019\by\bz\u000e\by\u0000\u0003\u0018\u0000\b{\n\u0000\u0004\nEVnb\u000e\b{\u0000\u0001\b|\u0011\b|\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\bz\u0000\u0001\b}\u0011\b}\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00004\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0014\u0000\u0001\u0014\b~\u000e\b~\u0000\u0004\u0019\b\b\u000e\b\u0000\u0003\u0018\u0000\b\n\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00003\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0015\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b\b\u000e\b\u0000\u0003\u0018\u0000\b\n\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00003\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0016\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b\b\u000e\b\u0000\u0003\u0018\u0000\b\n\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00001\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\u0017\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b\b\u000e\b\u0000\u0003\u0018\u0000\b\n\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00000\u00001\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0018\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b\b\u000e\b\u0000\u0003\u0018\u0000~\b\n~\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00008\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0019\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b}\b|\u000e\b\u0000\u0003\u0018\u0000{\b\n{\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n}\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00006\u00007\n|\u0000\b\u000bkfrmID \u000e\u0002\u001a\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bz\by\u000e\b\u0000\u0003\u0018\u0000x\b\nx\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\nz\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00002\u00007\ny\u0000\b\u000bkfrmID \u000e\u0002\u001b\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bw\bv\u000e\b\u0000\u0003\u0018\u0000u\b\nu\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nw\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00006\u00003\nv\u0000\b\u000bkfrmID \u000e\u0002\u001c\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bt\bs\u000e\b\u0000\u0003\u0018\u0000r\b\nr\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nt\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00004\u00003\ns\u0000\b\u000bkfrmID \u000e\u0002\u001d\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bq\bp\u000e\b\u0000\u0003\u0018\u0000o\b\no\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\nq\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00003\u00000\np\u0000\b\u000bkfrmID \u000e\u0002\u001e\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bn\bm\u000e\b\u0000\u0003\u0018\u0000l\b\nl\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\nn\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00002\u00007\nm\u0000\b\u000bkfrmID \u000e\u0002\u001f\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bk\bj\u000e\b\u0000\u0003\u0018\u0000i\b\ni\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\nk\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00002\u00006\nj\u0000\b\u000bkfrmID \u000e\u0002 \u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bh\bg\u000e\b\u0000\u0003\u0018\u0000f\b\nf\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nh\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00001\u00007\ng\u0000\b\u000bkfrmID \u000e\u0002!\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\be\bd\u000e\b\u0000\u0003\u0018\u0000c\b\nc\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\ne\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00009\u00001\u00006\nd\u0000\b\u000bkfrmID \u000e\u0002\"\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bb\ba\u000e\b\u0000\u0003\u0018\u0000`\b\n`\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nb\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00006\u00005\na\u0000\b\u000bkfrmID \u000e\u0002#\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b_\b^\u000e\b\u0000\u0003\u0018\u0000]\b\n]\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\n_\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00005\u00003\n^\u0000\b\u000bkfrmID \u000e\u0002$\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\b\\\b[\u000e\b\u0000\u0003\u0018\u0000Z\b\nZ\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\n\\\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00005\u00002\n[\u0000\b\u000bkfrmID \u000e\u0002%\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bY\bX\u000e\b\u0000\u0003\u0018\u0000W\b\nW\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\nY\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00005\u00001\nX\u0000\b\u000bkfrmID \u000e\u0002&\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bV\bU\u000e\b\u0000\u0003\u0018\u0000T\b\nT\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\nV\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00004\u00008\nU\u0000\b\u000bkfrmID \u000e\u0002'\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bS\bR\u000e\b\u0000\u0003\u0018\u0000Q\b\nQ\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\"\u0000H\u0000\u0000u\u0000s\u0000l\u0000e\u0000 \u0000i\u0000n\u0000 \u0000S\u0000i\u0000e\u0000g\u0000l\u0000a\u0000r\nS\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00008\u00004\u00009\nR\u0000\b\u000bkfrmID \u000e\u0002(\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bP\bO\u000e\b\u0000\u0003\u0018\u0000N\b\nN\u0000\u0004\nEVnb\u000e\b\u0000\u0001\b\u0011\b\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\nP\u0000\u0004\nEVnn\u000e\b\u0000\u0001\b\u0011\b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00002\u00004\nO\u0000\b\u000bkfrmID \u000e\u0002)\u0000\u0001\u0014\b\u000e\b\u0000\u0004\u0019\bM\bL\u000e\b\u0000\u0003\u0018\u0000K\b\nK\u0000\u0004\nEVnb\u000e\b\u0000\u0001\t\u0000\u0011\t\u0000\u0000\n\u0000P\u0000a\u0000u\u0000l\u0000i\nM\u0000\u0004\nEVnn\u000e\b\u0000\u0001\t\u0001\u0011\t\u0001\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00005\u00001\u00002\u00006\nL\u0000\b\u000bkfrmID \u000e\u0002*\u0000\u0001\u0014\t\u0002\u000e\t\u0002\u0000\u0004\u0019\t\u0003J\t\u0004I\u000e\t\u0003\u0000\u0003\u0018\u0000H\t\u0005\nH\u0000\u0004\nEVnb\u000e\t\u0005\u0000\u0001\t\u0006\u0011\t\u0006\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\nJ\u0000\u0004\nEVnn\u000e\t\u0004\u0000\u0001\t\u0007\u0011\t\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00008\u00003\nI\u0000\b\u000bkfrmID \u000e\u0002+\u0000\u0001\u0014\t\b\u000e\t\b\u0000\u0004\u0019\t\tG\t\nF\u000e\t\t\u0000\u0003\u0018\u0000E\t\u000b\nE\u0000\u0004\nEVnb\u000e\t\u000b\u0000\u0001\t\f\u0011\t\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nG\u0000\u0004\nEVnn\u000e\t\n\u0000\u0001\t\r\u0011\t\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00008\u00002\nF\u0000\b\u000bkfrmID \u000e\u0002,\u0000\u0001\u0014\t\u000e\u000e\t\u000e\u0000\u0004\u0019\t\u000fD\t\u0010C\u000e\t\u000f\u0000\u0003\u0018\u0000B\t\u0011\nB\u0000\u0004\nEVnb\u000e\t\u0011\u0000\u0001\t\u0012\u0011\t\u0012\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nD\u0000\u0004\nEVnn\u000e\t\u0010\u0000\u0001\t\u0013\u0011\t\u0013\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00008\u00001\nC\u0000\b\u000bkfrmID \u000e\u0002-\u0000\u0001\u0014\t\u0014\u000e\t\u0014\u0000\u0004\u0019\t\u0015A\t\u0016@\u000e\t\u0015\u0000\u0003\u0018\u0000?\t\u0017\n?\u0000\u0004\nEVnb\u000e\t\u0017\u0000\u0001\t\u0018\u0011\t\u0018\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nA\u0000\u0004\nEVnn\u000e\t\u0016\u0000\u0001\t\u0019\u0011\t\u0019\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00007\u00009\n@\u0000\b\u000bkfrmID \u000e\u0002.\u0000\u0001\u0014\t\u001a\u000e\t\u001a\u0000\u0004\u0019\t\u001b>\t\u001c=\u000e\t\u001b\u0000\u0003\u0018\u0000<\t\u001d\n<\u0000\u0004\nEVnb\u000e\t\u001d\u0000\u0001\t\u001e\u0011\t\u001e\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n>\u0000\u0004\nEVnn\u000e\t\u001c\u0000\u0001\t\u001f\u0011\t\u001f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00007\u00008\n=\u0000\b\u000bkfrmID \u000e\u0002\/\u0000\u0001\u0014\t \u000e\t \u0000\u0004\u0019\t!;\t\":\u000e\t!\u0000\u0003\u0018\u00009\t#\n9\u0000\u0004\nEVnb\u000e\t#\u0000\u0001\t$\u0011\t$\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n;\u0000\u0004\nEVnn\u000e\t\"\u0000\u0001\t%\u0011\t%\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00007\u00004\n:\u0000\b\u000bkfrmID \u000e\u00020\u0000\u0001\u0014\t&\u000e\t&\u0000\u0004\u0019\t'8\t(7\u000e\t'\u0000\u0003\u0018\u00006\t)\n6\u0000\u0004\nEVnb\u000e\t)\u0000\u0001\t*\u0011\t*\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n8\u0000\u0004\nEVnn\u000e\t(\u0000\u0001\t+\u0011\t+\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00007\u00005\n7\u0000\b\u000bkfrmID \u000e\u00021\u0000\u0001\u0014\t,\u000e\t,\u0000\u0004\u0019\t-5\t.4\u000e\t-\u0000\u0003\u0018\u00003\t\/\n3\u0000\u0004\nEVnb\u000e\t\/\u0000\u0001\t0\u0011\t0\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n5\u0000\u0004\nEVnn\u000e\t.\u0000\u0001\t1\u0011\t1\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00001\u00003\n4\u0000\b\u000bkfrmID \u000e\u00022\u0000\u0001\u0014\t2\u000e\t2\u0000\u0004\u0019\t32\t41\u000e\t3\u0000\u0003\u0018\u00000\t5\n0\u0000\u0004\nEVnb\u000e\t5\u0000\u0001\t6\u0011\t6\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n2\u0000\u0004\nEVnn\u000e\t4\u0000\u0001\t7\u0011\t7\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00001\u00007\n1\u0000\b\u000bkfrmID \u000e\u00023\u0000\u0001\u0014\t8\u000e\t8\u0000\u0004\u0019\t9\/\t:.\u000e\t9\u0000\u0003\u0018\u0000-\t;\n-\u0000\u0004\nEVnb\u000e\t;\u0000\u0001\t<\u0011\t<\u0000\u0006\u0000D\u0000o\u0000c\n\/\u0000\u0004\nEVnn\u000e\t:\u0000\u0001\t=\u0011\t=\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00001\u00004\n.\u0000\b\u000bkfrmID \u000e\u00024\u0000\u0001\u0014\t>\u000e\t>\u0000\u0004\u0019\t?,\t@+\u000e\t?\u0000\u0003\u0018\u0000*\tA\n*\u0000\u0004\nEVnb\u000e\tA\u0000\u0001\tB\u0011\tB\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n,\u0000\u0004\nEVnn\u000e\t@\u0000\u0001\tC\u0011\tC\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00000\u00007\n+\u0000\b\u000bkfrmID \u000e\u00025\u0000\u0001\u0014\tD\u000e\tD\u0000\u0004\u0019\tE)\tF(\u000e\tE\u0000\u0003\u0018\u0000'\tG\n'\u0000\u0004\nEVnb\u000e\tG\u0000\u0001\tH\u0011\tH\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n)\u0000\u0004\nEVnn\u000e\tF\u0000\u0001\tI\u0011\tI\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00000\u00006\n(\u0000\b\u000bkfrmID \u000e\u00026\u0000\u0001\u0014\tJ\u000e\tJ\u0000\u0004\u0019\tK&\tL%\u000e\tK\u0000\u0003\u0018\u0000$\tM\n$\u0000\u0004\nEVnb\u000e\tM\u0000\u0001\tN\u0011\tN\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n&\u0000\u0004\nEVnn\u000e\tL\u0000\u0001\tO\u0011\tO\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00007\u00000\u00005\n%\u0000\b\u000bkfrmID \u000e\u00027\u0000\u0001\u0014\tP\u000e\tP\u0000\u0004\u0019\tQ#\tR\"\u000e\tQ\u0000\u0003\u0018\u0000!\tS\n!\u0000\u0004\nEVnb\u000e\tS\u0000\u0001\tT\u0011\tT\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n#\u0000\u0004\nEVnn\u000e\tR\u0000\u0001\tU\u0011\tU\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00006\u00005\n\"\u0000\b\u000bkfrmID \u000e\u00028\u0000\u0001\u0014\tV\u000e\tV\u0000\u0004\u0019\tW \tX\u001f\u000e\tW\u0000\u0003\u0018\u0000\u001e\tY\n\u001e\u0000\u0004\nEVnb\u000e\tY\u0000\u0001\tZ\u0011\tZ\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n \u0000\u0004\nEVnn\u000e\tX\u0000\u0001\t[\u0011\t[\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00009\u00007\n\u001f\u0000\b\u000bkfrmID \u000e\u00029\u0000\u0001\u0014\t\\\u000e\t\\\u0000\u0004\u0019\t]\u001d\t^\u001c\u000e\t]\u0000\u0003\u0018\u0000\u001b\t_\n\u001b\u0000\u0004\nEVnb\u000e\t_\u0000\u0001\t`\u0011\t`\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u001d\u0000\u0004\nEVnn\u000e\t^\u0000\u0001\ta\u0011\ta\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00006\u00002\n\u001c\u0000\b\u000bkfrmID \u000e\u0002:\u0000\u0001\u0014\tb\u000e\tb\u0000\u0004\u0019\tc\u001a\td\u0019\u000e\tc\u0000\u0003\u0018\u0000\u0018\te\n\u0018\u0000\u0004\nEVnb\u000e\te\u0000\u0001\tf\u0011\tf\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u001a\u0000\u0004\nEVnn\u000e\td\u0000\u0001\tg\u0011\tg\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00001\u00002\n\u0019\u0000\b\u000bkfrmID \u000e\u0002;\u0000\u0001\u0014\th\u000e\th\u0000\u0004\u0019\ti\u0017\tj\u0016\u000e\ti\u0000\u0003\u0018\u0000\u0015\tk\n\u0015\u0000\u0004\nEVnb\u000e\tk\u0000\u0001\tl\u0011\tl\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0017\u0000\u0004\nEVnn\u000e\tj\u0000\u0001\tm\u0011\tm\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00005\u00003\n\u0016\u0000\b\u000bkfrmID \u000e\u0002<\u0000\u0001\u0014\tn\u000e\tn\u0000\u0004\u0019\to\u0014\tp\u0013\u000e\to\u0000\u0003\u0018\u0000\u0012\tq\n\u0012\u0000\u0004\nEVnb\u000e\tq\u0000\u0001\tr\u0011\tr\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0014\u0000\u0004\nEVnn\u000e\tp\u0000\u0001\ts\u0011\ts\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00005\u00002\n\u0013\u0000\b\u000bkfrmID \u000e\u0002=\u0000\u0001\u0014\tt\u000e\tt\u0000\u0004\u0019\tu\u0011\tv\u0010\u000e\tu\u0000\u0003\u0018\u0000\u000f\tw\n\u000f\u0000\u0004\nEVnb\u000e\tw\u0000\u0001\tx\u0011\tx\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0011\u0000\u0004\nEVnn\u000e\tv\u0000\u0001\ty\u0011\ty\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00004\u00007\n\u0010\u0000\b\u000bkfrmID \u000e\u0002>\u0000\u0001\u0014\tz\u000e\tz\u0000\u0004\u0019\t{\u000e\t|\r\u000e\t{\u0000\u0003\u0018\u0000\f\t}\n\f\u0000\u0004\nEVnb\u000e\t}\u0000\u0001\t~\u0011\t~\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u000e\u0000\u0004\nEVnn\u000e\t|\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00006\u00005\u00003\n\r\u0000\b\u000bkfrmID \u000e\u0002?\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\u000b\t\n\u000e\t\u0000\u0003\u0018\u0000\t\t\n\t\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u000b\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00003\u00008\n\n\u0000\b\u000bkfrmID \u000e\u0002@\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\b\t\u0007\u000e\t\u0000\u0003\u0018\u0000\u0006\t\n\u0006\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\b\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00003\u00003\n\u0007\u0000\b\u000bkfrmID \u000e\u0002A\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\u0005\t\u0004\u000e\t\u0000\u0003\u0018\u0000\u0003\t\n\u0003\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0005\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00003\u00002\n\u0004\u0000\b\u000bkfrmID \u000e\u0002B\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\u0002\t\u0001\u000e\t\u0000\u0003\u0018\u0000\u0000\t\n\u0000\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0002\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00002\u00005\n\u0001\u0000\b\u000bkfrmID \u000e\u0002C\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00002\u00002\n\u0000\b\u000bkfrmID \u000e\u0002D\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00006\u00002\u00001\n\u0000\b\u000bkfrmID \u000e\u0002E\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00005\u00009\u00009\n\u0000\b\u000bkfrmID \u000e\u0002F\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00005\u00009\u00000\n\u0000\b\u000bkfrmID \u000e\u0002G\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00005\u00008\u00001\n\u0000\b\u000bkfrmID \u000e\u0002H\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00005\u00002\u00006\n\u0000\b\u000bkfrmID \u000e\u0002I\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00001\u00005\n\u0000\b\u000bkfrmID \u000e\u0002J\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00004\u00009\u00002\n\u0000\b\u000bkfrmID \u000e\u0002K\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00004\u00007\u00006\n\u0000\b\u000bkfrmID \u000e\u0002L\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00004\u00006\u00003\n\u0000\b\u000bkfrmID \u000e\u0002M\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00004\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0002N\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00009\u00005\n\u0000\b\u000bkfrmID \u000e\u0002O\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00004\u00000\u00008\n\u0000\b\u000bkfrmID \u000e\u0002P\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00008\u00008\n\u0000\b\u000bkfrmID \u000e\u0002Q\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00008\u00005\n\u0000\b\u000bkfrmID \u000e\u0002R\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00007\u00002\n\u0000\b\u000bkfrmID \u000e\u0002S\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\t\u000e\t\u0000\u0003\u0018\u0000\t\n\u0000\u0004\nEVnb\u000e\t\u0000\u0001\t\u0011\t\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\t\u0000\u0001\t\u0011\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00007\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0002T\u0000\u0001\u0014\t\u000e\t\u0000\u0004\u0019\t\n\u0000\u000e\t\u0000\u0003\u0018\u0000\n\u0001\n\u0000\u0004\nEVnb\u000e\n\u0001\u0000\u0001\n\u0002\u0011\n\u0002\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n\u0000\u0000\u0001\n\u0003\u0011\n\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00005\u00004\n\u0000\b\u000bkfrmID \u000e\u0002U\u0000\u0001\u0014\n\u0004\u000e\n\u0004\u0000\u0004\u0019\n\u0005\n\u0006\u000e\n\u0005\u0000\u0003\u0018\u0000\n\u0007\n\u0000\u0004\nEVnb\u000e\n\u0007\u0000\u0001\n\b\u0011\n\b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\n\u0006\u0000\u0001\n\t\u0011\n\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00003\u00003\n\u0000\b\u000bkfrmID \u000e\u0002V\u0000\u0001\u0014\n\n\u000e\n\n\u0000\u0004\u0019\n\u000b\n\f\u000e\n\u000b\u0000\u0003\u0018\u0000\n\r\n\u0000\u0004\nEVnb\u000e\n\r\u0000\u0001\n\u000e\u0011\n\u000e\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n\f\u0000\u0001\n\u000f\u0011\n\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00003\u00002\n\u0000\b\u000bkfrmID \u000e\u0002W\u0000\u0001\u0014\n\u0010\u000e\n\u0010\u0000\u0004\u0019\n\u0011\n\u0012\u000e\n\u0011\u0000\u0003\u0018\u0000\n\u0013\n\u0000\u0004\nEVnb\u000e\n\u0013\u0000\u0001\n\u0014\u0011\n\u0014\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\n\u0012\u0000\u0001\n\u0015\u0011\n\u0015\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00002\u00004\n\u0000\b\u000bkfrmID \u000e\u0002X\u0000\u0001\u0014\n\u0016\u000e\n\u0016\u0000\u0004\u0019\n\u0017\n\u0018\u000e\n\u0017\u0000\u0003\u0018\u0000\n\u0019\n\u0000\u0004\nEVnb\u000e\n\u0019\u0000\u0001\n\u001a\u0011\n\u001a\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n\u0018\u0000\u0001\n\u001b\u0011\n\u001b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00009\u00008\n\u0000\b\u000bkfrmID \u000e\u0002Y\u0000\u0001\u0014\n\u001c\u000e\n\u001c\u0000\u0004\u0019\n\u001d\n\u001e\u000e\n\u001d\u0000\u0003\u0018\u0000\n\u001f\n\u0000\u0004\nEVnb\u000e\n\u001f\u0000\u0001\n \u0011\n \u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\n\u001e\u0000\u0001\n!\u0011\n!\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00008\u00005\n\u0000\b\u000bkfrmID \u000e\u0002Z\u0000\u0001\u0014\n\"\u000e\n\"\u0000\u0004\u0019\n#\n$\u000e\n#\u0000\u0003\u0018\u0000\n%\n\u0000\u0004\nEVnb\u000e\n%\u0000\u0001\n&\u0011\n&\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n$\u0000\u0001\n'\u0011\n'\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00009\u00001\n\u0000\b\u000bkfrmID \u000e\u0002[\u0000\u0001\u0014\n(\u000e\n(\u0000\u0004\u0019\n)\n*\u000e\n)\u0000\u0003\u0018\u0000\n+\n\u0000\u0004\nEVnb\u000e\n+\u0000\u0001\n,\u0011\n,\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\n*\u0000\u0001\n-\u0011\n-\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00007\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\\\u0000\u0001\u0014\n.\u000e\n.\u0000\u0004\u0019\n\/\n0\u000e\n\/\u0000\u0003\u0018\u0000\n1\n\u0000\u0004\nEVnb\u000e\n1\u0000\u0001\n2\u0011\n2\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\n0\u0000\u0001\n3\u0011\n3\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00002\u00008\n\u0000\b\u000bkfrmID \u000e\u0002]\u0000\u0001\u0014\n4\u000e\n4\u0000\u0004\u0019\n5\n6\u000e\n5\u0000\u0003\u0018\u0000\n7\n\u0000\u0004\nEVnb\u000e\n7\u0000\u0001\n8\u0011\n8\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\n6\u0000\u0001\n9\u0011\n9\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00002\u00003\n\u0000\b\u000bkfrmID \u000e\u0002^\u0000\u0001\u0014\n:\u000e\n:\u0000\u0004\u0019\n;\n<\u000e\n;\u0000\u0003\u0018\u0000\n=\n\u0000\u0004\nEVnb\u000e\n=\u0000\u0001\n>\u0011\n>\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\n<\u0000\u0001\n?\u0011\n?\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00002\u00004\n\u0000\b\u000bkfrmID \u000e\u0002_\u0000\u0001\u0014\n@\u000e\n@\u0000\u0004\u0019\nA\nB\u000e\nA\u0000\u0003\u0018\u0000\nC\n\u0000\u0004\nEVnb\u000e\nC\u0000\u0001\nD\u0011\nD\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\nB\u0000\u0001\nE\u0011\nE\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00002\u00001\n\u0000\b\u000bkfrmID \u000e\u0002`\u0000\u0001\u0014\nF\u000e\nF\u0000\u0004\u0019\nG\nH\u000e\nG\u0000\u0003\u0018\u0000\nI\n\u0000\u0004\nEVnb\u000e\nI\u0000\u0001\nJ\u0011\nJ\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\nH\u0000\u0001\nK\u0011\nK\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0002a\u0000\u0001\u0014\nL\u000e\nL\u0000\u0004\u0019\nM\nN\u000e\nM\u0000\u0003\u0018\u0000\nO\n\u0000\u0004\nEVnb\u000e\nO\u0000\u0001\nP\u0011\nP\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\nN\u0000\u0001\nQ\u0011\nQ\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00001\u00009\n\u0000\b\u000bkfrmID \u000e\u0002b\u0000\u0001\u0014\nR\u000e\nR\u0000\u0004\u0019\nS\nT\u000e\nS\u0000\u0003\u0018\u0000\nU\n\u0000\u0004\nEVnb\u000e\nU\u0000\u0001\nV\u0011\nV\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\nT\u0000\u0001\nW\u0011\nW\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00001\u00001\n\u0000\b\u000bkfrmID \u000e\u0002c\u0000\u0001\u0014\nX\u000e\nX\u0000\u0004\u0019\nY\nZ\u000e\nY\u0000\u0003\u0018\u0000\n[\n\u0000\u0004\nEVnb\u000e\n[\u0000\u0001\n\\\u0011\n\\\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\nZ\u0000\u0001\n]\u0011\n]\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00000\u00002\n\u0000\b\u000bkfrmID \u000e\u0002d\u0000\u0001\u0014\n^\u000e\n^\u0000\u0004\u0019\n_\n`\u000e\n_\u0000\u0003\u0018\u0000\na\n\u0000\u0004\nEVnb\u000e\na\u0000\u0001\nb\u0011\nb\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n`\u0000\u0001\nc\u0011\nc\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00000\u00000\n\u0000\b\u000bkfrmID \u000e\u0002e\u0000\u0001\u0014\nd\u000e\nd\u0000\u0004\u0019\ne\nf\u000e\ne\u0000\u0003\u0018\u0000\ng\n\u0000\u0004\nEVnb\u000e\ng\u0000\u0001\nh\u0011\nh\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\nf\u0000\u0001\ni\u0011\ni\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00002\u00000\u00001\n\u0000\b\u000bkfrmID \u000e\u0002f\u0000\u0001\u0014\nj\u000e\nj\u0000\u0004\u0019\nk\nl\u000e\nk\u0000\u0003\u0018\u0000\nm\n\u0000\u0004\nEVnb\u000e\nm\u0000\u0001\nn\u0011\nn\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\nl\u0000\u0001\no\u0011\no\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00009\n\u0000\b\u000bkfrmID \u000e\u0002g\u0000\u0001\u0014\np\u000e\np\u0000\u0004\u0019\nq\nr\u000e\nq\u0000\u0003\u0018\u0000\ns\n\u0000\u0004\nEVnb\u000e\ns\u0000\u0001\nt\u0011\nt\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\nr\u0000\u0001\nu\u0011\nu\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00008\n\u0000\b\u000bkfrmID \u000e\u0002h\u0000\u0001\u0014\nv\u000e\nv\u0000\u0004\u0019\nw\nx\u000e\nw\u0000\u0003\u0018\u0000\ny\n\u0000\u0004\nEVnb\u000e\ny\u0000\u0001\nz\u0011\nz\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\nx\u0000\u0001\n{\u0011\n{\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00007\n\u0000\b\u000bkfrmID \u000e\u0002i\u0000\u0001\u0014\n|\u000e\n|\u0000\u0004\u0019\n}\n~\u000e\n}\u0000\u0003\u0018\u0000\n\n\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\n~\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00006\n\u0000\b\u000bkfrmID \u000e\u0002j\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n\n\u000e\n\u0000\u0003\u0018\u0000\n\n\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0002k\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n\n\u000e\n\u0000\u0003\u0018\u0000\n\n\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u0014\u0000G\u0000e\u0000s\u0000u\u0000n\u0000d\u0000h\u0000e\u0000i\u0000t\n\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00009\u00004\n\u0000\b\u000bkfrmID \u000e\u0002l\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n\n\u000e\n\u0000\u0003\u0018\u0000\n\n\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00001\u00006\n\u0000\b\u000bkfrmID \u000e\u0002m\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n\n\u000e\n\u0000\u0003\u0018\u0000\n\n\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00006\u00007\n\u0000\b\u000bkfrmID \u000e\u0002n\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n~\n}\u000e\n\u0000\u0003\u0018\u0000|\n\n|\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n~\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00006\u00006\n}\u0000\b\u000bkfrmID \u000e\u0002o\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n{\nz\u000e\n\u0000\u0003\u0018\u0000y\n\ny\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n{\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00004\u00003\nz\u0000\b\u000bkfrmID \u000e\u0002p\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nx\nw\u000e\n\u0000\u0003\u0018\u0000v\n\nv\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nx\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00001\u00003\u00009\nw\u0000\b\u000bkfrmID \u000e\u0002q\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nu\nt\u000e\n\u0000\u0003\u0018\u0000s\n\ns\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nu\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00009\u00005\nt\u0000\b\u000bkfrmID \u000e\u0002r\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nr\nq\u000e\n\u0000\u0003\u0018\u0000p\n\np\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nr\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00008\u00002\nq\u0000\b\u000bkfrmID \u000e\u0002s\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\no\nn\u000e\n\u0000\u0003\u0018\u0000m\n\nm\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\no\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00007\u00009\nn\u0000\b\u000bkfrmID \u000e\u0002t\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nl\nk\u000e\n\u0000\u0003\u0018\u0000j\n\nj\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\nl\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00007\u00005\nk\u0000\b\u000bkfrmID \u000e\u0002u\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\ni\nh\u000e\n\u0000\u0003\u0018\u0000g\n\ng\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\ni\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00007\u00007\nh\u0000\b\u000bkfrmID \u000e\u0002v\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nf\ne\u000e\n\u0000\u0003\u0018\u0000d\n\nd\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u0006\u0000D\u0000o\u0000c\nf\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00007\u00006\ne\u0000\b\u000bkfrmID \u000e\u0002w\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nc\nb\u000e\n\u0000\u0003\u0018\u0000a\n\na\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nc\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00005\u00007\nb\u0000\b\u000bkfrmID \u000e\u0002x\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n`\n_\u000e\n\u0000\u0003\u0018\u0000^\n\n^\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n`\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00005\u00006\n_\u0000\b\u000bkfrmID \u000e\u0002y\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\n]\n\\\u000e\n\u0000\u0003\u0018\u0000[\n\n[\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n]\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00004\u00008\n\\\u0000\b\u000bkfrmID \u000e\u0002z\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nZ\nY\u000e\n\u0000\u0003\u0018\u0000X\n\nX\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\nZ\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00004\u00004\nY\u0000\b\u000bkfrmID \u000e\u0002{\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nW\nV\u000e\n\u0000\u0003\u0018\u0000U\n\nU\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nW\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00004\u00003\nV\u0000\b\u000bkfrmID \u000e\u0002|\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nT\nS\u000e\n\u0000\u0003\u0018\u0000R\n\nR\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\nT\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00004\u00008\u00001\u00004\nS\u0000\b\u000bkfrmID \u000e\u0002}\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nQ\nP\u000e\n\u0000\u0003\u0018\u0000O\n\nO\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nQ\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00001\u00006\nP\u0000\b\u000bkfrmID \u000e\u0002~\u0000\u0001\u0014\n\u000e\n\u0000\u0004\u0019\nN\nM\u000e\n\u0000\u0003\u0018\u0000L\n\nL\u0000\u0004\nEVnb\u000e\n\u0000\u0001\n\u0011\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\nN\u0000\u0004\nEVnn\u000e\n\u0000\u0001\n\u0011\n\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00009\u00000\nM\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u0000\u000e\u000b\u0000\u0000\u0004\u0019\u000b\u0001K\u000b\u0002J\u000e\u000b\u0001\u0000\u0003\u0018\u0000I\u000b\u0003\nI\u0000\u0004\nEVnb\u000e\u000b\u0003\u0000\u0001\u000b\u0004\u0011\u000b\u0004\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nK\u0000\u0004\nEVnn\u000e\u000b\u0002\u0000\u0001\u000b\u0005\u0011\u000b\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00008\u00008\nJ\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u0006\u000e\u000b\u0006\u0000\u0004\u0019\u000b\u0007H\u000b\bG\u000e\u000b\u0007\u0000\u0003\u0018\u0000F\u000b\t\nF\u0000\u0004\nEVnb\u000e\u000b\t\u0000\u0001\u000b\n\u0011\u000b\n\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\nH\u0000\u0004\nEVnn\u000e\u000b\b\u0000\u0001\u000b\u000b\u0011\u000b\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00008\u00003\nG\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\f\u000e\u000b\f\u0000\u0004\u0019\u000b\rE\u000b\u000eD\u000e\u000b\r\u0000\u0003\u0018\u0000C\u000b\u000f\nC\u0000\u0004\nEVnb\u000e\u000b\u000f\u0000\u0001\u000b\u0010\u0011\u000b\u0010\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\nE\u0000\u0004\nEVnn\u000e\u000b\u000e\u0000\u0001\u000b\u0011\u0011\u000b\u0011\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00006\u00008\nD\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u0012\u000e\u000b\u0012\u0000\u0004\u0019\u000b\u0013B\u000b\u0014A\u000e\u000b\u0013\u0000\u0003\u0018\u0000@\u000b\u0015\n@\u0000\u0004\nEVnb\u000e\u000b\u0015\u0000\u0001\u000b\u0016\u0011\u000b\u0016\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\nB\u0000\u0004\nEVnn\u000e\u000b\u0014\u0000\u0001\u000b\u0017\u0011\u000b\u0017\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00006\u00003\nA\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u0018\u000e\u000b\u0018\u0000\u0004\u0019\u000b\u0019?\u000b\u001a>\u000e\u000b\u0019\u0000\u0003\u0018\u0000=\u000b\u001b\n=\u0000\u0004\nEVnb\u000e\u000b\u001b\u0000\u0001\u000b\u001c\u0011\u000b\u001c\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n?\u0000\u0004\nEVnn\u000e\u000b\u001a\u0000\u0001\u000b\u001d\u0011\u000b\u001d\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00005\u00000\n>\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u001e\u000e\u000b\u001e\u0000\u0004\u0019\u000b\u001f<\u000b ;\u000e\u000b\u001f\u0000\u0003\u0018\u0000:\u000b!\n:\u0000\u0004\nEVnb\u000e\u000b!\u0000\u0001\u000b\"\u0011\u000b\"\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n<\u0000\u0004\nEVnn\u000e\u000b \u0000\u0001\u000b#\u0011\u000b#\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00003\u00003\n;\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b$\u000e\u000b$\u0000\u0004\u0019\u000b%9\u000b&8\u000e\u000b%\u0000\u0003\u0018\u00007\u000b'\n7\u0000\u0004\nEVnb\u000e\u000b'\u0000\u0001\u000b(\u0011\u000b(\u0000>\u0000V\u0000o\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000u\u0000n\u0000d\u0000 \u0000V\u0000e\u0000r\u0000\u0000f\u0000f\u0000e\u0000n\u0000t\u0000l\u0000i\u0000c\u0000h\u0000u\u0000n\u0000g\u0000e\u0000n\n9\u0000\u0004\nEVnn\u000e\u000b&\u0000\u0001\u000b)\u0011\u000b)\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00008\u00001\n8\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b*\u000e\u000b*\u0000\u0004\u0019\u000b+6\u000b,5\u000e\u000b+\u0000\u0003\u0018\u00004\u000b-\n4\u0000\u0004\nEVnb\u000e\u000b-\u0000\u0001\u000b.\u0011\u000b.\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n6\u0000\u0004\nEVnn\u000e\u000b,\u0000\u0001\u000b\/\u0011\u000b\/\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00003\u00000\n5\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b0\u000e\u000b0\u0000\u0004\u0019\u000b13\u000b22\u000e\u000b1\u0000\u0003\u0018\u00001\u000b3\n1\u0000\u0004\nEVnb\u000e\u000b3\u0000\u0001\u000b4\u0011\u000b4\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n3\u0000\u0004\nEVnn\u000e\u000b2\u0000\u0001\u000b5\u0011\u000b5\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00002\u00008\n2\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b6\u000e\u000b6\u0000\u0004\u0019\u000b70\u000b8\/\u000e\u000b7\u0000\u0003\u0018\u0000.\u000b9\n.\u0000\u0004\nEVnb\u000e\u000b9\u0000\u0001\u000b:\u0011\u000b:\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n0\u0000\u0004\nEVnn\u000e\u000b8\u0000\u0001\u000b;\u0011\u000b;\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00009\u00001\u00006\n\/\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b<\u000e\u000b<\u0000\u0004\u0019\u000b=-\u000b>,\u000e\u000b=\u0000\u0003\u0018\u0000+\u000b?\n+\u0000\u0004\nEVnb\u000e\u000b?\u0000\u0001\u000b@\u0011\u000b@\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n-\u0000\u0004\nEVnn\u000e\u000b>\u0000\u0001\u000bA\u0011\u000bA\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00008\u00007\u00008\n,\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bB\u000e\u000bB\u0000\u0004\u0019\u000bC*\u000bD)\u000e\u000bC\u0000\u0003\u0018\u0000(\u000bE\n(\u0000\u0004\nEVnb\u000e\u000bE\u0000\u0001\u000bF\u0011\u000bF\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n*\u0000\u0004\nEVnn\u000e\u000bD\u0000\u0001\u000bG\u0011\u000bG\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00008\u00007\u00009\n)\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bH\u000e\u000bH\u0000\u0004\u0019\u000bI'\u000bJ&\u000e\u000bI\u0000\u0003\u0018\u0000%\u000bK\n%\u0000\u0004\nEVnb\u000e\u000bK\u0000\u0001\u000bL\u0011\u000bL\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n'\u0000\u0004\nEVnn\u000e\u000bJ\u0000\u0001\u000bM\u0011\u000bM\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00006\u00008\n&\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bN\u000e\u000bN\u0000\u0004\u0019\u000bO$\u000bP#\u000e\u000bO\u0000\u0003\u0018\u0000\"\u000bQ\n\"\u0000\u0004\nEVnb\u000e\u000bQ\u0000\u0001\u000bR\u0011\u000bR\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n$\u0000\u0004\nEVnn\u000e\u000bP\u0000\u0001\u000bS\u0011\u000bS\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00006\u00009\n#\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bT\u000e\u000bT\u0000\u0004\u0019\u000bU!\u000bV \u000e\u000bU\u0000\u0003\u0018\u0000\u001f\u000bW\n\u001f\u0000\u0004\nEVnb\u000e\u000bW\u0000\u0001\u000bX\u0011\u000bX\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n!\u0000\u0004\nEVnn\u000e\u000bV\u0000\u0001\u000bY\u0011\u000bY\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00004\u00001\n \u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bZ\u000e\u000bZ\u0000\u0004\u0019\u000b[\u001e\u000b\\\u001d\u000e\u000b[\u0000\u0003\u0018\u0000\u001c\u000b]\n\u001c\u0000\u0004\nEVnb\u000e\u000b]\u0000\u0001\u000b^\u0011\u000b^\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u001e\u0000\u0004\nEVnn\u000e\u000b\\\u0000\u0001\u000b_\u0011\u000b_\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00007\n\u001d\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b`\u000e\u000b`\u0000\u0004\u0019\u000ba\u001b\u000bb\u001a\u000e\u000ba\u0000\u0003\u0018\u0000\u0019\u000bc\n\u0019\u0000\u0004\nEVnb\u000e\u000bc\u0000\u0001\u000bd\u0011\u000bd\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u001b\u0000\u0004\nEVnn\u000e\u000bb\u0000\u0001\u000be\u0011\u000be\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00008\n\u001a\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bf\u000e\u000bf\u0000\u0004\u0019\u000bg\u0018\u000bh\u0017\u000e\u000bg\u0000\u0003\u0018\u0000\u0016\u000bi\n\u0016\u0000\u0004\nEVnb\u000e\u000bi\u0000\u0001\u000bj\u0011\u000bj\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0018\u0000\u0004\nEVnn\u000e\u000bh\u0000\u0001\u000bk\u0011\u000bk\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00004\n\u0017\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bl\u000e\u000bl\u0000\u0004\u0019\u000bm\u0015\u000bn\u0014\u000e\u000bm\u0000\u0003\u0018\u0000\u0013\u000bo\n\u0013\u0000\u0004\nEVnb\u000e\u000bo\u0000\u0001\u000bp\u0011\u000bp\u0000\f\u0000R\u0000e\u0000i\u0000s\u0000e\u0000n\n\u0015\u0000\u0004\nEVnn\u000e\u000bn\u0000\u0001\u000bq\u0011\u000bq\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00006\n\u0014\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000br\u000e\u000br\u0000\u0004\u0019\u000bs\u0012\u000bt\u0011\u000e\u000bs\u0000\u0003\u0018\u0000\u0010\u000bu\n\u0010\u0000\u0004\nEVnb\u000e\u000bu\u0000\u0001\u000bv\u0011\u000bv\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0012\u0000\u0004\nEVnn\u000e\u000bt\u0000\u0001\u000bw\u0011\u000bw\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00005\n\u0011\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000bx\u000e\u000bx\u0000\u0004\u0019\u000by\u000f\u000bz\u000e\u000e\u000by\u0000\u0003\u0018\u0000\r\u000b{\n\r\u0000\u0004\nEVnb\u000e\u000b{\u0000\u0001\u000b|\u0011\u000b|\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u000f\u0000\u0004\nEVnn\u000e\u000bz\u0000\u0001\u000b}\u0011\u000b}\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00002\n\u000e\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b~\u000e\u000b~\u0000\u0004\u0019\u000b\f\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\n\u000b\n\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\f\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00001\n\u000b\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\t\u000b\b\u000e\u000b\u0000\u0003\u0018\u0000\u0007\u000b\n\u0007\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\t\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00002\u00009\n\b\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u0006\u000b\u0005\u000e\u000b\u0000\u0003\u0018\u0000\u0004\u000b\n\u0004\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0006\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00007\u00000\u00001\n\u0005\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u0003\u000b\u0002\u000e\u000b\u0000\u0003\u0018\u0000\u0001\u000b\n\u0001\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u00002\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\n\u0003\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00009\u00006\n\u0002\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u0000\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00008\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00006\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\f\u0000R\u0000e\u0000i\u0000s\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00006\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0006\u0000D\u0000o\u0000c\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00003\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00003\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00006\u00000\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00009\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00008\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\f\u0000R\u0000e\u0000i\u0000s\u0000e\u0000n\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00008\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00007\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00007\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00007\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0006\u0000P\u0000D\u0000T\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00006\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00000\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00004\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000b\u000e\u000b\u0000\u0004\u0019\u000b\u000b\u000e\u000b\u0000\u0003\u0018\u0000\u000b\n\u0000\u0004\nEVnb\u000e\u000b\u0000\u0001\f\u0000\u0011\f\u0000\u0000\u0006\u0000D\u0000o\u0000c\n\u0000\u0004\nEVnn\u000e\u000b\u0000\u0001\f\u0001\u0011\f\u0001\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00004\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u0002\u000e\f\u0002\u0000\u0004\u0019\f\u0003\f\u0004\u000e\f\u0003\u0000\u0003\u0018\u0000\f\u0005\n\u0000\u0004\nEVnb\u000e\f\u0005\u0000\u0001\f\u0006\u0011\f\u0006\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f\u0004\u0000\u0001\f\u0007\u0011\f\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00001\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\b\u000e\f\b\u0000\u0004\u0019\f\t\f\n\u000e\f\t\u0000\u0003\u0018\u0000\f\u000b\n\u0000\u0004\nEVnb\u000e\f\u000b\u0000\u0001\f\f\u0011\f\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f\n\u0000\u0001\f\r\u0011\f\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00001\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\u000e\f\u000e\u0000\u0004\u0019\f\u000f\f\u0010\u000e\f\u000f\u0000\u0003\u0018\u0000\f\u0011\n\u0000\u0004\nEVnb\u000e\f\u0011\u0000\u0001\f\u0012\u0011\f\u0012\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f\u0010\u0000\u0001\f\u0013\u0011\f\u0013\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00001\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u0014\u000e\f\u0014\u0000\u0004\u0019\f\u0015\f\u0016\u000e\f\u0015\u0000\u0003\u0018\u0000\f\u0017\n\u0000\u0004\nEVnb\u000e\f\u0017\u0000\u0001\f\u0018\u0011\f\u0018\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f\u0016\u0000\u0001\f\u0019\u0011\f\u0019\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00000\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u001a\u000e\f\u001a\u0000\u0004\u0019\f\u001b\f\u001c\u000e\f\u001b\u0000\u0003\u0018\u0000\f\u001d\n\u0000\u0004\nEVnb\u000e\f\u001d\u0000\u0001\f\u001e\u0011\f\u001e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f\u001c\u0000\u0001\f\u001f\u0011\f\u001f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00000\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f \u000e\f \u0000\u0004\u0019\f!\f\"\u000e\f!\u0000\u0003\u0018\u0000\f#\n\u0000\u0004\nEVnb\u000e\f#\u0000\u0001\f$\u0011\f$\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f\"\u0000\u0001\f%\u0011\f%\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00009\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f&\u000e\f&\u0000\u0004\u0019\f'\f(\u000e\f'\u0000\u0003\u0018\u0000\f)\n\u0000\u0004\nEVnb\u000e\f)\u0000\u0001\f*\u0011\f*\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f(\u0000\u0001\f+\u0011\f+\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00009\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f,\u000e\f,\u0000\u0004\u0019\f-\f.\u000e\f-\u0000\u0003\u0018\u0000\f\/\n\u0000\u0004\nEVnb\u000e\f\/\u0000\u0001\f0\u0011\f0\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f.\u0000\u0001\f1\u0011\f1\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00009\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f2\u000e\f2\u0000\u0004\u0019\f3\f4\u000e\f3\u0000\u0003\u0018\u0000\f5\n\u0000\u0004\nEVnb\u000e\f5\u0000\u0001\f6\u0011\f6\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\f4\u0000\u0001\f7\u0011\f7\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00008\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f8\u000e\f8\u0000\u0004\u0019\f9\f:\u000e\f9\u0000\u0003\u0018\u0000\f;\n\u0000\u0004\nEVnb\u000e\f;\u0000\u0001\f<\u0011\f<\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f:\u0000\u0001\f=\u0011\f=\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00006\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f>\u000e\f>\u0000\u0004\u0019\f?\f@\u000e\f?\u0000\u0003\u0018\u0000\fA\n\u0000\u0004\nEVnb\u000e\fA\u0000\u0001\fB\u0011\fB\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f@\u0000\u0001\fC\u0011\fC\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00004\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fD\u000e\fD\u0000\u0004\u0019\fE\fF\u000e\fE\u0000\u0003\u0018\u0000\fG\n\u0000\u0004\nEVnb\u000e\fG\u0000\u0001\fH\u0011\fH\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\fF\u0000\u0001\fI\u0011\fI\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00005\u00007\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fJ\u000e\fJ\u0000\u0004\u0019\fK\fL\u000e\fK\u0000\u0003\u0018\u0000\fM\n\u0000\u0004\nEVnb\u000e\fM\u0000\u0001\fN\u0011\fN\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\fL\u0000\u0001\fO\u0011\fO\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00003\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fP\u000e\fP\u0000\u0004\u0019\fQ\fR\u000e\fQ\u0000\u0003\u0018\u0000\fS\n\u0000\u0004\nEVnb\u000e\fS\u0000\u0001\fT\u0011\fT\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\fR\u0000\u0001\fU\u0011\fU\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00002\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fV\u000e\fV\u0000\u0004\u0019\fW\fX\u000e\fW\u0000\u0003\u0018\u0000\fY\n\u0000\u0004\nEVnb\u000e\fY\u0000\u0001\fZ\u0011\fZ\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\fX\u0000\u0001\f[\u0011\f[\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00002\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\\\u000e\f\\\u0000\u0004\u0019\f]\f^\u000e\f]\u0000\u0003\u0018\u0000\f_\n\u0000\u0004\nEVnb\u000e\f_\u0000\u0001\f`\u0011\f`\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f^\u0000\u0001\fa\u0011\fa\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00002\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fb\u000e\fb\u0000\u0004\u0019\fc\fd\u000e\fc\u0000\u0003\u0018\u0000\fe\n\u0000\u0004\nEVnb\u000e\fe\u0000\u0001\ff\u0011\ff\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\fd\u0000\u0001\fg\u0011\fg\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00000\u00009\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fh\u000e\fh\u0000\u0004\u0019\fi\fj\u000e\fi\u0000\u0003\u0018\u0000\fk\n\u0000\u0004\nEVnb\u000e\fk\u0000\u0001\fl\u0011\fl\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\fj\u0000\u0001\fm\u0011\fm\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00001\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fn\u000e\fn\u0000\u0004\u0019\fo\fp\u000e\fo\u0000\u0003\u0018\u0000\fq\n\u0000\u0004\nEVnb\u000e\fq\u0000\u0001\fr\u0011\fr\u0000\u000e\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\n\u0000\u0004\nEVnn\u000e\fp\u0000\u0001\fs\u0011\fs\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00004\u00007\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\ft\u000e\ft\u0000\u0004\u0019\fu\fv\u000e\fu\u0000\u0003\u0018\u0000\fw\n\u0000\u0004\nEVnb\u000e\fw\u0000\u0001\fx\u0011\fx\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\fv\u0000\u0001\fy\u0011\fy\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00003\u00000\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\fz\u000e\fz\u0000\u0004\u0019\f{\f|\u000e\f{\u0000\u0003\u0018\u0000\f}\n\u0000\u0004\nEVnb\u000e\f}\u0000\u0001\f~\u0011\f~\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f|\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00009\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f\f\u000e\f\u0000\u0003\u0018\u0000\f\n\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00009\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f\f\u000e\f\u0000\u0003\u0018\u0000\f\n\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u0006\u0000U\u0000n\u0000i\n\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00008\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f\f\u000e\f\u0000\u0003\u0018\u0000\f\n\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u0006\u0000U\u0000n\u0000i\n\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00007\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f\f\u000e\f\u0000\u0003\u0018\u0000\f\n\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\n\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00007\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f\f~\u000e\f\u0000\u0003\u0018\u0000}\f\n}\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00006\u00007\n~\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f|\f{\u000e\f\u0000\u0003\u0018\u0000z\f\nz\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u0006\u0000P\u0000D\u0000T\n|\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00006\u00004\n{\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fy\fx\u000e\f\u0000\u0003\u0018\u0000w\f\nw\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\ny\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00006\u00002\nx\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fv\fu\u000e\f\u0000\u0003\u0018\u0000t\f\nt\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nv\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00004\u00005\nu\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fs\fr\u000e\f\u0000\u0003\u0018\u0000q\f\nq\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u000e\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\ns\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00004\u00004\nr\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fp\fo\u000e\f\u0000\u0003\u0018\u0000n\f\nn\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u0006\u0000U\u0000n\u0000i\np\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00002\u00005\no\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fm\fl\u000e\f\u0000\u0003\u0018\u0000k\f\nk\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nm\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00000\u00008\nl\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fj\fi\u000e\f\u0000\u0003\u0018\u0000h\f\nh\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nj\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00000\u00003\ni\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fg\ff\u000e\f\u0000\u0003\u0018\u0000e\f\ne\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000\u0006\u0000U\u0000n\u0000i\ng\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00002\u00000\u00001\nf\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fd\fc\u000e\f\u0000\u0003\u0018\u0000b\f\nb\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nd\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00003\u00003\u00002\u00006\nc\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fa\f`\u000e\f\u0000\u0003\u0018\u0000_\f\n_\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\na\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00008\u00009\n`\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f^\f]\u000e\f\u0000\u0003\u0018\u0000\\\f\n\\\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n^\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00008\u00003\n]\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\f[\fZ\u000e\f\u0000\u0003\u0018\u0000Y\f\nY\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n[\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00008\u00004\nZ\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fX\fW\u000e\f\u0000\u0003\u0018\u0000V\f\nV\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nX\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00008\u00000\u00000\nW\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fU\fT\u000e\f\u0000\u0003\u0018\u0000S\f\nS\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nU\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00007\u00008\nT\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fR\fQ\u000e\f\u0000\u0003\u0018\u0000P\f\nP\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nR\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00006\u00007\nQ\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fO\fN\u000e\f\u0000\u0003\u0018\u0000M\f\nM\u0000\u0004\nEVnb\u000e\f\u0000\u0001\f\u0011\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nO\u0000\u0004\nEVnn\u000e\f\u0000\u0001\f\u0011\f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00004\u00007\nN\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\f\u000e\f\u0000\u0004\u0019\fL\r\u0000K\u000e\f\u0000\u0003\u0018\u0000J\r\u0001\nJ\u0000\u0004\nEVnb\u000e\r\u0001\u0000\u0001\r\u0002\u0011\r\u0002\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nL\u0000\u0004\nEVnn\u000e\r\u0000\u0000\u0001\r\u0003\u0011\r\u0003\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00006\nK\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u0004\u000e\r\u0004\u0000\u0004\u0019\r\u0005I\r\u0006H\u000e\r\u0005\u0000\u0003\u0018\u0000G\r\u0007\nG\u0000\u0004\nEVnb\u000e\r\u0007\u0000\u0001\r\b\u0011\r\b\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nI\u0000\u0004\nEVnn\u000e\r\u0006\u0000\u0001\r\t\u0011\r\t\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00008\nH\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\n\u000e\r\n\u0000\u0004\u0019\r\u000bF\r\fE\u000e\r\u000b\u0000\u0003\u0018\u0000D\r\r\nD\u0000\u0004\nEVnb\u000e\r\r\u0000\u0001\r\u000e\u0011\r\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nF\u0000\u0004\nEVnn\u000e\r\f\u0000\u0001\r\u000f\u0011\r\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00007\nE\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u0010\u000e\r\u0010\u0000\u0004\u0019\r\u0011C\r\u0012B\u000e\r\u0011\u0000\u0003\u0018\u0000A\r\u0013\nA\u0000\u0004\nEVnb\u000e\r\u0013\u0000\u0001\r\u0014\u0011\r\u0014\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nC\u0000\u0004\nEVnn\u000e\r\u0012\u0000\u0001\r\u0015\u0011\r\u0015\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00003\nB\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u0016\u000e\r\u0016\u0000\u0004\u0019\r\u0017@\r\u0018?\u000e\r\u0017\u0000\u0003\u0018\u0000>\r\u0019\n>\u0000\u0004\nEVnb\u000e\r\u0019\u0000\u0001\r\u001a\u0011\r\u001a\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n@\u0000\u0004\nEVnn\u000e\r\u0018\u0000\u0001\r\u001b\u0011\r\u001b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00004\n?\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u001c\u000e\r\u001c\u0000\u0004\u0019\r\u001d=\r\u001e<\u000e\r\u001d\u0000\u0003\u0018\u0000;\r\u001f\n;\u0000\u0004\nEVnb\u000e\r\u001f\u0000\u0001\r \u0011\r \u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n=\u0000\u0004\nEVnn\u000e\r\u001e\u0000\u0001\r!\u0011\r!\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00001\u00009\n<\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\"\u000e\r\"\u0000\u0004\u0019\r#:\r$9\u000e\r#\u0000\u0003\u0018\u00008\r%\n8\u0000\u0004\nEVnb\u000e\r%\u0000\u0001\r&\u0011\r&\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n:\u0000\u0004\nEVnn\u000e\r$\u0000\u0001\r'\u0011\r'\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00002\u00000\n9\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r(\u000e\r(\u0000\u0004\u0019\r)7\r*6\u000e\r)\u0000\u0003\u0018\u00005\r+\n5\u0000\u0004\nEVnb\u000e\r+\u0000\u0001\r,\u0011\r,\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n7\u0000\u0004\nEVnn\u000e\r*\u0000\u0001\r-\u0011\r-\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00002\u00001\u00001\u00007\n6\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r.\u000e\r.\u0000\u0004\u0019\r\/4\r03\u000e\r\/\u0000\u0003\u0018\u00002\r1\n2\u0000\u0004\nEVnb\u000e\r1\u0000\u0001\r2\u0011\r2\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n4\u0000\u0004\nEVnn\u000e\r0\u0000\u0001\r3\u0011\r3\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00009\u00009\u00009\n3\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r4\u000e\r4\u0000\u0004\u0019\r51\r60\u000e\r5\u0000\u0003\u0018\u0000\/\r7\n\/\u0000\u0004\nEVnb\u000e\r7\u0000\u0001\r8\u0011\r8\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n1\u0000\u0004\nEVnn\u000e\r6\u0000\u0001\r9\u0011\r9\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00009\u00005\u00003\n0\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r:\u000e\r:\u0000\u0004\u0019\r;.\r<-\u000e\r;\u0000\u0003\u0018\u0000,\r=\n,\u0000\u0004\nEVnb\u000e\r=\u0000\u0001\r>\u0011\r>\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n.\u0000\u0004\nEVnn\u000e\r<\u0000\u0001\r?\u0011\r?\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00009\u00004\u00006\n-\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r@\u000e\r@\u0000\u0004\u0019\rA+\rB*\u000e\rA\u0000\u0003\u0018\u0000)\rC\n)\u0000\u0004\nEVnb\u000e\rC\u0000\u0001\rD\u0011\rD\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n+\u0000\u0004\nEVnn\u000e\rB\u0000\u0001\rE\u0011\rE\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00009\u00000\n*\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rF\u000e\rF\u0000\u0004\u0019\rG(\rH'\u000e\rG\u0000\u0003\u0018\u0000&\rI\n&\u0000\u0004\nEVnb\u000e\rI\u0000\u0001\rJ\u0011\rJ\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n(\u0000\u0004\nEVnn\u000e\rH\u0000\u0001\rK\u0011\rK\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00009\u00001\n'\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rL\u000e\rL\u0000\u0004\u0019\rM%\rN$\u000e\rM\u0000\u0003\u0018\u0000#\rO\n#\u0000\u0004\nEVnb\u000e\rO\u0000\u0001\rP\u0011\rP\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n%\u0000\u0004\nEVnn\u000e\rN\u0000\u0001\rQ\u0011\rQ\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00008\u00001\n$\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rR\u000e\rR\u0000\u0004\u0019\rS\"\rT!\u000e\rS\u0000\u0003\u0018\u0000 \rU\n \u0000\u0004\nEVnb\u000e\rU\u0000\u0001\rV\u0011\rV\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\"\u0000\u0004\nEVnn\u000e\rT\u0000\u0001\rW\u0011\rW\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00006\u00007\n!\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rX\u000e\rX\u0000\u0004\u0019\rY\u001f\rZ\u001e\u000e\rY\u0000\u0003\u0018\u0000\u001d\r[\n\u001d\u0000\u0004\nEVnb\u000e\r[\u0000\u0001\r\\\u0011\r\\\u0000\b\u0000F\u0000K\u0000I\u0000E\n\u001f\u0000\u0004\nEVnn\u000e\rZ\u0000\u0001\r]\u0011\r]\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00005\u00003\n\u001e\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r^\u000e\r^\u0000\u0004\u0019\r_\u001c\r`\u001b\u000e\r_\u0000\u0003\u0018\u0000\u001a\ra\n\u001a\u0000\u0004\nEVnb\u000e\ra\u0000\u0001\rb\u0011\rb\u0000\b\u0000F\u0000K\u0000I\u0000E\n\u001c\u0000\u0004\nEVnn\u000e\r`\u0000\u0001\rc\u0011\rc\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00008\u00003\u00006\n\u001b\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rd\u000e\rd\u0000\u0004\u0019\re\u0019\rf\u0018\u000e\re\u0000\u0003\u0018\u0000\u0017\rg\n\u0017\u0000\u0004\nEVnb\u000e\rg\u0000\u0001\rh\u0011\rh\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0019\u0000\u0004\nEVnn\u000e\rf\u0000\u0001\ri\u0011\ri\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00007\u00008\u00003\n\u0018\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rj\u000e\rj\u0000\u0004\u0019\rk\u0016\rl\u0015\u000e\rk\u0000\u0003\u0018\u0000\u0014\rm\n\u0014\u0000\u0004\nEVnb\u000e\rm\u0000\u0001\rn\u0011\rn\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0016\u0000\u0004\nEVnn\u000e\rl\u0000\u0001\ro\u0011\ro\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00007\u00001\u00001\n\u0015\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rp\u000e\rp\u0000\u0004\u0019\rq\u0013\rr\u0012\u000e\rq\u0000\u0003\u0018\u0000\u0011\rs\n\u0011\u0000\u0004\nEVnb\u000e\rs\u0000\u0001\rt\u0011\rt\u0000\u0006\u0000U\u0000n\u0000i\n\u0013\u0000\u0004\nEVnn\u000e\rr\u0000\u0001\ru\u0011\ru\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00006\u00005\u00004\n\u0012\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\rv\u000e\rv\u0000\u0004\u0019\rw\u0010\rx\u000f\u000e\rw\u0000\u0003\u0018\u0000\u000e\ry\n\u000e\u0000\u0004\nEVnb\u000e\ry\u0000\u0001\rz\u0011\rz\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0010\u0000\u0004\nEVnn\u000e\rx\u0000\u0001\r{\u0011\r{\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00006\u00000\u00001\n\u000f\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r|\u000e\r|\u0000\u0004\u0019\r}\r\r~\f\u000e\r}\u0000\u0003\u0018\u0000\u000b\r\n\u000b\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\r\u0000\u0004\nEVnn\u000e\r~\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00009\u00003\n\f\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\n\r\t\u000e\r\u0000\u0003\u0018\u0000\b\r\n\b\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00009\u00002\n\t\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\u0007\r\u0006\u000e\r\u0000\u0003\u0018\u0000\u0005\r\n\u0005\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0007\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00007\u00004\n\u0006\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\u0004\r\u0003\u000e\r\u0000\u0003\u0018\u0000\u0002\r\n\u0002\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0004\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00005\u00000\n\u0003\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\u0001\r\u0000\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0001\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00001\n\u0000\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00004\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00004\u00000\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00008\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00009\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00005\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00006\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00004\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00004\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00003\u00002\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00003\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00007\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\r\u000e\r\u0000\u0004\u0019\r\r\u000e\r\u0000\u0003\u0018\u0000\r\n\u0000\u0004\nEVnb\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\r\u0000\u0001\r\u0011\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00001\n\u0000\b\u000bkfrmID \u000e\u0002\u0000\u0001\u0014\u000e\u0000\u000e\u000e\u0000\u0000\u0004\u0019\u000e\u0001\u000e\u0002\u000e\u000e\u0001\u0000\u0003\u0018\u0000\u000e\u0003\n\u0000\u0004\nEVnb\u000e\u000e\u0003\u0000\u0001\u000e\u0004\u0011\u000e\u0004\u0000\u0006\u0000U\u0000n\u0000i\n\u0000\u0004\nEVnn\u000e\u000e\u0002\u0000\u0001\u000e\u0005\u0011\u000e\u0005\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00002\u00003\u00003\n\u0000\b\u000bkfrmID \u000e\u0003\u0000\u0000\u0001\u0014\u000e\u0006\u000e\u000e\u0006\u0000\u0004\u0019\u000e\u0007\u000e\b\u000e\u000e\u0007\u0000\u0003\u0018\u0000\u000e\t\n\u0000\u0004\nEVnb\u000e\u000e\t\u0000\u0001\u000e\n\u0011\u000e\n\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\b\u0000\u0001\u000e\u000b\u0011\u000e\u000b\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00008\n\u0000\b\u000bkfrmID \u000e\u0003\u0001\u0000\u0001\u0014\u000e\f\u000e\u000e\f\u0000\u0004\u0019\u000e\r\u000e\u000e\u000e\u000e\r\u0000\u0003\u0018\u0000\u000e\u000f\n\u0000\u0004\nEVnb\u000e\u000e\u000f\u0000\u0001\u000e\u0010\u0011\u000e\u0010\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u0011\u000e\u0011\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00003\n\u0000\b\u000bkfrmID \u000e\u0003\u0002\u0000\u0001\u0014\u000e\u0012\u000e\u000e\u0012\u0000\u0004\u0019\u000e\u0013\u000e\u0014\u000e\u000e\u0013\u0000\u0003\u0018\u0000\u000e\u0015\n\u0000\u0004\nEVnb\u000e\u000e\u0015\u0000\u0001\u000e\u0016\u0011\u000e\u0016\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0014\u0000\u0001\u000e\u0017\u0011\u000e\u0017\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00007\n\u0000\b\u000bkfrmID \u000e\u0003\u0003\u0000\u0001\u0014\u000e\u0018\u000e\u000e\u0018\u0000\u0004\u0019\u000e\u0019\u000e\u001a\u000e\u000e\u0019\u0000\u0003\u0018\u0000\u000e\u001b\n\u0000\u0004\nEVnb\u000e\u000e\u001b\u0000\u0001\u000e\u001c\u0011\u000e\u001c\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u001a\u0000\u0001\u000e\u001d\u0011\u000e\u001d\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00003\n\u0000\b\u000bkfrmID \u000e\u0003\u0004\u0000\u0001\u0014\u000e\u001e\u000e\u000e\u001e\u0000\u0004\u0019\u000e\u001f\u000e \u000e\u000e\u001f\u0000\u0003\u0018\u0000\u000e!\n\u0000\u0004\nEVnb\u000e\u000e!\u0000\u0001\u000e\"\u0011\u000e\"\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e \u0000\u0001\u000e#\u0011\u000e#\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00005\n\u0000\b\u000bkfrmID \u000e\u0003\u0005\u0000\u0001\u0014\u000e$\u000e\u000e$\u0000\u0004\u0019\u000e%\u000e&\u000e\u000e%\u0000\u0003\u0018\u0000\u000e'\n\u0000\u0004\nEVnb\u000e\u000e'\u0000\u0001\u000e(\u0011\u000e(\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e&\u0000\u0001\u000e)\u0011\u000e)\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00005\n\u0000\b\u000bkfrmID \u000e\u0003\u0006\u0000\u0001\u0014\u000e*\u000e\u000e*\u0000\u0004\u0019\u000e+\u000e,\u000e\u000e+\u0000\u0003\u0018\u0000\u000e-\n\u0000\u0004\nEVnb\u000e\u000e-\u0000\u0001\u000e.\u0011\u000e.\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e,\u0000\u0001\u000e\/\u0011\u000e\/\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00004\n\u0000\b\u000bkfrmID \u000e\u0003\u0007\u0000\u0001\u0014\u000e0\u000e\u000e0\u0000\u0004\u0019\u000e1\u000e2\u000e\u000e1\u0000\u0003\u0018\u0000\u000e3\n\u0000\u0004\nEVnb\u000e\u000e3\u0000\u0001\u000e4\u0011\u000e4\u0000\u0006\u0000U\u0000n\u0000i\n\u0000\u0004\nEVnn\u000e\u000e2\u0000\u0001\u000e5\u0011\u000e5\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00002\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\b\u0000\u0001\u0014\u000e6\u000e\u000e6\u0000\u0004\u0019\u000e7\u000e8\u000e\u000e7\u0000\u0003\u0018\u0000\u000e9\n\u0000\u0004\nEVnb\u000e\u000e9\u0000\u0001\u000e:\u0011\u000e:\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e8\u0000\u0001\u000e;\u0011\u000e;\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00007\n\u0000\b\u000bkfrmID \u000e\u0003\t\u0000\u0001\u0014\u000e<\u000e\u000e<\u0000\u0004\u0019\u000e=\u000e>\u000e\u000e=\u0000\u0003\u0018\u0000\u000e?\n\u0000\u0004\nEVnb\u000e\u000e?\u0000\u0001\u000e@\u0011\u000e@\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e>\u0000\u0001\u000eA\u0011\u000eA\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\n\u0000\u0001\u0014\u000eB\u000e\u000eB\u0000\u0004\u0019\u000eC\u000eD\u000e\u000eC\u0000\u0003\u0018\u0000\u000eE\n\u0000\u0004\nEVnb\u000e\u000eE\u0000\u0001\u000eF\u0011\u000eF\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eD\u0000\u0001\u000eG\u0011\u000eG\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00008\n\u0000\b\u000bkfrmID \u000e\u0003\u000b\u0000\u0001\u0014\u000eH\u000e\u000eH\u0000\u0004\u0019\u000eI\u000eJ\u000e\u000eI\u0000\u0003\u0018\u0000\u000eK\n\u0000\u0004\nEVnb\u000e\u000eK\u0000\u0001\u000eL\u0011\u000eL\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eJ\u0000\u0001\u000eM\u0011\u000eM\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\f\u0000\u0001\u0014\u000eN\u000e\u000eN\u0000\u0004\u0019\u000eO\u000eP\u000e\u000eO\u0000\u0003\u0018\u0000\u000eQ\n\u0000\u0004\nEVnb\u000e\u000eQ\u0000\u0001\u000eR\u0011\u000eR\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eP\u0000\u0001\u000eS\u0011\u000eS\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00002\u00001\u00009\n\u0000\b\u000bkfrmID \u000e\u0003\r\u0000\u0001\u0014\u000eT\u000e\u000eT\u0000\u0004\u0019\u000eU\u000eV\u000e\u000eU\u0000\u0003\u0018\u0000\u000eW\n\u0000\u0004\nEVnb\u000e\u000eW\u0000\u0001\u000eX\u0011\u000eX\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eV\u0000\u0001\u000eY\u0011\u000eY\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00002\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0003\u000e\u0000\u0001\u0014\u000eZ\u000e\u000eZ\u0000\u0004\u0019\u000e[\u000e\\\u000e\u000e[\u0000\u0003\u0018\u0000\u000e]\n\u0000\u0004\nEVnb\u000e\u000e]\u0000\u0001\u000e^\u0011\u000e^\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\\\u0000\u0001\u000e_\u0011\u000e_\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00009\n\u0000\b\u000bkfrmID \u000e\u0003\u000f\u0000\u0001\u0014\u000e`\u000e\u000e`\u0000\u0004\u0019\u000ea\u000eb\u000e\u000ea\u0000\u0003\u0018\u0000\u000ec\n\u0000\u0004\nEVnb\u000e\u000ec\u0000\u0001\u000ed\u0011\u000ed\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eb\u0000\u0001\u000ee\u0011\u000ee\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00003\n\u0000\b\u000bkfrmID \u000e\u0003\u0010\u0000\u0001\u0014\u000ef\u000e\u000ef\u0000\u0004\u0019\u000eg\u000eh\u000e\u000eg\u0000\u0003\u0018\u0000\u000ei\n\u0000\u0004\nEVnb\u000e\u000ei\u0000\u0001\u000ej\u0011\u000ej\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000eh\u0000\u0001\u000ek\u0011\u000ek\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00004\u00005\n\u0000\b\u000bkfrmID \u000e\u0003\u0011\u0000\u0001\u0014\u000el\u000e\u000el\u0000\u0004\u0019\u000em\u000en\u000e\u000em\u0000\u0003\u0018\u0000\u000eo\n\u0000\u0004\nEVnb\u000e\u000eo\u0000\u0001\u000ep\u0011\u000ep\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000en\u0000\u0001\u000eq\u0011\u000eq\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00006\n\u0000\b\u000bkfrmID \u000e\u0003\u0012\u0000\u0001\u0014\u000er\u000e\u000er\u0000\u0004\u0019\u000es\u000et\u000e\u000es\u0000\u0003\u0018\u0000\u000eu\n\u0000\u0004\nEVnb\u000e\u000eu\u0000\u0001\u000ev\u0011\u000ev\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000et\u0000\u0001\u000ew\u0011\u000ew\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00002\n\u0000\b\u000bkfrmID \u000e\u0003\u0013\u0000\u0001\u0014\u000ex\u000e\u000ex\u0000\u0004\u0019\u000ey\u000ez\u000e\u000ey\u0000\u0003\u0018\u0000\u000e{\n\u0000\u0004\nEVnb\u000e\u000e{\u0000\u0001\u000e|\u0011\u000e|\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000ez\u0000\u0001\u000e}\u0011\u000e}\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\u0014\u0000\u0001\u0014\u000e~\u000e\u000e~\u0000\u0004\u0019\u000e\u000e\u000e\u000e\u0000\u0003\u0018\u0000\u000e\n\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00004\u00008\n\u0000\b\u000bkfrmID \u000e\u0003\u0015\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e\u000e\u000e\u000e\u0000\u0003\u0018\u0000\u000e\n\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00002\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\u0016\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e\u000e\u000e\u000e\u0000\u0003\u0018\u0000\u000e\n\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00008\n\u0000\b\u000bkfrmID \u000e\u0003\u0017\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e\u000e\u000e\u000e\u0000\u0003\u0018\u0000\u000e\n\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00009\n\u0000\b\u000bkfrmID \u000e\u0003\u0018\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e\u000e\u000e\u000e\u0000\u0003\u0018\u0000~\u000e\n~\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00000\n\u0000\b\u000bkfrmID \u000e\u0003\u0019\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e}\u000e|\u000e\u000e\u0000\u0003\u0018\u0000{\u000e\n{\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n}\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00007\n|\u0000\b\u000bkfrmID \u000e\u0003\u001a\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000ez\u000ey\u000e\u000e\u0000\u0003\u0018\u0000x\u000e\nx\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nz\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00005\ny\u0000\b\u000bkfrmID \u000e\u0003\u001b\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000ew\u000ev\u000e\u000e\u0000\u0003\u0018\u0000u\u000e\nu\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nw\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00006\nv\u0000\b\u000bkfrmID \u000e\u0003\u001c\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000et\u000es\u000e\u000e\u0000\u0003\u0018\u0000r\u000e\nr\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nt\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00004\ns\u0000\b\u000bkfrmID \u000e\u0003\u001d\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eq\u000ep\u000e\u000e\u0000\u0003\u0018\u0000o\u000e\no\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nq\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00001\u00002\np\u0000\b\u000bkfrmID \u000e\u0003\u001e\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000en\u000em\u000e\u000e\u0000\u0003\u0018\u0000l\u000e\nl\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nn\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00001\nm\u0000\b\u000bkfrmID \u000e\u0003\u001f\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000ek\u000ej\u000e\u000e\u0000\u0003\u0018\u0000i\u000e\ni\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nk\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00008\nj\u0000\b\u000bkfrmID \u000e\u0003 \u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eh\u000eg\u000e\u000e\u0000\u0003\u0018\u0000f\u000e\nf\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nh\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00009\ng\u0000\b\u000bkfrmID \u000e\u0003!\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000ee\u000ed\u000e\u000e\u0000\u0003\u0018\u0000c\u000e\nc\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\ne\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00006\nd\u0000\b\u000bkfrmID \u000e\u0003\"\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eb\u000ea\u000e\u000e\u0000\u0003\u0018\u0000`\u000e\n`\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nb\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00007\na\u0000\b\u000bkfrmID \u000e\u0003#\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e_\u000e^\u000e\u000e\u0000\u0003\u0018\u0000]\u000e\n]\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n_\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00004\u00009\n^\u0000\b\u000bkfrmID \u000e\u0003$\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000e\\\u000e[\u000e\u000e\u0000\u0003\u0018\u0000Z\u000e\nZ\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\\\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00004\u00006\n[\u0000\b\u000bkfrmID \u000e\u0003%\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eY\u000eX\u000e\u000e\u0000\u0003\u0018\u0000W\u000e\nW\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nY\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00004\u00007\nX\u0000\b\u000bkfrmID \u000e\u0003&\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eV\u000eU\u000e\u000e\u0000\u0003\u0018\u0000T\u000e\nT\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nV\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00002\nU\u0000\b\u000bkfrmID \u000e\u0003'\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eS\u000eR\u000e\u000e\u0000\u0003\u0018\u0000Q\u000e\nQ\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nS\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00001\nR\u0000\b\u000bkfrmID \u000e\u0003(\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eP\u000eO\u000e\u000e\u0000\u0003\u0018\u0000N\u000e\nN\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nP\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00006\nO\u0000\b\u000bkfrmID \u000e\u0003)\u0000\u0001\u0014\u000e\u000e\u000e\u0000\u0004\u0019\u000eM\u000eL\u000e\u000e\u0000\u0003\u0018\u0000K\u000e\nK\u0000\u0004\nEVnb\u000e\u000e\u0000\u0001\u000f\u0000\u0011\u000f\u0000\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nM\u0000\u0004\nEVnn\u000e\u000e\u0000\u0001\u000f\u0001\u0011\u000f\u0001\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00008\nL\u0000\b\u000bkfrmID \u000e\u0003*\u0000\u0001\u0014\u000f\u0002\u000e\u000f\u0002\u0000\u0004\u0019\u000f\u0003J\u000f\u0004I\u000e\u000f\u0003\u0000\u0003\u0018\u0000H\u000f\u0005\nH\u0000\u0004\nEVnb\u000e\u000f\u0005\u0000\u0001\u000f\u0006\u0011\u000f\u0006\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nJ\u0000\u0004\nEVnn\u000e\u000f\u0004\u0000\u0001\u000f\u0007\u0011\u000f\u0007\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00007\nI\u0000\b\u000bkfrmID \u000e\u0003+\u0000\u0001\u0014\u000f\b\u000e\u000f\b\u0000\u0004\u0019\u000f\tG\u000f\nF\u000e\u000f\t\u0000\u0003\u0018\u0000E\u000f\u000b\nE\u0000\u0004\nEVnb\u000e\u000f\u000b\u0000\u0001\u000f\f\u0011\u000f\f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nG\u0000\u0004\nEVnn\u000e\u000f\n\u0000\u0001\u000f\r\u0011\u000f\r\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00002\nF\u0000\b\u000bkfrmID \u000e\u0003,\u0000\u0001\u0014\u000f\u000e\u000e\u000f\u000e\u0000\u0004\u0019\u000f\u000fD\u000f\u0010C\u000e\u000f\u000f\u0000\u0003\u0018\u0000B\u000f\u0011\nB\u0000\u0004\nEVnb\u000e\u000f\u0011\u0000\u0001\u000f\u0012\u0011\u000f\u0012\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nD\u0000\u0004\nEVnn\u000e\u000f\u0010\u0000\u0001\u000f\u0013\u0011\u000f\u0013\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00002\nC\u0000\b\u000bkfrmID \u000e\u0003-\u0000\u0001\u0014\u000f\u0014\u000e\u000f\u0014\u0000\u0004\u0019\u000f\u0015A\u000f\u0016@\u000e\u000f\u0015\u0000\u0003\u0018\u0000?\u000f\u0017\n?\u0000\u0004\nEVnb\u000e\u000f\u0017\u0000\u0001\u000f\u0018\u0011\u000f\u0018\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\nA\u0000\u0004\nEVnn\u000e\u000f\u0016\u0000\u0001\u000f\u0019\u0011\u000f\u0019\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00003\n@\u0000\b\u000bkfrmID \u000e\u0003.\u0000\u0001\u0014\u000f\u001a\u000e\u000f\u001a\u0000\u0004\u0019\u000f\u001b>\u000f\u001c=\u000e\u000f\u001b\u0000\u0003\u0018\u0000<\u000f\u001d\n<\u0000\u0004\nEVnb\u000e\u000f\u001d\u0000\u0001\u000f\u001e\u0011\u000f\u001e\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n>\u0000\u0004\nEVnn\u000e\u000f\u001c\u0000\u0001\u000f\u001f\u0011\u000f\u001f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00005\n=\u0000\b\u000bkfrmID \u000e\u0003\/\u0000\u0001\u0014\u000f \u000e\u000f \u0000\u0004\u0019\u000f!;\u000f\":\u000e\u000f!\u0000\u0003\u0018\u00009\u000f#\n9\u0000\u0004\nEVnb\u000e\u000f#\u0000\u0001\u000f$\u0011\u000f$\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n;\u0000\u0004\nEVnn\u000e\u000f\"\u0000\u0001\u000f%\u0011\u000f%\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00002\n:\u0000\b\u000bkfrmID \u000e\u00030\u0000\u0001\u0014\u000f&\u000e\u000f&\u0000\u0004\u0019\u000f'8\u000f(7\u000e\u000f'\u0000\u0003\u0018\u00006\u000f)\n6\u0000\u0004\nEVnb\u000e\u000f)\u0000\u0001\u000f*\u0011\u000f*\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n8\u0000\u0004\nEVnn\u000e\u000f(\u0000\u0001\u000f+\u0011\u000f+\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00004\n7\u0000\b\u000bkfrmID \u000e\u00031\u0000\u0001\u0014\u000f,\u000e\u000f,\u0000\u0004\u0019\u000f-5\u000f.4\u000e\u000f-\u0000\u0003\u0018\u00003\u000f\/\n3\u0000\u0004\nEVnb\u000e\u000f\/\u0000\u0001\u000f0\u0011\u000f0\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n5\u0000\u0004\nEVnn\u000e\u000f.\u0000\u0001\u000f1\u0011\u000f1\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00003\n4\u0000\b\u000bkfrmID \u000e\u00032\u0000\u0001\u0014\u000f2\u000e\u000f2\u0000\u0004\u0019\u000f32\u000f41\u000e\u000f3\u0000\u0003\u0018\u00000\u000f5\n0\u0000\u0004\nEVnb\u000e\u000f5\u0000\u0001\u000f6\u0011\u000f6\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n2\u0000\u0004\nEVnn\u000e\u000f4\u0000\u0001\u000f7\u0011\u000f7\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00009\n1\u0000\b\u000bkfrmID \u000e\u00033\u0000\u0001\u0014\u000f8\u000e\u000f8\u0000\u0004\u0019\u000f9\/\u000f:.\u000e\u000f9\u0000\u0003\u0018\u0000-\u000f;\n-\u0000\u0004\nEVnb\u000e\u000f;\u0000\u0001\u000f<\u0011\u000f<\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\/\u0000\u0004\nEVnn\u000e\u000f:\u0000\u0001\u000f=\u0011\u000f=\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00001\n.\u0000\b\u000bkfrmID \u000e\u00034\u0000\u0001\u0014\u000f>\u000e\u000f>\u0000\u0004\u0019\u000f?,\u000f@+\u000e\u000f?\u0000\u0003\u0018\u0000*\u000fA\n*\u0000\u0004\nEVnb\u000e\u000fA\u0000\u0001\u000fB\u0011\u000fB\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n,\u0000\u0004\nEVnn\u000e\u000f@\u0000\u0001\u000fC\u0011\u000fC\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00002\n+\u0000\b\u000bkfrmID \u000e\u00035\u0000\u0001\u0014\u000fD\u000e\u000fD\u0000\u0004\u0019\u000fE)\u000fF(\u000e\u000fE\u0000\u0003\u0018\u0000'\u000fG\n'\u0000\u0004\nEVnb\u000e\u000fG\u0000\u0001\u000fH\u0011\u000fH\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n)\u0000\u0004\nEVnn\u000e\u000fF\u0000\u0001\u000fI\u0011\u000fI\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00006\n(\u0000\b\u000bkfrmID \u000e\u00036\u0000\u0001\u0014\u000fJ\u000e\u000fJ\u0000\u0004\u0019\u000fK&\u000fL%\u000e\u000fK\u0000\u0003\u0018\u0000$\u000fM\n$\u0000\u0004\nEVnb\u000e\u000fM\u0000\u0001\u000fN\u0011\u000fN\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n&\u0000\u0004\nEVnn\u000e\u000fL\u0000\u0001\u000fO\u0011\u000fO\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00000\n%\u0000\b\u000bkfrmID \u000e\u00037\u0000\u0001\u0014\u000fP\u000e\u000fP\u0000\u0004\u0019\u000fQ#\u000fR\"\u000e\u000fQ\u0000\u0003\u0018\u0000!\u000fS\n!\u0000\u0004\nEVnb\u000e\u000fS\u0000\u0001\u000fT\u0011\u000fT\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n#\u0000\u0004\nEVnn\u000e\u000fR\u0000\u0001\u000fU\u0011\u000fU\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00001\n\"\u0000\b\u000bkfrmID \u000e\u00038\u0000\u0001\u0014\u000fV\u000e\u000fV\u0000\u0004\u0019\u000fW \u000fX\u001f\u000e\u000fW\u0000\u0003\u0018\u0000\u001e\u000fY\n\u001e\u0000\u0004\nEVnb\u000e\u000fY\u0000\u0001\u000fZ\u0011\u000fZ\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n \u0000\u0004\nEVnn\u000e\u000fX\u0000\u0001\u000f[\u0011\u000f[\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00000\n\u001f\u0000\b\u000bkfrmID \u000e\u00039\u0000\u0001\u0014\u000f\\\u000e\u000f\\\u0000\u0004\u0019\u000f]\u001d\u000f^\u001c\u000e\u000f]\u0000\u0003\u0018\u0000\u001b\u000f_\n\u001b\u0000\u0004\nEVnb\u000e\u000f_\u0000\u0001\u000f`\u0011\u000f`\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u001d\u0000\u0004\nEVnn\u000e\u000f^\u0000\u0001\u000fa\u0011\u000fa\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00008\n\u001c\u0000\b\u000bkfrmID \u000e\u0003:\u0000\u0001\u0014\u000fb\u000e\u000fb\u0000\u0004\u0019\u000fc\u001a\u000fd\u0019\u000e\u000fc\u0000\u0003\u0018\u0000\u0018\u000fe\n\u0018\u0000\u0004\nEVnb\u000e\u000fe\u0000\u0001\u000ff\u0011\u000ff\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u001a\u0000\u0004\nEVnn\u000e\u000fd\u0000\u0001\u000fg\u0011\u000fg\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00000\n\u0019\u0000\b\u000bkfrmID \u000e\u0003;\u0000\u0001\u0014\u000fh\u000e\u000fh\u0000\u0004\u0019\u000fi\u0017\u000fj\u0016\u000e\u000fi\u0000\u0003\u0018\u0000\u0015\u000fk\n\u0015\u0000\u0004\nEVnb\u000e\u000fk\u0000\u0001\u000fl\u0011\u000fl\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0017\u0000\u0004\nEVnn\u000e\u000fj\u0000\u0001\u000fm\u0011\u000fm\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00004\n\u0016\u0000\b\u000bkfrmID \u000e\u0003<\u0000\u0001\u0014\u000fn\u000e\u000fn\u0000\u0004\u0019\u000fo\u0014\u000fp\u0013\u000e\u000fo\u0000\u0003\u0018\u0000\u0012\u000fq\n\u0012\u0000\u0004\nEVnb\u000e\u000fq\u0000\u0001\u000fr\u0011\u000fr\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0014\u0000\u0004\nEVnn\u000e\u000fp\u0000\u0001\u000fs\u0011\u000fs\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00003\n\u0013\u0000\b\u000bkfrmID \u000e\u0003=\u0000\u0001\u0014\u000ft\u000e\u000ft\u0000\u0004\u0019\u000fu\u0011\u000fv\u0010\u000e\u000fu\u0000\u0003\u0018\u0000\u000f\u000fw\n\u000f\u0000\u0004\nEVnb\u000e\u000fw\u0000\u0001\u000fx\u0011\u000fx\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0011\u0000\u0004\nEVnn\u000e\u000fv\u0000\u0001\u000fy\u0011\u000fy\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00006\n\u0010\u0000\b\u000bkfrmID \u000e\u0003>\u0000\u0001\u0014\u000fz\u000e\u000fz\u0000\u0004\u0019\u000f{\u000e\u000f|\r\u000e\u000f{\u0000\u0003\u0018\u0000\f\u000f}\n\f\u0000\u0004\nEVnb\u000e\u000f}\u0000\u0001\u000f~\u0011\u000f~\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u000e\u0000\u0004\nEVnn\u000e\u000f|\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00007\n\r\u0000\b\u000bkfrmID \u000e\u0003?\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000b\u000f\n\u000e\u000f\u0000\u0003\u0018\u0000\t\u000f\n\t\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u000b\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00001\n\n\u0000\b\u000bkfrmID \u000e\u0003@\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\b\u000f\u0007\u000e\u000f\u0000\u0003\u0018\u0000\u0006\u000f\n\u0006\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\b\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00005\n\u0007\u0000\b\u000bkfrmID \u000e\u0003A\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u0005\u000f\u0004\u000e\u000f\u0000\u0003\u0018\u0000\u0003\u000f\n\u0003\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0005\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00006\n\u0004\u0000\b\u000bkfrmID \u000e\u0003B\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u0002\u000f\u0001\u000e\u000f\u0000\u0003\u0018\u0000\u0000\u000f\n\u0000\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0002\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00002\n\u0001\u0000\b\u000bkfrmID \u000e\u0003C\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00009\n\u0000\b\u000bkfrmID \u000e\u0003D\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00008\n\u0000\b\u000bkfrmID \u000e\u0003E\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00004\n\u0000\b\u000bkfrmID \u000e\u0003F\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00004\n\u0000\b\u000bkfrmID \u000e\u0003G\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00008\n\u0000\b\u000bkfrmID \u000e\u0003H\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00009\n\u0000\b\u000bkfrmID \u000e\u0003I\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00008\u00005\n\u0000\b\u000bkfrmID \u000e\u0003J\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00005\u00004\n\u0000\b\u000bkfrmID \u000e\u0003K\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00006\u00009\n\u0000\b\u000bkfrmID \u000e\u0003L\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00005\n\u0000\b\u000bkfrmID \u000e\u0003M\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00005\u00000\u00003\n\u0000\b\u000bkfrmID \u000e\u0003N\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00009\u00001\n\u0000\b\u000bkfrmID \u000e\u0003O\u0000\u0001\u0014\u000f\u000e\u000f\u0000\u0004\u0019\u000f\u000f\u000e\u000f\u0000\u0003\u0018\u0000\u000f\n\u0000\u0004\nEVnb\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000'\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\n\u0000\u0004\nEVnn\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000|\u0000x\u0000-\u0000c\u0000o\u0000r\u0000e\u0000d\u0000a\u0000t\u0000a\u0000:\u0000\/\u0000\/\u0000F\u00006\u00001\u00004\u00004\u00009\u00004\u0000C\u0000-\u0000B\u00004\u00007\u0000B\u0000-\u00004\u00003\u0000C\u0000C\u0000-\u0000A\u00000\u00002\u00005\u0000-\u0000D\u0000F\u00007\u00003\u0000F\u00005\u00004\u00008\u00006\u00002\u00004\u00008\u0000\/\u0000E\u0000N\u0000N\u0000o\u0000t\u0000e\u0000\/\u0000p\u00001\u00004\u00007\u00007\n\u0000\b\u000bkfrmID \u0003v\u0000\u0014\u000e\u0001\u0002\u0000\u0001\u000f\u0011\u000f\u0000,\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000P\u0000r\u0000o\u0000j\u0000e\u0000k\u0000t\u0000 \u0000D\u0000i\u0000r\u0000a\u0000c\u000e\u0001\u0003\u0000\u0001\u000f\u0011\u000f\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u000e\u0001\u0004\u0000\u0001\u000f\u0011\u000f\u0000.\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u000e\u0001\u0005\u0000\u0001\u000f\u0011\u000f\u0000&\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u000e\u0001\u0006\u0000\u0001\u000f\u0011\u000f\u0000>\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u000e\u0001\b\u0000\u0001\u000f\u0011\u000f\u001f8\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000S\u0000t\u0000e\u0000u\u0000e\u0000r\u0000e\u0000r\u0000k\u0000l\u0000\u0000r\u0000u\u0000n\u0000g\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000F\u0000i\u0000n\u0000a\u0000n\u0000z\u0000e\u0000n\u0000 \u0000&\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000c\u0000h\u0000e\u0000r\u0000u\u0000n\u0000g\u0000e\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00003\u0000T\u00001\u00006\u0000:\u00001\u00000\u0000:\u00004\u00009\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000a\u0000t\u0000u\u0000r\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00003\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00006\u0000:\u00001\u00000\u0000:\u00004\u00009\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000K\u0000e\u0000r\u0000n\u0000e\u0000l\u0000 \u0000U\u0000p\u0000d\u0000a\u0000t\u0000e\u0000 \u0000n\u0000o\u0000d\u0000e\u00000\u00004\u0000.\u0000b\u0000a\u0000r\u0000e\u0000m\u0000e\u0000t\u0000a\u0000l\u0000,\u0000 \u00001\u00002\u0000.\u00000\u00005\u0000.\u00002\u00000\u00001\u00007\u0000,\u0000 \u0000d\u0000o\u0000n\u0000e\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00002\u0000T\u00002\u00002\u0000:\u00005\u00005\u0000:\u00000\u00000\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000F\u0000r\u0000i\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00002\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00002\u0000:\u00005\u00005\u0000:\u00000\u00000\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000C\u0000a\u0000r\u0000e\u0000 \u0000E\u0000n\u0000e\u0000r\u0000g\u0000y\u0000 \u0000D\u0000o\u0000k\u0000u\u0000m\u0000e\u0000n\u0000t\u0000e\u0000n\u0000b\u0000a\u0000c\u0000k\u0000u\u0000p\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00002\u0000T\u00001\u00002\u0000:\u00003\u00004\u0000:\u00004\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000F\u0000r\u0000i\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00002\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00002\u0000:\u00003\u00004\u0000:\u00004\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000Z\u0000e\u0000r\u0000t\u0000i\u0000f\u0000i\u0000k\u0000a\u0000t\u0000s\u0000-\u0000S\u0000i\u0000c\u0000h\u0000e\u0000r\u0000h\u0000e\u0000i\u0000t\u0000s\u0000l\u0000e\u0000c\u0000k\u0000,\u0000 \u0000M\u0000\u0000r\u0000z\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00001\u0000T\u00001\u00004\u0000:\u00001\u00007\u0000:\u00004\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000T\u0000h\u0000u\u0000r\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00001\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00001\u00007\u0000:\u00004\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000R\u0000e\u0000d\u0000H\u0000a\u0000t\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000 \u0000-\u0000 \u0000C\u0000e\u0000p\u0000h\u0000 \u0000B\u0000u\u0000c\u0000k\u0000e\u0000t\u0000 \u0000S\u0000h\u0000a\u0000r\u0000d\u0000i\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00001\u0000T\u00001\u00000\u0000:\u00005\u00005\u0000:\u00001\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000T\u0000h\u0000u\u0000r\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00001\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00005\u0000:\u00001\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000B\u0000S\u0000I\u0000 \u0000Z\u0000e\u0000r\u0000t\u0000i\u0000f\u0000i\u0000z\u0000i\u0000e\u0000r\u0000u\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000A\u0000m\u0000a\u0000z\u0000o\u0000n\u0000 \u0000A\u0000W\u0000S\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00003\u0000:\u00002\u00007\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000h\u0000e\u0000m\u0000e\u0000n\u0000 \u0000f\u0000\u0000r\u0000 \u0000P\u0000a\u0000t\u0000r\u0000i\u0000c\u0000k\u0000 \u0000u\u0000n\u0000d\u0000 \u0000m\u0000i\u0000c\u0000h\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00002\u0000:\u00005\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00002\u0000:\u00005\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000e\u0000c\u0000h\u0000n\u0000i\u0000s\u0000c\u0000h\u0000e\u0000 \u0000W\u0000e\u0000i\u0000t\u0000e\u0000r\u0000e\u0000n\u0000t\u0000w\u0000i\u0000c\u0000k\u0000l\u0000u\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00002\u0000:\u00004\u00006\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00002\u0000:\u00004\u00006\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000C\u0000o\u0000a\u0000c\u0000h\u0000 \u0000R\u0000i\u0000e\u0000m\u0000e\u0000n\u0000s\u0000c\u0000h\u0000n\u0000e\u0000i\u0000d\u0000e\u0000r\u0000 \u0014\u0000 \u0000S\u0000e\u0000p\u0000t\u0000e\u0000m\u0000b\u0000e\u0000r\u0000 \u00002\u00000\u00001\u00006\u0000 \u0000b\u0000i\u0000s\u0000 \u0000<\u0000o\u0000f\u0000f\u0000e\u0000n\u0000>\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00001\u0000:\u00005\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00001\u0000:\u00005\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000B\u0000e\u0000t\u0000t\u0000e\u0000r\u0000 \u0000Z\u0000e\u0000n\u0000 \u0000T\u0000o\u0000 \u0000D\u0000o\u0000n\u0000e\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000E\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00005\u00001\u0000:\u00000\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00005\u00001\u0000:\u00000\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000T\u0000e\u0000l\u0000e\u0000k\u0000o\u0000m\u0000 \u0000C\u0000l\u0000o\u0000u\u0000d\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000C\u0000D\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00004\u00001\u0000:\u00004\u00000\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00004\u00001\u0000:\u00004\u00000\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000V\u0000e\u0000r\u0000t\u0000r\u0000i\u0000e\u0000b\u0000s\u0000a\u0000k\u0000t\u0000i\u0000v\u0000i\u0000t\u0000\u0000t\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00001\u00000\u0000T\u00001\u00000\u0000:\u00003\u00009\u0000:\u00004\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000W\u0000e\u0000d\u0000n\u0000e\u0000s\u0000d\u0000a\u0000y\u0000,\u0000 \u00001\u00000\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00000\u0000:\u00003\u00009\u0000:\u00004\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000 \u0000B\u0000u\u0000s\u0000i\u0000n\u0000e\u0000s\u0000s\u0000 \u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000i\u0000m\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0000 \u0000K\u0000\u0000l\u0000n\u0000 \u0000S\u0000c\u0000h\u0000i\u0000l\u0000d\u0000e\u0000r\u0000g\u0000a\u0000s\u0000s\u0000e\u0000 \u0000-\u0000-\u0000 \u0000A\u0000p\u0000r\u0000i\u0000l\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00008\u0000T\u00002\u00000\u0000:\u00000\u00005\u0000:\u00003\u00004\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000M\u0000o\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00008\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00000\u0000:\u00000\u00005\u0000:\u00003\u00004\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000G\u0000F\u0000 \u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000I\u0000n\u0000t\u0000e\u0000r\u0000n\u0000e\u0000 \u0000A\u0000d\u0000m\u0000i\u0000n\u0000i\u0000s\u0000t\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000a\u0000u\u0000f\u0000g\u0000a\u0000b\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00008\u0000T\u00001\u00004\u0000:\u00001\u00003\u0000:\u00000\u00003\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000M\u0000o\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00008\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00001\u00003\u0000:\u00000\u00003\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000T\u0000-\u0000M\u0000o\u0000b\u0000i\u0000l\u0000e\u0000 \u0000V\u0000e\u0000r\u0000t\u0000r\u0000\u0000g\u0000e\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000a\u0000u\u0000f\u0000l\u0000\u0000s\u0000e\u0000n\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000B\u0000u\u0000m\u0000b\u0000e\u0000l\u0000u\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00002\u00002\u0000:\u00000\u00002\u0000:\u00002\u00002\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00002\u00002\u0000:\u00000\u00002\u0000:\u00002\u00002\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000R\u0000e\u0000i\u0000s\u0000e\u0000k\u0000o\u0000s\u0000t\u0000e\u0000n\u0000 \u0000M\u0000a\u0000i\u0000 \u00002\u00000\u00001\u00007\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00004\u0000:\u00005\u00007\u0000:\u00004\u00009\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00004\u0000:\u00005\u00007\u0000:\u00004\u00009\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000I\u0000n\u0000f\u0000r\u0000a\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000u\u0000r\u0000e\u0000 \u0000T\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000c\u0000c\u0000 \u0000\/\u0000 \u0000C\u0000D\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000P\u0000r\u0000o\u0000j\u0000e\u0000k\u0000t\u0000 \u0000C\u0000a\u0000r\u0000l\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000l\u0000u\u0000k\u0000a\u0000s\u0000p\u0000u\u0000s\u0000t\u0000i\u0000n\u0000a\u0000@\u0000@\u0000\\\u0000@\u0000@\u0000s\u0000 \u0000n\u0000o\u0000t\u0000e\u0000b\u0000o\u0000o\u0000k\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0000,\u0000{\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000V\u0000o\u0000r\u0000g\u0000a\u0000n\u0000g\u0000:\u0000 \u0000P\u0000r\u0000o\u0000j\u0000e\u0000k\u0000t\u0000 \u0000D\u0000i\u0000r\u0000a\u0000c\u0000'\u0000,\u0000l\u0000a\u0000b\u0000e\u0000l\u0000:\u0000'\u0000D\u0000a\u0000n\u0000i\u0000e\u0000l\u0000 \u0000u\u0000n\u0000d\u0000 \u0000L\u0000u\u0000k\u0000a\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000n\u0000'\u0000,\u0000d\u0000a\u0000t\u0000e\u0000:\u0000'\u00002\u00000\u00001\u00007\u0000-\u00000\u00005\u0000-\u00000\u00007\u0000T\u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000'\u0000S\u0000u\u0000n\u0000d\u0000a\u0000y\u0000,\u0000 \u00007\u0000.\u0000 \u0000M\u0000a\u0000y\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000a\u0000t\u0000 \u00001\u00003\u0000:\u00002\u00004\u0000:\u00002\u00005\u0000'\u0000,\u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000S\u0000h\u0000o\u0000w\u0000s\u0000S\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000:\u0000t\u0000r\u0000u\u0000e\u0000,\u0000i\u0000c\u0000o\u0000n\u0000:\u0000'\u0000c\u0000o\u0000m\u0000.\u0000e\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000.\u0000E\u0000v\u0000e\u0000r\u0000n\u0000o\u0000t\u0000e\u0000'\u0000}\u0001u\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"609b0ebb2da4e2aba3d502496c65ddd393363d36","subject":"Hotkey working for Path Finder","message":"Hotkey working for Path Finder\n","repos":"nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea","old_file":"CurrentSelection.scpt","new_file":"CurrentSelection.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001a\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0001a\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0001`\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npnam\r\u0000\u0014\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b\u0000\u0015\n\u0000\u0004\npcap\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0001\r\u0000\u0012\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\npisf\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u0002\u0000\u000e\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0006\u0000\u0016\u0000\u0016\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Handle file selection\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001a\u0000!\u0000\"\r\u0000!\u0000\u0001J\u0000\u0000\u0000\u0016\u0000\u0018\u0002\u0000\u0000\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0004Z\u0000\u0000\u0000\u001b\u0000\u0000'\u0000(\u0000)\r\u0000'\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\u0000*\u0000+\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\r\u0000(\u0000\u0002O\u0000\u0000\u0000!\u0000I\u0000.\u0000\/\r\u0000.\u0000\u0001k\u0000\u0000\u0000%\u0000H\u00000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000%\u0000*\u00003\u00004\r\u00003\u0000\u0003l\u0001\u0000\u0000%\u0000(\u00005\r\u00005\u0000\u00011\u0000\u0000\u0000%\u0000(\n\u0000\u0004\nsele\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u00002\u0000\u0002\u00006\r\u00006\u0000\u0003X\u0000\u0000\u0000+\u0000H\u00007\u00008\r\u00007\u0000\u0002s\u0000\u0000\u0000;\u0000C\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000;\u0000@\u0000;\r\u0000;\u0000\u0002n\u0000\u0000\u0000;\u0000@\u0000<\u0000=\r\u0000<\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npsxp\r\u0000=\u0000\u0003l\u0000\u0005\u0000;\u0000>\u0000>\r\u0000>\u0000\u0002c\u0000\u0000\u0000;\u0000>\u0000?\u0000@\r\u0000?\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0000@\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000A\r\u0000A\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000B\u0000C\r\u0000B\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0000C\u0000\u0003l\u0001\u0000\u0000@\u0000A\u0000D\r\u0000D\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u00008\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000\u0000\r\u0000\/\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000E\u000f\u0000E\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nja\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000n\u0198h\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0198K\u0000\u0000\u0000\u0001\u0000\f\u0000nja\u0000nj\u001e\u0000nj\u001d\u0000\u0002\u0000*mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000)\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0002=\u0000\u0003\u0000L\u0000Q\u0000H\u0000I\r\u0000H\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000I\u0000\u0001m\u0000\u0000\u0000M\u0000P\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u000e\u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0002\u0000G\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002O\u0000\u0000\u0000T\u0000b\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000Z\u0000a\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0001\u0000\u0000Z\u0000_\u0000R\r\u0000R\u0000\u00011\u0000\u0000\u0000Z\u0000_\n\u0000\u0004\nseLE\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\r\u0000O\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0000S\u000f\u0000S\u0002\b\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000NNPA\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0001\u0007\u000bPunakea.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0016\u0002\u001a\u0019\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007Release\u0000\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u001c\u0001\u0007\u0000\u0017\u0000\u0017p\u0000\u0017~\u0007\u0000\u0017}\u0000\u0014z\u0000\u0014z\u0000\u0002\u0000Imac:Users:darklight:Projekte:nudgenudge:punakea:build:Release:Punakea.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000EUsers\/darklight\/Projekte\/nudgenudge\/punakea\/build\/Release\/Punakea.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u0010\u0000\u0000\u0002\u0000M\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002=\u0000\u0003\u0000e\u0000j\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000e\u0000f\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000W\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\u0016\u0000P\u0000a\u0000t\u0000h\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000U\u0000\u0002\u0000Z\r\u0000Z\u0000\u0002O\u0000\u0000\u0000m\u0000\u0000[\u0000\\\r\u0000[\u0000\u0001k\u0000\u0000\u0000s\u0000\u0000]\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0002r\u0000\u0000\u0000s\u0000z\u0000`\u0000a\r\u0000`\u0000\u0003l\u0001\u0000\u0000s\u0000x\u0000b\r\u0000b\u0000\u00011\u0000\u0000\u0000s\u0000x\n\u0000\u0004\nslcT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000_\u0000\u0002\u0000c\r\u0000c\u0000\u0003X\u0000\u0000\u0000{\u0000\u0000d\u0000e\r\u0000d\u0000\u0002s\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0005\u0000\u0000\u0000h\r\u0000h\u0000\u0002n\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npthP\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000g\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000k\r\u0000k\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000l\u0000m\r\u0000l\u0000\u0000;\u0000\u0000\u0000\u0000\r\u0000m\u0000\u0003l\u0001\u0000\u0000\u0000\u0000n\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0000e\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0000o\u000f\u0000o\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000PFdR\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nji\u000fPath Finder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0017$\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0014\u0000\u0000\u0000\u0001\u0000\u0004\u0000nji\u0000\u0002\u0000 mac:Applications:Path Finder.app\u0000\u000e\u0000 \u0000\u000f\u0000P\u0000a\u0000t\u0000h\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000\u001cApplications\/Path Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0003l\u0000\u0006\u0000\u0000\u0000v\u0000w\u0001\u0000\u0000\f\u0000v\u0000\u001b\u0000\u0015 Handle URL selection\u0000\u0002\u0000\u0000\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000*\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000U\u0000R\u0000L\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0006\u0000\u0000\u0000{\u0000|\u0000}\r\u0000{\u0000\u0002r\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\f\u0000|\u0000\u0017\u0000\u0011 Declare variable\u0000\u0002\u0000\u0000\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001N\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000f\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000-\u0000b\u0000i\u0000n\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000(\u0000\" Title is class pTit of window 1\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000D\u0000 \u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000p\u0000T\u0000i\u0000t\u0000\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\ncurl\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZB\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nji\u000bFirefox.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000F\ng\f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g\u0000\u0000\u0000\u0001\u0000\u0004\u0000nji\u0000\u0002\u0000\u001cmac:Applications:Firefox.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000F\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000\u0018Applications\/Firefox.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000O\u0000p\u0000e\u0000r\u0000a\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000OPRA\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001,\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nji\tOpera.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<r\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000r\u0000\u0000\u0000\u0001\u0000\u0004\u0000nji\u0000\u0002\u0000\u001amac:Applications:Opera.app\u0000\u000e\u0000\u0014\u0000\t\u0000O\u0000p\u0000e\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000\u0016Applications\/Opera.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001 \u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u001f\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0001\u001b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0001\u000b\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0007\u0001\u000b\n\u0000\u0004\npURL\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0001\u0007\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0003\u0001\u0007\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0000\u0001\u0003\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0002\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u000b\u0001\u0019\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0015\u0001\u0019\n\u0000\u0004\npTtl\r\u0000\u0000\u0002n\u0000\u0000\u0001\u000b\u0001\u0015\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0011\u0001\u0015\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0001\u000b\u0001\u0011\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0010\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZC\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nji\nCamino.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u01e1.{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u01e1 k\u0000\u0000\u0000\u0001\u0000\u0004\u0000nji\u0000\u0002\u0000\u001bmac:Applications:Camino.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Camino.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001#\u0001(\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001#\u0001$\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001+\u0001J\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00011\u0001I\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u00011\u0001E\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u00011\u0001;\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00017\u0001;\n\u0000\u0004\npURL\r\u0000\u0000\u00024\u0000\u0000\u00011\u00017\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u00015\u00016\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001;\u0001C\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001A\u0001C\n\u0000\u0004\npnam\r\u0000\u0000\u00024\u0000\u0000\u0001;\u0001A\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0001?\u0001@\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nji\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000qM;9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000;\u0019\u0000\u0000\u0000\u0001\u0000\u0004\u0000nji\u0000\u0002\u0000\u001bmac:Applications:Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001O\u0001O\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001O\u0001Y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001O\u0001U\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001O\u0001P\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001P\u0001S\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001Z\u0001Z\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0001Z\u0001^\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001Z\u0001]\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001_\u0001_\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000'H+\u0000\u0000\u0000nja\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000o8CW\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000'\u0000\u0000\u0000\u0011\u0000\b\u0000\u00008'7\u0000\u0000\u0000\u0001\u0000\f\u0000nja\u0000nj\u001e\u0000nj\u001d\u0000\u0002\u00001mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000m\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000~}|\u0001~\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003{\u0000\u0000\u0001{\u0000\u0000\u0010\u0000\u0000\u0001z\nz\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010y\u0000xw\u0000\u0000v\ny\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001a\u0000\u0002\u0000\u0000\u0002\u0000\u0005u\u0002u\u0000\u0000\u0001x\u0000\u0000\u0002w\u0000\u0000\u0010\u0000\u0000\u0001t\u000bt\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0010\u0000\u0000,\u0000sr\u0000qpo\u0000,\u0000Enmlkjih\u0000J\u0000Sg\u0000X\u0000ofe\u0000d\u0000\u0000cba\u0000\u0000\u0000`\u0000\u0000_^]\\\u0000\u0000[Z\ns\u0000\u0004\npcap\nr\u0000\u0004\npnam\u000e\u0000\u0000\u0000\u0013\nq\u0000\u0004\npisf\u000bp\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u000bo\u0000\u00140\u0000\bthefiles\u0000\btheFiles\nn\u0000\u0004\nsele\u000bm\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\nl\u0000\u0004\nkocl\nk\u0000\u0004\ncobj\nj\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\ni\u0000\u0004\nalis\nh\u0000\u0004\npsxp\ng\u0000\u0004\nseLE\nf\u0000\u0004\nslcT\ne\u0000\u0004\npthP\u000bd\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\nc\u0000\u0004\ncwin\nb\u0000\u0004\ncurl\na\u0000\u0004\nTEXT\n`\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\n_\u0000\u0004\nBWin\n^\u0000\u0004\npCTb\n]\u0000\u0004\npURL\n\\\u0000\u0004\npTtl\n[\u0000\u0004\ndocu\u000bZ\u0000\u000b0\u0000\u0007results\u0000\u0000\u0011v\u0001b\u0012\u0001^*k\/,[,\\Ze81EOjvEO\u0000\u001d\u0000-\u0012\u0000%*,EO\u0017\u0000\u001c[l\f\u0000\rkh\u001b\u0000\u0000&,6G[OYUY\u0000Sa\u0000\u0010\u0000\u001d\u0000\u0013a\u0000\u0011\u0012\u0000\t*a\u0000\u0012,EUY\u0000:a\u0000\u0013\u0000\u001d\u00001a\u0000\u0014\u0012\u0000'*a\u0000\u0015,EO\u0017\u0000\u001c[l\f\u0000\rkh\u001b\u0000\u0000a\u0000\u0016,6G[OYUY\u0000\u0003hOa\u0000\u0017E`\u0000\u0018Oa\u0000\u0019\u0000\u001d\u0000#a\u0000\u001a\u0012\u0000\u0019*a\u0000\u001bk\/a\u0000\u001c,a\u0000\u001d&a\u0000\u001elvE`\u0000\u0018UY\u0000a\u0000\u001f\u0000\u001d\u0000\u001aa\u0000 \u0012\u0000\u0010*a\u0000\u001bk\/j\f\u0000!E`\u0000\u0018UY\u0000aa\u0000\"\u0000\u001d\u0000.a\u0000#\u0012\u0000$*a\u0000$k\/a\u0000%,a\u0000&,*a\u0000$k\/a\u0000%,a\u0000',lvE`\u0000\u0018UY\u0000-a\u0000(\u0000\u001d\u0000$a\u0000)\u0012\u0000\u001a*a\u0000*k\/a\u0000&,*a\u0000*k\/,lvE`\u0000\u0018UY\u0000\u0003hO_\u0000\u0018lvE`\u0000+O_\u0000+\u000fOPU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0001*\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0001)\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0015\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\n\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\npnam\r\u0000\u0014\u0000\u00024\u0000\u0001\u0000\u0004\u0000\b\u0000\u0015\n\u0000\u0004\npcap\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0003\u0000\u0001\r\u0000\u0012\u0000\u0002=\u0000\u0003\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\npisf\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u0002\u0000\u000e\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0006\u0000\u0016\u0000\u0016\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u001c\u0000\u0016 Handle file selection\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000,\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001a\u0000!\u0000\"\r\u0000!\u0000\u0001J\u0000\u0000\u0000\u0016\u0000\u0018\u0002\u0000\u0000\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0004Z\u0000\u0000\u0000\u001b\u0000f\u0000'\u0000(\u0000)\r\u0000'\u0000\u0002=\u0000\u0003\u0000\u001b\u0000\u001e\u0000*\u0000+\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\f\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\r\u0000(\u0000\u0002O\u0000\u0000\u0000!\u0000I\u0000.\u0000\/\r\u0000.\u0000\u0001k\u0000\u0000\u0000%\u0000H\u00000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000%\u0000*\u00003\u00004\r\u00003\u0000\u0003l\u0001\u0000\u0000%\u0000(\u00005\r\u00005\u0000\u00011\u0000\u0000\u0000%\u0000(\n\u0000\u0004\nsele\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u00002\u0000\u0002\u00006\r\u00006\u0000\u0003X\u0000\u0000\u0000+\u0000H\u00007\u00008\r\u00007\u0000\u0002s\u0000\u0000\u0000;\u0000C\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000;\u0000@\u0000;\r\u0000;\u0000\u0002n\u0000\u0000\u0000;\u0000@\u0000<\u0000=\r\u0000<\u0000\u00011\u0000\u0000\u0000>\u0000@\n\u0000\u0004\npsxp\r\u0000=\u0000\u0003l\u0000\u0005\u0000;\u0000>\u0000>\r\u0000>\u0000\u0002c\u0000\u0000\u0000;\u0000>\u0000?\u0000@\r\u0000?\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0000@\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000A\r\u0000A\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000B\u0000C\r\u0000B\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0000C\u0000\u0003l\u0001\u0000\u0000@\u0000A\u0000D\r\u0000D\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u00008\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\u0002\u0000\u0000\r\u0000\/\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000E\u000f\u0000E\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sZ\u07c4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000Zt\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u0000*Mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000)\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0002=\u0000\u0003\u0000L\u0000Q\u0000H\u0000I\r\u0000H\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000I\u0000\u0001m\u0000\u0000\u0000M\u0000P\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u000e\u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0002\u0000G\u0000\u0002\u0000L\r\u0000L\u0000\u0002O\u0000\u0000\u0000T\u0000b\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000Z\u0000a\u0000O\u0000P\r\u0000O\u0000\u0003l\u0001\u0000\u0000Z\u0000_\u0000Q\r\u0000Q\u0000\u00011\u0000\u0000\u0000Z\u0000_\n\u0000\u0004\nseLE\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\r\u0000N\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0000R\u000f\u0000R\u0002\u0006\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000NNPA\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u001cZ\u000bPunakea.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u?\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005Debug\u0000\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g\/\u0000\u0000\u0000\u0001\u0000 \u0000\u001cZ\u0000\u001cQX\u0000\u001bu\u0000\u001b|\u0000\u001b|~\u0000\u001a>\u0000\u000buR\u0000\u0000y\u0000\u0002\u0000GMac:Users:daniel:Projekte:Punakea:Punakea:trunk:build:Debug:Punakea.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000CUsers\/daniel\/Projekte\/Punakea\/Punakea\/trunk\/build\/Debug\/Punakea.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\r\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000V\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0006\u0000g\u0000g\u0000Y\u0000Z\u0001\u0000\u0000\f\u0000Y\u0000\u001b\u0000\u0015 Handle URL selection\u0000\u0002\u0000\u0000\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000*\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000 \u0000U\u0000R\u0000L\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000X\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0006\u0000g\u0000n\u0000^\u0000_\u0000`\r\u0000^\u0000\u0002r\u0000\u0000\u0000g\u0000n\u0000a\u0000b\r\u0000a\u0000\u0001m\u0000\u0000\u0000g\u0000j\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000\u0000\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\f\u0000_\u0000\u0017\u0000\u0011 Declare variable\u0000\u0002\u0000\u0000\u000e\u0000`\u0000\u0001\u0000e\u0011\u0000e\u0000\"\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0000]\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000o\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0004Z\u0000\u0000\u0000o\u0001\u0017\u0000j\u0000k\u0000l\r\u0000j\u0000\u0002=\u0000\u0003\u0000o\u0000t\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000n\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000\u0016\u0000f\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000-\u0000b\u0000i\u0000n\r\u0000k\u0000\u0002O\u0000\u0000\u0000w\u0000\u0000q\u0000r\r\u0000q\u0000\u0001k\u0000\u0000\u0000}\u0000\u0000s\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0003l\u0000\u0006\u0000}\u0000}\u0000v\u0000w\u0001\u0000\u0000\f\u0000v\u0000(\u0000\" Title is class pTit of window 1\u0000\u0002\u0000\u0000\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000D\u0000 \u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000i\u0000s\u0000 \u0000\u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000p\u0000T\u0000i\u0000t\u0000\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u00001\u0002\u0000u\u0000\u0002\u0000y\r\u0000y\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000z\u0000{\r\u0000z\u0000\u0001J\u0000\u0000\u0000}\u0000\u0000|\u0002\u0000|\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002c\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\ncurl\r\u0000\u0000\u00024\u0000\u0000\u0000}\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000r\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZB\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00014\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u000bFirefox.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000_t;U\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000t\u001f5\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001cMac:Applications:Firefox.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000F\u0000i\u0000r\u0000e\u0000f\u0000o\u0000x\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0018Applications\/Firefox.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000l\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000O\u0000p\u0000e\u0000r\u0000a\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000OPRA\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001,\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\tOpera.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000dr\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000r\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001aMac:Applications:Opera.app\u0000\u000e\u0000\u0014\u0000\t\u0000O\u0000p\u0000e\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0016Applications\/Opera.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npURL\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npTtl\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npCTb\r\u0000\u0000\u00024\u0001\u0000\u0000\u0000\u0000\n\u0000\u0004\nBWin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MOZC\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nCamino.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002h+\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000h\u001b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001bMac:Applications:Camino.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000C\u0000a\u0000m\u0000i\u0000n\u0000o\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Camino.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u0013\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0012\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0001\u000e\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0000\u0001\u0004\n\u0000\u0004\npURL\r\u0000\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0004\u0001\f\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\n\u0001\f\n\u0000\u0004\npnam\r\u0000\u0000\u00024\u0000\u0000\u0001\u0004\u0001\n\u0000\n\u0000\u0004\ndocu\r\u0000\u0000\u0001m\u0000\u0000\u0001\b\u0001\t\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0013\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001bMac:Applications:Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0018\u0001\u0018\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0018\u0001\"\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001\u0018\u0001\u001e\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001c\u000b\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001#\u0001#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0001#\u0001'\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001#\u0001&\u000b\u0000\u000b0\u0000\u0007results\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001(\u0001(\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0016c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00001Mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001*\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0010\u0000\u0000(\u0000\u0000\u0000,\u0000E~}|{zy\u0000J\u0000Rx\u0000cw\u0000o\u0000vut\u0000\u0000\u0000s\u0000\u0000rqpo\u0000\u0000nm\n\u0000\u0004\npcap\n\u0000\u0004\npnam\u000e\u0000\u0000\u0000\u0013\n\u0000\u0004\npisf\u000b\u0000\u00140\u0000\bfrontapp\u0000\bfrontApp\u000b\u0000\u00140\u0000\bthefiles\u0000\btheFiles\n\u0000\u0004\nsele\u000b~\u0000\u001e0\u0000\rselecteditems\u0000\rselectedItems\n}\u0000\u0004\nkocl\n|\u0000\u0004\ncobj\n{\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nz\u0000\u0004\nalis\ny\u0000\u0004\npsxp\nx\u0000\u0004\nseLE\u000bw\u0000\u00100\u0000\u0006theurl\u0000\u0006theURL\nv\u0000\u0004\ncwin\nu\u0000\u0004\ncurl\nt\u0000\u0004\nTEXT\ns\u0000\u0018.WWW!WNFOlist\u0000\u0000@\u0000\u0000\u0000\u0000\u0000long\nr\u0000\u0004\nBWin\nq\u0000\u0004\npCTb\np\u0000\u0004\npURL\no\u0000\u0004\npTtl\nn\u0000\u0004\ndocu\u000bm\u0000\u000b0\u0000\u0007results\u0000\u0000\u0011\u0001+\u0012\u0001'*k\/,[,\\Ze81EOjvEO\u0000\u001d\u0000-\u0012\u0000%*,EO\u0017\u0000\u001c[l\f\u0000\rkh\u001b\u0000\u0000&,6G[OYUY\u0000\u001ca\u0000\u0010\u0000\u001d\u0000\u0013a\u0000\u0011\u0012\u0000\t*a\u0000\u0012,EUY\u0000\u0003hOa\u0000\u0013E`\u0000\u0014Oa\u0000\u0015\u0000\u001d\u0000#a\u0000\u0016\u0012\u0000\u0019*a\u0000\u0017k\/a\u0000\u0018,a\u0000\u0019&a\u0000\u001alvE`\u0000\u0014UY\u0000a\u0000\u001b\u0000\u001d\u0000\u001aa\u0000\u001c\u0012\u0000\u0010*a\u0000\u0017k\/j\f\u0000\u001dE`\u0000\u0014UY\u0000aa\u0000\u001e\u0000\u001d\u0000.a\u0000\u001f\u0012\u0000$*a\u0000 k\/a\u0000!,a\u0000\",*a\u0000 k\/a\u0000!,a\u0000#,lvE`\u0000\u0014UY\u0000-a\u0000$\u0000\u001d\u0000$a\u0000%\u0012\u0000\u001a*a\u0000&k\/a\u0000\",*a\u0000&k\/,lvE`\u0000\u0014UY\u0000\u0003hO_\u0000\u0014lvE`\u0000'O_\u0000'\u000fOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6021fc10019fccf0a8496bd8ad32a40d2c07f78f","subject":"set AB_BRANCH for testing `_bootstrap()`","message":"set AB_BRANCH for testing `_bootstrap()`\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/alfred.bundler.applescript","new_file":"tests\/applescript\/alfred.bundler.applescript","new_contents":"global B\nset B to my _load_bundler()\nproperty the_bundler : missing value\n\n(* \/\/\/\nMAIN API FUNCTIONS\n\/\/\/ *)\n\non load_utility(_name, _version, _json)\n\tif the_bundler is not equal to true then\n\t\tmy _bootstrap()\n\tend if\n\t\n\ttry\n\t\tset utility to B's load_utility(_name, _version, _json)\n\t\treturn utility\n\ton error\n\t\tset B to my _load_bundler()\n\t\ttry\n\t\t\tset utility to B's load_utility(_name, _version, _json)\n\t\t\treturn utility\n\t\ton error\n\t\t\tset msg to \"Error retrieving utility `\" & _name & \"`\"\n\t\t\tB's _log(\"get_icon\", \"DEBUG\", msg)\n\t\t\terror msg number num\n\t\tend try\n\tend try\nend load_utility\n\non get_icon(_font, _name, _color, _alter)\n\tif the_bundler is not equal to true then\n\t\tmy _bootstrap()\n\tend if\n\t\n\ttry\n\t\tset icon to B's get_icon(_font, _name, _color, _alter)\n\t\treturn icon\n\ton error\n\t\tset B to my _load_bundler()\n\t\ttry\n\t\t\tset icon to B's get_icon(_font, _name, _color, _alter)\n\t\t\treturn icon\n\t\ton error msg number num\n\t\t\tset msg to \"Error retrieving icon `\" & _font & \"`'s `{}`\"\n\t\t\tB's _log(\"get_icon\", \"DEBUG\", B's _format(msg, _name))\n\t\t\terror msg number num\n\t\tend try\n\tend try\nend get_icon\n\n\n(* \/\/\/\nSUB-API FUNCTIONS\n\/\/\/ *)\n\non _bootstrap()\n\t(*Check if bundler bash bundlet is installed and install it if not.\n\n \t:returns: ``None``\n\n \t*)\n\t--if the_bundler is not equal to missing value then\n\t--\treturn the_bundler\n\t--else\n\tset shell_bundlet to quoted form of (my _load_shell_bundlet())\n\tset shell_cmd to shell_bundlet & \" utility CocoaDialog\"\n\tset cmd to my _prepare_cmd(shell_cmd)\n\tdo shell script cmd\n\tset the_bundler to true\n\t--end if\n\t\nend _bootstrap\n\n\n(* \/\/\/\nHELPER FUNCTIONS\n\/\/\/ *)\n\non _load_bundler()\n\tset applescript_test_dir to my _pwd()\n\tset test_dir to my _dirname(applescript_test_dir)\n\tset bundler_dir to my _dirname(test_dir)\n\tset as_bundler to bundler_dir & \"bundler\/AlfredBundler.scpt\"\n\treturn load script as_bundler\nend _load_bundler\n\non _load_shell_bundlet()\n\tset bundlet to (my _pwd()) & \"alfred.bundler.sh\"\nend _load_shell_bundlet\n\non _prepare_cmd(cmd)\n\tset pwd to quoted form of (my _pwd())\n\tset testing_var to \"export AB_BRANCH=devel; \"\n\treturn testing_var & \"cd \" & pwd & \"; bash \" & cmd\nend _prepare_cmd\n\non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -3 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _dirname\n","old_contents":"global B\nset B to my _load_bundler()\nproperty the_bundler : missing value\n\n\n(* \/\/\/\nMAIN API FUNCTIONS\n\/\/\/ *)\n\non load_utility(_name, _version, _json)\n\tif the_bundler is not equal to true then\n\t\tmy _bootstrap()\n\tend if\n\t\n\ttry\n\t\tset utility to B's load_utility(_name, _version, _json)\n\t\treturn utility\n\ton error\n\t\tset B to my _load_bundler()\n\t\ttry\n\t\t\tset utility to B's load_utility(_name, _version, _json)\n\t\t\treturn utility\n\t\ton error\n\t\t\tset msg to \"Error retrieving utility `\" & _name & \"`\"\n\t\t\tB's _log(\"get_icon\", \"DEBUG\", msg)\n\t\t\terror msg number num\n\t\tend try\n\tend try\nend load_utility\n\non get_icon(_font, _name, _color, _alter)\n\tif the_bundler is not equal to true then\n\t\tmy _bootstrap()\n\tend if\n\t\n\ttry\n\t\tset icon to B's get_icon(_font, _name, _color, _alter)\n\t\treturn icon\n\ton error\n\t\tset B to my _load_bundler()\n\t\ttry\n\t\t\tset icon to B's get_icon(_font, _name, _color, _alter)\n\t\t\treturn \"yes: \" & icon\n\t\ton error msg number num\n\t\t\tset msg to \"Error retrieving icon `\" & _font & \"`'s `{}`\"\n\t\t\tB's _log(\"get_icon\", \"DEBUG\", B's _format(msg, _name))\n\t\t\terror msg number num\n\t\tend try\n\tend try\nend get_icon\n\n\n(* \/\/\/\nSUB-API FUNCTIONS\n\/\/\/ *)\n\non _bootstrap()\n\t(*Check if bundler bash bundlet is installed and install it if not.\n\n \t:returns: ``None``\n\n \t*)\n\tif the_bundler is not equal to missing value then\n\t\treturn true\n\telse\n\t\tset shell_bundlet to quoted form of (my _load_shell_bundlet())\n\t\tset shell_cmd to shell_bundlet & \" utility CocoaDialog\"\n\t\tset cmd to my _prepare_cmd(shell_cmd)\n\t\tdo shell script cmd\n\t\tset the_bundler to true\n\tend if\n\t\nend _bootstrap\n\n\n(* \/\/\/\nHELPER FUNCTIONS\n\/\/\/ *)\n\non _load_bundler()\n\tset applescript_test_dir to my _pwd()\n\tset test_dir to my _dirname(applescript_test_dir)\n\tset bundler_dir to my _dirname(test_dir)\n\tset as_bundler to bundler_dir & \"bundler\/AlfredBundler.scpt\"\n\treturn load script as_bundler\nend _load_bundler\n\non _load_shell_bundlet()\n\tset bundlet to (my _pwd()) & \"alfred.bundler.sh\"\nend _load_shell_bundlet\n\non _prepare_cmd(cmd)\n\tset pwd to quoted form of (my _pwd())\n\treturn \"cd \" & pwd & \"; bash \" & cmd\nend _prepare_cmd\n\non _pwd()\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _dirname(_file)\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\tset _path to (text items 1 thru -3 of _file as string) & \"\/\"\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _dirname\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1e2b20541832b407093441662837f33c5200714a","subject":"fixed typo.","message":"fixed typo.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until the window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.1\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString","old_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until teh window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.1\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d1ca4b118c185b7dd44bc36c616775e2f7d043d4","subject":"Fix ctags update script","message":"Fix ctags update script\n\nPath to create script was wrong\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Scripts\/Ctags\/Update.applescript","new_file":"Scripts\/Ctags\/Update.applescript","new_contents":"-- Update ctags file for currently active project if it already exists\n\n-- Determine the project root directory\non getProjectRoot()\n\ttell application \"BBEdit\"\n\t\tset activeWindow to front window\n\t\t\n\t\tif (class of activeWindow is not project window) then\n\t\t\treturn missing value\n\t\tend if\n\t\t\n\t\tset projectDocument to project document of activeWindow\n\t\t\n\t\tif ((count of items of projectDocument) > 0) then\n\t\t\tset firstItem to (item 1 of projectDocument) as alias\n\t\telse\n\t\t\tif file of document of activeWindow is not missing value then\n\t\t\t\tset firstItem to (file of document of activeWindow) as alias\n\t\t\telse\n\t\t\t\t-- File is unsaved\n\t\t\t\treturn missing value\n\t\t\tend if\n\t\tend if\n\t\t\n\t\tif (on disk of projectDocument) then\n\t\t\ttell application \"Finder\"\n\t\t\t\tset projectDir to (container of (file of projectDocument))\n\t\t\t\tset firstItemDir to (container of firstItem)\n\t\t\tend tell\n\t\t\t\n\t\t\tif (firstItemDir is equal to projectDir) then\n\t\t\t\t-- Use project file\n\t\t\t\treturn projectDir as alias\n\t\t\tend if\n\t\tend if\n\t\t\n\t\t-- Project is either insta-project or external\n\t\t-- Use first item\n\t\treturn firstItem\n\tend tell\nend getProjectRoot\n\non run\n\tset projectRoot to getProjectRoot()\n\tif projectRoot is missing value then\n\t\treturn\n\tend if\n\t\n\t-- Check for existing tag file\n\t-- if it exists, rebuild it\n\t-- This allows a project to opt-in to tags by creating the tags file once\n\ttell application \"Finder\"\n\t\tif exists ((projectRoot as string) & \"tags\") then\n\t\t\trun script ((((container of (path to me)) as string) & \"Create.scpt\") as alias)\n\t\tend if\n\tend tell\nend run","old_contents":"-- Update ctags file for currently active project if it already exists\n\n-- Determine the project root directory\non getProjectRoot()\n\ttell application \"BBEdit\"\n\t\tset activeWindow to front window\n\t\t\n\t\tif (class of activeWindow is not project window) then\n\t\t\treturn missing value\n\t\tend if\n\t\t\n\t\tset projectDocument to project document of activeWindow\n\t\t\n\t\tif ((count of items of projectDocument) > 0) then\n\t\t\tset firstItem to (item 1 of projectDocument) as alias\n\t\telse\n\t\t\tif file of document of activeWindow is not missing value then\n\t\t\t\tset firstItem to (file of document of activeWindow) as alias\n\t\t\telse\n\t\t\t\t-- File is unsaved\n\t\t\t\treturn missing value\n\t\t\tend if\n\t\tend if\n\t\t\n\t\tif (on disk of projectDocument) then\n\t\t\ttell application \"Finder\"\n\t\t\t\tset projectDir to (container of (file of projectDocument))\n\t\t\t\tset firstItemDir to (container of firstItem)\n\t\t\tend tell\n\t\t\t\n\t\t\tif (firstItemDir is equal to projectDir) then\n\t\t\t\t-- Use project file\n\t\t\t\treturn projectDir as alias\n\t\t\tend if\n\t\tend if\n\t\t\n\t\t-- Project is either insta-project or external\n\t\t-- Use first item\n\t\treturn firstItem\n\tend tell\nend getProjectRoot\n\non run\n\tset projectRoot to getProjectRoot()\n\tif projectRoot is missing value then\n\t\treturn\n\tend if\n\t\n\t-- Check for existing tag file\n\t-- if it exists, rebuild it\n\t-- This allows a project to opt-in to tags by creating the tags file once\n\ttell application \"Finder\"\n\t\tif exists ((projectRoot as string) & \"tags\") then\n\t\t\trun script ((((container of (path to me)) as string) & \"Scripts:Ctags:Create.scpt\") as alias)\n\t\tend if\n\tend tell\nend run","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2843f7d2cdde7208a4fbaf66e0d5aa1ae2cc95ea","subject":"simplify quoting","message":"simplify quoting\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.6\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n set commands to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\t\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\t\t\t\t\n\t\"\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.6\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (\"\n\tselect \\\"INBOX GROUPS & ACTIONS\\\", count(*) from task where (inInbox=1);\n\tselect \\\" Inbox action groups\\\", count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect \\\" Inbox actions\\\", count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\tselect \\\"FOLDERS\\\"\t, count(*) from folder;\n\tselect \\\" Active folders\\\", count(*) from folder where effectiveActive=1;\n\tselect \\\" Dropped folders\\\", count(*) from folder where effectiveActive=0;\n\tselect null;\n\tselect \\\"PROJECTS\\\", count(*) from projectInfo where containsSingletonActions=0;\n\tselect \\\" Active projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"active\\\");\n\tselect \\\" Current projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" Pending projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" On-hold projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"inactive\\\");\n\tselect \\\" Completed projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"done\\\");\n\tselect \\\" Dropped projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\t\n\tselect \\\"SINGLE ACTION LISTS\\\", count(*) from projectInfo where containsSingletonActions=1;\n\tselect \\\" Active single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"active\\\");\n\tselect \\\" On-hold single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"inactive\\\");\n\tselect \\\" Completed single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"done\\\");\n\tselect \\\" Dropped single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\n\tselect \\\"CONTEXTS\\\", count(*) from context;\n\tselect \\\" Active contexts\\\", count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect \\\" On-hold contexts\\\", count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect \\\" Dropped contexts\\\", count(*) from context where effectiveActive=0;\n\tselect null;\n\tselect \\\"ACTION GROUPS\\\", count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect \\\" Remaining action groups\\\", count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect \\\" Completed action groups\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\tselect \\\"ACTIONS\\\", count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Completed actions\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Dropped project actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status=\\\"dropped\\\" or tp.folderEffectiveActive=0));\n\tselect \\\" Dropped context actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect \\\" Remaining actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect \\\" Actions in Projects on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status=\\\"inactive\\\");\n\tselect \\\" Actions in Contexts on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect \\\" Blocked actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect \\\" \tBlocked by future start date\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect \\\" \tSequentially blocked\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect \\\" Available actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\t\t\t\t\n\t\")\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"7804f37a9fa67af97b46237f364c20213cdec2d2","subject":"Update script","message":"Update script\n","repos":"alisnic\/tube.vim","old_file":"tube\/autoload\/tube\/applescript\/iterm.applescript","new_file":"tube\/autoload\/tube\/applescript\/iterm.applescript","new_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application iTerm2\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","old_contents":"-- iterm.applescript\n---\n-- this script requires an argument that represent the command to execute\n\non run argv\n\n set command to (item 1 of argv)\n\n tell application iTerm2\n tell current session of first window\n write text command\n end tell\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fd69e744fca1cfc89d7cdc8f48da76c900d15d7d","subject":"Learn x in y minutes notes and JS Array stdout","message":"Learn x in y minutes notes and JS Array stdout\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon\/chrome_songs.applescript","new_file":"AppleScripts\/Hammerspoon\/chrome_songs.applescript","new_contents":"-- MOTIV & NFCU by SCOPS & ??\n\n-- Format output:\nset JSArray to \"[\"\nset firstTerm to true\n\n-- Chrome error on any subroutine:\n-- error \"Google Chrome got an error: Can\u2019t continue createJSArray.\" number -1708\n-- Failed subroutine?\n-- on createJSArray(term)\n-- \t-- set delim to \"&&&&%\"\n-- \t-- set delim to \"\\\\n\"\n-- \t-- set delim to return\n-- \tset delim to \", \"\n-- \tif firstTerm is true then\n-- \t\tset JSArray to JSArray & term\n-- \t\tset firstTerm to false\n-- \telse\n-- \t\tset JSArray to JSArray & delim & term\n-- \tend\n-- return \"true\"\n-- end createJSArray\n\n-- Failed subroutine?\n-- Example of complex logging: http:\/\/stackoverflow.com\/a\/21341372\/3219667\n-- on space_check(threshold_percentage)\n-- \tlog threshold_percentage\n-- end space_check\n-- space_check(20)\n\n-- Returning data from sub-routine:\n-- Source: http:\/\/www.macosxautomation.com\/applescript\/sbrt\/\n-- on remove_extension(this_name)\n-- \tif this_name contains \".\" then\n-- \tset this_name to \u00ac\n-- \t(the reverse of every character of this_name) as string\n-- \tset x to the offset of \".\" in this_name\n-- \tset this_name to (text (x + 1) thru -1 of this_name)\n-- \tset this_name to (the reverse of every character of this_name) as string\n-- \tend if\n-- \treturn this_name\n-- end remove_extension\n\n-- set AppleScript's text item delimiters to \"soundcloud.com\"\n-- set match to text item 1 of the_URL\n-- if match is \"https:\/\/\" then\n\t-- set the_title to \"song name by artist group\"\n\t-- set AppleScript's text item delimiters to \" by \"\n\t-- set song to text item 1 of the_title\n\t-- say song -- for troubleshooting\n\t-- set artist to text item 2 of the_title\n\t-- say artist -- for troubleshooting\n-- end if\n\n-- display dialog \"The URL is: \" & return & the_title buttons {\"OK\"} default button 1\n-- set result to createJSArray(the_title)\n\n-- -- Failed subroutine?\n-- on space_check(threshold_percentage)\n-- \tdelay threshold_percentage\n-- return \"kyle\"\n-- end space_check\n\n-- List tab titles in Google Chrome windows to determine current song playing\n-- original: https:\/\/gist.github.com\/dblandin\/4659973\ntell application \"Google Chrome\"\n\tset window_list to every window -- get the windows\n\n\trepeat with the_window in window_list -- for every window\n\t\tset tab_list to every tab in the_window -- get the tabs\n\n\t\trepeat with the_tab in tab_list -- for every tab\n\t\t\t-- Make output accessible from Hammerspoon\/JS\n\t\t\tset the_URL to the URL of the_tab\n\t\t\tset the_title to the title of the_tab\n\t\t\tset delim to \", \"\n\t\t\tif the_URL contains \"soundcloud.com\" then\n\n\t\t\t\tif firstTerm is true then\n\t\t\t\t\tset JSArray to JSArray & the_title\n\t\t\t\t\tset firstTerm to false\n\t\t\t\telse\n\t\t\t\t\tset JSArray to JSArray & delim & the_title\n\t\t\t\tend\n\n\t\t\telse if the_URL contains \"spotify.com\" then\n\n\t\t\t\tif firstTerm is true then\n\t\t\t\t\tset JSArray to JSArray & the_title\n\t\t\t\t\tset firstTerm to false\n\t\t\t\telse\n\t\t\t\t\tset JSArray to JSArray & delim & the_title\n\t\t\t\tend\n\n\t\t\telse if the_URL contains \"pandora.com\" then\n\n\t\t\t\tif firstTerm is true then\n\t\t\t\t\tset JSArray to JSArray & the_title\n\t\t\t\t\tset firstTerm to false\n\t\t\t\telse\n\t\t\t\t\tset JSArray to JSArray & delim & the_title\n\t\t\t\tend\n\n\t\t\tend if\n\t\tend repeat\n\tend repeat\n\tset JSArray to JSArray & \"]\"\n\treturn JSArray\nend tell\n\n-- -- Echo for stdout idea: http:\/\/stackoverflow.com\/a\/15605567\/3219667\n-- do shell script \"echo \" & quoted form of JSArray\n","old_contents":"-- MOTIV & NFCU by SCUP & ??\n\n-- List tab titles in Google Chrome windows\n-- original: https:\/\/gist.github.com\/dblandin\/4659973\n\n-- Returning data from sub-routine:\n-- Source: http:\/\/www.macosxautomation.com\/applescript\/sbrt\/\n-- on remove_extension(this_name)\n-- \tif this_name contains \".\" then\n-- \tset this_name to \u00ac\n-- \t(the reverse of every character of this_name) as string\n-- \tset x to the offset of \".\" in this_name\n-- \tset this_name to (text (x + 1) thru -1 of this_name)\n-- \tset this_name to (the reverse of every character of this_name) as string\n-- \tend if\n-- \treturn this_name\n-- end remove_extension\n\n-- Format output:\nset stdOut to \"\n\"\n\n-- Only chrome because this is meant to work alongside the Streamkeys chrome extension\ntell application \"Google Chrome\"\n\tset window_list to every window -- get the windows\n\n\trepeat with the_window in window_list -- for every window\n\t\tset tab_list to every tab in the_window -- get the tabs\n\n\t\trepeat with the_tab in tab_list -- for every tab\n\t\t\t-- Make output accessible from Hammerspoon\n\t\t\tset the_URL to the URL of the_tab\n\t\t\tset the_title to the title of the_tab\n\t\t\t-- Identify the correct tab:\n\t\t\t-- --------------------\n\t\t\t-- Old method:\n\t\t\t-- set AppleScript's text item delimiters to \"soundcloud.com\"\n\t\t\t-- set match to text item 1 of the_URL\n\t\t\t-- if match is \"https:\/\/\" or match is \"https:\/\/www.\" or match is \"http:\/\/\" or match is \"http:\/\/www.\" then\n\t\t\t-- \tset stdOut to the title of the_tab\n\t\t\t-- \tdo shell script \"echo \" & quoted form of stdOut\n\t\t\t-- \t-- -- Parse the tab title:\n\t\t\t-- \t-- set the_title to the title of the_tab\n\t\t\t-- \t-- set AppleScript's text item delimiters to \" by \"\n\t\t\t-- \t-- set song to text item 1 of the_title\n\t\t\t-- \t-- say song -- for troubleshooting\n\t\t\t-- \t-- set artist to text item 2 of the_title\n\t\t\t-- \t-- say artist -- for troubleshooting\n\t\t\t-- end if\n\t\t\t-- --------------------\n\t\t\t-- New Method\n\t\t\tif the_URL contains \"soundcloud.com\" then\n\t\t\t\tset stdOut to stdOut & the_title & \"*%*%*%*\"\n\t\t\telse if the_URL contains \"spotify.com\" then\n\t\t\t\tset stdOut to stdOut & the_title & \"*%*%*%*\"\n\t\t\telse if the_URL contains \"pandora.com\" then\n\t\t\t\tset stdOut to stdOut & the_title & \"*%*%*%*\"\n\t\t\tend if\n\t\tend repeat\n\tend repeat\nend tell\n\n-- Clever idea: http:\/\/stackoverflow.com\/a\/15605567\/3219667\ndo shell script \"echo \" & quoted form of stdOut\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"38f480b4a9f54539a143327979c6573c5c8cadb7","subject":"Change delay","message":"Change delay\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/start_install.scpt","new_file":"script\/start_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 1.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 8.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Tools\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ddc30fc9a498c78c2b58d63ef42ca17876e5ef1d","subject":"Fix minor error on mac where autorun CompuCell would send the run simulation command to CompuCell before it was open","message":"Fix minor error on mac where autorun CompuCell would send the run simulation command to CompuCell before it was open\n","repos":"ram8647\/tcseg,ram8647\/tcseg,ram8647\/tcseg","old_file":"BatchManager\/BatchManagerScripts\/ForceRunCompuCell.scpt","new_file":"BatchManager\/BatchManagerScripts\/ForceRunCompuCell.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u001e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\t\u0000\n\r\u0000\t\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0013\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0001\u0000\u0006\u0000\u0013\u0000\f\u0000\r\r\u0000\f\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0012\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\npisf\r\u0000\u0011\u0000\u00024\u0000\u0000\u0000\u000b\u0000\u000f\u0000\u0012\n\u0000\u0004\nprcs\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0013\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0016\u0000c\u0000c\u00003\u0000d\u0000_\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000f\u0000\u0015\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\n\u0000\u0002\u0000\u0016\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u0014\u0000-\u0000\u0017\r\u0000\u0017\u0000\u0002O\u0000\u0001\u0000\u0014\u0000-\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002O\u0000\u0000\u0000\u0018\u0000,\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002O\u0000\u0001\u0000\u001f\u0000+\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000#\u0000*\u0000\u001e\u0000\u001f\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000 \u000e\u0000 \u0000\u0001\u0000!\u0011\u0000!\u0000\u0002\u0000m\u0006\u0000\u001f\u0000\u0003\u0000\"\n\u0000\u0004\nfaal\r\u0000\"\u0000\u0001m\u0000\u0000\u0000%\u0000&\n\u0000\b\u000beMdsKcmd\u0006\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000#\u000f\u0000#\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000$\n\u0000\u0004\nprcs\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\u0016\u0000c\u0000c\u00003\u0000d\u0000_\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000'\u000f\u0000'\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000(\u0000)\u0001\u0000\u0000\u0010\u0000(\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000)\u0000\u0007\u0010\u0000*\u0000+\u0000,\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000*\u0000\u0001k\u0000\u0000\u0000\u0000\u0000-\u0000-\u0002\u0000-\u0000\u0002\u0000\u0005\u0000.\u0002\u0000.\u0000\u0002\u0000\t\u0000\/\u0002\u0000\/\u0000\u0002\u0000\u0016\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000+\u0000\u0000\u0010\u0000,\u0000\u000b\u0000\u0015\u0000\u0013\u0000%\u0000 \u0003\u0000\u001e\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nprcs\n\u0000\u0004\npisf\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u0011\u0000.j\f\u0000\u0001O\u0012\u0000\ne*\/,FUO\u0012\u0000\u0016*\/\u0012\u0000\u000e\u0012\u0000\tl\f\u0000\nUUU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\r\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\f\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovtrue\r\u0000\u000b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npisf\r\u0000\r\u0000\u00024\u0000\u0000\u0000\u0005\u0000\t\u0000\u000e\n\u0000\u0004\nprcs\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0016\u0000c\u0000c\u00003\u0000d\u0000_\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000f\u0000\u0011\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u000e\u0000'\u0000\u0013\r\u0000\u0013\u0000\u0002O\u0000\u0001\u0000\u000e\u0000'\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u0012\u0000&\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0001\u0000\u0019\u0000%\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003I\u0000\u0002\u0000\u001d\u0000$\u0000\u001a\u0000\u001b\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\u0002\u0000m\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nfaal\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000beMdsKcmd\u0006\u0000\u0000\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000\u001f\u000f\u0000\u001f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0017\u0000\u00024\u0000\u0000\u0000\u0012\u0000\u0016\u0000 \n\u0000\u0004\nprcs\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000!\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000\u0016\u0000c\u0000c\u00003\u0000d\u0000_\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000#\u000f\u0000#\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\u0003Tao\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ECeH+\u0000\u0000\u00001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ee\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u00001\u00000\u0000\/\u0000\u0002\u00004Tao:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000T\u0000a\u0000o\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000$\u0000%\u0001\u0000\u0000\u0010\u0000$\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000%\u0000\u0007\u0010\u0000&\u0000'\u0000(\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000&\u0000\u0001k\u0000\u0000\u0000\u0000\u0000'\u0000)\u0002\u0000)\u0000\u0002\u0000\u0005\u0000*\u0002\u0000*\u0000\u0002\u0000\u0012\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000'\u0000\u0000\u0010\u0000(\u0000\t\u0000\u0011\u0000\u000f\u0000!\u0000\u001c\n\u0000\u0004\nprcs\n\u0000\u0004\npisf\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u0011\u0000(\u0012\u0000\ne*\/,FUO\u0012\u0000\u0016*\/\u0012\u0000\u000e\u0012\u0000\tl\f\u0000\bUUU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9c1606df80ef3b12d83532d6df98a340fc88e05b","subject":"updated error message for popup_selectByCommand.","message":"updated error message for popup_selectByCommand.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 1.4.1\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\tset calcBoxWindowName to \"Specify Calculation\"\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t--wait until menu is available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_Popup_SelectByCommand ( value _\" & selectCommand & \"_ '\" & objValue & \"' in popup ) - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","old_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 1.4.1\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\tset calcBoxWindowName to \"Specify Calculation\"\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t--wait until menu is available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"Couldn't select menu item whose value _\" & selectCommand & \"_ '\" & objValue & \"' in popup - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4686f9636d6a0fbcb65905c927608f79c0c73de7","subject":"fmObjTrans should return the object; not run a sample.","message":"fmObjTrans should return the object; not run a sample.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n--tell fmObjTrans to clipboardPatternCount({searchString:\"\/\/ version\"})\n--tell fmObjTrans to clipboardPatternCount({searchString:\"BLAHBLAHBLAH\"})\n--tell fmObjTrans to clipboardPatternCount({searchHex:\"2F2F2076657273696F6E20\"})\n--tell fmObjTrans to (clipboardGetTextBetween({beforeString:\"\/\/ version \", afterString:\",\"}))\n\n\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.3, Daniel A. Shockley\n\t\t\n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & (ASCII character 10) & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & (ASCII character 10) & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsAsXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsAsXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsAsXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\treturn xmlHeader & return & someXML & return & xmlFooter\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.4, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\tset tidyShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\tset prettyXML to do shell script tidyShellCommand\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\t\t\n\t\t\t-- gets the text between specified occurrence of beforeText and afterText in sourceText\n\t\t\t-- the default textItemNum should be 2\n\t\t\t\n\t\t\t-- 1.6 - option to INCLUDE the before and after strings. Default is FALSE. Must use record parameter to use this feature. \n\t\t\t-- 1.5 - use 'class of prefs as string' to test, since FileMaker wrecks the term record\n\t\t\t\n\t\t\t-- USAGE1: getTextBetween({sourceTEXT, beforeTEXT, afterTEXT})\n\t\t\t-- USAGE2: getTextBetween({sourceText: sourceTEXT, beforeText: beforeTEXT, afterText: afterTEXT})\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\tset the prefixRemoved to text item textItemNum of sourceText\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\treturn finalResult\n\t\t\t\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"\nset fmObjTrans to fmObjectTranslator_Instantiate({})\n\n--tell fmObjTrans to clipboardPatternCount({searchString:\"\/\/ version\"})\n--tell fmObjTrans to clipboardPatternCount({searchString:\"BLAHBLAHBLAH\"})\n--tell fmObjTrans to clipboardPatternCount({searchHex:\"2F2F2076657273696F6E20\"})\ntell fmObjTrans to (clipboardGetTextBetween({beforeString:\"\/\/ version \", afterString:\",\"}))\n\n\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.2, Daniel A. Shockley\n\t\t\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & (ASCII character 10) & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & (ASCII character 10) & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsAsXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsAsXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsAsXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\treturn xmlHeader & return & someXML & return & xmlFooter\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\t\t\t\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.4, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\tset tidyShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\tset prettyXML to do shell script tidyShellCommand\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\t\t\n\t\t\t-- gets the text between specified occurrence of beforeText and afterText in sourceText\n\t\t\t-- the default textItemNum should be 2\n\t\t\t\n\t\t\t-- 1.6 - option to INCLUDE the before and after strings. Default is FALSE. Must use record parameter to use this feature. \n\t\t\t-- 1.5 - use 'class of prefs as string' to test, since FileMaker wrecks the term record\n\t\t\t\n\t\t\t-- USAGE1: getTextBetween({sourceTEXT, beforeTEXT, afterTEXT})\n\t\t\t-- USAGE2: getTextBetween({sourceText: sourceTEXT, beforeText: beforeTEXT, afterText: afterTEXT})\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\tset the prefixRemoved to text item textItemNum of sourceText\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\treturn finalResult\n\t\t\t\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"35a50bb3ef5094a79d041b44dca64f17ba52efaa","subject":"added TextWrangler-specific code to upgrade FM SQL query calcs","message":"added TextWrangler-specific code to upgrade FM SQL query calcs\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/misc\/TextWrangler - upgrade SQL Query to newer format.applescript","new_file":"library\/misc\/TextWrangler - upgrade SQL Query to newer format.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"1cca5ab111bb29d3238f75dfb47964338e38ee8f","subject":"testing for os 10.9","message":"testing for os 10.9\n","repos":"HackerTool\/alfred-reminders","old_file":"cache-reminders.scpt","new_file":"cache-reminders.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0007\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0000\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000>\u0000c\u0000o\u0000m\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000\f\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0016\u0000c\u0000a\u0000c\u0000h\u0000e\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0011\r\u0000\u0011\u0000\u0002i\u0000\u0000\u0000\u0006\u0000\t\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0014\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0019\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u0019\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0002\u0000\u0016\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002O\u0000\u0001\u0000\b\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0013\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002c\u0000\u0000\u0000\f\u0000\u0011\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0005\u0000\f\u0000\u000f\u0000\"\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000#\u0000$\r\u0000#\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\ncfol\r\u0000$\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nTEXT\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000%\u000f\u0000%\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001>\u0002^\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002r\u0000\u0000\u0000\u0015\u0000!\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001f\u0000*\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000*\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u001b\u0000+\n\u0000\u0004\nfile\r\u0000+\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000,\r\u0000,\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000&\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000_\u0000l\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003lib\u0000\u0000\u0002\u0000'\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000\"\u0000.\u00003\u00004\r\u00003\u0000\u0003I\u0000\u0002\u0000\"\u0000,\u00005\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u00005\u0000\u00024\u0000\u0000\u0000\"\u0000(\u00006\n\u0000\u0004\nfile\r\u00006\u0000\u0003l\u0000\u0005\u0000$\u0000'\u00007\r\u00007\u0000\u0002b\u0000\u0000\u0000$\u0000'\u00008\u00009\r\u00008\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000\u001e\u0000q\u0000_\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u00002\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000\/\u0000;\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0003\u0000\/\u00009\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0000\u00000\u00009\u0000D\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u0002\u0000D\u0000\u0002\u0000E\r\u0000E\u0000\u0001o\u0000\u0000\u00000\u00005\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0000?\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0002\u0000<\u0000<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000G\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u0000<\u0000<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002n\u0000\u0003\u0000<\u0000Q\u0000L\u0000M\r\u0000L\u0000\u0003I\u0000\u0000\u0000=\u0000Q\u0000N\u000b\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000\u001e\u0000c\u0000a\u0000c\u0000h\u0000e\u0000I\u0000n\u0000P\u0000r\u0000o\u0000g\u0000r\u0000e\u0000s\u0000s\u0002\u0000P\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0005\u0000>\u0000H\u0000U\r\u0000U\u0000\u0002n\u0000\u0003\u0000>\u0000H\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0000\u0000?\u0000H\u0000X\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0002\u0000X\u0000\u0002\u0000Y\r\u0000Y\u0000\u0003I\u0000\u0002\u0000?\u0000D\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00070\u0000\u0003lib\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000H\u0000M\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0000K\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0002\u0000R\u0000R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002O\u0000\u0000\u0000R\u0001\u0000_\u0000`\r\u0000_\u0000\u0001k\u0000\u0000\u0000`\u0001\u0000a\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000`\u0000f\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000`\u0000b\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000c\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000g\u0000}\u0000j\u0000k\r\u0000j\u0000\u00026\u0001\u0000\u0000g\u0000y\u0000l\u0000m\r\u0000l\u0000\u00012\u0000\u0001\u0000g\u0000l\n\u0000\u0004\nremi\r\u0000m\u0000\u0003l\u0000\u0005\u0000o\u0000x\u0000n\r\u0000n\u0000\u0002=\u0000\u0003\u0000o\u0000x\u0000o\u0000p\r\u0000o\u0000\u00011\u0000\u0000\u0000p\u0000t\n\u0000\u0004\ncomb\r\u0000p\u0000\u0001m\u0000\u0000\u0000u\u0000w\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0000i\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000u\u0000v\r\u0000u\u0000\u0003I\u0000\u0002\u0000~\u0000\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\u0002\u0000t\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003X\u0000\u0000\u0000\u0001\u0000y\u0000z\r\u0000y\u0000\u0001k\u0000\u0000\u0000\u0001\u0000{\u0002\u0000{\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nID \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbody\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\t0\u0000\u0005notes\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbody\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascd\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0001\u0018\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndued\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0002\u0001\u0014\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001\u0002\u0001\u0010\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0005\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001\u0005\u0001\u000f\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\b\u0001\r\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\t\u0001\r\n\u0000\u0004\ndued\r\u0000\u0000\u0001o\u0000\u0000\u0001\b\u0001\t\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001\u0019\u0001;\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0001\u0019\u0001\"\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\u0019\u0001\u001e\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001e\n\u0000\u0004\nrmdt\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001a\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001e\u0001!\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0001%\u00017\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001%\u00013\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001%\u0001(\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001(\u00012\u0000\u0006\u0000\u0000\u0003~\u0000}\u000b~\u0000\u000e0\u0000\nreminddate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001+\u00010\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001,\u00010|\n|\u0000\u0004\nrmdt\r\u0000\u0000\u0001o\u0000\u0000\u0001+\u0001,{\u000b{\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006}\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001<\u0001N\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001<\u0001J\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001<\u0001?y\u000by\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001?\u0001I\u0000\u0006\u0000\u0000\u0003x\u0000w\u000bx\u0000\u000e0\u0000\nimportance\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001B\u0001G\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001C\u0001Gv\nv\u0000\u0004\nprio\r\u0000\u0000\u0001o\u0000\u0000\u0001B\u0001Cu\u000bu\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006w\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001O\u0001e\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001O\u0001a\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001O\u0001Rs\u000bs\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001R\u0001`\u0000\u0006\u0000\u0000\u0003r\u0000q\u000br\u0000\u000e0\u0000\nparentlist\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0001U\u0001^\u0000po\r\u0000\u0000\u0002n\u0000\u0003\u0001U\u0001^\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001Z\u0001^n\nn\u0000\u0004\npnam\r\u0000\u0000\u0002n\u0000\u0003\u0001U\u0001Z\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001V\u0001Zm\nm\u0000\u0004\ncntr\r\u0000\u0000\u0001o\u0000\u0000\u0001U\u0001Vl\u000bl\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0006q\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001f\u0001fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001f\u0001n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001f\u0001ig\u000bg\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0000;\u0000\u0000\u0001l\u0001m\r\u0000\u0000\u0001o\u0000\u0000\u0001i\u0001lf\u000bf\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001o\u0001\u0000\u0000ed\r\u0000\u0000\u0002?\u0000\u0001\u0001o\u0001|\u0000\u0000\r\u0000\u0000\u0002\\\u0000\u0000\u0001o\u0001x\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0001o\u0001t\u0000cb\r\u0000\u0000\u0003I\u0000\u0002\u0001o\u0001ta`_\na\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001t\u0001w^\u000b^\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\r\u0000\u0000\u0001m\u0000\u0000\u0001x\u0001{]\u0003]\u0000d\r\u0000\u0000\u0000S\u0000\u0000\u0001\u0001\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\\\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0001\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001[\u0000Z\n[\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\b\u0000\u0000\b?zG\u0014{\u0002Z\u0000\u0000\f\u0000\u0000`\u0000Z this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000i\u0000s\u0000 \u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000p\u0000r\u0000e\u0000v\u0000e\u0000n\u0000t\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000\"\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000I\u0000n\u0000v\u0000a\u0000l\u0000i\u0000d\u0000 \u0000-\u00006\u00000\u00009\u0000\"\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000s\u0002\\\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\u0001\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0001\u0001X\u0000W\u000bX\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\u001c\u0000c\u0000l\u0000o\u0000s\u0000e\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0000\u0000\u0002\u0001\u0002V\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002V\u0000\u0000\u0002W\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001T\u000bT\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0002\u0000\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0004Z\u0000\u0000\u0001\u0001\u0001\u0005\u0001\u0006RQ\r\u0001\u0005\u0000\u0002F\u0000\u0000\u0001\u0001\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002F\u0000\u0000\u0001\u0001\u0001\t\u0001\n\r\u0001\t\u0000\u0002>\u0001\u0000\u0001\u0001\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001\u0001P\u000bP\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\r\u0001\f\u0000\u0001m\u0000\u0000\u0001\u0001O\nO\u0000\u0004\nmsng\r\u0001\n\u0000\u0003l\u0000\n\u0001\u0001\u0001\rNM\r\u0001\r\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0001N\u0000\u0000\u0001M\u0000\u0000\r\u0001\b\u0000\u0002>\u0001\u0000\u0001\u0001\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u00011\u0000\u0000\u0001\u0001K\nK\u0000\u0004\nbnid\r\u0001\u0011\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0012JI\r\u0001\u0012\u0000\u0003I\u0000\u0002\u0001\u0001H\u0001\u0013G\nH\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0001\u0013\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0014FE\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001\u0015C\nD\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001B\nB\u0000\b\u000bappfegfp\u0002C\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002G\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\r\u0001\u0006\u0000\u0003I\u0000\u0002\u0001\u0001A@?\nA\u0000\u0018.aevtquitnull\u0000\u0000null\u0001@\u0000\u0000\u0002?\u0000\u0000\u0002R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0018>\r\u0001\u0018\u0000\u0003l\u0000\u0002\u0001\u0001=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002>\u0000\u0000\r\u0000`\u0000\u00035\u0000\u0000\u0000R\u0000]:\u0001\u00199\n:\u0000\u0004\ncapp\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000V\u0000Y\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\n9\u0000\b\u000bkfrmID \u0002\u0000^\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002n\u0000\u0003\u0001\u0001\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0003I\u0000\u0000\u0001\u00018\u0001 7\u000b8\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0001\u0001\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\u0012\u0000t\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0003l\u0000\u0005\u0001\u0001\u0001'65\r\u0001'\u0000\u0003I\u0000\u0002\u0001\u0001432\n4\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u00013\u0000\u0000\u00022\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0001&\u0000\u0002\u0001(1\r\u0001(\u0000\u0001o\u0000\u0000\u0001\u00010\u000b0\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u00021\u0000\u0000\u00027\u0000\u0000\r\u0001\u001f\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0001\u001d\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0002n\u0000\u0003\u0001\u0002\u0002\u0001+\u0001,\r\u0001+\u0000\u0003I\u0000\u0000\u0001\u0002\u0002.\u0001--\u000b.\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0001m\u0000\u0000\u0001\u0001\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\"\u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0001\/\u0000\u0002\u00012\u00013\r\u00012\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u00013\u0000\u0002\u00014+\r\u00014\u0000\u0001o\u0000\u0000\u0001\u0001*\u000b*\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002+\u0000\u0000\u0002-\u0000\u0000\r\u0001,\u0000\u0001o\u0000\u0000\u0001\u0001)\u000b)\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0001*\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002n\u0000\u0003\u0002\u0003\u0002\u0011\u00017\u00018\r\u00017\u0000\u0003I\u0000\u0000\u0002\u0004\u0002\u0011(\u00019'\u000b(\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u00019\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0002\u0004\u0002\u0007\u0001<\u000e\u0001<\u0000\u0001\u0001=\u0011\u0001=\u0000\u001e\u0000c\u0000a\u0000c\u0000h\u0000e\u0000I\u0000n\u0000P\u0000r\u0000o\u0000g\u0000r\u0000e\u0000s\u0000s\u0002\u0001;\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0001m\u0000\u0000\u0002\u0007\u0002\b&\u0003&\u0000\u0000\u0002\u0001?\u0000\u0002\u0001@%\r\u0001@\u0000\u0001o\u0000\u0000\u0002\b\u0002\r$\u000b$\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002%\u0000\u0000\u0002'\u0000\u0000\r\u00018\u0000\u0001o\u0000\u0000\u0002\u0003\u0002\u0004#\u000b#\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u00016\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0002\u0012\u0002\u0012\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u0001B\u0000\u0002\u0001C\u001f\r\u0001C\u0000\u0001L\u0000\u0000\u0002\u0012\u0002\u0014\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u001d\u0001D\u0000\b\u0000\r\u0001E\u0001\u001d\u0000\u0000\u0010\u0001D\u0000\u0003\u001c\u001b\u001a\u000b\u001c\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\u001b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\n\u001a\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001E\u0000\u0007\u0010\u0019\u0000\u0013\u0018\u0017\u0001F\u0001G\u0016\n\u0019\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0018\u0000\u0000\u0002\u0017\u0000\u0000\u0010\u0001F\u0000\u0001\u0015\u000b\u0015\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0010\u0001G\u0000>\u0014\u0013\u0000%\u0012\u0011\u0010\u000f\u0000\/\u000e\r\u0000:\f\u000b\u0000Q\n\t\b\u0007\u0001\u001a\u0006\u0005\u0004\u0001H\u0003\u0002\u0001\u0000\u0000\u0001\u0000\u0001\u0016\u0001#\u00010\u0001<\n\u0014\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0013\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\n\u0012\u0000\u0004\ncfol\n\u0011\u0000\u0004\nTEXT\u000b\u0010\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\n\u000f\u0000\u0004\nfile\n\u000e\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u000b\r\u0000\u00070\u0000\u0003lib\u0000\u0000\u000b\f\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\n\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\t\u0000\f0\u0000\bunixtime\u0000\u0000\u000b\b\u0000\r0\u0000\tset_value\u0000\u0000\n\u0007\u0000\u0004\ncapp\n\u0006\u0000\b\u000bkfrmID \u000b\u0005\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\n\u0004\u0000\u0004\nremi\u000e\u0001H\u0000\u0000\u0013\n\u0003\u0000\u0004\ncomb\u000b\u0002\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u000b\u0001\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\n\u0000\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\n\u0000\u0004\nID \u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u000b\u0000\t0\u0000\u0005title\u0000\u0000\n\u0000\u0004\npnam\n\u0000\u0004\nbody\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005notes\u0000\u0000\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\n\u0000\u0004\nascd\n\u0000\u0004\ndued\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\n\u0000\u0004\nrmdt\u000b\u0000\u000e0\u0000\nreminddate\u0000\u0000\u000b\u0000\u000e0\u0000\nimportance\u0000\u0000\n\u0000\u0004\nprio\u000b\u0000\u000e0\u0000\nparentlist\u0000\u0000\n\u0000\u0004\ncntr\u0003\u0000d\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u000b\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\n\u0000\u0004\nbool\n\u0000\b\u000bappfegfp\n\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\n\u0000\u0004\nbnid\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0011\u0016\u0002\u0015)j\f\u0000\u0000EO\u0012\u0000\t,&EUO*%\/j\f\u0000\bEO*%\/j\f\u0000\bEOb\u0000\u0001\u0000\u0000k+\u0000\fEO*j\f\u0000\u000ek+\u0000\u000fb\u0000\u0001\u0000\u0001m+\u0000\u0010O)a\u0000\u0011a\u0000\u0012a\u0000\u00130\u0012\u0001jvE`\u0000\u0014O*a\u0000\u0015-a\u0000\u0016[a\u0000\u0017,\\Zf81E`\u0000\u0018O*j\f\u0000\u000eE`\u0000\u0019O\u0017\u0001\b_\u0000\u0018[a\u0000\u001aa\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0000a\u0000\u001da\u0000\u001e,l\u000eE`\u0000\u001fO_\u0000\u001fa\u0000 a\u0000!,l\u000e%E`\u0000\u001fOa\u0000\",a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000$a\u0000\",l\u000e%E`\u0000\u001fY\u0000\u0003hO_\u0000\u001fa\u0000%a\u0000&,l\u000e%E`\u0000\u001fOa\u0000',a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000(a\u0000',l\u000e%E`\u0000\u001fY\u0000\u0003hOa\u0000),a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000*a\u0000),l\u000e%E`\u0000\u001fY\u0000\u0003hO_\u0000\u001fa\u0000+a\u0000,,l\u000e%E`\u0000\u001fO_\u0000\u001fa\u0000-a\u0000.,a\u0000!,l\u000e%E`\u0000\u001fO_\u0000\u001f_\u0000\u00146FO*j\f\u0000\u000e_\u0000\u0019\u001fa\u0000\/\u0002\u001d\u0000\u0006\u0016Y\u0000\u0003hOa\u00000j\f\u00001[OY\fOa\u00002b\u0000\u0001\u0000\u0001l+\u00003E`\u00004O_\u00004a\u0000#\u0001\t\u0000\t_\u00004a\u00005&\t\u0000\u0019a\u00006j\f\u0000\u0000j\f\u00007a\u00008,a\u00009\u0001a\u00005&\u001d\u0000\n*j\f\u0000:Y\u0000\u0003hOPUOa\u0000;*j\f\u0000\u000eb\u0000\u0001\u0000\u0001m+\u0000\u0010Oa\u0000<_\u0000\u0014b\u0000\u0001\u0000\u0001m+\u0000\u0010Oa\u0000=jb\u0000\u0001\u0000\u0001m+\u0000\u0010Oh\u000f\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0007\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0000\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000>\u0000c\u0000o\u0000m\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000\f\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0016\u0000c\u0000a\u0000c\u0000h\u0000e\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0011\r\u0000\u0011\u0000\u0002i\u0000\u0000\u0000\u0006\u0000\t\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0014\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0019\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u0019\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0002\u0000\u0016\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002O\u0000\u0001\u0000\b\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0013\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002c\u0000\u0000\u0000\f\u0000\u0011\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0005\u0000\f\u0000\u000f\u0000\"\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000#\u0000$\r\u0000#\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\ncfol\r\u0000$\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nTEXT\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000%\u000f\u0000%\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001>\u0002^\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0002r\u0000\u0000\u0000\u0015\u0000!\u0000(\u0000)\r\u0000(\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001f\u0000*\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000*\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u001b\u0000+\n\u0000\u0004\nfile\r\u0000+\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001a\u0000,\r\u0000,\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a\u0000-\u0000.\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0000.\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000&\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000_\u0000l\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003lib\u0000\u0000\u0002\u0000'\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000\"\u0000.\u00003\u00004\r\u00003\u0000\u0003I\u0000\u0002\u0000\"\u0000,\u00005\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u00005\u0000\u00024\u0000\u0000\u0000\"\u0000(\u00006\n\u0000\u0004\nfile\r\u00006\u0000\u0003l\u0000\u0005\u0000$\u0000'\u00007\r\u00007\u0000\u0002b\u0000\u0000\u0000$\u0000'\u00008\u00009\r\u00008\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000\u001e\u0000q\u0000_\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u00002\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000\/\u0000;\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0003\u0000\/\u00009\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0000\u00000\u00009\u0000D\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u0002\u0000D\u0000\u0002\u0000E\r\u0000E\u0000\u0001o\u0000\u0000\u00000\u00005\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000C\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0000?\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0002\u0000<\u0000<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000G\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u0000<\u0000<\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002n\u0000\u0003\u0000<\u0000Q\u0000L\u0000M\r\u0000L\u0000\u0003I\u0000\u0000\u0000=\u0000Q\u0000N\u000b\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000Q\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000\u001e\u0000c\u0000a\u0000c\u0000h\u0000e\u0000I\u0000n\u0000P\u0000r\u0000o\u0000g\u0000r\u0000e\u0000s\u0000s\u0002\u0000P\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0005\u0000>\u0000H\u0000U\r\u0000U\u0000\u0002n\u0000\u0003\u0000>\u0000H\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0000\u0000?\u0000H\u0000X\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0002\u0000X\u0000\u0002\u0000Y\r\u0000Y\u0000\u0003I\u0000\u0002\u0000?\u0000D\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00070\u0000\u0003lib\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000H\u0000M\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0000K\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0002\u0000R\u0000R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002O\u0000\u0000\u0000R\u0001\u0000_\u0000`\r\u0000_\u0000\u0001k\u0000\u0000\u0000`\u0001\u0000a\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000`\u0000f\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000`\u0000b\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000c\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000g\u0000}\u0000j\u0000k\r\u0000j\u0000\u00026\u0001\u0000\u0000g\u0000y\u0000l\u0000m\r\u0000l\u0000\u00012\u0000\u0001\u0000g\u0000l\n\u0000\u0004\nremi\r\u0000m\u0000\u0003l\u0000\u0005\u0000o\u0000x\u0000n\r\u0000n\u0000\u0002=\u0000\u0003\u0000o\u0000x\u0000o\u0000p\r\u0000o\u0000\u00011\u0000\u0000\u0000p\u0000t\n\u0000\u0004\ncomb\r\u0000p\u0000\u0001m\u0000\u0000\u0000u\u0000w\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0000i\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0002\u0000~\u0000~\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000u\u0000v\r\u0000u\u0000\u0003I\u0000\u0002\u0000~\u0000\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\u0002\u0000t\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003X\u0000\u0000\u0000\u0001\u0000y\u0000z\r\u0000y\u0000\u0001k\u0000\u0000\u0000\u0001\u0000{\u0002\u0000{\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nID \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbody\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\t0\u0000\u0005notes\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbody\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascd\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000\u0001\u0018\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndued\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0002\u0001\u0014\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001\u0002\u0001\u0010\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0005\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001\u0005\u0001\u000f\u0000\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\b\u0001\r\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\t\u0001\r\n\u0000\u0004\ndued\r\u0000\u0000\u0001o\u0000\u0000\u0001\b\u0001\t\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001\u0019\u0001;\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0001\u0019\u0001\"\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\u0019\u0001\u001e\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001e\n\u0000\u0004\nrmdt\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001a\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001e\u0001!\n\u0000\u0004\nmsng\r\u0000\u0000\u0002r\u0000\u0000\u0001%\u00017\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001%\u00013\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001%\u0001(\u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001(\u00012\u0000\u0006\u0000\u0000\u0003~\u0000}\u000b~\u0000\u000e0\u0000\nreminddate\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001+\u00010\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001,\u00010|\n|\u0000\u0004\nrmdt\r\u0000\u0000\u0001o\u0000\u0000\u0001+\u0001,{\u000b{\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006}\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001<\u0001N\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001<\u0001J\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001<\u0001?y\u000by\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001?\u0001I\u0000\u0006\u0000\u0000\u0003x\u0000w\u000bx\u0000\u000e0\u0000\nimportance\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001B\u0001G\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001C\u0001Gv\nv\u0000\u0004\nprio\r\u0000\u0000\u0001o\u0000\u0000\u0001B\u0001Cu\u000bu\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0006w\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001O\u0001e\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001O\u0001a\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001O\u0001Rs\u000bs\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0001K\u0000\u0000\u0001R\u0001`\u0000\u0006\u0000\u0000\u0003r\u0000q\u000br\u0000\u000e0\u0000\nparentlist\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0001U\u0001^\u0000po\r\u0000\u0000\u0002n\u0000\u0003\u0001U\u0001^\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001Z\u0001^n\nn\u0000\u0004\npnam\r\u0000\u0000\u0002n\u0000\u0003\u0001U\u0001Z\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001V\u0001Zm\nm\u0000\u0004\ncntr\r\u0000\u0000\u0001o\u0000\u0000\u0001U\u0001Vl\u000bl\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0006q\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001f\u0001fjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001f\u0001n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001f\u0001ig\u000bg\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0000;\u0000\u0000\u0001l\u0001m\r\u0000\u0000\u0001o\u0000\u0000\u0001i\u0001lf\u000bf\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001o\u0001\u0000\u0000ed\r\u0000\u0000\u0002?\u0000\u0001\u0001o\u0001|\u0000\u0000\r\u0000\u0000\u0002\\\u0000\u0000\u0001o\u0001x\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0001o\u0001t\u0000cb\r\u0000\u0000\u0003I\u0000\u0002\u0001o\u0001ta`_\na\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001t\u0001w^\u000b^\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\r\u0000\u0000\u0001m\u0000\u0000\u0001x\u0001{]\u0003]\u0000\n\r\u0000\u0000\u0000S\u0000\u0000\u0001\u0001\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\\\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0001\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001[\u0000Z\n[\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\b\u0000\u0000\b?zG\u0014{\u0002Z\u0000\u0000\f\u0000\u0000`\u0000Z this delay is important to prevent random \"Connection is Invalid -609\" AppleScript errors\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000i\u0000s\u0000 \u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000p\u0000r\u0000e\u0000v\u0000e\u0000n\u0000t\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000\"\u0000C\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000I\u0000n\u0000v\u0000a\u0000l\u0000i\u0000d\u0000 \u0000-\u00006\u00000\u00009\u0000\"\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000s\u0002\\\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0001\u0001\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0001\u0001X\u0000W\u000bX\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\u001c\u0000c\u0000l\u0000o\u0000s\u0000e\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0000\u0000\u0002\u0001\u0002V\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002V\u0000\u0000\u0002W\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001T\u000bT\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0002\u0000\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0004Z\u0000\u0000\u0001\u0001\u0001\u0005\u0001\u0006RQ\r\u0001\u0005\u0000\u0002F\u0000\u0000\u0001\u0001\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002F\u0000\u0000\u0001\u0001\u0001\t\u0001\n\r\u0001\t\u0000\u0002>\u0001\u0000\u0001\u0001\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001\u0001P\u000bP\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\r\u0001\f\u0000\u0001m\u0000\u0000\u0001\u0001O\nO\u0000\u0004\nmsng\r\u0001\n\u0000\u0003l\u0000\n\u0001\u0001\u0001\rNM\r\u0001\r\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0001N\u0000\u0000\u0001M\u0000\u0000\r\u0001\b\u0000\u0002>\u0001\u0000\u0001\u0001\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u00011\u0000\u0000\u0001\u0001K\nK\u0000\u0004\nbnid\r\u0001\u0011\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0012JI\r\u0001\u0012\u0000\u0003I\u0000\u0002\u0001\u0001H\u0001\u0013G\nH\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0001\u0013\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0014FE\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001\u0015C\nD\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001B\nB\u0000\b\u000bappfegfp\u0002C\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002G\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0016\u000e\u0001\u0016\u0000\u0001\u0001\u0017\u0011\u0001\u0017\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\r\u0001\u0006\u0000\u0003I\u0000\u0002\u0001\u0001A@?\nA\u0000\u0018.aevtquitnull\u0000\u0000null\u0001@\u0000\u0000\u0002?\u0000\u0000\u0002R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0018>\r\u0001\u0018\u0000\u0003l\u0000\u0002\u0001\u0001=<;\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0002>\u0000\u0000\r\u0000`\u0000\u00035\u0000\u0000\u0000R\u0000]:\u0001\u00199\n:\u0000\u0004\ncapp\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000V\u0000Y\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\n9\u0000\b\u000bkfrmID \u0002\u0000^\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002n\u0000\u0003\u0001\u0001\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0003I\u0000\u0000\u0001\u00018\u0001 7\u000b8\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0001\u0001\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\u0012\u0000t\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0003l\u0000\u0005\u0001\u0001\u0001'65\r\u0001'\u0000\u0003I\u0000\u0002\u0001\u0001432\n4\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u00013\u0000\u0000\u00022\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0001&\u0000\u0002\u0001(1\r\u0001(\u0000\u0001o\u0000\u0000\u0001\u00010\u000b0\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u00021\u0000\u0000\u00027\u0000\u0000\r\u0001\u001f\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0001\u001d\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0002n\u0000\u0003\u0001\u0002\u0002\u0001+\u0001,\r\u0001+\u0000\u0003I\u0000\u0000\u0001\u0002\u0002.\u0001--\u000b.\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0001m\u0000\u0000\u0001\u0001\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\"\u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0001\/\u0000\u0002\u00012\u00013\r\u00012\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u00013\u0000\u0002\u00014+\r\u00014\u0000\u0001o\u0000\u0000\u0001\u0001*\u000b*\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002+\u0000\u0000\u0002-\u0000\u0000\r\u0001,\u0000\u0001o\u0000\u0000\u0001\u0001)\u000b)\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0001*\u0000\u0002\u00015\u00016\r\u00015\u0000\u0002n\u0000\u0003\u0002\u0003\u0002\u0011\u00017\u00018\r\u00017\u0000\u0003I\u0000\u0000\u0002\u0004\u0002\u0011(\u00019'\u000b(\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u00019\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0002\u0004\u0002\u0007\u0001<\u000e\u0001<\u0000\u0001\u0001=\u0011\u0001=\u0000\u001e\u0000c\u0000a\u0000c\u0000h\u0000e\u0000I\u0000n\u0000P\u0000r\u0000o\u0000g\u0000r\u0000e\u0000s\u0000s\u0002\u0001;\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0001m\u0000\u0000\u0002\u0007\u0002\b&\u0003&\u0000\u0000\u0002\u0001?\u0000\u0002\u0001@%\r\u0001@\u0000\u0001o\u0000\u0000\u0002\b\u0002\r$\u000b$\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002%\u0000\u0000\u0002'\u0000\u0000\r\u00018\u0000\u0001o\u0000\u0000\u0002\u0003\u0002\u0004#\u000b#\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u00016\u0000\u0002\u0001A\u0001B\r\u0001A\u0000\u0003l\u0000\u0002\u0002\u0012\u0002\u0012\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\u0001B\u0000\u0002\u0001C\u001f\r\u0001C\u0000\u0001L\u0000\u0000\u0002\u0012\u0002\u0014\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u000e\u001d\u0001D\u0000\b\u0000\r\u0001E\u0001F\u0001G\u0001H\u0001I\u0001J\u0001K\u0001L\u0001M\u001c\u0001\u001d\u0000\u0000\u0010\u0001D\u0000\f\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000b\u001b\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\u001a\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\n\u0019\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0018\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u000b\u0017\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\u000b\u0016\u0000\u00070\u0000\u0003lib\u0000\u0000\u000b\u0015\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u0014\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u000b\u0013\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u000b\u0012\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\u000b\u0011\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u000b\u0010\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u000e\u0001E\u0000\u0007\u0010\u000f\u0000\u0013\u000e\r\u0001N\u0001O\f\n\u000f\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u000e\u0000\u0000\u0002\r\u0000\u0000\u0010\u0001N\u0000\u0001\u000b\u000b\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0010\u0001O\u0000>\n\t\u0000%\b\u0007\u0006\u0005\u0000\/\u0004\u0003\u0000:\u0002\u0001\u0000Q\u0000\u0001\u001a\u0001P\u0000\u0001\u0000\u0001\u0016\u0001#\u00010\u0001<\n\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\t\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\n\b\u0000\u0004\ncfol\n\u0007\u0000\u0004\nTEXT\u000b\u0006\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\n\u0005\u0000\u0004\nfile\n\u0004\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u000b\u0003\u0000\u00070\u0000\u0003lib\u0000\u0000\u000b\u0002\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u0001\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\n\u0000\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u000b\u0000\r0\u0000\tset_value\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\n\u0000\u0004\nremi\u000e\u0001P\u0000\u0000\u0013\n\u0000\u0004\ncomb\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u000b\u0000\u00100\u0000\u0006intime\u0000\u0006inTime\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\n\u0000\u0004\nID \u000b\u0000 0\u0000\u000ereminderrecord\u0000\u000ereminderRecord\u000b\u0000\t0\u0000\u0005title\u0000\u0000\n\u0000\u0004\npnam\n\u0000\u0004\nbody\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005notes\u0000\u0000\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\n\u0000\u0004\nascd\n\u0000\u0004\ndued\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\n\u0000\u0004\nrmdt\u000b\u0000\u000e0\u0000\nreminddate\u0000\u0000\u000b\u0000\u000e0\u0000\nimportance\u0000\u0000\n\u0000\u0004\nprio\u000b\u0000\u000e0\u0000\nparentlist\u0000\u0000\n\u0000\u0004\ncntr\u0003\u0000\n\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u000b\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\n\u0000\u0004\nbool\n\u0000\b\u000bappfegfp\n\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\n\u0000\u0004\nbnid\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0011\f\u0002\u0015)j\f\u0000\u0000EO\u0012\u0000\t,&EUO*%\/j\f\u0000\bEO*%\/j\f\u0000\bEOb\u0000\u0001\u0000\u0000k+\u0000\fEO*j\f\u0000\u000ek+\u0000\u000fb\u0000\u0001\u0000\u0001m+\u0000\u0010O)a\u0000\u0011a\u0000\u0012a\u0000\u00130\u0012\u0001jvE`\u0000\u0014O*a\u0000\u0015-a\u0000\u0016[a\u0000\u0017,\\Zf81E`\u0000\u0018O*j\f\u0000\u000eE`\u0000\u0019O\u0017\u0001\b_\u0000\u0018[a\u0000\u001aa\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0000a\u0000\u001da\u0000\u001e,l\u000eE`\u0000\u001fO_\u0000\u001fa\u0000 a\u0000!,l\u000e%E`\u0000\u001fOa\u0000\",a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000$a\u0000\",l\u000e%E`\u0000\u001fY\u0000\u0003hO_\u0000\u001fa\u0000%a\u0000&,l\u000e%E`\u0000\u001fOa\u0000',a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000(a\u0000',l\u000e%E`\u0000\u001fY\u0000\u0003hOa\u0000),a\u0000#\u0001\u001d\u0000\u0017_\u0000\u001fa\u0000*a\u0000),l\u000e%E`\u0000\u001fY\u0000\u0003hO_\u0000\u001fa\u0000+a\u0000,,l\u000e%E`\u0000\u001fO_\u0000\u001fa\u0000-a\u0000.,a\u0000!,l\u000e%E`\u0000\u001fO_\u0000\u001f_\u0000\u00146FO*j\f\u0000\u000e_\u0000\u0019\u001fa\u0000\/\u0002\u001d\u0000\u0006\u0016Y\u0000\u0003hOa\u00000j\f\u00001[OY\fOa\u00002b\u0000\u0001\u0000\u0001l+\u00003E`\u00004O_\u00004a\u0000#\u0001\t\u0000\t_\u00004a\u00005&\t\u0000\u0019a\u00006j\f\u0000\u0000j\f\u00007a\u00008,a\u00009\u0001a\u00005&\u001d\u0000\n*j\f\u0000:Y\u0000\u0003hOPUOa\u0000;*j\f\u0000\u000eb\u0000\u0001\u0000\u0001m+\u0000\u0010Oa\u0000<_\u0000\u0014b\u0000\u0001\u0000\u0001m+\u0000\u0010Oa\u0000=jb\u0000\u0001\u0000\u0001m+\u0000\u0010Oh\u000f\u000f\u000f\u0001F\u0002d\ralis\u0000\u0000\u0000\u0000\u0002`\u0000\u0002\u0000\u0000\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001\u000e\\\u0014cache-reminders.scpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001@HVosasasDB\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001fuser.workflow.74D66E93-#10EDF5C\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000HF\u0000\u0000\u0000\u0001\u0000\u001c\u0001\u000e\\\u0001\u0003f\u0001\u0003Z\u0000#sU\u0000#sT\u0000\u0005>\u0000\u0000)\u0000\u0002\u0000Macintosh HD:Users:\u0000jack:\u0000Dropbox:\u0000Alfred:\u0000Alfred.alfredpreferences:\u0000workflows:\u0000user.workflow.74D66E93-#10EDF5C:\u0000cache-reminders.scpt\u0000\u0000\u000e\u0000*\u0000\u0014\u0000c\u0000a\u0000c\u0000h\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000Users\/jack\/Dropbox\/Alfred\/Alfred.alfredpreferences\/workflows\/user.workflow.74D66E93-4C95-40CE-B93F-E89237A4CFAB\/cache-reminders.scpt\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000b\u0000\u0000\u000e\u0001G\u0000\u0001\u0001Q\u0011\u0001Q\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000j\u0000a\u0000c\u0000k\u0000:\u0000D\u0000r\u0000o\u0000p\u0000b\u0000o\u0000x\u0000:\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000:\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000s\u0000:\u0000u\u0000s\u0000e\u0000r\u0000.\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u00007\u00004\u0000D\u00006\u00006\u0000E\u00009\u00003\u0000-\u00004\u0000C\u00009\u00005\u0000-\u00004\u00000\u0000C\u0000E\u0000-\u0000B\u00009\u00003\u0000F\u0000-\u0000E\u00008\u00009\u00002\u00003\u00007\u0000A\u00004\u0000C\u0000F\u0000A\u0000B\u0000:\u000e\u0001H\u0000\u0004\u000f\u0001R\u0000\u0002\u0001S\u0001\u0000\u0000\r\u0001R\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0001W\u000b\u0000\u00150\u0000\u0011pocketconsumerkey\u0000\u0000\r\u0001W\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001X\u000e\u0001X\u0000\u0001\u0001Y\u0011\u0001Y\u0000<\u00001\u00002\u00006\u00005\u00000\u0000-\u0000d\u00003\u00005\u00009\u0000d\u00008\u0000e\u0000d\u00009\u00009\u00004\u0000f\u00006\u00003\u0000d\u0000b\u0000e\u0000f\u00006\u0000b\u00000\u00001\u00002\u0000b\u0002\u0001V\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0001\\\u000b\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\r\u0001\\\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\b\u000bboovfals\u0002\u0001[\u0000\u0002\u0001]\u0001^\r\u0001]\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\b\u0001_\u000b\u0000\u00180\u0000\nclosenotes\u0000\ncloseNotes\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovfals\u0002\u0001^\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0002j\u0000\u0000\u0000\t\u0000\u000b\u0001b\u000b\u0000\u00160\u0000\tupdateurl\u0000\tupdateURL\r\u0001b\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0001c\u000e\u0001c\u0000\u0001\u0001d\u0011\u0001d\u0000f\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000\/\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000-\u0000c\u0000h\u0000e\u0000c\u0000k\u0000.\u0000p\u0000h\u0000p\u0002\u0001a\u0000\u0002\u0001e\u0001f\r\u0001e\u0000\u0002j\u0000\u0000\u0000\f\u0000\u000e\u0001g\u000b\u0000\u001a0\u0000\u000bdownloadurl\u0000\u000bdownloadURL\r\u0001g\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0001h\u000e\u0001h\u0000\u0001\u0001i\u0011\u0001i\u0000\\\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000w\u0000w\u0000w\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000\/\u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000p\u0000h\u0000p\u0002\u0001f\u0000\u0002\u0001j\u0001k\r\u0001j\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0011\u0001l\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0001l\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nmsng\u0002\u0001k\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001n\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001q\u0001r\u0001\u0000\u0000\f\u0001q\u0000\u0013\u0000\r localisation\u0000\u0002\u0000\u0000\u000e\u0001r\u0000\u0001\u0001s\u0011\u0001s\u0000\u001a\u0000 \u0000l\u0000o\u0000c\u0000a\u0000l\u0000i\u0000s\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001p\u0000\u0002\u0001t\u0001u\r\u0001t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001u\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0002j\u0000\u0000\u0000\u0012\u0000\u0014\u0001x\u000b\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\r\u0001x\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0001y\u000e\u0001y\u0000\u0001\u0001z\u0011\u0001z\u0000\u000e\u0000o\u0000v\u0000e\u0000r\u0000d\u0000u\u0000e\u0002\u0001w\u0000\u0002\u0001{\u0001|\r\u0001{\u0000\u0002j\u0000\u0000\u0000\u0015\u0000\u0017\u0001}\u000b\u0000\u00160\u0000\tallstring\u0000\tallString\r\u0001}\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000a\u0000l\u0000l\u0002\u0001|\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002j\u0000\u0000\u0000\u0018\u0000\u001a\u0001\u000b\u0000\u001e0\u0000\rrefreshstring\u0000\rrefreshString\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000r\u0000e\u0000f\u0000r\u0000e\u0000s\u0000h\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002j\u0000\u0000\u0000\u001b\u0000D\u0001\u000b\u0000&0\u0000\u0011reminderhelpitems\u0000\u0011reminderHelpItems\r\u0001\u0000\u0001J\u0000\u0000\u0000\u001b\u0000C\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000$\u0000d\u0000o\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000c\u0000r\u0000a\u0000z\u0000y\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000\u001e\u0000!\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000!\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000t\u0000o\u0000d\u0000a\u0000y\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000h\u0000a\u0000m\u0000s\u0000t\u0000e\u0000r\u0000s\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000i\u0000l\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000!\u0000$\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000!\u0000$\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000t\u0000o\u0000m\u0000o\u0000r\u0000r\u0000o\u0000w\u0000 \u0000b\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000f\u0000i\u0000n\u0000a\u0000n\u0000c\u0000i\u0000a\u0000l\u0000 \u0000r\u0000u\u0000i\u0000n\u0000 \u0000u\u0000p\u0000o\u0000n\u0000 \u0000m\u0000y\u0000 \u0000e\u0000n\u0000e\u0000m\u0000i\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000$\u0000'\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000$\u0000'\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000i\u0000n\u0000 \u00005\u0000 \u0000m\u0000i\u0000n\u0000u\u0000t\u0000e\u0000s\u0000 \u0000d\u0000r\u0000o\u0000p\u0000 \u0000e\u0000v\u0000e\u0000r\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000'\u0000*\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000'\u0000*\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000b\u0000i\u0000n\u0000 \u00002\u0000 \u0000h\u0000o\u0000u\u0000r\u0000s\u0000 \u0000l\u0000a\u0000u\u0000g\u0000h\u0000 \u0000o\u0000u\u0000t\u0000 \u0000l\u0000o\u0000u\u0000d\u0000 \u0000i\u0000n\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000t\u0000h\u0000o\u0000u\u0000g\u0000h\u0000t\u0000s\u0000 \u0000l\u0000i\u0000s\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000*\u0000-\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000X\u0000i\u0000n\u0000 \u00003\u0000 \u0000d\u0000a\u0000y\u0000s\u0000 \u00001\u0000 \u0000h\u0000o\u0000u\u0000r\u0000 \u0000p\u0000i\u0000c\u0000k\u0000 \u0000s\u0000t\u0000u\u0000f\u0000f\u0000 \u0000u\u0000p\u0000 \u0000o\u0000f\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000l\u0000o\u0000o\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000-\u00000\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000-\u00000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000|\u0000o\u0000n\u0000 \u00002\u00004\u0000\/\u00001\u00002\u0000\/\u00001\u00003\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000g\u0000e\u0000t\u0000 \u0000e\u0000v\u0000e\u0000r\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000I\u0000 \u0000k\u0000n\u0000o\u0000w\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000i\u0000n\u0000g\u0000s\u0000 \u0000i\u0000n\u0000 \u0000m\u0000o\u0000v\u0000i\u0000e\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u00000\u00003\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00000\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000h\u0000o\u0000n\u0000 \u00001\u00002\u0000 \u0000J\u0000u\u0000n\u0000e\u0000 \u00001\u00005\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000u\u0000p\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000i\u0000d\u0000e\u0000a\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u00003\u00006\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00003\u00006\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000X\u0000o\u0000n\u0000 \u00001\u00001\u0000 \u00001\u00002\u0000 \u00001\u00003\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000w\u0000h\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0000'\u0000s\u0000 \u0000l\u0000i\u0000k\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u00006\u00009\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00006\u00009\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000o\u0000n\u0000 \u00003\u00001\u0000-\u00001\u00002\u0000-\u00009\u00009\u0000 \u00002\u00003\u0000:\u00002\u00002\u0000 \u0000t\u0000o\u0000 \u0000p\u0000a\u0000n\u0000i\u0000c\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000i\u0000l\u0000l\u0000e\u0000n\u0000n\u0000i\u0000u\u0000m\u0000 \u0000b\u0000u\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u00009\u0000<\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000a\u0000t\u0000 \u00002\u0000p\u0000m\u0000 \u0000t\u0000o\u0000 \u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000n\u0000o\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000p\u0000a\u0000r\u0000t\u0000i\u0000c\u0000u\u0000l\u0000a\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\t\u0000<\u0000?\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000<\u0000?\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000b\u0000t\u0000h\u0000u\u0000r\u0000s\u0000d\u0000a\u0000y\u0000 \u0000a\u0000t\u0000 \u00001\u00005\u0000.\u00003\u00000\u0000 \u0000t\u0000o\u0000 \u0000a\u0000s\u0000k\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000f\u0000f\u0000i\u0000c\u0000u\u0000l\u0000t\u0000 \u0000q\u0000u\u0000e\u0000s\u0000t\u0000i\u0000o\u0000n\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002j\u0000\u0000\u0000E\u0001\u001a\u0001\u000b\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\r\u0001\u0000\u0001J\u0000\u0000\u0000E\u0001\u0019\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000E\u0000U\u0001\r\u0001\u0000\u0001K\u0000\u0000\u0000E\u0000U\u0001\u0006\u0001\u0000\u0003\u0001\u0001\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0006\u0001\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000N\u0000Q\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000U\u0000e\u0001\r\u0001\u0000\u0001K\u0000\u0000\u0000U\u0000e\u0001\u0006\u0001\u0000\u0003\u0001\u0001\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000X\u0000[\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000W\u0000e\u0000b\u0000K\u0000i\u0000t\u0000.\u0000a\u0000p\u0000p\u0006\u0001\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000e\u0000u\u0001\r\u0001\u0000\u0001K\u0000\u0000\u0000e\u0000u\u0001\u0006\u0001\u0000\u0003\u0001\u0001\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\"\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000a\u0000p\u0000p\u0006\u0001\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000u\u0000\u0001\r\u0001\u0000\u0001K\u0000\u0000\u0000u\u0000\u0001\u0006\u0001\u0000\u0003\u0001\u0001\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000x\u0000{\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000M\u0000a\u0000i\u0000l\u0000.\u0000a\u0000p\u0000p\u0006\u0001\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000~\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000M\u0000a\u0000i\u0000l\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\t\u0000\u0000\u0001\r\u0001\u0000\u0001K\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0000\u0003\u0001\u0001\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000C\u0000o\u0000n\u0000t\u0000a\u0000c\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0006\u0001\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0000\u000e\u0002\u0000\u0000\u0001\u0002\u0001\u0011\u0002\u0001\u0000 \u0000A\u0000d\u0000d\u0000r\u0000e\u0000s\u0000s\u0000 \u0000B\u0000o\u0000o\u0000k\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0003l\u0000\t\u0000\u0000\u0002\u0004\r\u0002\u0004\u0000\u0001K\u0000\u0000\u0000\u0000\u0002\u0005\u0006\u0002\u0005\u0000\u0003\u0002\u0006\u0002\u0007\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\b\u000e\u0002\b\u0000\u0001\u0002\t\u0011\u0002\t\u0000 \u0000A\u0000d\u0000d\u0000r\u0000e\u0000s\u0000s\u0000 \u0000B\u0000o\u0000o\u0000k\u0000.\u0000a\u0000p\u0000p\u0006\u0002\u0007\u0000\u0003\u0002\n\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u000b\u000e\u0002\u000b\u0000\u0001\u0002\f\u0011\u0002\f\u0000 \u0000A\u0000d\u0000d\u0000r\u0000e\u0000s\u0000s\u0000 \u0000B\u0000o\u0000o\u0000k\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0003\u0000\u0002\u0002\r\u0002\u000e\r\u0002\r\u0000\u0003l\u0000\t\u0000\u0000\u0002\u000f\r\u0002\u000f\u0000\u0001K\u0000\u0000\u0000\u0000\u0002\u0010\u0006\u0002\u0010\u0000\u0003\u0002\u0011\u0002\u0012\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0013\u000e\u0002\u0013\u0000\u0001\u0002\u0014\u0011\u0002\u0014\u0000\u0014\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0006\u0002\u0012\u0000\u0003\u0002\u0015\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000\u0014\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000p\u0000n\u0000g\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u000e\u0000\u0002\u0002\u0018\u0002\u0019\r\u0002\u0018\u0000\u0003l\u0000\t\u0000\u0000\u0002\u001a\r\u0002\u001a\u0000\u0001K\u0000\u0000\u0000\u0000\u0002\u001b\u0006\u0002\u001b\u0000\u0003\u0002\u001c\u0002\u001d\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u001e\u000e\u0002\u001e\u0000\u0001\u0002\u001f\u0011\u0002\u001f\u0000\u0018\u0000C\u0000h\u0000r\u0000o\u0000m\u0000i\u0000u\u0000m\u0000.\u0000a\u0000p\u0000p\u0006\u0002\u001d\u0000\u0003\u0002 ~\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002 \u0000\u0001m\u0000\u0000\u0000\u0000\u0002!\u000e\u0002!\u0000\u0001\u0002\"\u0011\u0002\"\u0000\u0018\u0000C\u0000h\u0000r\u0000o\u0000m\u0000i\u0000u\u0000m\u0000.\u0000p\u0000n\u0000g\u0006~\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0019\u0000\u0002\u0002#\u0002$\r\u0002#\u0000\u0003l\u0000\t\u0000\u0000\u0002%}|\r\u0002%\u0000\u0001K\u0000\u0000\u0000\u0000\u0002&\u0006\u0002&\u0000\u0003{\u0002'\u0002(\u000b{\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002'\u0000\u0001m\u0000\u0000\u0000\u0000\u0002)\u000e\u0002)\u0000\u0001\u0002*\u0011\u0002*\u0000\u0018\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0000.\u0000a\u0000p\u0000p\u0006\u0002(\u0000\u0003z\u0002+y\u000bz\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002+\u0000\u0001m\u0000\u0000\u0000\u0000\u0002,\u000e\u0002,\u0000\u0001\u0002-\u0011\u0002-\u0000\u0018\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0000.\u0000p\u0000n\u0000g\u0006y\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0002$\u0000\u0002\u0002.\u0002\/\r\u0002.\u0000\u0003l\u0000\t\u0000\u0000\u00020xw\r\u00020\u0000\u0001K\u0000\u0000\u0000\u0000\u00021\u0006\u00021\u0000\u0003v\u00022\u00023\u000bv\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u00022\u0000\u0001m\u0000\u0000\u0000\u0000\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\u0018\u0000T\u0000e\u0000x\u0000t\u0000m\u0000a\u0000t\u0000e\u0000.\u0000a\u0000p\u0000p\u0006\u00023\u0000\u0003u\u00026t\u000bu\u0000\b0\u0000\u0004icon\u0000\u0000\r\u00026\u0000\u0001m\u0000\u0000\u0000\u0000\u00027\u000e\u00027\u0000\u0001\u00028\u0011\u00028\u0000\u0018\u0000T\u0000e\u0000x\u0000t\u0000M\u0000a\u0000t\u0000e\u0000.\u0000p\u0000n\u0000g\u0006t\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0002\/\u0000\u0002\u00029\u0002:\r\u00029\u0000\u0003l\u0000\t\u0000\u0000\u0002;sr\r\u0002;\u0000\u0001K\u0000\u0000\u0000\u0000\u0002<\u0006\u0002<\u0000\u0003q\u0002=\u0002>\u000bq\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002=\u0000\u0001m\u0000\u0000\u0000\u0000\u0002?\u000e\u0002?\u0000\u0001\u0002@\u0011\u0002@\u0000\u0014\u0000V\u0000i\u0000e\u0000n\u0000n\u0000a\u0000.\u0000a\u0000p\u0000p\u0006\u0002>\u0000\u0003p\u0002Ao\u000bp\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002A\u0000\u0001m\u0000\u0000\u0000\u0000\u0002B\u000e\u0002B\u0000\u0001\u0002C\u0011\u0002C\u0000\u000e\u0000R\u0000S\u0000S\u0000.\u0000p\u0000n\u0000g\u0006o\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0002:\u0000\u0002\u0002D\u0002E\r\u0002D\u0000\u0003l\u0000\t\u0000\u0001\u0005\u0002Fnm\r\u0002F\u0000\u0001K\u0000\u0000\u0000\u0001\u0005\u0002G\u0006\u0002G\u0000\u0003l\u0002H\u0002I\u000bl\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002H\u0000\u0001m\u0000\u0000\u0000\u0000\u0002J\u000e\u0002J\u0000\u0001\u0002K\u0011\u0002K\u0000\u001a\u0000O\u0000m\u0000n\u0000i\u0000F\u0000o\u0000c\u0000u\u0000s\u0000.\u0000a\u0000p\u0000p\u0006\u0002I\u0000\u0003k\u0002Lj\u000bk\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002L\u0000\u0001m\u0000\u0000\u0000\u0001\u0001\u0002M\u000e\u0002M\u0000\u0001\u0002N\u0011\u0002N\u0000\u001a\u0000O\u0000m\u0000n\u0000i\u0000F\u0000o\u0000c\u0000u\u0000s\u0000.\u0000p\u0000n\u0000g\u0006j\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0002E\u0000\u0002\u0002Oi\r\u0002O\u0000\u0003l\u0000\t\u0001\u0005\u0001\u0015\u0002Phg\r\u0002P\u0000\u0003l\u0000\n\u0001\u0005\u0001\u0015\u0002Qfe\r\u0002Q\u0000\u0001K\u0000\u0000\u0001\u0005\u0001\u0015\u0002R\u0006\u0002R\u0000\u0003d\u0002S\u0002T\u000bd\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u0002S\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\u0002U\u000e\u0002U\u0000\u0001\u0002V\u0011\u0002V\u0000\u001e\u0000F\u0000o\u0000l\u0000d\u0000i\u0000n\u0000g\u0000T\u0000e\u0000x\u0000t\u0000.\u0000a\u0000p\u0000p\u0006\u0002T\u0000\u0003c\u0002Wb\u000bc\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0002W\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u0011\u0002X\u000e\u0002X\u0000\u0001\u0002Y\u0011\u0002Y\u0000\u000e\u0000A\u0000p\u0000p\u0000.\u0000p\u0000n\u0000g\u0006b\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002i\u0000\u0000\u0002\u0001\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002\u0002[\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000^]\\\u0001^\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0002]\u0000\u0002\u0002^\u0002_\r\u0002^\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000[\u0002`\u0002a\u0001[\u0000\u0000\f\u0002`\u0000\u0016\u0000\u0010 pocket specific\u0000\u0002\u0000\u0000\u000e\u0002a\u0000\u0001\u0002b\u0011\u0002b\u0000 \u0000 \u0000p\u0000o\u0000c\u0000k\u0000e\u0000t\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000c\u0002\u0002_\u0000\u0002\u0002c\u0002d\r\u0002c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0002d\u0000\u0002\u0002e\u0002f\r\u0002e\u0000\u0002i\u0000\u0000\u0001\u001b\u0001\u001e\u0002g\u0002h\r\u0002g\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000WVU\u000bW\u0000(0\u0000\u0012pocketrequesttoken\u0000\u0012pocketRequestToken\u0002V\u0000\u0000\u0002U\u0000\u0000\r\u0002h\u0000\u0001k\u0000\u0000\u0000\u0000\u0000D\u0002i\u0002\u0002i\u0000\u0002\u0002j\u0002k\r\u0002j\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0002l\u0002m\r\u0002l\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002n\u000e\u0002n\u0000\u0001\u0002o\u0011\u0002o\u0000@\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000X\u0000 \u0000P\u0000O\u0000S\u0000T\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\r\u0002m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002k\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000e\u0002r\u0002s\r\u0002r\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\f\u0002t\u0002u\r\u0002t\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005S\u000bS\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0002u\u0000\u0003I\u0000\u0000\u0000\u0005\u0000\u000bR\u0002vQ\u000bR\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u0002\u0002v\u0000\u0002\u0002wP\r\u0002w\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0002x\u000e\u0002x\u0000\u0001\u0002y\u0011\u0002y\u0000Z\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000-\u0000T\u0000y\u0000p\u0000e\u0000:\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\/\u0000j\u0000s\u0000o\u0000n\u0000;\u0000 \u0000c\u0000h\u0000a\u0000r\u0000s\u0000e\u0000t\u0000=\u0000U\u0000T\u0000F\u0000-\u00008\u0002P\u0000\u0000\u0002Q\u0000\u0000\r\u0002s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002q\u0000\u0002\u0002z\u0002{\r\u0002z\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0019\u0002|\u0002}\r\u0002|\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0017\u0002~\u0002\r\u0002~\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010N\u000bN\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0016M\u0002L\u000bM\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u0002\u0002\u0000\u0002\u0002K\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00004\u0000X\u0000-\u0000A\u0000c\u0000c\u0000e\u0000p\u0000t\u0000:\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\/\u0000j\u0000s\u0000o\u0000n\u0002K\u0000\u0000\u0002L\u0000\u0000\r\u0002}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002{\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u001a\u0000$\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\"\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bI\u000bI\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0002\u0000\u0003I\u0000\u0000\u0000\u001b\u0000!H\u0002G\u000bH\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u0002\u0002\u0000\u0002\u0002F\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000H\u0000o\u0000s\u0000t\u0000:\u0000 \u0000g\u0000e\u0000t\u0000p\u0000o\u0000c\u0000k\u0000e\u0000t\u0000.\u0000c\u0000o\u0000m\u0002F\u0000\u0000\u0002G\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000%\u00007\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000%\u00005\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000%\u0000&D\u000bD\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0002\u0000\u0003I\u0000\u0000\u0000&\u00004C\u0002B\u000bC\u0000\u001a0\u0000\u000bcurladddata\u0000\u000bcurlAddData\u0002\u0002\u0000\u0002\u0002A\r\u0002\u0000\u0002b\u0000\u0000\u0000'\u00000\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000'\u0000.\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\"\u0000{\u0000\"\u0000c\u0000o\u0000n\u0000s\u0000u\u0000m\u0000e\u0000r\u0000_\u0000k\u0000e\u0000y\u0000\"\u0000:\u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0000(\u0000-@\u000b@\u0000\u00150\u0000\u0011pocketconsumerkey\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000p\u0000\"\u0000,\u0000 \u0000\"\u0000r\u0000e\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000_\u0000u\u0000r\u0000i\u0000\"\u0000:\u0000\"\u0000p\u0000o\u0000c\u0000k\u0000e\u0000t\u0000a\u0000p\u0000p\u00001\u00002\u00003\u00004\u0000:\u0000a\u0000u\u0000t\u0000h\u0000o\u0000r\u0000i\u0000z\u0000a\u0000t\u0000i\u0000o\u0000n\u0000F\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000\"\u0000}\u0002A\u0000\u0000\u0002B\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000?\u000b?\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u00008\u0000=\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u00008\u0000;\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u00008\u00009>\u000b>\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u00009\u0000:\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000N\u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000e\u0000t\u0000p\u0000o\u0000c\u0000k\u0000e\u0000t\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000v\u00003\u0000\/\u0000o\u0000a\u0000u\u0000t\u0000h\u0000\/\u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000>\u0000><\u0002\u0002\u0001<\u0000\u0000\f\u0002\u0000\u0010\u0000\nreturn cmd\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0014\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000c\u0000m\u0000d\u0002\u0002\u0000\u0002\u0002;\r\u0002\u0000\u0001L\u0000\u0000\u0000>\u0000D\u0002\r\u0002\u0000\u0003I\u0000\u0002\u0000>\u0000C:\u00029\n:\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0001o\u0000\u0000\u0000>\u0000?8\u000b8\u0000\u00070\u0000\u0003cmd\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0002\u0002f\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u00001\u0002\u0002\u00011\u0000\u0000\f\u0002\u0000\u0019\u0000\u0013 reminders specific\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000c\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u00000\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u0001\u001f\u0001\"\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000-,+\u000b-\u0000(0\u0000\u0012setremindersactive\u0000\u0012setRemindersActive\u0002,\u0000\u0000\u0002+\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000$\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0002\u0002\r\u0002\u0000\u0002E\u0000\u0000\u0000\u0004\u0000\u000b\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0002*)\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t(\n(\u0000\u0004\nbnid\r\u0002\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007'\n'\u0000\u0004\nprcs\u0001*\u0000\u0000\u0001)\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000(0\u0000\u0012remindersisrunning\u0000\u0012remindersIsRunning\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u000f\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0002\u0000\u0002\u0002%\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000$\u0002\u0002$\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010#\u000b#\u0000(0\u0000\u0012remindersisrunning\u0000\u0012remindersIsRunning\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001a\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\"\n\"\u0000\b\u000bboovfals\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000!\u000b!\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0002$\u0000\u0000\r\u0002\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e \n \u0000\b\u000bboovtrue\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0002%\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u0001#\u0001&\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u001a\u000b\u001b\u0000&0\u0000\u0011fetchreminderlist\u0000\u0011fetchReminderList\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0002\u0000\u0002\u0002\u0017\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u001c0\u0000\fcacheexpires\u0000\fcacheExpires\u0002\u0017\u0000\u0000\u0002\u001a\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u00007\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000.\u0002\u0002\u0015\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000%\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0003\u0000\n\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\n\u0014\u0002\u0013\u000b\u0014\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000t\u0000i\u0000m\u0000e\u0000s\u0000t\u0000a\u0000m\u0000p\u0002\u0002\u0000\u0002\u0002\u0012\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u0011\u000b\u0011\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0012\u0000\u0000\u0002\u0013\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u0010\u000b\u0010\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\r0\u0000\ttimestamp\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u000e\r\u0002\u0000\u0004Z\u0000\u0000\u0000\r\u0000%\u0002\u0002\r\f\r\u0002\u0000\u0002A\u0000\u0001\u0000\r\u0000\u0016\u0002\u0002\r\u0002\u0000\u0002\\\u0000\u0000\u0000\r\u0000\u0014\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0012\u0002\u000b\n\r\u0002\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\t\b\u0007\n\t\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\b\u0000\u0000\u0002\u0007\u0000\u0000\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u0006\u000b\u0006\u0000\r0\u0000\ttimestamp\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u0005\u000b\u0005\u0000\u001c0\u0000\fcacheexpires\u0000\fcacheExpires\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0019\u0000!\u0002\r\u0002\u0000\u0002n\u0000\u0003\u0000\u0019\u0000 \u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u001a\u0000 \u0004\u0002\u0003\u000b\u0004\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0003\u0000\u000e\u0003\u0000\u0000\u0001\u0003\u0001\u0011\u0003\u0001\u0000\"\u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0002\u0000\u0002\u0003\u0002\u0002\r\u0003\u0002\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u0001\u000b\u0001\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0002\u0000\u0000\u0002\u0003\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u0000\u000b\u0000\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u000e\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0003\r\u0003\u0003\u0000\u0001L\u0000\u0000\u0000\/\u00007\u0003\u0004\r\u0003\u0004\u0000\u0003I\u0000\u0000\u0000\/\u00006\u0003\u0005\u000b\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0002\u0003\u0005\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0003\u0007\u0000\u0002\u0003\b\r\u0003\b\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0003\t\u0003\n\r\u0003\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\n\u0000\u0002\u0003\u000b\u0003\f\r\u0003\u000b\u0000\u0002i\u0000\u0000\u0001'\u0001*\u0003\r\u0003\u000e\r\u0003\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000f\u000b\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0002\u0003\u000f\u0000\u0002\u0003\u0010\u0003\u0011\r\u0003\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0003\u0011\u0000\u0002\u0003\u0012\r\u0003\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000W\u0003\u0013\u0002\u0003\u0013\u0000\u0002\u0003\u0014\u0003\u0015\r\u0003\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0016\u0003\u0017\r\u0003\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u001e\r\u0003\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fcachetimeout\u0000\fcacheTimeout\u0002\u0003\u0015\u0000\u0002\u0003\u0018\u0003\u0019\r\u0003\u0018\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0002n\u0000\u0003\u0000\u0004\u0000\u000b\u0003\u001c\u0003\u001d\r\u0003\u001c\u0000\u0003I\u0000\u0000\u0000\u0005\u0000\u000b\u0003\u001e\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0003\u001e\u0000\u0002\u0003\u001f\u0003 \r\u0003\u001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0003!\u000e\u0003!\u0000\u0001\u0003\"\u0011\u0003\"\u0000\u001e\u0000c\u0000a\u0000c\u0000h\u0000e\u0000I\u0000n\u0000P\u0000r\u0000o\u0000g\u0000r\u0000e\u0000s\u0000s\u0002\u0003 \u0000\u0002\u0003#\r\u0003#\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u001d\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0003\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fcacheinprogress\u0000\u000fcacheInProgress\u0002\u0003\u0019\u0000\u0002\u0003$\u0003%\r\u0003$\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0017\u0003&\u0003'\r\u0003&\u0000\u0002n\u0000\u0003\u0000\u000e\u0000\u0015\u0003(\u0003)\r\u0003(\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0015\u0003*\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0003*\u0000\u0002\u0003+\u0003,\r\u0003+\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003-\u000e\u0003-\u0000\u0001\u0003.\u0011\u0003.\u0000\"\u0000e\u0000x\u0000i\u0000s\u0000t\u0000i\u0000n\u0000g\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0003,\u0000\u0002\u0003\/\r\u0003\/\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003)\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0003'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0003%\u0000\u0002\u00030\u00031\r\u00030\u0000\u0003l\u0000\u0002\u0000\u0018\u0000\u0018\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00031\u0000\u0002\u00032\u00033\r\u00032\u0000\u0004Z\u0000\u0000\u0000\u0018\u00009\u00034\u00035\r\u00034\u0000\u0002>\u0001\u0000\u0000\u0018\u0000\u001b\u00036\u00037\r\u00036\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\"0\u0000\u000fcacheinprogress\u0000\u000fcacheInProgress\r\u00037\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nmsng\r\u00035\u0000\u0001k\u0000\u0000\u0000\u001e\u00005\u00038\u0002\u00038\u0000\u0002\u00039\u0003:\r\u00039\u0000\u0003l\u0000\u0001\u0000\u001e\u0000\u001e\u0003;\u0003<\u0001\u0000\u0000\f\u0003;\u0000B\u0000< return previous cache results, even if they are out of date\u0000\u0002\u0000\u0000\u000e\u0003<\u0000\u0001\u0003=\u0011\u0003=\u0000x\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000p\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000,\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000o\u0000u\u0000t\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000t\u0000e\u0002\u0003:\u0000\u0002\u0003>\r\u0003>\u0000\u0004Z\u0000\u0001\u0000\u001e\u00005\u0003?\u0003@\r\u0003?\u0000\u0002A\u0000\u0001\u0000\u001e\u0000,\u0003A\u0003B\r\u0003A\u0000\u0002\\\u0000\u0000\u0000\u001e\u0000*\u0003C\u0003D\r\u0003C\u0000\u0003l\u0000\u0005\u0000\u001e\u0000(\u0003E\r\u0003E\u0000\u0002n\u0000\u0001\u0000\u001e\u0000(\u0003F\u0003G\r\u0003F\u0000\u0003I\u0000\u0000\u0000\u001f\u0000(\u0003H\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0002\u0003H\u0000\u0002\u0003I\r\u0003I\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003G\u0000\u0000f\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u0000\u0000\u0001\u0000\u0000\r\u0003D\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\"0\u0000\u000fcacheinprogress\u0000\u000fcacheInProgress\r\u0003B\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\u001c0\u0000\fcachetimeout\u0000\fcacheTimeout\r\u0003@\u0000\u0001L\u0000\u0000\u0000\/\u00001\u0003J\r\u0003J\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u00033\u0000\u0002\u0003K\u0003L\r\u0003K\u0000\u0003l\u0000\u0002\u0000:\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003L\u0000\u0002\u0003M\u0003N\r\u0003M\u0000\u0002n\u0000\u0003\u0000:\u0000F\u0003O\u0003P\r\u0003O\u0000\u0003I\u0000\u0000\u0000;\u0000F\u0003Q\u000b\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u0003Q\u0000\u0002\u0003R\u0003S\r\u0003R\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003T\u000e\u0003T\u0000\u0001\u0003U\u0011\u0003U\u0000\u001c\u0000c\u0000l\u0000o\u0000s\u0000e\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0003S\u0000\u0002\u0003V\u0003W\r\u0003V\u0000\u0001o\u0000\u0000\u0000<\u0000A\u000b\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u0002\u0003W\u0000\u0002\u0003X\r\u0003X\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003P\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0003N\u0000\u0002\u0003Y\u0003Z\r\u0003Y\u0000\u0003l\u0000\u0002\u0000G\u0000G\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003Z\u0000\u0002\u0003[\u0003\\\r\u0003[\u0000\u0003l\u0000\u0001\u0000G\u0000G\u0003]\u0003^\u0001\u0000\u0000\f\u0003]\u0000\u001a\u0000\u0014 spawn cache process\u0000\u0002\u0000\u0000\u000e\u0003^\u0000\u0001\u0003_\u0011\u0003_\u0000(\u0000 \u0000s\u0000p\u0000a\u0000w\u0000n\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0002\u0003\\\u0000\u0002\u0003`\u0003a\r\u0003`\u0000\u0003I\u0000\u0000\u0000G\u0000T\u0003b\u000b\u0000(0\u0000\u0012spawnremindercache\u0000\u0012spawnReminderCache\u0002\u0003b\u0000\u0002\u0003c\u0003d\r\u0003c\u0000\u0002b\u0000\u0000\u0000H\u0000O\u0003e\u0003f\r\u0003e\u0000\u0001o\u0000\u0000\u0000H\u0000M\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0003f\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0003g\u000e\u0003g\u0000\u0001\u0003h\u0011\u0003h\u0000*\u0000\/\u0000c\u0000a\u0000c\u0000h\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0003d\u0000\u0002\u0003i\r\u0003i\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0003a\u0000\u0002\u0003j\r\u0003j\u0000\u0001L\u0000\u0000\u0000U\u0000W\u0003k\r\u0003k\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0002\u0000\u0000\u0002\u0003\f\u0000\u0002\u0003l\u0003m\r\u0003l\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003m\u0000\u0002\u0003n\u0003o\r\u0003n\u0000\u0002i\u0000\u0000\u0001+\u0001.\u0003p\u0003q\r\u0003p\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003r\u000b\u0000(0\u0000\u0012spawnremindercache\u0000\u0012spawnReminderCache\u0002\u0003r\u0000\u0002\u0003s\u0003t\r\u0003s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcachescript\u0000\u000bcacheScript\u0002\u0003t\u0000\u0002\u0003u\r\u0003u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fruninbackground\u0000\u000frunInBackground\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0003v\u0002\u0003v\u0000\u0002\u0003w\u0003x\r\u0003w\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0003y\u0003z\u0001\u0000\u0000\f\u0003y\u0000\u001a\u0000\u0014 spawn cache process\u0000\u0002\u0000\u0000\u000e\u0003z\u0000\u0001\u0003{\u0011\u0003{\u0000(\u0000 \u0000s\u0000p\u0000a\u0000w\u0000n\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0002\u0003x\u0000\u0002\u0003|\r\u0003|\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0003}\u0003~\u0003\r\u0003}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\"0\u0000\u000fruninbackground\u0000\u000frunInBackground\r\u0003~\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\u000f\u0003\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\u000b\u0003\u0003\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\t\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \r\u0003\u0000\u0002n\u0000\u0000\u0000\u0005\u0000\b\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000\u0006\u0000\b\n\u0000\u0004\nstrq\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u001a0\u0000\u000bcachescript\u0000\u000bcacheScript\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000(\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000&\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u001b\u0003\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0003\u0000\u0002b\u0000\u0000\u0000\u0012\u0000\u0017\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0014\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \r\u0003\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0016\u0003\u0003\r\u0003\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\n\u0000\u0004\nstrq\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u001a0\u0000\u000bcachescript\u0000\u000bcacheScript\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0003o\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002i\u0000\u0000\u0001\/\u00012\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0000\"0\u0000\u000ffilterreminders\u0000\u000ffilterReminders\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0003\u0000\u0002\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0003\u0003\r\u0003\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0000\u0000\u0005\u0001\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0005\u0000\b\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nmsng\r\u0003\u0000\u0003X\u0000\u0000\u0000\u000b\u0001\u0003\u0003\r\u0003\u0000\u0001k\u0000\u0000\u0000\u001b\u0001\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\b\u000bboovfals\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmatchedtext\u0000\u000bmatchedText\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000#\u0000&\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovfals\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmatchedlist\u0000\u000bmatchedList\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0000\u0000'\u0000j\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000'\u0000`\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000'\u0000V\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000'\u0000J\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000'\u0000>\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000'\u00002\u0003\u0003\r\u0003\u0000\u0002=\u0000\u0003\u0000'\u0000*\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0001m\u0000\u0000\u0000(\u0000)\n\u0000\u0004\nmsng\r\u0003\u0000\u0002=\u0000\u0003\u0000-\u00000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002=\u0000\u0003\u00005\u0000<\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0003l\u0000\t\u00006\u0000;\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00006\u0000;\u000b\u0000\u00160\u0000\tallstring\u0000\tallString\u0001\u0000\u0000\u0001\u0000\u0000\r\u0003\u0000\u0002=\u0000\u0003\u0000A\u0000H\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0003l\u0000\n\u0000B\u0000G\u0003~}\r\u0003\u0000\u0001o\u0000\u0000\u0000B\u0000G|\u000b|\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\u0001~\u0000\u0000\u0001}\u0000\u0000\r\u0003\u0000\u0002=\u0000\u0003\u0000M\u0000T\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000M\u0000N{\u000b{\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0003l\u0000\n\u0000N\u0000S\u0003zy\r\u0003\u0000\u0001o\u0000\u0000\u0000N\u0000Sx\u000bx\u0000\u001e0\u0000\rrefreshstring\u0000\rrefreshString\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u0003\u0000\u0002E\u0000\u0000\u0000Y\u0000^\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0003\u0000Y\u0000\\\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000Z\u0000\\w\u000bw\u0000\t0\u0000\u0005title\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000Y\u0000Zv\u000bv\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]u\u000bu\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000f\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000c\u0000dt\nt\u0000\b\u000bboovtrue\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u001a0\u0000\u000bmatchedtext\u0000\u000bmatchedText\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000k\u0000krqp\u0001r\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000k\u0000~\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000n\u0000s\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0005\u0000n\u0000q\u0003on\r\u0003\u0000\u0002n\u0000\u0003\u0000n\u0000q\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000o\u0000qm\u000bm\u0000\u000e0\u0000\nreminddate\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000n\u0000ol\u000bl\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u000e0\u0000\nreminddate\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000jih\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001i\u0000\u0000\u0002h\u0000\u0000\r\u0003\u0000\u0002r\u0000\u0000\u0000{\u0000~\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000{\u0000|g\ng\u0000\u0004\nmsng\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u000e0\u0000\nreminddate\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0003ed\r\u0003\u0000\u0002n\u0000\u0003\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000c\u000bc\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000a\u000ba\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000`_^\n`\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001_\u0000\u0000\u0002^\u0000\u0000\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0000]\n]\u0000\u0004\nmsng\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u000b0\u0000\u0007duedate\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0000\u0000\u0001\f\u0003\u0003\u0003[\r\u0003\u0000\u0002F\u0000\u0000\u0000\u0000\u0003\u0003\r\u0003\u0000\u0002F\u0000\u0000\u0000\u0000\u0004\u0000\u0004\u0001\r\u0004\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0004\u0002ZY\r\u0004\u0002\u0000\u0002=\u0000\u0003\u0000\u0000\u0004\u0003\u0004\u0004\r\u0004\u0003\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0004\u0004\u0000\u0001o\u0000\u0000\u0000\u0000W\u000bW\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\u0001Z\u0000\u0000\u0001Y\u0000\u0000\r\u0004\u0001\u0000\u0003l\u0000\u0005\u0000\u0000\u0004\u0005VU\r\u0004\u0005\u0000\u0002>\u0001\u0000\u0000\u0000\u0004\u0006\u0004\u0007\r\u0004\u0006\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0004\u0007\u0000\u0001m\u0000\u0000\u0000\u0000S\nS\u0000\u0004\nmsng\u0001V\u0000\u0000\u0001U\u0000\u0000\r\u0003\u0000\u0003l\u0000\u0005\u0000\u0000\u0004\bRQ\r\u0004\b\u0000\u0002A\u0000\u0001\u0000\u0000\u0004\t\u0004\n\r\u0004\t\u0000\u0001o\u0000\u0000\u0000\u0000P\u000bP\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0004\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0004\u000bON\r\u0004\u000b\u0000\u0003I\u0000\u0002\u0000\u0000MLK\nM\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001L\u0000\u0000\u0002K\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0004\f\u0004\r\r\u0004\f\u0000\u0001m\u0000\u0000\u0000\u0000J\nJ\u0000\b\u000bboovtrue\r\u0004\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002\u0003\u0000\u0002\u0004\u000e\u0004\u000f\r\u0004\u000e\u0000\u0002=\u0000\u0003\u0000\u0000\u0004\u0010\u0004\u0011\r\u0004\u0010\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0004\u0011\u0000\u0001o\u0000\u0000\u0000\u0000G\u000bG\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\u0002\u0004\u000f\u0000\u0002\u0004\u0012\u0004\u0013\r\u0004\u0012\u0000\u0002r\u0000\u0000\u0000\u0000\u0004\u0014\u0004\u0015\r\u0004\u0014\u0000\u0001m\u0000\u0000\u0000\u0000F\nF\u0000\b\u000bboovfals\r\u0004\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002\u0004\u0013\u0000\u0002\u0004\u0016\u0004\u0017\r\u0004\u0016\u0000\u0002G\u0000\u0000\u0000\u0000\u0004\u0018\u0004\u0019\r\u0004\u0018\u0000\u0002=\u0000\u0003\u0000\u0000\u0004\u001a\u0004\u001b\r\u0004\u001a\u0000\u0001o\u0000\u0000\u0000\u0000D\u000bD\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0004\u001b\u0000\u0001m\u0000\u0000\u0000\u0000C\nC\u0000\u0004\nmsng\r\u0004\u0019\u0000\u0002=\u0000\u0003\u0000\u0000\u0004\u001c\u0004\u001d\r\u0004\u001c\u0000\u0001o\u0000\u0000\u0000\u0000B\u000bB\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0004\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0004\u001e\u000e\u0004\u001e\u0000\u0001\u0004\u001f\u0011\u0004\u001f\u0000\u0000\u0002\u0004\u0017\u0000\u0002\u0004 \u0004!\r\u0004 \u0000\u0002r\u0000\u0000\u0000\u0000\u0004\"\u0004#\r\u0004\"\u0000\u0001m\u0000\u0000\u0000\u0000A\nA\u0000\b\u000bboovtrue\r\u0004#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002\u0004!\u0000\u0002\u0004$\u0004%\r\u0004$\u0000\u0002F\u0000\u0000\u0000\u0000\u0004&\u0004'\r\u0004&\u0000\u0003l\u0000\u0005\u0000\u0000\u0004(?>\r\u0004(\u0000\u0002>\u0001\u0000\u0000\u0000\u0004)\u0004*\r\u0004)\u0000\u0001o\u0000\u0000\u0000\u0000=\u000b=\u0000\u000e0\u0000\nreminddate\u0000\u0000\r\u0004*\u0000\u0001m\u0000\u0000\u0000\u0000<\n<\u0000\u0004\nmsng\u0001?\u0000\u0000\u0001>\u0000\u0000\r\u0004'\u0000\u0003l\u0000\u0005\u0000\u0000\u0004+;:\r\u0004+\u0000\u0002=\u0000\u0001\u0000\u0000\u0004,\u0004-\r\u0004,\u0000\u0003l\u0000\u0005\u0000\u0000\u0004.98\r\u0004.\u0000\u0002n\u0000\u0000\u0000\u0000\u0004\/\u00040\r\u0004\/\u0000\u00011\u0000\u0000\u0000\u00007\n7\u0000\u0004\ndstr\r\u00040\u0000\u0001o\u0000\u0000\u0000\u00006\u000b6\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u00019\u0000\u0000\u00018\u0000\u0000\r\u0004-\u0000\u0003l\u0000\u0005\u0000\u0000\u0004154\r\u00041\u0000\u0002n\u0000\u0000\u0000\u0000\u00042\u00043\r\u00042\u0000\u00011\u0000\u0000\u0000\u00003\n3\u0000\u0004\ndstr\r\u00043\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u000e0\u0000\nreminddate\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u0004%\u0000\u0002\u00044\u00045\r\u00044\u0000\u0002r\u0000\u0000\u0000\u0000\u00046\u00047\r\u00046\u0000\u0001m\u0000\u0000\u0000\u00001\n1\u0000\b\u000bboovtrue\r\u00047\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002\u00045\u0000\u0002\u00048\u00049\r\u00048\u0000\u0002F\u0000\u0000\u0000\u0001\u0002\u0004:\u0004;\r\u0004:\u0000\u0003l\u0000\u0005\u0000\u0000\u0004<\/.\r\u0004<\u0000\u0002>\u0001\u0000\u0000\u0000\u0004=\u0004>\r\u0004=\u0000\u0001o\u0000\u0000\u0000\u0000-\u000b-\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0004>\u0000\u0001m\u0000\u0000\u0000\u0000,\n,\u0000\u0004\nmsng\u0001\/\u0000\u0000\u0001.\u0000\u0000\r\u0004;\u0000\u0003l\u0000\u0005\u0000\u0001\u0000\u0004?+*\r\u0004?\u0000\u0002=\u0000\u0001\u0000\u0001\u0000\u0004@\u0004A\r\u0004@\u0000\u0003l\u0000\u0005\u0000\u0000\u0004B)(\r\u0004B\u0000\u0002n\u0000\u0000\u0000\u0000\u0004C\u0004D\r\u0004C\u0000\u00011\u0000\u0000\u0000\u0000'\n'\u0000\u0004\ndstr\r\u0004D\u0000\u0001o\u0000\u0000\u0000\u0000&\u000b&\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0001)\u0000\u0000\u0001(\u0000\u0000\r\u0004A\u0000\u0003l\u0000\u0005\u0000\u0000\u0004E%$\r\u0004E\u0000\u0002n\u0000\u0000\u0000\u0000\u0004F\u0004G\r\u0004F\u0000\u00011\u0000\u0000\u0000\u0000#\n#\u0000\u0004\ndstr\r\u0004G\u0000\u0001o\u0000\u0000\u0000\u0000\"\u000b\"\u0000\u000b0\u0000\u0007duedate\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u00049\u0000\u0002\u0004H!\r\u0004H\u0000\u0002r\u0000\u0000\u0001\u0005\u0001\b\u0004I\u0004J\r\u0004I\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006 \n \u0000\b\u000bboovtrue\r\u0004J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u0002!\u0000\u0000\u0001[\u0000\u0000\u0002\u0003\u0000\u0002\u0004K\u0004L\r\u0004K\u0000\u0003l\u0000\u0002\u0001\r\u0001\r\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0004L\u0000\u0002\u0004M\u0004N\r\u0004M\u0000\u0004Z\u0000\u0000\u0001\r\u0001,\u0004O\u0004P\u001b\u001a\r\u0004O\u0000\u0002G\u0000\u0000\u0001\r\u0001\"\u0004Q\u0004R\r\u0004Q\u0000\u0002G\u0000\u0000\u0001\r\u0001\u0018\u0004S\u0004T\r\u0004S\u0000\u0002=\u0000\u0003\u0001\r\u0001\u0010\u0004U\u0004V\r\u0004U\u0000\u0001o\u0000\u0000\u0001\r\u0001\u000e\u0019\u000b\u0019\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\u0004V\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u000f\u0018\n\u0018\u0000\u0004\nmsng\r\u0004T\u0000\u0002=\u0000\u0003\u0001\u0013\u0001\u0016\u0004W\u0004X\r\u0004W\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0014\u0017\u000b\u0017\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\u0004X\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u0004Y\u000e\u0004Y\u0000\u0001\u0004Z\u0011\u0004Z\u0000\u0000\r\u0004R\u0000\u0002E\u0000\u0000\u0001\u001b\u0001 \u0004[\u0004\\\r\u0004[\u0000\u0002n\u0000\u0003\u0001\u001b\u0001\u001e\u0004]\u0004^\r\u0004]\u0000\u0001o\u0000\u0000\u0001\u001c\u0001\u001e\u0016\u000b\u0016\u0000\u000e0\u0000\nparentlist\u0000\u0000\r\u0004^\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001c\u0015\u000b\u0015\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0004\\\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\u001f\u0014\u000b\u0014\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\u0004P\u0000\u0002r\u0000\u0000\u0001%\u0001(\u0004_\u0004`\r\u0004_\u0000\u0001m\u0000\u0000\u0001%\u0001&\u0013\n\u0013\u0000\b\u000bboovtrue\r\u0004`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0012\u0000\u001a0\u0000\u000bmatchedlist\u0000\u000bmatchedList\u0002\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0004N\u0000\u0002\u0004a\u0004b\r\u0004a\u0000\u0003l\u0000\u0002\u0001-\u0001-\u0011\u0010\u000f\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0004b\u0000\u0002\u0004c\u000e\r\u0004c\u0000\u0004Z\u0000\u0000\u0001-\u0001\u0004d\u0004e\r\f\r\u0004d\u0000\u0002F\u0000\u0000\u0001-\u0001:\u0004f\u0004g\r\u0004f\u0000\u0002F\u0000\u0000\u0001-\u00014\u0004h\u0004i\r\u0004h\u0000\u0001o\u0000\u0000\u0001-\u0001.\u000b\u000b\u000b\u0000\u001a0\u0000\u000bmatchedtext\u0000\u000bmatchedText\r\u0004i\u0000\u0001o\u0000\u0000\u00011\u00012\n\u000b\n\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\r\u0004g\u0000\u0001o\u0000\u0000\u00017\u00018\t\u000b\t\u0000\u001a0\u0000\u000bmatchedlist\u0000\u000bmatchedList\r\u0004e\u0000\u0001k\u0000\u0000\u0001=\u0001\u0004j\u0002\u0004j\u0000\u0002\u0004k\u0004l\r\u0004k\u0000\u0003Q\u0000\u0000\u0001=\u0001R\u0004m\u0004n\u0004o\r\u0004m\u0000\u0002r\u0000\u0000\u0001@\u0001G\u0004p\u0004q\r\u0004p\u0000\u0003l\u0000\u0005\u0001@\u0001E\u0004r\b\u0007\r\u0004r\u0000\u0002n\u0000\u0003\u0001@\u0001E\u0004s\u0004t\r\u0004s\u0000\u0001o\u0000\u0000\u0001A\u0001E\u0006\u000b\u0006\u0000\b0\u0000\u0004body\u0000\u0000\r\u0004t\u0000\u0001o\u0000\u0000\u0001@\u0001A\u0005\u000b\u0005\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\r\u0004q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\b0\u0000\u0004body\u0000\u0000\r\u0004n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0001\n\u0003\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0002\u0000\u0000\u0002\u0001\u0000\u0000\r\u0004o\u0000\u0002r\u0000\u0000\u0001O\u0001R\u0004u\u0004v\r\u0004u\u0000\u0001m\u0000\u0000\u0001O\u0001P\u0000\n\u0000\u0000\u0004\nmsng\r\u0004v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004body\u0000\u0000\u0002\u0004l\u0000\u0002\u0004w\u0004x\r\u0004w\u0000\u0004Z\u0000\u0000\u0001S\u0001\u0004y\u0004z\u0004{\u0004|\r\u0004y\u0000\u0002>\u0001\u0000\u0001S\u0001V\u0004}\u0004~\r\u0004}\u0000\u0001o\u0000\u0000\u0001S\u0001T\u000b\u0000\b0\u0000\u0004body\u0000\u0000\r\u0004~\u0000\u0001m\u0000\u0000\u0001T\u0001U\n\u0000\u0004\nmsng\r\u0004z\u0000\u0002r\u0000\u0000\u0001Y\u0001h\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001Y\u0001f\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001Y\u0001b\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001Y\u0001\\\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0004\u0000 \u0000(\r\u0004\u0000\u0002n\u0000\u0003\u0001\\\u0001a\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001]\u0001a\u000b\u0000\b0\u0000\u0004body\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\\\u0001]\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001b\u0001e\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0002\u0000)\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\binfotext\u0000\binfoText\u0002\u0004{\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002>\u0001\u0000\u0001k\u0001n\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001k\u0001l\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001l\u0001m\n\u0000\u0004\nmsng\u0002\u0004\u0000\u0002\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0001q\u0001\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001q\u0001\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0005\u0001q\u0001\u0004\r\u0004\u0000\u0002c\u0000\u0000\u0001q\u0001\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001q\u0001\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001q\u0001\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0005\u0001q\u0001|\u0004\r\u0004\u0000\u0002c\u0000\u0000\u0001q\u0001|\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001q\u0001x\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001q\u0001t\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0012\u0000 \u0000(\u0000d\u0000u\u0000e\u0000 \u0000o\u0000n\u0000 \r\u0004\u0000\u0003l\u0000\u0005\u0001t\u0001w\u0004\r\u0004\u0000\u0002n\u0000\u0003\u0001t\u0001w\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001u\u0001w\u000b\u0000\u000b0\u0000\u0007duedate\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001t\u0001u\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001x\u0001{\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001|\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u001a\u0000,\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \r\u0004\u0000\u0003l\u0000\u0005\u0001\u0001\u0004\r\u0004\u0000\u0002n\u0000\u0003\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0002\u0000)\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\binfotext\u0000\binfoText\u0002\u0000\u0000\r\u0004|\u0000\u0002r\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0005\u0001\u0001\u0004\r\u0004\u0000\u0002c\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u001a\u0000 \u0000(\u0000s\u0000t\u0000a\u0000r\u0000t\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \r\u0004\u0000\u0003l\u0000\u0005\u0001\u0001\u0004\r\u0004\u0000\u0002n\u0000\u0003\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00100\u0000\fcreationdate\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0002\u0000)\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\binfotext\u0000\binfoText\u0002\u0004x\u0000\u0002\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0001\u0001\u0001\u0004\u0004\r\u0004\u0000\u0003I\u0000\u0000\u0001\u0001\u0004\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0003\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002n\u0000\u0003\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0003l\u0000\t\u0001\u0001\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u001e\u0000S\u0000e\u0000t\u0000 \u0000a\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\binfotext\u0000\binfoText\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002b\u0000\u0000\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\b\u0000u\u0000i\u0000d\u0000:\r\u0004\u0000\u0002n\u0000\u0003\u0001\u0001\u0004\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0006\u0000y\u0000e\u0000s\u0002\u0004\u0000\u0002\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0001\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0016\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0000\u0000f\u0000\u0000\u0001\u0001\r\u0004\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0004\r\u0004\u0000\u0000;\u0000\u0000\u0001\u0001\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u000e\u0000\u0000\u000b\u0000\u00110\u0000\rreminder_item\u0000\u0000\r\u0003\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0000\u0002\u0004\r\u0004\u0000\u0001L\u0000\u0000\u0001\u0001\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0003\u0000\u0002\u0004\u0004\r\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002i\u0000\u0000\u00013\u00016\u0004\u0004\r\u0004\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u000b\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u0002\u0004\u0000\u0002\u0004\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0004\u0000\u0001k\u0000\u0000\u0000\u0000\u0005\u0004\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0007\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0004\u0000\u0002\u0004\u0004\r\u0004\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000b\u0004\u0004\r\u0004\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0004\u000e\u0004\u0000\u0001\u0004\u0011\u0004\u0000\u0000\r\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u0004\u0000\u0002\u0004\u0005\u0000\r\u0004\u0000\u0002r\u0000\u0000\u0000\f\u0000\u000f\u0005\u0001\u0005\u0002\r\u0005\u0001\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0005\u0003\u000e\u0005\u0003\u0000\u0001\u0005\u0004\u0011\u0005\u0004\u0000\u0000\r\u0005\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u0005\u0000\u0000\u0002\u0005\u0005\u0005\u0006\r\u0005\u0005\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0013\u0005\u0007\u0005\b\r\u0005\u0007\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0005\t\u000e\u0005\t\u0000\u0001\u0005\n\u0011\u0005\n\u0000\u0000\r\u0005\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u0002\u0005\u0006\u0000\u0002\u0005\u000b\u0005\f\r\u0005\u000b\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0005\r\u0005\u000e\r\u0005\r\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0005\u000f\u000e\u0005\u000f\u0000\u0001\u0005\u0010\u0011\u0005\u0010\u0000\u0000\r\u0005\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0005\f\u0000\u0002\u0005\u0011\u0005\u0012\r\u0005\u0011\u0000\u0003l\u0000\u0002\u0000\u0018\u0000\u0018\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0012\u0000\u0002\u0005\u0013\u0005\u0014\r\u0005\u0013\u0000\u0004Z\u0000\u0000\u0000\u0018\u0000J\u0005\u0015\u0005\u0016\r\u0005\u0015\u0000\u0002=\u0000\u0003\u0000\u0018\u0000\u001e\u0005\u0017\u0005\u0018\r\u0005\u0017\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001c\u0005\u0019\u0005\u001a\r\u0005\u0019\u0000\u00024\u0000\u0001\u0000\u0019\u0000\u001c\u0005\u001b\n\u0000\u0004\ncwor\r\u0005\u001b\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0003\u0000\u0001\r\u0005\u001a\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005\u0018\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0005\u001c\u000e\u0005\u001c\u0000\u0001\u0005\u001d\u0011\u0005\u001d\u0000\b\u0000t\u0000h\u0000i\u0000s\r\u0005\u0016\u0000\u0001k\u0000\u0000\u0000!\u0000F\u0005\u001e\u0002\u0005\u001e\u0000\u0002\u0005\u001f\u0005 \r\u0005\u001f\u0000\u0002r\u0000\u0000\u0000!\u0000(\u0005!\u0005\"\r\u0005!\u0000\u0002n\u0000\u0001\u0000!\u0000&\u0005#\u0005$\r\u0005#\u0000\u0003I\u0000\u0000\u0000\"\u0000&\u000b\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0005$\u0000\u0000f\u0000\u0000\u0000!\u0000\"\r\u0005\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u0005 \u0000\u0002\u0005%\r\u0005%\u0000\u0003Q\u0000\u0000\u0000)\u0000F\u0005&\u0005'\u0005(\r\u0005&\u0000\u0002r\u0000\u0000\u0000,\u0000;\u0005)\u0005*\r\u0005)\u0000\u0002c\u0000\u0000\u0000,\u00009\u0005+\u0005,\r\u0005+\u0000\u0003l\u0000\u0005\u0000,\u00007\u0005-\r\u0005-\u0000\u0002n\u0000\u0000\u0000,\u00007\u0005.\u0005\/\r\u0005.\u0000\u00037\u0001\u0000\u0000-\u00007\u00050\u00051\n\u0000\u0004\ncha \r\u00050\u0000\u0001m\u0000\u0000\u00001\u00003\u0003\u0000\u0006\r\u00051\u0000\u0001m\u0000\u0000\u00004\u00006\u0003\r\u0005\/\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005,\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\u0004\nTEXT\r\u0005*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005'\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0005(\u0000\u0002r\u0000\u0000\u0000C\u0000F\u00052\u00053\r\u00052\u0000\u0001m\u0000\u0000\u0000C\u0000D\u00054\u000e\u00054\u0000\u0001\u00055\u0011\u00055\u0000\u0000\r\u00053\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0005\u0014\u0000\u0002\u00056\u00057\r\u00056\u0000\u0003l\u0000\u0002\u0000K\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00057\u0000\u0002\u00058\u00059\r\u00058\u0000\u0004Z\u0000\u0000\u0000K\u0005\u0018\u0005:\u0005;\u0005<\r\u0005:\u0000\u0002F\u0000\u0000\u0000K\u0000j\u0005=\u0005>\r\u0005=\u0000\u0002F\u0000\u0000\u0000K\u0000^\u0005?\u0005@\r\u0005?\u0000\u0002>\u0001\u0000\u0000K\u0000R\u0005A\u0005B\r\u0005A\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005B\u0000\u0001o\u0000\u0000\u0000L\u0000Q\u000b\u0000\u00160\u0000\tallstring\u0000\tallString\r\u0005@\u0000\u0002>\u0001\u0000\u0000U\u0000\\\u0005C\u0005D\r\u0005C\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005D\u0000\u0001o\u0000\u0000\u0000V\u0000[\u000b\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\r\u0005>\u0000\u0002>\u0001\u0000\u0000a\u0000h\u0005E\u0005F\r\u0005E\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005F\u0000\u0001o\u0000\u0000\u0000b\u0000g\u000b\u0000\u001e0\u0000\rrefreshstring\u0000\rrefreshString\r\u0005;\u0000\u0001k\u0000\u0000\u0000m\u0005\u0012\u0005G\u0002\u0005G\u0000\u0002\u0005H\u0005I\r\u0005H\u0000\u0003l\u0000\u0002\u0000m\u0000m\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0005I\u0000\u0002\u0005J\u0005K\r\u0005J\u0000\u0003Q\u0000\u0000\u0000m\u0001+\u0005L\u0005M\r\u0005L\u0000\u0004Z\u0000\u0000\u0000p\u0001\"\u0005N\u0005O\r\u0005N\u0000\u0002=\u0000\u0003\u0000p\u0000x\u0005P\u0005Q\r\u0005P\u0000\u0002n\u0000\u0000\u0000p\u0000t\u0005R\u0005S\r\u0005R\u0000\u00024\u0000\u0001\u0000q\u0000t\u0005T\n\u0000\u0004\ncwor\r\u0005T\u0000\u0001m\u0000\u0000\u0000r\u0000s\u0003\r\u0005S\u0000\u0001o\u0000\u0000\u0000p\u0000q\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005Q\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0005U\u000e\u0005U\u0000\u0001\u0005V\u0011\u0005V\u0000\b\u0000l\u0000i\u0000s\u0000t\r\u0005O\u0000\u0001k\u0000\u0000\u0000{\u0001\u001e\u0005W\u0002\u0005W\u0000\u0002\u0005X\u0005Y\r\u0005X\u0000\u0002r\u0000\u0000\u0000{\u0000\u0005Z\u0005[\r\u0005Z\u0000\u0002n\u0000\u0003\u0000{\u0000\u0005\\\u0005]\r\u0005\\\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\ntxdl\r\u0005]\u0000\u00011\u0000\u0000\u0000{\u0000~\n\u0000\u0004\nascr\r\u0005[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0005Y\u0000\u0002\u0005^\u0005_\r\u0005^\u0000\u0002r\u0000\u0000\u0000\u0000\u0005`\u0005a\r\u0005`\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nspac\r\u0005a\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0005b\u0005c\r\u0005b\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0005c\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0005_\u0000\u0002\u0005d\u0005e\r\u0005d\u0000\u0002r\u0000\u0000\u0000\u0000\u0005f\u0005g\r\u0005f\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0005g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\u0005e\u0000\u0002\u0005h\u0005i\r\u0005h\u0000\u0002r\u0000\u0000\u0000\u0000\u0005j\u0005k\r\u0005j\u0000\u0002n\u0000\u0000\u0000\u0000\u0005l\u0005m\r\u0005l\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncitm\r\u0005m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0005i\u0000\u0002\u0005n\u0005o\r\u0005n\u0000\u0005Y\u0000\u0000\u0000\u0000\u0005p\u0005q\u0005r\u0005s\r\u0005p\u0000\u0004Z\u0000\u0000\u0000\u0000\u0005t\u0005u\r\u0005t\u0000\u0002=\u0000\u0001\u0000\u0000\u0005v\u0005w\r\u0005v\u0000\u0002n\u0000\u0000\u0000\u0000\u0005x\u0005y\r\u0005x\u0000\u00024\u0000\u0000\u0000\u0000\u0005z\n\u0000\u0004\ncobj\r\u0005z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0005y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\r\u0005w\u0000\u0001m\u0000\u0000\u0000\u0000\u0005{\u000e\u0005{\u0000\u0001\u0005|\u0011\u0005|\u0000\u0004\u0000i\u0000n\r\u0005u\u0000\u0001k\u0000\u0000\u0000\u0000\u0005}\u0002\u0005}\u0000\u0002\u0005~\u0005\r\u0005~\u0000\u0002r\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\u0005\u0000\u0002\u0005\r\u0005\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0005q\u0000\u0003l\u0000\u0005\u0000\u0000\u0005\r\u0005\u0000\u0003I\u0000\u0001\u0000\u0000\u0005~\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002~\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0005r\u0000\u0001m\u0000\u0000\u0000\u0000|\u0003|\u0000\u0001\r\u0005s\u0000\u0001m\u0000\u0000\u0000\u0000{\u0003{\u0002\u0005o\u0000\u0002\u0005\u0005\r\u0005\u0000\u0004Z\u0000\u0000\u0000\u0001\u0014\u0005\u0005zy\r\u0005\u0000\u0002@\u0000\u0001\u0000\u0000\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000w\u0003w\u0000\u0001\r\u0005\u0000\u0003Q\u0000\u0000\u0000\u0001\u0010\u0005\u0005v\r\u0005\u0000\u0001k\u0000\u0000\u0000\u0001\u0007\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0002c\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0005\u0000\u0000\u0005ut\r\u0005\u0000\u0002n\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u00037\u0001\u0000\u0000\u0000s\u0005\u0005\ns\u0000\u0004\ncobj\r\u0005\u0000\u0003l\u0000\u0005\u0000\u0000\u0005rq\r\u0005\u0000\u0002[\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000\u0001\u0001r\u0000\u0000\u0001q\u0000\u0000\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000n\u0003n\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001u\u0000\u0000\u0001t\u0000\u0000\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000l\nl\u0000\u0004\nTEXT\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u0005\u0000\u0002\u0005j\r\u0005\u0000\u0004Z\u0000\u0000\u0000\u0001\u0007\u0005\u0005i\u0005\r\u0005\u0000\u0002?\u0000\u0001\u0000\u0000\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000g\u0003g\u0000\u0001\r\u0005\u0000\u0002r\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0002c\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0005\u0000\u0000\u0005fe\r\u0005\u0000\u0002n\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u00037\u0001\u0000\u0000\u0000d\u0005\u0005\nd\u0000\u0004\ncobj\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000c\u0003c\u0000\u0001\r\u0005\u0000\u0003l\u0000\u0005\u0000\u0000\u0005ba\r\u0005\u0000\u0002\\\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000`\u000b`\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000_\u0003_\u0000\u0001\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000^\u000b^\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001f\u0000\u0000\u0001e\u0000\u0000\r\u0005\u0000\u0001m\u0000\u0000\u0000\u0000]\n]\u0000\u0004\nTEXT\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00050\u0000\u0001q\u0000\u0000\u0002i\u0000\u0000\r\u0005\u0000\u0002r\u0000\u0000\u0001\u0002\u0001\u0007\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001\u0002\u0001\u0005\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u00050\u0000\u0001q\u0000\u0000\u0002j\u0000\u0000\r\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ZYX\nZ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001Y\u0000\u0000\u0002X\u0000\u0000\u0001v\u0000\u0000\u0002z\u0000\u0000\u0001y\u0000\u0000\u0002\u0005\u0000\u0002\u0005W\r\u0005\u0000\u0002r\u0000\u0000\u0001\u0015\u0001\u001e\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016V\u000bV\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\u0005\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0005\u0005\r\u0005\u0000\u00011\u0000\u0000\u0001\u0019\u0001\u001dU\nU\u0000\u0004\ntxdl\r\u0005\u0000\u00011\u0000\u0000\u0001\u0016\u0001\u0019T\nT\u0000\u0004\nascr\u0002W\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0005M\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000SRQ\nS\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001R\u0000\u0000\u0002Q\u0000\u0000\u0001\u0000\u0000\u0002\u0005K\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0002\u0001,\u0001,PON\u0001P\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0003Q\u0000\u0000\u0001,\u0001\u0005\u0005M\r\u0005\u0000\u0004Z\u0000\u0000\u0001\/\u0001\u0005\u0005\u0005L\r\u0005\u0000\u0002=\u0000\u0003\u0001\/\u00017\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0000\u0001\/\u00013\u0005\u0005\r\u0005\u0000\u00024\u0000\u0001\u00010\u00013K\u0005\nK\u0000\u0004\ncwor\r\u0005\u0000\u0001m\u0000\u0000\u00011\u00012J\u0003J\u0000\u0001\r\u0005\u0000\u0001o\u0000\u0000\u0001\/\u00010I\u000bI\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005\u0000\u0001m\u0000\u0000\u00013\u00016\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0010\u0000t\u0000o\u0000m\u0000o\u0000r\u0000r\u0000o\u0000w\r\u0005\u0000\u0001k\u0000\u0000\u0001:\u0001V\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0001:\u0001D\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0001\u0001:\u0001B\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001;\u0001BH\u0005G\u000bH\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001;\u0001<F\u000bF\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001<\u0001=E\u0003E\u0000\u0002\u0002\u0005\u0000\u0002\u0005D\r\u0005\u0000\u0001m\u0000\u0000\u0001=\u0001>C\u0003C\u0002D\u0000\u0000\u0002G\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001:\u0001;\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0001E\u0001P\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0005\u0001E\u0001N\u0005A@\r\u0005\u0000\u0002[\u0000\u0000\u0001E\u0001N\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0005\u0001E\u0001J\u0005?>\r\u0005\u0000\u0003I\u0000\u0002\u0001E\u0001J=<;\n=\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001<\u0000\u0000\u0002;\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\r\u0005\u0000\u00011\u0000\u0000\u0001J\u0001M:\n:\u0000\u0004\ndays\u0001A\u0000\u0000\u0001@\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0005\u0000\u0002\u00058\r\u0005\u0000\u0002r\u0000\u0000\u0001Q\u0001V\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001Q\u0001T\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\u0006\u0000y\u0000e\u0000s\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\t0\u0000\u0005valid\u0000\u0000\u00028\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002=\u0000\u0003\u0001Y\u0001a\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0000\u0001Y\u0001]\u0005\u0005\r\u0005\u0000\u00024\u0000\u0001\u0001Z\u0001]6\u0005\n6\u0000\u0004\ncwor\r\u0005\u0000\u0001m\u0000\u0000\u0001[\u0001\\5\u00035\u0000\u0001\r\u0005\u0000\u0001o\u0000\u0000\u0001Y\u0001Z4\u000b4\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0005\u0000\u0001m\u0000\u0000\u0001]\u0001`\u0005\u000e\u0005\u0000\u0001\u0005\u0011\u0005\u0000\n\u0000t\u0000o\u0000d\u0000a\u0000y\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001k\u0000\u0000\u0001d\u0001|\u0005\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0001d\u0001n\u0005\u0005\r\u0005\u0000\u0002n\u0000\u0001\u0001d\u0001l\u0005\u0005\r\u0005\u0000\u0003I\u0000\u0000\u0001e\u0001l3\u00052\u000b3\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001o\u0000\u0000\u0001e\u0001f1\u000b1\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0001m\u0000\u0000\u0001f\u0001g0\u00030\u0000\u0002\u0002\u0005\u0000\u0002\u0005\/\r\u0005\u0000\u0001m\u0000\u0000\u0001g\u0001h.\u0003.\u0002\/\u0000\u0000\u00022\u0000\u0000\r\u0005\u0000\u0000f\u0000\u0000\u0001d\u0001e\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0005\u0000\u0002\u0005\u0005\r\u0005\u0000\u0002r\u0000\u0000\u0001o\u0001v\u0005\u0005\r\u0005\u0000\u0003l\u0000\u0005\u0001o\u0001t\u0005,+\r\u0005\u0000\u0003I\u0000\u0002\u0001o\u0001t*)(\n*\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001)\u0000\u0000\u0002(\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\r\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0005\u0000\u0002\u0005&\r\u0005\u0000\u0002r\u0000\u0000\u0001w\u0001|\u0005\u0006\u0000\r\u0005\u0000\u0001m\u0000\u0000\u0001w\u0001z\u0006\u0001\u000e\u0006\u0001\u0000\u0001\u0006\u0002\u0011\u0006\u0002\u0000\u0006\u0000y\u0000e\u0000s\r\u0006\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\t0\u0000\u0005valid\u0000\u0000\u0002&\u0000\u0000\u0002\u0005\u0000\u0002\u0006\u0003\u0006\u0004\r\u0006\u0003\u0000\u0002>\u0001\u0000\u0001\u0001\u0006\u0005\u0006\u0006\r\u0006\u0005\u0000\u0002n\u0000\u0001\u0001\u0001\u0006\u0007\u0006\b\r\u0006\u0007\u0000\u0003I\u0000\u0000\u0001\u0001$\u0006\t#\u000b$\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u0002\u0006\t\u0000\u0002\u0006\n\"\r\u0006\n\u0000\u0002n\u0000\u0000\u0001\u0001\u0006\u000b\u0006\f\r\u0006\u000b\u0000\u00024\u0000\u0001\u0001\u0001!\u0006\r\n!\u0000\u0004\ncwor\r\u0006\r\u0000\u0001m\u0000\u0000\u0001\u0001 \u0003 \u0000\u0001\r\u0006\f\u0000\u0001o\u0000\u0000\u0001\u0001\u001f\u000b\u001f\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\"\u0000\u0000\u0002#\u0000\u0000\r\u0006\b\u0000\u0000f\u0000\u0000\u0001\u0001\r\u0006\u0006\u0000\u0001m\u0000\u0000\u0001\u0001\u001e\n\u001e\u0000\b\u000bboovfals\u0002\u0006\u0004\u0000\u0002\u0006\u000e\u001d\r\u0006\u000e\u0000\u0001k\u0000\u0000\u0001\u0001\u0006\u000f\u0002\u0006\u000f\u0000\u0002\u0006\u0010\u0006\u0011\r\u0006\u0010\u0000\u0002r\u0000\u0000\u0001\u0001\u0006\u0012\u0006\u0013\r\u0006\u0012\u0000\u0002n\u0000\u0001\u0001\u0001\u0006\u0014\u0006\u0015\r\u0006\u0014\u0000\u0003I\u0000\u0000\u0001\u0001\u001c\u0006\u0016\u001b\u000b\u001c\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u0002\u0006\u0016\u0000\u0002\u0006\u0017\u001a\r\u0006\u0017\u0000\u0002n\u0000\u0000\u0001\u0001\u0006\u0018\u0006\u0019\r\u0006\u0018\u0000\u00024\u0000\u0001\u0001\u0001\u0019\u0006\u001a\n\u0019\u0000\u0004\ncwor\r\u0006\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0018\u0003\u0018\u0000\u0001\r\u0006\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u0017\u000b\u0017\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u001b\u0000\u0000\r\u0006\u0015\u0000\u0000f\u0000\u0000\u0001\u0001\r\u0006\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0006\u0011\u0000\u0002\u0006\u001b\u0006\u001c\r\u0006\u001b\u0000\u0002r\u0000\u0000\u0001\u0001\u0006\u001d\u0006\u001e\r\u0006\u001d\u0000\u0002n\u0000\u0001\u0001\u0001\u0006\u001f\u0006 \r\u0006\u001f\u0000\u0003I\u0000\u0000\u0001\u0001\u0015\u0006!\u0014\u000b\u0015\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006!\u0000\u0002\u0006\"\u0006#\r\u0006\"\u0000\u0001o\u0000\u0000\u0001\u0001\u0013\u000b\u0013\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006#\u0000\u0002\u0006$\u0006%\r\u0006$\u0000\u0001m\u0000\u0000\u0001\u0001\u0012\u0003\u0012\u0000\u0002\u0002\u0006%\u0000\u0002\u0006&\u0011\r\u0006&\u0000\u0001m\u0000\u0000\u0001\u0001\u0010\u0003\u0010\u0002\u0011\u0000\u0000\u0002\u0014\u0000\u0000\r\u0006 \u0000\u0000f\u0000\u0000\u0001\u0001\r\u0006\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006\u001c\u0000\u0002\u0006'\u000e\r\u0006'\u0000\u0002r\u0000\u0000\u0001\u0001\u0006(\u0006)\r\u0006(\u0000\u0001m\u0000\u0000\u0001\u0001\u0006*\u000e\u0006*\u0000\u0001\u0006+\u0011\u0006+\u0000\u0006\u0000y\u0000e\u0000s\r\u0006)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\r\u000b\r\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u001d\u0000\u0000\u0001L\u0000\u0000\r\u0005\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\n\n\f\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u000b\u0000\u0000\u0002\n\u0000\u0000\u0001M\u0000\u0000\u0002\u0005\u0000\u0002\u0006,\u0006-\r\u0006,\u0000\u0003l\u0000\u0002\u0001\u0001\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\u0006-\u0000\u0002\u0006.\u0006\r\u0006.\u0000\u0003Q\u0000\u0000\u0001\u0005\u0012\u0006\/\u00060\u0005\r\u0006\/\u0000\u0004Z\u0000\u0000\u0001\u0005\t\u00061\u00062\u00063\u00064\r\u00061\u0000\u0002F\u0000\u0000\u0001\u0001\u00065\u00066\r\u00065\u0000\u0002F\u0000\u0000\u0001\u0001\u00067\u00068\r\u00067\u0000\u0002=\u0000\u0003\u0001\u0001\u00069\u0006:\r\u00069\u0000\u0001o\u0000\u0000\u0001\u0001\u0004\u000b\u0004\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0006:\u0000\u0001m\u0000\u0000\u0001\u0001\u0006;\u000e\u0006;\u0000\u0001\u0006<\u0011\u0006<\u0000\u0000\r\u00068\u0000\u0002=\u0000\u0003\u0001\u0001\u0006=\u0006>\r\u0006=\u0000\u0002n\u0000\u0000\u0001\u0001\u0006?\u0006@\r\u0006?\u0000\u00024\u0000\u0001\u0001\u0001\u0003\u0006A\n\u0003\u0000\u0004\ncwor\r\u0006A\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u0003\u0002\u0000\u0001\r\u0006@\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u000b\u0001\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006>\u0000\u0001m\u0000\u0000\u0001\u0001\u0006B\u000e\u0006B\u0000\u0001\u0006C\u0011\u0006C\u0000\u0004\u0000i\u0000n\r\u00066\u0000\u0003l\u0000\t\u0001\u0001\u0006D\u0000\r\u0006D\u0000\u0003l\u0000\u0005\u0001\u0001\u0006E\r\u0006E\u0000\u0002G\u0000\u0000\u0001\u0001\u0006F\u0006G\r\u0006F\u0000\u0002=\u0000\u0003\u0001\u0001\u0006H\u0006I\r\u0006H\u0000\u0002n\u0000\u0000\u0001\u0001\u0006J\u0006K\r\u0006J\u0000\u00024\u0000\u0001\u0001\u0001\u0006L\n\u0000\u0004\ncwor\r\u0006L\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0003\r\u0006K\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006I\u0000\u0001m\u0000\u0000\u0001\u0001\u0006M\u000e\u0006M\u0000\u0001\u0006N\u0011\u0006N\u0000\u000e\u0000m\u0000i\u0000n\u0000u\u0000t\u0000e\u0000s\r\u0006G\u0000\u0002=\u0000\u0003\u0001\u0001\u0006O\u0006P\r\u0006O\u0000\u0002n\u0000\u0000\u0001\u0001\u0006Q\u0006R\r\u0006Q\u0000\u00024\u0000\u0001\u0001\u0001\u0006S\n\u0000\u0004\ncwor\r\u0006S\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0003\r\u0006R\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006P\u0000\u0001m\u0000\u0000\u0001\u0001\u0006T\u000e\u0006T\u0000\u0001\u0006U\u0011\u0006U\u0000\f\u0000m\u0000i\u0000n\u0000u\u0000t\u0000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\r\u00062\u0000\u0001k\u0000\u0000\u0001\u0002\u0010\u0006V\u0002\u0006V\u0000\u0002\u0006W\u0006X\r\u0006W\u0000\u0002r\u0000\u0000\u0001\u0001\u0006Y\u0006Z\r\u0006Y\u0000\u0002n\u0000\u0001\u0001\u0001\u0006[\u0006\\\r\u0006[\u0000\u0003I\u0000\u0000\u0001\u0001\u0006]\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006]\u0000\u0002\u0006^\u0006_\r\u0006^\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006_\u0000\u0002\u0006`\u0006a\r\u0006`\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0004\u0002\u0006a\u0000\u0002\u0006b\r\u0006b\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\\\u0000\u0000f\u0000\u0000\u0001\u0001\r\u0006Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0006X\u0000\u0002\u0006c\u0006d\r\u0006c\u0000\u0002r\u0000\u0000\u0001\u0002\n\u0006e\u0006f\r\u0006e\u0000\u0003l\u0000\u0005\u0001\u0002\b\u0006g\r\u0006g\u0000\u0002[\u0000\u0000\u0001\u0002\b\u0006h\u0006i\r\u0006h\u0000\u0003l\u0000\u0005\u0001\u0001\u0006j\r\u0006j\u0000\u0003I\u0000\u0002\u0001\u0001\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006i\u0000\u0002]\u0000\u0000\u0001\u0002\u0007\u0006k\u0006l\r\u0006k\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\nmin \r\u0006l\u0000\u0003l\u0000\u0005\u0001\u0002\u0006\u0006m\r\u0006m\u0000\u0002n\u0000\u0001\u0001\u0002\u0006\u0006n\u0006o\r\u0006n\u0000\u0003I\u0000\u0000\u0001\u0002\u0006\u0006p\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006p\u0000\u0002\u0006q\u0006r\r\u0006q\u0000\u0001o\u0000\u0000\u0001\u0002\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006r\u0000\u0002\u0006s\u0006t\r\u0006s\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0001\u0003\u0000\u0002\u0002\u0006t\u0000\u0002\u0006u\r\u0006u\u0000\u0001m\u0000\u0000\u0002\u0001\u0002\u0002\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006o\u0000\u0000f\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0006d\u0000\u0002\u0006v\r\u0006v\u0000\u0002r\u0000\u0000\u0002\u000b\u0002\u0010\u0006w\u0006x\r\u0006w\u0000\u0001m\u0000\u0000\u0002\u000b\u0002\u000e\u0006y\u000e\u0006y\u0000\u0001\u0006z\u0011\u0006z\u0000\u0006\u0000y\u0000e\u0000s\r\u0006x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0002\u00063\u0000\u0002\u0006{\u0006|\r\u0006{\u0000\u0002F\u0000\u0000\u0002\u0013\u0002?\u0006}\u0006~\r\u0006}\u0000\u0002F\u0000\u0000\u0002\u0013\u0002%\u0006\u0006\r\u0006\u0000\u0002=\u0000\u0003\u0002\u0013\u0002\u0018\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002\u0013\u0002\u0014\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0017\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0000\r\u0006\u0000\u0002=\u0000\u0003\u0002\u001b\u0002#\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0000\u0002\u001b\u0002\u001f\u0006\u0006\r\u0006\u0000\u00024\u0000\u0001\u0002\u001c\u0002\u001f\u0006\n\u0000\u0004\ncwor\r\u0006\u0000\u0001m\u0000\u0000\u0002\u001d\u0002\u001e\u0003\u0000\u0001\r\u0006\u0000\u0001o\u0000\u0000\u0002\u001b\u0002\u001c\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006\u0000\u0001m\u0000\u0000\u0002\u001f\u0002\"\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0004\u0000i\u0000n\r\u0006~\u0000\u0003l\u0000\t\u0002(\u0002=\u0006\r\u0006\u0000\u0003l\u0000\u0005\u0002(\u0002=\u0006\r\u0006\u0000\u0002G\u0000\u0000\u0002(\u0002=\u0006\u0006\r\u0006\u0000\u0002=\u0000\u0003\u0002(\u00020\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0000\u0002(\u0002,\u0006\u0006\r\u0006\u0000\u00024\u0000\u0001\u0002)\u0002,\u0006\n\u0000\u0004\ncwor\r\u0006\u0000\u0001m\u0000\u0000\u0002*\u0002+\u0003\u0000\u0003\r\u0006\u0000\u0001o\u0000\u0000\u0002(\u0002)\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006\u0000\u0001m\u0000\u0000\u0002,\u0002\/\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\b\u0000d\u0000a\u0000y\u0000s\r\u0006\u0000\u0002=\u0000\u0003\u00023\u0002;\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0000\u00023\u00027\u0006\u0006\r\u0006\u0000\u00024\u0000\u0001\u00024\u00027\u0006\n\u0000\u0004\ncwor\r\u0006\u0000\u0001m\u0000\u0000\u00025\u00026\u0003\u0000\u0003\r\u0006\u0000\u0001o\u0000\u0000\u00023\u00024\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006\u0000\u0001m\u0000\u0000\u00027\u0002:\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000d\u0000a\u0000y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0006|\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001k\u0000\u0000\u0002B\u0002\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0002B\u0002N\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0002B\u0002L\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0002C\u0002L\u0006\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002C\u0002D\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002D\u0002G\u0003\u0000\u0004\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002G\u0002H\u0003\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0002B\u0002C\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0002O\u0002c\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0005\u0002O\u0002a\u0006\r\u0006\u0000\u0002[\u0000\u0000\u0002O\u0002a\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0005\u0002O\u0002T\u0006\r\u0006\u0000\u0003I\u0000\u0002\u0002O\u0002T\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006\u0000\u0002]\u0000\u0000\u0002T\u0002`\u0006\u0006\r\u0006\u0000\u00011\u0000\u0000\u0002T\u0002W\n\u0000\u0004\ndays\r\u0006\u0000\u0003l\u0000\u0005\u0002W\u0002_\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0002W\u0002_\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0002X\u0002_\u0006\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002X\u0002Y\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002Y\u0002Z\u0003\u0000\u0002\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002Z\u0002[\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0002W\u0002X\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0001\u0002d\u0002d\u0006\u0006\u0001\u0000\u0000\f\u0006\u0000\u001f\u0000\u0019 check for x days y hours\u0000\u0002\u0000\u0000\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u00002\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000x\u0000 \u0000d\u0000a\u0000y\u0000s\u0000 \u0000y\u0000 \u0000h\u0000o\u0000u\u0000r\u0000s\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0003Q\u0000\u0000\u0002d\u0002\u0006\u0006\r\u0006\u0000\u0004Z\u0000\u0000\u0002g\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0005\u0002g\u0002\u0006\r\u0006\u0000\u0002G\u0000\u0000\u0002g\u0002\u0006\u0006\r\u0006\u0000\u0002=\u0000\u0003\u0002g\u0002q\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0000\u0002g\u0002m\u0006\u0006\r\u0006\u0000\u00024\u0000\u0001\u0002h\u0002m\u0006\n\u0000\u0004\ncwor\r\u0006\u0000\u0001m\u0000\u0000\u0002i\u0002l\u0003\u0000\u0005\r\u0006\u0000\u0001o\u0000\u0000\u0002g\u0002h\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006\u0000\u0001m\u0000\u0000\u0002m\u0002p\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\n\u0000h\u0000o\u0000u\u0000r\u0000s\r\u0006\u0000\u0002=\u0000\u0003\u0002t\u0002~\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0000\u0002t\u0002z\u0006\u0006\r\u0006\u0000\u00024\u0000\u0001\u0002u\u0002z\u0006\n\u0000\u0004\ncwor\r\u0006\u0000\u0001m\u0000\u0000\u0002v\u0002y\u0003\u0000\u0005\r\u0006\u0000\u0001o\u0000\u0000\u0002t\u0002u\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0006\u0000\u0001m\u0000\u0000\u0002z\u0002}\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\b\u0000h\u0000o\u0000u\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006\u0000\u0001k\u0000\u0000\u0002\u0002\u0006\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0002\u0002\u0006\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0002\u0002\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0002\u0002\u0006\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0006\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0002\u0002\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0002\u0002\u0006\u0006\r\u0006\u0000\u0003l\u0000\u0005\u0002\u0002\u0006\r\u0006\u0000\u0002[\u0000\u0000\u0002\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0006\u0000\u0002]\u0000\u0000\u0002\u0002\u0006\u0006\r\u0006\u0000\u00011\u0000\u0000\u0002\u0002\n\u0000\u0004\nhour\r\u0006\u0000\u0003l\u0000\u0005\u0002\u0002\u0006\r\u0006\u0000\u0002n\u0000\u0001\u0002\u0002\u0006\u0006\r\u0006\u0000\u0003I\u0000\u0000\u0002\u0002\u0006\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0004\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0004\u0002\u0000\u0000\u0002\u0000\u0000\r\u0006\u0000\u0000f\u0000\u0000\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0006\u0000\u0002\u0006\r\u0006\u0000\u0002r\u0000\u0000\u0002\u0002\u0006\u0006\r\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0006\u000e\u0006\u0000\u0001\u0006\u0011\u0006\u0000\u0006\u0000y\u0000e\u0000s\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0002\u0006\u0000\u0002\u0006\u0007\u0000\r\u0006\u0000\u0002F\u0000\u0000\u0002\u0002\u0007\u0001\u0007\u0002\r\u0007\u0001\u0000\u0002F\u0000\u0000\u0002\u0002\u0007\u0003\u0007\u0004\r\u0007\u0003\u0000\u0002=\u0000\u0003\u0002\u0002\u0007\u0005\u0007\u0006\r\u0007\u0005\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0007\u0006\u0000\u0001m\u0000\u0000\u0002\u0002\u0007\u0007\u000e\u0007\u0007\u0000\u0001\u0007\b\u0011\u0007\b\u0000\u0000\r\u0007\u0004\u0000\u0002=\u0000\u0003\u0002\u0002\u0007\t\u0007\n\r\u0007\t\u0000\u0002n\u0000\u0000\u0002\u0002\u0007\u000b\u0007\f\r\u0007\u000b\u0000\u00024\u0000\u0001\u0002\u0002\u0007\r\n\u0000\u0004\ncwor\r\u0007\r\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0001\r\u0007\f\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\n\u0000\u0001m\u0000\u0000\u0002\u0002\u0007\u000e\u000e\u0007\u000e\u0000\u0001\u0007\u000f\u0011\u0007\u000f\u0000\u0004\u0000i\u0000n\r\u0007\u0002\u0000\u0003l\u0000\t\u0002\u0002\u0007\u0010\r\u0007\u0010\u0000\u0003l\u0000\u0005\u0002\u0002\u0007\u0011\r\u0007\u0011\u0000\u0002G\u0000\u0000\u0002\u0002\u0007\u0012\u0007\u0013\r\u0007\u0012\u0000\u0002=\u0000\u0003\u0002\u0002\u0007\u0014\u0007\u0015\r\u0007\u0014\u0000\u0002n\u0000\u0000\u0002\u0002\u0007\u0016\u0007\u0017\r\u0007\u0016\u0000\u00024\u0000\u0001\u0002\u0002\u0007\u0018\n\u0000\u0004\ncwor\r\u0007\u0018\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0003\r\u0007\u0017\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\u0015\u0000\u0001m\u0000\u0000\u0002\u0002\u0007\u0019\u000e\u0007\u0019\u0000\u0001\u0007\u001a\u0011\u0007\u001a\u0000\n\u0000h\u0000o\u0000u\u0000r\u0000s\r\u0007\u0013\u0000\u0002=\u0000\u0003\u0002\u0002\u0007\u001b\u0007\u001c\r\u0007\u001b\u0000\u0002n\u0000\u0000\u0002\u0002\u0007\u001d\u0007\u001e\r\u0007\u001d\u0000\u00024\u0000\u0001\u0002\u0002\u0007\u001f\n\u0000\u0004\ncwor\r\u0007\u001f\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0003\r\u0007\u001e\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\u001c\u0000\u0001m\u0000\u0000\u0002\u0002\u0007 \u000e\u0007 \u0000\u0001\u0007!\u0011\u0007!\u0000\b\u0000h\u0000o\u0000u\u0000r\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0007\u0000\u0000\u0002\u0007\"\u0007#\r\u0007\"\u0000\u0001k\u0000\u0000\u0002\u0003Z\u0007$\u0002\u0007$\u0000\u0002\u0007%\u0007&\r\u0007%\u0000\u0002r\u0000\u0000\u0002\u0002\u0007'\u0007(\r\u0007'\u0000\u0002n\u0000\u0001\u0002\u0002\u0007)\u0007*\r\u0007)\u0000\u0003I\u0000\u0000\u0002\u0002\u0007+\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0007+\u0000\u0002\u0007,\u0007-\r\u0007,\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0007-\u0000\u0002\u0007.\u0007\/\r\u0007.\u0000\u0001m\u0000\u0000\u0002\u0002\u0003\u0000\u0004\u0002\u0007\/\u0000\u0002\u00070~\r\u00070\u0000\u0001m\u0000\u0000\u0002\u0002}\u0003}\u0002~\u0000\u0000\u0002\u0000\u0000\r\u0007*\u0000\u0000f\u0000\u0000\u0002\u0002\r\u0007(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0007&\u0000\u0002\u00071\u00072\r\u00071\u0000\u0002r\u0000\u0000\u0002\u0003\b\u00073\u00074\r\u00073\u0000\u0003l\u0000\u0005\u0002\u0003\u0006\u00075{z\r\u00075\u0000\u0002[\u0000\u0000\u0002\u0003\u0006\u00076\u00077\r\u00076\u0000\u0003l\u0000\u0005\u0002\u0002\u00078yx\r\u00078\u0000\u0003I\u0000\u0002\u0002\u0002wvu\nw\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001v\u0000\u0000\u0002u\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\r\u00077\u0000\u0002]\u0000\u0000\u0002\u0003\u0005\u00079\u0007:\r\u00079\u0000\u00011\u0000\u0000\u0002\u0002t\nt\u0000\u0004\nhour\r\u0007:\u0000\u0003l\u0000\u0005\u0002\u0003\u0004\u0007;sr\r\u0007;\u0000\u0002n\u0000\u0001\u0002\u0003\u0004\u0007<\u0007=\r\u0007<\u0000\u0003I\u0000\u0000\u0002\u0003\u0004q\u0007>p\u000bq\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0007>\u0000\u0002\u0007?\u0007@\r\u0007?\u0000\u0001o\u0000\u0000\u0002\u0002o\u000bo\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0007@\u0000\u0002\u0007A\u0007B\r\u0007A\u0000\u0001m\u0000\u0000\u0002\u0002n\u0003n\u0000\u0002\u0002\u0007B\u0000\u0002\u0007Cm\r\u0007C\u0000\u0001m\u0000\u0000\u0002\u0003\u0000l\u0003l\u0000\u0002\u0002m\u0000\u0000\u0002p\u0000\u0000\r\u0007=\u0000\u0000f\u0000\u0000\u0002\u0002\u0001s\u0000\u0000\u0001r\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\r\u00074\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u00072\u0000\u0002\u0007D\u0007E\r\u0007D\u0000\u0003Q\u0000\u0000\u0003\t\u0003T\u0007F\u0007Gj\r\u0007F\u0000\u0004Z\u0000\u0000\u0003\f\u0003K\u0007H\u0007Iih\r\u0007H\u0000\u0003l\u0000\u0005\u0003\f\u0003%\u0007Jgf\r\u0007J\u0000\u0002G\u0000\u0000\u0003\f\u0003%\u0007K\u0007L\r\u0007K\u0000\u0002=\u0000\u0003\u0003\f\u0003\u0016\u0007M\u0007N\r\u0007M\u0000\u0002n\u0000\u0000\u0003\f\u0003\u0012\u0007O\u0007P\r\u0007O\u0000\u00024\u0000\u0001\u0003\r\u0003\u0012e\u0007Q\ne\u0000\u0004\ncwor\r\u0007Q\u0000\u0001m\u0000\u0000\u0003\u000e\u0003\u0011d\u0003d\u0000\u0005\r\u0007P\u0000\u0001o\u0000\u0000\u0003\f\u0003\rc\u000bc\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007N\u0000\u0001m\u0000\u0000\u0003\u0012\u0003\u0015\u0007R\u000e\u0007R\u0000\u0001\u0007S\u0011\u0007S\u0000\u000e\u0000m\u0000i\u0000n\u0000u\u0000t\u0000e\u0000s\r\u0007L\u0000\u0002=\u0000\u0003\u0003\u0019\u0003#\u0007T\u0007U\r\u0007T\u0000\u0002n\u0000\u0000\u0003\u0019\u0003\u001f\u0007V\u0007W\r\u0007V\u0000\u00024\u0000\u0001\u0003\u001a\u0003\u001fb\u0007X\nb\u0000\u0004\ncwor\r\u0007X\u0000\u0001m\u0000\u0000\u0003\u001b\u0003\u001ea\u0003a\u0000\u0005\r\u0007W\u0000\u0001o\u0000\u0000\u0003\u0019\u0003\u001a`\u000b`\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007U\u0000\u0001m\u0000\u0000\u0003\u001f\u0003\"\u0007Y\u000e\u0007Y\u0000\u0001\u0007Z\u0011\u0007Z\u0000\f\u0000m\u0000i\u0000n\u0000u\u0000t\u0000e\u0001g\u0000\u0000\u0001f\u0000\u0000\r\u0007I\u0000\u0001k\u0000\u0000\u0003(\u0003G\u0007[\u0002\u0007[\u0000\u0002\u0007\\\u0007]\r\u0007\\\u0000\u0002r\u0000\u0000\u0003(\u00032\u0007^\u0007_\r\u0007^\u0000\u0002n\u0000\u0001\u0003(\u00030\u0007`\u0007a\r\u0007`\u0000\u0003I\u0000\u0000\u0003)\u00030_\u0007b^\u000b_\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0007b\u0000\u0002\u0007c\u0007d\r\u0007c\u0000\u0001o\u0000\u0000\u0003)\u0003*]\u000b]\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0007d\u0000\u0002\u0007e\u0007f\r\u0007e\u0000\u0001m\u0000\u0000\u0003*\u0003+\\\u0003\\\u0000\u0006\u0002\u0007f\u0000\u0002\u0007g[\r\u0007g\u0000\u0001m\u0000\u0000\u0003+\u0003,Z\u0003Z\u0002[\u0000\u0000\u0002^\u0000\u0000\r\u0007a\u0000\u0000f\u0000\u0000\u0003(\u0003)\r\u0007_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0007]\u0000\u0002\u0007hX\r\u0007h\u0000\u0002r\u0000\u0000\u00033\u0003G\u0007i\u0007j\r\u0007i\u0000\u0003l\u0000\u0005\u00033\u0003E\u0007kWV\r\u0007k\u0000\u0002[\u0000\u0000\u00033\u0003E\u0007l\u0007m\r\u0007l\u0000\u0001o\u0000\u0000\u00033\u00034U\u000bU\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0007m\u0000\u0002]\u0000\u0000\u00034\u0003D\u0007n\u0007o\r\u0007n\u0000\u00011\u0000\u0000\u00034\u00037T\nT\u0000\u0004\nmin \r\u0007o\u0000\u0003l\u0000\u0005\u00037\u0003C\u0007pSR\r\u0007p\u0000\u0002n\u0000\u0001\u00037\u0003C\u0007q\u0007r\r\u0007q\u0000\u0003I\u0000\u0000\u00038\u0003CQ\u0007sP\u000bQ\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0007s\u0000\u0002\u0007t\u0007u\r\u0007t\u0000\u0001o\u0000\u0000\u00038\u00039O\u000bO\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0007u\u0000\u0002\u0007v\u0007w\r\u0007v\u0000\u0001m\u0000\u0000\u00039\u0003<N\u0003N\u0000\u0004\u0002\u0007w\u0000\u0002\u0007xM\r\u0007x\u0000\u0001m\u0000\u0000\u0003<\u0003?L\u0003L\u0000\u0004\u0002M\u0000\u0000\u0002P\u0000\u0000\r\u0007r\u0000\u0000f\u0000\u0000\u00037\u00038\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0007j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002X\u0000\u0000\u0002i\u0000\u0000\u0001h\u0000\u0000\r\u0007G\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000JIH\nJ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001I\u0000\u0000\u0002H\u0000\u0000\u0001j\u0000\u0000\u0002\u0007E\u0000\u0002\u0007yG\r\u0007y\u0000\u0002r\u0000\u0000\u0003U\u0003Z\u0007z\u0007{\r\u0007z\u0000\u0001m\u0000\u0000\u0003U\u0003X\u0007|\u000e\u0007|\u0000\u0001\u0007}\u0011\u0007}\u0000\u0006\u0000y\u0000e\u0000s\r\u0007{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\t0\u0000\u0005valid\u0000\u0000\u0002G\u0000\u0000\u0002\u0007#\u0000\u0002\u0007~\u0007\r\u0007~\u0000\u0002F\u0000\u0000\u0003]\u0003o\u0007\u0007\r\u0007\u0000\u0002=\u0000\u0003\u0003]\u0003b\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0003]\u0003^E\u000bE\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0007\u0000\u0001m\u0000\u0000\u0003^\u0003a\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0000\r\u0007\u0000\u0002=\u0000\u0003\u0003e\u0003m\u0007\u0007\r\u0007\u0000\u0002n\u0000\u0000\u0003e\u0003i\u0007\u0007\r\u0007\u0000\u00024\u0000\u0001\u0003f\u0003iD\u0007\nD\u0000\u0004\ncwor\r\u0007\u0000\u0001m\u0000\u0000\u0003g\u0003hC\u0003C\u0000\u0001\r\u0007\u0000\u0001o\u0000\u0000\u0003e\u0003fB\u000bB\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0003i\u0003l\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000o\u0000n\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0003r\u0004\u0014\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003r\u0003{\u0007\u0007\r\u0007\u0000\u0002n\u0000\u0003\u0003r\u0003y\u0007\u0007\r\u0007\u0000\u00011\u0000\u0000\u0003u\u0003yA\nA\u0000\u0004\ntxdl\r\u0007\u0000\u00011\u0000\u0000\u0003r\u0003u@\n@\u0000\u0004\nascr\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000?\u000b?\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003|\u0003\u0007\u0007\r\u0007\u0000\u00011\u0000\u0000\u0003|\u0003>\n>\u0000\u0004\nspac\r\u0007\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007\u0007\r\u0007\u0000\u00011\u0000\u0000\u0003\u0003=\n=\u0000\u0004\ntxdl\r\u0007\u0000\u00011\u0000\u0000\u0003\u0003<\n<\u0000\u0004\nascr\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003;\u0003;\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0002n\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u00012\u0000\u0001\u0003\u00039\n9\u0000\u0004\ncitm\r\u0007\u0000\u0001o\u0000\u0000\u0003\u00038\u000b8\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0005Y\u0000\u0000\u0003\u0003\u00076\u0007\u00075\r\u0007\u0000\u0004Z\u0000\u0000\u0003\u0003\u0007\u000743\r\u0007\u0000\u0002=\u0000\u0001\u0003\u0003\u0007\u0007\r\u0007\u0000\u0002n\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u00024\u0000\u0000\u0003\u00032\u0007\n2\u0000\u0004\ncobj\r\u0007\u0000\u0001o\u0000\u0000\u0003\u00031\u000b1\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0003\u00030\u000b0\u0000\u00140\u0000\bitemlist\u0000\bitemList\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000t\u0000o\r\u0007\u0000\u0001k\u0000\u0000\u0003\u0003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003\/\u000b\/\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\u0007\u0000\u0002\u0007-\r\u0007\u0000\u0000S\u0000\u0000\u0003\u0003\u0002-\u0000\u0000\u00024\u0000\u0000\u00013\u0000\u0000\u000b6\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003,\u0003,\u0000\u0002\r\u0007\u0000\u0003l\u0001\u0000\u0003\u0003\u0007+*\r\u0007\u0000\u0003I\u0000\u0001\u0003\u0003)\u0007(\n)\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003'\u000b'\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u00015\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0004Z\u0000\u0000\u0003\u0004\n\u0007\u0007&%\r\u0007\u0000\u0002?\u0000\u0001\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003$\u000b$\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003#\u0003#\u0000\u0000\r\u0007\u0000\u0003Q\u0000\u0000\u0003\u0004\u0006\u0007\u0007\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0003\u0003\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0002c\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0005\u0003\u0003\u0007\"!\r\u0007\u0000\u0002n\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u00037\u0001\u0000\u0003\u0003 \u0007\u0007\n \u0000\u0004\ncobj\r\u0007\u0000\u0003l\u0000\u0005\u0003\u0003\u0007\u001f\u001e\r\u0007\u0000\u0002[\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003\u001d\u000b\u001d\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u001c\u0003\u001c\u0000\u0001\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u001b\u0003\u001b\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003\u001a\u000b\u001a\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001\"\u0000\u0000\u0001!\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u0019\n\u0019\u0000\u0004\nTEXT\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u00024\u0000\u0000\u0003\u0003\u0017\u0007\n\u0017\u0000\u0004\nldt \r\u0007\u0000\u0003l\u0000\u0005\u0003\u0003\u0007\u0016\u0015\r\u0007\u0000\u0002c\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0003l\u0000\u0005\u0003\u0003\u0007\u0014\u0013\r\u0007\u0000\u0002n\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u00037\u0001\u0000\u0003\u0003\u0012\u0007\u0007\n\u0012\u0000\u0004\ncobj\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u0011\u0003\u0011\u0000\u0002\r\u0007\u0000\u0003l\u0000\u0005\u0003\u0003\u0007\u0010\u000f\r\u0007\u0000\u0002\\\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003\u000e\u000b\u000e\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\r\u0003\r\u0000\u0001\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0003\u0003\f\u000b\f\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u000b\n\u000b\u0000\u0004\nTEXT\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0007\u0000\u0002\u0007\t\r\u0007\u0000\u0002r\u0000\u0000\u0003\u0003\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0003\u0003\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0006\u0000y\u0000e\u0000s\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\t\u0000\u0000\r\u0007\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0006\u0005\n\u0007\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0006\u0000\u0000\u0002\u0005\u0000\u0000\r\u0007\u0000\u0002r\u0000\u0000\u0004\u0001\u0004\u0006\u0007\u0007\r\u0007\u0000\u0001m\u0000\u0000\u0004\u0001\u0004\u0004\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000n\u0000o\r\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\t0\u0000\u0005valid\u0000\u0000\u0002&\u0000\u0000\u0001%\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0003\r\u0007\u0000\u0002r\u0000\u0000\u0004\u000b\u0004\u0014\u0007\u0007\r\u0007\u0000\u0001o\u0000\u0000\u0004\u000b\u0004\f\u0002\u000b\u0002\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\u0007\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0007\u0007\r\u0007\u0000\u00011\u0000\u0000\u0004\u000f\u0004\u0013\u0001\n\u0001\u0000\u0004\ntxdl\r\u0007\u0000\u00011\u0000\u0000\u0004\f\u0004\u000f\u0000\n\u0000\u0000\u0004\nascr\u0002\u0003\u0000\u0000\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002=\u0000\u0003\u0004\u0017\u0004\u001f\u0007\u0007\r\u0007\u0000\u0002n\u0000\u0000\u0004\u0017\u0004\u001b\u0007\u0007\r\u0007\u0000\u00024\u0000\u0001\u0004\u0018\u0004\u001b\u0007\n\u0000\u0004\ncwor\r\u0007\u0000\u0001m\u0000\u0000\u0004\u0019\u0004\u001a\u0003\u0000\u0001\r\u0007\u0000\u0001o\u0000\u0000\u0004\u0017\u0004\u0018\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0007\u0000\u0001m\u0000\u0000\u0004\u001b\u0004\u001e\u0007\u000e\u0007\u0000\u0001\u0007\u0011\u0007\u0000\u0004\u0000a\u0000t\u0002\u0007\u0000\u0002\u0007\r\u0007\u0000\u0001k\u0000\u0000\u0004\"\u0004\u0007\u0002\u0007\u0000\u0002\u0007\u0007\r\u0007\u0000\u0002r\u0000\u0000\u0004\"\u0004+\u0007\b\u0000\r\u0007\u0000\u0002n\u0000\u0003\u0004\"\u0004)\b\u0001\b\u0002\r\b\u0001\u0000\u00011\u0000\u0000\u0004%\u0004)\n\u0000\u0004\ntxdl\r\b\u0002\u0000\u00011\u0000\u0000\u0004\"\u0004%\n\u0000\u0004\nascr\r\b\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0007\u0000\u0002\b\u0003\b\u0004\r\b\u0003\u0000\u0002r\u0000\u0000\u0004,\u00047\b\u0005\b\u0006\r\b\u0005\u0000\u00011\u0000\u0000\u0004,\u0004\/\n\u0000\u0004\nspac\r\b\u0006\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\b\u0007\b\b\r\b\u0007\u0000\u00011\u0000\u0000\u00042\u00046\n\u0000\u0004\ntxdl\r\b\b\u0000\u00011\u0000\u0000\u0004\/\u00042\n\u0000\u0004\nascr\u0002\b\u0004\u0000\u0002\b\t\b\n\r\b\t\u0000\u0002r\u0000\u0000\u00048\u0004;\b\u000b\b\f\r\b\u000b\u0000\u0001m\u0000\u0000\u00048\u00049\u0003\u0000\u0000\r\b\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\b\n\u0000\u0002\b\r\b\u000e\r\b\r\u0000\u0002r\u0000\u0000\u0004<\u0004C\b\u000f\b\u0010\r\b\u000f\u0000\u0002n\u0000\u0000\u0004<\u0004A\b\u0011\b\u0012\r\b\u0011\u0000\u00012\u0000\u0001\u0004=\u0004A\n\u0000\u0004\ncitm\r\b\u0012\u0000\u0001o\u0000\u0000\u0004<\u0004=\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\b\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\b\u000e\u0000\u0002\b\u0013\b\u0014\r\b\u0013\u0000\u0005Y\u0000\u0000\u0004D\u0004k\b\u0015\b\u0016\b\u0017\r\b\u0015\u0000\u0004Z\u0000\u0001\u0004R\u0004f\b\u0018\b\u0019\r\b\u0018\u0000\u0002=\u0000\u0001\u0004R\u0004\\\b\u001a\b\u001b\r\b\u001a\u0000\u0002n\u0000\u0000\u0004R\u0004X\b\u001c\b\u001d\r\b\u001c\u0000\u00024\u0000\u0000\u0004S\u0004X\b\u001e\n\u0000\u0004\ncobj\r\b\u001e\u0000\u0001o\u0000\u0000\u0004V\u0004W\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\b\u001d\u0000\u0001o\u0000\u0000\u0004R\u0004S\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\r\b\u001b\u0000\u0001m\u0000\u0000\u0004X\u0004[\b\u001f\u000e\b\u001f\u0000\u0001\b \u0011\b \u0000\u0004\u0000t\u0000o\r\b\u0019\u0000\u0002r\u0000\u0000\u0004_\u0004b\b!\b\"\r\b!\u0000\u0001o\u0000\u0000\u0004_\u0004`\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\b\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\b\u0016\u0000\u0001m\u0000\u0000\u0004G\u0004H\u0003\u0000\u0002\r\b\u0017\u0000\u0003l\u0001\u0000\u0004H\u0004M\b#\r\b#\u0000\u0003I\u0000\u0001\u0004H\u0004M\b$\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\b$\u0000\u0001o\u0000\u0000\u0004H\u0004I\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0014\u0000\u0002\b%\b&\r\b%\u0000\u0004Z\u0000\u0000\u0004l\u0004\b'\b(\r\b'\u0000\u0002?\u0000\u0001\u0004l\u0004o\b)\b*\r\b)\u0000\u0001o\u0000\u0000\u0004l\u0004m\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\b*\u0000\u0001m\u0000\u0000\u0004m\u0004n\u0003\u0000\u0000\r\b(\u0000\u0003Q\u0000\u0000\u0004r\u0004\b+\b,\b-\r\b+\u0000\u0001k\u0000\u0000\u0004u\u0004\b.\u0002\b.\u0000\u0002\b\/\b0\r\b\/\u0000\u0002r\u0000\u0000\u0004u\u0004\b1\b2\r\b1\u0000\u0002c\u0000\u0000\u0004u\u0004\b3\b4\r\b3\u0000\u0003l\u0000\u0005\u0004u\u0004\b5\r\b5\u0000\u0002n\u0000\u0000\u0004u\u0004\b6\b7\r\b6\u0000\u00037\u0001\u0000\u0004v\u0004\b8\b9\n\u0000\u0004\ncobj\r\b8\u0000\u0003l\u0000\u0005\u0004|\u0004\b:\r\b:\u0000\u0002[\u0000\u0000\u0004|\u0004\b;\b<\r\b;\u0000\u0001o\u0000\u0000\u0004}\u0004~\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\b<\u0000\u0001m\u0000\u0000\u0004~\u0004\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\b9\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\r\b7\u0000\u0001o\u0000\u0000\u0004u\u0004v\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001\u0000\u0000\u0001\u0000\u0000\r\b4\u0000\u0001m\u0000\u0000\u0004\u0004\n\u0000\u0004\nTEXT\r\b2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\b0\u0000\u0002\b=\b>\r\b=\u0000\u0002r\u0000\u0000\u0004\u0004\b?\b@\r\b?\u0000\u0002c\u0000\u0000\u0004\u0004\bA\bB\r\bA\u0000\u0003l\u0000\u0005\u0004\u0004\bC\r\bC\u0000\u0002n\u0000\u0000\u0004\u0004\bD\bE\r\bD\u0000\u00037\u0001\u0000\u0004\u0004\bF\bG\n\u0000\u0004\ncobj\r\bF\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0002\r\bG\u0000\u0003l\u0000\u0005\u0004\u0004\bH\r\bH\u0000\u0002\\\u0000\u0000\u0004\u0004\bI\bJ\r\bI\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\r\bJ\u0000\u0001m\u0000\u0000\u0004\u0004\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\bE\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001\u0000\u0000\u0001\u0000\u0000\r\bB\u0000\u0001m\u0000\u0000\u0004\u0004\n\u0000\u0004\nTEXT\r\b@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\b>\u0000\u0002\bK\bL\r\bK\u0000\u0004Z\u0000\u0000\u0004\u0004\bM\bN\bO\r\bM\u0000\u0002=\u0000\u0003\u0004\u0004\bP\bQ\r\bP\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\bQ\u0000\u0001m\u0000\u0000\u0004\u0004\bR\u000e\bR\u0000\u0001\bS\u0011\bS\u0000\u0000\r\bN\u0000\u0002r\u0000\u0000\u0004\u0004\bT\bU\r\bT\u0000\u0002n\u0000\u0001\u0004\u0004\bV\bW\r\bV\u0000\u0003I\u0000\u0000\u0004\u0004\bX\u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\u0002\bX\u0000\u0002\bY\r\bY\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0000\u0000\u0002\u0000\u0000\r\bW\u0000\u0000f\u0000\u0000\u0004\u0004\r\bU\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\r\bO\u0000\u0002r\u0000\u0000\u0004\u0004\bZ\b[\r\bZ\u0000\u0002n\u0000\u0000\u0004\u0004\b\\\b]\r\b\\\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\ntime\r\b]\u0000\u0003l\u0000\u0005\u0004\u0004\b^\r\b^\u0000\u0002n\u0000\u0001\u0004\u0004\b_\b`\r\b_\u0000\u0003I\u0000\u0000\u0004\u0004\ba\u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\u0002\ba\u0000\u0002\bb\r\bb\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0000\u0000\u0002\u0000\u0000\r\b`\u0000\u0000f\u0000\u0000\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\r\b[\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0000\bc\r\bc\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\bd\be\r\bd\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\ntime\r\be\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0001\u0000\u0000\u0001\u0000\u0000\u0002\bL\u0000\u0002\bf\bg\r\bf\u0000\u0003l\u0000\u0002\u0004\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\bg\u0000\u0002\bh\r\bh\u0000\u0004Z\u0000\u0000\u0004\u0004\bi\bj\bk\r\bi\u0000\u0002>\u0001\u0000\u0004\u0004\bl\bm\r\bl\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\bm\u0000\u0001m\u0000\u0000\u0004\u0004\bn\u000e\bn\u0000\u0001\bo\u0011\bo\u0000\u0000\r\bj\u0000\u0002r\u0000\u0000\u0004\u0004\bp\bq\r\bp\u0000\u0001m\u0000\u0000\u0004\u0004\br\u000e\br\u0000\u0001\bs\u0011\bs\u0000\u0006\u0000y\u0000e\u0000s\r\bq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\r\bk\u0000\u0002r\u0000\u0000\u0004\u0004\bt\bu\r\bt\u0000\u0001m\u0000\u0000\u0004\u0004\bv\u000e\bv\u0000\u0001\bw\u0011\bw\u0000\u0004\u0000n\u0000o\r\bu\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\r\b,\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\b-\u0000\u0002r\u0000\u0000\u0004\u0004\bx\by\r\bx\u0000\u0001m\u0000\u0000\u0004\u0004\bz\u000e\bz\u0000\u0001\b{\u0011\b{\u0000\u0004\u0000n\u0000o\r\by\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\b&\u0000\u0002\b|\r\b|\u0000\u0002r\u0000\u0000\u0004\u0004\b}\b~\r\b}\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\b~\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\b\b\r\b\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\ntxdl\r\b\u0000\u00011\u0000\u0000\u0004\u0004\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u00064\u0000\u0001k\u0000\u0000\u0004\u0005\t\b\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0004\u0004\b\b\r\b\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\b\u0000\u0002\b\r\b\u0000\u0004Z\u0000\u0001\u0004\u0005\t\b\b\r\b\u0000\u0002>\u0001\u0000\u0004\u0004\b\b\r\b\u0000\u0001o\u0000\u0000\u0004\u0004\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\b\u0000\u0001m\u0000\u0000\u0004\u0004\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0002r\u0000\u0000\u0005\u0000\u0005\u0005\b\b\r\b\u0000\u0001m\u0000\u0000\u0005\u0000\u0005\u0003\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0006\u0000y\u0000e\u0000s\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00060\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0005\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0000\u0000\r\u0005<\u0000\u0001k\u0000\u0000\u0005\u0015\u0005\u0018\b\u0002\b\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0001\u0005\u0015\u0005\u0015\b\b\u0001\u0000\u0000\f\b\u0000\u001b\u0000\u0015 \"r all\", \"r refresh\"\u0000\u0002\u0000\u0000\u000e\b\u0000\u0001\b\u0011\b\u0000*\u0000 \u0000\"\u0000r\u0000 \u0000a\u0000l\u0000l\u0000\"\u0000,\u0000 \u0000\"\u0000r\u0000 \u0000r\u0000e\u0000f\u0000r\u0000e\u0000s\u0000h\u0000\"\u0002\b\u0000\u0002\b\r\b\u0000\u0002r\u0000\u0000\u0005\u0015\u0005\u0018\b\b\r\b\u0000\u0001o\u0000\u0000\u0005\u0015\u0005\u0016\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0000\u0000\u0002\u00059\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0005\u0019\u0005\u0019\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0004Z\u0000\u0000\u0005\u0019\u0005\\\b\b\b\r\b\u0000\u0002F\u0000\u0000\u0005\u0019\u00052\b\b\r\b\u0000\u0002=\u0000\u0003\u0005\u0019\u0005\u001e\b\b\r\b\u0000\u0001o\u0000\u0000\u0005\u0019\u0005\u001a\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\b\u0000\u0001m\u0000\u0000\u0005\u001a\u0005\u001d\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0003l\u0000\u0005\u0005!\u00050\b\r\b\u0000\u0002G\u0000\u0000\u0005!\u00050\b\b\r\b\u0000\u0002=\u0000\u0003\u0005!\u0005&\b\b\r\b\u0000\u0001o\u0000\u0000\u0005!\u0005\"\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\b\u0000\u0001m\u0000\u0000\u0005\"\u0005%\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0002=\u0000\u0003\u0005)\u0005.\b\b\r\b\u0000\u0001o\u0000\u0000\u0005)\u0005*\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\r\b\u0000\u0001m\u0000\u0000\u0005*\u0005-\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0004\u0000n\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\r\b\u0000\u0002r\u0000\u0000\u00055\u0005:\b\b\r\b\u0000\u0001m\u0000\u0000\u00055\u00058\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0004\u0000n\u0000o\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002F\u0000\u0000\u0005=\u0005P\b\b\r\b\u0000\u0002>\u0001\u0000\u0005=\u0005B\b\b\r\b\u0000\u0001o\u0000\u0000\u0005=\u0005>\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\b\u0000\u0001m\u0000\u0000\u0005>\u0005A\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0003I\u0000\u0000\u0005E\u0005N\b\u000b\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u0002\b\u0000\u0002\b\b\r\b\u0000\u0001o\u0000\u0000\u0005F\u0005G\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\b\u0000\u0002\b\r\b\u0000\u0001m\u0000\u0000\u0005G\u0005J\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0012\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\b\u0000\u0002\b\r\b\u0000\u0002r\u0000\u0000\u0005S\u0005X\b\b\r\b\u0000\u0001m\u0000\u0000\u0005S\u0005V\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0006\u0000y\u0000e\u0000s\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002r\u0000\u0000\u0005]\u0005b\b\b\r\b\u0000\u0003l\u0000\u0005\u0005]\u0005`\b\r\b\u0000\u0002c\u0000\u0000\u0005]\u0005`\b\b\r\b\u0000\u0001o\u0000\u0000\u0005]\u0005^\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\b\u0000\u0001m\u0000\u0000\u0005^\u0005_\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\b\u0000\u0002\b\b\r\b\u0000\u0004Z\u0000\u0001\u0005c\u0005w\b\b\r\b\u0000\u0002=\u0000\u0003\u0005c\u0005h\b\b\r\b\u0000\u0001o\u0000\u0000\u0005c\u0005d\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\r\b\u0000\u0001m\u0000\u0000\u0005d\u0005g\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0002r\u0000\u0000\u0005k\u0005s\b\b\r\b\u0000\u0002n\u0000\u0001\u0005k\u0005q\b\b\r\b\u0000\u0003I\u0000\u0000\u0005l\u0005q~\b}\u000b~\u0000\u001c0\u0000\fremindericon\u0000\freminderIcon\u0002\b\u0000\u0002\b|\r\b\u0000\u0001o\u0000\u0000\u0005l\u0005m{\u000b{\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002|\u0000\u0000\u0002}\u0000\u0000\r\b\u0000\u0000f\u0000\u0000\u0005k\u0005l\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u0002\u0000\u0000\u0001\u0000\u0000\u0002\b\u0000\u0002\by\r\b\u0000\u0001L\u0000\u0000\u0005x\u0005\b\r\b\u0000\u0001K\u0000\u0000\u0005x\u0005\b\u0006\b\u0000\u0003x\b\b\u000bx\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\b\u0000\u0001o\u0000\u0000\u0005{\u0005|w\u000bw\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0006\b\u0000\u0003v\b\b\u000bv\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\b\u0000\u0001o\u0000\u0000\u0005\u0005u\u000bu\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0006\b\u0000\u0003t\b\b\u000bt\u0000\t0\u0000\u0005valid\u0000\u0000\r\b\u0000\u0001o\u0000\u0000\u0005\u0005s\u000bs\u0000\t0\u0000\u0005valid\u0000\u0000\u0006\b\u0000\u0003r\b\b\u000br\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\b\u0000\u0001o\u0000\u0000\u0005\u0005q\u000bq\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0006\b\u0000\u0003p\b\b\u000bp\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\b\u0000\u0001o\u0000\u0000\u0005\u0005o\u000bo\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0006\b\u0000\u0003n\bm\u000bn\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\r\b\u0000\u0001o\u0000\u0000\u0005\u0005l\u000bl\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u0006m\u0000\u0000\u0002y\u0000\u0000\u0002\u0004\u0000\u0002\b\b\r\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\b\u0000\u0002\b\b\r\b\u0000\u0002i\u0000\u0000\u00017\u0001:\b\b\r\b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000h\bg\u000bh\u0000\u001c0\u0000\fremindericon\u0000\freminderIcon\u0002\b\u0000\u0002\bf\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002f\u0000\u0000\u0002g\u0000\u0000\r\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000)\b\bd\b\r\b\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\b\b\r\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001c\u000bc\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u0000\r\b\u0000\u0001L\u0000\u0000\u0000\u0006\u0000\b\b\r\b\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\b\u000e\b\u0000\u0001\b\u0011\b\u0000\u001a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0002d\u0000\u0000\r\b\u0000\u0001k\u0000\u0000\u0000\u000b\u0000)\b\u0002\b\u0000\u0002\b\t\u0000\r\b\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0018\t\u0001\t\u0002\r\t\u0001\u0000\u0002n\u0000\u0001\u0000\u000b\u0000\u0016\t\u0003\t\u0004\r\t\u0003\u0000\u0003I\u0000\u0000\u0000\f\u0000\u0016b\t\u0005a\u000bb\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\u0002\t\u0005\u0000\u0002\t\u0006\t\u0007\r\t\u0006\u0000\u0001o\u0000\u0000\u0000\f\u0000\r`\u000b`\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\t\u0007\u0000\u0002\t\b_\r\t\b\u0000\u0001o\u0000\u0000\u0000\r\u0000\u0012^\u000b^\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u0002_\u0000\u0000\u0002a\u0000\u0000\r\t\u0004\u0000\u0000f\u0000\u0000\u0000\u000b\u0000\f\r\t\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\u000b0\u0000\u0007appinfo\u0000\u0000\u0002\t\u0000\u0000\u0002\t\t\\\r\t\t\u0000\u0004Z\u0000\u0000\u0000\u0019\u0000)\t\n\t\u000b[\t\f\r\t\n\u0000\u0002>\u0001\u0000\u0000\u0019\u0000\u001c\t\r\t\u000e\r\t\r\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aZ\u000bZ\u0000\u000b0\u0000\u0007appinfo\u0000\u0000\r\t\u000e\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001bY\nY\u0000\u0004\nmsng\r\t\u000b\u0000\u0001L\u0000\u0000\u0000\u001f\u0000$\t\u000f\r\t\u000f\u0000\u0002n\u0000\u0003\u0000\u001f\u0000#\t\u0010\t\u0011\r\t\u0010\u0000\u0001o\u0000\u0000\u0000 \u0000\"X\u000bX\u0000\b0\u0000\u0004icon\u0000\u0000\r\t\u0011\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 W\u000bW\u0000\u000b0\u0000\u0007appinfo\u0000\u0000\u0002[\u0000\u0000\r\t\f\u0000\u0001L\u0000\u0000\u0000'\u0000)\t\u0012\r\t\u0012\u0000\u0001m\u0000\u0000\u0000'\u0000(\t\u0013\u000e\t\u0013\u0000\u0001\t\u0014\u0011\t\u0014\u0000\u001e\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000p\u0000n\u0000g\u0002\\\u0000\u0000\u0002\b\u0000\u0002\t\u0015\t\u0016\r\t\u0015\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000VUT\u0001V\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\t\u0016\u0000\u0002\t\u0017\t\u0018\r\t\u0017\u0000\u0002i\u0000\u0000\u0001;\u0001>\t\u0019\t\u001a\r\t\u0019\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000S\t\u001bR\u000bS\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u0002\t\u001b\u0000\u0002\t\u001c\t\u001d\r\t\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\t\u001d\u0000\u0002\t\u001e\t\u001f\r\t\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\t\u001f\u0000\u0002\t \t!\r\t \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\t!\u0000\u0002\t\"N\r\t\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002N\u0000\u0000\u0002R\u0000\u0000\r\t\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000n\t#\u0002\t#\u0000\u0002\t$\t%\r\t$\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\t&\t'LK\r\t&\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0010\t(\t)\r\t(\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0003\t*\t+\r\t*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001J\u000bJ\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\t+\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\t,\u000e\t,\u0000\u0001\t-\u0011\t-\u0000\u0000\r\t)\u0000\u0001H\u0000\u0000\u0000\u0006\u0000\u000e\t.\r\t.\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\rI\t\/H\u000bI\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u0002\t\/\u0000\u0002\t0\t1\r\t0\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bG\u000bG\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\t1\u0000\u0002\t2F\r\t2\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\t3\u000e\t3\u0000\u0001\t4\u0011\t4\u0000\u0012\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002F\u0000\u0000\u0002H\u0000\u0000\r\t'\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0017\t5\r\t5\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u0016\t6\t7\r\t6\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014E\u000bE\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\t7\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\t8\u000e\t8\u0000\u0001\t9\u0011\t9\u0000X\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0002L\u0000\u0000\u0001K\u0000\u0000\u0002\t%\u0000\u0002\t:\t;\r\t:\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001cDCB\u0001D\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0002\t;\u0000\u0002\t<\t=\r\t<\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\u001f\t>\t?\r\t>\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\t@\u000e\t@\u0000\u0001\tA\u0011\tA\u0000*\u0000C\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\r\t?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\t=\u0000\u0002\tB\tC\r\tB\u0000\u0004Z\u0000\u0001\u0000 \u00001\tD\tE@?\r\tD\u0000\u0002>\u0001\u0000\u0000 \u0000#\tF\tG\r\tF\u0000\u0001o\u0000\u0000\u0000 \u0000!>\u000b>\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\tG\u0000\u0001m\u0000\u0000\u0000!\u0000\"\tH\u000e\tH\u0000\u0001\tI\u0011\tI\u0000\u0000\r\tE\u0000\u0002r\u0000\u0000\u0000&\u0000-\tJ\tK\r\tJ\u0000\u0002b\u0000\u0000\u0000&\u0000+\tL\tM\r\tL\u0000\u0002b\u0000\u0000\u0000&\u0000)\tN\tO\r\tN\u0000\u0001o\u0000\u0000\u0000&\u0000'=\u000b=\u0000\f0\u0000\bsubtitle\u0000\u0000\r\tO\u0000\u0001m\u0000\u0000\u0000'\u0000(\tP\u000e\tP\u0000\u0001\tQ\u0011\tQ\u0000\f\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \r\tM\u0000\u0001o\u0000\u0000\u0000)\u0000*<\u000b<\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\tK\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002@\u0000\u0000\u0001?\u0000\u0000\u0002\tC\u0000\u0002\tR\tS\r\tR\u0000\u0004Z\u0000\u0001\u00002\u0000C\tT\tU:9\r\tT\u0000\u0002>\u0001\u0000\u00002\u00005\tV\tW\r\tV\u0000\u0001o\u0000\u0000\u00002\u000038\u000b8\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\tW\u0000\u0001m\u0000\u0000\u00003\u00004\tX\u000e\tX\u0000\u0001\tY\u0011\tY\u0000\u0000\r\tU\u0000\u0002r\u0000\u0000\u00008\u0000?\tZ\t[\r\tZ\u0000\u0002b\u0000\u0000\u00008\u0000=\t\\\t]\r\t\\\u0000\u0002b\u0000\u0000\u00008\u0000;\t^\t_\r\t^\u0000\u0001o\u0000\u0000\u00008\u000097\u000b7\u0000\f0\u0000\bsubtitle\u0000\u0000\r\t_\u0000\u0001m\u0000\u0000\u00009\u0000:\t`\u000e\t`\u0000\u0001\ta\u0011\ta\u0000\b\u0000 \u0000t\u0000o\u0000 \r\t]\u0000\u0001o\u0000\u0000\u0000;\u0000<6\u000b6\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\t[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002:\u0000\u0000\u00019\u0000\u0000\u0002\tS\u0000\u0002\tb\tc\r\tb\u0000\u0004Z\u0000\u0001\u0000D\u0000W\td\te43\r\td\u0000\u0002>\u0001\u0000\u0000D\u0000G\tf\tg\r\tf\u0000\u0001o\u0000\u0000\u0000D\u0000E2\u000b2\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\tg\u0000\u0001m\u0000\u0000\u0000E\u0000F\th\u000e\th\u0000\u0001\ti\u0011\ti\u0000\u0000\r\te\u0000\u0002r\u0000\u0000\u0000J\u0000S\tj\tk\r\tj\u0000\u0002b\u0000\u0000\u0000J\u0000Q\tl\tm\r\tl\u0000\u0002b\u0000\u0000\u0000J\u0000M\tn\to\r\tn\u0000\u0001o\u0000\u0000\u0000J\u0000K1\u000b1\u0000\f0\u0000\bsubtitle\u0000\u0000\r\to\u0000\u0001m\u0000\u0000\u0000K\u0000L\tp\u000e\tp\u0000\u0001\tq\u0011\tq\u0000\b\u0000 \u0000o\u0000n\u0000 \r\tm\u0000\u0003l\u0000\u0005\u0000M\u0000P\tr0\/\r\tr\u0000\u0002c\u0000\u0000\u0000M\u0000P\ts\tt\r\ts\u0000\u0001o\u0000\u0000\u0000M\u0000N.\u000b.\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\tt\u0000\u0001m\u0000\u0000\u0000N\u0000O-\n-\u0000\u0004\nTEXT\u00010\u0000\u0000\u0001\/\u0000\u0000\r\tk\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\f0\u0000\bsubtitle\u0000\u0000\u00024\u0000\u0000\u00013\u0000\u0000\u0002\tc\u0000\u0002\tu\tv\r\tu\u0000\u0004Z\u0000\u0001\u0000X\u0000k\tw\tx+*\r\tw\u0000\u0002>\u0001\u0000\u0000X\u0000[\ty\tz\r\ty\u0000\u0001o\u0000\u0000\u0000X\u0000Y)\u000b)\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\tz\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\t{\u000e\t{\u0000\u0001\t|\u0011\t|\u0000\u0000\r\tx\u0000\u0002r\u0000\u0000\u0000^\u0000g\t}\t~\r\t}\u0000\u0002b\u0000\u0000\u0000^\u0000e\t\t\r\t\u0000\u0002b\u0000\u0000\u0000^\u0000a\t\t\r\t\u0000\u0001o\u0000\u0000\u0000^\u0000_(\u000b(\u0000\f0\u0000\bsubtitle\u0000\u0000\r\t\u0000\u0001m\u0000\u0000\u0000_\u0000`\t\u000e\t\u0000\u0001\t\u0011\t\u0000\b\u0000 \u0000i\u0000n\u0000 \r\t\u0000\u0002n\u0000\u0000\u0000a\u0000d\t\t\r\t\u0000\u00011\u0000\u0000\u0000b\u0000d'\n'\u0000\u0004\nstrq\r\t\u0000\u0001o\u0000\u0000\u0000a\u0000b&\u000b&\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\t~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002+\u0000\u0000\u0001*\u0000\u0000\u0002\tv\u0000\u0002\t$\r\t\u0000\u0001L\u0000\u0000\u0000l\u0000n\t\r\t\u0000\u0001o\u0000\u0000\u0000l\u0000m#\u000b#\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002$\u0000\u0000\u0002\t\u0018\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\"! \u0001\"\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002i\u0000\u0000\u0001?\u0001B\t\t\r\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u001e\u001d\u000b\u001f\u0000\u001c0\u0000\freminderhelp\u0000\freminderHelp\u0002\u001e\u0000\u0000\u0002\u001d\u0000\u0000\r\t\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\t\u0002\t\u0000\u0002\t\t\r\t\u0000\u0002r\u0000\u0000\u0000\u0000\u0000X\t\t\r\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0000V\t\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\t\u0000\u0000\u0000\u000b\t\u001c\u001b\r\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u000b\u001a\t\u0019\u000b\u001a\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001e\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000-\u0000h\u0000e\u0000l\u0000p\u0000-\u00001\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\t\u000e\t\u0000\u0001\t\u0011\t\u0000\n\u0000r\u0000 \u0000a\u0000l\u0000l\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\t\u000e\t\u0000\u0001\t\u0011\t\u0000<\u0000S\u0000h\u0000o\u0000w\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000u\u0000t\u0000s\u0000t\u0000a\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0006\u0000a\u0000l\u0000l\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0004\u0000n\u0000o\u0002\t\u0000\u0002\t\u0018\r\t\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0016\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\t\u0000\u000b\u0000\u0016\t\u0017\u0016\r\t\u0000\u0003I\u0000\u0000\u0000\u000b\u0000\u0016\u0015\t\u0014\u000b\u0015\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001e\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000-\u0000h\u0000e\u0000l\u0000p\u0000-\u00002\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0012\u0000r\u0000 \u0000r\u0000e\u0000f\u0000r\u0000e\u0000s\u0000h\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\t\u000e\t\u0000\u0001\t\u0011\t\u0000:\u0000R\u0000e\u0000f\u0000r\u0000e\u0000s\u0000h\u0000 \u0000o\u0000u\u0000t\u0000s\u0000t\u0000a\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000r\u0000e\u0000f\u0000r\u0000e\u0000s\u0000h\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0004\u0000n\u0000o\u0002\t\u0000\u0002\t\u0013\r\t\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0016\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0002\u0013\u0000\u0000\u0002\u0014\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003l\u0000\t\u0000\u0016\u0000)\t\u0012\u0011\r\t\u0000\u0003I\u0000\u0000\u0000\u0016\u0000)\u0010\t\u000f\u000b\u0010\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001e\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000-\u0000h\u0000e\u0000l\u0000p\u0000-\u00003\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0012\u0000r\u0000 \u0000o\u0000v\u0000e\u0000r\u0000d\u0000u\u0000e\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001c\t\u000e\t\u0000\u0001\t\u0011\t\u0000,\u0000S\u0000h\u0000o\u0000w\u0000 \u0000o\u0000v\u0000e\u0000r\u0000d\u0000u\u0000e\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001f\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u000e\u0000o\u0000v\u0000e\u0000r\u0000d\u0000u\u0000e\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000\u001f\u0000\"\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0004\u0000n\u0000o\u0002\t\u0000\u0002\t\u000e\r\t\u0000\u0001m\u0000\u0000\u0000\"\u0000%\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0016\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0002\u000e\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\t\u0000\u0002\t\r\r\t\u0000\u0003l\u0000\t\u0000)\u0000R\t\f\u000b\r\t\u0000\u0003l\u0000\n\u0000)\u0000R\t\n\t\r\t\u0000\u0003I\u0000\u0000\u0000)\u0000R\b\t\u0007\u000b\b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000*\u0000-\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u001e\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000-\u0000h\u0000e\u0000l\u0000p\u0000-\u00004\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u0000-\u00000\t\u000e\t\u0000\u0001\t\u0011\t\u0000\f\u0000r\u0000 \u0000t\u0000h\u0000i\u0000s\u0002\t\u0000\u0002\t\t\r\t\u0000\u0003I\u0000\u0000\u00000\u0000E\u0006\t\u0005\u000b\u0006\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u00001\u00004\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u00004\u00007\t\u000e\t\u0000\u0001\t\u0011\t\u0000\u0000\u0002\t\u0000\u0002\t\t\r\t\u0000\u0001m\u0000\u0000\u00007\u0000:\t\u000e\t\u0000\u0001\n\u0000\u0011\n\u0000\u0000\u0000\u0002\t\u0000\u0002\n\u0001\u0004\r\n\u0001\u0000\u0002n\u0000\u0001\u0000:\u0000?\n\u0002\n\u0003\r\n\u0002\u0000\u0003I\u0000\u0000\u0000;\u0000?\u0003\u0002\u0001\u000b\u0003\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0001\u0000\u0000\r\n\u0003\u0000\u0000f\u0000\u0000\u0000:\u0000;\u0002\u0004\u0000\u0000\u0002\u0005\u0000\u0000\u0002\t\u0000\u0002\n\u0004\n\u0005\r\n\u0004\u0000\u0001m\u0000\u0000\u0000E\u0000H\n\u0006\u000e\n\u0006\u0000\u0001\n\u0007\u0011\n\u0007\u0000\b\u0000t\u0000h\u0000i\u0000s\u0002\n\u0005\u0000\u0002\n\b\n\t\r\n\b\u0000\u0001m\u0000\u0000\u0000H\u0000K\n\n\u000e\n\n\u0000\u0001\n\u000b\u0011\n\u000b\u0000\u0004\u0000n\u0000o\u0002\n\t\u0000\u0002\n\f\u0000\r\n\f\u0000\u0001m\u0000\u0000\u0000K\u0000N\n\r\u000e\n\r\u0000\u0001\n\u000e\u0011\n\u000e\u0000\u000e\u0000A\u0000p\u0000p\u0000.\u0000p\u0000n\u0000g\u0002\u0000\u0000\u0000\u0002\u0007\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\r\u0000\u0000\r\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\t\u0000\u0002\n\u000f\n\u0010\r\n\u000f\u0000\u0002r\u0000\u0000\u0000Y\u0000^\n\u0011\n\u0012\r\n\u0011\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u0003\u0000\u0005\r\n\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\n\u0010\u0000\u0002\n\u0013\n\u0014\r\n\u0013\u0000\u0003X\u0000\u0000\u0000_\u0000\n\u0015\n\u0016\r\n\u0015\u0000\u0001k\u0000\u0000\u0000w\u0000\n\u0017\u0002\n\u0017\u0000\u0002\n\u0018\n\u0019\r\n\u0018\u0000\u0002r\u0000\u0000\u0000w\u0000\n\u001a\n\u001b\r\n\u001a\u0000\u0002n\u0000\u0001\u0000w\u0000}\n\u001c\n\u001d\r\n\u001c\u0000\u0003I\u0000\u0000\u0000x\u0000}\n\u001e\u000b\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u0002\n\u001e\u0000\u0002\n\u001f\r\n\u001f\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00140\u0000\bhelpitem\u0000\bhelpItem\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u001d\u0000\u0000f\u0000\u0000\u0000w\u0000x\r\n\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0002\n\u0019\u0000\u0002\n \n!\r\n \u0000\u0002r\u0000\u0000\u0000\u0000\n\"\n#\r\n\"\u0000\u0002n\u0000\u0001\u0000\u0000\n$\n%\r\n$\u0000\u0003I\u0000\u0000\u0000\u0000\n&\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\n&\u0000\u0002\n'\n(\r\n'\u0000\u0002b\u0000\u0000\u0000\u0000\n)\n*\r\n)\u0000\u0001m\u0000\u0000\u0000\u0000\n+\u000e\n+\u0000\u0001\n,\u0011\n,\u0000\u001c\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000-\u0000h\u0000e\u0000l\u0000p\u0000-\r\n*\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\n(\u0000\u0002\n-\n.\r\n-\u0000\u0002b\u0000\u0000\u0000\u0000\n\/\n0\r\n\/\u0000\u0003l\u0000\t\u0000\u0000\n1\r\n1\u0000\u0001m\u0000\u0000\u0000\u0000\n2\u000e\n2\u0000\u0001\n3\u0011\n3\u0000\u0004\u0000r\u0000 \u0001\u0000\u0000\u0001\u0000\u0000\r\n0\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bhelpitem\u0000\bhelpItem\u0002\n.\u0000\u0002\n4\n5\r\n4\u0000\u0003l\u0000\t\u0000\u0000\n6\r\n6\u0000\u0003I\u0000\u0000\u0000\u0000\n7\u000b\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u0002\n7\u0000\u0002\n8\n9\r\n8\u0000\u0002n\u0000\u0000\u0000\u0000\n:\n;\r\n:\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\n;\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0002\n9\u0000\u0002\n<\n=\r\n<\u0000\u0002n\u0000\u0000\u0000\u0000\n>\n?\r\n>\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\n?\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0002\n=\u0000\u0002\n@\nA\r\n@\u0000\u0002n\u0000\u0000\u0000\u0000\nB\nC\r\nB\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\nC\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0002\nA\u0000\u0002\nD\r\nD\u0000\u0002n\u0000\u0000\u0000\u0000\nE\nF\r\nE\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\nF\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n5\u0000\u0002\nG\nH\r\nG\u0000\u0003l\u0000\t\u0000\u0000\nI\r\nI\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bhelpitem\u0000\bhelpItem\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nH\u0000\u0002\nJ\nK\r\nJ\u0000\u0003l\u0000\t\u0000\u0000\nL\r\nL\u0000\u0001m\u0000\u0000\u0000\u0000\nM\u000e\nM\u0000\u0001\nN\u0011\nN\u0000\u0004\u0000n\u0000o\u0001\u0000\u0000\u0001\u0000\u0000\u0002\nK\u0000\u0002\nO\r\nO\u0000\u0003l\u0000\t\u0000\u0000\nP\r\nP\u0000\u0001m\u0000\u0000\u0000\u0000\nQ\u000e\nQ\u0000\u0001\nR\u0011\nR\u0000\u001a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000c\u0000k\u0000e\u0000d\u0000.\u0000p\u0000n\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\n%\u0000\u0000f\u0000\u0000\u0000\u0000\r\n#\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\nS\nT\r\nS\u0000\u0000;\u0000\u0000\u0000\u0000\r\nT\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\n!\u0000\u0002\nU\r\nU\u0000\u0002r\u0000\u0000\u0000\u0000\nV\nW\r\nV\u0000\u0002[\u0000\u0000\u0000\u0000\nX\nY\r\nX\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\nY\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\nW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00140\u0000\bhelpitem\u0000\bhelpItem\r\n\u0016\u0000\u0001o\u0000\u0000\u0000b\u0000g\u000b\u0000&0\u0000\u0011reminderhelpitems\u0000\u0011reminderHelpItems\u0002\n\u0014\u0000\u0002\nZ\r\nZ\u0000\u0001L\u0000\u0000\u0000\u0000\n[\r\n[\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\t\u0000\u0002\n\\\n]\r\n\\\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\n]\u0000\u0002\n^\n_\r\n^\u0000\u0002i\u0000\u0000\u0001C\u0001F\n`\na\r\n`\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\nb\u000b\u0000*0\u0000\u0013actionreminderquery\u0000\u0013actionReminderQuery\u0002\nb\u0000\u0002\nc\nd\r\nc\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\nd\u0000\u0002\ne\nf\r\ne\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nshouldopen\u0000\nshouldOpen\u0002\nf\u0000\u0002\ng\nh\r\ng\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006applib\u0000\u0006appLib\u0002\nh\u0000\u0002\ni\nj\r\ni\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\nj\u0000\u0002\nk\nl\r\nk\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\nl\u0000\u0002\nm\r\nm\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bdefaultlist\u0000\u000bdefaultList\u0002\u0000\u0000\u0002\u0000\u0000\r\na\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0010\nn\u0002\nn\u0000\u0002\no\np\r\no\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001f\nq\nr\ns\r\nq\u0000\u0002C\u0000\u0000\u0000\u0000\u0000\u0003\nt\nu\r\nt\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\nu\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\nv\u000e\nv\u0000\u0001\nw\u0011\nw\u0000\u000e\u0000#\u0000#\u0000D\u0000E\u0000L\u0000#\u0000#\r\nr\u0000\u0001k\u0000\u0000\u0000\u0006\u0000\u0019\nx\u0002\nx\u0000\u0002\ny\nz\r\ny\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u0015\n{\n|\r\n{\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\u0013\n}\n~\r\n}\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\u0011\n\r\n\u0000\u0002n\u0000\u0000\u0000\u0006\u0000\u0011\n\n\r\n\u0000\u00037\u0001\u0000\u0000\u0007\u0000\u0011\n\n\n\u0000\u0004\ncha \r\n\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\r\u0003\u0000\b\r\n\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u0010\u0003\r\n\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\n~\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\u0004\nTEXT\r\n|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\nz\u0000\u0002\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u0019\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\b\u000bboovtrue\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fshoulddelete\u0000\fshouldDelete\u0002\u0000\u0000\u0002\u0000\u0000\r\ns\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\u001f\n\n\r\n\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fshoulddelete\u0000\fshouldDelete\u0002\np\u0000\u0002\n\n\r\n\u0000\u0004Z\u0000\u0000\u0000 \u0002\r\n\n\n\r\n\u0000\u0002C\u0000\u0000\u0000 \u0000#\n\n\r\n\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\n\u000e\n\u0000\u0001\n\u0011\n\u0000\b\u0000u\u0000i\u0000d\u0000:\r\n\u0000\u0001k\u0000\u0000\u0000&\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000&\u00005\n\n\r\n\u0000\u0002c\u0000\u0000\u0000&\u00003\n\n\r\n\u0000\u0003l\u0000\u0005\u0000&\u00001\n\r\n\u0000\u0002n\u0000\u0000\u0000&\u00001\n\n\r\n\u0000\u00037\u0001\u0000\u0000'\u00001\n\n\n\u0000\u0004\ncha \r\n\u0000\u0001m\u0000\u0000\u0000+\u0000-\u0003\u0000\u0005\r\n\u0000\u0001m\u0000\u0000\u0000.\u00000\u0003\r\n\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\n\u0000\u0001m\u0000\u0000\u00001\u00002\n\u0000\u0004\nTEXT\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u0002\n\u0000\u0002\n\r\n\u0000\u0003Q\u0000\u0000\u00006\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u00009\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002O\u0000\u0000\u00009\u0000\n\n\r\n\u0000\u0002w\u0000\u0000\u0000A\u0000\n\n\r\n\u0000\u0001k\u0000\u0000\u0000C\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000C\u0000T\n\n\r\n\u0000\u0003l\u0000\u0005\u0000C\u0000R\n\r\n\u0000\u0002n\u0000\u0000\u0000C\u0000R\n\n\r\n\u0000\u00024\u0000\u0001\u0000O\u0000R\n\n\u0000\u0004\ncobj\r\n\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\u0001\r\n\u0000\u0003l\u0000\u0005\u0000C\u0000O\n\r\n\u0000\u00026\u0001\u0000\u0000C\u0000O\n\n\r\n\u0000\u00012\u0000\u0000\u0000C\u0000F\n\u0000\u0004\nremi\r\n\u0000\u0002=\u0000\u0003\u0000G\u0000N\n\n\r\n\u0000\u00011\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nID \r\n\u0000\u0001o\u0000\u0000\u0000K\u0000M\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000U\u0000Z\n\n\r\n\u0000\u0002n\u0000\u0000\u0000U\u0000X\n\n\r\n\u0000\u00011\u0000\u0000\u0000V\u0000X\n\u0000\u0004\npnam\r\n\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\n\u0000\u0002\n\r\n\u0000\u0004Z\u0000\u0000\u0000[\u0000\n\n\n\n\r\n\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u000b\u0000\u001c0\u0000\fshoulddelete\u0000\fshouldDelete\r\n\u0000\u0001k\u0000\u0000\u0000_\u0000l\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003I\u0000\u0002\u0000_\u0000d\n\n\u0000\u0018.coredelonull\u0000\u0000\u0000\u0000\u0000obj \r\n\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u0002\u0000\u0000\u0002\n\u0000\u0002\n\r\n\u0000\u0002r\u0000\u0000\u0000e\u0000l\n\n\r\n\u0000\u0002b\u0000\u0000\u0000e\u0000j\n\n\r\n\u0000\u0001m\u0000\u0000\u0000e\u0000h\n\u000e\n\u0000\u0001\n\u0011\n\u0000$\u0000D\u0000e\u0000l\u0000e\u0000t\u0000e\u0000d\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000 \r\n\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0001H\u0000\u0000\u0000o\u0000q\n\r\n\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\u00180\u0000\nshouldopen\u0000\nshouldOpen\u0002\n\u0000\u0002\n\r\n\u0000\u0001k\u0000\u0000\u0000t\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000t\u0000{\n\n\r\n\u0000\u0001m\u0000\u0000\u0000t\u0000u\n\u0000\b\u000bboovtrue\r\n\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\n\n\r\n\u0000\u00011\u0000\u0000\u0000v\u0000z\n\u0000\u0004\ncomb\r\n\u0000\u0001o\u0000\u0000\u0000u\u0000v\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u0002\n\u0000\u0002\n\r\n\u0000\u0002r\u0000\u0000\u0000|\u0000\n\n\r\n\u0000\u0002b\u0000\u0000\u0000|\u0000\n\n\r\n\u0000\u0001m\u0000\u0000\u0000|\u0000\n\u000e\n\u0000\u0001\n\u0011\n\u0000(\u0000C\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000d\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000 \r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0001k\u0000\u0000\u0000\u0000\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\n\u0000\u0002\n\r\n\u0000\u0003I\u0000\u0002\u0000\u0000\n\n\u0000\u0018.remishownull\u0000\u0000\u0000\u0000\u0000****\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000f\n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rmnd\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001X\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\rReminders.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?<\u036d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u036d{\u0000\u0000\u0000\u0001\u0000\u0004\u0001;\u0000\u0002\u0000(Macintosh HD:Applications:\u0000Reminders.app\u0000\u000e\u0000\u001c\u0000\r\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001aApplications\/Reminders.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\n\u0000\u00035\u0000\u0000\u00009\u0000>\n\n\u0000\u0004\ncapp\r\n\u0000\u0001m\u0000\u0000\u0000;\u0000<\n\u000e\n\u0000\u0001\n\u0011\n\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\n\u0000\b\u000bkfrmID \u0002\n\u0000\u0002\n\r\n\u0000\u0002n\u0000\u0001\u0000\u0000\n\n\r\n\u0000\u0003I\u0000\u0000\u0000\u0000\n\u000b\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0002\n\u0000\u0002\n\n\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\n\u0000\u0002\n\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000~\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002~\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\n\u0000\u0001k\u0000\u0000\u0000\u0002\r\n\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0000\n\n\r\n\u0000\u0002n\u0000\u0001\u0000\u0000\n\n\r\n\u0000\u0003I\u0000\u0000\u0000\u0000}\n|\u000b}\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u0002\n\u0000\u0002\n{\r\n\u0000\u0001o\u0000\u0000\u0000\u0000z\u000bz\u0000\u00050\u0000\u0001q\u0000\u0000\u0002{\u0000\u0000\u0002|\u0000\u0000\r\n\u0000\u0000f\u0000\u0000\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000y\u000by\u0000\f0\u0000\breminder\u0000\u0000\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0000\n\n\r\n\u0000\u0002n\u0000\u0000\u0000\u0000\n\n\r\n\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\n\u0000\u0001o\u0000\u0000\u0000\u0000w\u000bw\u0000\f0\u0000\breminder\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\n\u0000\u0002\n\n\r\n\u0000\u0002r\u0000\u0000\u0000\u0000\n\n\r\n\u0000\u0002n\u0000\u0000\u0000\u0000\u000b\u0000\u000b\u0001\r\u000b\u0000\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u000b\u0001\u0000\u0001o\u0000\u0000\u0000\u0000t\u000bt\u0000\f0\u0000\breminder\u0000\u0000\r\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\n\u0000\u0002\u000b\u0002\u000b\u0003\r\u000b\u0002\u0000\u0002r\u0000\u0000\u0000\u0000\u000b\u0004\u000b\u0005\r\u000b\u0004\u0000\u0002n\u0000\u0000\u0000\u0000\u000b\u0006\u000b\u0007\r\u000b\u0006\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\u000b\u0007\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\f0\u0000\breminder\u0000\u0000\r\u000b\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u000b\u0003\u0000\u0002\u000b\b\u000b\t\r\u000b\b\u0000\u0002r\u0000\u0000\u0000\u0000\u000b\n\u000b\u000b\r\u000b\n\u0000\u0002n\u0000\u0000\u0000\u0000\u000b\f\u000b\r\r\u000b\f\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005valid\u0000\u0000\r\u000b\r\u0000\u0001o\u0000\u0000\u0000\u0000n\u000bn\u0000\f0\u0000\breminder\u0000\u0000\r\u000b\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u000b\t\u0000\u0002\u000b\u000e\u000b\u000f\r\u000b\u000e\u0000\u0002r\u0000\u0000\u0000\u0000\u000b\u0010\u000b\u0011\r\u000b\u0010\u0000\u0002n\u0000\u0000\u0000\u0000\u000b\u0012\u000b\u0013\r\u000b\u0012\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\r\u000b\u0013\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\f0\u0000\breminder\u0000\u0000\r\u000b\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000\u000e0\u0000\u0005rlist\u0000\u0005rList\u0002\u000b\u000f\u0000\u0002\u000b\u0014\u000b\u0015\r\u000b\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u000b\u0016\u000b\u0017\r\u000b\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\u0018\u000e\u000b\u0018\u0000\u0001\u000b\u0019\u0011\u000b\u0019\u0000\u0000\r\u000b\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\u0002\u000b\u0015\u0000\u0002\u000b\u001a\u000b\u001b\r\u000b\u001a\u0000\u0003l\u0000\u0002\u0000\u0000hgf\u0001h\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0002\u000b\u001b\u0000\u0002\u000b\u001c\u000b\u001d\r\u000b\u001c\u0000\u0004Z\u0000\u0001\u0000\u0000\u000b\u001e\u000b\u001fed\r\u000b\u001e\u0000\u0002>\u0001\u0000\u0000\u0000\u000b \u000b!\r\u000b \u0000\u0001o\u0000\u0000\u0000\u0000c\u000bc\u0000\t0\u0000\u0005valid\u0000\u0000\r\u000b!\u0000\u0001m\u0000\u0000\u0000\u0000\u000b\"\u000e\u000b\"\u0000\u0001\u000b#\u0011\u000b#\u0000\u0006\u0000y\u0000e\u0000s\r\u000b\u001f\u0000\u0001L\u0000\u0000\u0000\u0000\u000b$\r\u000b$\u0000\u0002b\u0000\u0000\u0000\u0000\u000b%\u000b&\r\u000b%\u0000\u0002b\u0000\u0000\u0000\u0000\u000b'\u000b(\r\u000b'\u0000\u0001m\u0000\u0000\u0000\u0000\u000b)\u000e\u000b)\u0000\u0001\u000b*\u0011\u000b*\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000u\u0000n\u0000d\u0000e\u0000r\u0000s\u0000t\u0000a\u0000n\u0000d\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000\"\r\u000b(\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00050\u0000\u0001q\u0000\u0000\r\u000b&\u0000\u0001m\u0000\u0000\u0000\u0000\u000b+\u000e\u000b+\u0000\u0001\u000b,\u0011\u000b,\u0000\u0002\u0000\"\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u000b\u001d\u0000\u0002\u000b-\u000b.\r\u000b-\u0000\u0003l\u0000\u0002\u0000\u0000a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002\u000b.\u0000\u0002\u000b\/\u000b0\r\u000b\/\u0000\u0004Z\u0000\u0000\u0000\u0001O\u000b1\u000b2\u000b3^\r\u000b1\u0000\u0002F\u0000\u0000\u0000\u0001\u000b\u000b4\u000b5\r\u000b4\u0000\u0002>\u0001\u0000\u0000\u0000\u000b6\u000b7\r\u000b6\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\u000b7\u0000\u0001m\u0000\u0000\u0000\u0000\u000b8\u000e\u000b8\u0000\u0001\u000b9\u0011\u000b9\u0000\u0000\r\u000b5\u0000\u0003I\u0000\u0000\u0000\u0001\u0007\\\u000b:[\u000b\\\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u0002\u000b:\u0000\u0002\u000b;\u000b<\r\u000b;\u0000\u0001o\u0000\u0000\u0000\u0001\u0000Z\u000bZ\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u000b<\u0000\u0002\u000b=Y\r\u000b=\u0000\u0001m\u0000\u0000\u0001\u0000\u0001\u0003\u000b>\u000e\u000b>\u0000\u0001\u000b?\u0011\u000b?\u0000\u0012\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0002Y\u0000\u0000\u0002[\u0000\u0000\r\u000b2\u0000\u0001k\u0000\u0000\u0001\u000e\u0001:\u000b@\u0002\u000b@\u0000\u0002\u000bA\u000bB\r\u000bA\u0000\u0002r\u0000\u0000\u0001\u000e\u0001\u0018\u000bC\u000bD\r\u000bC\u0000\u0002n\u0000\u0003\u0001\u000e\u0001\u0014\u000bE\u000bF\r\u000bE\u0000\u0003I\u0000\u0000\u0001\u000f\u0001\u0014X\u000bGW\u000bX\u000020\u0000\u0017reminderfromapplication\u0000\u0017reminderFromApplication\u0002\u000bG\u0000\u0002\u000bHV\r\u000bH\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010U\u000bU\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002V\u0000\u0000\u0002W\u0000\u0000\r\u000bF\u0000\u0001o\u0000\u0000\u0001\u000e\u0001\u000fT\u000bT\u0000\u00100\u0000\u0006applib\u0000\u0006appLib\r\u000bD\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000 0\u0000\u000etheappreminder\u0000\u000etheAppReminder\u0002\u000bB\u0000\u0002\u000bI\u000bJ\r\u000bI\u0000\u0004Z\u0000\u0000\u0001\u0019\u0001.\u000bK\u000bLRQ\r\u000bK\u0000\u0002=\u0000\u0003\u0001\u0019\u0001\u001e\u000bM\u000bN\r\u000bM\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001aP\u000bP\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u000bN\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u000bO\u000e\u000bO\u0000\u0001\u000bP\u0011\u000bP\u0000\u0000\r\u000bL\u0000\u0002r\u0000\u0000\u0001!\u0001*\u000bQ\u000bR\r\u000bQ\u0000\u0002n\u0000\u0000\u0001!\u0001(\u000bS\u000bT\r\u000bS\u0000\u0001o\u0000\u0000\u0001$\u0001(O\u000bO\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u000bT\u0000\u0001o\u0000\u0000\u0001!\u0001$N\u000bN\u0000 0\u0000\u000etheappreminder\u0000\u000etheAppReminder\r\u000bR\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002R\u0000\u0000\u0001Q\u0000\u0000\u0002\u000bJ\u0000\u0002\u000bUL\r\u000bU\u0000\u0002r\u0000\u0000\u0001\/\u0001:\u000bV\u000bW\r\u000bV\u0000\u0002n\u0000\u0000\u0001\/\u00016\u000bX\u000bY\r\u000bX\u0000\u0001o\u0000\u0000\u00012\u00016K\u000bK\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\r\u000bY\u0000\u0001o\u0000\u0000\u0001\/\u00012J\u000bJ\u0000 0\u0000\u000etheappreminder\u0000\u000etheAppReminder\r\u000bW\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\u0002L\u0000\u0000\u0002\u000b3\u0000\u0002\u000bZ\u000b[\r\u000bZ\u0000\u0002>\u0001\u0000\u0001=\u0001B\u000b\\\u000b]\r\u000b\\\u0000\u0001o\u0000\u0000\u0001=\u0001>H\u000bH\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\u000b]\u0000\u0001m\u0000\u0000\u0001>\u0001A\u000b^\u000e\u000b^\u0000\u0001\u000b_\u0011\u000b_\u0000\u0000\u0002\u000b[\u0000\u0002\u000b`G\r\u000b`\u0000\u0001L\u0000\u0000\u0001E\u0001K\u000ba\r\u000ba\u0000\u0002b\u0000\u0000\u0001E\u0001J\u000bb\u000bc\r\u000bb\u0000\u0001o\u0000\u0000\u0001E\u0001FF\u000bF\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\r\u000bc\u0000\u0001m\u0000\u0000\u0001F\u0001I\u000bd\u000e\u000bd\u0000\u0001\u000be\u0011\u000be\u0000X\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0002G\u0000\u0000\u0001^\u0000\u0000\u0002\u000b0\u0000\u0002\u000bf\u000bg\r\u000bf\u0000\u0003l\u0000\u0002\u0001P\u0001PEDC\u0001E\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u000bg\u0000\u0002\u000bh\u000bi\r\u000bh\u0000\u0002O\u0000\u0000\u0001P\u0001\u000bj\u000bk\r\u000bj\u0000\u0002w\u0000\u0000\u0001Z\u0001\u000bl\u000bm\r\u000bl\u0000\u0001k\u0000\u0000\u0001\\\u0001\u000bn\u0002\u000bn\u0000\u0002\u000bo\u000bp\r\u000bo\u0000\u0004Z\u0000\u0000\u0001\\\u0001\u000bq\u000br\u000bs\u000bt\r\u000bq\u0000\u0002>\u0001\u0000\u0001\\\u0001a\u000bu\u000bv\r\u000bu\u0000\u0001o\u0000\u0000\u0001\\\u0001]B\u000bB\u0000\u000e0\u0000\u0005rlist\u0000\u0005rList\r\u000bv\u0000\u0001m\u0000\u0000\u0001]\u0001`\u000bw\u000e\u000bw\u0000\u0001\u000bx\u0011\u000bx\u0000\u0000\r\u000br\u0000\u0002r\u0000\u0000\u0001d\u0001i\u000by\u000bz\r\u000by\u0000\u0001o\u0000\u0000\u0001d\u0001eA\u000bA\u0000\u000e0\u0000\u0005rlist\u0000\u0005rList\r\u000bz\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u000bs\u0000\u0002\u000b{\u000b|\r\u000b{\u0000\u0002>\u0001\u0000\u0001l\u0001q\u000b}\u000b~\r\u000b}\u0000\u0001o\u0000\u0000\u0001l\u0001m?\u000b?\u0000\u001a0\u0000\u000bdefaultlist\u0000\u000bdefaultList\r\u000b~\u0000\u0001m\u0000\u0000\u0001m\u0001p\u000b\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000\u0002\u000b|\u0000\u0002\u000b>\r\u000b\u0000\u0002r\u0000\u0000\u0001t\u0001y\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0001t\u0001u=\u000b=\u0000\u001a0\u0000\u000bdefaultlist\u0000\u000bdefaultList\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002>\u0000\u0000\r\u000bt\u0000\u0002r\u0000\u0000\u0001|\u0001\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0003\u0001|\u0001\u000b\u000b\r\u000b\u0000\u00011\u0000\u0000\u0001\u0001;\n;\u0000\u0004\npnam\r\u000b\u0000\u00024\u0000\u0001\u0001|\u0001:\u000b\n:\u0000\u0004\nlist\r\u000b\u0000\u0001m\u0000\u0000\u0001\u00019\u00039\u0000\u0001\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00008\u000b8\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u000bp\u0000\u0002\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0000\u0001\u0001\u000b\u000b7\u000b\r\u000b\u0000\u0002>\u0001\u0000\u0001\u0001\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u000b\u0000\u0001m\u0000\u0000\u0001\u0001\u000b\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u0000\r\u000b\u0000\u0002O\u0000\u0000\u0001\u0001\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0001\u0001\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0002\u0001\u000154\u000b\n5\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u00014\u0000\u0000\u0006\u000b\u0000\u00033\u000b\u000b\n3\u0000\u0004\nkocl\r\u000b\u0000\u0001m\u0000\u0000\u0001\u00012\n2\u0000\u0004\nremi\u0006\u000b\u0000\u00031\u000b0\n1\u0000\u0004\nprdt\r\u000b\u0000\u0001K\u0000\u0000\u0001\u0001\u000b\u0006\u000b\u0000\u0003\/\u000b\u000b\n\/\u0000\u0004\npnam\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001.\u000b.\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0006\u000b\u0000\u0003-\u000b\u000b\n-\u0000\u0004\nrmdt\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0006\u000b\u0000\u0003+\u000b*\n+\u0000\u0004\nbody\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001)\u000b)\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\u0006*\u0000\u0000\u00060\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\r\u000b\u0000\u00024\u0000\u0000\u0001\u0001'\u000b\n'\u0000\u0004\nlist\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001&\u000b&\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u00027\u0000\u0000\r\u000b\u0000\u0002O\u0000\u0000\u0001\u0001\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0001\u0001\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0002\u0001\u0001%$\u000b\n%\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001$\u0000\u0000\u0006\u000b\u0000\u0003#\u000b\u000b\n#\u0000\u0004\nkocl\r\u000b\u0000\u0001m\u0000\u0000\u0001\u0001\"\n\"\u0000\u0004\nremi\u0006\u000b\u0000\u0003!\u000b \n!\u0000\u0004\nprdt\r\u000b\u0000\u0001K\u0000\u0000\u0001\u0001\u000b\u0006\u000b\u0000\u0003\u001f\u000b\u000b\n\u001f\u0000\u0004\npnam\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\u001e\u000b\u001e\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0006\u000b\u0000\u0003\u001d\u000b\u001c\n\u001d\u0000\u0004\nbody\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\u001b\u000b\u001b\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\u0006\u001c\u0000\u0000\u0006 \u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\r\u000b\u0000\u00024\u0000\u0000\u0001\u0001\u0019\u000b\n\u0019\u0000\u0004\nlist\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\u0018\u000b\u0018\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u000b\u0000\u0002\u000b\u0017\r\u000b\u0000\u0004Z\u0000\u0000\u0001\u0001\u000b\u000b\u0016\u0015\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\u0014\u000b\u0014\u0000\u00180\u0000\nshouldopen\u0000\nshouldOpen\r\u000b\u0000\u0001k\u0000\u0000\u0001\u0001\u000b\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0002\u0001\u0001\u0013\u0012\u0011\n\u0013\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0012\u0000\u0000\u0002\u0011\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u0010\r\u000b\u0000\u0003I\u0000\u0002\u0001\u0001\u000f\u000b\u000e\n\u000f\u0000\u0018.remishownull\u0000\u0000\u0000\u0000\u0000****\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\r\u000b\r\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u0002\u000e\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0017\u0000\u0000\u000f\u000bm\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rmnd\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001X\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\rReminders.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?<\u036d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u036d{\u0000\u0000\u0000\u0001\u0000\u0004\u0001;\u0000\u0002\u0000(Macintosh HD:Applications:\u0000Reminders.app\u0000\u000e\u0000\u001c\u0000\r\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001aApplications\/Reminders.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u000bk\u0000\u00035\u0000\u0000\u0001P\u0001W\f\u000b\u000b\n\f\u0000\u0004\ncapp\r\u000b\u0000\u0001m\u0000\u0000\u0001R\u0001U\u000b\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000&\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\n\u000b\u0000\b\u000bkfrmID \u0002\u000bi\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0001\u0001\u0002\u0005\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0000\u0001\u0002\u0005\n\u000b\t\u000b\n\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0001\u0002\u0000\b\u000b\b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u0007\r\u000b\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001\u0006\u000b\u0006\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\r\u000b\u0000\u0000f\u0000\u0000\u0001\u0001\u0002\u000b\u0000\u0002\u000b\u0005\r\u000b\u0000\u0002r\u0000\u0000\u0002\u0006\u0002\r\u000b\u000b\r\u000b\u0000\u0002b\u0000\u0000\u0002\u0006\u0002\u000b\u000b\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0002\u0006\u0002\t\u000b\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000$\u0000C\u0000r\u0000e\u0000a\u0000t\u0000e\u0000d\u0000 \u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000 \r\u000b\u0000\u0001o\u0000\u0000\u0002\t\u0002\n\u0004\u000b\u0004\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0005\u0000\u0000\u0002\n\u0000\u0002\u000b\u0002\r\u000b\u0000\u0001L\u0000\u0000\u0002\u000e\u0002\u0010\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0002\u000e\u0002\u000f\u0001\u000b\u0001\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0002\u0000\u0000\u0002\n_\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002i\u0000\u0000\u0001G\u0001J\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u000b\u0000\u0002\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u0002\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000&\u000b\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003X\u0000\u0000\u0000\u0000\u0000#\u000b\u000b\r\u000b\u0000\u0004Z\u0000\u0000\u0000\u0010\u0000\u001e\u000b\u000b\r\u000b\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0015\u000b\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0013\u000b\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0013\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u001c0\u0000\fsupportedapp\u0000\fsupportedApp\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\r\u000b\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u000b\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u001c0\u0000\fsupportedapp\u0000\fsupportedApp\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001c0\u0000\fsupportedapp\u0000\fsupportedApp\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u0002\u000b\u0000\u0002\u000b\r\u000b\u0000\u0001L\u0000\u0000\u0000$\u0000&\u000b\r\u000b\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nmsng\u0002\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u000b\u000b\u0001\u0000\u0000\f\u000b\u0000\u0015\u0000\u000f notes specific\u0000\u0002\u0000\u0000\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u001e\u0000 \u0000n\u0000o\u0000t\u0000e\u0000s\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000c\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002i\u0000\u0000\u0001K\u0001N\u000b\u000b\r\u000b\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000esetnotesactive\u0000\u000esetNotesActive\u0002\u0000\u0000\u0002\u0000\u0000\r\u000b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000$\u000b\u0002\u000b\u0000\u0002\u000b\u000b\r\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000b\r\u000b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u000b\u000b\r\u000b\u0000\u0002E\u0000\u0000\u0000\u0004\u0000\u000b\u000b\u000b\r\u000b\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u000b\r\u000b\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u000b\u000b\r\u000b\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\nbnid\r\u000b\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u000b\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u000b\u000e\u000b\u0000\u0001\u000b\u0011\u000b\u0000\u001e\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000n\u0000o\u0000t\u0000e\u0000s\r\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000enotesisrunning\u0000\u000enotesIsRunning\r\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u000f\u000b\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000b\u0000\u0002\u000b\r\u000b\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000$\u000b\f\u0000\f\u0001\r\u000b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000 0\u0000\u000enotesisrunning\u0000\u000enotesIsRunning\r\f\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001a\f\u0002\f\u0003\r\f\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovfals\r\f\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nclosenotes\u0000\ncloseNotes\u0002\u0000\u0000\r\f\u0001\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\f\u0004\f\u0005\r\f\u0004\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\b\u000bboovtrue\r\f\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nclosenotes\u0000\ncloseNotes\u0002\u0000\u0000\u0002\u000b\u0000\u0002\f\u0006\f\u0007\r\f\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\f\u0007\u0000\u0002\f\b\f\t\r\f\b\u0000\u0002i\u0000\u0000\u0001O\u0001R\f\n\f\u000b\r\f\n\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\f\f\u000b\u0000\u00180\u0000\ncreatenote\u0000\ncreateNote\u0002\f\f\u0000\u0002\f\r\f\u000e\r\f\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0002\f\u000e\u0000\u0002\f\u000f\f\u0010\r\f\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u0002\f\u0010\u0000\u0002\f\u0011\f\u0012\r\f\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\f\u0012\u0000\u0002\f\u0013\r\f\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002\u0000\u0000\u0002\u0000\u0000\r\f\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\f\u0014\f\u0015\r\f\u0014\u0000\u0002w\u0000\u0000\u0000\b\u0000\f\u0016\f\u0017\r\f\u0016\u0000\u0004Z\u0000\u0000\u0000\n\u0000\f\u0018\f\u0019\f\u001a\r\f\u0018\u0000\u0002>\u0001\u0000\u0000\n\u0000\r\f\u001b\f\u001c\r\f\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\r\f\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\f\u001d\u000e\f\u001d\u0000\u0001\f\u001e\u0011\f\u001e\u0000\u0000\r\f\u0019\u0000\u0002O\u0000\u0000\u0000\u0010\u0000M\f\u001f\f \r\f\u001f\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000L\f!\f\"\f#\r\f!\u0000\u0002>\u0001\u0000\u0000\u0017\u0000\u001a\f$\f%\r\f$\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\r\f%\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\f&\u000e\f&\u0000\u0001\f'\u0011\f'\u0000\u0000\r\f\"\u0000\u0002O\u0000\u0001\u0000\u001d\u00003\f(\f)\r\f(\u0000\u0003I\u0000\u0002\u0000$\u00002\f*\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\f*\u0000\u0003\f+\f,\n\u0000\u0004\nkocl\r\f+\u0000\u0001m\u0000\u0000\u0000&\u0000'\n\u0000\u0004\nnote\u0006\f,\u0000\u0003\f-\n\u0000\u0004\nprdt\r\f-\u0000\u0001K\u0000\u0000\u0000(\u0000.\f.\u0006\f.\u0000\u0003\f\/\f0\n\u0000\u0004\npnam\r\f\/\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0006\f0\u0000\u0003\f1\n\u0000\u0004\nbody\r\f1\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u0006\u0000\u0000\u0006\u0000\u0000\r\f)\u0000\u00024\u0000\u0000\u0000\u001d\u0000!\f2\n\u0000\u0004\ncfol\r\f2\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\u0000\u0000\r\f#\u0000\u0002O\u0000\u0001\u00006\u0000L\f3\f4\r\f3\u0000\u0003I\u0000\u0002\u0000=\u0000K\f5\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\f5\u0000\u0003\f6\f7\n\u0000\u0004\nkocl\r\f6\u0000\u0001m\u0000\u0000\u0000?\u0000@\n\u0000\u0004\nnote\u0006\f7\u0000\u0003\f8\n\u0000\u0004\nprdt\r\f8\u0000\u0001K\u0000\u0000\u0000A\u0000G\f9\u0006\f9\u0000\u0003\f:\f;\n\u0000\u0004\npnam\r\f:\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0006\f;\u0000\u0003\f<\n\u0000\u0004\nbody\r\f<\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u0006\u0000\u0000\u0006\u0000\u0000\r\f4\u0000\u00024\u0000\u0001\u00006\u0000:\f=\n\u0000\u0004\ncfol\r\f=\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0001\r\f \u0000\u00024\u0000\u0000\u0000\u0010\u0000\u0014\f>\n\u0000\u0004\nacct\r\f>\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002\u0000\u0000\r\f\u001a\u0000\u0002O\u0000\u0000\u0000P\u0000\f?\f@\r\f?\u0000\u0001k\u0000\u0000\u0000W\u0000\fA\u0002\fA\u0000\u0002\fB\fC\r\fB\u0000\u0004Z\u0000\u0000\u0000W\u0000\fD\fE\fF\r\fD\u0000\u0002>\u0001\u0000\u0000W\u0000Z\fG\fH\r\fG\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\r\fH\u0000\u0001m\u0000\u0000\u0000X\u0000Y\fI\u000e\fI\u0000\u0001\fJ\u0011\fJ\u0000\u0000\r\fE\u0000\u0002O\u0000\u0001\u0000]\u0000s\fK\fL\r\fK\u0000\u0003I\u0000\u0002\u0000d\u0000r\fM\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\fM\u0000\u0003\fN\fO\n\u0000\u0004\nkocl\r\fN\u0000\u0001m\u0000\u0000\u0000f\u0000g\n\u0000\u0004\nnote\u0006\fO\u0000\u0003\fP\n\u0000\u0004\nprdt\r\fP\u0000\u0001K\u0000\u0000\u0000h\u0000n\fQ\u0006\fQ\u0000\u0003\fR\fS\n\u0000\u0004\npnam\r\fR\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0006\fS\u0000\u0003\fT\n\u0000\u0004\nbody\r\fT\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u0006\u0000\u0000\u0006\u0000\u0000\r\fL\u0000\u00024\u0000\u0000\u0000]\u0000a\fU\n\u0000\u0004\ncfol\r\fU\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\u0000\u0000\r\fF\u0000\u0002O\u0000\u0001\u0000v\u0000\fV\fW\r\fV\u0000\u0003I\u0000\u0002\u0000}\u0000\fX\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\fX\u0000\u0003\fY\fZ\n\u0000\u0004\nkocl\r\fY\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnote\u0006\fZ\u0000\u0003\f[\n\u0000\u0004\nprdt\r\f[\u0000\u0001K\u0000\u0000\u0000\u0000\f\\\u0006\f\\\u0000\u0003\f]\f^\n\u0000\u0004\npnam\r\f]\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0006\f^\u0000\u0003\f_\n\u0000\u0004\nbody\r\f_\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u0006\u0000\u0000\u0006\u0000\u0000\r\fW\u0000\u00024\u0000\u0001\u0000v\u0000z\f`\n\u0000\u0004\ncfol\r\f`\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0003\u0000\u0001\u0002\fC\u0000\u0002\fa\r\fa\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\f@\u0000\u00024\u0000\u0001\u0000P\u0000T\fb\n\u0000\u0004\nacct\r\fb\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0003\u0000\u0001\u000f\f\u0017\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\tNotes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001>\u021dE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u020f5\u0000\u0000\u0000\u0001\u0000\u0004\u0001;\u0000\u0002\u0000$Macintosh HD:Applications:\u0000Notes.app\u0000\u000e\u0000\u0014\u0000\t\u0000N\u0000o\u0000t\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/Notes.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\f\u0015\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005\fc\n\u0000\u0004\ncapp\r\fc\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\fd\u000e\fd\u0000\u0001\fe\u0011\fe\u0000\u001e\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000N\u0000o\u0000t\u0000e\u0000s\n\u0000\b\u000bkfrmID \u0002\f\t\u0000\u0002\ff\fg\r\ff\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\fg\u0000\u0002\fh\fi\r\fh\u0000\u0002i\u0000\u0000\u0001S\u0001V\fj\fk\r\fj\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\fl\u000b\u0000&0\u0000\u0011notefromclipboard\u0000\u0011noteFromClipboard\u0002\fl\u0000\u0002\fm\fn\r\fm\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\fn\u0000\u0002\fo\fp\r\fo\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\fp\u0000\u0002\fq\fr\r\fq\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002\fr\u0000\u0002\fs\r\fs\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\fk\u0000\u0001k\u0000\u0000\u0000\u0000\u0000.\ft\u0002\ft\u0000\u0002\fu\fv\r\fu\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\fw\fx\r\fw\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\fy\fz\r\fy\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\f{\u000b\u0000\"0\u0000\u000fclipboardashtml\u0000\u000fclipboardAsHTML\u0002\f{\u0000\u0002\f|~\r\f|\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002}\u000b}\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\r\fz\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\fx\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\u001c0\u0000\fnotehtmltext\u0000\fnoteHTMLText\u0002\fv\u0000\u0002\f}\f~\r\f}\u0000\u0004Z\u0000\u0000\u0000\t\u0000!\f\f{\f\r\f\u0000\u0002>\u0001\u0000\u0000\t\u0000\f\f\f\r\f\u0000\u0001o\u0000\u0000\u0000\t\u0000\nz\u000bz\u0000\u00050\u0000\u0001q\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0000\r\f\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\f\f\r\f\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010y\u000by\u0000\u00050\u0000\u0001q\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0002{\u0000\u0000\r\f\u0000\u0002r\u0000\u0000\u0000\u0015\u0000!\f\f\r\f\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f\f\f\r\f\u0000\u00024\u0000\u0001\u0000\u001c\u0000\u001fw\f\nw\u0000\u0004\ncpar\r\f\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001ev\u0003v\u0000\u0001\r\f\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\u001c\fut\r\f\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001csr\f\ns\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001r\u0000\u0000\u0006\f\u0000\u0003q\fp\nq\u0000\u0004\nrtyp\r\f\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018o\no\u0000\u0004\nTEXT\u0006p\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0002\f~\u0000\u0002\f\f\r\f\u0000\u0003I\u0000\u0000\u0000\"\u0000+m\fl\u000bm\u0000\u00180\u0000\ncreatenote\u0000\ncreateNote\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001o\u0000\u0000\u0000#\u0000$k\u000bk\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001o\u0000\u0000\u0000$\u0000%j\u000bj\u0000\u001c0\u0000\fnotehtmltext\u0000\fnoteHTMLText\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001o\u0000\u0000\u0000%\u0000&i\u000bi\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\f\u0000\u0002\fh\r\f\u0000\u0001o\u0000\u0000\u0000&\u0000'g\u000bg\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002h\u0000\u0000\u0002l\u0000\u0000\u0002\f\u0000\u0002\ff\r\f\u0000\u0001L\u0000\u0000\u0000,\u0000.\f\r\f\u0000\u0001o\u0000\u0000\u0000,\u0000-e\u000be\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0002f\u0000\u0000\u0002\fi\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000dcb\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002i\u0000\u0000\u0001W\u0001Z\f\f\r\f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000a\f`\u000ba\u0000\"0\u0000\u000fclipboardashtml\u0000\u000fclipboardAsHTML\u0002\f\u0000\u0002\f_\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002_\u0000\u0000\u0002`\u0000\u0000\r\f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000q\f\f\f\r\f\u0000\u0001k\u0000\u0000\u0000\u0003\u0000W\f\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\f\f\f\r\f\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\f]\\\r\f\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n[Z\f\n[\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001Z\u0000\u0000\u0006\f\u0000\u0003Y\fX\nY\u0000\u0004\nrtyp\r\f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006W\nW\u0000\u0004\nHTML\u0006X\u0000\u0000\u0001]\u0000\u0000\u0001\\\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\b0\u0000\u0004thex\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0000\r\u0000\rU\f\f\u0001U\u0000\u0000\f\f\u0000Q\u0000K This will trigger an error if you've copied something other than HTML data\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000t\u0000r\u0000i\u0000g\u0000g\u0000e\u0000r\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000i\u0000f\u0000 \u0000y\u0000o\u0000u\u0000'\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000d\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000H\u0000T\u0000M\u0000L\u0000 \u0000d\u0000a\u0000t\u0000a\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0000\r\u0000\u0016\f\f\r\f\u0000\u0002b\u0000\u0000\u0000\r\u0000\u0014\f\f\r\f\u0000\u0002n\u0000\u0003\u0000\r\u0000\u0012\f\f\r\f\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0012TSR\u000bT\u0000\r0\u0000\tget_cache\u0000\u0000\u0002S\u0000\u0000\u0002R\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000eQ\u000bQ\u0000\u00060\u0000\u0002wf\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\f\u000e\f\u0000\u0001\f\u0011\f\u0000\u0012\u0000t\u0000e\u0000m\u0000p\u0000.\u0000h\u0000t\u0000m\u0000l\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017O\f\f\u0001O\u0000\u0000\f\f\u00002\u0000, Writes to a file named \"temp.html\" in cache\u0000\u0002\u0000\u0000\u000e\f\u0000\u0001\f\u0011\f\u0000X\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000s\u0000 \u0000t\u0000o\u0000 \u0000a\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000d\u0000 \u0000\"\u0000t\u0000e\u0000m\u0000p\u0000.\u0000h\u0000t\u0000m\u0000l\u0000\"\u0000 \u0000i\u0000n\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000#\f\f\r\f\u0000\u0003I\u0000\u0002\u0000\u0017\u0000!N\f\f\nN\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\f\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001bM\f\nM\u0000\u0004\npsxf\r\f\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aL\u000bL\u0000\u00050\u0000\u0001f\u0000\u0000\u0006\f\u0000\u0003K\fJ\nK\u0000\u0004\nperm\r\f\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001dI\nI\u0000\b\u000bboovtrue\u0006J\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003I\u0000\u0001\u0000$\u0000+G\f\f\nG\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001o\u0000\u0000\u0000$\u0000%F\u000bF\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0006\f\u0000\u0003E\fD\nE\u0000\u0004\nset2\r\f\u0000\u0001m\u0000\u0000\u0000&\u0000'C\u0003C\u0000\u0000\u0006D\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003I\u0000\u0002\u0000,\u00003B\f\f\nB\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001o\u0000\u0000\u0000,\u0000-A\u000bA\u0000\b0\u0000\u0004thex\u0000\u0000\u0006\f\u0000\u0003@\f?\n@\u0000\u0004\nrefn\r\f\u0000\u0001o\u0000\u0000\u0000.\u0000\/>\u000b>\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0006?\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003I\u0000\u0002\u00004\u00009=\f<\n=\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001o\u0000\u0000\u00004\u00005;\u000b;\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0002<\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0000:\u0000D\f\f\r\f\u0000\u0003I\u0000\u0002\u0000:\u0000B:\f9\n:\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\f\u0000\u00024\u0000\u0000\u0000:\u0000>8\f\n8\u0000\u0004\npsxf\r\f\u0000\u0001o\u0000\u0000\u0000<\u0000=7\u000b7\u0000\u00050\u0000\u0001f\u0000\u0000\u00029\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00006\u000b6\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002r\u0000\u0000\u0000E\u0000N\f\f\r\f\u0000\u0003I\u0000\u0002\u0000E\u0000L5\f\f\n5\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001o\u0000\u0000\u0000E\u0000F4\u000b4\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0006\f\u0000\u00033\f2\n3\u0000\u0004\nas \r\f\u0000\u0001m\u0000\u0000\u0000G\u0000H1\n1\u0000\u0004\nutf8\u00062\u0000\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00120\u0000\u0007thehtml\u0000\u0007theHTML\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003I\u0000\u0002\u0000O\u0000T\/\f.\n\/\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\f\u0000\u0001o\u0000\u0000\u0000O\u0000P-\u000b-\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u0002.\u0000\u0000\u0002\f\u0000\u0002\f,\r\f\u0000\u0001L\u0000\u0000\u0000U\u0000W\f\r\f\u0000\u0001o\u0000\u0000\u0000U\u0000V+\u000b+\u0000\u00120\u0000\u0007thehtml\u0000\u0007theHTML\u0002,\u0000\u0000\r\f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000*)(\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001)\u0000\u0000\u0002(\u0000\u0000\r\f\u0000\u0001L\u0000\u0000\u0000_\u0000q\f\r\f\u0000\u0002b\u0000\u0000\u0000_\u0000p\f\f\r\f\u0000\u0002b\u0000\u0000\u0000_\u0000l\f\f\r\f\u0000\u0001m\u0000\u0000\u0000_\u0000b\f\u000e\f\u0000\u0001\f\u0011\f\u0000\n\u0000<\u0000p\u0000r\u0000e\u0000>\r\f\u0000\u0003l\u0000\u0005\u0000b\u0000k\f'&\r\f\u0000\u0003I\u0000\u0002\u0000b\u0000k%$\f\n%\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u0001$\u0000\u0000\u0006\f\u0000\u0003#\f\"\n#\u0000\u0004\nrtyp\r\f\u0000\u0001m\u0000\u0000\u0000d\u0000g!\n!\u0000\u0004\nutxt\u0006\"\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\r\f\u0000\u0001m\u0000\u0000\u0000l\u0000o\f\u000e\f\u0000\u0001\f\u0011\f\u0000\f\u0000<\u0000\/\u0000p\u0000r\u0000e\u0000>\u0002\f\u0000\u0002\f\f\r\f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000 \u001f\u001e\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\u0002\f\u0000\u0002\f\f\r\f\u0000\u0002i\u0000\u0000\u0001[\u0001^\f\f\r\f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001d\f\u001c\u000b\u001d\u0000(0\u0000\u0012formatnotesubtitle\u0000\u0012formatNoteSubtitle\u0002\f\u0000\u0002\f\f\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\f\u0000\u0002\f\r\u0000\r\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002\r\u0000\u0000\u0002\r\u0001\u0019\r\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\u0019\u0000\u0000\u0002\u001c\u0000\u0000\r\f\u0000\u0001k\u0000\u0000\u0000\u0000\u00000\r\u0002\u0002\r\u0002\u0000\u0002\r\u0003\r\u0004\r\r\u0003\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\r\u0005\r\u0006\r\r\u0005\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\r\u0007\r\b\r\r\u0007\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\r\t\u000e\r\t\u0000\u0001\r\n\u0011\r\n\u00000\u0000C\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000n\u0000o\u0000t\u0000e\u0000 \u0000a\u0000b\u0000o\u0000u\u0000t\u0000 \r\r\b\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u0017\u000b\u0017\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\r\u0006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\r\u0004\u0000\u0002\r\u000b\r\f\r\r\u000b\u0000\u0004Z\u0000\u0001\u0000\u0006\u0000\u0019\r\r\r\u000e\u0015\u0014\r\r\r\u0000\u0002>\u0001\u0000\u0000\u0006\u0000\t\r\u000f\r\u0010\r\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u0013\u000b\u0013\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\r\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\r\u0011\u000e\r\u0011\u0000\u0001\r\u0012\u0011\r\u0012\u0000\u0000\r\r\u000e\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0015\r\u0013\r\u0014\r\r\u0013\u0000\u0002b\u0000\u0000\u0000\f\u0000\u0013\r\u0015\r\u0016\r\r\u0015\u0000\u0002b\u0000\u0000\u0000\f\u0000\u000f\r\u0017\r\u0018\r\r\u0017\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u0012\u000b\u0012\u0000\f0\u0000\bsubtitle\u0000\u0000\r\r\u0018\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\r\u0019\u000e\r\u0019\u0000\u0001\r\u001a\u0011\r\u001a\u0000\b\u0000 \u0000i\u0000n\u0000 \r\r\u0016\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\r\u001b\r\u001c\r\r\u001b\u0000\u00011\u0000\u0000\u0000\u0010\u0000\u0012\u0011\n\u0011\u0000\u0004\nstrq\r\r\u001c\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u0010\u000b\u0010\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\r\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\r\f\u0000\u0002\r\u001d\r\u001e\r\r\u001d\u0000\u0004Z\u0000\u0001\u0000\u001a\u0000-\r\u001f\r \u000e\r\r\r\u001f\u0000\u0002>\u0001\u0000\u0000\u001a\u0000\u001d\r!\r\"\r\r!\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\f\u000b\f\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\r\r\"\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\r#\u000e\r#\u0000\u0001\r$\u0011\r$\u0000\u0000\r\r \u0000\u0002r\u0000\u0000\u0000 \u0000)\r%\r&\r\r%\u0000\u0002b\u0000\u0000\u0000 \u0000'\r'\r(\r\r'\u0000\u0002b\u0000\u0000\u0000 \u0000#\r)\r*\r\r)\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u000b\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\r\r*\u0000\u0001m\u0000\u0000\u0000!\u0000\"\r+\u000e\r+\u0000\u0001\r,\u0011\r,\u0000\b\u0000 \u0000i\u0000n\u0000 \r\r(\u0000\u0002n\u0000\u0000\u0000#\u0000&\r-\r.\r\r-\u0000\u00011\u0000\u0000\u0000$\u0000&\n\n\n\u0000\u0004\nstrq\r\r.\u0000\u0001o\u0000\u0000\u0000#\u0000$\t\u000b\t\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\r\r&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002\r\u001e\u0000\u0002\r\/\u0007\r\r\/\u0000\u0001L\u0000\u0000\u0000.\u00000\r0\r\r0\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u0006\u000b\u0006\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0007\u0000\u0000\u0002\f\u0000\u0002\r1\r2\r\r1\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\r2\u0000\u0002\r3\r4\r\r3\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002\r5\r6\u0001\u0002\u0000\u0000\f\r5\u0000\u001d\u0000\u0017 file metadata specific\u0000\u0002\u0000\u0000\u000e\r6\u0000\u0001\r7\u0011\r7\u0000.\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000c\u0002\r4\u0000\u0002\r8\r9\r\r8\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\r9\u0000\u0002\r:\r;\r\r:\u0000\u0002i\u0000\u0000\u0001_\u0001b\r<\r=\r\r<\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\r>\u000b\u0000\u00140\u0000\bfilemeta\u0000\bfileMeta\u0002\r>\u0000\u0002\r?\r@\r\r?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\r@\u0000\u0002\rA\rB\r\rA\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmediainfo\u0000\u0000\u0002\rB\u0000\u0002\rC\r\rC\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r=\u0000\u0001k\u0000\u0000\u0000\u0000\u0000I\rD\u0002\rD\u0000\u0002\rE\rF\r\rE\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\rG\rH\r\rG\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\rI\rJ\r\rI\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\rK\u000b\u0000\"0\u0000\u000fformatmediainfo\u0000\u000fformatMediaInfo\u0002\rK\u0000\u0002\rL\r\rL\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\r0\u0000\tmediainfo\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\rJ\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\rH\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004meta\u0000\u0000\u0002\rF\u0000\u0002\rM\rN\r\rM\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0011\rO\rP\r\rO\u0000\u0002n\u0000\u0001\u0000\t\u0000\u000f\rQ\rR\r\rQ\u0000\u0003I\u0000\u0000\u0000\n\u0000\u000f\rS\u000b\u0000\u00120\u0000\u000eformatopenmeta\u0000\u0000\u0002\rS\u0000\u0002\rT\r\rT\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\rR\u0000\u0000f\u0000\u0000\u0000\t\u0000\n\r\rP\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\u0002\rN\u0000\u0002\rU\rV\r\rU\u0000\u0004Z\u0000\u0001\u0000\u0012\u0000 \rW\rX\r\rW\u0000\u0002>\u0001\u0000\u0000\u0012\u0000\u0015\rY\rZ\r\rY\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\r\rZ\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\r[\u000e\r[\u0000\u0001\r\\\u0011\r\\\u0000\u0000\r\rX\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001c\r]\r^\r\r]\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\r\r^\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r_\r`\r\r_\u0000\u0000;\u0000\u0000\u0000\u001a\u0000\u001b\r\r`\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004meta\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\rV\u0000\u0002\ra\rb\r\ra\u0000\u0002r\u0000\u0000\u0000!\u0000)\rc\rd\r\rc\u0000\u0002n\u0000\u0001\u0000!\u0000'\re\rf\r\re\u0000\u0003I\u0000\u0000\u0000\"\u0000'\rg\u000b\u0000*0\u0000\u0013getspotlightcomment\u0000\u0013getSpotlightComment\u0002\rg\u0000\u0002\rh\r\rh\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0002\u0000\u0000\r\rf\u0000\u0000f\u0000\u0000\u0000!\u0000\"\r\rd\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007comment\u0000\u0000\u0002\rb\u0000\u0002\ri\rj\r\ri\u0000\u0004Z\u0000\u0000\u0000*\u0000A\rk\rl\r\rk\u0000\u0002>\u0001\u0000\u0000*\u0000-\rm\rn\r\rm\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\u000b0\u0000\u0007comment\u0000\u0000\r\rn\u0000\u0001m\u0000\u0000\u0000+\u0000,\ro\u000e\ro\u0000\u0001\rp\u0011\rp\u0000\u0000\r\rl\u0000\u0002r\u0000\u0000\u00000\u0000=\rq\rr\r\rq\u0000\u0002n\u0000\u0001\u00000\u0000:\rs\rt\r\rs\u0000\u0003I\u0000\u0000\u00001\u0000:\ru\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u0002\ru\u0000\u0002\rv\rw\r\rv\u0000\u0001m\u0000\u0000\u00001\u00002\rx\u000e\rx\u0000\u0001\ry\u0011\ry\u00002\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000s\u0000p\u0000o\u0000t\u0000l\u0000i\u0000g\u0000h\u0000t\u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0002\rw\u0000\u0002\rz\r{\r\rz\u0000\u0001m\u0000\u0000\u00002\u00003\r|\u000e\r|\u0000\u0001\r}\u0011\r}\u0000\"\u0000S\u0000p\u0000o\u0000t\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0002\r{\u0000\u0002\r~\r\r\r~\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u000b0\u0000\u0007comment\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u000b0\u0000\u0007comment\u0000\u0000\u0002\r\u0000\u0002\r\r\r\u0000\u0001m\u0000\u0000\u00005\u00006\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u0006\u0000y\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\rt\u0000\u0000f\u0000\u0000\u00000\u00001\r\rr\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\r\r\r\u0000\u0000;\u0000\u0000\u0000;\u0000<\r\r\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\b0\u0000\u0004meta\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\rj\u0000\u0002\r\r\r\u0000\u0001L\u0000\u0000\u0000B\u0000I\r\r\r\u0000\u0002n\u0000\u0001\u0000B\u0000H\r\r\r\r\u0000\u0003I\u0000\u0000\u0000C\u0000H\r\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u0002\r\u0000\u0002\r\r\r\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004meta\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0000B\u0000C\u0002\u0000\u0000\u0002\r;\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002i\u0000\u0000\u0001c\u0001f\r\r\r\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\r\u000b\u0000\"0\u0000\u000fformatmediainfo\u0000\u000fformatMediaInfo\u0002\r\u0000\u0002\r\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\r\r\u0001\u0000\u0000\f\r\u0000\u001d\u0000\u0017 generate list of items\u0000\u0002\u0000\u0000\u000e\r\u0000\u0001\r\u0011\r\u0000.\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\r\r\r\r\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\r\u0000\u0002\r\r\r\r\u0000\u0005Y\u0000\u0000\u0000\u0005\u0002Z\r\r\r\r\r\u0000\u0001k\u0000\u0000\u0000\u0014\u0002U\r\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001a\r\r\r\r\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0018\r\r\r\r\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0018\r\n\u0000\u0004\ncpar\r\r\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\r\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0000\u001b\u0000#\r\r\r\r\u0000\u0002n\u0000\u0001\u0000\u001b\u0000!\r\r\r\r\u0000\u0003I\u0000\u0000\u0000\u001c\u0000!\r\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\u0002\r\u0000\u0002\r\r\r\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\r\u0000\u0000f\u0000\u0000\u0000\u001b\u0000\u001c\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0002\r\u0000\u0002\r\r\r\u0000\u0004Z\u0000\u0000\u0000$\u0002U\r\r\r\r\u0000\u0002F\u0000\u0000\u0000$\u00005\r\r\r\r\u0000\u0002>\u0001\u0000\u0000$\u0000*\r\r\r\r\u0000\u0002n\u0000\u0000\u0000$\u0000(\r\r\r\r\u0000\u00024\u0000\u0000\u0000%\u0000(\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\r\r\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0000(\u0000)\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u0000\r\r\u0000\u0002>\u0001\u0000\u0000-\u00003\r\r\r\r\u0000\u0002n\u0000\u0000\u0000-\u00001\r\r\r\r\u0000\u00024\u0000\u0000\u0000.\u00001\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0003\u0000\u0002\r\r\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u00001\u00002\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u0000\r\r\u0000\u0004Z\u0000\u0000\u00008\u0002Q\r\r\r\r\r\u0000\u0002=\u0000\u0003\u00008\u0000>\r\r\r\r\u0000\u0002n\u0000\u0000\u00008\u0000<\r\r\r\r\u0000\u00024\u0000\u0000\u00009\u0000<\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0000\u0001\r\r\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0000<\u0000=\r\u000e\r\u0000\u0001\r\u0011\r\u0000\u001a\u0000C\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\r\r\u0000\u0002r\u0000\u0000\u0000A\u0000V\r\r\r\r\u0000\u0002b\u0000\u0000\u0000A\u0000T\r\r\r\r\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\r\u0000\u0001K\u0000\u0000\u0000B\u0000S\r\u0006\r\u0000\u0003\r\u000b\u0000\u00100\u0000\fcompletename\u0000\u0000\r\r\u0000\u0001K\u0000\u0000\u0000C\u0000Q\r\u0006\r\u0000\u0003\r\r\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\r\u0000\u0003l\u0000\u0005\u0000D\u0000H\r\r\r\u0000\u0002n\u0000\u0000\u0000D\u0000H\r\r\r\r\u0000\u00024\u0000\u0000\u0000E\u0000H\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u0001\r\r\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\r\u0000\u0003\r\r\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\r\u0000\u0003l\u0000\u0005\u0000I\u0000M\r\r\r\u0000\u0002n\u0000\u0000\u0000I\u0000M\r\r\r\r\u0000\u00024\u0000\u0000\u0000J\u0000M\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0000\u0002\r\r\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\r\u0000\u0003\r\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0000N\u0000O\r\u000e\r\u0000\u0001\r\u0011\r\u0000*\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000n\u0000a\u0000m\u0000e\u0006\u0000\u0000\u0006\u0000\u0000\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002=\u0000\u0003\u0000Y\u0000_\r\r\r\r\u0000\u0002n\u0000\u0000\u0000Y\u0000]\r\r\r\r\u0000\u00024\u0000\u0000\u0000Z\u0000]\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0003\u0000\u0001\r\r\u0000\u0001o\u0000\u0000\u0000Y\u0000Z\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0000]\u0000^\r\u000e\r\u0000\u0001\r\u0011\r\u0000\f\u0000F\u0000o\u0000r\u0000m\u0000a\u0000t\u0002\r\u0000\u0002\r\r\r\r\u0000\u0002r\u0000\u0000\u0000b\u0000y\r\r\r\r\u0000\u0002b\u0000\u0000\u0000b\u0000w\r\r\r\r\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\r\u0000\u0001K\u0000\u0000\u0000c\u0000v\r\u0006\r\u0000\u0003\r\u000b\u0000\n0\u0000\u0006format\u0000\u0000\r\r\u0000\u0001K\u0000\u0000\u0000d\u0000t\r\u0006\r\u0000\u0003\r\r\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\r\u0000\u0003l\u0000\u0005\u0000e\u0000i\r\r\r\u0000\u0002n\u0000\u0000\u0000e\u0000i\r\r\r\r\u0000\u00024\u0000\u0000\u0000f\u0000i\r\n\u0000\u0004\ncobj\r\r\u0000\u0001m\u0000\u0000\u0000g\u0000h\u0003\u0000\u0001\r\r\u0000\u0001o\u0000\u0000\u0000e\u0000f\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\r\u0000\u0003\r\u000e\u0000\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\r\u0000\u0003l\u0000\u0005\u0000j\u0000n\u000e\u0001\r\u000e\u0001\u0000\u0002n\u0000\u0000\u0000j\u0000n\u000e\u0002\u000e\u0003\r\u000e\u0002\u0000\u00024\u0000\u0000\u0000k\u0000n\u000e\u0004\n\u0000\u0004\ncobj\r\u000e\u0004\u0000\u0001m\u0000\u0000\u0000l\u0000m\u0003\u0000\u0002\r\u000e\u0003\u0000\u0001o\u0000\u0000\u0000j\u0000k\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000e\u0000\u0000\u0003\u000e\u0005\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e\u0005\u0000\u0001m\u0000\u0000\u0000o\u0000r\u000e\u0006\u000e\u000e\u0006\u0000\u0001\u000e\u0007\u0011\u000e\u0007\u0000\u001e\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0006\u0000\u0000\u0006\u0000\u0000\r\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\r\u0000\u0002\u000e\b\u000e\t\r\u000e\b\u0000\u0002=\u0000\u0003\u0000|\u0000\u000e\n\u000e\u000b\r\u000e\n\u0000\u0002n\u0000\u0000\u0000|\u0000\u000e\f\u000e\r\r\u000e\f\u0000\u00024\u0000\u0000\u0000}\u0000\u000e\u000e\n\u0000\u0004\ncobj\r\u000e\u000e\u0000\u0001m\u0000\u0000\u0000~\u0000\u0003\u0000\u0001\r\u000e\r\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u000e\u000f\u000e\u000e\u000f\u0000\u0001\u000e\u0010\u0011\u000e\u0010\u0000\u0012\u0000F\u0000i\u0000l\u0000e\u0000 \u0000s\u0000i\u0000z\u0000e\u0002\u000e\t\u0000\u0002\u000e\u0011\u000e\u0012\r\u000e\u0011\u0000\u0002r\u0000\u0000\u0000\u0000\u000e\u0013\u000e\u0014\r\u000e\u0013\u0000\u0002b\u0000\u0000\u0000\u0000\u000e\u0015\u000e\u0016\r\u000e\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e\u0016\u0000\u0001K\u0000\u0000\u0000\u0000\u000e\u0017\u0006\u000e\u0017\u0000\u0003\u000e\u0018\u000b\u0000\f0\u0000\bfilesize\u0000\u0000\r\u000e\u0018\u0000\u0001K\u0000\u0000\u0000\u0000\u000e\u0019\u0006\u000e\u0019\u0000\u0003\u000e\u001a\u000e\u001b\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u000e\u001c\r\u000e\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\u000e\u001d\u000e\u001e\r\u000e\u001d\u0000\u00024\u0000\u0000\u0000\u0000\u000e\u001f\n\u0000\u0004\ncobj\r\u000e\u001f\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u000e\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000e\u001b\u0000\u0003\u000e \u000e!\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000e \u0000\u0003l\u0000\u0005\u0000\u0000\u000e\"\r\u000e\"\u0000\u0002n\u0000\u0000\u0000\u0000\u000e#\u000e$\r\u000e#\u0000\u00024\u0000\u0000\u0000\u0000~\u000e%\n~\u0000\u0004\ncobj\r\u000e%\u0000\u0001m\u0000\u0000\u0000\u0000}\u0003}\u0000\u0002\r\u000e$\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000e!\u0000\u0003{\u000e&z\u000b{\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e&\u0000\u0001m\u0000\u0000\u0000\u0000\u000e'\u000e\u000e'\u0000\u0001\u000e(\u0011\u000e(\u0000\"\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000f\u0000i\u0000l\u0000e\u0000s\u0000i\u0000z\u0000e\u0006z\u0000\u0000\u0006\u0000\u0000\r\u000e\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000y\u000by\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e\u0012\u0000\u0002\u000e)\u000e*\r\u000e)\u0000\u0002=\u0000\u0003\u0000\u0000\u000e+\u000e,\r\u000e+\u0000\u0002n\u0000\u0000\u0000\u0000\u000e-\u000e.\r\u000e-\u0000\u00024\u0000\u0000\u0000\u0000x\u000e\/\nx\u0000\u0004\ncobj\r\u000e\/\u0000\u0001m\u0000\u0000\u0000\u0000w\u0003w\u0000\u0001\r\u000e.\u0000\u0001o\u0000\u0000\u0000\u0000v\u000bv\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e,\u0000\u0001m\u0000\u0000\u0000\u0000\u000e0\u000e\u000e0\u0000\u0001\u000e1\u0011\u000e1\u0000\n\u0000W\u0000i\u0000d\u0000t\u0000h\u0002\u000e*\u0000\u0002\u000e2\u000e3\r\u000e2\u0000\u0002r\u0000\u0000\u0000\u0000\u000e4\u000e5\r\u000e4\u0000\u0002b\u0000\u0000\u0000\u0000\u000e6\u000e7\r\u000e6\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e7\u0000\u0001K\u0000\u0000\u0000\u0000\u000e8\u0006\u000e8\u0000\u0003t\u000e9s\u000bt\u0000\t0\u0000\u0005width\u0000\u0000\r\u000e9\u0000\u0001K\u0000\u0000\u0000\u0000\u000e:\u0006\u000e:\u0000\u0003r\u000e;\u000e<\u000br\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e;\u0000\u0003l\u0000\u0005\u0000\u0000\u000e=qp\r\u000e=\u0000\u0002n\u0000\u0000\u0000\u0000\u000e>\u000e?\r\u000e>\u0000\u00024\u0000\u0000\u0000\u0000o\u000e@\no\u0000\u0004\ncobj\r\u000e@\u0000\u0001m\u0000\u0000\u0000\u0000n\u0003n\u0000\u0001\r\u000e?\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\r0\u0000\tthis_data\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0006\u000e<\u0000\u0003l\u000eA\u000eB\u000bl\u0000\t0\u0000\u0005value\u0000\u0000\r\u000eA\u0000\u0003l\u0000\u0005\u0000\u0000\u000eCkj\r\u000eC\u0000\u0002n\u0000\u0000\u0000\u0000\u000eD\u000eE\r\u000eD\u0000\u00024\u0000\u0000\u0000\u0000i\u000eF\ni\u0000\u0004\ncobj\r\u000eF\u0000\u0001m\u0000\u0000\u0000\u0000h\u0003h\u0000\u0002\r\u000eE\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\r0\u0000\tthis_data\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0006\u000eB\u0000\u0003f\u000eGe\u000bf\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000eG\u0000\u0001m\u0000\u0000\u0000\u0000\u000eH\u000e\u000eH\u0000\u0001\u000eI\u0011\u000eI\u0000\u001c\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000w\u0000i\u0000d\u0000t\u0000h\u0006e\u0000\u0000\u0006s\u0000\u0000\r\u000e5\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e3\u0000\u0002\u000eJ\u000eK\r\u000eJ\u0000\u0002=\u0000\u0003\u0000\u0000\u000eL\u000eM\r\u000eL\u0000\u0002n\u0000\u0000\u0000\u0000\u000eN\u000eO\r\u000eN\u0000\u00024\u0000\u0000\u0000\u0000c\u000eP\nc\u0000\u0004\ncobj\r\u000eP\u0000\u0001m\u0000\u0000\u0000\u0000b\u0003b\u0000\u0001\r\u000eO\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000eM\u0000\u0001m\u0000\u0000\u0000\u0000\u000eQ\u000e\u000eQ\u0000\u0001\u000eR\u0011\u000eR\u0000\f\u0000H\u0000e\u0000i\u0000g\u0000h\u0000t\u0002\u000eK\u0000\u0002\u000eS\u000eT\r\u000eS\u0000\u0002r\u0000\u0000\u0000\u0000\u000eU\u000eV\r\u000eU\u0000\u0002b\u0000\u0000\u0000\u0000\u000eW\u000eX\r\u000eW\u0000\u0001o\u0000\u0000\u0000\u0000`\u000b`\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000eX\u0000\u0001K\u0000\u0000\u0000\u0000\u000eY\u0006\u000eY\u0000\u0003_\u000eZ^\u000b_\u0000\n0\u0000\u0006height\u0000\u0000\r\u000eZ\u0000\u0001K\u0000\u0000\u0000\u0000\u000e[\u0006\u000e[\u0000\u0003]\u000e\\\u000e]\u000b]\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e\\\u0000\u0003l\u0000\u0005\u0000\u0000\u000e^\\[\r\u000e^\u0000\u0002n\u0000\u0000\u0000\u0000\u000e_\u000e`\r\u000e_\u0000\u00024\u0000\u0000\u0000\u0000Z\u000ea\nZ\u0000\u0004\ncobj\r\u000ea\u0000\u0001m\u0000\u0000\u0000\u0000Y\u0003Y\u0000\u0001\r\u000e`\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0006\u000e]\u0000\u0003W\u000eb\u000ec\u000bW\u0000\t0\u0000\u0005value\u0000\u0000\r\u000eb\u0000\u0003l\u0000\u0005\u0000\u0000\u000edVU\r\u000ed\u0000\u0002n\u0000\u0000\u0000\u0000\u000ee\u000ef\r\u000ee\u0000\u00024\u0000\u0000\u0000\u0000T\u000eg\nT\u0000\u0004\ncobj\r\u000eg\u0000\u0001m\u0000\u0000\u0000\u0000S\u0003S\u0000\u0002\r\u000ef\u0000\u0001o\u0000\u0000\u0000\u0000R\u000bR\u0000\r0\u0000\tthis_data\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0006\u000ec\u0000\u0003Q\u000ehP\u000bQ\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000eh\u0000\u0001m\u0000\u0000\u0000\u0000\u000ei\u000e\u000ei\u0000\u0001\u000ej\u0011\u000ej\u0000\u001e\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000h\u0000e\u0000i\u0000g\u0000h\u0000t\u0006P\u0000\u0000\u0006^\u0000\u0000\r\u000eV\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000eT\u0000\u0002\u000ek\u000el\r\u000ek\u0000\u0002=\u0000\u0003\u0000\u0000\u000em\u000en\r\u000em\u0000\u0002n\u0000\u0000\u0000\u0000\u000eo\u000ep\r\u000eo\u0000\u00024\u0000\u0000\u0000\u0000N\u000eq\nN\u0000\u0004\ncobj\r\u000eq\u0000\u0001m\u0000\u0000\u0000\u0000M\u0003M\u0000\u0001\r\u000ep\u0000\u0001o\u0000\u0000\u0000\u0000L\u000bL\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000en\u0000\u0001m\u0000\u0000\u0000\u0000\u000er\u000e\u000er\u0000\u0001\u000es\u0011\u000es\u0000\u0010\u0000D\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u000el\u0000\u0002\u000et\u000eu\r\u000et\u0000\u0002r\u0000\u0000\u0000\u0001\u0015\u000ev\u000ew\r\u000ev\u0000\u0002b\u0000\u0000\u0000\u0001\u0013\u000ex\u000ey\r\u000ex\u0000\u0001o\u0000\u0000\u0000\u0000K\u000bK\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000ey\u0000\u0001K\u0000\u0000\u0000\u0001\u0012\u000ez\u0006\u000ez\u0000\u0003J\u000e{I\u000bJ\u0000\f0\u0000\bduration\u0000\u0000\r\u000e{\u0000\u0001K\u0000\u0000\u0001\u0000\u0001\u0010\u000e|\u0006\u000e|\u0000\u0003H\u000e}\u000e~\u000bH\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e}\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u0005\u000eGF\r\u000e\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0005\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001\u0002\u0001\u0005E\u000e\nE\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0004D\u0003D\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0002C\u000bC\u0000\r0\u0000\tthis_data\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0006\u000e~\u0000\u0003B\u000e\u000e\u000bB\u0000\t0\u0000\u0005value\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001\u0006\u0001\n\u000eA@\r\u000e\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\n\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001\u0007\u0001\n?\u000e\n?\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001\b\u0001\t>\u0003>\u0000\u0002\r\u000e\u0000\u0001o\u0000\u0000\u0001\u0006\u0001\u0007=\u000b=\u0000\r0\u0000\tthis_data\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0006\u000e\u0000\u0003<\u000e;\u000b<\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\u000e\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\"\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000d\u0000u\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0006;\u0000\u0000\u0006I\u0000\u0000\r\u000ew\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000eu\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0001\u0018\u0001 \u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0001\u0018\u0001\u001c\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001\u0019\u0001\u001c9\u000e\n9\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001b8\u00038\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u00197\u000b7\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000(\u0000D\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000a\u0000s\u0000p\u0000e\u0000c\u0000t\u0000 \u0000r\u0000a\u0000t\u0000i\u0000o\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0001#\u0001<\u000e\u000e\r\u000e\u0000\u0002b\u0000\u0000\u0001#\u0001:\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0001#\u0001$6\u000b6\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e\u0000\u0001K\u0000\u0000\u0001$\u00019\u000e\u0006\u000e\u0000\u00035\u000e4\u000b5\u0000\u000f0\u0000\u000baspectratio\u0000\u0000\r\u000e\u0000\u0001K\u0000\u0000\u0001'\u00017\u000e\u0006\u000e\u0000\u00033\u000e\u000e\u000b3\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001(\u0001,\u000e21\r\u000e\u0000\u0002n\u0000\u0000\u0001(\u0001,\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001)\u0001,0\u000e\n0\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001*\u0001+\/\u0003\/\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001(\u0001).\u000b.\u0000\r0\u0000\tthis_data\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0006\u000e\u0000\u0003-\u000e\u000e\u000b-\u0000\t0\u0000\u0005value\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001-\u00011\u000e,+\r\u000e\u0000\u0002n\u0000\u0000\u0001-\u00011\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001.\u00011*\u000e\n*\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001\/\u00010)\u0003)\u0000\u0002\r\u000e\u0000\u0001o\u0000\u0000\u0001-\u0001.(\u000b(\u0000\r0\u0000\tthis_data\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0006\u000e\u0000\u0003'\u000e&\u000b'\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u00012\u00015\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000(\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000a\u0000s\u0000p\u0000e\u0000c\u0000t\u0000r\u0000a\u0000t\u0000i\u0000o\u0006&\u0000\u0000\u00064\u0000\u0000\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0001?\u0001G\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0001?\u0001C\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001@\u0001C$\u000e\n$\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001A\u0001B#\u0003#\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001?\u0001@\"\u000b\"\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001C\u0001F\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0014\u0000F\u0000r\u0000a\u0000m\u0000e\u0000 \u0000r\u0000a\u0000t\u0000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0001J\u0001c\u000e\u000e\r\u000e\u0000\u0002b\u0000\u0000\u0001J\u0001a\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0001J\u0001K!\u000b!\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e\u0000\u0001K\u0000\u0000\u0001K\u0001`\u000e\u0006\u000e\u0000\u0003 \u000e\u001f\u000b \u0000\r0\u0000\tframerate\u0000\u0000\r\u000e\u0000\u0001K\u0000\u0000\u0001N\u0001^\u000e\u0006\u000e\u0000\u0003\u001e\u000e\u000e\u000b\u001e\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001O\u0001S\u000e\u001d\u001c\r\u000e\u0000\u0002n\u0000\u0000\u0001O\u0001S\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001P\u0001S\u001b\u000e\n\u001b\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001Q\u0001R\u001a\u0003\u001a\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001O\u0001P\u0019\u000b\u0019\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0006\u000e\u0000\u0003\u0018\u000e\u000e\u000b\u0018\u0000\t0\u0000\u0005value\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001T\u0001X\u000e\u0017\u0016\r\u000e\u0000\u0002n\u0000\u0000\u0001T\u0001X\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001U\u0001X\u0015\u000e\n\u0015\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001V\u0001W\u0014\u0003\u0014\u0000\u0002\r\u000e\u0000\u0001o\u0000\u0000\u0001T\u0001U\u0013\u000b\u0013\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0006\u000e\u0000\u0003\u0012\u000e\u0011\u000b\u0012\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001Y\u0001\\\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000$\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000f\u0000r\u0000a\u0000m\u0000e\u0000r\u0000a\u0000t\u0000e\u0006\u0011\u0000\u0000\u0006\u001f\u0000\u0000\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0001f\u0001n\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0001f\u0001j\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001g\u0001j\u000f\u000e\n\u000f\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001h\u0001i\u000e\u0003\u000e\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001f\u0001g\r\u000b\r\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001j\u0001m\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000\u0016\u0000C\u0000o\u0000l\u0000o\u0000r\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0001q\u0001\u000e\u000e\r\u000e\u0000\u0002b\u0000\u0000\u0001q\u0001\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0001q\u0001r\f\u000b\f\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e\u0000\u0001K\u0000\u0000\u0001r\u0001\u000e\u0006\u000e\u0000\u0003\u000b\u000e\n\u000b\u000b\u0000\u000e0\u0000\ncolorspace\u0000\u0000\r\u000e\u0000\u0001K\u0000\u0000\u0001u\u0001\u000e\u0006\u000e\u0000\u0003\t\u000e\u000e\u000b\t\u0000\t0\u0000\u0005label\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001v\u0001z\u000e\b\u0007\r\u000e\u0000\u0002n\u0000\u0000\u0001v\u0001z\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001w\u0001z\u0006\u000e\n\u0006\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001x\u0001y\u0005\u0003\u0005\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001v\u0001w\u0004\u000b\u0004\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0006\u000e\u0000\u0003\u0003\u000e\u000e\u000b\u0003\u0000\t0\u0000\u0005value\u0000\u0000\r\u000e\u0000\u0003l\u0000\u0005\u0001{\u0001\u000e\u0002\u0001\r\u000e\u0000\u0002n\u0000\u0000\u0001{\u0001\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001|\u0001\u0000\u000e\n\u0000\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001}\u0001~\u0003\u0000\u0002\r\u000e\u0000\u0001o\u0000\u0000\u0001{\u0001|\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0006\u000e\u0000\u0003\u000e\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000&\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000c\u0000o\u0000l\u0000o\u0000r\u0000s\u0000p\u0000a\u0000c\u0000e\u0006\u0000\u0000\u0006\n\u0000\u0000\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002=\u0000\u0003\u0001\u0001\u000e\u000e\r\u000e\u0000\u0002n\u0000\u0000\u0001\u0001\u000e\u000e\r\u000e\u0000\u00024\u0000\u0000\u0001\u0001\u000e\n\u0000\u0004\ncobj\r\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000e\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000e\u0000\u0001m\u0000\u0000\u0001\u0001\u000e\u000e\u000e\u0000\u0001\u000e\u0011\u000e\u0000$\u0000C\u0000h\u0000r\u0000o\u0000m\u0000a\u0000 \u0000s\u0000u\u0000b\u0000s\u0000a\u0000m\u0000p\u0000l\u0000i\u0000n\u0000g\u0002\u000e\u0000\u0002\u000e\u000e\r\u000e\u0000\u0002r\u0000\u0000\u0001\u0001\u000e\u000e\r\u000e\u0000\u0002b\u0000\u0000\u0001\u0001\u000e\u000e\r\u000e\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000e\u0000\u0001K\u0000\u0000\u0001\u0001\u000e\u0006\u000e\u0000\u0003\u000e\u000b\u0000\u00150\u0000\u0011chromasubsampling\u0000\u0000\r\u000e\u0000\u0001K\u0000\u0000\u0001\u0001\u000f\u0000\u0006\u000f\u0000\u0000\u0003\u000f\u0001\u000f\u0002\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000f\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u000f\u0003\r\u000f\u0003\u0000\u0002n\u0000\u0000\u0001\u0001\u000f\u0004\u000f\u0005\r\u000f\u0004\u0000\u00024\u0000\u0000\u0001\u0001\u000f\u0006\n\u0000\u0004\ncobj\r\u000f\u0006\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000f\u0005\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f\u0002\u0000\u0003\u000f\u0007\u000f\b\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000f\u0007\u0000\u0003l\u0000\u0005\u0001\u0001\u000f\t\r\u000f\t\u0000\u0002n\u0000\u0000\u0001\u0001\u000f\n\u000f\u000b\r\u000f\n\u0000\u00024\u0000\u0000\u0001\u0001\u000f\f\n\u0000\u0004\ncobj\r\u000f\f\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0002\r\u000f\u000b\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f\b\u0000\u0003\u000f\r\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000f\r\u0000\u0001m\u0000\u0000\u0001\u0001\u000f\u000e\u000e\u000f\u000e\u0000\u0001\u000f\u000f\u0011\u000f\u000f\u00004\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000c\u0000h\u0000r\u0000o\u0000m\u0000a\u0000s\u0000u\u0000b\u0000s\u0000a\u0000m\u0000p\u0000l\u0000i\u0000n\u0000g\u0006\u0000\u0000\u0006\u0000\u0000\r\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000e\u0000\u0002\u000f\u0010\u000f\u0011\r\u000f\u0010\u0000\u0002=\u0000\u0003\u0001\u0001\u000f\u0012\u000f\u0013\r\u000f\u0012\u0000\u0002n\u0000\u0000\u0001\u0001\u000f\u0014\u000f\u0015\r\u000f\u0014\u0000\u00024\u0000\u0000\u0001\u0001\u000f\u0016\n\u0000\u0004\ncobj\r\u000f\u0016\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000f\u0015\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000f\u0013\u0000\u0001m\u0000\u0000\u0001\u0001\u000f\u0017\u000e\u000f\u0017\u0000\u0001\u000f\u0018\u0011\u000f\u0018\u0000\u0012\u0000B\u0000i\u0000t\u0000 \u0000d\u0000e\u0000p\u0000t\u0000h\u0002\u000f\u0011\u0000\u0002\u000f\u0019\u000f\u001a\r\u000f\u0019\u0000\u0002r\u0000\u0000\u0001\u0001\u000f\u001b\u000f\u001c\r\u000f\u001b\u0000\u0002b\u0000\u0000\u0001\u0001\u000f\u001d\u000f\u001e\r\u000f\u001d\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000f\u001e\u0000\u0001K\u0000\u0000\u0001\u0001\u000f\u001f\u0006\u000f\u001f\u0000\u0003\u000f \u000b\u0000\f0\u0000\bbitdepth\u0000\u0000\r\u000f \u0000\u0001K\u0000\u0000\u0001\u0001\u000f!\u0006\u000f!\u0000\u0003\u000f\"\u000f#\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000f\"\u0000\u0003l\u0000\u0005\u0001\u0001\u000f$\r\u000f$\u0000\u0002n\u0000\u0000\u0001\u0001\u000f%\u000f&\r\u000f%\u0000\u00024\u0000\u0000\u0001\u0001\u000f'\n\u0000\u0004\ncobj\r\u000f'\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000f&\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f#\u0000\u0003\u000f(\u000f)\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000f(\u0000\u0003l\u0000\u0005\u0001\u0001\u000f*\r\u000f*\u0000\u0002n\u0000\u0000\u0001\u0001\u000f+\u000f,\r\u000f+\u0000\u00024\u0000\u0000\u0001\u0001\u000f-\n\u0000\u0004\ncobj\r\u000f-\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0002\r\u000f,\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f)\u0000\u0003\u000f.\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000f.\u0000\u0001m\u0000\u0000\u0001\u0001\u000f\/\u000e\u000f\/\u0000\u0001\u000f0\u0011\u000f0\u0000\"\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000b\u0000i\u0000t\u0000d\u0000e\u0000p\u0000t\u0000h\u0006\u0000\u0000\u0006\u0000\u0000\r\u000f\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000f\u001a\u0000\u0002\u000f1\u000f2\r\u000f1\u0000\u0002=\u0000\u0003\u0001\u0001\u000f3\u000f4\r\u000f3\u0000\u0002n\u0000\u0000\u0001\u0001\u000f5\u000f6\r\u000f5\u0000\u00024\u0000\u0000\u0001\u0001\u000f7\n\u0000\u0004\ncobj\r\u000f7\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000f6\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000f4\u0000\u0001m\u0000\u0000\u0001\u0001\u000f8\u000e\u000f8\u0000\u0001\u000f9\u0011\u000f9\u0000 \u0000C\u0000o\u0000m\u0000p\u0000r\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000m\u0000o\u0000d\u0000e\u0002\u000f2\u0000\u0002\u000f:\u000f;\r\u000f:\u0000\u0002r\u0000\u0000\u0001\u0001\u000f<\u000f=\r\u000f<\u0000\u0002b\u0000\u0000\u0001\u0001\u000f>\u000f?\r\u000f>\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000f?\u0000\u0001K\u0000\u0000\u0001\u0001\u000f@\u0006\u000f@\u0000\u0003\u000fA\u000b\u0000\u00130\u0000\u000fcompressionmode\u0000\u0000\r\u000fA\u0000\u0001K\u0000\u0000\u0001\u0001\u000fB\u0006\u000fB\u0000\u0003\u000fC\u000fD\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000fC\u0000\u0003l\u0000\u0005\u0001\u0001\u000fE\r\u000fE\u0000\u0002n\u0000\u0000\u0001\u0001\u000fF\u000fG\r\u000fF\u0000\u00024\u0000\u0000\u0001\u0001\u000fH\n\u0000\u0004\ncobj\r\u000fH\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0001\r\u000fG\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000fD\u0000\u0003\u000fI\u000fJ\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000fI\u0000\u0003l\u0000\u0005\u0001\u0001\u000fK\r\u000fK\u0000\u0002n\u0000\u0000\u0001\u0001\u000fL\u000fM\r\u000fL\u0000\u00024\u0000\u0000\u0001\u0001\u000fN\n\u0000\u0004\ncobj\r\u000fN\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\u0002\r\u000fM\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000fJ\u0000\u0003\u000fO\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000fO\u0000\u0001m\u0000\u0000\u0001\u0001\u000fP\u000e\u000fP\u0000\u0001\u000fQ\u0011\u000fQ\u00000\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000c\u0000o\u0000m\u0000p\u0000r\u0000e\u0000s\u0000s\u0000i\u0000o\u0000n\u0000m\u0000o\u0000d\u0000e\u0006\u0000\u0000\u0006\u0000\u0000\r\u000f=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000f;\u0000\u0002\u000fR\u000fS\r\u000fR\u0000\u0002=\u0000\u0003\u0002\u0002\u0002\n\u000fT\u000fU\r\u000fT\u0000\u0002n\u0000\u0000\u0002\u0002\u0002\u0006\u000fV\u000fW\r\u000fV\u0000\u00024\u0000\u0000\u0002\u0003\u0002\u0006\u000fX\n\u0000\u0004\ncobj\r\u000fX\u0000\u0001m\u0000\u0000\u0002\u0004\u0002\u0005\u0003\u0000\u0001\r\u000fW\u0000\u0001o\u0000\u0000\u0002\u0002\u0002\u0003\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000fU\u0000\u0001m\u0000\u0000\u0002\u0006\u0002\t\u000fY\u000e\u000fY\u0000\u0001\u000fZ\u0011\u000fZ\u0000\u0016\u0000S\u0000t\u0000r\u0000e\u0000a\u0000m\u0000 \u0000s\u0000i\u0000z\u0000e\u0002\u000fS\u0000\u0002\u000f[\u000f\\\r\u000f[\u0000\u0002r\u0000\u0000\u0002\r\u0002&\u000f]\u000f^\r\u000f]\u0000\u0002b\u0000\u0000\u0002\r\u0002$\u000f_\u000f`\r\u000f_\u0000\u0001o\u0000\u0000\u0002\r\u0002\u000e\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000f`\u0000\u0001K\u0000\u0000\u0002\u000e\u0002#\u000fa\u0006\u000fa\u0000\u0003\u000fb\u000b\u0000\u000e0\u0000\nstreamsize\u0000\u0000\r\u000fb\u0000\u0001K\u0000\u0000\u0002\u0011\u0002!\u000fc\u0006\u000fc\u0000\u0003\u000fd\u000fe\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000fd\u0000\u0003l\u0000\u0005\u0002\u0012\u0002\u0016\u000ff\r\u000ff\u0000\u0002n\u0000\u0000\u0002\u0012\u0002\u0016\u000fg\u000fh\r\u000fg\u0000\u00024\u0000\u0000\u0002\u0013\u0002\u0016\u000fi\n\u0000\u0004\ncobj\r\u000fi\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0015\u0003\u0000\u0001\r\u000fh\u0000\u0001o\u0000\u0000\u0002\u0012\u0002\u0013\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000fe\u0000\u0003\u000fj\u000fk\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000fj\u0000\u0003l\u0000\u0005\u0002\u0017\u0002\u001b\u000fl\r\u000fl\u0000\u0002n\u0000\u0000\u0002\u0017\u0002\u001b\u000fm\u000fn\r\u000fm\u0000\u00024\u0000\u0000\u0002\u0018\u0002\u001b\u000fo\n\u0000\u0004\ncobj\r\u000fo\u0000\u0001m\u0000\u0000\u0002\u0019\u0002\u001a\u0003\u0000\u0002\r\u000fn\u0000\u0001o\u0000\u0000\u0002\u0017\u0002\u0018\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000fk\u0000\u0003\u000fp\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000fp\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001f\u000fq\u000e\u000fq\u0000\u0001\u000fr\u0011\u000fr\u0000&\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000s\u0000t\u0000r\u0000e\u0000a\u0000m\u0000s\u0000i\u0000z\u0000e\u0006\u0000\u0000\u0006\u0000\u0000\r\u000f^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000f\\\u0000\u0002\u000fs\u000ft\r\u000fs\u0000\u0002=\u0000\u0003\u0002)\u00021\u000fu\u000fv\r\u000fu\u0000\u0002n\u0000\u0000\u0002)\u0002-\u000fw\u000fx\r\u000fw\u0000\u00024\u0000\u0000\u0002*\u0002-\u000fy\n\u0000\u0004\ncobj\r\u000fy\u0000\u0001m\u0000\u0000\u0002+\u0002,\u0003\u0000\u0001\r\u000fx\u0000\u0001o\u0000\u0000\u0002)\u0002*\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\r\u000fv\u0000\u0001m\u0000\u0000\u0002-\u00020\u000fz\u000e\u000fz\u0000\u0001\u000f{\u0011\u000f{\u0000\u0010\u0000L\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0002\u000ft\u0000\u0002\u000f|\r\u000f|\u0000\u0002r\u0000\u0000\u00024\u0002M\u000f}\u000f~\r\u000f}\u0000\u0002b\u0000\u0000\u00024\u0002K\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u00024\u00025\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000f\u0000\u0001K\u0000\u0000\u00025\u0002J\u000f\u0006\u000f\u0000\u0003\u000f\u000b\u0000\f0\u0000\blanguage\u0000\u0000\r\u000f\u0000\u0001K\u0000\u0000\u00028\u0002H\u000f\u0006\u000f\u0000\u0003\u000f\u000f\u000b\u0000\t0\u0000\u0005label\u0000\u0000\r\u000f\u0000\u0003l\u0000\u0005\u00029\u0002=\u000f\r\u000f\u0000\u0002n\u0000\u0000\u00029\u0002=\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0002:\u0002=\u000f\n\u0000\u0004\ncobj\r\u000f\u0000\u0001m\u0000\u0000\u0002;\u0002<\u0003\u0000\u0001\r\u000f\u0000\u0001o\u0000\u0000\u00029\u0002:\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f\u0000\u0003\u000f\u000f\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u000f\u0000\u0003l\u0000\u0005\u0002>\u0002B\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002>\u0002B\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0002?\u0002B\u000f\n\u0000\u0004\ncobj\r\u000f\u0000\u0001m\u0000\u0000\u0002@\u0002A\u0003\u0000\u0002\r\u000f\u0000\u0001o\u0000\u0000\u0002>\u0002?\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u000f\u0000\u0003\u000f\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000f\u0000\u0001m\u0000\u0000\u0002C\u0002F\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\"\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000l\u0000a\u0000n\u0000g\u0000u\u0000a\u0000g\u0000e\u0006\u0000\u0000\u0006\u0000\u0000\r\u000f~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\r\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\r\r\u0000\u0002n\u0000\u0000\u0000\t\u0000\u000f\u000f\u000f\r\u000f\u0000\u0001m\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nnmbr\r\u000f\u0000\u0002n\u0001\u0000\u0000\t\u0000\f\u000f\u000f\r\u000f\u0000\u00012\u0000\u0001\u0000\n\u0000\f\n\u0000\u0004\ncpar\r\u000f\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u0001\u0000\u0000\u0002\r\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0002[\u0002[\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0002[\u0002[\u000f\u000f\u0001\u0000\u0000\f\u000f\u0000\u0017\u0000\u0011 format the list\t\u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\"\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000i\u0000s\u0000t\u0000\t\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0002[\u0002_\u000f\u000f\r\u000f\u0000\u0001J\u0000\u0000\u0002[\u0002]\u0002\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0002`\u0002g\u000f\u000f\r\u000f\u0000\u0002c\u0000\u0000\u0002`\u0002e\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002`\u0002a\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u000f\u0000\u0001m\u0000\u0000\u0002a\u0002d\n\u0000\u0004\nlist\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0005Y\u0000\u0000\u0002h\u0002\u000f\u000f\u000f\r\u000f\u0000\u0001k\u0000\u0000\u0002w\u0002\u000f\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0002w\u0002}\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002w\u0002{\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0002x\u0002{\u000f\n\u0000\u0004\ncobj\r\u000f\u0000\u0001o\u0000\u0000\u0002y\u0002z\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0002w\u0002x\u000b\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f}\r\u000f\u0000\u0002r\u0000\u0000\u0002~\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0002~\u0002\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0002\u0002|\u000f{\u000b|\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002z\u000bz\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002y\u000by\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002x\u000bx\u0000\t0\u0000\u0005label\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002w\u000bw\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002v\u000bv\u0000\t0\u0000\u0005value\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002u\u000bu\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0002\u0002\u000f\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002t\u000bt\u0000\t0\u0000\u0005value\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002s\u000bs\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000fr\r\u000f\u0000\u0001m\u0000\u0000\u0002\u0002\u000f\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000\u0006\u0000y\u0000e\u0000s\u0002r\u0000\u0000\u0002{\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0002~\u0002\r\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000f\r\u000f\u0000\u0000;\u0000\u0000\u0002\u0002\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002q\u000bq\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002}\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u000f\u0000\u0001m\u0000\u0000\u0002k\u0002lp\u0003p\u0000\u0001\r\u000f\u0000\u0002n\u0000\u0000\u0002l\u0002r\u000f\u000f\r\u000f\u0000\u0001m\u0000\u0000\u0002o\u0002qo\no\u0000\u0004\nnmbr\r\u000f\u0000\u0002n\u0001\u0000\u0002l\u0002o\u000f\u000f\r\u000f\u0000\u00012\u0000\u0001\u0002m\u0002on\nn\u0000\u0004\ncobj\r\u000f\u0000\u0001o\u0000\u0000\u0002l\u0002mm\u000bm\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0001\u0000\u0000\u0002\u000f\u0000\u0002\u000fl\r\u000f\u0000\u0001L\u0000\u0000\u0002\u0002\u000f\r\u000f\u0000\u0001o\u0000\u0000\u0002\u0002k\u000bk\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002l\u0000\u0000\u0002\r\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000jih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002i\u0000\u0000\u0001g\u0001j\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000g\u000ff\u000bg\u0000\u00120\u0000\u000eformatopenmeta\u0000\u0000\u0002\u000f\u0000\u0002\u000fe\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\f0\u0000\bmetadata\u0000\u0000\u0002e\u0000\u0000\u0002f\u0000\u0000\r\u000f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000c\u000f\u000f\u0001c\u0000\u0000\f\u000f\u0000\u001d\u0000\u0017 generate list of items\u0000\u0002\u0000\u0000\u000e\u000f\u0000\u0001\u000f\u0011\u000f\u0000.\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u000f\u000f\r\u000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002b\u0002b\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000a\u000ba\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0005Y\u0000\u0000\u0000\u0005\u0000\u000f`\u000f\u000f_\r\u000f\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u000f\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001a\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0018\u000f\u000f\r\u000f\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0018^\u000f\n^\u0000\u0004\ncpar\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017]\u000b]\u0000\u00050\u0000\u0001i\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\\\u000b\\\u0000\f0\u0000\bmetadata\u0000\u0000\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u000f\u0000\u0002\u000f\u000f\r\u000f\u0000\u0002r\u0000\u0000\u0000\u001b\u0000#\u000f\u000f\r\u000f\u0000\u0002n\u0000\u0001\u0000\u001b\u0000!\u000f\u000f\r\u000f\u0000\u0003I\u0000\u0000\u0000\u001c\u0000!Z\u000fY\u000bZ\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\u0002\u000f\u0000\u0002\u000fX\r\u000f\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001dW\u000bW\u0000\r0\u0000\tthis_item\u0000\u0000\u0002X\u0000\u0000\u0002Y\u0000\u0000\r\u000f\u0000\u0000f\u0000\u0000\u0000\u001b\u0000\u001c\r\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\r0\u0000\tthis_data\u0000\u0000\u0002\u000f\u0000\u0002\u000fU\r\u000f\u0000\u0004Z\u0000\u0000\u0000$\u0000\u000f\u000fTS\r\u000f\u0000\u0002F\u0000\u0000\u0000$\u00005\u0010\u0000\u0010\u0001\r\u0010\u0000\u0000\u0002>\u0001\u0000\u0000$\u0000*\u0010\u0002\u0010\u0003\r\u0010\u0002\u0000\u0002n\u0000\u0000\u0000$\u0000(\u0010\u0004\u0010\u0005\r\u0010\u0004\u0000\u00024\u0000\u0000\u0000%\u0000(R\u0010\u0006\nR\u0000\u0004\ncobj\r\u0010\u0006\u0000\u0001m\u0000\u0000\u0000&\u0000'Q\u0003Q\u0000\u0001\r\u0010\u0005\u0000\u0001o\u0000\u0000\u0000$\u0000%P\u000bP\u0000\r0\u0000\tthis_data\u0000\u0000\r\u0010\u0003\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0010\u0007\u000e\u0010\u0007\u0000\u0001\u0010\b\u0011\u0010\b\u0000\u0000\r\u0010\u0001\u0000\u0002>\u0001\u0000\u0000-\u00003\u0010\t\u0010\n\r\u0010\t\u0000\u0002n\u0000\u0000\u0000-\u00001\u0010\u000b\u0010\f\r\u0010\u000b\u0000\u00024\u0000\u0000\u0000.\u00001O\u0010\r\nO\u0000\u0004\ncobj\r\u0010\r\u0000\u0001m\u0000\u0000\u0000\/\u00000N\u0003N\u0000\u0002\r\u0010\f\u0000\u0001o\u0000\u0000\u0000-\u0000.M\u000bM\u0000\r0\u0000\tthis_data\u0000\u0000\r\u0010\n\u0000\u0001m\u0000\u0000\u00001\u00002\u0010\u000e\u000e\u0010\u000e\u0000\u0001\u0010\u000f\u0011\u0010\u000f\u0000\u0000\r\u000f\u0000\u0004Z\u0000\u0000\u00008\u0000\u0010\u0010\u0010\u0011\u0010\u0012L\r\u0010\u0010\u0000\u0002=\u0000\u0003\u00008\u0000>\u0010\u0013\u0010\u0014\r\u0010\u0013\u0000\u0002n\u0000\u0000\u00008\u0000<\u0010\u0015\u0010\u0016\r\u0010\u0015\u0000\u00024\u0000\u0000\u00009\u0000<K\u0010\u0017\nK\u0000\u0004\ncobj\r\u0010\u0017\u0000\u0001m\u0000\u0000\u0000:\u0000;J\u0003J\u0000\u0001\r\u0010\u0016\u0000\u0001o\u0000\u0000\u00008\u00009I\u000bI\u0000\r0\u0000\tthis_data\u0000\u0000\r\u0010\u0014\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0010\u0018\u000e\u0010\u0018\u0000\u0001\u0010\u0019\u0011\u0010\u0019\u0000\b\u0000t\u0000a\u0000g\u0000s\r\u0010\u0011\u0000\u0002r\u0000\u0000\u0000A\u0000S\u0010\u001a\u0010\u001b\r\u0010\u001a\u0000\u0002b\u0000\u0000\u0000A\u0000Q\u0010\u001c\u0010\u001d\r\u0010\u001c\u0000\u0001o\u0000\u0000\u0000A\u0000BH\u000bH\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u0010\u001d\u0000\u0001K\u0000\u0000\u0000B\u0000P\u0010\u001e\u0006\u0010\u001e\u0000\u0003G\u0010\u001fF\u000bG\u0000\b0\u0000\u0004tags\u0000\u0000\r\u0010\u001f\u0000\u0001K\u0000\u0000\u0000C\u0000N\u0010 \u0006\u0010 \u0000\u0003E\u0010!\u0010\"\u000bE\u0000\t0\u0000\u0005label\u0000\u0000\r\u0010!\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0010#\u000e\u0010#\u0000\u0001\u0010$\u0011\u0010$\u0000\b\u0000T\u0000a\u0000g\u0000s\u0006\u0010\"\u0000\u0003D\u0010%\u0010&\u000bD\u0000\t0\u0000\u0005value\u0000\u0000\r\u0010%\u0000\u0003l\u0000\u0005\u0000F\u0000J\u0010'CB\r\u0010'\u0000\u0002n\u0000\u0000\u0000F\u0000J\u0010(\u0010)\r\u0010(\u0000\u00024\u0000\u0000\u0000G\u0000JA\u0010*\nA\u0000\u0004\ncobj\r\u0010*\u0000\u0001m\u0000\u0000\u0000H\u0000I@\u0003@\u0000\u0002\r\u0010)\u0000\u0001o\u0000\u0000\u0000F\u0000G?\u000b?\u0000\r0\u0000\tthis_data\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\u0006\u0010&\u0000\u0003>\u0010+=\u000b>\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0010+\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0010,\u000e\u0010,\u0000\u0001\u0010-\u0011\u0010-\u0000\u001a\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000t\u0000a\u0000g\u0000s\u0006=\u0000\u0000\u0006F\u0000\u0000\r\u0010\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u0002\u0010\u0012\u0000\u0002\u0010.\u0010\/\r\u0010.\u0000\u0002F\u0000\u0000\u0000V\u0000i\u00100\u00101\r\u00100\u0000\u0002=\u0000\u0003\u0000V\u0000\\\u00102\u00103\r\u00102\u0000\u0002n\u0000\u0000\u0000V\u0000Z\u00104\u00105\r\u00104\u0000\u00024\u0000\u0000\u0000W\u0000Z;\u00106\n;\u0000\u0004\ncobj\r\u00106\u0000\u0001m\u0000\u0000\u0000X\u0000Y:\u0003:\u0000\u0001\r\u00105\u0000\u0001o\u0000\u0000\u0000V\u0000W9\u000b9\u0000\r0\u0000\tthis_data\u0000\u0000\r\u00103\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u00107\u000e\u00107\u0000\u0001\u00108\u0011\u00108\u0000\f\u0000r\u0000a\u0000t\u0000i\u0000n\u0000g\r\u00101\u0000\u0002>\u0001\u0000\u0000_\u0000g\u00109\u0010:\r\u00109\u0000\u0002n\u0000\u0000\u0000_\u0000c\u0010;\u0010<\r\u0010;\u0000\u00024\u0000\u0000\u0000`\u0000c8\u0010=\n8\u0000\u0004\ncobj\r\u0010=\u0000\u0001m\u0000\u0000\u0000a\u0000b7\u00037\u0000\u0002\r\u0010<\u0000\u0001o\u0000\u0000\u0000_\u0000`6\u000b6\u0000\r0\u0000\tthis_data\u0000\u0000\r\u0010:\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0010>\u000e\u0010>\u0000\u0001\u0010?\u0011\u0010?\u0000\u0014\u0000n\u0000o\u0000n\u0000e\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0002\u0010\/\u0000\u0002\u0010@5\r\u0010@\u0000\u0002r\u0000\u0000\u0000l\u0000\u0010A\u0010B\r\u0010A\u0000\u0002b\u0000\u0000\u0000l\u0000\u0010C\u0010D\r\u0010C\u0000\u0001o\u0000\u0000\u0000l\u0000m4\u000b4\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u0010D\u0000\u0001K\u0000\u0000\u0000m\u0000\u0010E\u0006\u0010E\u0000\u00033\u0010F2\u000b3\u0000\n0\u0000\u0006rating\u0000\u0000\r\u0010F\u0000\u0001K\u0000\u0000\u0000p\u0000\u0010G\u0006\u0010G\u0000\u00031\u0010H\u0010I\u000b1\u0000\t0\u0000\u0005label\u0000\u0000\r\u0010H\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0010J\u000e\u0010J\u0000\u0001\u0010K\u0011\u0010K\u0000\f\u0000R\u0000a\u0000t\u0000i\u0000n\u0000g\u0006\u0010I\u0000\u00030\u0010L\u0010M\u000b0\u0000\t0\u0000\u0005value\u0000\u0000\r\u0010L\u0000\u0003l\u0000\u0005\u0000u\u0000y\u0010N\/.\r\u0010N\u0000\u0002n\u0000\u0000\u0000u\u0000y\u0010O\u0010P\r\u0010O\u0000\u00024\u0000\u0000\u0000v\u0000y-\u0010Q\n-\u0000\u0004\ncobj\r\u0010Q\u0000\u0001m\u0000\u0000\u0000w\u0000x,\u0003,\u0000\u0002\r\u0010P\u0000\u0001o\u0000\u0000\u0000u\u0000v+\u000b+\u0000\r0\u0000\tthis_data\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0006\u0010M\u0000\u0003*\u0010R)\u000b*\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0010R\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0010S\u000e\u0010S\u0000\u0001\u0010T\u0011\u0010T\u0000\u001e\u0000m\u0000e\u0000t\u0000a\u0000d\u0000a\u0000t\u0000a\u0000-\u0000r\u0000a\u0000t\u0000i\u0000n\u0000g\u0006)\u0000\u0000\u00062\u0000\u0000\r\u0010B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u00025\u0000\u0000\u0001L\u0000\u0000\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002U\u0000\u0000\u000b`\u0000\u00050\u0000\u0001i\u0000\u0000\r\u000f\u0000\u0001m\u0000\u0000\u0000\b\u0000\t'\u0003'\u0000\u0001\r\u000f\u0000\u0002n\u0000\u0000\u0000\t\u0000\u000f\u0010U\u0010V\r\u0010U\u0000\u0001m\u0000\u0000\u0000\f\u0000\u000e&\n&\u0000\u0004\nnmbr\r\u0010V\u0000\u0002n\u0001\u0000\u0000\t\u0000\f\u0010W\u0010X\r\u0010W\u0000\u00012\u0000\u0001\u0000\n\u0000\f%\n%\u0000\u0004\ncpar\r\u0010X\u0000\u0001o\u0000\u0000\u0000\t\u0000\n$\u000b$\u0000\f0\u0000\bmetadata\u0000\u0000\u0001_\u0000\u0000\u0002\u000f\u0000\u0002\u0010Y\u0010Z\r\u0010Y\u0000\u0003l\u0000\u0002\u0000\u0000#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0010Z\u0000\u0002\u0010[\u0010\\\r\u0010[\u0000\u0003l\u0000\u0001\u0000\u0000 \u0010]\u0010^\u0001 \u0000\u0000\f\u0010]\u0000\u0017\u0000\u0011 format the list\t\u0000\u0002\u0000\u0000\u000e\u0010^\u0000\u0001\u0010_\u0011\u0010_\u0000\"\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000i\u0000s\u0000t\u0000\t\u0002\u0010\\\u0000\u0002\u0010`\u0010a\r\u0010`\u0000\u0002r\u0000\u0000\u0000\u0000\u0010b\u0010c\r\u0010b\u0000\u0001J\u0000\u0000\u0000\u0000\u001f\u0002\u001f\u0000\u0000\r\u0010c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0010a\u0000\u0002\u0010d\u0010e\r\u0010d\u0000\u0002r\u0000\u0000\u0000\u0000\u0010f\u0010g\r\u0010f\u0000\u0002c\u0000\u0000\u0000\u0000\u0010h\u0010i\r\u0010h\u0000\u0001o\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\r\u0010i\u0000\u0001m\u0000\u0000\u0000\u0000\u001c\n\u001c\u0000\u0004\nlist\r\u0010g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0002\u0010e\u0000\u0002\u0010j\u0010k\r\u0010j\u0000\u0005Y\u0000\u0000\u0000\u0000\u0010l\u001a\u0010m\u0010n\u0019\r\u0010l\u0000\u0001k\u0000\u0000\u0000\u0000\u0010o\u0002\u0010o\u0000\u0002\u0010p\u0010q\r\u0010p\u0000\u0002r\u0000\u0000\u0000\u0000\u0010r\u0010s\r\u0010r\u0000\u0002n\u0000\u0000\u0000\u0000\u0010t\u0010u\r\u0010t\u0000\u00024\u0000\u0000\u0000\u0000\u0018\u0010v\n\u0018\u0000\u0004\ncobj\r\u0010v\u0000\u0001o\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0010u\u0000\u0001o\u0000\u0000\u0000\u0000\u0016\u000b\u0016\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\r\u0010s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0010q\u0000\u0002\u0010w\u0014\r\u0010w\u0000\u0002r\u0000\u0000\u0000\u0000\u0010x\u0010y\r\u0010x\u0000\u0002n\u0000\u0001\u0000\u0000\u0010z\u0010{\r\u0010z\u0000\u0003I\u0000\u0000\u0000\u0000\u0013\u0010|\u0012\u000b\u0013\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\u0010|\u0000\u0002\u0010}\u0010~\r\u0010}\u0000\u0002n\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0010~\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\t0\u0000\u0005label\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\r\u000b\r\u0000\t0\u0000\u0005value\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\f\u000b\f\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\t0\u0000\u0005value\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\r0\u0000\tthis_item\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\u0006\u0000y\u0000e\u0000s\u0002\u0010\u0000\u0002\u0010\t\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u00006\u0000O\u0000p\u0000e\u0000n\u0000M\u0000e\u0000t\u0000a\u0000L\u0000o\u0000g\u0000o\u0000I\u0000c\u0000o\u0000n\u0000O\u0000n\u0000l\u0000y\u00002\u00005\u00006\u0000.\u0000p\u0000n\u0000g\u0002\t\u0000\u0000\u0002\u0012\u0000\u0000\r\u0010{\u0000\u0000f\u0000\u0000\u0000\u0000\r\u0010y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0000;\u0000\u0000\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0014\u0000\u0000\u000b\u001a\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0010m\u0000\u0001m\u0000\u0000\u0000\u0000\u0007\u0003\u0007\u0000\u0001\r\u0010n\u0000\u0002n\u0000\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0006\n\u0006\u0000\u0004\nnmbr\r\u0010\u0000\u0002n\u0001\u0000\u0000\u0000\u0010\u0010\r\u0010\u0000\u00012\u0000\u0001\u0000\u0000\u0005\n\u0005\u0000\u0004\ncobj\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0001\u0019\u0000\u0000\u0002\u0010k\u0000\u0002\u0010\u0003\r\u0010\u0000\u0001L\u0000\u0000\u0000\u0000\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0003\u0000\u0000\u0002\u000f\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002i\u0000\u0000\u0001k\u0001n\u0010\u0010\r\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0000*0\u0000\u0013getspotlightcomment\u0000\u0013getSpotlightComment\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0010\u0000\u0002O\u0000\u0000\u0000\u0000\u0000!\u0010\u0010\r\u0010\u0000\u0002w\u0000\u0000\u0000\b\u0000 \u0010\u0010\r\u0010\u0000\u0003Q\u0000\u0000\u0000\n\u0000 \u0010\u0010\r\u0010\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0017\u0010\r\u0010\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0016\u0010\u0010\r\u0010\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\ncomt\r\u0010\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0013\u0010\r\u0010\u0000\u0002c\u0000\u0000\u0000\r\u0000\u0013\u0010\u0010\r\u0010\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0010\n\u0000\u0004\npsxf\r\u0010\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u0010\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000f\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001>\u0002^\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0010\u0000\u00035\u0000\u0000\u0000\u0000\u0000\u0005\u0010\n\u0000\u0004\ncapp\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000 \u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\n\u0000\b\u000bkfrmID \u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0010\u0010\u0001\u0000\u0000\f\u0010\u0000\u0016\u0000\u0010 alfred specific\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000 \u0000 \u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000c\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002i\u0000\u0000\u0001o\u0001r\u0010\u0010\r\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0000\u00110\u0000\ralfred_result\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0010\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0010\u0010\u0001\u0000\u0000\f\u0010\u0000\u0017\u0000\u0011 format the list\t\u0000\u0002\u0000\u0000\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u0000\"\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000i\u0000s\u0000t\u0000\t\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0013\u0010\u0010\r\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0011\u0010\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001J\u0000\u0000\u0000\u0001\u0000\r\u0010\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u000b\u0010\u0010\r\u0010\u0000\u0003I\u0000\u0000\u0000\u0002\u0000\u000b\u0010\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0010\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002i\u0000\u0000\u0001s\u0001v\u0010\u0010\r\u0010\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u0002\u0010\u0000\u0002\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0000\u0000\u0002\u0000\u0000\r\u0010\u0000\u0001k\u0000\u0000\u0000\u0000\u0000'\u0010\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0010\u0010\r\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0010\u000e\u0010\u0000\u0001\u0010\u0011\u0010\u00008\u0000<\u0000?\u0000x\u0000m\u0000l\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000=\u0000\"\u00001\u0000.\u00000\u0000\"\u0000?\u0000>\u0000<\u0000i\u0000t\u0000e\u0000m\u0000s\u0000>\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0003X\u0000\u0000\u0000\u0004\u0000\u001e\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0019\u0010\u0010\r\u0010\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0010\u0010\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u000f0\u0000\u000balfred_item\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0000\u000f0\u0000\u000balfred_item\u0000\u0000\r\u0010\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0010\u0000\u0002\u0010\u0010\r\u0010\u0000\u0002r\u0000\u0000\u0000\u001f\u0000$\u0011\u0000\u0011\u0001\r\u0011\u0000\u0000\u0002b\u0000\u0000\u0000\u001f\u0000\"\u0011\u0002\u0011\u0003\r\u0011\u0002\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0011\u0003\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0011\u0004\u000e\u0011\u0004\u0000\u0001\u0011\u0005\u0011\u0011\u0005\u0000\u0010\u0000<\u0000\/\u0000i\u0000t\u0000e\u0000m\u0000s\u0000>\r\u0011\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0010\u0000\u0002\u0011\u0006\r\u0011\u0006\u0000\u0001L\u0000\u0000\u0000%\u0000'\u0011\u0007\r\u0011\u0007\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0010\u0000\u0002\u0011\b\u0011\t\r\u0011\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\t\u0000\u0002\u0011\n\u0011\u000b\r\u0011\n\u0000\u0002i\u0000\u0000\u0001w\u0001z\u0011\f\u0011\r\r\u0011\f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000e\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u0002\u0011\u000e\u0000\u0002\u0011\u000f\u0011\u0010\r\u0011\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0002\u0011\u0010\u0000\u0002\u0011\u0011\u0011\u0012\r\u0011\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0011\u0012\u0000\u0002\u0011\u0013\u0011\u0014\r\u0011\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0011\u0014\u0000\u0002\u0011\u0015\u0011\u0016\r\u0011\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u0011\u0016\u0000\u0002\u0011\u0017\r\u0011\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\r\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\f\u0011\u0018\r\u0011\u0018\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u000b\u0011\u0019\u0011\u001a\r\u0011\u0019\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u000b\u0011\u001b\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\u0011\u001b\u0000\u0002\u0011\u001c\u0011\u001d\r\u0011\u001c\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0002\u0011\u001d\u0000\u0002\u0011\u001e\u0011\u001f\r\u0011\u001e\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0011\u001f\u0000\u0002\u0011 \u0011!\r\u0011 \u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0011!\u0000\u0002\u0011\"\u0011#\r\u0011\"\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u0011#\u0000\u0002\u0011$\u0011%\r\u0011$\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0011%\u0000\u0002\u0011&\r\u0011&\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0011'\u000e\u0011'\u0000\u0001\u0011(\u0011\u0011(\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0011\u000b\u0000\u0002\u0011)\u0011*\r\u0011)\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011*\u0000\u0002\u0011+\u0011,\r\u0011+\u0000\u0002i\u0000\u0000\u0001{\u0001~\u0011-\u0011.\r\u0011-\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0011\/\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\u0011\/\u0000\u0002\u00110\u00111\r\u00110\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0002\u00111\u0000\u0002\u00112\u00113\r\u00112\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u00113\u0000\u0002\u00114\u00115\r\u00114\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u00115\u0000\u0002\u00116\u00117\r\u00116\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u00117\u0000\u0002\u00118\u00119\r\u00118\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u00119\u0000\u0002\u0011:\r\u0011:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011.\u0000\u0001k\u0000\u0000\u0000\u0000\u0000E\u0011;\u0002\u0011;\u0000\u0002\u0011<\u0011=\r\u0011<\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0014\u0011>\u0011?\r\u0011>\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0012\u0011@\u0011A\r\u0011@\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0010\u0011B\u0011C\r\u0011B\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u000e\u0011D\u0011E\r\u0011D\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\f\u0011F\u0011G\r\u0011F\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0011H\u0011I\r\u0011H\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0011J\u0011K\r\u0011J\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0011L\u000e\u0011L\u0000\u0001\u0011M\u0011\u0011M\u0000\u0016\u0000<\u0000i\u0000t\u0000e\u0000m\u0000 \u0000u\u0000i\u0000d\u0000=\u0000\"\r\u0011K\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\r\u0011I\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0011N\u000e\u0011N\u0000\u0001\u0011O\u0011\u0011O\u0000\u000e\u0000\"\u0000 \u0000a\u0000r\u0000g\u0000=\u0000\"\r\u0011G\u0000\u0002n\u0000\u0001\u0000\u0005\u0000\u000b\u0011P\u0011Q\r\u0011P\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u000b\u0011R\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u0011R\u0000\u0002\u0011S\r\u0011S\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011Q\u0000\u0000f\u0000\u0000\u0000\u0005\u0000\u0006\r\u0011E\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0011T\u000e\u0011T\u0000\u0001\u0011U\u0011\u0011U\u0000*\u0000\"\u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\u0000f\u0000i\u0000l\u0000e\u0000\"\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000=\u0000\"\r\u0011C\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\r\u0011A\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0011V\u000e\u0011V\u0000\u0001\u0011W\u0011\u0011W\u0000\u0004\u0000\"\u0000>\r\u0011?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0011=\u0000\u0002\u0011X\u0011Y\r\u0011X\u0000\u0002r\u0000\u0000\u0000\u0015\u0000#\u0011Z\u0011[\r\u0011Z\u0000\u0002b\u0000\u0000\u0000\u0015\u0000!\u0011\\\u0011]\r\u0011\\\u0000\u0002b\u0000\u0000\u0000\u0015\u0000\u001f\u0011^\u0011_\r\u0011^\u0000\u0002b\u0000\u0000\u0000\u0015\u0000\u0018\u0011`\u0011a\r\u0011`\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0011a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0011b\u000e\u0011b\u0000\u0001\u0011c\u0011\u0011c\u0000\u000e\u0000<\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u0011_\u0000\u0002n\u0000\u0001\u0000\u0018\u0000\u001e\u0011d\u0011e\r\u0011d\u0000\u0003I\u0000\u0000\u0000\u0019\u0000\u001e\u0011f\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u0011f\u0000\u0002\u0011g\r\u0011g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011e\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\r\u0011]\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0011h\u000e\u0011h\u0000\u0001\u0011i\u0011\u0011i\u0000\u0010\u0000<\u0000\/\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u0011[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0011Y\u0000\u0002\u0011j\u0011k\r\u0011j\u0000\u0002r\u0000\u0000\u0000$\u00002\u0011l\u0011m\r\u0011l\u0000\u0002b\u0000\u0000\u0000$\u00000\u0011n\u0011o\r\u0011n\u0000\u0002b\u0000\u0000\u0000$\u0000.\u0011p\u0011q\r\u0011p\u0000\u0002b\u0000\u0000\u0000$\u0000'\u0011r\u0011s\r\u0011r\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0011s\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0011t\u000e\u0011t\u0000\u0001\u0011u\u0011\u0011u\u0000\u0014\u0000<\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u0011q\u0000\u0002n\u0000\u0001\u0000'\u0000-\u0011v\u0011w\r\u0011v\u0000\u0003I\u0000\u0000\u0000(\u0000-\u0011x\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u0011x\u0000\u0002\u0011y\r\u0011y\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011w\u0000\u0000f\u0000\u0000\u0000'\u0000(\r\u0011o\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0011z\u000e\u0011z\u0000\u0001\u0011{\u0011\u0011{\u0000\u0016\u0000<\u0000\/\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u0011m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0011k\u0000\u0002\u0011|\u0011}\r\u0011|\u0000\u0002r\u0000\u0000\u00003\u0000<\u0011~\u0011\r\u0011~\u0000\u0002b\u0000\u0000\u00003\u0000:\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u00003\u00008\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u00003\u00006\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0011\u0000\u0001m\u0000\u0000\u00004\u00005\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\f\u0000<\u0000i\u0000c\u0000o\u0000n\u0000>\r\u0011\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\r\u0011\u0000\u0001m\u0000\u0000\u00008\u00009\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000<\u0000\/\u0000i\u0000c\u0000o\u0000n\u0000>\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0011}\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002r\u0000\u0000\u0000=\u0000B\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u0000=\u0000@\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0011\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000<\u0000\/\u0000i\u0000t\u0000e\u0000m\u0000>\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0011\u0000\u0002\u0011\r\u0011\u0000\u0001L\u0000\u0000\u0000C\u0000E\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0011,\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002i\u0000\u0000\u0001\u0001\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0011\u0000\u0002\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0002\u0000\u0000\u0002\u0000\u0000\r\u0011\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#\u0011\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000 \u0011\u0011}|\r\u0011\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001{\u000b{\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\r\u0011\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0012\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\r\u0011\u0000\u0004Z\u0000\u0001\u0000\u0006\u0000\u001c\u0011\u0011zy\r\u0011\u0000\u0002>\u0001\u0000\u0000\u0006\u0000\u0013\u0011\u0011\r\u0011\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\u0011\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\u0011x\u0011w\u000bx\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bv\u000bv\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0002\u0011\u0000\u0002\u0011u\r\u0011\u0000\u0001o\u0000\u0000\u0000\b\u0000\rt\u000bt\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0011\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0011\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012s\ns\u0000\u0004\nmsng\r\u0011\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017r\nr\u0000\b\u000bboovtrue\u0002z\u0000\u0000\u0001y\u0000\u0000\u0002}\u0000\u0000\u0001|\u0000\u0000\u0002\u0011\u0000\u0002\u0011q\r\u0011\u0000\u0001L\u0000\u0000\u0000!\u0000#\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000!\u0000\"p\np\u0000\b\u000bboovfals\u0002q\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000l\u0011\u0011\u0001l\u0000\u0000\f\u0011\u0000\u0014\u0000\u000e check version\u0000\u0002\u0000\u0000\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u001c\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002i\u0000\u0000\u0001\u0001\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000h\u0011g\u000bh\u0000\u00190\u0000\u0015alfred_version_notify\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\n0\u0000\u0006wfname\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000c\u000bc\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0011\u0000\u0002\u0011a\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0002a\u0000\u0000\u0002g\u0000\u0000\r\u0011\u0000\u0001k\u0000\u0000\u0000\u0000\u0000-\u0011\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0011\u0011\r\u0011\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002_\u0002_\u0000\u0000\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\n0\u0000\u0006notify\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0004Z\u0000\u0000\u0000\u0005\u0000*\u0011\u0011]\\\r\u0011\u0000\u0001H\u0000\u0000\u0000\u0005\u0000\u0010\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0000\u0005\u0000\u000f[\u0011Z\u000b[\u0000\"0\u0000\u000fislatestversion\u0000\u000fisLatestVersion\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007Y\u000bY\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\bX\u000bX\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\b\u0000\tW\u000bW\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\t\u0000\nV\u000bV\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0011\u0000\u0002\u0011U\r\u0011\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000bT\u000bT\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0002U\u0000\u0000\u0002Z\u0000\u0000\r\u0011\u0000\u0002r\u0000\u0000\u0000\u0013\u0000&\u0011\u0011\r\u0011\u0000\u0003I\u0000\u0000\u0000\u0013\u0000$S\u0011R\u000bS\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0011\u0011\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015Q\u000bQ\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0011\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u000e\u0000-\u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001c\u0011\u0011\r\u0011\u0000\u0002b\u0000\u0000\u0000\u0017\u0000\u001a\u0011\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000*\u0000A\u0000 \u0000n\u0000e\u0000w\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \r\u0011\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019P\u000bP\u0000\n0\u0000\u0006wfname\u0000\u0000\r\u0011\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000,\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000i\u0000s\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u00006\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000a\u0000t\u0000e\u0000s\u0000t\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0011\u000e\u0011\u0000\u0001\u0011\u0011\u0011\u0000\u0014\u0000@\u0000@\u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000@\u0000@\u0002\u0011\u0000\u0002\u0011\u0011\r\u0011\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fO\nO\u0000\b\u000bboovtrue\u0002\u0011\u0000\u0002\u0011N\r\u0011\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0011\u000e\u0011\u0000\u0001\u0012\u0000\u0011\u0012\u0000\u0000\u000e\u0000n\u0000e\u0000w\u0000.\u0000p\u0000n\u0000g\u0002N\u0000\u0000\u0002R\u0000\u0000\r\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\n0\u0000\u0006notify\u0000\u0000\u0002]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0011\u0000\u0002\u0012\u0001L\r\u0012\u0001\u0000\u0001L\u0000\u0000\u0000+\u0000-\u0012\u0002\r\u0012\u0002\u0000\u0001o\u0000\u0000\u0000+\u0000,K\u000bK\u0000\n0\u0000\u0006notify\u0000\u0000\u0002L\u0000\u0000\u0002\u0011\u0000\u0002\u0012\u0003\u0012\u0004\r\u0012\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000JIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002\u0012\u0004\u0000\u0002\u0012\u0005\u0012\u0006\r\u0012\u0005\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0007\u0012\b\r\u0012\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000G\u0012\tF\u000bG\u0000\"0\u0000\u000fislatestversion\u0000\u000fisLatestVersion\u0002\u0012\t\u0000\u0002\u0012\n\u0012\u000b\r\u0012\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0012\u000b\u0000\u0002\u0012\f\u0012\r\r\u0012\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u0002\u0012\r\u0000\u0002\u0012\u000e\u0012\u000f\r\u0012\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u0012\u000f\u0000\u0002\u0012\u0010\u0012\u0011\r\u0012\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002\u0012\u0011\u0000\u0002\u0012\u0012A\r\u0012\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0002A\u0000\u0000\u0002F\u0000\u0000\r\u0012\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0012\u0013\u0002\u0012\u0013\u0000\u0002\u0012\u0014\u0012\u0015\r\u0012\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0012\u0016\u0012\u0017\r\u0012\u0016\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0007\u0012\u0018\u0012\u0019\r\u0012\u0018\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0007?\u0012\u001a>\u000b?\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0012\u001a\u0000\u0002\u0012\u001b\u0012\u001c\r\u0012\u001b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0012\u001d\u000e\u0012\u001d\u0000\u0001\u0012\u001e\u0011\u0012\u001e\u0000\u0016\u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0000c\u0000h\u0000e\u0000c\u0000k\u0002\u0012\u001c\u0000\u0002\u0012\u001f=\r\u0012\u001f\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003<\u000b<\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002=\u0000\u0000\u0002>\u0000\u0000\r\u0012\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001;\u000b;\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0012\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\r0\u0000\ttimestamp\u0000\u0000\u0002\u0012\u0015\u0000\u0002\u0012 \u0012!\r\u0012 \u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0012\"\u0012#\r\u0012\"\u0000\u0002n\u0000\u0003\u0000\n\u0000\u0011\u0012$\u0012%\r\u0012$\u0000\u0003I\u0000\u0000\u0000\u000b\u0000\u00119\u0012&8\u000b9\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u0012&\u0000\u0002\u0012'\u0012(\r\u0012'\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0012)\u000e\u0012)\u0000\u0001\u0012*\u0011\u0012*\u0000\u001e\u0000i\u0000s\u0000L\u0000a\u0000t\u0000e\u0000s\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0012(\u0000\u0002\u0012+7\r\u0012+\u0000\u0001o\u0000\u0000\u0000\f\u0000\r6\u000b6\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u00027\u0000\u0000\u00028\u0000\u0000\r\u0012%\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b5\u000b5\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0012#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00004\u000b4\u0000\u00180\u0000\nlastresult\u0000\nlastResult\u0002\u0012!\u0000\u0002\u0012,\u0012-\r\u0012,\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001d\u0012.\u0012\/\r\u0012.\u0000\u0002n\u0000\u0003\u0000\u0014\u0000\u001b\u00120\u00121\r\u00120\u0000\u0003I\u0000\u0000\u0000\u0015\u0000\u001b3\u001222\u000b3\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u00122\u0000\u0002\u00123\u00124\r\u00123\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u00125\u000e\u00125\u0000\u0001\u00126\u0011\u00126\u0000\u001a\u0000l\u0000a\u0000t\u0000e\u0000s\u0000t\u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u00124\u0000\u0002\u001271\r\u00127\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u00170\u000b0\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u00021\u0000\u0000\u00022\u0000\u0000\r\u00121\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\/\u000b\/\u0000\u00060\u0000\u0002wf\u0000\u0000\r\u0012\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\u0002\u0012-\u0000\u0002\u00128\u00129\r\u00128\u0000\u0003Q\u0000\u0000\u0000\u001e\u0000\/\u0012:\u0012;-\r\u0012:\u0000\u0002r\u0000\u0000\u0000!\u0000&\u0012<\u0012=\r\u0012<\u0000\u0002c\u0000\u0000\u0000!\u0000$\u0012>\u0012?\r\u0012>\u0000\u0001o\u0000\u0000\u0000!\u0000\",\u000b,\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\r\u0012?\u0000\u0001m\u0000\u0000\u0000\"\u0000#+\n+\u0000\u0004\nnmbr\r\u0012=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\r\u0012;\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000)('\n)\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001(\u0000\u0000\u0002'\u0000\u0000\u0001-\u0000\u0000\u0002\u00129\u0000\u0002\u0012@\u0012A\r\u0012@\u0000\u0003l\u0000\u0002\u00000\u00000&%$\u0001&\u0000\u0000\u0001%\u0000\u0000\u0001$\u0000\u0000\u0002\u0012A\u0000\u0002\u0012B\u0012C\r\u0012B\u0000\u0004Z\u0000\u0000\u00000\u0000o\u0012D\u0012E#\"\r\u0012D\u0000\u0002F\u0000\u0000\u00000\u0000C\u0012F\u0012G\r\u0012F\u0000\u0002F\u0000\u0000\u00000\u0000;\u0012H\u0012I\r\u0012H\u0000\u0002>\u0001\u0000\u00000\u00003\u0012J\u0012K\r\u0012J\u0000\u0001o\u0000\u0000\u00000\u00001!\u000b!\u0000\r0\u0000\ttimestamp\u0000\u0000\r\u0012K\u0000\u0001m\u0000\u0000\u00001\u00002 \n \u0000\u0004\nmsng\r\u0012I\u0000\u0002>\u0001\u0000\u00006\u00009\u0012L\u0012M\r\u0012L\u0000\u0001o\u0000\u0000\u00006\u00007\u001f\u000b\u001f\u0000\u00180\u0000\nlastresult\u0000\nlastResult\r\u0012M\u0000\u0001m\u0000\u0000\u00007\u00008\u001e\n\u001e\u0000\u0004\nmsng\r\u0012G\u0000\u0002>\u0001\u0000\u0000>\u0000A\u0012N\u0012O\r\u0012N\u0000\u0001o\u0000\u0000\u0000>\u0000?\u001d\u000b\u001d\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\r\u0012O\u0000\u0001m\u0000\u0000\u0000?\u0000@\u001c\n\u001c\u0000\u0004\nmsng\r\u0012E\u0000\u0004Z\u0000\u0000\u0000F\u0000k\u0012P\u0012Q\u0012R\u001b\r\u0012P\u0000\u0002F\u0000\u0000\u0000F\u0000W\u0012S\u0012T\r\u0012S\u0000\u0003l\u0000\u0005\u0000F\u0000O\u0012U\u001a\u0019\r\u0012U\u0000\u0002A\u0000\u0001\u0000F\u0000O\u0012V\u0012W\r\u0012V\u0000\u0002\\\u0000\u0000\u0000F\u0000M\u0012X\u0012Y\r\u0012X\u0000\u0003l\u0000\u0005\u0000F\u0000K\u0012Z\u0018\u0017\r\u0012Z\u0000\u0003I\u0000\u0002\u0000F\u0000K\u0016\u0015\u0014\n\u0016\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0015\u0000\u0000\u0002\u0014\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\r\u0012Y\u0000\u0001o\u0000\u0000\u0000K\u0000L\u0013\u000b\u0013\u0000\r0\u0000\ttimestamp\u0000\u0000\r\u0012W\u0000\u0001o\u0000\u0000\u0000M\u0000N\u0012\u000b\u0012\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\r\u0012T\u0000\u0002B\u0000\u0001\u0000R\u0000U\u0012[\u0012\\\r\u0012[\u0000\u0001o\u0000\u0000\u0000R\u0000S\u0011\u000b\u0011\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\r\u0012\\\u0000\u0001o\u0000\u0000\u0000S\u0000T\u0010\u000b\u0010\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\r\u0012Q\u0000\u0001k\u0000\u0000\u0000Z\u0000\\\u0012]\u0002\u0012]\u0000\u0002\u0012^\u0012_\r\u0012^\u0000\u0003l\u0000\u0001\u0000Z\u0000Z\u000f\u0012`\u0012a\u0001\u000f\u0000\u0000\f\u0012`\u0000\u001b\u0000\u0015 cache is still valid\u0000\u0002\u0000\u0000\u000e\u0012a\u0000\u0001\u0012b\u0011\u0012b\u0000*\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0000 \u0000i\u0000s\u0000 \u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0002\u0012_\u0000\u0002\u0012c\u000e\r\u0012c\u0000\u0001L\u0000\u0000\u0000Z\u0000\\\u0012d\r\u0012d\u0000\u0001m\u0000\u0000\u0000Z\u0000[\r\n\r\u0000\b\u000bboovtrue\u0002\u000e\u0000\u0000\u0002\u0012R\u0000\u0002\u0012e\u0012f\r\u0012e\u0000\u0002?\u0000\u0001\u0000_\u0000b\u0012g\u0012h\r\u0012g\u0000\u0001o\u0000\u0000\u0000_\u0000`\f\u000b\f\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\r\u0012h\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u000b\u000b\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u0002\u0012f\u0000\u0002\u0012i\n\r\u0012i\u0000\u0001k\u0000\u0000\u0000e\u0000g\u0012j\u0002\u0012j\u0000\u0002\u0012k\u0012l\r\u0012k\u0000\u0003l\u0000\u0001\u0000e\u0000e\t\u0012m\u0012n\u0001\t\u0000\u0000\f\u0012m\u0000U\u0000O no need to check if we already know there's a newer version, regardless of age\u0000\u0002\u0000\u0000\u000e\u0012n\u0000\u0001\u0012o\u0011\u0012o\u0000\u0000 \u0000n\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000w\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000k\u0000n\u0000o\u0000w\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000'\u0000s\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000,\u0000 \u0000r\u0000e\u0000g\u0000a\u0000r\u0000d\u0000l\u0000e\u0000s\u0000s\u0000 \u0000o\u0000f\u0000 \u0000a\u0000g\u0000e\u0002\u0012l\u0000\u0002\u0012p\b\r\u0012p\u0000\u0001L\u0000\u0000\u0000e\u0000g\u0012q\r\u0012q\u0000\u0001m\u0000\u0000\u0000e\u0000f\u0007\n\u0007\u0000\b\u000bboovfals\u0002\b\u0000\u0000\u0002\n\u0000\u0000\u0001\u001b\u0000\u0000\u0002#\u0000\u0000\u0001\"\u0000\u0000\u0002\u0012C\u0000\u0002\u0012r\u0012s\r\u0012r\u0000\u0003l\u0000\u0001\u0000p\u0000p\u0006\u0012t\u0012u\u0001\u0006\u0000\u0000\f\u0012t\u0000\u001a\u0000\u0014 spawn cache process\u0000\u0002\u0000\u0000\u000e\u0012u\u0000\u0001\u0012v\u0011\u0012v\u0000(\u0000 \u0000s\u0000p\u0000a\u0000w\u0000n\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0002\u0012s\u0000\u0002\u0012w\u0012x\r\u0012w\u0000\u0003I\u0000\u0002\u0000p\u0000\u0005\u0012y\u0004\n\u0005\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0012y\u0000\u0002b\u0000\u0000\u0000p\u0000\u0012z\u0012{\r\u0012z\u0000\u0002b\u0000\u0000\u0000p\u0000\u0012|\u0012}\r\u0012|\u0000\u0002b\u0000\u0000\u0000p\u0000\u0012~\u0012\r\u0012~\u0000\u0002b\u0000\u0000\u0000p\u0000\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000p\u0000}\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000p\u0000{\u0012\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000p\u0000q\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0014\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \r\u0012\u0000\u0002n\u0000\u0000\u0000q\u0000z\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0000x\u0000z\u0003\n\u0003\u0000\u0004\nstrq\r\u0012\u0000\u0003l\u0000\u0005\u0000q\u0000x\u0012\u0002\u0001\r\u0012\u0000\u0002b\u0000\u0000\u0000q\u0000x\u0012\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000q\u0000v\u0000\u000b\u0000\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\r\u0012\u0000\u0001m\u0000\u0000\u0000v\u0000w\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000$\u0000\/\u0000c\u0000a\u0000c\u0000h\u0000e\u0000-\u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\r\u0012\u0000\u00011\u0000\u0000\u0000{\u0000|\n\u0000\u0004\nspac\r\u0012\u0000\u0002n\u0000\u0000\u0000}\u0000\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\nstrq\r\u0012\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0012\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nspac\r\u0012}\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\r\u0012{\u0000\u0001m\u0000\u0000\u0000\u0000\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000(\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000&\u0000 \u0002\u0004\u0000\u0000\u0002\u0012x\u0000\u0002\u0012\r\u0012\u0000\u0001L\u0000\u0000\u0000\u0000\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0012\u0006\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0000\u001c0\u0000\fcheckversion\u0000\fcheckVersion\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0001k\u0000\u0000\u0000\u0000\u0000 \u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u000b\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\t\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0012\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u00008\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \u0000-\u0000s\u0000 \r\u0012\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u00160\u0000\tupdateurl\u0000\tupdateURL\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0010\u0000?\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000=\r\u0012\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003Q\u0000\u0000\u0000\u000e\u0000 \u0012\u0012\r\u0012\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0017\u0012\r\u0012\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u0016\u0012\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000@\u0000: this is performed as a last step, and so is ok to be slow\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000s\u0000t\u0000e\u0000p\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000o\u0000 \u0000i\u0000s\u0000 \u0000o\u0000k\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000s\u0000l\u0000o\u0000w\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0000\u001e0\u0000\rgetversionurl\u0000\rgetVersionURL\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0001k\u0000\u0000\u0000\u0000\u0000 \u0012\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u000b\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\t\u0012\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0012\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u00008\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \u0000-\u0000s\u0000 \r\u0012\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bdownloadurl\u0000\u000bdownloadURL\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\u0010\u0000?\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000=\r\u0012\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0003Q\u0000\u0000\u0000\u000e\u0000 \u0012\u0012\r\u0012\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0017\u0012\r\u0012\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u0016\u0012\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0012\u0012\u0001\u0000\u0000\f\u0012\u0000\u0016\u0000\u0010 general utility\u0000\u0002\u0000\u0000\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000 \u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000l\u0000 \u0000u\u0000t\u0000i\u0000l\u0000i\u0000t\u0000y\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006header\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0006\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0012\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\b\u0000 \u0000-\u0000H\u0000 \r\u0012\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0004\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0000\u0002\u0000\u0004\n\u0000\u0004\nstrq\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\n0\u0000\u0006header\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0000\u001a0\u0000\u000bcurladddata\u0000\u000bcurlAddData\u0002\u0012\u0000\u0002\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedata\u0000\u0007theData\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0006\u0012\r\u0012\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0012\u0012\r\u0012\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0012\u0000\u0001\u0012\u0011\u0012\u0000\b\u0000 \u0000-\u0000d\u0000 \r\u0012\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0004\u0012\u0012\r\u0012\u0000\u00011\u0000\u0000\u0000\u0002\u0000\u0004\n\u0000\u0004\nstrq\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00120\u0000\u0007thedata\u0000\u0007theData\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0002i\u0000\u0000\u0001\u0001\u0012\u0012\r\u0012\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0012\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u0002\u0012\u0000\u0002\u0012\u0012\r\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0012\u0000\u0002\u0013\u0000\u0013\u0001\r\u0013\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tstartword\u0000\tstartWord\u0002\u0013\u0001\u0000\u0002\u0013\u0002\r\u0013\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007endword\u0000\u0007endWord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0012\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0013\u0003\u0002\u0013\u0003\u0000\u0002\u0013\u0004\u0013\u0005\r\u0013\u0004\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0013\u0006\u0013\u0007\r\u0013\u0006\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u0013\b\u0013\t\r\u0013\b\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\ntxdl\r\u0013\t\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\u0004\nascr\r\u0013\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0013\u0005\u0000\u0002\u0013\n\u0013\u000b\r\u0013\n\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b\u0013\f\u0013\r\r\u0013\f\u0000\u00011\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nspac\r\u0013\r\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0013\u000e\u0013\u000f\r\u0013\u000e\u0000\u00011\u0000\u0000\u0000\b\u0000\n\n\u0000\u0004\ntxdl\r\u0013\u000f\u0000\u00011\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nascr\u0002\u0013\u000b\u0000\u0002\u0013\u0010\u0013\u0011\r\u0013\u0010\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0013\u0012\u0013\u0013\r\u0013\u0012\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0013\u0014\u0013\u0015\r\u0013\u0014\u0000\u00012\u0000\u0001\u0000\r\u0000\u000f\n\u0000\u0004\ncitm\r\u0013\u0015\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0013\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002\u0013\u0011\u0000\u0002\u0013\u0016\u0013\u0017\r\u0013\u0016\u0000\u0003Q\u0000\u0000\u0000\u0012\u0000\/\u0013\u0018\u0013\u0019\u0013\u001a\r\u0013\u0018\u0000\u0002r\u0000\u0000\u0000\u0015\u0000$\u0013\u001b\u0013\u001c\r\u0013\u001b\u0000\u0002c\u0000\u0000\u0000\u0015\u0000\"\u0013\u001d\u0013\u001e\r\u0013\u001d\u0000\u0003l\u0000\u0005\u0000\u0015\u0000 \u0013\u001f\r\u0013\u001f\u0000\u0002n\u0000\u0000\u0000\u0015\u0000 \u0013 \u0013!\r\u0013 \u0000\u00037\u0001\u0000\u0000\u0016\u0000 \u0013\"\u0013#\n\u0000\u0004\ncobj\r\u0013\"\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001c\u000b\u0000\u00160\u0000\tstartword\u0000\tstartWord\r\u0013#\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001f\u000b\u0000\u00120\u0000\u0007endword\u0000\u0007endWord\r\u0013!\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0001\u0000\u0000\u0001\u0000\u0000\r\u0013\u001e\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nTEXT\r\u0013\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0013\u0019\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0013\u001a\u0000\u0002r\u0000\u0000\u0000,\u0000\/\u0013$\u0013%\r\u0013$\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0013&\u000e\u0013&\u0000\u0001\u0013'\u0011\u0013'\u0000\u0000\r\u0013%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0013\u0017\u0000\u0002\u0013(\u0013)\r\u0013(\u0000\u0002r\u0000\u0000\u00000\u00005\u0013*\u0013+\r\u0013*\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\u0013+\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0013,\u0013-\r\u0013,\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0013-\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0013)\u0000\u0002\u0013.\r\u0013.\u0000\u0001L\u0000\u0000\u00006\u00008\u0013\/\r\u0013\/\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0012\u0000\u0002\u00130\u00131\r\u00130\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00131\u0000\u0002\u00132\u00133\r\u00132\u0000\u0002i\u0000\u0000\u0001\u0001\u00134\u00135\r\u00134\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u00136\u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\u0002\u00136\u0000\u0002\u00137\r\u00137\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0000\u0000\u0002\u0000\u0000\r\u00135\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u00138\u0002\u00138\u0000\u0002\u00139\u0013:\r\u00139\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0013;\u0013<\r\u0013;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bboovfals\r\u0013<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002am\u0000\u0000\u0002\u0013:\u0000\u0002\u0013=\u0013>\r\u0013=\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0007\u0013?\u0013@\r\u0013?\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovfals\r\u0013@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002pm\u0000\u0000\u0002\u0013>\u0000\u0002\u0013A\u0013B\r\u0013A\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000b\u0013C\u0013D\r\u0013C\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0000\r\u0013D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0013B\u0000\u0002\u0013E\u0013F\r\u0013E\u0000\u0003Q\u0000\u0000\u0000\f\u0001\u0013G\u0013H\u0013I\r\u0013G\u0000\u0001k\u0000\u0000\u0000\u000f\u0001z\u0013J\u0002\u0013J\u0000\u0002\u0013K\u0013L\r\u0013K\u0000\u0004Z\u0000\u0000\u0000\u000f\u0000\u0013M\u0013N\r\u0013M\u0000\u0002?\u0000\u0001\u0000\u000f\u0000\u0018\u0013O\u0013P\r\u0013O\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0016\u0013Q\r\u0013Q\u0000\u0003I\u0000\u0001\u0000\u000f\u0000\u0016\u0013R\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0013R\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0012\u0013S\r\u0013S\u0000\u0002n\u0000\u0000\u0000\u000f\u0000\u0012\u0013T\u0013U\r\u0013T\u0000\u00012\u0000\u0001\u0000\u0010\u0000\u0012\n\u0000\u0004\ncha \r\u0013U\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0013P\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0000\u0001\r\u0013N\u0000\u0001k\u0000\u0000\u0000\u001b\u0000\u0013V\u0002\u0013V\u0000\u0002\u0013W\u0013X\r\u0013W\u0000\u0002r\u0000\u0000\u0000\u001b\u0000 \u0013Y\u0013Z\r\u0013Y\u0000\u0002n\u0000\u0003\u0000\u001b\u0000\u001e\u0013[\u0013\\\r\u0013[\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\ntxdl\r\u0013\\\u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nascr\r\u0013Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0013X\u0000\u0002\u0013]\u0013^\r\u0013]\u0000\u0002r\u0000\u0000\u0000!\u0000&\u0013_\u0013`\r\u0013_\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0013a\u000e\u0013a\u0000\u0001\u0013b\u0011\u0013b\u0000\u0000\r\u0013`\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0013c\u0013d\r\u0013c\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\ntxdl\r\u0013d\u0000\u00011\u0000\u0000\u0000\"\u0000#~\n~\u0000\u0004\nascr\u0002\u0013^\u0000\u0002\u0013e\u0013f\r\u0013e\u0000\u0004Z\u0000\u0000\u0000'\u0000z\u0013g\u0013h\u0013i}\r\u0013g\u0000\u0002=\u0000\u0003\u0000'\u00007\u0013j\u0013k\r\u0013j\u0000\u0002n\u0000\u0000\u0000'\u00002\u0013l\u0013m\r\u0013l\u0000\u00037\u0001\u0000\u0000(\u00002|\u0013n\u0013o\n|\u0000\u0004\ncha \r\u0013n\u0000\u0001m\u0000\u0000\u0000,\u0000.{\u0003{\r\u0013o\u0000\u0001m\u0000\u0000\u0000\/\u00001z\u0003z\r\u0013m\u0000\u0001o\u0000\u0000\u0000'\u0000(y\u000by\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\r\u0013k\u0000\u0001J\u0000\u0000\u00002\u00006\u0013p\u0002\u0013p\u0000\u0002\u0013q\u0013r\r\u0013q\u0000\u0001m\u0000\u0000\u00002\u00003\u0013s\u000e\u0013s\u0000\u0001\u0013t\u0011\u0013t\u0000\u0002\u0000a\u0002\u0013r\u0000\u0002\u0013ux\r\u0013u\u0000\u0001m\u0000\u0000\u00003\u00004\u0013v\u000e\u0013v\u0000\u0001\u0013w\u0011\u0013w\u0000\u0002\u0000m\u0002x\u0000\u0000\r\u0013h\u0000\u0001k\u0000\u0000\u0000:\u0000M\u0013x\u0002\u0013x\u0000\u0002\u0013y\u0013z\r\u0013y\u0000\u0002r\u0000\u0000\u0000:\u0000I\u0013{\u0013|\r\u0013{\u0000\u0002c\u0000\u0000\u0000:\u0000G\u0013}\u0013~\r\u0013}\u0000\u0003l\u0000\u0005\u0000:\u0000E\u0013wv\r\u0013\u0000\u0002n\u0000\u0000\u0000:\u0000E\u0013\u0013\r\u0013\u0000\u00037\u0001\u0000\u0000;\u0000Eu\u0013\u0013\nu\u0000\u0004\ncha \r\u0013\u0000\u0001m\u0000\u0000\u0000?\u0000At\u0003t\u0000\u0001\r\u0013\u0000\u0001m\u0000\u0000\u0000B\u0000Ds\u0003s\r\u0013\u0000\u0001o\u0000\u0000\u0000:\u0000;r\u000br\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001w\u0000\u0000\u0001v\u0000\u0000\r\u0013~\u0000\u0001m\u0000\u0000\u0000E\u0000Fq\nq\u0000\u0004\nTEXT\r\u0013|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0013z\u0000\u0002\u0013o\r\u0013\u0000\u0002r\u0000\u0000\u0000J\u0000M\u0013\u0013\r\u0013\u0000\u0001m\u0000\u0000\u0000J\u0000Kn\nn\u0000\b\u000bboovtrue\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u00060\u0000\u0002am\u0000\u0000\u0002o\u0000\u0000\u0002\u0013i\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002=\u0000\u0003\u0000P\u0000`\u0013\u0013\r\u0013\u0000\u0002n\u0000\u0000\u0000P\u0000[\u0013\u0013\r\u0013\u0000\u00037\u0001\u0000\u0000Q\u0000[l\u0013\u0013\nl\u0000\u0004\ncha \r\u0013\u0000\u0001m\u0000\u0000\u0000U\u0000Wk\u0003k\r\u0013\u0000\u0001m\u0000\u0000\u0000X\u0000Zj\u0003j\r\u0013\u0000\u0001o\u0000\u0000\u0000P\u0000Qi\u000bi\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\r\u0013\u0000\u0001J\u0000\u0000\u0000[\u0000_\u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0002\u0000p\u0002\u0013\u0000\u0002\u0013h\r\u0013\u0000\u0001m\u0000\u0000\u0000\\\u0000]\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0002\u0000m\u0002h\u0000\u0000\u0002\u0013\u0000\u0002\u0013g\r\u0013\u0000\u0001k\u0000\u0000\u0000c\u0000v\u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0013\u0013\r\u0013\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000c\u0000n\u0013fe\r\u0013\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0013\u0013\r\u0013\u0000\u00037\u0001\u0000\u0000d\u0000nd\u0013\u0013\nd\u0000\u0004\ncha \r\u0013\u0000\u0001m\u0000\u0000\u0000h\u0000jc\u0003c\u0000\u0001\r\u0013\u0000\u0001m\u0000\u0000\u0000k\u0000mb\u0003b\r\u0013\u0000\u0001o\u0000\u0000\u0000c\u0000da\u000ba\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001f\u0000\u0000\u0001e\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\u0000n\u0000o`\n`\u0000\u0004\nTEXT\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0013\u0000\u0002\u0013^\r\u0013\u0000\u0002r\u0000\u0000\u0000s\u0000v\u0013\u0013\r\u0013\u0000\u0001m\u0000\u0000\u0000s\u0000t]\n]\u0000\b\u000bboovtrue\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00060\u0000\u0002pm\u0000\u0000\u0002^\u0000\u0000\u0002g\u0000\u0000\u0001}\u0000\u0000\u0002\u0013f\u0000\u0002\u0013[\r\u0013\u0000\u0002r\u0000\u0000\u0000{\u0000\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\u0000{\u0000|Z\u000bZ\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\u0013\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u00011\u0000\u0000\u0000}\u0000Y\nY\u0000\u0004\ntxdl\r\u0013\u0000\u00011\u0000\u0000\u0000|\u0000}X\nX\u0000\u0004\nascr\u0002[\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0013L\u0000\u0002\u0013\u0013\r\u0013\u0000\u0004Z\u0000\u0000\u0000\u0001,\u0013\u0013\u0013\u0013\r\u0013\u0000\u0002?\u0000\u0001\u0000\u0000\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013WV\r\u0013\u0000\u0003I\u0000\u0002\u0000\u0000UT\u0013\nU\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001T\u0000\u0000\u0006\u0013\u0000\u0003S\u0013\u0013\nS\u0000\u0004\npsof\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0002\u0000.\u0006\u0013\u0000\u0003R\u0013Q\nR\u0000\u0004\npsin\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000P\u000bP\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0006Q\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u0000\r\u0013\u0000\u0001k\u0000\u0000\u0000\u0000\u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\u0000\u0000N\u0013\u0013\u0001N\u0000\u0000\f\u0013\u0000\u001a\u0000\u0014 check for form 1.30\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000(\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000o\u0000r\u0000m\u0000 \u00001\u0000.\u00003\u00000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002r\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013ML\r\u0013\u0000\u0003I\u0000\u0002\u0000\u0000KJ\u0013\nK\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001J\u0000\u0000\u0006\u0013\u0000\u0003I\u0013\u0013\nI\u0000\u0004\npsof\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0002\u0000.\u0006\u0013\u0000\u0003H\u0013G\nH\u0000\u0004\npsin\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0006G\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002r\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0002[\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000D\u000bD\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013CB\r\u0013\u0000\u0002]\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013A@\r\u0013\u0000\u0002n\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u00037\u0001\u0000\u0000\u0000?\u0013\u0013\n?\u0000\u0004\nctxt\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000>\u0003>\u0000\u0001\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013=<\r\u0013\u0000\u0002\\\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000;\u000b;\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000:\u0003:\u0000\u0001\u0001=\u0000\u0000\u0001<\u0000\u0000\r\u0013\u0000\u0001o\u0000\u0000\u0000\u00009\u000b9\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001A\u0000\u0000\u0001@\u0000\u0000\r\u0013\u0000\u00011\u0000\u0000\u0000\u00008\n8\u0000\u0004\nhour\u0001C\u0000\u0000\u0001B\u0000\u0000\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0013\u0000\u0002\u00136\r\u0013\u0000\u0002r\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0002[\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u001343\r\u0013\u0000\u0002]\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u001321\r\u0013\u0000\u0002n\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u00037\u0001\u0000\u0000\u00000\u0013\u0013\n0\u0000\u0004\nctxt\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013\/.\r\u0013\u0000\u0002[\u0000\u0000\u0000\u0000\u0013\u0013\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000-\u000b-\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000,\u0003,\u0000\u0001\u0001\/\u0000\u0000\u0001.\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000+\u0003+\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u00012\u0000\u0000\u00011\u0000\u0000\r\u0013\u0000\u00011\u0000\u0000\u0000\u0000)\n)\u0000\u0004\nmin \u00014\u0000\u0000\u00013\u0000\u0000\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u00070\u0000\u0003num\u0000\u0000\u00026\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0002?\u0000\u0001\u0000\u0000\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0005\u0000\u0000\u0013'&\r\u0013\u0000\u0003I\u0000\u0002\u0000\u0000%$\u0013\n%\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001$\u0000\u0000\u0006\u0013\u0000\u0003#\u0013\u0013\n#\u0000\u0004\npsof\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u0013\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000\u0002\u0000:\u0006\u0013\u0000\u0003\"\u0013!\n\"\u0000\u0004\npsin\r\u0013\u0000\u0001o\u0000\u0000\u0000\u0000 \u000b \u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0006!\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\r\u0013\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\u0000\u0000\u0002\u0013\u0000\u0002\u0013\u001e\r\u0013\u0000\u0001k\u0000\u0000\u0000\u0001 \u0013\u0002\u0013\u0000\u0002\u0013\u0013\r\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u001d\u0013\u0013\u0001\u001d\u0000\u0000\f\u0013\u0000\u001a\u0000\u0014 check for form 1:30\u0000\u0002\u0000\u0000\u000e\u0013\u0000\u0001\u0013\u0011\u0013\u0000(\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000o\u0000r\u0000m\u0000 \u00001\u0000:\u00003\u00000\u0002\u0013\u0000\u0002\u0013\u0014\u0000\r\u0013\u0000\u0002r\u0000\u0000\u0000\u0000\u0014\u0001\u0014\u0002\r\u0014\u0001\u0000\u0003l\u0000\u0005\u0000\u0000\u0014\u0003\u001c\u001b\r\u0014\u0003\u0000\u0003I\u0000\u0002\u0000\u0000\u001a\u0019\u0014\u0004\n\u001a\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0019\u0000\u0000\u0006\u0014\u0004\u0000\u0003\u0018\u0014\u0005\u0014\u0006\n\u0018\u0000\u0004\npsof\r\u0014\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0014\u0007\u000e\u0014\u0007\u0000\u0001\u0014\b\u0011\u0014\b\u0000\u0002\u0000:\u0006\u0014\u0006\u0000\u0003\u0017\u0014\t\u0016\n\u0017\u0000\u0004\npsin\r\u0014\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0006\u0016\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\r\u0014\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\u0002\u0014\u0000\u0000\u0002\u0014\n\u0014\u000b\r\u0014\n\u0000\u0002r\u0000\u0000\u0000\u0001\b\u0014\f\u0014\r\r\u0014\f\u0000\u0002[\u0000\u0000\u0000\u0001\u0006\u0014\u000e\u0014\u000f\r\u0014\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014\u000f\u0000\u0003l\u0000\u0005\u0000\u0001\u0005\u0014\u0010\u0012\u0011\r\u0014\u0010\u0000\u0002]\u0000\u0000\u0000\u0001\u0005\u0014\u0011\u0014\u0012\r\u0014\u0011\u0000\u0003l\u0000\u0005\u0000\u0001\u0001\u0014\u0013\u0010\u000f\r\u0014\u0013\u0000\u0002n\u0000\u0000\u0000\u0001\u0001\u0014\u0014\u0014\u0015\r\u0014\u0014\u0000\u00037\u0001\u0000\u0000\u0001\u0001\u000e\u0014\u0016\u0014\u0017\n\u000e\u0000\u0004\nctxt\r\u0014\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\r\u0003\r\u0000\u0001\r\u0014\u0017\u0000\u0003l\u0000\u0005\u0000\u0001\u0000\u0014\u0018\f\u000b\r\u0014\u0018\u0000\u0002\\\u0000\u0000\u0000\u0001\u0000\u0014\u0019\u0014\u001a\r\u0014\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\r\u0014\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\t\u0003\t\u0000\u0001\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\r\u0014\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0014\u0012\u0000\u00011\u0000\u0000\u0001\u0001\u0001\u0004\u0007\n\u0007\u0000\u0004\nhour\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\r\u0014\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0014\u000b\u0000\u0002\u0014\u001b\u0005\r\u0014\u001b\u0000\u0002r\u0000\u0000\u0001\t\u0001 \u0014\u001c\u0014\u001d\r\u0014\u001c\u0000\u0002[\u0000\u0000\u0001\t\u0001\u001e\u0014\u001e\u0014\u001f\r\u0014\u001e\u0000\u0001o\u0000\u0000\u0001\t\u0001\n\u0004\u000b\u0004\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014\u001f\u0000\u0003l\u0000\u0005\u0001\n\u0001\u001d\u0014 \u0003\u0002\r\u0014 \u0000\u0002]\u0000\u0000\u0001\n\u0001\u001d\u0014!\u0014\"\r\u0014!\u0000\u0003l\u0000\u0005\u0001\n\u0001\u0019\u0014#\u0001\u0000\r\u0014#\u0000\u0002n\u0000\u0000\u0001\n\u0001\u0019\u0014$\u0014%\r\u0014$\u0000\u00037\u0001\u0000\u0001\u000b\u0001\u0019\u0014&\u0014'\n\u0000\u0004\nctxt\r\u0014&\u0000\u0003l\u0000\u0005\u0001\u0011\u0001\u0015\u0014(\r\u0014(\u0000\u0002[\u0000\u0000\u0001\u0011\u0001\u0015\u0014)\u0014*\r\u0014)\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u000b\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\r\u0014*\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0014\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014'\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0018\u0003\r\u0014%\u0000\u0001o\u0000\u0000\u0001\n\u0001\u000b\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r\u0014\"\u0000\u00011\u0000\u0000\u0001\u0019\u0001\u001c\n\u0000\u0004\nmin \u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\r\u0014\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0005\u0000\u0000\u0002\u001e\u0000\u0000\r\u0013\u0000\u0001k\u0000\u0000\u0001#\u0001,\u0014+\u0002\u0014+\u0000\u0002\u0014,\u0014-\r\u0014,\u0000\u0003l\u0000\u0001\u0001#\u0001#\u0014.\u0014\/\u0001\u0000\u0000\f\u0014.\u0000\u0013\u0000\r assume hours\u0000\u0002\u0000\u0000\u000e\u0014\/\u0000\u0001\u00140\u0011\u00140\u0000\u001a\u0000 \u0000a\u0000s\u0000s\u0000u\u0000m\u0000e\u0000 \u0000h\u0000o\u0000u\u0000r\u0000s\u0002\u0014-\u0000\u0002\u00141\r\u00141\u0000\u0002r\u0000\u0000\u0001#\u0001,\u00142\u00143\r\u00142\u0000\u0002[\u0000\u0000\u0001#\u0001*\u00144\u00145\r\u00144\u0000\u0001o\u0000\u0000\u0001#\u0001$\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u00145\u0000\u0003l\u0000\u0005\u0001$\u0001)\u00146\r\u00146\u0000\u0002]\u0000\u0000\u0001$\u0001)\u00147\u00148\r\u00147\u0000\u0001o\u0000\u0000\u0001$\u0001%\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\r\u00148\u0000\u00011\u0000\u0000\u0001%\u0001(\n\u0000\u0004\nhour\u0001\u0000\u0000\u0001\u0000\u0000\r\u00143\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0000\u0000\u0002\u0013\u0000\u0002\u00149\u0014:\r\u00149\u0000\u0003l\u0000\u0002\u0001-\u0001-\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014:\u0000\u0002\u0014;\u0014<\r\u0014;\u0000\u0003l\u0000\u0001\u0001-\u0001-\u0014=\u0014>\u0001\u0000\u0000\f\u0014=\u0000\/\u0000) determine am or pm based on current time\u0000\u0002\u0000\u0000\u000e\u0014>\u0000\u0001\u0014?\u0011\u0014?\u0000R\u0000 \u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000 \u0000a\u0000m\u0000 \u0000o\u0000r\u0000 \u0000p\u0000m\u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000t\u0000i\u0000m\u0000e\u0002\u0014<\u0000\u0002\u0014@\u0014A\r\u0014@\u0000\u0004Z\u0000\u0000\u0001-\u0001d\u0014B\u0014C\r\u0014B\u0000\u0002F\u0000\u0000\u0001-\u0001Z\u0014D\u0014E\r\u0014D\u0000\u0002F\u0000\u0000\u0001-\u0001H\u0014F\u0014G\r\u0014F\u0000\u0003l\u0000\n\u0001-\u00018\u0014H\r\u0014H\u0000\u0003l\u0000\u0005\u0001-\u00018\u0014I\r\u0014I\u0000\u0002F\u0000\u0000\u0001-\u00018\u0014J\u0014K\r\u0014J\u0000\u0001H\u0000\u0000\u0001-\u0001\/\u0014L\r\u0014L\u0000\u0001o\u0000\u0000\u0001-\u0001.\u000b\u0000\u00060\u0000\u0002am\u0000\u0000\r\u0014K\u0000\u0001H\u0000\u0000\u00012\u00014\u0014M\r\u0014M\u0000\u0001o\u0000\u0000\u00012\u00013\u000b\u0000\u00060\u0000\u0002pm\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014G\u0000\u0002A\u0000\u0001\u0001;\u0001D\u0014N\u0014O\r\u0014N\u0000\u0001o\u0000\u0000\u0001;\u0001<\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014O\u0000\u0003l\u0000\n\u0001<\u0001C\u0014P\r\u0014P\u0000\u0003l\u0000\u0005\u0001<\u0001C\u0014Q\r\u0014Q\u0000\u0002]\u0000\u0000\u0001<\u0001C\u0014R\u0014S\r\u0014R\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0003\u0000\f\r\u0014S\u0000\u00011\u0000\u0000\u0001?\u0001B\n\u0000\u0004\nhour\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014E\u0000\u0002A\u0000\u0001\u0001K\u0001V\u0014T\u0014U\r\u0014T\u0000\u0001o\u0000\u0000\u0001K\u0001L\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014U\u0000\u0003l\u0000\u0005\u0001L\u0001U\u0014V\r\u0014V\u0000\u0002n\u0000\u0003\u0001L\u0001U\u0014W\u0014X\r\u0014W\u0000\u00011\u0000\u0000\u0001Q\u0001U\n\u0000\u0004\ntime\r\u0014X\u0000\u0003l\u0000\u0005\u0001L\u0001Q\u0014Y\r\u0014Y\u0000\u0003I\u0000\u0002\u0001L\u0001Q\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014C\u0000\u0002r\u0000\u0000\u0001]\u0001`\u0014Z\u0014[\r\u0014Z\u0000\u0001m\u0000\u0000\u0001]\u0001^\n\u0000\b\u000bboovtrue\r\u0014[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002pm\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014A\u0000\u0002\u0014\\\u0014]\r\u0014\\\u0000\u0003l\u0000\u0002\u0001e\u0001e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014]\u0000\u0002\u0014^\u0014_\r\u0014^\u0000\u0004Z\u0000\u0000\u0001e\u0001x\u0014`\u0014a\r\u0014`\u0000\u0001o\u0000\u0000\u0001e\u0001f\u000b\u0000\u00060\u0000\u0002pm\u0000\u0000\r\u0014a\u0000\u0002r\u0000\u0000\u0001i\u0001t\u0014b\u0014c\r\u0014b\u0000\u0002[\u0000\u0000\u0001i\u0001r\u0014d\u0014e\r\u0014d\u0000\u0001o\u0000\u0000\u0001i\u0001j\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014e\u0000\u0003l\u0000\u0005\u0001j\u0001q\u0014f\r\u0014f\u0000\u0002]\u0000\u0000\u0001j\u0001q\u0014g\u0014h\r\u0014g\u0000\u0001m\u0000\u0000\u0001j\u0001m\u0003\u0000\f\r\u0014h\u0000\u00011\u0000\u0000\u0001m\u0001p\n\u0000\u0004\nhour\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0014_\u0000\u0002\u0014i\r\u0014i\u0000\u0003l\u0000\u0002\u0001y\u0001y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0013H\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0013I\u0000\u0001L\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0002\u0013F\u0000\u0002\u0014j\u0014k\r\u0014j\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014k\u0000\u0002\u0014l\u0014m\r\u0014l\u0000\u0004Z\u0000\u0000\u0001\u0001\u0014n\u0014o\u0014p\r\u0014n\u0000\u0002A\u0000\u0001\u0001\u0001\u0014q\u0014r\r\u0014q\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014r\u0000\u0003l\u0000\u0005\u0001\u0001\u0014s\r\u0014s\u0000\u0002n\u0000\u0003\u0001\u0001\u0014t\u0014u\r\u0014t\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\ntime\r\u0014u\u0000\u0003l\u0000\u0005\u0001\u0001\u0014v\r\u0014v\u0000\u0003I\u0000\u0002\u0001\u0001\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014o\u0000\u0001k\u0000\u0000\u0001\u0001\u0014w\u0002\u0014w\u0000\u0002\u0014x\u0014y\r\u0014x\u0000\u0003l\u0000\u0001\u0001\u0001\u0014z\u0014{\u0001\u0000\u0000\f\u0014z\u0000\u000e\u0000\btomorrow\u0000\u0002\u0000\u0000\u000e\u0014{\u0000\u0001\u0014|\u0011\u0014|\u0000\u0010\u0000t\u0000o\u0000m\u0000o\u0000r\u0000r\u0000o\u0000w\u0002\u0014y\u0000\u0002\u0014}\r\u0014}\u0000\u0002r\u0000\u0000\u0001\u0001\u0014~\u0014\r\u0014~\u0000\u0003l\u0000\u0005\u0001\u0001\u0014\r\u0014\u0000\u0002[\u0000\u0000\u0001\u0001\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0005\u0001\u0001\u0014\r\u0014\u0000\u0003I\u0000\u0002\u0001\u0001\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\ndays\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014p\u0000\u0001k\u0000\u0000\u0001\u0001\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0001\u0001\u0001\u0014\u0014\u0001\u0000\u0000\f\u0014\u0000\u000b\u0000\u0005today\u0000\u0002\u0000\u0000\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\n\u0000t\u0000o\u0000d\u0000a\u0000y\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0001\u0001\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0005\u0001\u0001\u0014\r\u0014\u0000\u0003I\u0000\u0002\u0001\u0001\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0014m\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0001\u0001\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\r\u0014\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0014\u0014\r\u0014\u0000\u00011\u0000\u0000\u0001\u0001\n\u0000\u0004\ntime\r\u0014\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001L\u0000\u0000\u0001\u0001\u0014\r\u0014\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00133\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002i\u0000\u0000\u0001\u0001\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\u0002\u0014\u0000\u0002\u0014\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0000\u0000\u0002\u0000\u0000\r\u0014\u0000\u0001k\u0000\u0000\u0000\u0000\u0000c\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005text1\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0007\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005text2\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003Q\u0000\u0000\u0000\b\u0000]\u0014\u0014\r\u0014\u0000\u0001k\u0000\u0000\u0000\u000b\u0000T\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0016\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0014\u0014\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0014\u0000\u0003\u0014\u0014\n\u0000\u0004\npsof\r\u0014\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0014\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000\u0002\u0000:\u0006\u0014\u0000\u0003\u0014\n\u0000\u0004\npsin\r\u0014\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0006\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003pos\u0000\u0000\u0002\u0014\u0000\u0002\u0014}\r\u0014\u0000\u0004Z\u0000\u0000\u0000\u0017\u0000T\u0014\u0014|{\r\u0014\u0000\u0002?\u0000\u0001\u0000\u0017\u0000\u001a\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u0018\u0014zy\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018x\u000bx\u0000\u00070\u0000\u0003pos\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019w\u0003w\u0000\u0000\r\u0014\u0000\u0001k\u0000\u0000\u0000\u001d\u0000P\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000\u001d\u0000,\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\u0000\u001d\u0000*\u0014\u0014\r\u0014\u0000\u00037\u0001\u0000\u0000\u001e\u0000*v\u0014\u0014\nv\u0000\u0004\nctxt\r\u0014\u0000\u0001m\u0000\u0000\u0000\"\u0000$u\u0003u\u0000\u0001\r\u0014\u0000\u0003l\u0000\u0005\u0000%\u0000)\u0014ts\r\u0014\u0000\u0002\\\u0000\u0000\u0000%\u0000)\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\u0000&\u0000'r\u000br\u0000\u00070\u0000\u0003pos\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\u0000'\u0000(q\u0003q\u0000\u0001\u0001t\u0000\u0000\u0001s\u0000\u0000\r\u0014\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001ep\u000bp\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005text1\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000-\u0000<\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0000\u0000-\u0000:\u0014\u0014\r\u0014\u0000\u00037\u0001\u0000\u0000.\u0000:n\u0014\u0014\nn\u0000\u0004\nctxt\r\u0014\u0000\u0003l\u0000\u0005\u00002\u00006\u0014ml\r\u0014\u0000\u0002[\u0000\u0000\u00002\u00006\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\u00003\u00004k\u000bk\u0000\u00070\u0000\u0003pos\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\u00004\u00005j\u0003j\u0000\u0001\u0001m\u0000\u0000\u0001l\u0000\u0000\r\u0014\u0000\u0001m\u0000\u0000\u00007\u00009i\u0003i\r\u0014\u0000\u0001o\u0000\u0000\u0000-\u0000.h\u000bh\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\t0\u0000\u0005text2\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0002r\u0000\u0000\u0000=\u0000F\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\u0000=\u0000D\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\u0000>\u0000Df\u0014e\u000bf\u0000\b0\u0000\u0004trim\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\u0000>\u0000?d\nd\u0000\b\u000bboovtrue\u0002\u0014\u0000\u0002\u0014c\r\u0014\u0000\u0001o\u0000\u0000\u0000?\u0000@b\u000bb\u0000\t0\u0000\u0005text1\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\u0000=\u0000>\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000a\u000ba\u0000\t0\u0000\u0005text1\u0000\u0000\u0002\u0014\u0000\u0002\u0014`\r\u0014\u0000\u0002r\u0000\u0000\u0000G\u0000P\u0014\u0014\r\u0014\u0000\u0002n\u0000\u0001\u0000G\u0000N\u0014\u0014\r\u0014\u0000\u0003I\u0000\u0000\u0000H\u0000N_\u0014^\u000b_\u0000\b0\u0000\u0004trim\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001m\u0000\u0000\u0000H\u0000I]\n]\u0000\b\u000bboovtrue\u0002\u0014\u0000\u0002\u0014\\\r\u0014\u0000\u0001o\u0000\u0000\u0000I\u0000J[\u000b[\u0000\t0\u0000\u0005text2\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\r\u0014\u0000\u0000f\u0000\u0000\u0000G\u0000H\r\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Z\u000bZ\u0000\t0\u0000\u0005text2\u0000\u0000\u0002`\u0000\u0000\u0002|\u0000\u0000\u0001{\u0000\u0000\u0002}\u0000\u0000\r\u0014\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000YXW\nY\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001X\u0000\u0000\u0002W\u0000\u0000\u0001\u0000\u0000\u0002\u0014\u0000\u0002\u0014V\r\u0014\u0000\u0001L\u0000\u0000\u0000^\u0000c\u0014\r\u0014\u0000\u0001J\u0000\u0000\u0000^\u0000b\u0014\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0001o\u0000\u0000\u0000^\u0000_U\u000bU\u0000\t0\u0000\u0005text1\u0000\u0000\u0002\u0014\u0000\u0002\u0014T\r\u0014\u0000\u0001o\u0000\u0000\u0000_\u0000`S\u000bS\u0000\t0\u0000\u0005text2\u0000\u0000\u0002T\u0000\u0000\u0002V\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000RQP\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000O\u0014\u0014\u0001O\u0000\u0000\f\u0014\u00005\u0000\/ theseCharacters : A list of characters to trim\u0000\u0002\u0000\u0000\u000e\u0014\u0000\u0001\u0014\u0011\u0014\u0000^\u0000 \u0000t\u0000h\u0000e\u0000s\u0000e\u0000C\u0000h\u0000a\u0000r\u0000a\u0000c\u0000t\u0000e\u0000r\u0000s\u0000 \u0000:\u0000 \u0000A\u0000 \u0000l\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000a\u0000c\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000t\u0000r\u0000i\u0000m\u0002\u0014\u0000\u0002\u0014\u0014\r\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000N\u0014\u0015\u0000\u0001N\u0000\u0000\f\u0014\u0000(\u0000\" someText : The text to be trimmed\u0000\u0002\u0000\u0000\u000e\u0015\u0000\u0000\u0001\u0015\u0001\u0011\u0015\u0001\u0000D\u0000 \u0000s\u0000o\u0000m\u0000e\u0000T\u0000e\u0000x\u0000t\u0000 \u0000:\u0000 \u0000T\u0000h\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0002\u0014\u0000\u0002\u0015\u0002\u0015\u0003\r\u0015\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000MLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0015\u0003\u0000\u0002\u0015\u0004\u0015\u0005\r\u0015\u0004\u0000\u0002i\u0000\u0000\u0001\u0001\u0015\u0006\u0015\u0007\r\u0015\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000J\u0015\bI\u000bJ\u0000\b0\u0000\u0004trim\u0000\u0000\u0002\u0015\b\u0000\u0002\u0015\t\u0015\n\r\u0015\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\u0002\u0015\n\u0000\u0002\u0015\u000bG\r\u0015\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0002G\u0000\u0000\u0002I\u0000\u0000\r\u0015\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u0000i\u0015\f\u0002\u0015\f\u0000\u0002\u0015\r\u0015\u000e\r\u0015\r\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000E\u0015\u000f\u0015\u0010\u0001E\u0000\u0000\f\u0015\u000f\u0000@\u0000: Lazy default (AppleScript doesn't support default values)\u0000\u0002\u0000\u0000\u000e\u0015\u0010\u0000\u0001\u0015\u0011\u0011\u0015\u0011\u0000t\u0000 \u0000L\u0000a\u0000z\u0000y\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000(\u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0000)\u0002\u0015\u000e\u0000\u0002\u0015\u0012\u0015\u0013\r\u0015\u0012\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u001b\u0015\u0014\u0015\u0015DC\r\u0015\u0014\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0015\u0016\u0015\u0017\r\u0015\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001B\u000bB\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\r\u0015\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002A\nA\u0000\b\u000bboovtrue\r\u0015\u0015\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u0017\u0015\u0018\u0015\u0019\r\u0015\u0018\u0000\u0003l\u0000\t\u0000\u0006\u0000\u0015\u0015\u001a@?\r\u0015\u001a\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\u0015\u0015\u001b\u0002\u0015\u001b\u0000\u0002\u0015\u001c\u0015\u001d\r\u0015\u001c\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0015\u001e\u000e\u0015\u001e\u0000\u0001\u0015\u001f\u0011\u0015\u001f\u0000\u0002\u0000 \u0002\u0015\u001d\u0000\u0002\u0015 \u0015!\r\u0015 \u0000\u00011\u0000\u0000\u0000\u0007\u0000\b>\n>\u0000\u0004\ntab \u0002\u0015!\u0000\u0002\u0015\"\u0015#\r\u0015\"\u0000\u0003I\u0000\u0002\u0000\b\u0000\r=\u0015$<\n=\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r\u0015$\u0000\u0001m\u0000\u0000\u0000\b\u0000\t;\u0003;\u0000\n\u0002<\u0000\u0000\u0002\u0015#\u0000\u0002\u0015%\u0015&\r\u0015%\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e:\n:\u0000\u0004\nret \u0002\u0015&\u0000\u0002\u0015'9\r\u0015'\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u00138\u0015(7\n8\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\r\u0015(\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f6\u00036\u0000\u0000\u00027\u0000\u0000\u00029\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\r\u0015\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\u0002D\u0000\u0000\u0001C\u0000\u0000\u0002\u0015\u0013\u0000\u0002\u0015)\u0015*\r\u0015)\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u0015*\u0000\u0002\u0015+\u0015,\r\u0015+\u0000\u0004Z\u0000\u0001\u0000\u001c\u0000(\u0015-\u0015.10\r\u0015-\u0000\u0002=\u0000\u0003\u0000\u001c\u0000\u001f\u0015\/\u00150\r\u0015\/\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\/\u000b\/\u0000\u00140\u0000\bsometext\u0000\bsomeText\r\u00150\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u00151\u000e\u00151\u0000\u0001\u00152\u0011\u00152\u0000\u0000\r\u0015.\u0000\u0001L\u0000\u0000\u0000\"\u0000$.\u0001.\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0015,\u0000\u0002\u00153\u00154\r\u00153\u0000\u0003l\u0000\u0002\u0000)\u0000)-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002\u00154\u0000\u0002\u00155\u00156\r\u00155\u0000\u0002W\u0000\u0000\u0000)\u0000G\u00157\u00158\r\u00157\u0000\u0002r\u0000\u0000\u00005\u0000B\u00159\u0015:\r\u00159\u0000\u0002n\u0000\u0000\u00005\u0000@\u0015;\u0015<\r\u0015;\u0000\u00037\u0001\u0000\u00006\u0000@*\u0015=\u0015>\n*\u0000\u0004\nctxt\r\u0015=\u0000\u0001m\u0000\u0000\u0000:\u0000<)\u0003)\u0000\u0002\r\u0015>\u0000\u0001m\u0000\u0000\u0000=\u0000?(\u0003(\r\u0015<\u0000\u0001o\u0000\u0000\u00005\u00006'\u000b'\u0000\u00140\u0000\bsometext\u0000\bsomeText\r\u0015:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\u00140\u0000\bsometext\u0000\bsomeText\r\u00158\u0000\u0001H\u0000\u0000\u0000-\u00004\u0015?\r\u0015?\u0000\u0002E\u0000\u0001\u0000-\u00003\u0015@\u0015A\r\u0015@\u0000\u0001o\u0000\u0000\u0000-\u0000.%\u000b%\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\r\u0015A\u0000\u0002n\u0000\u0000\u0000.\u00002\u0015B\u0015C\r\u0015B\u0000\u00024\u0000\u0001\u0000\/\u00002$\u0015D\n$\u0000\u0004\ncha \r\u0015D\u0000\u0001m\u0000\u0000\u00000\u00001#\u0003#\u0000\u0001\r\u0015C\u0000\u0001o\u0000\u0000\u0000.\u0000\/\"\u000b\"\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0002\u00156\u0000\u0002\u0015E\u0015F\r\u0015E\u0000\u0003l\u0000\u0002\u0000H\u0000H! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0015F\u0000\u0002\u0015G\u0015H\r\u0015G\u0000\u0002W\u0000\u0000\u0000H\u0000f\u0015I\u0015J\r\u0015I\u0000\u0002r\u0000\u0000\u0000T\u0000a\u0015K\u0015L\r\u0015K\u0000\u0002n\u0000\u0000\u0000T\u0000_\u0015M\u0015N\r\u0015M\u0000\u00037\u0001\u0000\u0000U\u0000_\u001e\u0015O\u0015P\n\u001e\u0000\u0004\nctxt\r\u0015O\u0000\u0001m\u0000\u0000\u0000Y\u0000[\u001d\u0003\u001d\u0000\u0001\r\u0015P\u0000\u0001m\u0000\u0000\u0000\\\u0000^\u001c\u0003\u001c\r\u0015N\u0000\u0001o\u0000\u0000\u0000T\u0000U\u001b\u000b\u001b\u0000\u00140\u0000\bsometext\u0000\bsomeText\r\u0015L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\u00140\u0000\bsometext\u0000\bsomeText\r\u0015J\u0000\u0001H\u0000\u0000\u0000L\u0000S\u0015Q\r\u0015Q\u0000\u0002E\u0000\u0001\u0000L\u0000R\u0015R\u0015S\r\u0015R\u0000\u0001o\u0000\u0000\u0000L\u0000M\u0019\u000b\u0019\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\r\u0015S\u0000\u0002n\u0000\u0000\u0000M\u0000Q\u0015T\u0015U\r\u0015T\u0000\u00024\u0000\u0001\u0000N\u0000Q\u0018\u0015V\n\u0018\u0000\u0004\ncha \r\u0015V\u0000\u0001m\u0000\u0000\u0000O\u0000P\u0017\u0003\u0017\r\u0015U\u0000\u0001o\u0000\u0000\u0000M\u0000N\u0016\u000b\u0016\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0002\u0015H\u0000\u0002\u0015W\u0015X\r\u0015W\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0015\u0014\u0013\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0015X\u0000\u0002\u0015Y\u0012\r\u0015Y\u0000\u0001L\u0000\u0000\u0000g\u0000i\u0015Z\r\u0015Z\u0000\u0001o\u0000\u0000\u0000g\u0000h\u0011\u000b\u0011\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0002\u0012\u0000\u0000\u0002\u0015\u0005\u0000\u0002\u0015[\u0015\\\r\u0015[\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0015\\\u0000\u0002\u0015]\u0015^\r\u0015]\u0000\u0002i\u0000\u0000\u0001\u0001\u0015_\u0015`\r\u0015_\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\r\u0015a\f\u000b\r\u0000\b0\u0000\u0004echo\u0000\u0000\u0002\u0015a\u0000\u0002\u0015b\u000b\r\u0015b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\r0\u0000\tsomething\u0000\u0000\u0002\u000b\u0000\u0000\u0002\f\u0000\u0000\r\u0015`\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\t\u0015c\b\n\t\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0015c\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0015d\u0015e\r\u0015d\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0015f\u000e\u0015f\u0000\u0001\u0015g\u0011\u0015g\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0015e\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0004\u0015h\u0015i\r\u0015h\u0000\u00011\u0000\u0000\u0000\u0002\u0000\u0004\u0007\n\u0007\u0000\u0004\nstrq\r\u0015i\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u0006\u000b\u0006\u0000\r0\u0000\tsomething\u0000\u0000\u0002\b\u0000\u0000\u0002\u0015^\u0000\u0002\u0015j\u0015k\r\u0015j\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0015k\u0000\u0002\u0015l\u0015m\r\u0015l\u0000\u0002i\u0000\u0000\u0001\u0001\u0015n\u0015o\r\u0015n\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0015p\u0001\u000b\u0002\u0000\u000f0\u0000\u000bformat_date\u0000\u0000\u0002\u0015p\u0000\u0002\u0015q\u0015r\r\u0015q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0015r\u0000\u0002\u0015s\r\u0015s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rformat_string\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0000\r\u0015o\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0015t\u0002\u0015t\u0000\u0002\u0015u\u0015v\r\u0015u\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0015w\u0015x\u0001\u0000\u0000\f\u0015w\u00004\u0000. store all elements of the date into variables\u0000\u0002\u0000\u0000\u000e\u0015x\u0000\u0001\u0015y\u0011\u0015y\u0000\\\u0000 \u0000s\u0000t\u0000o\u0000r\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000e\u0000l\u0000e\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000a\u0000t\u0000e\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000s\u0002\u0015v\u0000\u0002\u0015z\u0015{\r\u0015z\u0000\u0002r\u0000\u0000\u0000\u0000\u0000A\u0015|\u0015}\r\u0015|\u0000\u0003l\u0000\t\u0000\u0000\u0000\u0016\u0015~\r\u0015~\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0016\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nyear\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\b\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\u0006\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nmnth\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nlong\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nday \r\u0015\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0015\u0015\r\u0015\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nhour\r\u0015\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0011\u0015\u0015\r\u0015\u0000\u0003l\u0000\t\u0000\u000f\u0000\u0011\u0015\r\u0015\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\nmin \u0001\u0000\u0000\u0001\u0000\u0000\r\u0015\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000\u0011\u0000\u0014\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0014\n\u0000\u0004\nscnd\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0015}\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmonth_num\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007day_num\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bhour_num\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nminute_num\u0000\u0000\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nsecond_num\u0000\u0000\u0002\u0000\u0000\u0002\u0015{\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002r\u0000\u0000\u0000B\u0000]\u0015\u0015\r\u0015\u0000\u0001J\u0000\u0000\u0000B\u0000N\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002c\u0000\u0000\u0000B\u0000G\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0005\u0000B\u0000E\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000B\u0000E\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000C\u0000E\n\u0000\u0004\nmnth\r\u0015\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u0000E\u0000F\n\u0000\u0004\nTEXT\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0002c\u0000\u0000\u0000G\u0000L\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0005\u0000G\u0000J\u0015\r\u0015\u0000\u0002n\u0000\u0000\u0000G\u0000J\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000H\u0000J\n\u0000\u0004\nwkdy\r\u0015\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0015\u0000\u0001m\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nTEXT\u0002\u0000\u0000\r\u0015\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nmonth_name\u0000\u0000\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bday_name\u0000\u0000\u0002\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002r\u0000\u0000\u0000^\u0000|\u0015\u0015\r\u0015\u0000\u0001J\u0000\u0000\u0000^\u0000z\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000_\u0000`\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000s\u0000t\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000n\u0000d\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000r\u0000d\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000g\u0000j\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0015\u0000\u0002\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0004\u0000t\u0000h\u0002\u0000\u0000\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bsuffix_list\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\u0002\u0000}\u0000}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0002r\u0000\u0000\u0000}\u0000\u0015\u0015\r\u0015\u0000\u0003l\u0000\t\u0000}\u0000\u0015\r\u0015\u0000\u0001J\u0000\u0000\u0000}\u0000\u0015\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000}\u0000\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0010\u0000<\u0000<\u0000Y\u0000e\u0000a\u0000r\u0000>\u0000>\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\t\u0000\u0000\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000\u0014\u0000<\u0000<\u0000Y\u0000e\u0000a\u0000r\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0015\r\u0015\u0000\u0003l\u0000\t\u0000\u0000\u0015\r\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0015\u000e\u0015\u0000\u0001\u0015\u0011\u0015\u0000$\u0000<\u0000<\u0000C\u0000e\u0000n\u0000t\u0000u\u0000r\u0000y\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0015\u0000\u0002\u0015\u0016\u0000\r\u0015\u0000\u0003l\u0000\t\u0000\u0000\u0016\u0001\r\u0016\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\u0002\u000e\u0016\u0002\u0000\u0001\u0016\u0003\u0011\u0016\u0003\u0000\u0016\u0000<\u0000<\u0000C\u0000e\u0000n\u0000t\u0000u\u0000r\u0000y\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0000\u0000\u0002\u0016\u0004\u0016\u0005\r\u0016\u0004\u0000\u0003l\u0000\t\u0000\u0000\u0016\u0006\r\u0016\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\u0007\u000e\u0016\u0007\u0000\u0001\u0016\b\u0011\u0016\b\u0000\u0012\u0000<\u0000<\u0000M\u0000o\u0000n\u0000t\u0000h\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0005\u0000\u0002\u0016\t\u0016\n\r\u0016\t\u0000\u0003l\u0000\t\u0000\u0000\u0016\u000b\r\u0016\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\f\u000e\u0016\f\u0000\u0001\u0016\r\u0011\u0016\r\u0000\u0016\u0000<\u0000<\u0000M\u0000o\u0000n\u0000t\u0000h\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\n\u0000\u0002\u0016\u000e\u0016\u000f\r\u0016\u000e\u0000\u0003l\u0000\t\u0000\u0000\u0016\u0010\r\u0016\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\u0011\u000e\u0016\u0011\u0000\u0001\u0016\u0012\u0011\u0016\u0012\u0000\u001c\u0000<\u0000<\u0000M\u0000o\u0000n\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u000f\u0000\u0002\u0016\u0013\u0016\u0014\r\u0016\u0013\u0000\u0003l\u0000\t\u0000\u0000\u0016\u0015\r\u0016\u0015\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\u0016\u000e\u0016\u0016\u0000\u0001\u0016\u0017\u0011\u0016\u0017\u0000\u000e\u0000<\u0000<\u0000D\u0000a\u0000y\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0014\u0000\u0002\u0016\u0018\u0016\u0019\r\u0016\u0018\u0000\u0003l\u0000\t\u0000\u0000\u0016\u001a\r\u0016\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\u001b\u000e\u0016\u001b\u0000\u0001\u0016\u001c\u0011\u0016\u001c\u0000\u0012\u0000<\u0000<\u0000D\u0000a\u0000y\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u0019\u0000\u0002\u0016\u001d\u0016\u001e\r\u0016\u001d\u0000\u0003l\u0000\t\u0000\u0000\u0016\u001f\r\u0016\u001f\u0000\u0001m\u0000\u0000\u0000\u0000\u0016 \u000e\u0016 \u0000\u0001\u0016!\u0011\u0016!\u0000\u0018\u0000<\u0000<\u0000D\u0000a\u0000y\u0000 \u0000n\u0000a\u0000m\u0000e\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016\u001e\u0000\u0002\u0016\"\u0016#\r\u0016\"\u0000\u0003l\u0000\t\u0000\u0000\u0016$\r\u0016$\u0000\u0001m\u0000\u0000\u0000\u0000\u0016%\u000e\u0016%\u0000\u0001\u0016&\u0011\u0016&\u0000\u001c\u0000<\u0000<\u0000D\u0000a\u0000y\u0000 \u0000s\u0000u\u0000f\u0000f\u0000i\u0000x\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016#\u0000\u0002\u0016'\u0016(\r\u0016'\u0000\u0003l\u0000\t\u0000\u0000\u0016)\r\u0016)\u0000\u0001m\u0000\u0000\u0000\u0000\u0016*\u000e\u0016*\u0000\u0001\u0016+\u0011\u0016+\u0000\u0010\u0000<\u0000<\u0000H\u0000o\u0000u\u0000r\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016(\u0000\u0002\u0016,\u0016-\r\u0016,\u0000\u0003l\u0000\t\u0000\u0000\u0016.\r\u0016.\u0000\u0001m\u0000\u0000\u0000\u0000\u0016\/\u000e\u0016\/\u0000\u0001\u00160\u0011\u00160\u0000\u0014\u0000<\u0000<\u0000H\u0000o\u0000u\u0000r\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016-\u0000\u0002\u00161\u00162\r\u00161\u0000\u0003l\u0000\t\u0000\u0000\u00163\r\u00163\u0000\u0001m\u0000\u0000\u0000\u0000\u00164\u000e\u00164\u0000\u0001\u00165\u0011\u00165\u0000\u0014\u0000<\u0000<\u0000M\u0000i\u0000n\u0000u\u0000t\u0000e\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00162\u0000\u0002\u00166\u00167\r\u00166\u0000\u0003l\u0000\t\u0000\u0000\u00168\r\u00168\u0000\u0001m\u0000\u0000\u0000\u0000\u00169\u000e\u00169\u0000\u0001\u0016:\u0011\u0016:\u0000\u0018\u0000<\u0000<\u0000M\u0000i\u0000n\u0000u\u0000t\u0000e\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00167\u0000\u0002\u0016;\u0016<\r\u0016;\u0000\u0003l\u0000\t\u0000\u0000\u0016=\r\u0016=\u0000\u0001m\u0000\u0000\u0000\u0000\u0016>\u000e\u0016>\u0000\u0001\u0016?\u0011\u0016?\u0000\u0014\u0000<\u0000<\u0000S\u0000e\u0000c\u0000o\u0000n\u0000d\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016<\u0000\u0002\u0016@\r\u0016@\u0000\u0003l\u0000\t\u0000\u0000\u0016A\r\u0016A\u0000\u0001m\u0000\u0000\u0000\u0000\u0016B\u000e\u0016B\u0000\u0001\u0016C\u0011\u0016C\u0000\u0018\u0000<\u0000<\u0000S\u0000e\u0000c\u0000o\u0000n\u0000d\u0000 \u00002\u0000>\u0000>\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fplaceholders\u0000\u0000\u0002\u0015\u0000\u0002\u0016D\u0016E\r\u0016D\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016E\u0000\u0002\u0016F\u0016G\r\u0016F\u0000\u0002r\u0000\u0000\u0000\u0001\u0017\u0016H\u0016I\r\u0016H\u0000\u0001J\u0000\u0000\u0000\u0001\u0015\u0016J\u0002\u0016J\u0000\u0002\u0016K\u0016L\r\u0016K\u0000\u0002c\u0000\u0000\u0000\u0000\u0016M\u0016N\r\u0016M\u0000\u0003l\u0000\t\u0000\u0000\u0016O\r\u0016O\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0016N\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0016L\u0000\u0002\u0016P\u0016Q\r\u0016P\u0000\u0003l\u0000\t\u0000\u0000\u0016R\r\u0016R\u0000\u0003I\u0000\u0000\u0000\u0000\u0016S\u000b\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016S\u0000\u0002\u0016T\r\u0016T\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016Q\u0000\u0002\u0016U\u0016V\r\u0016U\u0000\u0002c\u0000\u0000\u0000\u0000\u0016W\u0016X\r\u0016W\u0000\u0003l\u0000\t\u0000\u0000\u0016Y\r\u0016Y\u0000\u0003l\u0000\u0005\u0000\u0000\u0016Z\r\u0016Z\u0000\u0002_\u0000\u0000\u0000\u0000\u0016[\u0016\\\r\u0016[\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\r\u0016\\\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0016X\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0016V\u0000\u0002\u0016]\u0016^\r\u0016]\u0000\u0002c\u0000\u0000\u0000\u0000\u0016_\u0016`\r\u0016_\u0000\u0003l\u0000\t\u0000\u0000\u0016a\r\u0016a\u0000\u0003l\u0000\u0005\u0000\u0000\u0016b\r\u0016b\u0000\u0002[\u0000\u0000\u0000\u0000\u0016c\u0016d\r\u0016c\u0000\u0002_\u0000\u0000\u0000\u0000\u0016e\u0016f\r\u0016e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\r\u0016f\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000d\r\u0016d\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0016`\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0016^\u0000\u0002\u0016g\u0016h\r\u0016g\u0000\u0002c\u0000\u0000\u0000\u0000\u0016i\u0016j\r\u0016i\u0000\u0003l\u0000\t\u0000\u0000\u0016k\r\u0016k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmonth_num\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0016j\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0002\u0016h\u0000\u0002\u0016l\u0016m\r\u0016l\u0000\u0003l\u0000\t\u0000\u0000\u0016n\r\u0016n\u0000\u0003I\u0000\u0000\u0000\u0000\u0016o\u000b\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016o\u0000\u0002\u0016p\r\u0016p\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmonth_num\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016m\u0000\u0002\u0016q\u0016r\r\u0016q\u0000\u0003l\u0000\t\u0000\u0000\u0016s\r\u0016s\u0000\u0003I\u0000\u0001\u0000\u0000\u0016t\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0016t\u0000\u0003l\u0000\u0005\u0000\u0000\u0016u\r\u0016u\u0000\u0001o\u0000\u0000\u0000\u0000~\u000b~\u0000\u000e0\u0000\nmonth_name\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0016r\u0000\u0002\u0016v\u0016w\r\u0016v\u0000\u0002c\u0000\u0000\u0000\u0000\u0016x\u0016y\r\u0016x\u0000\u0003l\u0000\t\u0000\u0000\u0016z}|\r\u0016z\u0000\u0001o\u0000\u0000\u0000\u0000{\u000b{\u0000\u000b0\u0000\u0007day_num\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\r\u0016y\u0000\u0001m\u0000\u0000\u0000\u0000z\nz\u0000\u0004\nTEXT\u0002\u0016w\u0000\u0002\u0016{\u0016|\r\u0016{\u0000\u0003l\u0000\t\u0000\u0000\u0016}yx\r\u0016}\u0000\u0003I\u0000\u0000\u0000\u0000w\u0016~v\u000bw\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016~\u0000\u0002\u0016u\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000t\u000bt\u0000\u000b0\u0000\u0007day_num\u0000\u0000\u0002u\u0000\u0000\u0002v\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u0016|\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0000\u0000\u0016sr\r\u0016\u0000\u0003I\u0000\u0001\u0000\u0000q\u0016p\nq\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0016\u0000\u0003l\u0000\u0005\u0000\u0000\u0016on\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\f0\u0000\bday_name\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0000\u0000\u0016lk\r\u0016\u0000\u00024\u0000\u0000\u0000\u0000j\u0016\nj\u0000\u0004\ncobj\r\u0016\u0000\u0003l\u0000\u0005\u0000\u0000\u0016ih\r\u0016\u0000\u0002[\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u0002`\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u000b0\u0000\u0007day_num\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0000\u0000f\u0003f\u0000\n\r\u0016\u0000\u0001m\u0000\u0000\u0000\u0000e\u0003e\u0000\u0001\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001l\u0000\u0000\u0001k\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u000f0\u0000\u000bsuffix_list\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002c\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0000\u0000\u0016cb\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\f0\u0000\bhour_num\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0000\u0000`\n`\u0000\u0004\nTEXT\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0000\u0000\u0016_^\r\u0016\u0000\u0003I\u0000\u0000\u0000\u0000]\u0016\\\u000b]\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016\u0000\u0002\u0016[\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000Z\u000bZ\u0000\f0\u0000\bhour_num\u0000\u0000\u0002[\u0000\u0000\u0002\\\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002c\u0000\u0000\u0000\u0001\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0000\u0001\u0000\u0016YX\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0001\u0000W\u000bW\u0000\u000e0\u0000\nminute_num\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0001\u0000\u0001\u0001V\nV\u0000\u0004\nTEXT\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0001\u0002\u0001\b\u0016UT\r\u0016\u0000\u0003I\u0000\u0000\u0001\u0002\u0001\bS\u0016R\u000bS\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016\u0000\u0002\u0016Q\r\u0016\u0000\u0001o\u0000\u0000\u0001\u0003\u0001\u0004P\u000bP\u0000\u000e0\u0000\nminute_num\u0000\u0000\u0002Q\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002c\u0000\u0000\u0001\b\u0001\u000b\u0016\u0016\r\u0016\u0000\u0003l\u0000\t\u0001\b\u0001\t\u0016ON\r\u0016\u0000\u0001o\u0000\u0000\u0001\b\u0001\tM\u000bM\u0000\u000e0\u0000\nsecond_num\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0001\t\u0001\nL\nL\u0000\u0004\nTEXT\u0002\u0016\u0000\u0002\u0016K\r\u0016\u0000\u0003l\u0000\t\u0001\u000b\u0001\u0011\u0016JI\r\u0016\u0000\u0003I\u0000\u0000\u0001\u000b\u0001\u0011H\u0016G\u000bH\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0016\u0000\u0002\u0016F\r\u0016\u0000\u0001o\u0000\u0000\u0001\f\u0001\rE\u000bE\u0000\u000e0\u0000\nsecond_num\u0000\u0000\u0002F\u0000\u0000\u0002G\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002K\u0000\u0000\r\u0016I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u000e0\u0000\nvalue_list\u0000\u0000\u0002\u0016G\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\u0001\u0018\u0001\u0018CBA\u0001C\u0000\u0000\u0001B\u0000\u0000\u0001A\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\u0001\u0018\u0001\u0018@\u0016\u0016\u0001@\u0000\u0000\f\u0016\u0000'\u0000! repace elements of format string\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000B\u0000 \u0000r\u0000e\u0000p\u0000a\u0000c\u0000e\u0000 \u0000e\u0000l\u0000e\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000o\u0000f\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u0001\u0018\u0001!\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0003\u0001\u0018\u0001\u001f\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\u0001\u001b\u0001\u001f?\n?\u0000\u0004\ntxdl\r\u0016\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001b>\n>\u0000\u0004\nascr\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u000e0\u0000\nold_delims\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\u0001\"\u0001\"<\u0016\u0016\u0001<\u0000\u0000\f\u0016\u00001\u0000+ in a loop, replace all placeholders by the\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000V\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000l\u0000o\u0000o\u0000p\u0000,\u0000 \u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000h\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0001\u0001\"\u0001\";\u0016\u0016\u0001;\u0000\u0000\f\u0016\u0000\u001d\u0000\u0017 values from value_list\u0000\u0002\u0000\u0000\u000e\u0016\u0000\u0001\u0016\u0011\u0016\u0000.\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000_\u0000l\u0000i\u0000s\u0000t\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0005Y\u0000\u0000\u0001\"\u0001r\u0016:\u0016\u00169\r\u0016\u0000\u0001k\u0000\u0000\u00010\u0001m\u0016\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u00010\u00016\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\u00010\u00014\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\u00011\u000148\u0016\n8\u0000\u0004\ncobj\r\u0016\u0000\u0001o\u0000\u0000\u00012\u000137\u000b7\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u00010\u000116\u000b6\u0000\u00100\u0000\fplaceholders\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00060\u0000\u0002ph\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u00017\u0001?\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\u00017\u0001;\u0016\u0016\r\u0016\u0000\u00024\u0000\u0000\u00018\u0001;4\u0016\n4\u0000\u0004\ncobj\r\u0016\u0000\u0001o\u0000\u0000\u00019\u0001:3\u000b3\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u00017\u000182\u000b2\u0000\u000e0\u0000\nvalue_list\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\u00070\u0000\u0003val\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u0001@\u0001I\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0001@\u0001A0\u000b0\u0000\u00060\u0000\u0002ph\u0000\u0000\r\u0016\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\u0001D\u0001H\/\n\/\u0000\u0004\ntxdl\r\u0016\u0000\u00011\u0000\u0000\u0001A\u0001D.\n.\u0000\u0004\nascr\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u0001J\u0001S\u0016\u0016\r\u0016\u0000\u0002n\u0000\u0000\u0001J\u0001O\u0016\u0016\r\u0016\u0000\u00012\u0000\u0000\u0001K\u0001O-\n-\u0000\u0004\ncitm\r\u0016\u0000\u0001o\u0000\u0000\u0001J\u0001K,\u000b,\u0000\u00110\u0000\rformat_string\u0000\u0000\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u0001T\u0001c\u0016\u0016\r\u0016\u0000\u0002c\u0000\u0000\u0001T\u0001[\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0001T\u0001W*\u000b*\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0001W\u0001Z)\n)\u0000\u0004\nctxt\r\u0016\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\u0001^\u0001b(\n(\u0000\u0004\ntxdl\r\u0016\u0000\u00011\u0000\u0000\u0001[\u0001^'\n'\u0000\u0004\nascr\u0002\u0016\u0000\u0002\u0016&\r\u0016\u0000\u0002r\u0000\u0000\u0001d\u0001m\u0016\u0016\r\u0016\u0000\u0002c\u0000\u0000\u0001d\u0001k\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0001d\u0001g%\u000b%\u0000\b0\u0000\u0004temp\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0001g\u0001j$\n$\u0000\u0004\nctxt\r\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00110\u0000\rformat_string\u0000\u0000\u0002&\u0000\u0000\u000b:\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0016\u0000\u0001m\u0000\u0000\u0001%\u0001&\"\u0003\"\u0000\u0001\r\u0016\u0000\u0003I\u0000\u0002\u0001&\u0001+!\u0016 \n!\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0016\u0000\u0001o\u0000\u0000\u0001&\u0001'\u001f\u000b\u001f\u0000\u00100\u0000\fplaceholders\u0000\u0000\u0002 \u0000\u0000\u00019\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\u0001s\u0001s\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002r\u0000\u0000\u0001s\u0001|\u0016\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0001s\u0001t\u001b\u000b\u001b\u0000\u000e0\u0000\nold_delims\u0000\u0000\r\u0016\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0016\u0016\r\u0016\u0000\u00011\u0000\u0000\u0001w\u0001{\u001a\n\u001a\u0000\u0004\ntxdl\r\u0016\u0000\u00011\u0000\u0000\u0001t\u0001w\u0019\n\u0019\u0000\u0004\nascr\u0002\u0016\u0000\u0002\u0016\u0018\r\u0016\u0000\u0001L\u0000\u0000\u0001}\u0001\u0016\r\u0016\u0000\u0001o\u0000\u0000\u0001}\u0001~\u0017\u000b\u0017\u0000\u00110\u0000\rformat_string\u0000\u0000\u0002\u0018\u0000\u0000\u0002\u0015m\u0000\u0002\u0016\u0016\r\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0016\u0000\u0002\u0016\u0016\r\u0016\u0000\u0002i\u0000\u0000\u0001\u0001\u0017\u0000\u0017\u0001\r\u0017\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u0017\u0002\u0012\u000b\u0013\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u0002\u0017\u0002\u0000\u0002\u0017\u0003\u0011\r\u0017\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0011\u0000\u0000\u0002\u0012\u0000\u0000\r\u0017\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u00002\u0017\u0004\u0002\u0017\u0004\u0000\u0002\u0017\u0005\u0017\u0006\r\u0017\u0005\u0000\u0005Y\u0000\u0000\u0000\u0000\u0000\/\u0017\u0007\u000f\u0017\b\u0017\t\u000e\r\u0017\u0007\u0000\u0001k\u0000\u0000\u0000\n\u0000*\u0017\n\u0002\u0017\n\u0000\u0002\u0017\u000b\u0017\f\r\u0017\u000b\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0015\u0017\r\u0017\u000e\r\u0017\r\u0000\u0002[\u0000\u0000\u0000\n\u0000\u0013\u0017\u000f\u0017\u0010\r\u0017\u000f\u0000\u0003l\u0000\u0005\u0000\n\u0000\u000f\u0017\u0011\r\f\r\u0017\u0011\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\u000b\n\t\n\u000b\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\n\u0000\u0000\u0002\t\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\r\u0017\u0010\u0000\u0002]\u0000\u0000\u0000\u000f\u0000\u0012\u0017\u0012\u0017\u0013\r\u0017\u0012\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\b\u000b\b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0017\u0013\u0000\u00011\u0000\u0000\u0000\u0010\u0000\u0011\u0007\n\u0007\u0000\u0004\ndays\r\u0017\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\u00050\u0000\u0001d\u0000\u0000\u0002\u0017\f\u0000\u0002\u0017\u0014\u0017\u0015\r\u0017\u0014\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001d\u0017\u0016\u0017\u0017\r\u0017\u0016\u0000\u0002c\u0000\u0000\u0000\u0016\u0000\u001b\u0017\u0018\u0017\u0019\r\u0017\u0018\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0019\u0017\u001a\u0005\u0004\r\u0017\u001a\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u0019\u0017\u001b\u0017\u001c\r\u0017\u001b\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0019\u0003\n\u0003\u0000\u0004\nwkdy\r\u0017\u001c\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u0002\u000b\u0002\u0000\u00050\u0000\u0001d\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\r\u0017\u0019\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0001\n\u0001\u0000\u0004\nTEXT\r\u0017\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u00050\u0000\u0001w\u0000\u0000\u0002\u0017\u0015\u0000\u0002\u0017\u001d\r\u0017\u001d\u0000\u0004Z\u0000\u0001\u0000\u001e\u0000*\u0017\u001e\u0017\u001f\r\u0017\u001e\u0000\u0002=\u0000\u0003\u0000\u001e\u0000!\u0017 \u0017!\r\u0017 \u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\r\u0017!\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0017\u001f\u0000\u0001L\u0000\u0000\u0000$\u0000&\u0017\"\r\u0017\"\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00050\u0000\u0001d\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u000f\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0017\b\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0017\t\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0003\u0000\u0007\u0001\u000e\u0000\u0000\u0002\u0017\u0006\u0000\u0002\u0017#\r\u0017#\u0000\u0001L\u0000\u0000\u00000\u00002\u0017$\r\u0017$\u0000\u0001m\u0000\u0000\u00000\u00001\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0016\u0000\u0002\u0017%\u0017&\r\u0017%\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017&\u0000\u0002\u0017'\u0017(\r\u0017'\u0000\u0002i\u0000\u0000\u0001\u0001\u0017)\u0017*\r\u0017)\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0017+\u000b\u0000\u00060\u0000\u0002dd\u0000\u0000\u0002\u0017+\u0000\u0002\u0017,\r\u0017,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007the_num\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017*\u0000\u0003l\u0000\u0003\u0000\u0000\u0000\u0016\u0017-\u0017.\u0017\/\r\u0017-\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u00170\u0002\u00170\u0000\u0002\u00171\u00172\r\u00171\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0013\u00173\u00174\r\u00173\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0011\u00175\u00176\r\u00175\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u000f\u00177\r\u00177\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u000f\u00178\u00179\r\u00178\u0000\u00037\u0001\u0000\u0000\u0005\u0000\u000f\u0017:\u0017;\n\u0000\u0004\nctxt\r\u0017:\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b\u0003\r\u0017;\u0000\u0001m\u0000\u0000\u0000\f\u0000\u000e\u0003\r\u00179\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0017<\r\u0017<\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0005\u0017=\u0017>\r\u0017=\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0003\u0017?\r\u0017?\u0000\u0002[\u0000\u0000\u0000\u0000\u0000\u0003\u0017@\u0017A\r\u0017@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u000b0\u0000\u0007the_num\u0000\u0000\r\u0017A\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\r\u0017>\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00176\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nctxt\r\u00174\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007the_val\u0000\u0000\u0002\u00172\u0000\u0002\u0017B\r\u0017B\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0017C\r\u0017C\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u000b0\u0000\u0007the_val\u0000\u0000\u0002\u0000\u0000\f\u0017.\u0000\u0014\u0000\u000e double digits\u0000\u0002\u0000\u0000\u000e\u0017\/\u0000\u0001\u0017D\u0011\u0017D\u0000\u001c\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000 \u0000d\u0000i\u0000g\u0000i\u0000t\u0000s\u0002\u0017(\u0000\u0002\u0017E\u0017F\r\u0017E\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017F\u0000\u0002\u0017G\u0017H\r\u0017G\u0000\u0002i\u0000\u0000\u0001\u0001\u0017I\u0017J\r\u0017I\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0017K\u000b\u0000\"0\u0000\u000fcoercedatetonum\u0000\u000fcoerceDateToNum\u0002\u0017K\u0000\u0002\u0017L\r\u0017L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017J\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001f\u0017M\u0002\u0017M\u0000\u0002\u0017N\u0017O\r\u0017N\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0013\u0017P\u0017Q\r\u0017P\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0017R\u0002\u0017R\u0000\u0002\u0017S\u0017T\r\u0017S\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0017U\u000e\u0017U\u0000\u0001\u0017V\u0011\u0017V\u0000\u0010\u00001\u0000\/\u00001\u0000\/\u00001\u00000\u00000\u00000\u0002\u0017T\u0000\u0002\u0017W\r\u0017W\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0007\u0000\u0004\u0000\u0005N\u0002\u0000\u0000\r\u0017Q\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0017X\u0002\u0017X\u0000\u0002\u0017Y\u0017Z\r\u0017Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005ddate\u0000\u0005dDate\u0002\u0017Z\u0000\u0002\u0017[\r\u0017[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bddatenum\u0000\bdDateNum\u0002\u0000\u0000\u0002\u0017O\u0000\u0002\u0017\\\r\u0017\\\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u001f\u0017]\r\u0017]\u0000\u0002[\u0000\u0000\u0000\u0014\u0000\u001e\u0017^\u0017_\r\u0017^\u0000\u0002_\u0000\u0000\u0000\u0014\u0000\u001c\u0017`\u0017a\r\u0017`\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u001a\u0017b\r\u0017b\u0000\u0002\\\u0000\u0000\u0000\u0014\u0000\u001a\u0017c\u0017d\r\u0017c\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0017d\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\u0019\u0017e\r\u0017e\u0000\u00024\u0000\u0000\u0000\u0015\u0000\u0019\u0017f\n\u0000\u0004\nldt \r\u0017f\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u000e0\u0000\u0005ddate\u0000\u0005dDate\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0017a\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\u0004\ndays\r\u0017_\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\u00140\u0000\bddatenum\u0000\bdDateNum\u0002\u0000\u0000\u0002\u0017H\u0000\u0002\u0017g\u0017h\r\u0017g\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017h\u0000\u0002\u0017i\u0017j\r\u0017i\u0000\u0002i\u0000\u0000\u0001\u0001\u0017k\u0017l\r\u0017k\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0017m\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0002\u0017m\u0000\u0002\u0017n\r\u0017n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017l\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\f\u0017o\r\u0017o\u0000\u0002\\\u0000\u0000\u0000\u0000\u0000\f\u0017p\u0017q\r\u0017p\u0000\u0002\\\u0000\u0000\u0000\u0000\u0000\u0006\u0017r\u0017s\r\u0017r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0017s\u0000\u0003l\u0000\u0005\u0000\u0001\u0000\u0005\u0017t\r\u0017t\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0005\u0017u\n\u0000\u0004\nldt \r\u0017u\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\u0004\u0017v\r\u0017v\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0017w\u000e\u0017w\u0000\u0001\u0017x\u0011\u0017x\u0000\u0010\u00001\u0000\/\u00001\u0000\/\u00001\u00009\u00007\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0017q\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\u000b\u0017y\r\u0017y\u0000\u0003I\u0000\u0002\u0000\u0006\u0000\u000b\n\u0000\u0018.sysoGMT long\u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017j\u0000\u0002\u0017z\u0017{\r\u0017z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017{\u0000\u0002\u0017|\u0017}\r\u0017|\u0000\u0002i\u0000\u0000\u0001\u0001\u0017~\u0017\r\u0017~\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\f\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npnam\r\u0017\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\t\u0017\r\u0017\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0017\n\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0017\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0017\r\u0017\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0017\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\n\u0000\b\u000bappfegfp\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017}\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002i\u0000\u0000\u0001\u0001\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0000\u001e0\u0000\rfilterrecords\u0000\rfilterRecords\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nrecordlist\u0000\nrecordList\u0002\u0017\u0000\u0002\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000esearchproperty\u0000\u000esearchProperty\u0002\u0000\u0000\u0002\u0000\u0000\r\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0004\u0017\u0017\r\u0017\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0000\u0000\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002O\u0000\u0000\u0000\u0005\u0000+\u0017\u0017\r\u0017\u0000\u0001k\u0000\u0000\u0000\t\u0000*\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002r\u0000\u0000\u0000\t\u0000\u0017\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0015\u0017\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0017\u0000\u0003\u0017\u0017\n\u0000\u0004\nkocl\r\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nplii\u0006\u0017\u0000\u0003\u0017\n\u0000\u0004\nprdt\r\u0017\u0000\u0001K\u0000\u0000\u0000\r\u0000\u0011\u0017\u0006\u0017\u0000\u0003\u0017\n\u0000\u0004\nvalL\r\u0017\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00180\u0000\nrecordlist\u0000\nrecordList\u0006\u0000\u0000\u0006\u0000\u0000\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0002\u0017\u0000\u0002\u0017\r\u0017\u0000\u0002r\u0000\u0000\u0000\u0018\u0000*\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0018\u0000(\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\nvalL\r\u0017\u0000\u0003l\u0000\u0005\u0000\u0018\u0000&\u0017\r\u0017\u0000\u00026\u0001\u0000\u0000\u0018\u0000&\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001d\u0017\u0017\r\u0017\u0000\u00012\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nplii\r\u0017\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001b\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001b\u0017\u0017\r\u0017\u0000\u00012\u0000\u0001\u0000\u0019\u0000\u001b\n\u0000\u0004\nplii\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0001\u0000\u0000\u0001\u0000\u0000\r\u0017\u0000\u0002=\u0000\u0003\u0000\u001e\u0000%\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u0000\u001f\u0000!\n\u0000\u0004\npnam\r\u0017\u0000\u0001o\u0000\u0000\u0000\"\u0000$\u000b\u0000 0\u0000\u000esearchproperty\u0000\u000esearchProperty\u0001\u0000\u0000\u0001\u0000\u0000\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fthevaluelist\u0000\ftheValueList\u0002\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0017\u000f\u0017\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003X\u0000\u0000\u0000,\u0000H\u0017\u0017\r\u0017\u0000\u0002r\u0000\u0000\u0000<\u0000C\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0017\u0017\r\u0017\u0000\u00024\u0000\u0001\u0000=\u0000@\u0017\n\u0000\u0004\ncobj\r\u0017\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0001\r\u0017\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0017\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0017\r\u0017\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0017\u0000\u0001o\u0000\u0000\u0000@\u0000A~\u000b~\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\r\u0017\u0000\u0001o\u0000\u0000\u0000\/\u00000}\u000b}\u0000\u001c0\u0000\fthevaluelist\u0000\ftheValueList\u0002\u0017\u0000\u0002\u0017|\r\u0017\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000I\u0000J{\u000b{\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002|\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000zyx\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002i\u0000\u0000\u0001\u0001\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000w\u0017v\u000bw\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u0017\u0000\u0002\u0017u\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u00070\u0000\u0003str\u0000\u0000\u0002u\u0000\u0000\u0002v\u0000\u0000\r\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\f\u0017\u0017sr\r\u0017\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001q\u000bq\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002p\np\u0000\u0004\nmsng\r\u0017\u0000\u0001L\u0000\u0000\u0000\u0006\u0000\b\u0017\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007o\no\u0000\b\u000bboovtrue\u0002s\u0000\u0000\u0001r\u0000\u0000\u0002\u0017\u0000\u0002\u0017n\r\u0017\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0018\u0017\r\u0017\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0017\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0015\u0017\u0017\r\u0017\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015m\nm\u0000\u0004\nleng\r\u0017\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0013\u0017lk\r\u0017\u0000\u0002n\u0000\u0001\u0000\r\u0000\u0013\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0013j\u0017i\u000bj\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002\u0017\u0000\u0002\u0017h\r\u0017\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000fg\u000bg\u0000\u00070\u0000\u0003str\u0000\u0000\u0002h\u0000\u0000\u0002i\u0000\u0000\r\u0017\u0000\u0000f\u0000\u0000\u0000\r\u0000\u000e\u0001l\u0000\u0000\u0001k\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016f\u0003f\u0000\u0000\u0002n\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000edc\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0002i\u0000\u0000\u0001\u0001\u0017\u0017\r\u0017\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000b\u0017a\u000bb\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002\u0017\u0000\u0002\u0017`\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00070\u0000\u0003str\u0000\u0000\u0002`\u0000\u0000\u0002a\u0000\u0000\r\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0017\u0017^]\r\u0017\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0017\u0017\r\u0017\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0017\u0017\r\u0017\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0017\u0017\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003\\\n\\\u0000\u0004\npcls\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001[\u000b[\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004Z\nZ\u0000\u0004\nctxt\r\u0017\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0017\u0017\r\u0017\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0017\u0017\r\u0017\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000bY\nY\u0000\u0004\npcls\r\u0017\u0000\u0001o\u0000\u0000\u0000\b\u0000\tX\u000bX\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\fW\nW\u0000\u0004\nTEXT\r\u0017\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013V\u000bV\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014U\nU\u0000\u0004\nmsng\r\u0017\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001bT\u000bT\u0000\u00070\u0000\u0003str\u0000\u0000\u0002^\u0000\u0000\u0001]\u0000\u0000\u0002\u0017\u0000\u0002\u0017\u0017\r\u0017\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0017\u0017SR\r\u0017\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0017\u0017\r\u0017\u0000\u0001o\u0000\u0000\u0000!\u0000\"Q\u000bQ\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0017\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0018\u0000\u000e\u0018\u0000\u0000\u0001\u0018\u0001\u0011\u0018\u0001\u0000\u0000\r\u0017\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0018\u0002\r\u0018\u0002\u0000\u0001o\u0000\u0000\u0000'\u0000(P\u000bP\u0000\u00070\u0000\u0003str\u0000\u0000\u0002S\u0000\u0000\u0001R\u0000\u0000\u0002\u0017\u0000\u0002\u0018\u0003\u0018\u0004\r\u0018\u0003\u0000\u0003l\u0000\u0002\u0000.\u0000.ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0018\u0004\u0000\u0002\u0018\u0005\u0018\u0006\r\u0018\u0005\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0018\u0007\u0018\b\r\u0018\u0007\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0018\t\u0018\n\u0018\u000b\r\u0018\t\u0000\u0002r\u0000\u0000\u00009\u0000H\u0018\f\u0018\r\r\u0018\f\u0000\u0002c\u0000\u0000\u00009\u0000F\u0018\u000e\u0018\u000f\r\u0018\u000e\u0000\u0002n\u0000\u0000\u00009\u0000D\u0018\u0010\u0018\u0011\r\u0018\u0010\u0000\u00037\u0001\u0000\u0000:\u0000DL\u0018\u0012\u0018\u0013\nL\u0000\u0004\ncobj\r\u0018\u0012\u0000\u0001m\u0000\u0000\u0000>\u0000@K\u0003K\u0000\u0002\r\u0018\u0013\u0000\u0001m\u0000\u0000\u0000A\u0000CJ\u0003J\r\u0018\u0011\u0000\u0001o\u0000\u0000\u00009\u0000:I\u000bI\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018\u000f\u0000\u0001m\u0000\u0000\u0000D\u0000EH\nH\u0000\u0004\nctxt\r\u0018\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000F\u0018\u0014E\nF\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0018\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002E\u0000\u0000\r\u0018\u000b\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0018\u0015\r\u0018\u0015\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0018\u0016\u000e\u0018\u0016\u0000\u0001\u0018\u0017\u0011\u0018\u0017\u0000\u0000\r\u0018\b\u0000\u0002C\u0001\u0000\u00002\u00005\u0018\u0018\u0018\u0019\r\u0018\u0018\u0000\u0001o\u0000\u0000\u00002\u00003C\u000bC\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018\u0019\u0000\u0001m\u0000\u0000\u00003\u00004\u0018\u001a\u000e\u0018\u001a\u0000\u0001\u0018\u001b\u0011\u0018\u001b\u0000\u0002\u0000 \u0002\u0018\u0006\u0000\u0002\u0018\u001c\u0018\u001d\r\u0018\u001c\u0000\u0002V\u0000\u0000\u0000X\u0000\u0018\u001e\u0018\u001f\r\u0018\u001e\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0018 \u0018!\u0018\"\r\u0018 \u0000\u0002r\u0000\u0000\u0000c\u0000r\u0018#\u0018$\r\u0018#\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0018%\u0018&\r\u0018%\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0018'\u0018(\r\u0018'\u0000\u00037\u0001\u0000\u0000d\u0000nB\u0018)\u0018*\nB\u0000\u0004\ncobj\r\u0018)\u0000\u0001m\u0000\u0000\u0000h\u0000jA\u0003A\u0000\u0001\r\u0018*\u0000\u0001m\u0000\u0000\u0000k\u0000m@\u0003@\r\u0018(\u0000\u0001o\u0000\u0000\u0000c\u0000d?\u000b?\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018&\u0000\u0001m\u0000\u0000\u0000n\u0000o>\n>\u0000\u0004\nctxt\r\u0018$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018!\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000<;:\n<\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001;\u0000\u0000\u0002:\u0000\u0000\r\u0018\"\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0018+\r\u0018+\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0018,\u000e\u0018,\u0000\u0001\u0018-\u0011\u0018-\u0000\u0000\r\u0018\u001f\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0018.\u0018\/\r\u0018.\u0000\u0001o\u0000\u0000\u0000\\\u0000]9\u000b9\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018\/\u0000\u0001m\u0000\u0000\u0000]\u0000^\u00180\u000e\u00180\u0000\u0001\u00181\u0011\u00181\u0000\u0002\u0000 \u0002\u0018\u001d\u0000\u0002\u001828\r\u00182\u0000\u0001L\u0000\u0000\u0000\u0000\u00183\r\u00183\u0000\u0001o\u0000\u0000\u0000\u00007\u000b7\u0000\u00070\u0000\u0003str\u0000\u0000\u00028\u0000\u0000\u0002\u0017\u0000\u0002\u00184\u00185\r\u00184\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u00185\u0000\u0002\u00186\u00187\r\u00186\u0000\u0002i\u0000\u0000\u0001\u0001\u00188\u00189\r\u00188\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u00003\u0018:2\u000b3\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u0018:\u0000\u0002\u0018;1\r\u0018;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00070\u0000\u0003str\u0000\u0000\u00021\u0000\u0000\u00022\u0000\u0000\r\u00189\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018<\u0002\u0018<\u0000\u0002\u0018=\u0018>\r\u0018=\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0019\u0018?\u0018@\/.\r\u0018?\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0010\u0018A\u0018B\r\u0018A\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0018C\u0018D\r\u0018C\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0018E\u0018F\r\u0018E\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003-\n-\u0000\u0004\npcls\r\u0018F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001,\u000b,\u0000\u00070\u0000\u0003str\u0000\u0000\r\u0018D\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004+\n+\u0000\u0004\nctxt\r\u0018B\u0000\u0003l\u0000\u0005\u0000\b\u0000\u000e\u0018G*)\r\u0018G\u0000\u0002n\u0000\u0001\u0000\b\u0000\u000e\u0018H\u0018I\r\u0018H\u0000\u0003I\u0000\u0000\u0000\t\u0000\u000e(\u0018J'\u000b(\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u0018J\u0000\u0002\u0018K&\r\u0018K\u0000\u0001o\u0000\u0000\u0000\t\u0000\n%\u000b%\u0000\u00070\u0000\u0003str\u0000\u0000\u0002&\u0000\u0000\u0002'\u0000\u0000\r\u0018I\u0000\u0000f\u0000\u0000\u0000\b\u0000\t\u0001*\u0000\u0000\u0001)\u0000\u0000\r\u0018@\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0015\u0018L\r\u0018L\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014$\u000b$\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0018>\u0000\u0002\u0018M\u0018N\r\u0018M\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001d\u0018O\u0018P\r\u0018O\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0018Q\u000e\u0018Q\u0000\u0001\u0018R\u0011\u0018R\u0000\u0000\r\u0018P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0018N\u0000\u0002\u0018S\u0018T\r\u0018S\u0000\u0003X\u0000\u0000\u0000\u001e\u0000\u0018U\"\u0018V\r\u0018U\u0000\u0001k\u0000\u0000\u0000.\u0000\u0018W\u0002\u0018W\u0000\u0002\u0018X\u0018Y\r\u0018X\u0000\u0002r\u0000\u0000\u0000.\u00003\u0018Z\u0018[\r\u0018Z\u0000\u0002n\u0000\u0000\u0000.\u00001\u0018\\\u0018]\r\u0018\\\u0000\u00011\u0000\u0000\u0000\/\u00001!\n!\u0000\u0004\npcnt\r\u0018]\u0000\u0001o\u0000\u0000\u0000.\u0000\/ \u000b \u0000\f0\u0000\u0004sref\u0000\u0004sRef\r\u0018[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00050\u0000\u0001c\u0000\u0000\u0002\u0018Y\u0000\u0002\u0018^\u001e\r\u0018^\u0000\u0004Z\u0000\u0000\u00004\u0000\u0018_\u0018`\u001d\u0018a\r\u0018_\u0000\u0002E\u0000\u0001\u00004\u0000=\u0018b\u0018c\r\u0018b\u0000\u0001J\u0000\u0000\u00004\u0000;\u0018d\u0002\u0018d\u0000\u0002\u0018e\u0018f\r\u0018e\u0000\u0001m\u0000\u0000\u00004\u00005\u0018g\u000e\u0018g\u0000\u0001\u0018h\u0011\u0018h\u0000\u0002\u0000&\u0002\u0018f\u0000\u0002\u0018i\u0018j\r\u0018i\u0000\u0001m\u0000\u0000\u00005\u00006\u0018k\u000e\u0018k\u0000\u0001\u0018l\u0011\u0018l\u0000\u0002\u0000'\u0002\u0018j\u0000\u0002\u0018m\u0018n\r\u0018m\u0000\u0001m\u0000\u0000\u00006\u00007\u0018o\u000e\u0018o\u0000\u0001\u0018p\u0011\u0018p\u0000\u0002\u0000\"\u0002\u0018n\u0000\u0002\u0018q\u0018r\r\u0018q\u0000\u0001m\u0000\u0000\u00007\u00008\u0018s\u000e\u0018s\u0000\u0001\u0018t\u0011\u0018t\u0000\u0002\u0000<\u0002\u0018r\u0000\u0002\u0018u\u001c\r\u0018u\u0000\u0001m\u0000\u0000\u00008\u00009\u0018v\u000e\u0018v\u0000\u0001\u0018w\u0011\u0018w\u0000\u0002\u0000>\u0002\u001c\u0000\u0000\r\u0018c\u0000\u0001o\u0000\u0000\u0000;\u0000<\u001b\u000b\u001b\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018`\u0000\u0004Z\u0000\u0000\u0000@\u0000\u0018x\u0018y\u0018z\u001a\r\u0018x\u0000\u0002=\u0000\u0003\u0000@\u0000C\u0018{\u0018|\r\u0018{\u0000\u0001o\u0000\u0000\u0000@\u0000A\u0019\u000b\u0019\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018|\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0018}\u000e\u0018}\u0000\u0001\u0018~\u0011\u0018~\u0000\u0002\u0000&\r\u0018y\u0000\u0002r\u0000\u0000\u0000F\u0000M\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000F\u0000G\u0018\u000b\u0018\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000G\u0000J\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\n\u0000&\u0000a\u0000m\u0000p\u0000;\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0018z\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002=\u0000\u0003\u0000P\u0000U\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u0016\u000b\u0016\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000Q\u0000T\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0002\u0000'\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000X\u0000_\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000X\u0000]\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u0015\u000b\u0015\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\f\u0000&\u0000a\u0000p\u0000o\u0000s\u0000;\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002=\u0000\u0003\u0000b\u0000g\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000b\u0000c\u0013\u000b\u0013\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000c\u0000f\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0002\u0000\"\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000j\u0000q\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000j\u0000o\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000j\u0000k\u0012\u000b\u0012\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\f\u0000&\u0000q\u0000u\u0000o\u0000t\u0000;\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002=\u0000\u0003\u0000t\u0000y\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000t\u0000u\u0010\u000b\u0010\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0002\u0000<\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000|\u0000\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000|\u0000\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000f\u000b\u000f\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000}\u0000\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\b\u0000&\u0000l\u0000t\u0000;\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002=\u0000\u0003\u0000\u0000\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0002\u0000>\u0002\u0018\u0000\u0002\u0018\f\r\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\b\u0000&\u0000g\u0000t\u0000;\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\f\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u001d\u0000\u0000\r\u0018a\u0000\u0002r\u0000\u0000\u0000\u0000\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00050\u0000\u0001s\u0000\u0000\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u001e\u0000\u0000\u000b\"\u0000\f0\u0000\u0004sref\u0000\u0004sRef\r\u0018V\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u0006\u000b\u0006\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0018T\u0000\u0002\u0018\u0005\r\u0018\u0000\u0001L\u0000\u0000\u0000\u0000\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0004\u000b\u0004\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\u0005\u0000\u0000\u0002\u00187\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002i\u0000\u0000\u0001\u0001\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0000\u0000\f0\u0000\bpath2url\u0000\u0000\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\n\u0018\r\u0018\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0018\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0018\u0018\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000-\u0000c\u0000 \u0000\"\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000 \u0000u\u0000r\u0000l\u0000l\u0000i\u0000b\u0000,\u0000 \u0000s\u0000y\u0000s\u0000;\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000 \u0000(\u0000u\u0000r\u0000l\u0000l\u0000i\u0000b\u0000.\u0000q\u0000u\u0000o\u0000t\u0000e\u0000(\u0000s\u0000y\u0000s\u0000.\u0000a\u0000r\u0000g\u0000v\u0000[\u00001\u0000]\u0000)\u0000)\u0000\"\u0000 \r\u0018\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0004\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u0000\u0002\u0000\u0004\n\u0000\u0004\nstrq\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002i\u0000\u0000\u0001\u0001\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0000\u001a0\u0000\u000bkeydowntest\u0000\u000bkeyDowntest\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fworkflowpath\u0000\fworkflowPath\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmodifierkey\u0000\u000bmodifierKey\u0002\u0000\u0000\u0002\u0000\u0000\r\u0018\u0000\u0003l\u0000\u0003\u0000\u0000\u0000\u001b\u0018\u0018\u0018\r\u0018\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0018\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000f\u0018\u0018\r\u0018\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\r\u0018\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\t\u0018\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0018\u0018\r\u0018\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0005\u0018\u0018\r\u0018\u0000\u00011\u0000\u0000\u0000\u0003\u0000\u0005\n\u0000\u0004\nstrq\r\u0018\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0003\u0018\r\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u001c0\u0000\fworkflowpath\u0000\fworkflowPath\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0018\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000$\u0000\/\u0000c\u0000h\u0000e\u0000c\u0000k\u0000M\u0000o\u0000d\u0000i\u0000f\u0000i\u0000e\u0000r\u0000K\u0000e\u0000y\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\r\u0018\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nspac\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u001a0\u0000\u000bmodifierkey\u0000\u000bmodifierKey\u0002\u0000\u0000\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\u0002\u0018\u0000\u0002\u0018\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0015\u0018\u0018\r\u0018\u0000\u0002c\u0000\u0000\u0000\u0010\u0000\u0013\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\u0004\nlong\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001b\u0018\u0018\r\u0018\u0000\u0002c\u0000\u0000\u0000\u0016\u0000\u0019\u0018\u0018\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\r\u0018\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\u0004\nbool\r\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\u0002\u0000\u0000\f\u0018\u0000\u0018\u0000\u0012 test for key down\u0000\u0002\u0000\u0000\u000e\u0018\u0000\u0001\u0018\u0011\u0018\u0000$\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000k\u0000e\u0000y\u0000 \u0000d\u0000o\u0000w\u0000n\u0002\u0018\u0000\u0002\u0018\r\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001S\u0000>\u0018\u0001X\u0001c\u0001h\u0001y\u0001~\u0001\u0018\u0018\u0019\u0000\u0019\u0001\u0019\u0002\u0019\u0003\u0019\u0004\u0019\u0005\u0019\u0006\u0019\u0007\u0019\b\u0019\t\u0019\n\u0019\u000b\u0019\f\u0019\r\u0019\u000e\u0019\u000f\u0019\u0010\u0019\u0011\u0019\u0012\u0019\u0013\u0019\u0014\u0019\u0015\u0019\u0016\u0019\u0017\u0019\u0018\u0019\u0019\u0019\u001a\u0019\u001b\u0019\u001c\u0019\u001d\u0019\u001e\u0019\u001f\u0019 \u0019!\u0019\"\u0019#\u0019$\u0019%\u0019&\u0019'\u0019(\u0019)\u0019*\u0019+\u0019,\u0019-\u0019.\u0019\/\u00190\u0001\u0000\u0000\u0010\u0018\u0000<\u000b\u0000\u00150\u0000\u0011pocketconsumerkey\u0000\u0000\u000b\u0000 0\u0000\u000eclosereminders\u0000\u000ecloseReminders\u000b\u0000\u00180\u0000\nclosenotes\u0000\ncloseNotes\u000b\u0000\u00160\u0000\tupdateurl\u0000\tupdateURL\u000b\u0000\u001a0\u0000\u000bdownloadurl\u0000\u000bdownloadURL\u000b\u0000 0\u0000\u000eworkflowfolder\u0000\u000eworkflowFolder\u000b\u0000\u001e0\u0000\roverduestring\u0000\roverdueString\u000b\u0000\u00160\u0000\tallstring\u0000\tallString\u000b\u0000\u001e0\u0000\rrefreshstring\u0000\rrefreshString\u000b\u0000&0\u0000\u0011reminderhelpitems\u0000\u0011reminderHelpItems\u000b\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u000b\u0000(0\u0000\u0012pocketrequesttoken\u0000\u0012pocketRequestToken\u000b\u0000(0\u0000\u0012setremindersactive\u0000\u0012setRemindersActive\u000b\u0000&0\u0000\u0011fetchreminderlist\u0000\u0011fetchReminderList\u000b\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u000b\u0000(0\u0000\u0012spawnremindercache\u0000\u0012spawnReminderCache\u000b\u0000\"0\u0000\u000ffilterreminders\u0000\u000ffilterReminders\u000b\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u000b\u0000\u001c0\u0000\fremindericon\u0000\freminderIcon\u000b\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u000b\u0000\u001c0\u0000\freminderhelp\u0000\freminderHelp\u000b\u0000*0\u0000\u0013actionreminderquery\u0000\u0013actionReminderQuery\u000b\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\u000b\u0000 0\u0000\u000esetnotesactive\u0000\u000esetNotesActive\u000b\u0000\u00180\u0000\ncreatenote\u0000\ncreateNote\u000b\u0000&0\u0000\u0011notefromclipboard\u0000\u0011noteFromClipboard\u000b\u0000\"0\u0000\u000fclipboardashtml\u0000\u000fclipboardAsHTML\u000b\u0000(0\u0000\u0012formatnotesubtitle\u0000\u0012formatNoteSubtitle\u000b\u0000\u00140\u0000\bfilemeta\u0000\bfileMeta\u000b\u0000\"0\u0000\u000fformatmediainfo\u0000\u000fformatMediaInfo\u000b\u0000\u00120\u0000\u000eformatopenmeta\u0000\u0000\u000b\u0000*0\u0000\u0013getspotlightcomment\u0000\u0013getSpotlightComment\u000b\u0000\u00110\u0000\ralfred_result\u0000\u0000\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u000b\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u000b\u0000\u00190\u0000\u0015alfred_version_notify\u0000\u0000\u000b\u0000\"0\u0000\u000fislatestversion\u0000\u000fisLatestVersion\u000b\u0000\u001c0\u0000\fcheckversion\u0000\fcheckVersion\u000b\u0000\u001e0\u0000\rgetversionurl\u0000\rgetVersionURL\u000b\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u000b\u0000\u001a0\u0000\u000bcurladddata\u0000\u000bcurlAddData\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\u000b\u0000\b0\u0000\u0004trim\u0000\u0000\u000b\u0000\b0\u0000\u0004echo\u0000\u0000\u000b\u0000\u000f0\u0000\u000bformat_date\u0000\u0000\u000b\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u000b\u0000\u00060\u0000\u0002dd\u0000\u0000\u000b\u0000\"0\u0000\u000fcoercedatetonum\u0000\u000fcoerceDateToNum\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u000b\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u000b\u0000\u001e0\u0000\rfilterrecords\u0000\rfilterRecords\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000b\u0000\n0\u0000\u0006q_trim\u0000\u0000\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u000b\u0000\f0\u0000\bpath2url\u0000\u0000\u000b\u0000\u001a0\u0000\u000bkeydowntest\u0000\u000bkeyDowntest\n\u0000\b\u000bboovfals\n\u0000\b\u000bboovfals\n\u0000\u0004\nmsng\u000e\u0018\u0000\u0002\u0004\u00191\u0003\u0000\f\u000e\u00191\u0000\f\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u000e\u0018\u0000\u0002\u0004\u00192\u0003\u0000\r\u000e\u00192\u0000\r\u0000\u00193\u00194\u00195\u00196\u00197\u00198\u00199\u0019:\u0019;\u0019<\u0019=\u0019>\u0019?\u0006\u00193\u0000\u0003\u0001\u0019@\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019@\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00194\u0000\u0003\u0001\u0019A\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019A\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00195\u0000\u0003\u0001\u0019B\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019B\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00196\u0000\u0003\u0001\u0019C\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019C\u0000\u0003\u0001\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00197\u0000\u0003\u0001\u0019D\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019D\u0000\u0003\u0002\u0000\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00198\u0000\u0003\u0002\b\u0019E\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019E\u0000\u0003\u0002\u000b\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u00199\u0000\u0003\u0002\u0013\u0019F\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019F\u0000\u0003\u0002\u0016\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u0019:\u0000\u0003\u0002\u001e\u0019G\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019G\u0000\u0003\u0002!\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u0019;\u0000\u0003\u0002)\u0019H\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019H\u0000\u0003\u0002,\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0006\u0000\u0000\u0006\u0019<\u0000\u0003\u00024\u0019I\u000b\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019I\u0000\u0003~\u00027}\u000b~\u0000\b0\u0000\u0004icon\u0000\u0000\u0006}\u0000\u0000\u0006\u0019=\u0000\u0003|\u0002?\u0019J\u000b|\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019J\u0000\u0003{\u0002Bz\u000b{\u0000\b0\u0000\u0004icon\u0000\u0000\u0006z\u0000\u0000\u0006\u0019>\u0000\u0003y\u0002J\u0019K\u000by\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019K\u0000\u0003x\u0002Mw\u000bx\u0000\b0\u0000\u0004icon\u0000\u0000\u0006w\u0000\u0000\u0006\u0019?\u0000\u0003v\u0002U\u0019L\u000bv\u0000\u000b0\u0000\u0007appname\u0000\u0000\u0006\u0019L\u0000\u0003u\u0002Xt\u000bu\u0000\b0\u0000\u0004icon\u0000\u0000\u0006t\u0000\u0000\u000e\u0019\u0000\u0000\u0007\u0010s\u0002hrq\u0019M\u0019Np\u000bs\u0000(0\u0000\u0012pocketrequesttoken\u0000\u0012pocketRequestToken\u0002r\u0000\u0000\u0002q\u0000\u0000\u0010\u0019M\u0000\u0001o\u000bo\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0010\u0019N\u0000\n\u0002n\u0002xn\u0002\u0002\u0002\u0002m\u0002l\u000bn\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u000bm\u0000\u001a0\u0000\u000bcurladddata\u0000\u000bcurlAddData\nl\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011p\u0000EEO*k+\u0000\u0002%EO*k+\u0000\u0002%EO*k+\u0000\u0002%EO*b\u0000\u0001\u0000\u0000%%k+\u0000\u0007%EO%EOj\f\u0000\t\u000f\u000f\u000e\u0019\u0001\u0000\u0007\u0010k\u0002ji\u0019O\u0019Ph\u000bk\u0000(0\u0000\u0012setremindersactive\u0000\u0012setRemindersActive\u0002j\u0000\u0000\u0002i\u0000\u0000\u0010\u0019O\u0000\u0001g\u000bg\u0000(0\u0000\u0012remindersisrunning\u0000\u0012remindersIsRunning\u0010\u0019P\u0000\u0004\u0002fe\u0002\nf\u0000\u0004\nprcs\ne\u0000\u0004\nbnid\u0011h\u0000%\u0012\u0000\u000b*-,\bEUO\u001d\u0000\ffEc\u0000\u0001\u0000\u0001Y\u0000\teEc\u0000\u0001\u0000\u0001\u000f\u000e\u0019\u0002\u0000\u0007\u0010d\u0002cb\u0019Q\u0019Ra\u000bd\u0000&0\u0000\u0011fetchreminderlist\u0000\u0011fetchReminderList\u000ec\u0000\u0002\u0004`\u0019S\u0003`\u0000\u0003\u000e\u0019S\u0000\u0003\u0000_^]\u000b_\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b^\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b]\u0000\u001c0\u0000\fcacheexpires\u0000\fcacheExpires\u0002b\u0000\u0000\u0010\u0019Q\u0000\u0004\\[ZY\u000b\\\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b[\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000bZ\u0000\u001c0\u0000\fcacheexpires\u0000\fcacheExpires\u000bY\u0000\r0\u0000\ttimestamp\u0000\u0000\u0010\u0019R\u0000\u0007\u0002XW\u0003\u0000VUT\u000bX\u0000\r0\u0000\tget_value\u0000\u0000\nW\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001V\u0000\u0000\u0002U\u0000\u0000\u000bT\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0011a\u00008\u0014\u0000'l+\u0000\u0001EO*j\f\u0000\u0002\u001f\u0004\u001d\u0000\rl+\u0000\u0001\u000fY\u0000\u0003hW\u0000\bX\u0000\u0004\u0000\u0005hO*l+\u0000\u0006\u000f\u000f\u000e\u0019\u0003\u0000\u0007\u0010S\u0003\u000eRQ\u0019T\u0019UP\u000bS\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u000eR\u0000\u0002\u0004O\u0019V\u0003O\u0000\u0002\u000e\u0019V\u0000\u0002\u0000NM\u000bN\u0000\u00060\u0000\u0002wf\u0000\u0000\u000bM\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u0002Q\u0000\u0000\u0010\u0019T\u0000\u0005LKJIH\u000bL\u0000\u00060\u0000\u0002wf\u0000\u0000\u000bK\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000bJ\u0000\u001c0\u0000\fcachetimeout\u0000\fcacheTimeout\u000bI\u0000\"0\u0000\u000fcacheinprogress\u0000\u000fcacheInProgress\u000bH\u0000&0\u0000\u0011existingreminders\u0000\u0011existingReminders\u0010\u0019U\u0000\u000bG\u0003!F\u0003-EDC\u0003TB\u0003gA\u0003G\u0000\u001e\u000bF\u0000\r0\u0000\tget_value\u0000\u0000\nE\u0000\u0004\nmsng\nD\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000bC\u0000\f0\u0000\bunixtime\u0000\u0000\u000bB\u0000\r0\u0000\tset_value\u0000\u0000\u000bA\u0000(0\u0000\u0012spawnremindercache\u0000\u0012spawnReminderCache\u0011P\u0000XEOl+\u0000\u0002EOl+\u0000\u0002EO\u0001\u001d\u0000\u001c)*j\f\u0000\u0005k+\u0000\u0006\u001f\u0004\u001d\u0000\u0007\u000fY\u0000\u0003hY\u0000\u0003hOb\u0000\u0001\u0000\u0001m+\u0000\bO*b\u0000\u0001\u0000\u0005%el+\u0000\nO\u000f\u000f\u000e\u0019\u0004\u0000\u0007\u0010@\u0003q?>\u0019W\u0019X=\u000b@\u0000(0\u0000\u0012spawnremindercache\u0000\u0012spawnReminderCache\u000e?\u0000\u0002\u0004<\u0019Y\u0003<\u0000\u0002\u000e\u0019Y\u0000\u0002\u0000;:\u000b;\u0000\u001a0\u0000\u000bcachescript\u0000\u000bcacheScript\u000b:\u0000\"0\u0000\u000fruninbackground\u0000\u000frunInBackground\u0002>\u0000\u0000\u0010\u0019W\u0000\u000298\u000b9\u0000\u001a0\u0000\u000bcachescript\u0000\u000bcacheScript\u000b8\u0000\"0\u0000\u000fruninbackground\u0000\u000frunInBackground\u0010\u0019X\u0000\u0005\u00037\u00036\u0003\n7\u0000\u0004\nstrq\n6\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011=\u0000\u001c\u001d\u0000\u0010,%%j\f\u0000\u0003Y\u0000\u000b,%j\f\u0000\u0003\u000f\u000e\u0019\u0005\u0000\u0007\u00105\u000343\u0019Z\u0019[2\u000b5\u0000\"0\u0000\u000ffilterreminders\u0000\u000ffilterReminders\u000e4\u0000\u0002\u00041\u0019\\\u00031\u0000\u0004\u000e\u0019\\\u0000\u0004\u00000\/.-\u000b0\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u000b\/\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b.\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b-\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u00023\u0000\u0000\u0010\u0019Z\u0000\r,+*)('&%$#\"! \u000b,\u0000\u001c0\u0000\freminderlist\u0000\freminderList\u000b+\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b*\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b)\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b(\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b'\u0000\u00110\u0000\rreminder_item\u0000\u0000\u000b&\u0000\u001a0\u0000\u000bmatchedtext\u0000\u000bmatchedText\u000b%\u0000\u001a0\u0000\u000bmatcheddate\u0000\u000bmatchedDate\u000b$\u0000\u001a0\u0000\u000bmatchedlist\u0000\u000bmatchedList\u000b#\u0000\u000e0\u0000\nreminddate\u0000\u0000\u000b\"\u0000\u000b0\u0000\u0007duedate\u0000\u0000\u000b!\u0000\b0\u0000\u0004body\u0000\u0000\u000b \u0000\u00140\u0000\binfotext\u0000\binfoText\u0010\u0019[\u0000!\u001f\u001e\u001d\u001c\u0003\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0004\u001e\u0014\u0004Y\u0013\u0012\u0004\u0004\u0004\u0011\u0004\u0010\u0004\u0004\u0004\u000f\u0004\u0004\u0004\u0004\u000e\r\n\u001f\u0000\u0004\nmsng\n\u001e\u0000\u0004\nkocl\n\u001d\u0000\u0004\ncobj\n\u001c\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u001b\u0000\u0004\nbool\u000b\u001a\u0000\t0\u0000\u0005title\u0000\u0000\u000b\u0019\u0000\u000e0\u0000\nreminddate\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0017\u0000\u0000\u000b\u0016\u0000\u000b0\u0000\u0007duedate\u0000\u0000\n\u0015\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0014\u0000\u0004\ndstr\u000b\u0013\u0000\u000e0\u0000\nparentlist\u0000\u0000\u000b\u0012\u0000\b0\u0000\u0004body\u0000\u0000\n\u0011\u0000\u0004\nTEXT\u000b\u0010\u0000\u00100\u0000\fcreationdate\u0000\u0000\u000b\u000f\u0000\u00070\u0000\u0003uid\u0000\u0000\u0003\u000e\u0000\u0006\u000b\r\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u00112\u0001jvEO\u0001\u001d\u0001\u0017\u0001\u02a0[l\f\u0000\u0003kh\u001b\u0000\u0005fEOfEOfEO\u0000\n\u0000\u0007\u0000&\n\u0000\u000bb\u0000\u0001\u0000\u0007\u0000&\n\u0000\u000bb\u0000\u0001\u0000\u0006\u0000&\n\u0000\u000bb\u0000\u0001\u0000\b\u0000&\n\u0000\t,\b&\u001d\u0000\beEY\u0000\u0003hO\u0014\u0000\n,EW\u0000\nX\u0000\b\u0000\tEO\u0014\u0000\n,EW\u0000\nX\u0000\b\u0000\tEOb\u0000\u0001\u0000\u0006\u0000\t\u0000\u0007\u0001&\t\u0000\u000b*j\f\u0000\u000b\u0004&\u001d\u0000\beEY\u0000Wb\u0000\u0001\u0000\u0006\u0000\u001d\u0000\bfEY\u0000G\u0000\n\u0000\u0007\u0000&\u001d\u0000\beEY\u00003\u0001\t\u0000\u000b,,\u0000&\u001d\u0000\beEY\u0000\u001b\u0001\t\u0000\u000b,,\u0000&\u001d\u0000\beEY\u0000\u0003hO\u0000\n\u0000\u0007\u0000&\n\u0000\t,\b&\u001d\u0000\beEY\u0000\u0003hO\t\u0000\u0005&\t\u0000\u0005&\u001d\u0000\u0014\u0000\fa\u0000\u0010,EW\u0000\nX\u0000\b\u0000\tEO\u0001\u001d\u0000\u0014a\u0000\u0011a\u0000\u0010,%a\u0000\u0012%EY\u0000=\u0001\u001d\u0000$a\u0000\u0013,%a\u0000\u0014&a\u0000\u0015%a\u0000\u0016,%a\u0000\u0014&a\u0000\u0017%EY\u0000\u0015a\u0000\u0018a\u0000\u0016,%a\u0000\u0014&a\u0000\u0019%EO)a\u0000\u001a,,a\u0000\u001b%a\u0000\u001ca\u0000\u001a,%a\u0000\u001da\u0000\u001ea\u0000\u001f+\u0000 6FY\u0000\u0003h[OYDY\u0000\u0003hO\u000f\u000f\u000e\u0019\u0006\u0000\u0007\u0010\f\u0004\u000b\n\u0019]\u0019^\t\u000b\f\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u000e\u000b\u0000\u0002\u0004\b\u0019_\u0003\b\u0000\u0001\u000e\u0019_\u0000\u0001\u0000\u0007\u000b\u0007\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\n\u0000\u0000\u0010\u0019]\u0000\f\u0006\u0005\u0004\u0003\u0002\u0001\u0000\u000b\u0006\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0005\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0004\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0003\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0002\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000b\u0001\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u000b\u0000\u0000\t0\u0000\u0005valid\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u000b\u0000\u00140\u0000\btheindex\u0000\btheIndex\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0010\u0019^\u0000\\\u0004\u0004\u0004\u0005\u0003\u0005\t\u0005\u000f\u0005\u001c\u00054\u0005U\u0005{\u0005\u0005\u0005\u0005\u0006\u0001\u0006*\u0006;\u0006B\u0006M\u0006T\u0006y\u0006\u0006\u0006\u0006\u0006\u0006\u0006\u0007\u0007\u0007\u000e\u0007\u0019\u0007 \u0007R\u0007Y\u0007|\u0007\u0007\u0007\u0007\u0007\u0007\b\u001f\bR\bn\br\bv\bz\b\b\b\b\b\b\b\b\b\b\n\u0000\u0004\ncwor\u000b\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\n\u0000\u0004\ncha \u0003\u0000\u0006\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\nspac\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\u0003\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0000\u0004\ndays\u000b\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nmin \u0003\u0000\u0005\n\u0000\u0004\nhour\n\u0000\u0004\nldt \u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\n\u0000\u0004\ntime\u000b\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u000b\u0000\u001c0\u0000\fremindericon\u0000\freminderIcon\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u0003\u0000\f\u0011\t\u0005EOEOEOEOEOEOk\/\u0000\u001d\u0000*)j+\u0000\bEO\u0014\u0000\u0014[\\[Z\\Zi2&EW\u0000\nX\u0000\f\u0000\rEY\u0000\u0003hOb\u0000\u0001\u0000\u0007\u0001\t\u0000\u000bb\u0000\u0001\u0000\u0006\u0001&\t\u0000\u000bb\u0000\u0001\u0000\b\u0001&\u001d\u0004\u0014\u0000i\/a\u0000\u0010\u0000\u001d\u0000_\u0000\u0011a\u0000\u0012,EO_\u0000\u0013_\u0000\u0011a\u0000\u0012,FOjEOa\u0000\u0014-EO\u0017\u0000(j\f\u0000\u0015kih\u001c\u0000\na\u0000\u0016\/a\u0000\u0017\u0000\u001d\u0000\nEO\u0016Y\u0000\u0003h[OYOk\u0003\u001d\u0000H\u0014\u0000<[a\u0000\u0016\\[Zk\u001e\\Za\u0000\u00182&EOk\u0002\u001d\u0000\u0018[a\u0000\u0016\\[Zk\\Zk\u001f2&EY\u0000\u0007a\u0000\u0019EW\u0000\bX\u0000\f\u0000\rhY\u0000\u0003hO_\u0000\u0011a\u0000\u0012,FY\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhO\u0014\u0000k\/a\u0000\u001a\u0000\u001d\u0000!)lim+\u0000\u001bEO*j\f\u0000\u001c_\u0000\u001d\u001eEOa\u0000\u001eEY\u0000Vk\/a\u0000\u001f\u0000\u001d\u0000\u001d)lim+\u0000\u001bEO*j\f\u0000\u001cEOa\u0000 EY\u00000)k\/k+\u0000!f\u0001\u001d\u0000!)k\/k+\u0000!EO)lim+\u0000\u001bEOa\u0000\"EY\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhO\u0014\u0003Ta\u0000#\u0000\t\u0000\fk\/a\u0000$\u0000&\t\u0000\u0019m\/a\u0000%\u0000\n\u0000\fm\/a\u0000&\u0000&&\u001d\u0000,)a\u0000'im+\u0000\u001bEO*j\f\u0000\u001c_\u0000()llm+\u0000\u001b \u001eEOa\u0000)EY\u0002a\u0000*\u0000\t\u0000\fk\/a\u0000+\u0000&\t\u0000\u0019m\/a\u0000,\u0000\n\u0000\fm\/a\u0000-\u0000&&\u001d\u0000x)a\u0000'im+\u0000\u001bEO*j\f\u0000\u001c_\u0000\u001d)llm+\u0000\u001b \u001eEO\u0014\u0000Da\u0000.\/a\u0000\/\u0000\n\u0000\u000ea\u0000.\/a\u00000\u0000&\u001d\u0000$)im+\u0000\u001bEO_\u00001)a\u0000'a\u0000'm+\u0000\u001b \u001eEY\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhOa\u00002EY\u0002Sa\u00003\u0000\t\u0000\fk\/a\u00004\u0000&\t\u0000\u0019m\/a\u00005\u0000\n\u0000\fm\/a\u00006\u0000&&\u001d\u0000x)a\u0000'im+\u0000\u001bEO*j\f\u0000\u001c_\u00001)llm+\u0000\u001b \u001eEO\u0014\u0000Da\u0000.\/a\u00007\u0000\n\u0000\u000ea\u0000.\/a\u00008\u0000&\u001d\u0000$)im+\u0000\u001bEO_\u0000()a\u0000'a\u0000'm+\u0000\u001b \u001eEY\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhOa\u00009EY\u0001a\u0000:\u0000\t\u0000\fk\/a\u0000;\u0000&\u001d\u0000_\u0000\u0011a\u0000\u0012,EO_\u0000\u0013_\u0000\u0011a\u0000\u0012,FOjEOa\u0000\u0014-EO\u0017\u0000(lj\f\u0000\u0015kh\u001c\u0000\na\u0000\u0016\/a\u0000<\u0000\u001d\u0000\nEO\u0016Y\u0000\u0003h[OYOj\u0002\u001d\u0000G\u0014\u00007[a\u0000\u0016\\[Zk\u001e\\Zi2&EO*a\u0000=[a\u0000\u0016\\[Zl\\Zk\u001f2&\/EOa\u0000>EW\u0000\fX\u0000\f\u0000\ra\u0000?EY\u0000\u0003hO_\u0000\u0011a\u0000\u0012,FY\u0000k\/a\u0000@\u0000\u001d\u0000_\u0000\u0011a\u0000\u0012,EO_\u0000\u0013_\u0000\u0011a\u0000\u0012,FOjEOa\u0000\u0014-EO\u0017\u0000&lj\f\u0000\u0015kh\u001c\u0000\na\u0000\u0016\/a\u0000A\u0000\u001d\u0000\bEY\u0000\u0003h[OYOj\u0002\u001d\u0000v\u0014\u0000f[a\u0000\u0016\\[Zk\u001e\\Zi2&EO[a\u0000\u0016\\[Zl\\Zk\u001f2&EOa\u0000B\u0000\u001d\u0000\r)k+\u0000CEY\u0000\u0012)k+\u0000Ca\u0000D,a\u0000D,FOa\u0000E\u0001\u001d\u0000\na\u0000FEY\u0000\u0007a\u0000GEW\u0000\fX\u0000\f\u0000\ra\u0000HEY\u0000\u0003hO_\u0000\u0011a\u0000\u0012,FY\u0000\u0017EOa\u0000I\u0001\u001d\u0000\na\u0000JEY\u0000\u0003hW\u0000\bX\u0000\f\u0000\rhY\u0000\u0005EOa\u0000K\u0000\t\u0000\u0013a\u0000L\u0000\n\u0000\ta\u0000M\u0000&&\u001d\u0000\na\u0000NEY\u0000!a\u0000O\u0001\t\u0000\r*a\u0000Pl+\u0000Q&\u001d\u0000\na\u0000REY\u0000\u0003hO&EOa\u0000S\u0000\u001d\u0000\r)k+\u0000TEY\u0000\u0003hOa\u0000Ua\u0000Va\u0000Wa\u0000Xa\u0000Ya\u0000Za\u0000[\u000e\u000f\u000f\u000e\u0019\u0007\u0000\u0007\u0010\b\u0019`\u0019a\u000b\u0000\u001c0\u0000\fremindericon\u0000\freminderIcon\u000e\u0000\u0002\u0004\u0019b\u0003\u0000\u0001\u000e\u0019b\u0000\u0001\u0000\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u0000\u0000\u0010\u0019`\u0000\u0002\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000b\u0000\u000b0\u0000\u0007appinfo\u0000\u0000\u0010\u0019a\u0000\u0006\b\b\t\u0013\u000b\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\n\u0000\u0004\nmsng\u000b\u0000\b0\u0000\u0004icon\u0000\u0000\u0011\u0000*\u0000\u001d\u0000\u0007\u000fY\u0000 )b\u0000\u0001\u0000\nl+\u0000\u0002EO\u0001\u001d\u0000\n,E\u000fY\u0000\u0004\u000f\u000f\u000e\u0019\b\u0000\u0007\u0010\t\u001a\u0019c\u0019d\u000b\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u000e\u0000\u0002\u0004\u0019e\u0003\u0000\u0004\u000e\u0019e\u0000\u0004\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0002\u0000\u0000\u0010\u0019c\u0000\u0005\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0010\u0019d\u0000\u0010\t,\t3\t8\t@\tH\tP\tX\t`\th\tp\t{\t\u000b\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\n\u0000\u0004\nbool\n\u0000\u0004\nTEXT\n\u0000\u0004\nstrq\u0011\u0000o\u0001\t\u0000\f*l+\u0000\u0002\u000b&\u001d\u0000\t%\u000fY\u0000\u0003hOEO\u0001\u001d\u0000\f%%EY\u0000\u0003hO\u0001\u001d\u0000\f%%EY\u0000\u0003hO\u0001\u001d\u0000\u000e%&%EY\u0000\u0003hO\u0001\u001d\u0000\u000e%,%EY\u0000\u0003hO\u000f\u000f\u000e\u0019\t\u0000\u0007\u0010\t\u0019f\u0019g\u000b\u0000\u001c0\u0000\freminderhelp\u0000\freminderHelp\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0019f\u0000\u0004\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00140\u0000\bhelpitem\u0000\bhelpItem\u000b\u0000 0\u0000\u000eparsedreminder\u0000\u000eparsedReminder\u0010\u0019g\u0000,\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\u0006\n\n\n\r\n+\n2\nM\nQ\u0003\u0000\u0006\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u000b\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u0003\u0000\u0004\u000b\u000000\u0000\u0016formatremindersubtitle\u0000\u0016formatReminderSubtitle\u0003\u0000\u0005\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u0011\u0000*+\u0000\u0007*+\u0000\u0007*a\u0000\u0010a\u0000\u0011a\u0000\u0012a\u0000\u0013+\u0000\u0007*a\u0000\u0014a\u0000\u0015*a\u0000\u0016a\u0000\u0017a\u0000\u0018)j+\u0000\u0019a\u0000\u001a+\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001e+\u0000\u0007a\u0000\u001avEOa\u0000\u001fEO\u0017\u0000_b\u0000\u0001\u0000\t[a\u0000 a\u0000!l\f\u0000\"kh\u001b\u0000\u0002)k+\u0000#EO)a\u0000$%a\u0000%%*a\u0000&,a\u0000',a\u0000(,a\u0000),a\u0000\u001a+\u0000\u001ba\u0000*a\u0000++\u0000\u00076FOk\u001eE[OYO\u000f\u000f\u000e\u0019\n\u0000\u0007\u0010\na\u0019h\u0019i\u000b\u0000*0\u0000\u0013actionreminderquery\u0000\u0013actionReminderQuery\u000e\u0000\u0002\u0004\u0019j\u0003\u0000\u0006\u000e\u0019j\u0000\u0006\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\u00180\u0000\nshouldopen\u0000\nshouldOpen\u000b\u0000\u00100\u0000\u0006applib\u0000\u0006appLib\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b\u0000\u001a0\u0000\u000bdefaultlist\u0000\u000bdefaultList\u0002\u0000\u0000\u0010\u0019h\u0000\u0013\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\u00180\u0000\nshouldopen\u0000\nshouldOpen\u000b\u0000\u00100\u0000\u0006applib\u0000\u0006appLib\u000b\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b\u0000\u001a0\u0000\u000bdefaultlist\u0000\u000bdefaultList\u000b\u0000\u001c0\u0000\fshoulddelete\u0000\fshouldDelete\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u000b\u0000\u001a0\u0000\u000bthereminder\u0000\u000btheReminder\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0000\f0\u0000\breminder\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u000b\u0000\u000e0\u0000\u0005rlist\u0000\u0005rList\u000b\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\u000b\u0000 0\u0000\u000etheappreminder\u0000\u000etheAppReminder\u000b\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u0010\u0019i\u00008\nv\n\n\n\u0019k~}|\n{\nzyxwvutsrqp\u000b\u0018\u000b\"\u000b)\u000b+\u000b8\u000b>onm\u000bOl\u000b^\u000bd\u000b\u000bw\u000bk\u000bjihgfed\u000b\n\u0000\u0004\ncha \u0003\u0000\b\n\u0000\u0004\nTEXT\u0003\u0000\u0005\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\nremi\u000e\u0019k\u0000\u0000\u0013\n\u0000\u0004\nID \n~\u0000\u0004\ncobj\n}\u0000\u0004\npnam\n|\u0000\u0018.coredelonull\u0000\u0000\u0000\u0000\u0000obj \n{\u0000\u0004\ncomb\nz\u0000\u0018.miscactvnull\u0000\u0000null\ny\u0000\u0018.remishownull\u0000\u0000\u0000\u0000\u0000****\u000bx\u0000 0\u0000\u000ecachereminders\u0000\u000ecacheReminders\u0001w\u0000\u0000\u0002v\u0000\u0000\u000bu\u0000\u001e0\u0000\rparsereminder\u0000\rparseReminder\u000bt\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000bs\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000br\u0000 0\u0000\u000etheapplication\u0000\u000etheApplication\u000bq\u0000\t0\u0000\u0005valid\u0000\u0000\u000bp\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000bo\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\nn\u0000\u0004\nbool\u000bm\u000020\u0000\u0017reminderfromapplication\u0000\u0017reminderFromApplication\u000bl\u0000\u00120\u0000\u0007thebody\u0000\u0007theBody\nk\u0000\u0004\nlist\nj\u0000\u0004\nkocl\ni\u0000\u0004\nprdt\nh\u0000\u0004\nrmdt\ng\u0000\u0004\nbody\u0003f\u0000\u0006\u0003e\u0000\u0004\nd\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0011\u0002\u0011\u0006\u001d\u0000\u0018[\\[Z\\Zi2&EOeEY\u0000\u0005fEO\u0006\u001d\u0000[\\[Z\\Zi2&EO\u0014\u0000f)0\u0012\u0000RZ*-[,\\Z81k\/EO,EO\u001d\u0000\u0012j\f\u0000\u000fOa\u0000\u0010%EY\u0000$\u000b\u001d\u0000\u0014ea\u0000\u0011,FOa\u0000\u0012%EY\u0000\r*j\f\u0000\u0013Oj\f\u0000\u0014UO)l+\u0000\u0015W\u0000\bX\u0000\u0016\u0000\u0017hY\u0001i)k+\u0000\u0018EOa\u0000\u0019,EOa\u0000\u001a,EOa\u0000\u001b,EOa\u0000\u001c,EOa\u0000\u001d,EOa\u0000\u001eE^\u0000\u0010Oa\u0000\u001f\u0001\u001d\u0000\u000fa\u0000 %a\u0000!%\u000fY\u0000\u0003hOa\u0000\"\u0001\t\u0000\u000f*a\u0000#l+\u0000$a\u0000%&\u001d\u00001k+\u0000&E^\u0000\u0011Oa\u0000'\u0000\u001d\u0000\u000e]\u0000\u0011a\u0000\u0019,EY\u0000\u0003hO]\u0000\u0011a\u0000(,E^\u0000\u0010Y\u0000\u0014a\u0000)\u0001\u001d\u0000\u000ba\u0000*%\u000fY\u0000\u0003hO)a\u0000+0\u0012\u0000Za\u0000,\u0001\u001d\u0000\nE^\u0000\u0012Y\u0000\u001ea\u0000-\u0001\u001d\u0000\nE^\u0000\u0012Y\u0000\u000e*a\u0000.k\/,E^\u0000\u0012Oa\u0000\/\u0001\u001d\u00001*a\u0000.]\u0000\u0012\/\u0012\u0000\"*a\u00000a\u00001a\u00002a\u00003]\u0000\u0010a\u00004\u000ea\u00005\f\u00006EUY\u0000**a\u0000.]\u0000\u0012\/\u0012\u0000\u001e*a\u00000a\u00001a\u00003]\u0000\u0010a\u00005\u000ea\u00005\f\u00006EUO\u001d\u0000\u0010*j\f\u0000\u0013Oj\f\u0000\u0014Y\u0000\u0003hUO)l+\u0000\u0015Oa\u00007%EO\u000f\u000f\u000e\u0019\u000b\u0000\u0007\u0010c\u000bba\u0019l\u0019m`\u000bc\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\u000eb\u0000\u0002\u0004_\u0019n\u0003_\u0000\u0002\u000e\u0019n\u0000\u0002\u0000^]\u000b^\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000b]\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u0002a\u0000\u0000\u0010\u0019l\u0000\u0003\\[Z\u000b\\\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000b[\u0000>0\u0000\u001dsupportedreminderapplications\u0000\u001dsupportedReminderApplications\u000bZ\u0000\u001c0\u0000\fsupportedapp\u0000\fsupportedApp\u0010\u0019m\u0000\u0005YXWVU\nY\u0000\u0004\nkocl\nX\u0000\u0004\ncobj\nW\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000bV\u0000\u000b0\u0000\u0007appname\u0000\u0000\nU\u0000\u0004\nmsng\u0011`\u0000'\u0017\u0000\"[l\f\u0000\u0002kh\u001b\u0000\u0002,\u0000\u001d\u0000\u0007\u000fY\u0000\u0003h[OYO\u000f\u000f\u000e\u0019\f\u0000\u0007\u0010T\u000bSR\u0019o\u0019pQ\u000bT\u0000 0\u0000\u000esetnotesactive\u0000\u000esetNotesActive\u0002S\u0000\u0000\u0002R\u0000\u0000\u0010\u0019o\u0000\u0001P\u000bP\u0000 0\u0000\u000enotesisrunning\u0000\u000enotesIsRunning\u0010\u0019p\u0000\u0004\u000bON\u000b\nO\u0000\u0004\nprcs\nN\u0000\u0004\nbnid\u0011Q\u0000%\u0012\u0000\u000b*-,\bEUO\u001d\u0000\ffEc\u0000\u0001\u0000\u0002Y\u0000\teEc\u0000\u0001\u0000\u0002\u000f\u000e\u0019\r\u0000\u0007\u0010M\f\u000bLK\u0019q\u0019rJ\u000bM\u0000\u00180\u0000\ncreatenote\u0000\ncreateNote\u000eL\u0000\u0002\u0004I\u0019s\u0003I\u0000\u0004\u000e\u0019s\u0000\u0004\u0000HGFE\u000bH\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u000bG\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u000bF\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u000bE\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0002K\u0000\u0000\u0010\u0019q\u0000\u0004DCBA\u000bD\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u000bC\u0000\u00140\u0000\bnotebody\u0000\bnoteBody\u000bB\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u000bA\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u0010\u0019r\u0000\u0010@\fd?\f\u0017\f\u001d>\f&=<;:9876\fI\n@\u0000\u0004\ncapp\n?\u0000\b\u000bkfrmID \n>\u0000\u0004\nacct\n=\u0000\u0004\ncfol\n<\u0000\u0004\nkocl\n;\u0000\u0004\nnote\n:\u0000\u0004\nprdt\n9\u0000\u0004\npnam\n8\u0000\u0004\nbody\u00037\u0000\u0004\n6\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0011J\u0000)0\u0012\u0000Z\u0001\u001d\u0000B*\/\u0012\u00007\u0001\u001d\u0000\u001b*\/\u0012\u0000\u0010*\u000e\f\u0000\u000eUY\u0000\u0018*k\/\u0012\u0000\u0010*\u000e\f\u0000\u000eUUY\u0000A*k\/\u0012\u00009\u0001\u001d\u0000\u001b*\/\u0012\u0000\u0010*\u000e\f\u0000\u000eUY\u0000\u0018*k\/\u0012\u0000\u0010*\u000e\f\u0000\u000eUOPUU\u000f\u000e\u0019\u000e\u0000\u0007\u00105\fk43\u0019t\u0019u2\u000b5\u0000&0\u0000\u0011notefromclipboard\u0000\u0011noteFromClipboard\u000e4\u0000\u0002\u00041\u0019v\u00031\u0000\u0004\u000e\u0019v\u0000\u0004\u00000\/.-\u000b0\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\/\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u000b.\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u000b-\u0000\u00060\u0000\u0002wf\u0000\u0000\u00023\u0000\u0000\u0010\u0019t\u0000\u0006,+*)('\u000b,\u0000\u00050\u0000\u0001q\u0000\u0000\u000b+\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u000b*\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u000b)\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b(\u0000\u001c0\u0000\fnotehtmltext\u0000\fnoteHTMLText\u000b'\u0000\u00160\u0000\tnotetitle\u0000\tnoteTitle\u0010\u0019u\u0000\b&\f%$#\"! \u000b&\u0000\"0\u0000\u000fclipboardashtml\u0000\u000fclipboardAsHTML\n%\u0000\u0004\nrtyp\n$\u0000\u0004\nTEXT\n#\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\n\"\u0000\u0004\ncpar\u0003!\u0000\u0004\u000b \u0000\u00180\u0000\ncreatenote\u0000\ncreateNote\u00112\u0000\/)k+\u0000\u0000EO\u0001\u001d\u0000\bEY\u0000\u000e*l\f\u0000\u0004k\/EO*+\u0000\u0007O\u000f\u000f\u000e\u0019\u000f\u0000\u0007\u0010\u001f\f\u001e\u001d\u0019w\u0019x\u001c\u000b\u001f\u0000\"0\u0000\u000fclipboardashtml\u0000\u000fclipboardAsHTML\u000e\u001e\u0000\u0002\u0004\u001b\u0019y\u0003\u001b\u0000\u0001\u000e\u0019y\u0000\u0001\u0000\u001a\u000b\u001a\u0000\u00060\u0000\u0002wf\u0000\u0000\u0002\u001d\u0000\u0000\u0010\u0019w\u0000\u0005\u0019\u0018\u0017\u0016\u0015\u000b\u0019\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\u0018\u0000\b0\u0000\u0004thex\u0000\u0000\u000b\u0017\u0000\u00050\u0000\u0001f\u0000\u0000\u000b\u0016\u0000\u00120\u0000\u0007newfile\u0000\u0007newFile\u000b\u0015\u0000\u00120\u0000\u0007thehtml\u0000\u0007theHTML\u0010\u0019x\u0000\u0015\u0014\u0013\u0012\u0011\f\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\f\u0003\f\n\u0014\u0000\u0004\nrtyp\n\u0013\u0000\u0004\nHTML\n\u0012\u0000\u0018.JonsgClp****\u0000\u0000\u0000\u0000\u0000null\u000b\u0011\u0000\r0\u0000\tget_cache\u0000\u0000\n\u0010\u0000\u0004\npsxf\n\u000f\u0000\u0004\nperm\n\u000e\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\n\r\u0000\u0004\nset2\n\f\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\n\u000b\u0000\u0004\nrefn\n\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\n\t\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\n\b\u0000\u0004\nas \n\u0007\u0000\u0004\nutf8\n\u0006\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0005\u0000\u0000\u0002\u0004\u0000\u0000\n\u0003\u0000\u0004\nutxt\u0011\u001c\u0000r\u0014\u0000Y*l\f\u0000\u0002EOj+\u0000\u0003%EO*\/el\f\u0000\u0007EOjl\f\u0000\tOl\f\u0000\u000bOj\f\u0000\fO*\/j\f\u0000\u0007EOl\f\u0000\u000fEOj\f\u0000\fO\u000fW\u0000\u0019X\u0000\u0010\u0000\u0011a\u0000\u0012*a\u0000\u0013l\f\u0000\u0002%a\u0000\u0014%\u000f\u000f\u000e\u0019\u0010\u0000\u0007\u0010\u0002\f\u0001\u0000\u0019z\u0019{\u000b\u0002\u0000(0\u0000\u0012formatnotesubtitle\u0000\u0012formatNoteSubtitle\u000e\u0001\u0000\u0002\u0004\u0019|\u0003\u0000\u0003\u000e\u0019|\u0000\u0003\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u0002\u0000\u0000\u0000\u0010\u0019z\u0000\u0004\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u001c0\u0000\fnotesaccount\u0000\fnotesAccount\u000b\u0000\u001a0\u0000\u000bnotesfolder\u0000\u000bnotesFolder\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u0010\u0019{\u0000\u0006\r\t\r\u0011\r\u0019\r#\r+\n\u0000\u0004\nstrq\u0011\u00001%EO\u0001\u001d\u0000\u000e%,%EY\u0000\u0003hO\u0001\u001d\u0000\u000e%,%EY\u0000\u0003hO\u000f\u000f\u000e\u0019\u0011\u0000\u0007\u0010\r=\u0019}\u0019~\u000b\u0000\u00140\u0000\bfilemeta\u0000\bfileMeta\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0003\u000e\u0019\u0000\u0003\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u000b\u0000\r0\u0000\tmediainfo\u0000\u0000\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\u0002\u0000\u0000\u0010\u0019}\u0000\u0005\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u000b\u0000\r0\u0000\tmediainfo\u0000\u0000\u000b\u0000\f0\u0000\bopenmeta\u0000\u0000\u000b\u0000\b0\u0000\u0004meta\u0000\u0000\u000b\u0000\u000b0\u0000\u0007comment\u0000\u0000\u0010\u0019~\u0000\u000b\r[\ro\rx\r|\r\u000b\u0000\"0\u0000\u000fformatmediainfo\u0000\u000fformatMediaInfo\u000b\u0000\u00120\u0000\u000eformatopenmeta\u0000\u0000\u000b\u0000*0\u0000\u0013getspotlightcomment\u0000\u0013getSpotlightComment\u0003\u0000\u0005\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u0011\u0000J)k+\u0000\u0000EO)k+\u0000\u0001EO\u0001\u001d\u0000\t6FY\u0000\u0003hO)k+\u0000\u0003EO\u0001\u001d\u0000\u0012)\u6924+\u0000\t6FY\u0000\u0003hO)k+\u0000\n\u000f\u000f\u000e\u0019\u0012\u0000\u0007\u0010\r\u0019\u0019\u000b\u0000\"0\u0000\u000fformatmediainfo\u0000\u000fformatMediaInfo\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0007\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\r0\u0000\tthis_item\u0000\u0000\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0010\u0019\u00009\r\r\r\r\r\u000e\u0006\u000e\u000f\u000e'\u000e0\u000eH\u000eQ\u000ei\u000er\u000e\u000e\u000e\u000e\u000e\u000e\u000e\u000e\u000f\u000e\u000f\u0017\u000f\/\u000f8\u000fP\u000fY\u000fq\u000fz\u000f\u000f\n\u0000\u0004\ncpar\n\u0000\u0004\nnmbr\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\n\u0000\u0004\ncobj\n\u0000\u0004\nbool\u000b\u0000\u00100\u0000\fcompletename\u0000\u0000\u000b\u0000\t0\u0000\u0005label\u0000\u0000\u000b\u0000\t0\u0000\u0005value\u0000\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006format\u0000\u0000\u000b\u0000\f0\u0000\bfilesize\u0000\u0000\u000b\u0000\t0\u0000\u0005width\u0000\u0000\u000b\u0000\n0\u0000\u0006height\u0000\u0000\u000b\u0000\f0\u0000\bduration\u0000\u0000\u000b\u0000\u000f0\u0000\u000baspectratio\u0000\u0000\u000b\u0000\r0\u0000\tframerate\u0000\u0000\u000b\u0000\u000e0\u0000\ncolorspace\u0000\u0000\u000b\u0000\u00150\u0000\u0011chromasubsampling\u0000\u0000\u000b\u0000\f0\u0000\bbitdepth\u0000\u0000\u000b\u0000\u00130\u0000\u000fcompressionmode\u0000\u0000\u000b\u0000\u000e0\u0000\nstreamsize\u0000\u0000\u000b\u0000\f0\u0000\blanguage\u0000\u0000\n\u0000\u0004\nlist\u0003\u0000\u0005\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u0011\u0002jvEO\u0017\u0002Tk-,Ekh\u001c\u0000\u0002\/EO)k+\u0000\u0002EOk\/\u0001\t\u0000\nl\/\u0001&\u001d\u0002\u001ek\/\u0000\u001d\u0000\u001ak\/l\/\u000el\u000e%EY\u0001k\/\u0000\u001d\u0000\u001ck\/l\/a\u0000\u0010\u000el\u000e%EY\u0001\u05e4k\/a\u0000\u0011\u0000\u001d\u0000\u001ea\u0000\u0012k\/l\/a\u0000\u0013\u000el\u000e%EY\u0001k\/a\u0000\u0014\u0000\u001d\u0000\u001ea\u0000\u0015k\/l\/a\u0000\u0016\u000el\u000e%EY\u0001k\/a\u0000\u0017\u0000\u001d\u0000\u001ea\u0000\u0018k\/l\/a\u0000\u0019\u000el\u000e%EY\u0001bk\/a\u0000\u001a\u0000\u001d\u0000\u001ea\u0000\u001bk\/l\/a\u0000\u001c\u000el\u000e%EY\u0001;k\/a\u0000\u001d\u0000\u001d\u0000\u001ea\u0000\u001ek\/l\/a\u0000\u001f\u000el\u000e%EY\u0001\u0014k\/a\u0000 \u0000\u001d\u0000\u001ea\u0000!k\/l\/a\u0000\"\u000el\u000e%EY\u0000k\/a\u0000#\u0000\u001d\u0000\u001ea\u0000$k\/l\/a\u0000%\u000el\u000e%EY\u0000\u01a4k\/a\u0000&\u0000\u001d\u0000\u001ea\u0000'k\/l\/a\u0000(\u000el\u000e%EY\u0000k\/a\u0000)\u0000\u001d\u0000\u001ea\u0000*k\/l\/a\u0000+\u000el\u000e%EY\u0000xk\/a\u0000,\u0000\u001d\u0000\u001ea\u0000-k\/l\/a\u0000.\u000el\u000e%EY\u0000Qk\/a\u0000\/\u0000\u001d\u0000\u001ea\u00000k\/l\/a\u00001\u000el\u000e%EY\u0000*k\/a\u00002\u0000\u001d\u0000\u001ea\u00003k\/l\/a\u00004\u000el\u000e%EY\u0000\u0003hY\u0000\u0003h[OYOjvEOa\u00005&EO\u0017\u00003k-,Ekh\u001c\u0000\u0002\/EO),,,,a\u00006a\u00007+\u000086F[OYO\u000f\u000f\u000e\u0019\u0013\u0000\u0007\u0010\u000f\u0019\u0019\u000b\u0000\u00120\u0000\u000eformatopenmeta\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0007\u000b\u0000\f0\u0000\bmetadata\u0000\u0000\u000b\u0000(0\u0000\u0012metadataproperties\u0000\u0012metadataProperties\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\r0\u0000\tthis_item\u0000\u0000\u000b\u0000\r0\u0000\tthis_data\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0000\u001c0\u0000\fmetadatalist\u0000\fmetadataList\u0010\u0019\u0000\u0018\u0010\u0007\u0010\u000e\u0010\u0018\u0010#\u0010,\u00107\u0010>\u0010J\u0010S\u0010\u0010\n\u0000\u0004\ncpar\n\u0000\u0004\nnmbr\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\n\u0000\u0004\ncobj\n\u0000\u0004\nbool\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u000b\u0000\t0\u0000\u0005label\u0000\u0000\u000b\u0000\t0\u0000\u0005value\u0000\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006rating\u0000\u0000\n\u0000\u0004\nlist\u000b\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0011\u0000jvEO\u0017\u0000k-,Ekh\u001c\u0000\u0002\/EO)k+\u0000\u0002EOk\/\u0001\t\u0000\nl\/\u0001&\u001d\u0000Uk\/\u0000\u001d\u0000\u0017l\/\u000el\u000e%EY\u00004k\/\u0000\t\u0000\fl\/a\u0000\u0010\u0001&\u001d\u0000\u001da\u0000\u0011a\u0000\u0012l\/a\u0000\u0013\u000el\u000e%EY\u0000\u0003hY\u0000\u0003h[OYOjvEOa\u0000\u0014&EO\u0017\u00004k-,Ekh\u001c\u0000\u0002\/EO),,,,a\u0000\u0015a\u0000\u0016+\u0000\u00176F[OYO\u000f\u000f\u000e\u0019\u0014\u0000\u0007\u0010\u0010\u0019\u0019\u000b\u0000*0\u0000\u0013getspotlightcomment\u0000\u0013getSpotlightComment\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0010\u0019\u0000\u0001\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0010\u0019\u0000\t\u0010\u0010\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\npsxf\n\u0000\u0004\nalis\n\u0000\u0004\ncomt\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\")0\u0012\u0000\u001aZ\u0014\u0000\u000f*\/&,E\u000fW\u0000\bX\u0000\u0007\u0000\bhU\u000f\u000e\u0019\u0015\u0000\u0007\u0010\u0010\u0019\u0019\u000b\u0000\u00110\u0000\ralfred_result\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0005\u000e\u0019\u0000\u0005\u0000\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0006\u000b\u0000\u00070\u0000\u0003uid\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u000b\u0000\f0\u0000\bsubtitle\u0000\u0000\u000b\u0000\u00070\u0000\u0003arg\u0000\u0000\u000b\u0000\t0\u0000\u0005valid\u0000\u0000\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0010\u0019\u0000\u0003\u0003\u0000\u0005\u000b\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u0011\u0000\u0017*)+\u0000\u0001kvk+\u0000\u0002EO\u000f\u000f\u000e\u0019\u0016\u0000\u0007\u0010\u0010~\u0019\u0019}\u000b\u0000\u00170\u0000\u0013alfred_result_items\u0000\u0000\u000e\u0000\u0002\u0004|\u0019\u0003|\u0000\u0001\u000e\u0019\u0000\u0001\u0000{\u000b{\u0000\u00140\u0000\bitemlist\u0000\bitemList\u0002~\u0000\u0000\u0010\u0019\u0000\u0003zyx\u000bz\u0000\u00140\u0000\bitemlist\u0000\bitemList\u000by\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000bx\u0000\u000f0\u0000\u000balfred_item\u0000\u0000\u0010\u0019\u0000\u0005\u0010wvu\u0011\u0004\nw\u0000\u0004\nkocl\nv\u0000\u0004\ncobj\nu\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u0011}\u0000(EO\u0017\u0000\u0019[l\f\u0000\u0003kh\u001b\u0000\u0002%E[OYO%EO\u000f\u000f\u000e\u0019\u0017\u0000\u0007\u0010t\u0011\rsr\u0019\u0019q\u000bt\u0000\u00160\u0000\u0012alfred_result_item\u0000\u0000\u000es\u0000\u0002\u0004p\u0019\u0003p\u0000\u0005\u000e\u0019\u0000\u0005\u0000onmlk\u000bo\u0000\u00070\u0000\u0003uid\u0000\u0000\u000bn\u0000\t0\u0000\u0005title\u0000\u0000\u000bm\u0000\f0\u0000\bsubtitle\u0000\u0000\u000bl\u0000\u00070\u0000\u0003arg\u0000\u0000\u000bk\u0000\t0\u0000\u0005valid\u0000\u0000\u0002r\u0000\u0000\u0010\u0019\u0000\u0005jihgf\u000bj\u0000\u00070\u0000\u0003uid\u0000\u0000\u000bi\u0000\t0\u0000\u0005title\u0000\u0000\u000bh\u0000\f0\u0000\bsubtitle\u0000\u0000\u000bg\u0000\u00070\u0000\u0003arg\u0000\u0000\u000bf\u0000\t0\u0000\u0005valid\u0000\u0000\u0010\u0019\u0000\u0003\u0011'ed\u0003e\u0000\u0006\u000bd\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0011q\u0000\r)+\u0000\u0002\u000f\u000f\u000e\u0019\u0018\u0000\u0007\u0010c\u0011.ba\u0019\u0019`\u000bc\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u000eb\u0000\u0002\u0004_\u0019\u0003_\u0000\u0006\u000e\u0019\u0000\u0006\u0000^]\\[ZY\u000b^\u0000\u00070\u0000\u0003uid\u0000\u0000\u000b]\u0000\t0\u0000\u0005title\u0000\u0000\u000b\\\u0000\f0\u0000\bsubtitle\u0000\u0000\u000b[\u0000\u00070\u0000\u0003arg\u0000\u0000\u000bZ\u0000\t0\u0000\u0005valid\u0000\u0000\u000bY\u0000\b0\u0000\u0004icon\u0000\u0000\u0002a\u0000\u0000\u0010\u0019\u0000\u0007XWVUTSR\u000bX\u0000\u00070\u0000\u0003uid\u0000\u0000\u000bW\u0000\t0\u0000\u0005title\u0000\u0000\u000bV\u0000\f0\u0000\bsubtitle\u0000\u0000\u000bU\u0000\u00070\u0000\u0003arg\u0000\u0000\u000bT\u0000\t0\u0000\u0005valid\u0000\u0000\u000bS\u0000\b0\u0000\u0004icon\u0000\u0000\u000bR\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0010\u0019\u0000\f\u0011L\u0011NQ\u0011T\u0011V\u0011b\u0011h\u0011t\u0011z\u0011\u0011\u0011\u000bQ\u0000\f0\u0000\bq_encode\u0000\u0000\u0011`\u0000F%%)k+\u0000\u0002%%%%EO%)k+\u0000\u0002%%EO%)k+\u0000\u0002%%EO%%%EO%EO\u000f\u000f\u000e\u0019\u0019\u0000\u0007\u0010P\u0011ON\u0019\u0019M\u000bP\u0000 0\u0000\u000eisappsupported\u0000\u000eisAppSupported\u000eO\u0000\u0002\u0004L\u0019\u0003L\u0000\u0002\u000e\u0019\u0000\u0002\u0000KJ\u000bK\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000bJ\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0002N\u0000\u0000\u0010\u0019\u0000\u0002IH\u000bI\u0000\u000b0\u0000\u0007appname\u0000\u0000\u000bH\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0010\u0019\u0000\u0003\u0011GF\u000bG\u000020\u0000\u0017reminderapplicationinfo\u0000\u0017reminderApplicationInfo\nF\u0000\u0004\nmsng\u0011M\u0000$\u0000\u001d\u0000\u001b)b\u0000\u0001\u0000\nl+\u0000\u0001\u0001\u001d\u0000\u0007e\u000fY\u0000\u0003hY\u0000\u0003hOf\u000f\u000f\u000e\u0019\u001a\u0000\u0007\u0010E\u0011DC\u0019\u0019B\u000bE\u0000\u00190\u0000\u0015alfred_version_notify\u0000\u0000\u000eD\u0000\u0002\u0004A\u0019\u0003A\u0000\u0006\u000e\u0019\u0000\u0006\u0000@?>=<;\u000b@\u0000\n0\u0000\u0006wfname\u0000\u0000\u000b?\u0000\f0\u0000\bbundleid\u0000\u0000\u000b>\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u000b=\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b<\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b;\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0002C\u0000\u0000\u0010\u0019\u0000\u0007:987654\u000b:\u0000\n0\u0000\u0006wfname\u0000\u0000\u000b9\u0000\f0\u0000\bbundleid\u0000\u0000\u000b8\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u000b7\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b6\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b5\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u000b4\u0000\n0\u0000\u0006notify\u0000\u0000\u0010\u0019\u0000\n32\u0011\u0011\u0011\u0011\u0011\u001110\u00033\u0000\u0005\u000b2\u0000\"0\u0000\u000fislatestversion\u0000\u000fisLatestVersion\u00031\u0000\u0006\u000b0\u0000 0\u0000\u001calfred_result_item_with_icon\u0000\u0000\u0011B\u0000.jvEO*+\u0000\u0001\u000b\u001d\u0000\u0018*%%%e+\u0000\tEY\u0000\u0003hO\u000f\u000f\u000e\u0019\u001b\u0000\u0007\u0010\/\u0012\b.-\u0019\u0019,\u000b\/\u0000\"0\u0000\u000fislatestversion\u0000\u000fisLatestVersion\u000e.\u0000\u0002\u0004+\u0019\u0003+\u0000\u0005\u000e\u0019\u0000\u0005\u0000*)('&\u000b*\u0000\f0\u0000\bbundleid\u0000\u0000\u000b)\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u000b(\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b'\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b&\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u0002-\u0000\u0000\u0010\u0019\u0000\b%$#\"! \u001f\u001e\u000b%\u0000\f0\u0000\bbundleid\u0000\u0000\u000b$\u0000\u00120\u0000\u000ecurrentversion\u0000\u0000\u000b#\u0000\u00060\u0000\u0002wf\u0000\u0000\u000b\"\u0000\u00160\u0000\tcachefile\u0000\tcacheFile\u000b!\u0000 0\u0000\u000echeckfrequency\u0000\u000echeckFrequency\u000b \u0000\r0\u0000\ttimestamp\u0000\u0000\u000b\u001f\u0000\u00180\u0000\nlastresult\u0000\nlastResult\u000b\u001e\u0000\u001a0\u0000\u000blastversion\u0000\u000blastVersion\u0010\u0019\u0000\u0010\u0012\u001d\u001d\u0012)\u00125\u001c\u001b\u001a\u0019\u0018\u0017\u0012\u0012\u0016\u0015\u0012\u0014\u000b\u001d\u0000\r0\u0000\tget_value\u0000\u0000\n\u001c\u0000\u0004\nnmbr\u0001\u001b\u0000\u0000\u0002\u001a\u0000\u0000\n\u0019\u0000\u0004\nmsng\n\u0018\u0000\u0004\nbool\n\u0017\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0016\u0000\u0004\nstrq\n\u0015\u0000\u0004\nspac\n\u0014\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011,\u0000l+\u0000\u0001EOl+\u0000\u0001EOl+\u0000\u0001EO\u0014\u0000\n&EW\u0000\bX\u0000\u0005\u0000\u0006hO\u0001\t\u0000\u0007\u0001&\t\u0000\u0007\u0001&\u001d\u0000**j\f\u0000\t\u001f\u0004\t\u0000\u0007\u0005&\u001d\u0000\u0007e\u000fY\u0000\u000e\u0002\u001d\u0000\u0007f\u000fY\u0000\u0003hY\u0000\u0003hOb\u0000\u0001\u0000\u0005%,%%,%%%%j\f\u0000\u000fOe\u000f\u000f\u000e\u0019\u001c\u0000\u0007\u0010\u0013\u0012\u0012\u0011\u0019\u0019\u0010\u000b\u0013\u0000\u001c0\u0000\fcheckversion\u0000\fcheckVersion\u000e\u0012\u0000\u0002\u0004\u000f\u0019\u0003\u000f\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000e\u000b\u000e\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0011\u0000\u0000\u0010\u0019\u0000\u0002\r\f\u000b\r\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\f\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0010\u0019\u0000\u0005\u0012\u0012\u000b\n\t\n\u000b\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0001\n\u0000\u0000\u0002\t\u0000\u0000\u0011\u0010\u0000!b\u0000\u0001\u0000\u0003%%%EO\u0014\u0000\u000bj\f\u0000\u0002\u000fW\u0000\bX\u0000\u0003\u0000\u0004h\u000f\u000e\u0019\u001d\u0000\u0007\u0010\b\u0012\u0007\u0006\u0019\u0019\u0005\u000b\b\u0000\u001e0\u0000\rgetversionurl\u0000\rgetVersionURL\u000e\u0007\u0000\u0002\u0004\u0004\u0019\u0003\u0004\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u0003\u000b\u0003\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0006\u0000\u0000\u0010\u0019\u0000\u0002\u0002\u0001\u000b\u0002\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\u0001\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0010\u0019\u0000\u0005\u0012\u0012\u0000\n\u0000\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0005\u0000!b\u0000\u0001\u0000\u0004%%%EO\u0014\u0000\u000bj\f\u0000\u0002\u000fW\u0000\bX\u0000\u0003\u0000\u0004h\u000f\u000e\u0019\u001e\u0000\u0007\u0010\u0012\u0019\u0019\u000b\u0000\u001e0\u0000\rcurladdheader\u0000\rcurlAddHeader\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\n0\u0000\u0006header\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0001\u000b\u0000\n0\u0000\u0006header\u0000\u0000\u0010\u0019\u0000\u0002\u0012\n\u0000\u0004\nstrq\u0011\u0000\u0007,%\u000f\u000f\u000e\u0019\u001f\u0000\u0007\u0010\u0012\u0019\u0019\u000b\u0000\u001a0\u0000\u000bcurladddata\u0000\u000bcurlAddData\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thedata\u0000\u0007theData\u0002\u0000\u0000\u0010\u0019\u0000\u0001\u000b\u0000\u00120\u0000\u0007thedata\u0000\u0007theData\u0010\u0019\u0000\u0002\u0012\n\u0000\u0004\nstrq\u0011\u0000\u0007,%\u000f\u000f\u000e\u0019 \u0000\u0007\u0010\u0012\u0019\u0019\u000b\u0000\u00180\u0000\nmiddletext\u0000\nmiddleText\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0003\u000e\u0019\u0000\u0003\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00160\u0000\tstartword\u0000\tstartWord\u000b\u0000\u00120\u0000\u0007endword\u0000\u0007endWord\u0002\u0000\u0000\u0010\u0019\u0000\u0006\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\u00160\u0000\tstartword\u0000\tstartWord\u000b\u0000\u00120\u0000\u0007endword\u0000\u0007endWord\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u000b\u0000\u00140\u0000\bitemlist\u0000\bitemList\u000b\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0010\u0019\u0000\t\u0013&\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\nspac\n\u0000\u0004\ncitm\n\u0000\u0004\ncobj\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u00009,EO,FO-EO\u0014\u0000\u0014[\\[Z\\Z2&EW\u0000\nX\u0000\u0006\u0000\u0007EO,FO\u000f\u000f\u000e\u0019!\u0000\u0007\u0010\u00135\u0019\u0019\u000b\u0000\u001a0\u0000\u000bconverttime\u0000\u000bconvertTime\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u0002\u0000\u0000\u0010\u0019\u0000\u0007\u000b\u0000\u00180\u0000\nthetimestr\u0000\ntheTimeStr\u000b\u0000\u00060\u0000\u0002am\u0000\u0000\u000b\u0000\u00060\u0000\u0002pm\u0000\u0000\u000b\u0000\u00070\u0000\u0003num\u0000\u0000\u000b\u0000\u000e0\u0000\nold_delims\u0000\u0000\u000b\u0000\u00160\u0000\ttheoffset\u0000\ttheOffset\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0010\u0019\u0000\u001e\u0013a\u0013s\u0013v\u0013\u0013\u0013\u0013\u0013\u0014\u0007\n\u0000\u0004\ncha \n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\u0003\u0003\n\u0000\u0004\nTEXT\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\nctxt\n\u0000\u0004\nhour\n\u0000\u0004\nmin \n\u0000\u0004\nbool\u0003\u0000\f\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0000\u0004\ntime\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\ndays\u0011\u0001fEOfEOjEO\u0014\u0001p-j\f\u0000\u0001k\u0002\u001d\u0000j,EO,FO[\\[Z\\Zi2lv\u0000\u001d\u0000\u0018[\\[Zk\\Z2&EOeEY\u0000,[\\[Z\\Zi2lv\u0000\u001d\u0000\u0018[\\[Zk\\Z2&EOeEY\u0000\u0003hO,FY\u0000\u0003hO*\f\u0000\u0010j\u0002\u001d\u0000B*a\u0000\u0011\f\u0000\u0010EO[a\u0000\u0012\\[Zk\\Zk\u001f2_\u0000\u0013 \u001eEO[a\u0000\u0012\\[Zk\u001e\\Zi2_\u0000\u0014 \u001eEY\u0000[*a\u0000\u0015\f\u0000\u0010j\u0002\u001d\u0000B*a\u0000\u0016\f\u0000\u0010EO[a\u0000\u0012\\[Zk\\Zk\u001f2_\u0000\u0013 \u001eEO[a\u0000\u0012\\[Zk\u001e\\Zi2_\u0000\u0014 \u001eEY\u0000\u000b_\u0000\u0013 \u001eEO\u000b\t\u0000\b\u000ba\u0000\u0017&\t\u0000\u000fa\u0000\u0018_\u0000\u0013 \u0004a\u0000\u0017&\t\u0000\u0011*j\f\u0000\u0019a\u0000\u001a,\u0004a\u0000\u0017&\u001d\u0000\beEY\u0000\u0003hO\u001d\u0000\u0010a\u0000\u0018_\u0000\u0013 \u001eEY\u0000\u0003hOPW\u0000\tX\u0000\u001b\u0000\u001ch\u000fO*j\f\u0000\u0019a\u0000\u001a,\u0004\u001d\u0000\u0010*j\f\u0000\u0019_\u0000\u001d\u001eEY\u0000\t*j\f\u0000\u0019EOa\u0000\u001a,FO\u000fOP\u000f\u000e\u0019\"\u0000\u0007\u0010\u0014\u0019\u0019\u000b\u0000\u001c0\u0000\fsplitbycolon\u0000\fsplitByColon\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u0002\u0000\u0000\u0010\u0019\u0000\u0004\u000b\u0000\u00120\u0000\u0007thetext\u0000\u0007theText\u000b\u0000\t0\u0000\u0005text1\u0000\u0000\u000b\u0000\t0\u0000\u0005text2\u0000\u0000\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\u0010\u0019\u0000\u000b\u0014\u0014\u0014\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\nctxt\u000b\u0000\b0\u0000\u0004trim\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000dEOEO\u0014\u0000N*\f\u0000\u0006EOj\u0002\u001d\u00008[\\[Zk\\Zk\u001f2EO[\\[Zk\u001e\\Zi2EO)el+\u0000\bEO)el+\u0000\bEY\u0000\u0003hW\u0000\bX\u0000\t\u0000\nhOlv\u000f\u000f\u000e\u0019#\u0000\u0007\u0010\u0015\u0007\u0019\u0019\u000b\u0000\b0\u0000\u0004trim\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0002\u000e\u0019\u0000\u0002\u0000\u000b\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\u000b\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0002\u0000\u0000\u0010\u0019\u0000\u0002\u000b\u0000\"0\u0000\u000fthesecharacters\u0000\u000ftheseCharacters\u000b\u0000\u00140\u0000\bsometext\u0000\bsomeText\u0010\u0019\u0000\n\u0015\u001e\u00151\n\u0000\u0004\ntab \u0003\u0000\n\n\u0000\u0018.sysontocTEXT\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000shor\n\u0000\u0004\nret \u0003\u0000\u0005\n\u0000\u0004\ncha \n\u0000\u0004\nctxt\u0003\u0011\u0000je\u0000\u001d\u0000\u0016j\f\u0000\u0003jj\f\u0000\u0003vEY\u0000\u0003hO\u0000\u001d\u0000\u0007h\u000fY\u0000\u0003hO\u0017\u0000\u001dhk\/\b\u000b\u001a[\\[Zl\\Zi2E[OYO\u0017\u0000\u001dhi\/\b\u000b\u001a[\\[Zk\\Z2E[OYO\u000f\u000f\u000e\u0019$\u0000\u0007\u0010\u0015`\u0019\u0019\u000b\u0000\b0\u0000\u0004echo\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\r0\u0000\tsomething\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0001\u000b\u0000\r0\u0000\tsomething\u0000\u0000\u0010\u0019\u0000\u0003\u0015f\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\n,%j\f\u0000\u0002\u000f\u000e\u0019%\u0000\u0007\u0010\u0015o\u0019\u0019\u000b\u0000\u000f0\u0000\u000bformat_date\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0002\u000e\u0019\u0000\u0002\u0000\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u000b\u0000\u00110\u0000\rformat_string\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0012~}|{zyxwvutsrq\u000b\u0000\f0\u0000\bthe_date\u0000\u0000\u000b\u0000\u00110\u0000\rformat_string\u0000\u0000\u000b\u0000\f0\u0000\byear_num\u0000\u0000\u000b\u0000\r0\u0000\tmonth_num\u0000\u0000\u000b~\u0000\u000b0\u0000\u0007day_num\u0000\u0000\u000b}\u0000\f0\u0000\bhour_num\u0000\u0000\u000b|\u0000\u000e0\u0000\nminute_num\u0000\u0000\u000b{\u0000\u000e0\u0000\nsecond_num\u0000\u0000\u000bz\u0000\u000e0\u0000\nmonth_name\u0000\u0000\u000by\u0000\f0\u0000\bday_name\u0000\u0000\u000bx\u0000\u000f0\u0000\u000bsuffix_list\u0000\u0000\u000bw\u0000\u00100\u0000\fplaceholders\u0000\u0000\u000bv\u0000\u000e0\u0000\nvalue_list\u0000\u0000\u000bu\u0000\u000e0\u0000\nold_delims\u0000\u0000\u000bt\u0000\u00050\u0000\u0001x\u0000\u0000\u000bs\u0000\u00060\u0000\u0002ph\u0000\u0000\u000br\u0000\u00070\u0000\u0003val\u0000\u0000\u000bq\u0000\b0\u0000\u0004temp\u0000\u0000\u0010\u0019\u00002ponmlkjihgfed\u0015\u0015\u0015\u0015\u0015\u0015\u0015\u0015\u0015\u0015c\u0015\u0015\u0015\u0016\u0002\u0016\u0007\u0016\f\u0016\u0011\u0016\u0016\u0016\u001b\u0016 \u0016%\u0016*\u0016\/\u00164\u00169\u0016>\u0016Bba`_^]\\[Z\np\u0000\u0004\nyear\no\u0000\u0004\nmnth\nn\u0000\u0004\nlong\nm\u0000\u0004\nday \nl\u0000\u0004\nhour\nk\u0000\u0004\nmin \nj\u0000\u0004\nscnd\u0003i\u0000\u0006\nh\u0000\u0004\ncobj\u0003g\u0000\u0004\u0003f\u0000\u0005\ne\u0000\u0004\nTEXT\nd\u0000\u0004\nwkdy\u0003c\u0000\n\u0003b\u0000\u0011\u000ba\u0000\u00060\u0000\u0002dd\u0000\u0000\u0003`\u0000d\n_\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n^\u0000\u0004\nascr\n]\u0000\u0004\ntxdl\n\\\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n[\u0000\u0004\ncitm\nZ\u0000\u0004\nctxt\u0011\u0001,,&,,,,vE[k\/EZ[l\/EZ[m\/EZ[\/EZ[\/EZ[\/EZO,&,&lvE[k\/EZ[l\/EZOa\u0000\u0010a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014a\u0000\u0015a\u0000\u0016a\u0000\u0017vEOa\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&a\u0000'a\u0000(a\u0000)vEO&*k+\u0000*a\u0000+\"&a\u0000+\"k\u001e&&*k+\u0000*j\f\u0000,&*k+\u0000*j\f\u0000,a\u0000\u0017#k\u001e\/&*k+\u0000*&*k+\u0000*&*k+\u0000*a\u0000)vEO_\u0000-a\u0000.,EO\u0017\u0000Okj\f\u0000\/kh\u001c\u0000\u000e\/EO\/E^\u0000\u0010O_\u0000-a\u0000.,FOa\u00000-E^\u0000\u0011O]\u0000\u0010a\u00001&_\u0000-a\u0000.,FO]\u0000\u0011a\u00001&E[OYO_\u0000-a\u0000.,FO\u000f\u000f\u000e\u0019&\u0000\u0007\u0010Y\u0017\u0001XW\u0019\u0019V\u000bY\u0000\u00130\u0000\u000fdatefromweekday\u0000\u0000\u000eX\u0000\u0002\u0004U\u0019\u0003U\u0000\u0001\u000e\u0019\u0000\u0001\u0000T\u000bT\u0000\u00050\u0000\u0001q\u0000\u0000\u0002W\u0000\u0000\u0010\u0019\u0000\u0004SRQP\u000bS\u0000\u00050\u0000\u0001q\u0000\u0000\u000bR\u0000\u00050\u0000\u0001i\u0000\u0000\u000bQ\u0000\u00050\u0000\u0001d\u0000\u0000\u000bP\u0000\u00050\u0000\u0001w\u0000\u0000\u0010\u0019\u0000\u0005ONMLK\u0003O\u0000\u0007\nN\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\nM\u0000\u0004\ndays\nL\u0000\u0004\nwkdy\nK\u0000\u0004\nTEXT\u0011V\u00003\u0017\u0000.kkh\u001c\u0000\u0001*j\f\u0000\u0001 \u001eEO,&EO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003h[OYOf\u000f\u000f\u000e\u0019'\u0000\u0007\u0010J\u0017*IH\u0019\u0019G\u000bJ\u0000\u00060\u0000\u0002dd\u0000\u0000\u000eI\u0000\u0002\u0004F\u0019\u0003F\u0000\u0001\u000e\u0019\u0000\u0001\u0000E\u000bE\u0000\u000b0\u0000\u0007the_num\u0000\u0000\u0002H\u0000\u0000\u0010\u0019\u0000\u0002DC\u000bD\u0000\u000b0\u0000\u0007the_num\u0000\u0000\u000bC\u0000\u000b0\u0000\u0007the_val\u0000\u0000\u0010\u0019\u0000\u0003BA@\u0003B\u0000d\nA\u0000\u0004\nctxt\u0003@\u0011G\u0000\u0017\u001e&[\\[Z\\Zi2&EO\u000f\u000f\u000e\u0019(\u0000\u0007\u0010?\u0017J>=\u0019\u0019<\u000b?\u0000\"0\u0000\u000fcoercedatetonum\u0000\u000fcoerceDateToNum\u000e>\u0000\u0002\u0004;\u0019\u0003;\u0000\u0001\u000e\u0019\u0000\u0001\u0000:\u000b:\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002=\u0000\u0000\u0010\u0019\u0000\u0003987\u000b9\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b8\u0000\u000e0\u0000\u0005ddate\u0000\u0005dDate\u000b7\u0000\u00140\u0000\bddatenum\u0000\bdDateNum\u0010\u0019\u0000\u0005\u0017U6543\u00076\u0000\u0004\u0000\u0005N\n5\u0000\u0004\ncobj\n4\u0000\u0004\nldt \n3\u0000\u0004\ndays\u0011<\u0000 lvE[k\/EZ[l\/EZO*\/\u001f\"\u001e\u000f\u000f\u000e\u0019)\u0000\u0007\u00102\u0017l10\u0019\u0019\/\u000b2\u0000\f0\u0000\bunixtime\u0000\u0000\u000e1\u0000\u0002\u0004.\u0019\u0003.\u0000\u0001\u000e\u0019\u0000\u0001\u0000-\u000b-\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u00020\u0000\u0000\u0010\u0019\u0000\u0001,\u000b,\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0010\u0019\u0000\u0003+\u0017w*\n+\u0000\u0004\nldt \n*\u0000\u0018.sysoGMT long\u0000\u0000\u0010\u0000\u0000null\u0011\/\u0000\r)\/\u001f*j\f\u0000\u0002\u001f\u000f\u000e\u0019*\u0000\u0007\u0010)\u0017('\u0019\u0019&\u000b)\u0000\u00100\u0000\ffrontmostapp\u0000\u0000\u0002(\u0000\u0000\u0002'\u0000\u0000\u0010\u0019\u0000\u0000\u0010\u0019\u0000\u0004%$#\"\n%\u0000\b\u000bappfegfp\n$\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n#\u0000\u0018.sysonfo4asfe\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\n\"\u0000\u0004\npnam\u0011&\u0000\u000ej\f\u0000\u0001j\f\u0000\u0002,E\u000f\u000f\u000e\u0019+\u0000\u0007\u0010!\u0017 \u001f\u0019\u0019\u001e\u000b!\u0000\u001e0\u0000\rfilterrecords\u0000\rfilterRecords\u000e \u0000\u0002\u0004\u001d\u0019\u0003\u001d\u0000\u0002\u000e\u0019\u0000\u0002\u0000\u001c\u001b\u000b\u001c\u0000\u00180\u0000\nrecordlist\u0000\nrecordList\u000b\u001b\u0000 0\u0000\u000esearchproperty\u0000\u000esearchProperty\u0002\u001f\u0000\u0000\u0010\u0019\u0000\u0006\u001a\u0019\u0018\u0017\u0016\u0015\u000b\u001a\u0000\u00180\u0000\nrecordlist\u0000\nrecordList\u000b\u0019\u0000 0\u0000\u000esearchproperty\u0000\u000esearchProperty\u000b\u0018\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0017\u0000\u00120\u0000\u0007thelist\u0000\u0007theList\u000b\u0016\u0000\u001c0\u0000\fthevaluelist\u0000\ftheValueList\u000b\u0015\u0000\u00120\u0000\u0007theitem\u0000\u0007theItem\u0010\u0019\u0000\u000b\u0017\u0014\u0013\u0012\u0011\u0010\u000f\u0019k\u000e\r\f\n\u0014\u0000\u0004\nkocl\n\u0013\u0000\u0004\nplii\n\u0012\u0000\u0004\nprdt\n\u0011\u0000\u0004\nvalL\u0003\u0010\u0000\u0004\n\u000f\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\n\u000e\u0000\u0004\npnam\n\r\u0000\u0004\ncobj\n\f\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u0011\u001e\u0000LjvEO\u0012\u0000#*l\u000e\f\u0000\u0006EO--[,\\Z81,EUO\u0017\u0000\u001b[l\f\u0000\nkh\u001b\u0000\u0005k\/6F[OYO\u000f\u000f\u000e\u0019,\u0000\u0007\u0010\u000b\u0017\n\t\u0019\u0019\b\u000b\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000e\n\u0000\u0002\u0004\u0007\u0019\u0003\u0007\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u0006\u000b\u0006\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\t\u0000\u0000\u0010\u0019\u0000\u0001\u0005\u000b\u0005\u0000\u00070\u0000\u0003str\u0000\u0000\u0010\u0019\u0000\u0003\u0004\u0003\u0002\n\u0004\u0000\u0004\nmsng\u000b\u0003\u0000\n0\u0000\u0006q_trim\u0000\u0000\n\u0002\u0000\u0004\nleng\u0011\b\u0000\u0019\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0019-\u0000\u0007\u0010\u0001\u0017\u0000\u0019\u0019\u000b\u0001\u0000\n0\u0000\u0006q_trim\u0000\u0000\u000e\u0000\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0002\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0019\u0000\u000f\u0018\u0000\u0018\u001a\u0018\u0016\u00180\u0018,\n\u0000\u0004\npcls\n\u0000\u0004\nctxt\n\u0000\u0004\nTEXT\n\u0000\u0004\nbool\n\u0000\u0004\nmsng\n\u0000\u0004\ncobj\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0003\u0001\u0000\u0000\u0011\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000f\u000e\u0019.\u0000\u0007\u0010\u00189\u0019\u0019\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0010\u0019\u0000\u0004\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\u000b\u0000\f0\u0000\u0004sref\u0000\u0004sRef\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\u0010\u0019\u0000\u0019\u0018Q\u0018g\u0018k\u0018o\u0018s\u0018v\u0018}\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u0018\u0018\n\u0000\u0004\npcls\n\u0000\u0004\nctxt\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npcnt\u0003\u0000\u0005\u0011\u0000,\u0001\n\u0000\n)k+\u0000\u0002&\u001d\u0000\u0007\u000fY\u0000\u0003hOEO\u0017\u0000[l\f\u0000\u0007kh\u001b\u0000\u0002,EOv\b\u001d\u0000^\u0000\u001d\u0000\fa\u0000\u0010%EY\u0000Ka\u0000\u0011\u0000\u001d\u0000\fa\u0000\u0012%EY\u00009a\u0000\u0013\u0000\u001d\u0000\fa\u0000\u0014%EY\u0000'a\u0000\u0015\u0000\u001d\u0000\fa\u0000\u0016%EY\u0000\u0015a\u0000\u0017\u0000\u001d\u0000\fa\u0000\u0018%EY\u0000\u0003hY\u0000\u0007%E[OYO\u000f\u000f\u000e\u0019\/\u0000\u0007\u0010\u0018\u0019\u0019\u000b\u0000\f0\u0000\bpath2url\u0000\u0000\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0001\u000e\u0019\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u0000\u0000\u0010\u0019\u0000\u0001\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0010\u0019\u0000\u0003\u0018\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u000b,%j\f\u0000\u0002\u000f\u000f\u000e\u00190\u0000\u0007\u0010\u0018\u0019\u0019\u000b\u0000\u001a0\u0000\u000bkeydowntest\u0000\u000bkeyDowntest\u000e\u0000\u0002\u0004\u0019\u0003\u0000\u0002\u000e\u0019\u0000\u0002\u0000\u000b\u0000\u001c0\u0000\fworkflowpath\u0000\fworkflowPath\u000b\u0000\u001a0\u0000\u000bmodifierkey\u0000\u000bmodifierKey\u0002\u0000\u0000\u0010\u0019\u0000\u0003\u000b\u0000\u001c0\u0000\fworkflowpath\u0000\fworkflowPath\u000b\u0000\u001a0\u0000\u000bmodifierkey\u0000\u000bmodifierKey\u000b\u0000\u00180\u0000\nmodkeydown\u0000\nmodKeyDown\u0010\u0019\u0000\u0006\u0018\n\u0000\u0004\nstrq\n\u0000\u0004\nspac\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nlong\n\u0000\u0004\nbool\u0011\u0000\u001c%,%%j\f\u0000\u0003EO&EO&E\u000f\u000e\u0001I\u0000\u0004\u000f\u0019\u0019\u0019\u000b\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0019\n\u0000\u0004\npcls\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0019\u000e\u0019\u0000\u0001\u0019\u0011\u0019\u0000\u0010\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0019\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\b\u0019\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\t\u0000\u000b\u0019\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\f\u0000\u000e\u0019\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0011\u0019\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002j\u0000\u0000\u0000\u0012\u0000\u0014\u0019\u000b\u0000\f0\u0000\b_results\u0000\u0000\r\u0019\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nmsng\u0002\u0019\u0000\u0002\u0019\u0019\r\u0019\u0000\u0002i\u0000\u0000\u0000\u0015\u0000\u0018\u0019\u0019\r\u0019\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0019\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0019\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0002\u0019\u0000\u0002\u0019\r\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0002\u0019\u0000\u0002\u0019\u001a\u0000\r\u0019\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u001a\u0001\u001a\u0002\r\u001a\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u001a\u0003\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001a\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001a\u0004\u000e\u001a\u0004\u0000\u0001\u001a\u0005\u0011\u001a\u0005\u0000\u0006\u0000p\u0000w\u0000d\u0002\u0000\u0000\r\u001a\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001a\u0006\u001a\u0007\r\u001a\u0006\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001a\u0007\u0000\u0000f\u0000\u0000\u0000\u0005\u0000\u0006\u0002\u001a\u0000\u0000\u0002\u001a\b\u001a\t\r\u001a\b\u0000\u0004Z\u0000\u0001\u0000\n\u0000 \u001a\n\u001a\u000b\r\u001a\n\u0000\u0001H\u0000\u0000\u0000\n\u0000\u0010\u001a\f\r\u001a\f\u0000\u0002D\u0000\u0000\u0000\n\u0000\u000f\u001a\r\u001a\u000e\r\u001a\r\u0000\u0002n\u0000\u0001\u0000\n\u0000\r\u001a\u000f\u001a\u0010\r\u001a\u000f\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\r\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001a\u0010\u0000\u0000f\u0000\u0000\u0000\n\u0000\u000b\r\u001a\u000e\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u001a\u0011\u000e\u001a\u0011\u0000\u0001\u001a\u0012\u0011\u001a\u0012\u0000\u0002\u0000\/\r\u001a\u000b\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001c\u001a\u0013\u001a\u0014\r\u001a\u0013\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u0018\u001a\u0015\u001a\u0016\r\u001a\u0015\u0000\u0002n\u0000\u0001\u0000\u0013\u0000\u0016\u001a\u0017\u001a\u0018\r\u001a\u0017\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0016\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001a\u0018\u0000\u0000f\u0000\u0000\u0000\u0013\u0000\u0014\r\u001a\u0016\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u001a\u0019\u000e\u001a\u0019\u0000\u0001\u001a\u001a\u0011\u001a\u001a\u0000\u0002\u0000\/\r\u001a\u0014\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001a\u001b\u001a\u001c\r\u001a\u001b\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001a\u001c\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001a\t\u0000\u0002\u001a\u001d\u001a\u001e\r\u001a\u001d\u0000\u0002r\u0000\u0000\u0000!\u0000*\u001a\u001f\u001a \r\u001a\u001f\u0000\u0003I\u0000\u0002\u0000!\u0000&\u001a!\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001a!\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u001a\"\u000e\u001a\"\u0000\u0001\u001a#\u0011\u001a#\u0000\u0018\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000 \u0000$\u0000H\u0000O\u0000M\u0000E\u0002\u0000\u0000\r\u001a \u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001a$\u001a%\r\u001a$\u0000\u0001o\u0000\u0000\u0000'\u0000)\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u001a%\u0000\u0000f\u0000\u0000\u0000&\u0000'\u0002\u001a\u001e\u0000\u0002\u001a&\u001a'\r\u001a&\u0000\u0002r\u0000\u0000\u0000+\u00004\u001a(\u001a)\r\u001a(\u0000\u0002b\u0000\u0000\u0000+\u00002\u001a*\u001a+\r\u001a*\u0000\u0001o\u0000\u0000\u0000+\u00000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001a+\u0000\u0001m\u0000\u0000\u00000\u00001\u001a,\u000e\u001a,\u0000\u0001\u001a-\u0011\u001a-\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u001a)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\n_infoplist\u0000\n_infoPlist\u0002\u001a'\u0000\u0002\u001a.\u001a\/\r\u001a.\u0000\u0004Z\u0000\u0000\u00005\u0000[\u001a0\u001a1\r\u001a0\u0000\u0002n\u0000\u0001\u00005\u0000;\u001a2\u001a3\r\u001a2\u0000\u0003I\u0000\u0000\u00006\u0000;\u001a4\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001a4\u0000\u0002\u001a5\r\u001a5\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00180\u0000\n_infoplist\u0000\n_infoPlist\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a3\u0000\u0000f\u0000\u0000\u00005\u00006\r\u001a1\u0000\u0002O\u0000\u0000\u0000>\u0000W\u001a6\u001a7\r\u001a6\u0000\u0002O\u0000\u0000\u0000B\u0000V\u001a8\u001a9\r\u001a8\u0000\u0002r\u0000\u0000\u0000I\u0000U\u001a:\u001a;\r\u001a:\u0000\u0002c\u0000\u0000\u0000I\u0000Q\u001a<\u001a=\r\u001a<\u0000\u0002n\u0000\u0000\u0000I\u0000O\u001a>\u001a?\r\u001a>\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\nvalL\r\u001a?\u0000\u00024\u0000\u0000\u0000I\u0000M\u001a@\n\u0000\u0004\nplii\r\u001a@\u0000\u0001m\u0000\u0000\u0000K\u0000L\u001aA\u000e\u001aA\u0000\u0001\u001aB\u0011\u001aB\u0000\u0010\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000i\u0000d\r\u001a=\u0000\u0001m\u0000\u0000\u0000O\u0000P\n\u0000\u0004\nctxt\r\u001a;\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001aC\u001aD\r\u001aC\u0000\u0001o\u0000\u0000\u0000R\u0000T\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001aD\u0000\u0000f\u0000\u0000\u0000Q\u0000R\r\u001a9\u0000\u00024\u0000\u0000\u0000B\u0000F\u001aE\n\u0000\u0004\nplif\r\u001aE\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00180\u0000\n_infoplist\u0000\n_infoPlist\r\u001a7\u0000\u0001m\u0000\u0000\u0000>\u0000?\u001aF\u000f\u001aF\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001a\/\u0000\u0002\u001aG\u001aH\r\u001aG\u0000\u0004Z\u0000\u0000\u0000\\\u0000o\u001aI\u001aJ\r\u001aI\u0000\u0001H\u0000\u0000\u0000\\\u0000c\u001aK\r\u001aK\u0000\u0002n\u0000\u0001\u0000\\\u0000b\u001aL\u001aM\r\u001aL\u0000\u0003I\u0000\u0000\u0000]\u0000b\u001aN\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001aN\u0000\u0002\u001aO\r\u001aO\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001aM\u0000\u0000f\u0000\u0000\u0000\\\u0000]\r\u001aJ\u0000\u0002r\u0000\u0000\u0000f\u0000k\u001aP\u001aQ\r\u001aP\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\r\u001aQ\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001aR\u001aS\r\u001aR\u0000\u0001o\u0000\u0000\u0000h\u0000j\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001aS\u0000\u0000f\u0000\u0000\u0000g\u0000h\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001aH\u0000\u0002\u001aT\u001aU\r\u001aT\u0000\u0002r\u0000\u0000\u0000p\u0000\u001aV\u001aW\r\u001aV\u0000\u0002b\u0000\u0000\u0000p\u0000\u001aX\u001aY\r\u001aX\u0000\u0002b\u0000\u0000\u0000p\u0000{\u001aZ\u001a[\r\u001aZ\u0000\u0002b\u0000\u0000\u0000p\u0000w\u001a\\\u001a]\r\u001a\\\u0000\u0003l\u0000\u0005\u0000p\u0000s\u001a^\r\u001a^\u0000\u0002n\u0000\u0001\u0000p\u0000s\u001a_\u001a`\r\u001a_\u0000\u0001o\u0000\u0000\u0000q\u0000s\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u001a`\u0000\u0000f\u0000\u0000\u0000p\u0000q\u0001\u0000\u0000\u0001\u0000\u0000\r\u001a]\u0000\u0001m\u0000\u0000\u0000s\u0000v\u001aa\u000e\u001aa\u0000\u0001\u001ab\u0011\u001ab\u0000|\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\r\u001a[\u0000\u0003l\u0000\u0005\u0000w\u0000z\u001ac\r\u001ac\u0000\u0002n\u0000\u0001\u0000w\u0000z\u001ad\u001ae\r\u001ad\u0000\u0001o\u0000\u0000\u0000x\u0000z\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001ae\u0000\u0000f\u0000\u0000\u0000w\u0000x\u0001\u0000\u0000\u0001\u0000\u0000\r\u001aY\u0000\u0001m\u0000\u0000\u0000{\u0000~\u001af\u000e\u001af\u0000\u0001\u001ag\u0011\u001ag\u0000\u0002\u0000\/\r\u001aW\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001ah\u001ai\r\u001ah\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001ai\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001aU\u0000\u0002\u001aj\u001ak\r\u001aj\u0000\u0002r\u0000\u0000\u0000\u0000\u001al\u001am\r\u001al\u0000\u0002b\u0000\u0000\u0000\u0000\u001an\u001ao\r\u001an\u0000\u0002b\u0000\u0000\u0000\u0000\u001ap\u001aq\r\u001ap\u0000\u0002b\u0000\u0000\u0000\u0000\u001ar\u001as\r\u001ar\u0000\u0003l\u0000\u0005\u0000\u0000\u001at\r\u001at\u0000\u0002n\u0000\u0001\u0000\u0000\u001au\u001av\r\u001au\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u001av\u0000\u0000f\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001as\u0000\u0001m\u0000\u0000\u0000\u0000\u001aw\u000e\u001aw\u0000\u0001\u001ax\u0011\u001ax\u0000h\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\r\u001aq\u0000\u0003l\u0000\u0005\u0000\u0000\u001ay\r\u001ay\u0000\u0002n\u0000\u0001\u0000\u0000\u001az\u001a{\r\u001az\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001a{\u0000\u0000f\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001ao\u0000\u0001m\u0000\u0000\u0000\u0000\u001a|\u000e\u001a|\u0000\u0001\u001a}\u0011\u001a}\u0000\u0002\u0000\/\r\u001am\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001a~\u001a\r\u001a~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001ak\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001H\u0000\u0000\u0000\u0000\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u001a\u000b\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\u0002\u001a\u0000\u0002\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000~\u000b~\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001a\u0000\u0003I\u0000\u0002\u0000\u0000}\u001a|\n}\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\f\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \r\u001a\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u00011\u0000\u0000\u0000\u0000{\n{\u0000\u0004\nstrq\r\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u001azy\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002|\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0000\u0000\u0000\u001a\u001awv\r\u001a\u0000\u0001H\u0000\u0000\u0000\u0000\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000u\u001at\u000bu\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\u0002\u001a\u0000\u0002\u001as\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0002s\u0000\u0000\u0002t\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001a\u0000\u0003I\u0000\u0002\u0000\u0000q\u001ap\nq\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u001a\u000e\u001a\u0000\u0001\u001a\u0011\u001a\u0000\f\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \r\u001a\u0000\u0002n\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u00011\u0000\u0000\u0000\u0000o\no\u0000\u0004\nstrq\r\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u001anm\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002p\u0000\u0000\u0002w\u0000\u0000\u0001v\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002r\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001J\u0000\u0000\u0000\u0000k\u0002k\u0000\u0000\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\f0\u0000\b_results\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u001a\u0000\u0002\u001ai\r\u001a\u0000\u0001L\u0000\u0000\u0000\u0000\u001a\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0002i\u0000\u0000\u0002\u0019\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002i\u0000\u0000\u0000\u0019\u0000\u001c\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000hgf\u000bh\u0000\u000e0\u0000\nget_bundle\u0000\u0000\u0002g\u0000\u0000\u0002f\u0000\u0000\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0011\u001a\u001aed\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\bc\u001ab\u000bc\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001a\u0000\u0002\u001aa\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u0004\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0004`\u000b`\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002a\u0000\u0000\u0002b\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u001a\u0000\u0001L\u0000\u0000\u0000\u000b\u0000\r\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f_\n_\u0000\u0004\nmsng\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u001a\u0000\u0002\u001a^\r\u001a\u0000\u0001L\u0000\u0000\u0000\u0012\u0000\u0017\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0012\u0000\u0016\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0015]\u000b]\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0012\u0000\u0013\u0002^\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\\[Z\u000b\\\u0000\r0\u0000\tget_cache\u0000\u0000\u0002[\u0000\u0000\u0002Z\u0000\u0000\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0011\u001a\u001aYX\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\bW\u001aV\u000bW\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001a\u0000\u0002\u001aU\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u0004\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0004T\u000bT\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002U\u0000\u0000\u0002V\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u001a\u0000\u0001L\u0000\u0000\u0000\u000b\u0000\r\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\fS\nS\u0000\u0004\nmsng\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0001\u0000\u0012\u0000#\u001a\u001aRQ\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0012\u0000\u001a\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0013\u0000\u001aP\u001aO\u000bP\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001a\u0000\u0002\u001aN\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0013\u0000\u0016\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0016M\u000bM\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0013\u0000\u0014\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0012\u0000\u0013\r\u001a\u0000\u0001L\u0000\u0000\u0000\u001d\u0000\u001f\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001eL\nL\u0000\u0004\nmsng\u0002R\u0000\u0000\u0001Q\u0000\u0000\u0002\u001a\u0000\u0002\u001aK\r\u001a\u0000\u0001L\u0000\u0000\u0000$\u0000)\u001a\r\u001a\u0000\u0002n\u0000\u0001\u0000$\u0000(\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000%\u0000'J\u000bJ\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000$\u0000%\u0002K\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0002i\u0000\u0000\u0000!\u0000$\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000IHG\u000bI\u0000\f0\u0000\bget_data\u0000\u0000\u0002H\u0000\u0000\u0002G\u0000\u0000\r\u001a\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)\u001a\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0011\u001a\u001aFE\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\bD\u001aC\u000bD\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001a\u0000\u0002\u001aB\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u0004\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0004A\u000bA\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002B\u0000\u0000\u0002C\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u001a\u0000\u0001L\u0000\u0000\u0000\u000b\u0000\r\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f@\n@\u0000\u0004\nmsng\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u001a\u0000\u0002\u001a\u001a\r\u001a\u0000\u0004Z\u0000\u0001\u0000\u0012\u0000#\u001a\u001a?>\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0012\u0000\u001a\u001a\u001a\r\u001a\u0000\u0003I\u0000\u0000\u0000\u0013\u0000\u001a=\u001a<\u000b=\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001a\u0000\u0002\u001a;\r\u001a\u0000\u0002n\u0000\u0001\u0000\u0013\u0000\u0016\u001a\u001a\r\u001a\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0016:\u000b:\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0013\u0000\u0014\u0002;\u0000\u0000\u0002<\u0000\u0000\r\u001a\u0000\u0000f\u0000\u0000\u0000\u0012\u0000\u0013\r\u001a\u0000\u0001L\u0000\u0000\u0000\u001d\u0000\u001f\u001a\r\u001a\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e9\n9\u0000\u0004\nmsng\u0002?\u0000\u0000\u0001>\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u00008\r\u001b\u0000\u0000\u0001L\u0000\u0000\u0000$\u0000)\u001b\u0001\r\u001b\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000(\u001b\u0002\u001b\u0003\r\u001b\u0002\u0000\u0001o\u0000\u0000\u0000%\u0000'7\u000b7\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001b\u0003\u0000\u0000f\u0000\u0000\u0000$\u0000%\u00028\u0000\u0000\u0002\u001a\u0000\u0002\u001b\u0004\u001b\u0005\r\u001b\u0004\u0000\u0002i\u0000\u0000\u0000%\u0000(\u001b\u0006\u001b\u0007\r\u001b\u0006\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000654\u000b6\u0000\f0\u0000\bget_path\u0000\u0000\u00025\u0000\u0000\u00024\u0000\u0000\r\u001b\u0007\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u001b\b\u0002\u001b\b\u0000\u0002\u001b\t\u001b\n\r\u001b\t\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0011\u001b\u000b\u001b\f32\r\u001b\u000b\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001b\r\u001b\u000e\r\u001b\r\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\b1\u001b\u000f0\u000b1\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b\u000f\u0000\u0002\u001b\u0010\/\r\u001b\u0010\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u0004\u001b\u0011\u001b\u0012\r\u001b\u0011\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0004.\u000b.\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001b\u0012\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002\/\u0000\u0000\u00020\u0000\u0000\r\u001b\u000e\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u001b\f\u0000\u0001L\u0000\u0000\u0000\u000b\u0000\r\u001b\u0013\r\u001b\u0013\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f-\n-\u0000\u0004\nmsng\u00023\u0000\u0000\u00012\u0000\u0000\u0002\u001b\n\u0000\u0002\u001b\u0014,\r\u001b\u0014\u0000\u0001L\u0000\u0000\u0000\u0012\u0000\u0017\u001b\u0015\r\u001b\u0015\u0000\u0002n\u0000\u0001\u0000\u0012\u0000\u0016\u001b\u0016\u001b\u0017\r\u001b\u0016\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0015+\u000b+\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001b\u0017\u0000\u0000f\u0000\u0000\u0000\u0012\u0000\u0013\u0002,\u0000\u0000\u0002\u001b\u0005\u0000\u0002\u001b\u0018\u001b\u0019\r\u001b\u0018\u0000\u0002i\u0000\u0000\u0000)\u0000,\u001b\u001a\u001b\u001b\r\u001b\u001a\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000*)(\u000b*\u0000\f0\u0000\bget_home\u0000\u0000\u0002)\u0000\u0000\u0002(\u0000\u0000\r\u001b\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u001b\u001c\u0002\u001b\u001c\u0000\u0002\u001b\u001d\u001b\u001e\r\u001b\u001d\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0011\u001b\u001f\u001b '&\r\u001b\u001f\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001b!\u001b\"\r\u001b!\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\b%\u001b#$\u000b%\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b#\u0000\u0002\u001b$#\r\u001b$\u0000\u0002n\u0000\u0001\u0000\u0001\u0000\u0004\u001b%\u001b&\r\u001b%\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0004\"\u000b\"\u0000\t0\u0000\u0005_home\u0000\u0000\r\u001b&\u0000\u0000f\u0000\u0000\u0000\u0001\u0000\u0002\u0002#\u0000\u0000\u0002$\u0000\u0000\r\u001b\"\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u001b \u0000\u0001L\u0000\u0000\u0000\u000b\u0000\r\u001b'\r\u001b'\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f!\n!\u0000\u0004\nmsng\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002\u001b\u001e\u0000\u0002\u001b( \r\u001b(\u0000\u0001L\u0000\u0000\u0000\u0012\u0000\u0017\u001b)\r\u001b)\u0000\u0002n\u0000\u0001\u0000\u0012\u0000\u0016\u001b*\u001b+\r\u001b*\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0015\u001f\u000b\u001f\u0000\t0\u0000\u0005_home\u0000\u0000\r\u001b+\u0000\u0000f\u0000\u0000\u0000\u0012\u0000\u0013\u0002 \u0000\u0000\u0002\u001b\u0019\u0000\u0002\u001b,\u001b-\r\u001b,\u0000\u0002i\u0000\u0000\u0000-\u00000\u001b.\u001b\/\r\u001b.\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u001d\u001c\u000b\u001e\u0000\u000f0\u0000\u000bget_results\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001c\u0000\u0000\r\u001b\/\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0005\u001b0\r\u001b0\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0004\u001b1\u001b2\r\u001b1\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0003\u001b\u000b\u001b\u0000\f0\u0000\b_results\u0000\u0000\r\u001b2\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u001b-\u0000\u0002\u001b3\u001b4\r\u001b3\u0000\u0002i\u0000\u0000\u00001\u00004\u001b5\u001b6\r\u001b5\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u001b7\u0019\u000b\u001a\u0000\n0\u0000\u0006to_xml\u0000\u0000\u0002\u001b7\u0000\u0002\u001b8\u0018\r\u001b8\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0018\u0000\u0000\u0002\u0019\u0000\u0000\r\u001b6\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\n\u001b9\u0002\u001b9\u0000\u0002\u001b:\u001b;\r\u001b:\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000;\u001b<\u001b=\u001b>\u0016\r\u001b<\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0014\u001b?\u001b@\r\u001b?\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0006\u001bA\u0015\u0014\r\u001bA\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u001bB\u001bC\r\u001bB\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0013\u001bD\u0012\u000b\u0013\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001bD\u0000\u0002\u001bE\u0011\r\u001bE\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u0010\u000b\u0010\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0011\u0000\u0000\u0002\u0012\u0000\u0000\r\u001bC\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\r\u001b@\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u001bF\u000f\u000e\r\u001bF\u0000\u0001H\u0000\u0000\u0000\t\u0000\u0012\u001bG\r\u001bG\u0000\u0002n\u0000\u0001\u0000\t\u0000\u0011\u001bH\u001bI\r\u001bH\u0000\u0003I\u0000\u0000\u0000\n\u0000\u0011\r\u001bJ\f\u000b\r\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001bJ\u0000\u0002\u001bK\u000b\r\u001bK\u0000\u0002n\u0000\u0001\u0000\n\u0000\r\u001bL\u001bM\r\u001bL\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\r\n\u000b\n\u0000\f0\u0000\b_results\u0000\u0000\r\u001bM\u0000\u0000f\u0000\u0000\u0000\n\u0000\u000b\u0002\u000b\u0000\u0000\u0002\f\u0000\u0000\r\u001bI\u0000\u0000f\u0000\u0000\u0000\t\u0000\n\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\r\u001b=\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u001bN\u001bO\r\u001bN\u0000\u0002n\u0000\u0001\u0000\u0017\u0000\u001a\u001bP\u001bQ\r\u001bP\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u001a\t\u000b\t\u0000\f0\u0000\b_results\u0000\u0000\r\u001bQ\u0000\u0000f\u0000\u0000\u0000\u0017\u0000\u0018\r\u001bO\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001b>\u0000\u0002\u001bR\u001bS\r\u001bR\u0000\u0002F\u0000\u0000\u0000\u001f\u00002\u001bT\u001bU\r\u001bT\u0000\u0003l\u0000\u0005\u0000\u001f\u0000%\u001bV\u0007\u0006\r\u001bV\u0000\u0002n\u0000\u0001\u0000\u001f\u0000%\u001bW\u001bX\r\u001bW\u0000\u0003I\u0000\u0000\u0000 \u0000%\u0005\u001bY\u0004\u000b\u0005\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001bY\u0000\u0002\u001bZ\u0003\r\u001bZ\u0000\u0001o\u0000\u0000\u0000 \u0000!\u0002\u000b\u0002\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0004\u0000\u0000\r\u001bX\u0000\u0000f\u0000\u0000\u0000\u001f\u0000 \u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\r\u001bU\u0000\u0003l\u0000\u0005\u0000(\u00000\u001b[\u0001\u0000\r\u001b[\u0000\u0002n\u0000\u0001\u0000(\u00000\u001b\\\u001b]\r\u001b\\\u0000\u0003I\u0000\u0000\u0000)\u00000\u001b^\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b^\u0000\u0002\u001b_\r\u001b_\u0000\u0002n\u0000\u0001\u0000)\u0000,\u001b`\u001ba\r\u001b`\u0000\u0001o\u0000\u0000\u0000*\u0000,\u000b\u0000\f0\u0000\b_results\u0000\u0000\r\u001ba\u0000\u0000f\u0000\u0000\u0000)\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b]\u0000\u0000f\u0000\u0000\u0000(\u0000)\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u001bS\u0000\u0002\u001bb\r\u001bb\u0000\u0001L\u0000\u0000\u00005\u00007\u001bc\r\u001bc\u0000\u0001m\u0000\u0000\u00005\u00006\n\u0000\u0004\nmsng\u0002\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u001b;\u0000\u0002\u001bd\u001be\r\u001bd\u0000\u0002r\u0000\u0000\u0000<\u0000A\u001bf\u001bg\r\u001bf\u0000\u0002b\u0000\u0000\u0000<\u0000?\u001bh\u001bi\r\u001bh\u0000\u00011\u0000\u0000\u0000<\u0000=\n\u0000\u0004\ntab \r\u001bi\u0000\u00011\u0000\u0000\u0000=\u0000>\n\u0000\u0004\ntab \r\u001bg\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004tab2\u0000\u0000\u0002\u001be\u0000\u0002\u001bj\u001bk\r\u001bj\u0000\u0002r\u0000\u0000\u0000B\u0000K\u001bl\u001bm\r\u001bl\u0000\u0002b\u0000\u0000\u0000B\u0000I\u001bn\u001bo\r\u001bn\u0000\u0002b\u0000\u0000\u0000B\u0000G\u001bp\u001bq\r\u001bp\u0000\u0002b\u0000\u0000\u0000B\u0000E\u001br\u001bs\r\u001br\u0000\u0001m\u0000\u0000\u0000B\u0000C\u001bt\u000e\u001bt\u0000\u0001\u001bu\u0011\u001bu\u0000*\u0000<\u0000?\u0000x\u0000m\u0000l\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000=\u0000\"\u00001\u0000.\u00000\u0000\"\u0000?\u0000>\r\u001bs\u0000\u0001o\u0000\u0000\u0000C\u0000D\n\u0000\u0004\nret \r\u001bq\u0000\u0001m\u0000\u0000\u0000E\u0000F\u001bv\u000e\u001bv\u0000\u0001\u001bw\u0011\u001bw\u0000\u000e\u0000<\u0000i\u0000t\u0000e\u0000m\u0000s\u0000>\r\u001bo\u0000\u0001o\u0000\u0000\u0000G\u0000H\n\u0000\u0004\nret \r\u001bm\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001bk\u0000\u0002\u001bx\u001by\r\u001bx\u0000\u0003X\u0000\u0000\u0000L\u0001\u001bz\u001b{\r\u001bz\u0000\u0001k\u0000\u0000\u0000\\\u0001\u001b|\u0002\u001b|\u0000\u0002\u001b}\u001b~\r\u001b}\u0000\u0002r\u0000\u0000\u0000\\\u0000a\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\\\u0000_\u001b\u001b\r\u001b\u0000\u00011\u0000\u0000\u0000]\u0000_\n\u0000\u0004\npcnt\r\u001b\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00120\u0000\u0007itemref\u0000\u0007itemRef\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u001b~\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000b\u0000i\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000b\u0000g\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000b\u0000e\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u00011\u0000\u0000\u0000c\u0000d\n\u0000\u0004\ntab \r\u001b\u0000\u0001m\u0000\u0000\u0000e\u0000f\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\n\u0000<\u0000i\u0000t\u0000e\u0000m\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0004Z\u0000\u0001\u0000j\u0000\u001b\u001b\r\u001b\u0000\u0001H\u0000\u0000\u0000j\u0000s\u001b\r\u001b\u0000\u0002n\u0000\u0001\u0000j\u0000r\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000k\u0000r\u001b\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000k\u0000n\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000l\u0000n\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\r\u001b\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000j\u0000k\r\u001b\u0000\u0002r\u0000\u0000\u0000v\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000v\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000v\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000v\u0000y\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000w\u0000x\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000 \u0000u\u0000i\u0000d\u0000=\u0000\"\r\u001b\u0000\u0002n\u0000\u0001\u0000y\u0000\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000z\u0000\u001b\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000z\u0000}\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000{\u0000}\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\r\u001b\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000y\u0000z\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0002\u0000\"\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\f\u0000 \u0000a\u0000r\u0000g\u0000=\u0000\"\r\u001b\u0000\u0002n\u0000\u0001\u0000\u0000\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u001b\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0002\u0000\"\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0004Z\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002=\u0000\u0003\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u001b\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0016\u0000 \u0000v\u0000a\u0000l\u0000i\u0000d\u0000=\u0000\"\u0000n\u0000o\u0000\"\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0004Z\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001H\u0000\u0000\u0000\u0000\u001b\r\u001b\u0000\u0002n\u0000\u0001\u0000\u0000\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u001b\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u001e\u0000 \u0000a\u0000u\u0000t\u0000o\u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000=\u0000\"\r\u001b\u0000\u0002n\u0000\u0001\u0000\u0000\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u001b\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u0002\u0000\"\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001b\u001b\r\u001b\u0000\u0004Z\u0000\u0000\u0000\u0001\u0006\u001b\u001b\r\u001b\u0000\u0001H\u0000\u0000\u0000\u0000\u001b\r\u001b\u0000\u0002n\u0000\u0001\u0000\u0000\u001b\u001b\r\u001b\u0000\u0003I\u0000\u0000\u0000\u0000\u001b\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001b\u0000\u0002\u001b\r\u001b\u0000\u0002n\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001b\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001b\u0000\u0002r\u0000\u0000\u0000\u0001\u0002\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0002b\u0000\u0000\u0000\u0000\u001b\u001b\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001b\u000e\u001b\u0000\u0001\u001b\u0011\u001b\u0000\u000e\u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\r\u001b\u0000\u0003l\u0000\u0005\u0000\u0000\u001c\u0000\r\u001c\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u001c\u0001\u001c\u0002\r\u001c\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\r\u001c\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u001c\u0003\u000e\u001c\u0003\u0000\u0001\u001c\u0004\u0011\u001c\u0004\u0000\u0002\u0000\"\r\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001b\u0000\u0002\u001c\u0005\u001c\u0006\r\u001c\u0005\u0000\u0002r\u0000\u0000\u0001\u0007\u0001\u0010\u001c\u0007\u001c\b\r\u001c\u0007\u0000\u0002b\u0000\u0000\u0001\u0007\u0001\u000e\u001c\t\u001c\n\r\u001c\t\u0000\u0002b\u0000\u0000\u0001\u0007\u0001\f\u001c\u000b\u001c\f\r\u001c\u000b\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\f\u0000\u0001m\u0000\u0000\u0001\b\u0001\u000b\u001c\r\u000e\u001c\r\u0000\u0001\u001c\u000e\u0011\u001c\u000e\u0000\u0002\u0000>\r\u001c\n\u0000\u0001o\u0000\u0000\u0001\f\u0001\r\n\u0000\u0004\nret \r\u001c\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001c\u0006\u0000\u0002\u001c\u000f\u001c\u0010\r\u001c\u000f\u0000\u0002r\u0000\u0000\u0001\u0011\u0001+\u001c\u0011\u001c\u0012\r\u001c\u0011\u0000\u0002b\u0000\u0000\u0001\u0011\u0001)\u001c\u0013\u001c\u0014\r\u001c\u0013\u0000\u0002b\u0000\u0000\u0001\u0011\u0001'\u001c\u0015\u001c\u0016\r\u001c\u0015\u0000\u0002b\u0000\u0000\u0001\u0011\u0001#\u001c\u0017\u001c\u0018\r\u001c\u0017\u0000\u0002b\u0000\u0000\u0001\u0011\u0001\u0018\u001c\u0019\u001c\u001a\r\u001c\u0019\u0000\u0002b\u0000\u0000\u0001\u0011\u0001\u0014\u001c\u001b\u001c\u001c\r\u001c\u001b\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u001c\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u000b\u0000\b0\u0000\u0004tab2\u0000\u0000\r\u001c\u001a\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0017\u001c\u001d\u000e\u001c\u001d\u0000\u0001\u001c\u001e\u0011\u001c\u001e\u0000\u000e\u0000<\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u001c\u0018\u0000\u0002n\u0000\u0001\u0001\u0018\u0001\"\u001c\u001f\u001c \r\u001c\u001f\u0000\u0003I\u0000\u0000\u0001\u0019\u0001\"\u001c!\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001c!\u0000\u0002\u001c\"\r\u001c\"\u0000\u0002n\u0000\u0000\u0001\u0019\u0001\u001e\u001c#\u001c$\r\u001c#\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001e\u000b\u0000\u00140\u0000\bthetitle\u0000\btheTitle\r\u001c$\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001a\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c \u0000\u0000f\u0000\u0000\u0001\u0018\u0001\u0019\r\u001c\u0016\u0000\u0001m\u0000\u0000\u0001#\u0001&\u001c%\u000e\u001c%\u0000\u0001\u001c&\u0011\u001c&\u0000\u0010\u0000<\u0000\/\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u001c\u0014\u0000\u0001o\u0000\u0000\u0001'\u0001(\n\u0000\u0004\nret \r\u001c\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001c\u0010\u0000\u0002\u001c'\u001c(\r\u001c'\u0000\u0002r\u0000\u0000\u0001,\u0001F\u001c)\u001c*\r\u001c)\u0000\u0002b\u0000\u0000\u0001,\u0001D\u001c+\u001c,\r\u001c+\u0000\u0002b\u0000\u0000\u0001,\u0001B\u001c-\u001c.\r\u001c-\u0000\u0002b\u0000\u0000\u0001,\u0001>\u001c\/\u001c0\r\u001c\/\u0000\u0002b\u0000\u0000\u0001,\u00013\u001c1\u001c2\r\u001c1\u0000\u0002b\u0000\u0000\u0001,\u0001\/\u001c3\u001c4\r\u001c3\u0000\u0001o\u0000\u0000\u0001,\u0001-\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c4\u0000\u0001o\u0000\u0000\u0001-\u0001.\u000b\u0000\b0\u0000\u0004tab2\u0000\u0000\r\u001c2\u0000\u0001m\u0000\u0000\u0001\/\u00012\u001c5\u000e\u001c5\u0000\u0001\u001c6\u0011\u001c6\u0000\u0014\u0000<\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u001c0\u0000\u0002n\u0000\u0001\u00013\u0001=\u001c7\u001c8\r\u001c7\u0000\u0003I\u0000\u0000\u00014\u0001=\u001c9\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001c9\u0000\u0002\u001c:\r\u001c:\u0000\u0002n\u0000\u0000\u00014\u00019\u001c;\u001c<\r\u001c;\u0000\u0001o\u0000\u0000\u00015\u00019\u000b\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\r\u001c<\u0000\u0001o\u0000\u0000\u00014\u00015\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001c8\u0000\u0000f\u0000\u0000\u00013\u00014\r\u001c.\u0000\u0001m\u0000\u0000\u0001>\u0001A\u001c=\u000e\u001c=\u0000\u0001\u001c>\u0011\u001c>\u0000\u0016\u0000<\u0000\/\u0000s\u0000u\u0000b\u0000t\u0000i\u0000t\u0000l\u0000e\u0000>\r\u001c,\u0000\u0001o\u0000\u0000\u0001B\u0001C\n\u0000\u0004\nret \r\u001c*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001c(\u0000\u0002\u001c?\u001c@\r\u001c?\u0000\u0002r\u0000\u0000\u0001G\u0001N\u001cA\u001cB\r\u001cA\u0000\u0002n\u0000\u0000\u0001G\u0001L\u001cC\u001cD\r\u001cC\u0000\u0001o\u0000\u0000\u0001H\u0001L\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\r\u001cD\u0000\u0001o\u0000\u0000\u0001G\u0001H\u000b\u0000\u00050\u0000\u0001r\u0000\u0000\r\u001cB\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002\u001c@\u0000\u0002\u001cE\u001cF\r\u001cE\u0000\u0004Z\u0000\u0000\u0001O\u0001\u001cG\u001cH\u001cI\r\u001cG\u0000\u0001H\u0000\u0000\u0001O\u0001V\u001cJ\r\u001cJ\u0000\u0002n\u0000\u0001\u0001O\u0001U\u001cK\u001cL\r\u001cK\u0000\u0003I\u0000\u0000\u0001P\u0001U\u001cM\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001cM\u0000\u0002\u001cN\r\u001cN\u0000\u0001o\u0000\u0000\u0001P\u0001Q\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001cL\u0000\u0000f\u0000\u0000\u0001O\u0001P\r\u001cH\u0000\u0001k\u0000\u0000\u0001Y\u0001\u001cO\u0002\u001cO\u0000\u0002\u001cP\u001cQ\r\u001cP\u0000\u0002r\u0000\u0000\u0001Y\u0001b\u001cR\u001cS\r\u001cR\u0000\u0002b\u0000\u0000\u0001Y\u0001`\u001cT\u001cU\r\u001cT\u0000\u0002b\u0000\u0000\u0001Y\u0001\\\u001cV\u001cW\r\u001cV\u0000\u0001o\u0000\u0000\u0001Y\u0001Z\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001cW\u0000\u0001o\u0000\u0000\u0001Z\u0001[\u000b\u0000\b0\u0000\u0004tab2\u0000\u0000\r\u001cU\u0000\u0001m\u0000\u0000\u0001\\\u0001_\u001cX\u000e\u001cX\u0000\u0001\u001cY\u0011\u001cY\u0000\n\u0000<\u0000i\u0000c\u0000o\u0000n\r\u001cS\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001cQ\u0000\u0002\u001cZ\u001c[\r\u001cZ\u0000\u0004Z\u0000\u0000\u0001c\u0001\u001c\\\u001c]\u001c^\r\u001c\\\u0000\u0002C\u0000\u0000\u0001c\u0001h\u001c_\u001c`\r\u001c_\u0000\u0001o\u0000\u0000\u0001c\u0001d\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\r\u001c`\u0000\u0001m\u0000\u0000\u0001d\u0001g\u001ca\u000e\u001ca\u0000\u0001\u001cb\u0011\u001cb\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000i\u0000c\u0000o\u0000n\u0000:\r\u001c]\u0000\u0001k\u0000\u0000\u0001k\u0001\u001cc\u0002\u001cc\u0000\u0002\u001cd\u001ce\r\u001cd\u0000\u0002r\u0000\u0000\u0001k\u0001r\u001cf\u001cg\r\u001cf\u0000\u0002b\u0000\u0000\u0001k\u0001p\u001ch\u001ci\r\u001ch\u0000\u0001o\u0000\u0000\u0001k\u0001l\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001ci\u0000\u0001m\u0000\u0000\u0001l\u0001o\u001cj\u000e\u001cj\u0000\u0001\u001ck\u0011\u001ck\u0000 \u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\u0000f\u0000i\u0000l\u0000e\u0000i\u0000c\u0000o\u0000n\u0000\"\r\u001cg\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001ce\u0000\u0002\u001cl\r\u001cl\u0000\u0002r\u0000\u0000\u0001s\u0001\u001cm\u001cn\r\u001cm\u0000\u0003l\u0000\u0005\u0001s\u0001\u001co\r\u001co\u0000\u0002c\u0000\u0000\u0001s\u0001\u001cp\u001cq\r\u001cp\u0000\u0002n\u0000\u0000\u0001s\u0001\u001cr\u001cs\r\u001cr\u0000\u00037\u0001\u0000\u0001t\u0001\u001ct\u001cu\n\u0000\u0004\ncobj\r\u001ct\u0000\u0001m\u0000\u0000\u0001x\u0001|\u0003\u0000\n\r\u001cu\u0000\u0001m\u0000\u0000\u0001}\u0001\u0003\r\u001cs\u0000\u0001o\u0000\u0000\u0001s\u0001t\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\r\u001cq\u0000\u0001m\u0000\u0000\u0001\u0001\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u001cn\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002\u0000\u0000\u0002\u001c^\u0000\u0002\u001cv\u001cw\r\u001cv\u0000\u0002C\u0000\u0000\u0001\u0001\u001cx\u001cy\r\u001cx\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00060\u0000\u0002ic\u0000\u0000\r\u001cy\u0000\u0001m\u0000\u0000\u0001\u0001\u001cz\u000e\u001cz\u0000\u0001\u001c{\u0011\u001c{\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000t\u0000y\u0000p\u0000e\u0000:\u0002\u001cw\u0000\u0002\u001c|\r\u001c|\u0000\u0001k\u0000\u0000\u0001\u0001\u001c}\u0002\u001c}\u0000\u0002\u001c~\u001c\r\u001c~\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000 \u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\u0000f\u0000i\u0000l\u0000e\u0000t\u0000y\u0000p\u0000e\u0000\"\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001c\u0000\u0002\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0003l\u0000\u0005\u0001\u0001\u001c\r\u001c\u0000\u0002c\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u00037\u0001\u0000\u0001\u0001\u001c\u001c\n\u0000\u0004\ncobj\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0000\n\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001~\u0003~\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001}\u000b}\u0000\u00060\u0000\u0002ic\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001|\n|\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001c[\u0000\u0002\u001cz\r\u001c\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001y\u000by\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0002\u0000>\r\u001c\u0000\u0002n\u0000\u0001\u0001\u0001\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0001\u0001x\u001cw\u000bx\u0000\f0\u0000\bq_encode\u0000\u0000\u0002\u001c\u0000\u0002\u001cv\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001u\u000bu\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002v\u0000\u0000\u0002w\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0001\u0001\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u000e\u0000<\u0000\/\u0000i\u0000c\u0000o\u0000n\u0000>\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001t\nt\u0000\u0004\nret \r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002z\u0000\u0000\u0002\u0000\u0000\r\u001cI\u0000\u0004Z\u0000\u0000\u0001\u0001\u001c\u001crq\r\u001c\u0000\u0002n\u0000\u0001\u0001\u0001\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0001\u0001p\u001co\u000bp\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001c\u0000\u0002\u001cn\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001m\u000bm\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0001\u0001\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\u0002n\u0000\u0000\u0002o\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0001\u0001\r\u001c\u0000\u0001k\u0000\u0000\u0001\u0001\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00060\u0000\u0002ic\u0000\u0000\u0002\u001c\u0000\u0002\u001ck\r\u001c\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001j\u000bj\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001i\u000bi\u0000\b0\u0000\u0004tab2\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000*\u0000<\u0000i\u0000c\u0000o\u0000n\u0000>\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\u0000<\u0000\/\u0000i\u0000c\u0000o\u0000n\u0000>\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001h\nh\u0000\u0004\nret \r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000g\u000bg\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002k\u0000\u0000\u0002r\u0000\u0000\u0001q\u0000\u0000\u0002\u001cF\u0000\u0002\u001cf\r\u001c\u0000\u0002r\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0001\u0001\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001e\u000be\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u0000\u00011\u0000\u0000\u0001\u0001d\nd\u0000\u0004\ntab \r\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u000e\u0000<\u0000\/\u0000i\u0000t\u0000e\u0000m\u0000>\r\u001c\u0000\u0001o\u0000\u0000\u0001\u0001c\nc\u0000\u0004\nret \r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002f\u0000\u0000\u000b\u0000\u00120\u0000\u0007itemref\u0000\u0007itemRef\r\u001b{\u0000\u0001o\u0000\u0000\u0000O\u0000Pa\u000ba\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001by\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0002\u0000\u0002\u0007\u001c\u001c\r\u001c\u0000\u0002b\u0000\u0000\u0002\u0000\u0002\u0005\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001`\u000b`\u0000\u00070\u0000\u0003xml\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0002\u0001\u0002\u0004\u001c\u000e\u001c\u0000\u0001\u001c\u0011\u001c\u0000\u0010\u0000<\u0000\/\u0000i\u0000t\u0000e\u0000m\u0000s\u0000>\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002\u001c\u0000\u0002\u001c^\r\u001c\u0000\u0001L\u0000\u0000\u0002\b\u0002\n\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0002\b\u0002\t]\u000b]\u0000\u00070\u0000\u0003xml\u0000\u0000\u0002^\u0000\u0000\u0002\u001b4\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002i\u0000\u0000\u00005\u00008\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\\\u001c[\u000b\\\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Z\u000bZ\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u001c\u0000\u0002\u001cX\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000W\u000bW\u0000\u00050\u0000\u0001c\u0000\u0000\u0002X\u0000\u0000\u0002[\u0000\u0000\r\u001c\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001c\u001c\r\u001c\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000\u001c\u001cV\u001c\r\u001c\u0000\u0002=\u0000\u0003\u0000\u0004\u0000\t\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u001c\u001c\r\u001c\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007U\nU\u0000\u0004\npcls\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005T\u000bT\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\bS\nS\u0000\u0004\nlist\r\u001c\u0000\u0001k\u0000\u0000\u0000\f\u0000n\u001c\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0014\u001c\u001c\r\u001c\u0000\u0002n\u0000\u0001\u0000\f\u0000\u0012\u001c\u001c\r\u001c\u0000\u0003I\u0000\u0000\u0000\r\u0000\u0012R\u001cQ\u000bR\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u0002\u001c\u0000\u0002\u001cP\r\u001c\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000eO\u000bO\u0000\u00050\u0000\u0001a\u0000\u0000\u0002P\u0000\u0000\u0002Q\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000\f\u0000\r\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002\u001c\u0000\u0002\u001c\u001c\r\u001c\u0000\u0002r\u0000\u0000\u0000\u0015\u0000#\u001c\u001c\r\u001c\u0000\u00024\u0000\u0000\u0000\u0015\u0000!M\u001c\nM\u0000\u0004\nplif\r\u001c\u0000\u0003l\u0000\u0005\u0000\u0017\u0000 \u001cLK\r\u001c\u0000\u0003I\u0000\u0001\u0000\u0017\u0000 J\u001c\u001c\u000bJ\u0000\u00110\u0000\r_get_location\u0000\u0000\r\u001c\u0000\u0000f\u0000\u0000\u0000\u0017\u0000\u0018\u0006\u001c\u0000\u0003I\u001c\u001c\nI\u0000\u0004\nat \r\u001c\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aH\u000bH\u0000\u00050\u0000\u0001b\u0000\u0000\u0006\u001c\u0000\u0003G\u001cF\u000bG\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001cE\nE\u0000\b\u000bboovtrue\u0006F\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\r\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u001c\u0000\u0002\u001cC\r\u001c\u0000\u0003X\u0000\u0000\u0000$\u0000n\u001cB\u001c\r\u001c\u0000\u0001k\u0000\u0000\u00004\u0000i\u001d\u0000\u0002\u001d\u0000\u0000\u0002\u001d\u0001\u001d\u0002\r\u001d\u0001\u0000\u0002r\u0000\u0000\u00004\u00009\u001d\u0003\u001d\u0004\r\u001d\u0003\u0000\u0002n\u0000\u0000\u00004\u00007\u001d\u0005\u001d\u0006\r\u001d\u0005\u0000\u00011\u0000\u0000\u00005\u00007A\nA\u0000\u0004\npcnt\r\u001d\u0006\u0000\u0001o\u0000\u0000\u00004\u00005@\u000b@\u0000\u00160\u0000\trecordref\u0000\trecordRef\r\u001d\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000?\u000b?\u0000\u00050\u0000\u0001r\u0000\u0000\u0002\u001d\u0002\u0000\u0002\u001d\u0007>\r\u001d\u0007\u0000\u0003I\u0000\u0002\u0000:\u0000i=<\u001d\b\n=\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001<\u0000\u0000\u0006\u001d\b\u0000\u0003;\u001d\t\u001d\n\n;\u0000\u0004\nkocl\r\u001d\t\u0000\u0001m\u0000\u0000\u0000<\u0000=:\n:\u0000\u0004\nplii\u0006\u001d\n\u0000\u00039\u001d\u000b\u001d\f\n9\u0000\u0004\ninsh\r\u001d\u000b\u0000\u0002n\u0000\u0000\u0000>\u0000D\u001d\r\u001d\u000e\r\u001d\r\u0000\u0000;\u0000\u0000\u0000C\u0000D\r\u001d\u000e\u0000\u0002n\u0000\u0000\u0000>\u0000C\u001d\u000f\u001d\u0010\r\u001d\u000f\u0000\u00012\u0000\u0001\u0000A\u0000C8\n8\u0000\u0004\nplii\r\u001d\u0010\u0000\u0002n\u0000\u0000\u0000>\u0000A\u001d\u0011\u001d\u0012\r\u001d\u0011\u0000\u00011\u0000\u0000\u0000?\u0000A7\n7\u0000\u0004\npcnt\r\u001d\u0012\u0000\u0003l\u0000\n\u0000>\u0000?\u001d\u001365\r\u001d\u0013\u0000\u0001o\u0000\u0000\u0000>\u0000?4\u000b4\u0000\u00050\u0000\u0001b\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0006\u001d\f\u0000\u00033\u001d\u00142\n3\u0000\u0004\nprdt\r\u001d\u0014\u0000\u0001K\u0000\u0000\u0000E\u0000c\u001d\u0015\u0006\u001d\u0015\u0000\u00031\u001d\u0016\u001d\u0017\n1\u0000\u0004\nkind\r\u001d\u0016\u0000\u0003l\u0000\u0005\u0000H\u0000O\u001d\u00180\/\r\u001d\u0018\u0000\u0002n\u0000\u0000\u0000H\u0000O\u001d\u0019\u001d\u001a\r\u001d\u0019\u0000\u00011\u0000\u0000\u0000M\u0000O.\n.\u0000\u0004\npcls\r\u001d\u001a\u0000\u0003l\u0000\u0005\u0000H\u0000M\u001d\u001b-,\r\u001d\u001b\u0000\u0002n\u0000\u0000\u0000H\u0000M\u001d\u001c\u001d\u001d\r\u001d\u001c\u0000\u0001o\u0000\u0000\u0000I\u0000M+\u000b+\u0000\u00140\u0000\bthevalue\u0000\btheValue\r\u001d\u001d\u0000\u0001o\u0000\u0000\u0000H\u0000I*\u000b*\u0000\u00050\u0000\u0001r\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0006\u001d\u0017\u0000\u0003)\u001d\u001e\u001d\u001f\n)\u0000\u0004\npnam\r\u001d\u001e\u0000\u0003l\u0000\u0005\u0000R\u0000W\u001d ('\r\u001d \u0000\u0002n\u0000\u0000\u0000R\u0000W\u001d!\u001d\"\r\u001d!\u0000\u0001o\u0000\u0000\u0000S\u0000W&\u000b&\u0000\u00100\u0000\u0006thekey\u0000\u0006theKey\r\u001d\"\u0000\u0001o\u0000\u0000\u0000R\u0000S%\u000b%\u0000\u00050\u0000\u0001r\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0006\u001d\u001f\u0000\u0003$\u001d##\n$\u0000\u0004\nvalL\r\u001d#\u0000\u0003l\u0000\u0005\u0000Z\u0000_\u001d$\"!\r\u001d$\u0000\u0002n\u0000\u0000\u0000Z\u0000_\u001d%\u001d&\r\u001d%\u0000\u0001o\u0000\u0000\u0000[\u0000_ \u000b \u0000\u00140\u0000\bthevalue\u0000\btheValue\r\u001d&\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u001f\u000b\u001f\u0000\u00050\u0000\u0001r\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0006#\u0000\u0000\u00062\u0000\u0000\u0002>\u0000\u0000\u000bB\u0000\u00160\u0000\trecordref\u0000\trecordRef\r\u001c\u0000\u0001o\u0000\u0000\u0000'\u0000(\u001e\u000b\u001e\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002C\u0000\u0000\u0002V\u0000\u0000\r\u001c\u0000\u0001k\u0000\u0000\u0000q\u0000\u001d'\u0002\u001d'\u0000\u0002\u001d(\u001d)\r\u001d(\u0000\u0002r\u0000\u0000\u0000q\u0000\u001d*\u001d+\r\u001d*\u0000\u00024\u0000\u0000\u0000q\u0000}\u001d\u001d,\n\u001d\u0000\u0004\nplif\r\u001d,\u0000\u0003l\u0000\u0005\u0000s\u0000|\u001d-\u001c\u001b\r\u001d-\u0000\u0003I\u0000\u0001\u0000s\u0000|\u001a\u001d.\u001d\/\u000b\u001a\u0000\u00110\u0000\r_get_location\u0000\u0000\r\u001d.\u0000\u0000f\u0000\u0000\u0000s\u0000t\u0006\u001d\/\u0000\u0003\u0019\u001d0\u001d1\n\u0019\u0000\u0004\nat \r\u001d0\u0000\u0001o\u0000\u0000\u0000u\u0000v\u0018\u000b\u0018\u0000\u00050\u0000\u0001c\u0000\u0000\u0006\u001d1\u0000\u0003\u0017\u001d2\u0016\u000b\u0017\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001d2\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0015\n\u0015\u0000\b\u000bboovtrue\u0006\u0016\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\r\u001d+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\u00050\u0000\u0001c\u0000\u0000\u0002\u001d)\u0000\u0002\u001d3\u001d4\r\u001d3\u0000\u0004Z\u0000\u0000\u0000\u0000\u001d5\u001d6\u0013\u001d7\r\u001d5\u0000\u0002=\u0000\u0003\u0000\u0000\u001d8\u001d9\r\u001d8\u0000\u0002n\u0000\u0000\u0000\u0000\u001d:\u001d;\r\u001d:\u0000\u00011\u0000\u0000\u0000\u0000\u0012\n\u0012\u0000\u0004\npcls\r\u001d;\u0000\u0001o\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00050\u0000\u0001b\u0000\u0000\r\u001d9\u0000\u0001m\u0000\u0000\u0000\u0000\u0010\n\u0010\u0000\u0004\nlist\r\u001d6\u0000\u0002r\u0000\u0000\u0000\u0000\u001d<\u001d=\r\u001d<\u0000\u0002n\u0000\u0001\u0000\u0000\u001d>\u001d?\r\u001d>\u0000\u0003I\u0000\u0000\u0000\u0000\u000f\u001d@\u000e\u000b\u000f\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u0002\u001d@\u0000\u0002\u001dA\r\r\u001dA\u0000\u0001o\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\r\u0000\u0000\u0002\u000e\u0000\u0000\r\u001d?\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001d=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0013\u0000\u0000\r\u001d7\u0000\u0002r\u0000\u0000\u0000\u0000\u001dB\u001dC\r\u001dB\u0000\u0001o\u0000\u0000\u0000\u0000\n\u000b\n\u0000\u00050\u0000\u0001b\u0000\u0000\r\u001dC\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u001d4\u0000\u0002\u001dD\b\r\u001dD\u0000\u0003I\u0000\u0002\u0000\u0000\u0007\u0006\u001dE\n\u0007\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0006\u0000\u0000\u0006\u001dE\u0000\u0003\u0005\u001dF\u001dG\n\u0005\u0000\u0004\nkocl\r\u001dF\u0000\u0001m\u0000\u0000\u0000\u0000\u0004\n\u0004\u0000\u0004\nplii\u0006\u001dG\u0000\u0003\u0003\u001dH\u001dI\n\u0003\u0000\u0004\ninsh\r\u001dH\u0000\u0002n\u0000\u0000\u0000\u0000\u001dJ\u001dK\r\u001dJ\u0000\u0000;\u0000\u0000\u0000\u0000\r\u001dK\u0000\u0002n\u0000\u0000\u0000\u0000\u001dL\u001dM\r\u001dL\u0000\u00012\u0000\u0001\u0000\u0000\u0002\n\u0002\u0000\u0004\nplii\r\u001dM\u0000\u0002n\u0000\u0000\u0000\u0000\u001dN\u001dO\r\u001dN\u0000\u00011\u0000\u0000\u0000\u0000\u0001\n\u0001\u0000\u0004\npcnt\r\u001dO\u0000\u0003l\u0000\n\u0000\u0000\u001dP\u0000\r\u001dP\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0006\u001dI\u0000\u0003\u001dQ\n\u0000\u0004\nprdt\r\u001dQ\u0000\u0001K\u0000\u0000\u0000\u0000\u001dR\u0006\u001dR\u0000\u0003\u001dS\u001dT\n\u0000\u0004\nkind\r\u001dS\u0000\u0003l\u0000\u0005\u0000\u0000\u001dU\r\u001dU\u0000\u0002n\u0000\u0000\u0000\u0000\u001dV\u001dW\r\u001dV\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcls\r\u001dW\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u001dT\u0000\u0003\u001dX\u001dY\n\u0000\u0004\npnam\r\u001dX\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0006\u001dY\u0000\u0003\u001dZ\n\u0000\u0004\nvalL\r\u001dZ\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0006\u0000\u0000\u0006\u0000\u0000\u0002\b\u0000\u0000\r\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001d[\u000f\u001d[\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001c\u0000\u0002\u001d\\\u001d]\r\u001d\\\u0000\u0002i\u0000\u0000\u00009\u0000<\u001d^\u001d_\r\u001d^\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001d`\u000b\u0000\u000e0\u0000\nset_values\u0000\u0000\u0002\u001d`\u0000\u0002\u001da\u001db\r\u001da\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001db\u0000\u0002\u001dc\r\u001dc\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d_\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\t\u001dd\r\u001dd\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b\u001de\u001df\r\u001de\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\b\u001dg\u000b\u0000\r0\u0000\tset_value\u0000\u0000\u0002\u001dg\u0000\u0002\u001dh\u001di\r\u001dh\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001di\u0000\u0002\u001dj\u001dk\r\u001dj\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u001dk\u0000\u0002\u001dl\r\u001dl\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u001dm\u000e\u001dm\u0000\u0001\u001dn\u0011\u001dn\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001df\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u001d]\u0000\u0002\u001do\u001dp\r\u001do\u0000\u0002i\u0000\u0000\u0000=\u0000@\u001dq\u001dr\r\u001dq\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001ds\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u0002\u001ds\u0000\u0002\u001dt\u001du\r\u001dt\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001du\u0000\u0002\u001dv\r\u001dv\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001dr\u0000\u0001k\u0000\u0000\u0000\u0000\u0000-\u001dw\u0002\u001dw\u0000\u0002\u001dx\u001dy\r\u001dx\u0000\u0002O\u0000\u0000\u0000\u0000\u0000*\u001dz\u001d{\r\u001dz\u0000\u0001k\u0000\u0000\u0000\u0004\u0000)\u001d|\u0002\u001d|\u0000\u0002\u001d}\u001d~\r\u001d}\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0012\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0000\u0004\u0000\u0010\u001d\n\u0000\u0004\nplif\r\u001d\u0000\u0003l\u0000\u0005\u0000\u0006\u0000\u000f\u001d\r\u001d\u0000\u0003I\u0000\u0001\u0000\u0006\u0000\u000f\u001d\u001d\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\r\u001d\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\u0006\u001d\u0000\u0003\u001d\u001d\n\u0000\u0004\nat \r\u001d\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0006\u001d\u0000\u0003\u001d\u000b\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001d\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u001d~\u0000\u0002\u001d\r\u001d\u0000\u0003Q\u0000\u0000\u0000\u0013\u0000)\u001d\u001d\r\u001d\u0000\u0001L\u0000\u0000\u0000\u0016\u0000 \u001d\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001f\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\nvalL\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001c\u001d\u001d\r\u001d\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001c\u001d\n\u0000\u0004\nplii\r\u001d\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001d\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u0019\u001d\u001d\r\u001d\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\npcnt\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\r\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u001d{\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001d\u000f\u001d\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001dy\u0000\u0002\u001d\r\u001d\u0000\u0001L\u0000\u0000\u0000+\u0000-\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000+\u0000,\n\u0000\u0004\nmsng\u0002\u0000\u0000\u0002\u001dp\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002i\u0000\u0000\u0000A\u0000D\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u0000\u000b0\u0000\u0007request\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000%\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000f\u0000M\u0000o\u0000z\u0000i\u0000l\u0000l\u0000a\u0000\/\u00005\u0000.\u00000\u0000 \u0000(\u0000c\u0000o\u0000m\u0000p\u0000a\u0000t\u0000i\u0000b\u0000l\u0000e\u0000;\u0000 \u0000M\u0000S\u0000I\u0000E\u0000 \u00007\u0000.\u00000\u00001\u0000;\u0000 \u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000 \u0000N\u0000T\u0000 \u00005\u0000.\u00000\u0000)\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005agent\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000\"\u001d\u001d\r\u001d\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0019\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0016\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0007\u0000\u0014\u001d\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001d\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\u0010\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\u000e\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\f\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\n\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000-\u0000s\u0000i\u0000l\u0000e\u0000n\u0000t\u0000 \u0000-\u0000-\u0000s\u0000h\u0000o\u0000w\u0000-\u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000-\u0000-\u0000m\u0000a\u0000x\u0000-\u0000r\u0000e\u0000d\u0000i\u0000r\u0000s\u0000 \u00005\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00001\u00000\u0000 \u0000-\u0000-\u0000m\u0000a\u0000x\u0000-\u0000t\u0000i\u0000m\u0000e\u0000 \u00001\u00000\u0000 \u0000-\u0000L\u0000 \u0000-\u0000A\u0000 \u0000'\r\u001d\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\t0\u0000\u0005agent\u0000\u0000\r\u001d\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0006\u0000'\u0000 \u0000'\r\u001d\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\r\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0002\u0000'\u0002\u0000\u0000\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecontent\u0000\ntheContent\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0001L\u0000\u0000\u0000\u0017\u0000\u0019\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u00180\u0000\nthecontent\u0000\ntheContent\u0002\u0000\u0000\r\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0001L\u0000\u0000\u0000#\u0000%\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\u0004\nmsng\u0002\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002i\u0000\u0000\u0000E\u0000H\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u0000\u00100\u0000\frequest_json\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0003Q\u0000\u0000\u0000\u0000\u00006\u001d\u001d\u001d\r\u001d\u0000\u0001k\u0000\u0000\u0000\u0003\u0000,\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\n\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u001d\u001d\r\u001d\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\u0006\u001d\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0006\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001d\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\"\u0000b\u0000i\u0000n\u0000\/\u0000q\u0000_\u0000j\u0000s\u0000o\u0000n\u0000.\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\njsonhelper\u0000\njsonHelper\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0016\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u0014\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u0012\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u0010\u001d\u001d\r\u001d\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u001d\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000$\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u001d\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00180\u0000\njsonhelper\u0000\njsonHelper\r\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000,\u0000\"\u0000 \u0000t\u0000o\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000 \u0000J\u0000S\u0000O\u0000N\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000\"\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\r\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0002\u0000\"\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0017\u0000\u001c\u001d\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0004Z\u0000\u0000\u0000\u001f\u0000,\u001d\u001d\u001d\r\u001d\u0000\u0002=\u0000\u0000\u0000\u001f\u0000\"\u001d\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\r\u001d\u0000\u0001m\u0000\u0000\u0000 \u0000!\u001d\u000e\u001d\u0000\u0001\u001d\u0011\u001d\u0000\u0000\r\u001d\u0000\u0001L\u0000\u0000\u0000%\u0000'\u001d\r\u001d\u0000\u0001m\u0000\u0000\u0000%\u0000&\n\u0000\u0004\nmsng\u0002\u0000\u0000\r\u001d\u0000\u0001L\u0000\u0000\u0000*\u0000,\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0001L\u0000\u0000\u00004\u00006\u001d\r\u001d\u0000\u0001m\u0000\u0000\u00004\u00005\n\u0000\u0004\nmsng\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002i\u0000\u0000\u0000I\u0000L\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u0000\n0\u0000\u0006mdfind\u0000\u0000\u0002\u001d\u0000\u0002\u001d\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0014\u001d\u0002\u001d\u0000\u0002\u001d\u001d\r\u001d\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000b\u001d\u001d\r\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u001e\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001e\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u001e\u0001\u001e\u0002\r\u001e\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u001e\u0003\u001e\u0004\r\u001e\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001e\u0005\u000e\u001e\u0005\u0000\u0001\u001e\u0006\u0011\u001e\u0006\u0000\u0010\u0000m\u0000d\u0000f\u0000i\u0000n\u0000d\u0000 \u0000\"\r\u001e\u0004\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\t0\u0000\u0005query\u0000\u0000\r\u001e\u0002\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u001e\u0007\u000e\u001e\u0007\u0000\u0001\u001e\b\u0011\u001e\b\u0000\u0002\u0000\"\u0002\u0000\u0000\r\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006output\u0000\u0000\u0002\u001d\u0000\u0002\u001e\t\r\u001e\t\u0000\u0001L\u0000\u0000\u0000\f\u0000\u0014\u001e\n\r\u001e\n\u0000\u0002n\u0000\u0001\u0000\f\u0000\u0013\u001e\u000b\u001e\f\r\u001e\u000b\u0000\u0003I\u0000\u0000\u0000\r\u0000\u0013\u001e\r\u000b\u0000\u000b0\u0000\u0007q_split\u0000\u0000\u0002\u001e\r\u0000\u0002\u001e\u000e\u001e\u000f\r\u001e\u000e\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\n0\u0000\u0006output\u0000\u0000\u0002\u001e\u000f\u0000\u0002\u001e\u0010\r\u001e\u0010\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\n\u0000\u0004\nret \u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\f\u0000\u0000f\u0000\u0000\u0000\f\u0000\r\u0002\u0000\u0000\u0002\u001d\u0000\u0002\u001e\u0011\u001e\u0012\r\u001e\u0011\u0000\u0002i\u0000\u0000\u0000M\u0000P\u001e\u0013\u001e\u0014\r\u001e\u0013\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0015\u000b\u0000\u000e0\u0000\nwrite_file\u0000\u0000\u0002\u001e\u0015\u0000\u0002\u001e\u0016\u001e\u0017\r\u001e\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001e\u0017\u0000\u0002\u001e\u0018\r\u001e\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001e\u0014\u0000\u0001k\u0000\u0000\u0000\u0000\u0000{\u001e\u0019\u0002\u001e\u0019\u0000\u0002\u001e\u001a\u001e\u001b\r\u001e\u001a\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000b\u001e\u001c\u001e\u001d\r\u001e\u001c\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\t\u001e\u001e\u001e\u001f\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\r\u001e\u001e\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u001e\u001f\u0000\u0003\u001e \u001e!\n\u0000\u0004\nat \r\u001e \u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0006\u001e!\u0000\u0003\u001e\"\u000b\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001e\"\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bboovfals\u0006\u0000\u0000\r\u001e\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u001e\u001b\u0000\u0002\u001e#\u001e$\r\u001e#\u0000\u0004Z\u0000\u0000\u0000\f\u0000?\u001e%\u001e&\u001e'\r\u001e%\u0000\u0002=\u0000\u0003\u0000\f\u0000\u0011\u001e(\u001e)\r\u001e(\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u001e*\u001e+\r\u001e*\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npcls\r\u001e+\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001e)\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nlist\r\u001e&\u0000\u0003Q\u0000\u0000\u0000\u0014\u0000*\u001e,\u001e-\u001e.\r\u001e,\u0000\u0002r\u0000\u0000\u0000\u0017\u0000 \u001e\/\u001e0\r\u001e\/\u0000\u0002n\u0000\u0001\u0000\u0017\u0000\u001e\u001e1\u001e2\r\u001e1\u0000\u0003I\u0000\u0000\u0000\u0018\u0000\u001e\u001e3\u000b\u0000\n0\u0000\u0006q_join\u0000\u0000\u0002\u001e3\u0000\u0002\u001e4\u001e5\r\u001e4\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001e5\u0000\u0002\u001e6\r\u001e6\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nret \u0002\u0000\u0000\u0002\u0000\u0000\r\u001e2\u0000\u0000f\u0000\u0000\u0000\u0017\u0000\u0018\r\u001e0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001e-\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000~\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002~\u0000\u0000\r\u001e.\u0000\u0001L\u0000\u0000\u0000(\u0000*\u001e7\r\u001e7\u0000\u0001m\u0000\u0000\u0000(\u0000)}\n}\u0000\b\u000bboovfals\u0002\u0000\u0000\r\u001e'\u0000\u0003Q\u0000\u0000\u0000-\u0000?\u001e8\u001e9\u001e:\r\u001e8\u0000\u0002r\u0000\u0000\u00000\u00005\u001e;\u001e<\r\u001e;\u0000\u0002c\u0000\u0000\u00000\u00003\u001e=\u001e>\r\u001e=\u0000\u0001o\u0000\u0000\u00000\u00001|\u000b|\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001e>\u0000\u0001m\u0000\u0000\u00001\u00002{\n{\u0000\u0004\nctxt\r\u001e<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00050\u0000\u0001a\u0000\u0000\r\u001e9\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000yxw\ny\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001x\u0000\u0000\u0002w\u0000\u0000\r\u001e:\u0000\u0001L\u0000\u0000\u0000=\u0000?\u001e?\r\u001e?\u0000\u0001m\u0000\u0000\u0000=\u0000>v\nv\u0000\b\u000bboovfals\u0002\u001e$\u0000\u0002\u001e@u\r\u001e@\u0000\u0003Q\u0000\u0000\u0000@\u0000{\u001eA\u001eB\u001eC\r\u001eA\u0000\u0001k\u0000\u0000\u0000C\u0000k\u001eD\u0002\u001eD\u0000\u0002\u001eE\u001eF\r\u001eE\u0000\u0002r\u0000\u0000\u0000C\u0000L\u001eG\u001eH\r\u001eG\u0000\u0003I\u0000\u0002\u0000C\u0000Jt\u001eI\u001eJ\nt\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\u001eI\u0000\u0001o\u0000\u0000\u0000C\u0000Ds\u000bs\u0000\u00050\u0000\u0001b\u0000\u0000\u0006\u001eJ\u0000\u0003r\u001eKq\nr\u0000\u0004\nperm\r\u001eK\u0000\u0001m\u0000\u0000\u0000E\u0000Fp\np\u0000\b\u000bboovtrue\u0006q\u0000\u0000\r\u001eH\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\u001eF\u0000\u0002\u001eL\u001eM\r\u001eL\u0000\u0003I\u0000\u0002\u0000M\u0000Tn\u001eN\u001eO\nn\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\r\u001eN\u0000\u0001o\u0000\u0000\u0000M\u0000Nm\u000bm\u0000\u00050\u0000\u0001f\u0000\u0000\u0006\u001eO\u0000\u0003l\u001ePk\nl\u0000\u0004\nset2\r\u001eP\u0000\u0001m\u0000\u0000\u0000O\u0000Pj\u0003j\u0000\u0000\u0006k\u0000\u0000\u0002\u001eM\u0000\u0002\u001eQ\u001eR\r\u001eQ\u0000\u0003I\u0000\u0002\u0000U\u0000bi\u001eS\u001eT\ni\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u001eS\u0000\u0001o\u0000\u0000\u0000U\u0000Vh\u000bh\u0000\u00050\u0000\u0001a\u0000\u0000\u0006\u001eT\u0000\u0003g\u001eU\u001eV\ng\u0000\u0004\nrefn\r\u001eU\u0000\u0001o\u0000\u0000\u0000W\u0000Xf\u000bf\u0000\u00050\u0000\u0001f\u0000\u0000\u0006\u001eV\u0000\u0003e\u001eWd\ne\u0000\u0004\nas \r\u001eW\u0000\u0001m\u0000\u0000\u0000[\u0000^c\nc\u0000\u0004\nutf8\u0006d\u0000\u0000\u0002\u001eR\u0000\u0002\u001eX\u001eY\r\u001eX\u0000\u0003I\u0000\u0002\u0000c\u0000hb\u001eZa\nb\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u001eZ\u0000\u0001o\u0000\u0000\u0000c\u0000d`\u000b`\u0000\u00050\u0000\u0001f\u0000\u0000\u0002a\u0000\u0000\u0002\u001eY\u0000\u0002\u001e[_\r\u001e[\u0000\u0001L\u0000\u0000\u0000i\u0000k\u001e\\\r\u001e\\\u0000\u0001m\u0000\u0000\u0000i\u0000j^\n^\u0000\b\u000bboovtrue\u0002_\u0000\u0000\r\u001eB\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000]\\[\n]\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\\\u0000\u0000\u0002[\u0000\u0000\r\u001eC\u0000\u0001k\u0000\u0000\u0000s\u0000{\u001e]\u0002\u001e]\u0000\u0002\u001e^\u001e_\r\u001e^\u0000\u0003I\u0000\u0002\u0000s\u0000xZ\u001e`Y\nZ\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u001e`\u0000\u0001o\u0000\u0000\u0000s\u0000tX\u000bX\u0000\u00050\u0000\u0001b\u0000\u0000\u0002Y\u0000\u0000\u0002\u001e_\u0000\u0002\u001eaW\r\u001ea\u0000\u0001L\u0000\u0000\u0000y\u0000{\u001eb\r\u001eb\u0000\u0001m\u0000\u0000\u0000y\u0000zV\nV\u0000\b\u000bboovfals\u0002W\u0000\u0000\u0002u\u0000\u0000\u0002\u001e\u0012\u0000\u0002\u001ec\u001ed\r\u001ec\u0000\u0002i\u0000\u0000\u0000Q\u0000T\u001ee\u001ef\r\u001ee\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000U\u001egT\u000bU\u0000\r0\u0000\tread_file\u0000\u0000\u0002\u001eg\u0000\u0002\u001ehS\r\u001eh\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u00050\u0000\u0001a\u0000\u0000\u0002S\u0000\u0000\u0002T\u0000\u0000\r\u001ef\u0000\u0001k\u0000\u0000\u0000\u0000\u0000V\u001ei\u0002\u001ei\u0000\u0002\u001ej\u001ek\r\u001ej\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000b\u001el\u001em\r\u001el\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\tQ\u001en\u001eo\u000bQ\u0000\u00110\u0000\r_get_location\u0000\u0000\r\u001en\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u001eo\u0000\u0003P\u001ep\u001eq\nP\u0000\u0004\nat \r\u001ep\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003O\u000bO\u0000\u00050\u0000\u0001a\u0000\u0000\u0006\u001eq\u0000\u0003N\u001erM\u000bN\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001er\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005L\nL\u0000\b\u000bboovfals\u0006M\u0000\u0000\r\u001em\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u001ek\u0000\u0002\u001esJ\r\u001es\u0000\u0003Q\u0000\u0000\u0000\f\u0000V\u001et\u001eu\u001ev\r\u001et\u0000\u0001k\u0000\u0000\u0000\u000f\u0000F\u001ew\u0002\u001ew\u0000\u0002\u001ex\u001ey\r\u001ex\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0016\u001ez\u001e{\r\u001ez\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u0014I\u001e|H\nI\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\u001e|\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010G\u000bG\u0000\u00050\u0000\u0001a\u0000\u0000\u0002H\u0000\u0000\r\u001e{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\u001ey\u0000\u0002\u001e}\u001e~\r\u001e}\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001e\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000\u0017\u0000\u001cE\u001eD\nE\u0000\u0018.rdwrgeofcomp\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018C\u000bC\u0000\u00050\u0000\u0001f\u0000\u0000\u0002D\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\u00060\u0000\u0002sz\u0000\u0000\u0002\u001e~\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$A\u001e@\nA\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 ?\u000b?\u0000\u00050\u0000\u0001f\u0000\u0000\u0002@\u0000\u0000\u0002\u001e\u0000\u0002\u001e>\r\u001e\u0000\u0004Z\u0000\u0000\u0000%\u0000F\u001e\u001e=\u001e\r\u001e\u0000\u0002=\u0000\u0000\u0000%\u0000(\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000%\u0000&<\u000b<\u0000\u00060\u0000\u0002sz\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000&\u0000';\u0003;\u0000\u0000\r\u001e\u0000\u0001k\u0000\u0000\u0000+\u0000;\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002O\u0000\u0001\u0000+\u00008\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000\/\u00007:\u001e9\n:\u0000\u0018.coredelonull\u0000\u0000\u0000\u0000\u0000obj \r\u001e\u0000\u00024\u0000\u0000\u0000\/\u000038\u001e\n8\u0000\u0004\nfile\r\u001e\u0000\u0001o\u0000\u0000\u00001\u000027\u000b7\u0000\u00050\u0000\u0001a\u0000\u0000\u00029\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000+\u0000,\u001e\u000f\u001e\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001e\u0000\u0002\u001e6\r\u001e\u0000\u0001L\u0000\u0000\u00009\u0000;\u001e\r\u001e\u0000\u0001m\u0000\u0000\u00009\u0000:5\n5\u0000\u0004\nmsng\u00026\u0000\u0000\u0002=\u0000\u0000\r\u001e\u0000\u0001L\u0000\u0000\u0000>\u0000F\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000>\u0000E4\u001e\u001e\n4\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000>\u0000?3\u000b3\u0000\u00050\u0000\u0001a\u0000\u0000\u0006\u001e\u0000\u00032\u001e1\n2\u0000\u0004\nas \r\u001e\u0000\u0001m\u0000\u0000\u0000@\u0000A0\n0\u0000\u0004\nutf8\u00061\u0000\u0000\u0002>\u0000\u0000\r\u001eu\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u001ev\u0000\u0001k\u0000\u0000\u0000N\u0000V\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0002\u0000N\u0000S,\u001e+\n,\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u001e\u0000\u0001o\u0000\u0000\u0000N\u0000O*\u000b*\u0000\u00050\u0000\u0001a\u0000\u0000\u0002+\u0000\u0000\u0002\u001e\u0000\u0002\u001e)\r\u001e\u0000\u0001L\u0000\u0000\u0000T\u0000V\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000T\u0000U(\n(\u0000\u0004\nmsng\u0002)\u0000\u0000\u0002J\u0000\u0000\u0002\u001ed\u0000\u0002\u001e\u001e\r\u001e\u0000\u0002i\u0000\u0000\u0000U\u0000X\u001e\u001e\r\u001e\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000'&\u001e\u000b'\u0000\u000e0\u0000\nadd_result\u0000\u0000\u0002&\u0000\u0000\u0006\u001e\u0000\u0003%\u001e\u001e\u000b%\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\b0\u0000\u0004_uid\u0000\u0000\u0006\u001e\u0000\u0003#\u001e\u001e\u000b#\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\"\u0000\b0\u0000\u0004_arg\u0000\u0000\u0006\u001e\u0000\u0003!\u001e\u001e\u000b!\u0000\u00140\u0000\bthetitle\u0000\btheTitle\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\n0\u0000\u0006_title\u0000\u0000\u0006\u001e\u0000\u0003\u001f\u001e\u001e\u000b\u001f\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\b0\u0000\u0004_sub\u0000\u0000\u0006\u001e\u0000\u0003\u001d\u001e\u001e\u000b\u001d\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006\u001e\u0000\u0003\u001b\u001e\u001e\u000b\u001b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\t0\u0000\u0005_auto\u0000\u0000\u0006\u001e\u0000\u0003\u0019\u001e\u001e\u000b\u0019\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\t0\u0000\u0005_type\u0000\u0000\u0006\u001e\u0000\u0003\u0017\u001e\u0016\u000b\u0017\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u000b\u0015\u0000\n0\u0000\u0006_valid\u0000\u0000\u0006\u0016\u0000\u0000\r\u001e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\r\u001e\u001e\u0014\u0013\r\u001e\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u0012\u000b\u0012\u0000\b0\u0000\u0004_uid\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0011\n\u0011\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u000b\u0010\u0000\b0\u0000\u0004_uid\u0000\u0000\u0002\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000\u000e\u0000\u001b\u001e\u001e\u000f\u000e\r\u001e\u0000\u0002=\u0000\u0003\u0000\u000e\u0000\u0011\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\r\u000b\r\u0000\b0\u0000\u0004_arg\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\f\n\f\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\b0\u0000\u0004_arg\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000\u001c\u0000)\u001e\u001e\n\t\r\u001e\u0000\u0002=\u0000\u0003\u0000\u001c\u0000\u001f\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\b\u000b\b\u0000\n0\u0000\u0006_title\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0007\n\u0007\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000\"\u0000%\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u000b\u0006\u0000\n0\u0000\u0006_title\u0000\u0000\u0002\n\u0000\u0000\u0001\t\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000*\u00007\u001e\u001e\u0005\u0004\r\u001e\u0000\u0002=\u0000\u0003\u0000*\u0000-\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000*\u0000+\u0003\u000b\u0003\u0000\b0\u0000\u0004_sub\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002\n\u0002\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u00000\u00003\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u00000\u00001\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0001\u0000\b0\u0000\u0004_sub\u0000\u0000\u0002\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u00008\u0000E\u001e\u001e\u0000\r\u001e\u0000\u0002=\u0000\u0003\u00008\u0000;\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u00009\u0000:\n\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000>\u0000A\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000>\u0000?\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000F\u0000S\u001e\u001e\r\u001e\u0000\u0002=\u0000\u0003\u0000F\u0000I\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\t0\u0000\u0005_auto\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000G\u0000H\n\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000L\u0000O\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000L\u0000M\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_auto\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000T\u0000a\u001e\u001e\r\u001e\u0000\u0002=\u0000\u0003\u0000T\u0000W\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000U\u0000V\n\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000Z\u0000]\u001e\u001e\r\u001e\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u001e\u000e\u001e\u0000\u0001\u001e\u0011\u001e\u0000\u0000\r\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001e\u001e\r\u001e\u0000\u0004Z\u0000\u0001\u0000b\u0000o\u001e\u001e\r\u001e\u0000\u0002=\u0000\u0003\u0000b\u0000e\u001e\u001e\r\u001e\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\n0\u0000\u0006_valid\u0000\u0000\r\u001e\u0000\u0001m\u0000\u0000\u0000c\u0000d\n\u0000\u0004\nmsng\r\u001e\u0000\u0002r\u0000\u0000\u0000h\u0000k\u001f\u0000\u001f\u0001\r\u001f\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000i\u001f\u0002\u000e\u001f\u0002\u0000\u0001\u001f\u0003\u0011\u001f\u0003\u0000\u0006\u0000y\u0000e\u0000s\r\u001f\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006_valid\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001e\u0000\u0002\u001f\u0004\u001f\u0005\r\u001f\u0004\u0000\u0002r\u0000\u0000\u0000p\u0000\u001f\u0006\u001f\u0007\r\u001f\u0006\u0000\u0001K\u0000\u0000\u0000p\u0000\u001f\b\u0006\u001f\b\u0000\u0003\u001f\t\u001f\n\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\r\u001f\t\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000\b0\u0000\u0004_uid\u0000\u0000\u0006\u001f\n\u0000\u0003\u001f\u000b\u001f\f\u000b\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\r\u001f\u000b\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\b0\u0000\u0004_arg\u0000\u0000\u0006\u001f\f\u0000\u0003\u001f\r\u001f\u000e\u000b\u0000\u00140\u0000\bthetitle\u0000\btheTitle\r\u001f\r\u0000\u0001o\u0000\u0000\u0000u\u0000v\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\u0006\u001f\u000e\u0000\u0003\u001f\u000f\u001f\u0010\u000b\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\r\u001f\u000f\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000b\u0000\b0\u0000\u0004_sub\u0000\u0000\u0006\u001f\u0010\u0000\u0003\u001f\u0011\u001f\u0012\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\r\u001f\u0011\u0000\u0001o\u0000\u0000\u0000y\u0000z\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006\u001f\u0012\u0000\u0003\u001f\u0013\u001f\u0014\u000b\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\r\u001f\u0013\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000\n0\u0000\u0006_valid\u0000\u0000\u0006\u001f\u0014\u0000\u0003\u001f\u0015\u001f\u0016\u000b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\r\u001f\u0015\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000\t0\u0000\u0005_auto\u0000\u0000\u0006\u001f\u0016\u0000\u0003\u001f\u0017\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\r\u001f\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\u0006\u0000\u0000\r\u001f\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u001f\u0005\u0000\u0002\u001f\u0018\u001f\u0019\r\u001f\u0018\u0000\u0004Z\u0000\u0000\u0000\u0000\u001f\u001a\u001f\u001b\r\u001f\u001a\u0000\u0002n\u0000\u0001\u0000\u0000\u001f\u001c\u001f\u001d\r\u001f\u001c\u0000\u0003I\u0000\u0000\u0000\u0000\u001f\u001e\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001f\u001e\u0000\u0002\u001f\u001f\r\u001f\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f\u001d\u0000\u0000f\u0000\u0000\u0000\u0000\r\u001f\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u001f \u001f!\r\u001f \u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u001f!\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u001f\"\u001f#\r\u001f\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\r\u001f#\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001f\u0019\u0000\u0002\u001f$\u001f%\r\u001f$\u0000\u0002r\u0000\u0000\u0000\u0000\u001f&\u001f'\r\u001f&\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\r\u001f'\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u001f(\u001f)\r\u001f(\u0000\u0000;\u0000\u0000\u0000\u0000\r\u001f)\u0000\u0003l\u0000\u0005\u0000\u0000\u001f*\r\u001f*\u0000\u0002n\u0000\u0001\u0000\u0000\u001f+\u001f,\r\u001f+\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_results\u0000\u0000\r\u001f,\u0000\u0000f\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u001f%\u0000\u0002\u001f-\r\u001f-\u0000\u0001L\u0000\u0000\u0000\u0000\u001f.\r\u001f.\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u0000\u0000\u0002\u001e\u0000\u0002\u001f\/\u001f0\r\u001f\/\u0000\u0002i\u0000\u0000\u0000Y\u0000\\\u001f1\u001f2\r\u001f1\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001f3\u000b\u0000\u000f0\u0000\u000b_make_plist\u0000\u0000\u0002\u001f3\u0000\u0002\u001f4\r\u001f4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tplistpath\u0000\tplistPath\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f2\u0000\u0001k\u0000\u0000\u0000\u0000\u0000'\u001f5\u0002\u001f5\u0000\u0002\u001f6\u001f7\r\u001f6\u0000\u0002O\u0000\u0000\u0000\u0000\u0000$\u001f8\u001f9\r\u001f8\u0000\u0001k\u0000\u0000\u0000\u0004\u0000#\u001f:\u0002\u001f:\u0000\u0002\u001f;\u001f<\r\u001f;\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0012\u001f=\u001f>\r\u001f=\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\u0010\u001f?\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u001f?\u0000\u0003\u001f@\u001fA\n\u0000\u0004\nkocl\r\u001f@\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\u0004\nplii\u0006\u001fA\u0000\u0003\u001fB\n\u0000\u0004\nprdt\r\u001fB\u0000\u0001K\u0000\u0000\u0000\b\u0000\f\u001fC\u0006\u001fC\u0000\u0003\u001fD\n\u0000\u0004\nkind\r\u001fD\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nreco\u0006\u0000\u0000\u0006\u0000\u0000\r\u001f>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rparentelement\u0000\rparentElement\u0002\u001f<\u0000\u0002\u001fE\r\u001fE\u0000\u0002r\u0000\u0000\u0000\u0013\u0000#\u001fF\u001fG\r\u001fF\u0000\u0003l\u0000\t\u0000\u0013\u0000!\u001fH\r\u001fH\u0000\u0003I\u0000\u0002\u0000\u0013\u0000!\u001fI\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u001fI\u0000\u0003\u001fJ\u001fK\n\u0000\u0004\nkocl\r\u001fJ\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nplif\u0006\u001fK\u0000\u0003\u001fL\n\u0000\u0004\nprdt\r\u001fL\u0000\u0001K\u0000\u0000\u0000\u0017\u0000\u001d\u001fM\u0006\u001fM\u0000\u0003\u001fN\u001fO\n\u0000\u0004\npcnt\r\u001fN\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u001e0\u0000\rparentelement\u0000\rparentElement\u0006\u001fO\u0000\u0003\u001fP\n\u0000\u0004\npnam\r\u001fP\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tplistpath\u0000\tplistPath\u0006\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u001fG\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tplistfile\u0000\tplistFile\u0002\u0000\u0000\r\u001f9\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u001fQ\u000f\u001fQ\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u001f7\u0000\u0002\u001fR\r\u001fR\u0000\u0001L\u0000\u0000\u0000%\u0000'\u001fS\r\u001fS\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tplistfile\u0000\tplistFile\u0002\u0000\u0000\u0002\u001f0\u0000\u0002\u001fT\r\u001fT\u0000\u0002i\u0000\u0000\u0000]\u0000`\u001fU\u001fV\r\u001fU\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001fW\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\u0002\u0000\u0000\u0006\u001fW\u0000\u0003\u001fX\u001fY\n\u0000\u0004\nat \r\u001fX\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0006\u001fY\u0000\u0003\u001fZ\u000b\u0000\t0\u0000\u0005plist\u0000\u0000\r\u001fZ\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007isplist\u0000\u0007isPlist\u0006\u0000\u0000\r\u001fV\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001f[\u0002\u001f[\u0000\u0002\u001f\\\u001f]\r\u001f\\\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0018\u001f^\u001f_\r\u001f^\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u001f`\u001fa\r\u001f`\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u001fb\u001fc\r\u001fb\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\r\u001fc\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u001fa\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u001fd\u001fe\r\u001fd\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u001ff\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002\u001ff\u0000\u0002\u001fg\r\u001fg\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001fe\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u001f_\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0014\u001fh\u001fi\r\u001fh\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u001fj\u000e\u001fj\u0000\u0001\u001fk\u0011\u001fk\u0000\u001c\u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u001fi\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u001f]\u0000\u0002\u001fl\u001fm\r\u001fl\u0000\u0004Z\u0000\u0000\u0000\u0019\u0000\u001fn\u001fo\u001fp\r\u001fn\u0000\u0002n\u0000\u0001\u0000\u0019\u0000\u001f\u001fq\u001fr\r\u001fq\u0000\u0003I\u0000\u0000\u0000\u001a\u0000\u001f\u001fs\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001fs\u0000\u0002\u001ft\r\u001ft\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001fr\u0000\u0000f\u0000\u0000\u0000\u0019\u0000\u001a\u0001\u0000\u0000\u0002\u001fo\u0000\u0002\u001fu\u001fv\r\u001fu\u0000\u0002n\u0000\u0001\u0000&\u00000\u001fw\u001fx\r\u001fw\u0000\u0003I\u0000\u0000\u0000'\u00000\u001fy\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001fy\u0000\u0002\u001fz\r\u001fz\u0000\u0002b\u0000\u0000\u0000'\u0000,\u001f{\u001f|\r\u001f{\u0000\u0002n\u0000\u0001\u0000'\u0000*\u001f}\u001f~\r\u001f}\u0000\u0001o\u0000\u0000\u0000(\u0000*\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001f~\u0000\u0000f\u0000\u0000\u0000'\u0000(\r\u001f|\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001fx\u0000\u0000f\u0000\u0000\u0000&\u0000'\u0002\u001fv\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u00003\u0000:\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u00003\u00008\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u00003\u00006\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u00004\u00006\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u00003\u00004\r\u001f\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\blocation\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000=\u0000G\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000>\u0000G\u001f\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000>\u0000C\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000>\u0000A\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000?\u0000A\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000>\u0000?\r\u001f\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000=\u0000>\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000J\u0000Q\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000J\u0000O\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000J\u0000M\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000K\u0000M\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000J\u0000K\r\u001f\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\blocation\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000T\u0000^\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000U\u0000^\u001f\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000U\u0000Z\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000U\u0000X\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000V\u0000X\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000U\u0000V\r\u001f\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0002\u0000\u0000\u0002\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000T\u0000U\u0002\u001f\u0000\u0002\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000a\u0000h\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000a\u0000f\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000a\u0000d\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000a\u0000b\r\u001f\u0000\u0001o\u0000\u0000\u0000d\u0000e\u000b\u0000\u00180\u0000\npathorname\u0000\npathOrName\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\f0\u0000\blocation\u0000\u0000\u0002\u0000\u0000\r\u001fp\u0000\u0001k\u0000\u0000\u0000k\u0000\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000k\u0000r\u001f\u001f\r\u001f\u0000\u0002b\u0000\u0000\u0000k\u0000p\u001f\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000k\u0000n\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000l\u0000n}\u000b}\u0000\t0\u0000\u0005_data\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000k\u0000l\r\u001f\u0000\u0001o\u0000\u0000\u0000n\u0000o|\u000b|\u0000\u00180\u0000\npathorname\u0000\npathOrName\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\f0\u0000\blocation\u0000\u0000\u0002\u001f\u0000\u0002\u001fz\r\u001f\u0000\u0004Z\u0000\u0000\u0000s\u0000\u001f\u001fy\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000s\u0000tx\u000bx\u0000\u00120\u0000\u0007isplist\u0000\u0007isPlist\r\u001f\u0000\u0002n\u0000\u0001\u0000w\u0000}\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000x\u0000}w\u001fv\u000bw\u0000\u000f0\u0000\u000b_make_plist\u0000\u0000\u0002\u001f\u0000\u0002\u001fu\r\u001f\u0000\u0001o\u0000\u0000\u0000x\u0000yt\u000bt\u0000\f0\u0000\blocation\u0000\u0000\u0002u\u0000\u0000\u0002v\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000w\u0000x\u0002y\u0000\u0000\r\u001f\u0000\u0003Q\u0000\u0000\u0000\u0000\u001f\u001f\u001f\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002r\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0002\u0000\u0000s\u001f\u001f\ns\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\f0\u0000\blocation\u0000\u0000\u0006\u001f\u0000\u0003q\u001fp\nq\u0000\u0004\nperm\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0000o\no\u0000\b\u000bboovtrue\u0006p\u0000\u0000\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0001\u0000\u0000m\u001f\u001f\nm\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00050\u0000\u0001f\u0000\u0000\u0006\u001f\u0000\u0003k\u001fj\nk\u0000\u0004\nset2\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0000i\u0003i\u0000\u0000\u0006j\u0000\u0000\u0002\u001f\u0000\u0002\u001fh\r\u001f\u0000\u0003I\u0000\u0002\u0000\u0000g\u001ff\ng\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000e\u000be\u0000\u00050\u0000\u0001f\u0000\u0000\u0002f\u0000\u0000\u0002h\u0000\u0000\r\u001f\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000dcb\nd\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001c\u0000\u0000\u0002b\u0000\u0000\r\u001f\u0000\u0003I\u0000\u0002\u0000\u0000a\u001f`\na\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u001f\u0000\u0002b\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0000\f\u0000t\u0000o\u0000u\u0000c\u0000h\u0000 \r\u001f\u0000\u0002n\u0000\u0000\u0000\u0000\u001f\u001f\r\u001f\u0000\u00011\u0000\u0000\u0000\u0000_\n_\u0000\u0004\nstrq\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000^\u000b^\u0000\f0\u0000\blocation\u0000\u0000\u0002`\u0000\u0000\u0002z\u0000\u0000\u0002\u001fm\u0000\u0002\u001f]\r\u001f\u0000\u0001L\u0000\u0000\u0000\u0000\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\\\u000b\\\u0000\f0\u0000\blocation\u0000\u0000\u0002]\u0000\u0000\u0002\u0000\u0000\u000e\u0019\u0000\u0004\u000f[\u001f\u0000\u0002\u001f\u0001[\u0000\u0000\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000Z\u001f\u001f\u0001Z\u0000\u0000\f\u001f\u0000\u0000\nDescription:\t\t\tThis AppleScript class provides several useful functions for retrieving, parsing, \n\t\t\t\t\tand formatting data to be used with Alfred 2 Workflow.\nAuthor:\t\t\t\tUrsan Razvan\nRevised: \t\t\t24 March 2013\nVersion: \t\t\t0.5\n\u0000\u0002\u0000\u0000\u000e\u001f\u0000\u0001\u001f\u0011\u001f\u0001\u0000\n\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000\t\u0000\t\u0000\t\u0000T\u0000h\u0000i\u0000s\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000 \u0000p\u0000r\u0000o\u0000v\u0000i\u0000d\u0000e\u0000s\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000a\u0000l\u0000 \u0000u\u0000s\u0000e\u0000f\u0000u\u0000l\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000t\u0000r\u0000i\u0000e\u0000v\u0000i\u0000n\u0000g\u0000,\u0000 \u0000p\u0000a\u0000r\u0000s\u0000i\u0000n\u0000g\u0000,\u0000 \u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000a\u0000n\u0000d\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000 \u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u0000\n\u0000A\u0000u\u0000t\u0000h\u0000o\u0000r\u0000:\u0000\t\u0000\t\u0000\t\u0000\t\u0000U\u0000r\u0000s\u0000a\u0000n\u0000 \u0000R\u0000a\u0000z\u0000v\u0000a\u0000n\u0000\n\u0000R\u0000e\u0000v\u0000i\u0000s\u0000e\u0000d\u0000:\u0000 \u0000\t\u0000\t\u0000\t\u00002\u00004\u0000 \u0000M\u0000a\u0000r\u0000c\u0000h\u0000 \u00002\u00000\u00001\u00003\u0000\n\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \u0000\t\u0000\t\u0000\t\u00000\u0000.\u00005\u0000\n\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000YXW\u000bY\u0000\u00100\u0000\fnew_workflow\u0000\u0000\u0002X\u0000\u0000\u0002W\u0000\u0000\r\u001f\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0007\u001f\r\u001f\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006V\u001fU\u000bV\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u0002\u001f\u0000\u0002\u001fT\r\u001f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002S\nS\u0000\u0004\nmsng\u0002T\u0000\u0000\u0002U\u0000\u0000\r\u001f\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000R\u001fQ\u000bR\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u0002\u001f\u0000\u0002\u001fP\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\f0\u0000\bbundleid\u0000\u0000\u0002P\u0000\u0000\u0002Q\u0000\u0000\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0012\u001f\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002h\u0000\u0000\u0000\u0000\u0000\u0007N\u0019\u000bN\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0002\u001f\u0000\u0002\u001fM\r\u001f\u0000\u0001L\u0000\u0000\u0000\b\u0000\u0012\u001f\r\u001f\u0000\u0003I\u0000\u0002\u0000\b\u0000\u0011L\u001f\u001f\nL\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u001f\u0000\u0001o\u0000\u0000\u0000\b\u0000\tK\u000bK\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0006\u001f\u0000\u0003J\u001fI\nJ\u0000\u0004\nplst\r\u001f\u0000\u0001J\u0000\u0000\u0000\n\u0000\r\u001f\u0002\u001f\u0000\u0002\u001fH\r\u001f\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000bG\u000bG\u0000\f0\u0000\bbundleid\u0000\u0000\u0002H\u0000\u0000\u0006I\u0000\u0000\u0002M\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u001f\u001f\r\u001f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000F\u001fE\u000bF\u0000\n0\u0000\u0006q_join\u0000\u0000\u0002\u001f\u0000\u0002\u001f\u001f\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000D\u000bD\u0000\u00050\u0000\u0001l\u0000\u0000\u0002\u001f\u0000\u0002\u001fC\r\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\t0\u0000\u0005delim\u0000\u0000\u0002C\u0000\u0000\u0002E\u0000\u0000\r\u001f\u0000\u0001k\u0000\u0000\u0000\u0000\u0000W\u001f\u0002\u001f\u0000\u0002 \u0000 \u0001\r \u0000\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0016 \u0002 \u0003A@\r \u0002\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\r \u0004 \u0005\r \u0004\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005 \u0006 \u0007\r \u0006\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003 \b \t\r \b\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003?\n?\u0000\u0004\npcls\r \t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001>\u000b>\u0000\u00050\u0000\u0001l\u0000\u0000\r \u0007\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004=\n=\u0000\u0004\nlist\r \u0005\u0000\u0002=\u0000\u0003\u0000\b\u0000\u000b \n \u000b\r \n\u0000\u0001o\u0000\u0000\u0000\b\u0000\t<\u000b<\u0000\u00050\u0000\u0001l\u0000\u0000\r \u000b\u0000\u0001m\u0000\u0000\u0000\t\u0000\n;\n;\u0000\u0004\nmsng\r \u0003\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012 \f\r \f\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011 \r\u000e \r\u0000\u0001 \u000e\u0011 \u000e\u0000\u0000\u0002A\u0000\u0000\u0001@\u0000\u0000\u0002 \u0001\u0000\u0002 \u000f \u0010\r \u000f\u0000\u0005Y\u0000\u0000\u0000\u0017\u0000< \u0011: \u0012 \u00139\r \u0011\u0000\u0004Z\u0000\u0000\u0000$\u00007 \u0014 \u001587\r \u0014\u0000\u0002=\u0000\u0003\u0000$\u0000* \u0016 \u0017\r \u0016\u0000\u0002n\u0000\u0000\u0000$\u0000( \u0018 \u0019\r \u0018\u0000\u00024\u0000\u0000\u0000%\u0000(6 \u001a\n6\u0000\u0004\ncobj\r \u001a\u0000\u0001o\u0000\u0000\u0000&\u0000'5\u000b5\u0000\u00050\u0000\u0001i\u0000\u0000\r \u0019\u0000\u0001o\u0000\u0000\u0000$\u0000%4\u000b4\u0000\u00050\u0000\u0001l\u0000\u0000\r \u0017\u0000\u0001m\u0000\u0000\u0000(\u0000)3\n3\u0000\u0004\nmsng\r \u0015\u0000\u0002r\u0000\u0000\u0000-\u00003 \u001b \u001c\r \u001b\u0000\u0001m\u0000\u0000\u0000-\u0000. \u001d\u000e \u001d\u0000\u0001 \u001e\u0011 \u001e\u0000\u0000\r \u001c\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000 \u001f \r \u001f\u0000\u00024\u0000\u0000\u0000\/\u000022 !\n2\u0000\u0004\ncobj\r !\u0000\u0001o\u0000\u0000\u00000\u000011\u000b1\u0000\u00050\u0000\u0001i\u0000\u0000\r \u0000\u0001o\u0000\u0000\u0000.\u0000\/0\u000b0\u0000\u00050\u0000\u0001l\u0000\u0000\u00028\u0000\u0000\u00017\u0000\u0000\u000b:\u0000\u00050\u0000\u0001i\u0000\u0000\r \u0012\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\/\u0003\/\u0000\u0001\r \u0013\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001f \" #\r \"\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e.\n.\u0000\u0004\nleng\r #\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c-\u000b-\u0000\u00050\u0000\u0001l\u0000\u0000\u00019\u0000\u0000\u0002 \u0010\u0000\u0002 $ %\r $\u0000\u0002r\u0000\u0000\u0000=\u0000B & '\r &\u0000\u0002n\u0000\u0003\u0000=\u0000@ ( )\r (\u0000\u00011\u0000\u0000\u0000>\u0000@,\n,\u0000\u0004\ntxdl\r )\u0000\u00011\u0000\u0000\u0000=\u0000>+\n+\u0000\u0004\nascr\r '\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002 %\u0000\u0002 * +\r *\u0000\u0002r\u0000\u0000\u0000C\u0000H , -\r ,\u0000\u0001o\u0000\u0000\u0000C\u0000D)\u000b)\u0000\t0\u0000\u0005delim\u0000\u0000\r -\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000 . \/\r .\u0000\u00011\u0000\u0000\u0000E\u0000G(\n(\u0000\u0004\ntxdl\r \/\u0000\u00011\u0000\u0000\u0000D\u0000E'\n'\u0000\u0004\nascr\u0002 +\u0000\u0002 0 1\r 0\u0000\u0002r\u0000\u0000\u0000I\u0000N 2 3\r 2\u0000\u0002c\u0000\u0000\u0000I\u0000L 4 5\r 4\u0000\u0001o\u0000\u0000\u0000I\u0000J&\u000b&\u0000\u00050\u0000\u0001l\u0000\u0000\r 5\u0000\u0001m\u0000\u0000\u0000J\u0000K%\n%\u0000\u0004\nctxt\r 3\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\n0\u0000\u0006output\u0000\u0000\u0002 1\u0000\u0002 6 7\r 6\u0000\u0002r\u0000\u0000\u0000O\u0000T 8 9\r 8\u0000\u0001o\u0000\u0000\u0000O\u0000P#\u000b#\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r 9\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000 : ;\r :\u0000\u00011\u0000\u0000\u0000Q\u0000S\"\n\"\u0000\u0004\ntxdl\r ;\u0000\u00011\u0000\u0000\u0000P\u0000Q!\n!\u0000\u0004\nascr\u0002 7\u0000\u0002 < \r <\u0000\u0001L\u0000\u0000\u0000U\u0000W =\r =\u0000\u0001o\u0000\u0000\u0000U\u0000V\u001f\u000b\u001f\u0000\n0\u0000\u0006output\u0000\u0000\u0002 \u0000\u0000\u0002\u001f\u0000\u0002 > ?\r >\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f @ A\r @\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u001e B\u001d\u000b\u001e\u0000\u000b0\u0000\u0007q_split\u0000\u0000\u0002 B\u0000\u0002 C D\r C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000b\u001c\u0000\u00050\u0000\u0001s\u0000\u0000\u0002 D\u0000\u0002 E\u001b\r E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001a\u000b\u001a\u0000\t0\u0000\u0005delim\u0000\u0000\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\r A\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a F\u0002 F\u0000\u0002 G H\r G\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005 I J\r I\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003 K L\r K\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u0019\n\u0019\u0000\u0004\ntxdl\r L\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u0018\n\u0018\u0000\u0004\nascr\r J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u0002 H\u0000\u0002 M N\r M\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\u000b O P\r O\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u0016\u000b\u0016\u0000\t0\u0000\u0005delim\u0000\u0000\r P\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000 Q R\r Q\u0000\u00011\u0000\u0000\u0000\b\u0000\n\u0015\n\u0015\u0000\u0004\ntxdl\r R\u0000\u00011\u0000\u0000\u0000\u0007\u0000\b\u0014\n\u0014\u0000\u0004\nascr\u0002 N\u0000\u0002 S T\r S\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011 U V\r U\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f W X\r W\u0000\u00012\u0000\u0001\u0000\r\u0000\u000f\u0013\n\u0013\u0000\u0004\ncitm\r X\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u0012\u000b\u0012\u0000\u00050\u0000\u0001s\u0000\u0000\r V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\n0\u0000\u0006output\u0000\u0000\u0002 T\u0000\u0002 Y Z\r Y\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017 [ \\\r [\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u0010\u000b\u0010\u0000\u00160\u0000\tolddelims\u0000\toldDelims\r \\\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000 ] ^\r ]\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\u000f\n\u000f\u0000\u0004\ntxdl\r ^\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0014\u000e\n\u000e\u0000\u0004\nascr\u0002 Z\u0000\u0002 _\r\r _\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a `\r `\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\f\u000b\f\u0000\n0\u0000\u0006output\u0000\u0000\u0002\r\u0000\u0000\u0002 ?\u0000\u0002 a b\r a\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013 c d\r c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b e\n\u000b\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0002 e\u0000\u0002 f\t\r f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\t\u0000\u0000\u0002\n\u0000\u0000\r d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e g\u0002 g\u0000\u0002 h i\r h\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b j k\u0007\u0006\r j\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006 l m\r l\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0005 n\u0004\u000b\u0005\u0000\u00110\u0000\rq_path_exists\u0000\u0000\u0002 n\u0000\u0002 o\u0003\r o\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u0002\u000b\u0002\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0003\u0000\u0000\u0002\u0004\u0000\u0000\r m\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r k\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017 p q\r p\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016 r\r r\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015 s\u0001\u0000\r s\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015 t u\r t\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013 v w\r v\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r w\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011 x\r x\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011 y\n\u0000\u0004\nditm\r y\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0001\u0000\u0000\u0001\u0000\u0000\r u\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nfile\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r q\u0000\u0001m\u0000\u0000\u0000\t\u0000\n z\u000f z\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002 i\u0000\u0002 {\r {\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e |\r |\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002 b\u0000\u0002 } ~\r }\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017  \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 \u000b\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e \u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b \r \u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006 \r \u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006 \u000b\u0000\u00110\u0000\rq_path_exists\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r \u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017 \r \u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016 \r \u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015 \r \u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015 \r \u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013 \r \u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r \u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011 \r \u0000\u00024\u0000\u0000\u0000\r\u0000\u0011 \n\u0000\u0004\nditm\r \u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u0001\u0000\u0000\r \u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r \u0000\u0001m\u0000\u0000\u0000\t\u0000\n \u000f \u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?.\u037e]0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u037eO \u0000\u0000\u0000\u0001\u0000\f\u0001;\u0001;\u0001;\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e \r \u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002 ~\u0000\u0002 \r \u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 \u000b\u0000\u00110\u0000\rq_path_exists\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y \u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017 \r \u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e \r \u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\r \u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r \u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f \r \u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f \u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r \u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013 \r \u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y \r \u0000\u0001k\u0000\u0000\u0000\u001b\u0000O \u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0001\u0000\u001b\u0000) \r \u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \r \u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e \r \u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcls\r \u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\r \u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nalis\r \u0000\u0001L\u0000\u0000\u0000#\u0000% \r \u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0000\u0000*\u0000O \r \u0000\u0002E\u0000\u0000\u0000*\u0000- \r \u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\r \u0000\u0001m\u0000\u0000\u0000+\u0000, \u000e \u0000\u0001 \u0011 \u0000\u0002\u0000:\r \u0000\u0001k\u0000\u0000\u00000\u00008 \u0002 \u0000\u0002 \r \u0000\u00024\u0000\u0000\u00000\u00005 \n\u0000\u0004\nalis\r \u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002 \u0000\u0002 \r \u0000\u0001L\u0000\u0000\u00006\u00008 \r \u0000\u0001m\u0000\u0000\u00006\u00007\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002E\u0000\u0000\u0000;\u0000> \r \u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\r \u0000\u0001m\u0000\u0000\u0000<\u0000= \u000e \u0000\u0001 \u0011 \u0000\u0002\u0000\/\u0002 \u0000\u0002 \r \u0000\u0001k\u0000\u0000\u0000A\u0000J \u0002 \u0000\u0002 \r \u0000\u0002c\u0000\u0000\u0000A\u0000G \r \u0000\u00024\u0000\u0000\u0000A\u0000E \n\u0000\u0004\npsxf\r \u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\r \u0000\u0001m\u0000\u0000\u0000E\u0000F\n\u0000\u0004\nalis\u0002 \u0000\u0002 \r \u0000\u0001L\u0000\u0000\u0000H\u0000J \r \u0000\u0001m\u0000\u0000\u0000H\u0000I\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001L\u0000\u0000\u0000M\u0000O \r \u0000\u0001m\u0000\u0000\u0000M\u0000N\n\u0000\b\u000bboovfals\u0002\u0000\u0000\r \u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000 \n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001L\u0000\u0000\u0000W\u0000Y \r \u0000\u0001m\u0000\u0000\u0000W\u0000X\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 \u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018 \u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\f \r \u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r \u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r \u0000\u0001L\u0000\u0000\u0000\u0006\u0000\b \r \u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001L\u0000\u0000\u0000\r\u0000\u0018 \r \u0000\u0002=\u0000\u0003\u0000\r\u0000\u0017 \r \u0000\u0002n\u0000\u0000\u0000\r\u0000\u0015 \r \u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nleng\r \u0000\u0003l\u0000\u0005\u0000\r\u0000\u0013 \r \u0000\u0002n\u0000\u0001\u0000\r\u0000\u0013 \r \u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0013 \u000b\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0000f\u0000\u0000\u0000\r\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\r \u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0000\u0002\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0002i\u0000\u0000\u0000 \u0000# \r \u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000 \u000b\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002 \u0000\u0002 \r \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r \u0000\u0001k\u0000\u0000\u0000\u0000\u0000 \u0002 \u0000\u0002 \r \u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \r \u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017!\u0000!\u0001\r!\u0000\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f!\u0002!\u0003\r!\u0002\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005!\u0004!\u0005\r!\u0004\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003!\u0006!\u0007\r!\u0006\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\npcls\r!\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\u0005\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0004\nctxt\r!\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r!\b!\t\r!\b\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b!\n!\u000b\r!\n\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npcls\r!\u000b\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\t\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\u0004\nTEXT\r!\u0001\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015!\f!\r\r!\f\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\r\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nmsng\r \u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c!\u000e\r!\u000e\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002 \u0000\u0002!\u000f!\u0010\r!\u000f\u0000\u0004Z\u0000\u0001\u0000!\u0000-!\u0011!\u0012\r!\u0011\u0000\u0002=\u0000\u0003\u0000!\u0000$!\u0013!\u0014\r!\u0013\u0000\u0001o\u0000\u0000\u0000!\u0000\"\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\u0014\u0000\u0001m\u0000\u0000\u0000\"\u0000#!\u0015\u000e!\u0015\u0000\u0001!\u0016\u0011!\u0016\u0000\u0000\r!\u0012\u0000\u0001L\u0000\u0000\u0000'\u0000)!\u0017\r!\u0017\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002!\u0010\u0000\u0002!\u0018!\u0019\r!\u0018\u0000\u0002V\u0000\u0000\u0000.\u0000W!\u001a!\u001b\r!\u001a\u0000\u0003Q\u0000\u0000\u00006\u0000R!\u001c!\u001d!\u001e\r!\u001c\u0000\u0002r\u0000\u0000\u00009\u0000H!\u001f! \r!\u001f\u0000\u0002c\u0000\u0000\u00009\u0000F!!!\"\r!!\u0000\u0002n\u0000\u0000\u00009\u0000D!#!$\r!#\u0000\u00037\u0001\u0000\u0000:\u0000D!%!&\n\u0000\u0004\ncobj\r!%\u0000\u0001m\u0000\u0000\u0000>\u0000@\u0003\u0000\u0002\r!&\u0000\u0001m\u0000\u0000\u0000A\u0000C\u0003\r!$\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\"\u0000\u0001m\u0000\u0000\u0000D\u0000E\n\u0000\u0004\nctxt\r! \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!\u001d\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000!'\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r!'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\r!\u001e\u0000\u0001L\u0000\u0000\u0000P\u0000R!(\r!(\u0000\u0001m\u0000\u0000\u0000P\u0000Q!)\u000e!)\u0000\u0001!*\u0011!*\u0000\u0000\r!\u001b\u0000\u0002C\u0001\u0000\u00002\u00005!+!,\r!+\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!,\u0000\u0001m\u0000\u0000\u00003\u00004!-\u000e!-\u0000\u0001!.\u0011!.\u0000\u0002\u0000 \u0002!\u0019\u0000\u0002!\/!0\r!\/\u0000\u0002V\u0000\u0000\u0000X\u0000!1!2\r!1\u0000\u0003Q\u0000\u0000\u0000`\u0000|!3!4!5\r!3\u0000\u0002r\u0000\u0000\u0000c\u0000r!6!7\r!6\u0000\u0002c\u0000\u0000\u0000c\u0000p!8!9\r!8\u0000\u0002n\u0000\u0000\u0000c\u0000n!:!;\r!:\u0000\u00037\u0001\u0000\u0000d\u0000n!<!=\n\u0000\u0004\ncobj\r!<\u0000\u0001m\u0000\u0000\u0000h\u0000j\u0003\u0000\u0001\r!=\u0000\u0001m\u0000\u0000\u0000k\u0000m\u0003\r!;\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!9\u0000\u0001m\u0000\u0000\u0000n\u0000o\n\u0000\u0004\nctxt\r!7\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!4\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r!5\u0000\u0001L\u0000\u0000\u0000z\u0000|!>\r!>\u0000\u0001m\u0000\u0000\u0000z\u0000{!?\u000e!?\u0000\u0001!@\u0011!@\u0000\u0000\r!2\u0000\u0002D\u0000\u0000\u0000\\\u0000_!A!B\r!A\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\r!B\u0000\u0001m\u0000\u0000\u0000]\u0000^!C\u000e!C\u0000\u0001!D\u0011!D\u0000\u0002\u0000 \u0002!0\u0000\u0002!E\r!E\u0000\u0001L\u0000\u0000\u0000\u0000!F\r!F\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0002 \u0000\u0002!G!H\r!G\u0000\u0002i\u0000\u0000\u0000$\u0000'!I!J\r!I\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000!K\u000b\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u0002!K\u0000\u0002!L\r!L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r!J\u0000\u0001k\u0000\u0000\u0000\u0000\u0000h!M\u0002!M\u0000\u0002!N!O\r!N\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0016!P!Q~}\r!P\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\r!R!S\r!R\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003!T!U\r!T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001|\u000b|\u0000\u00070\u0000\u0003lst\u0000\u0000\r!U\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002{\n{\u0000\u0004\nmsng\r!S\u0000\u0002>\u0001\u0000\u0000\u0006\u0000\u000b!V!W\r!V\u0000\u0002n\u0000\u0000\u0000\u0006\u0000\t!X!Y\r!X\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\tz\nz\u0000\u0004\npcls\r!Y\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007y\u000by\u0000\u00070\u0000\u0003lst\u0000\u0000\r!W\u0000\u0001m\u0000\u0000\u0000\t\u0000\nx\nx\u0000\u0004\nlist\r!Q\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012!Z\r!Z\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011w\u000bw\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002~\u0000\u0000\u0001}\u0000\u0000\u0002!O\u0000\u0002![!\\\r![\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001b!]!^\r!]\u0000\u0001J\u0000\u0000\u0000\u0017\u0000\u0019v\u0002v\u0000\u0000\r!^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00050\u0000\u0001l\u0000\u0000\u0002!\\\u0000\u0002!_!`\r!_\u0000\u0003X\u0000\u0000\u0000\u001c\u0000e!at!b\r!a\u0000\u0001k\u0000\u0000\u0000,\u0000`!c\u0002!c\u0000\u0002!d!e\r!d\u0000\u0002r\u0000\u0000\u0000,\u00001!f!g\r!f\u0000\u0002n\u0000\u0000\u0000,\u0000\/!h!i\r!h\u0000\u00011\u0000\u0000\u0000-\u0000\/s\ns\u0000\u0004\npcnt\r!i\u0000\u0001o\u0000\u0000\u0000,\u0000-r\u000br\u0000\f0\u0000\u0004lref\u0000\u0004lRef\r!g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u00050\u0000\u0001i\u0000\u0000\u0002!e\u0000\u0002!jp\r!j\u0000\u0004Z\u0000\u0000\u00002\u0000`!k!lon\r!k\u0000\u0002>\u0001\u0000\u00002\u00005!m!n\r!m\u0000\u0001o\u0000\u0000\u00002\u00003m\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r!n\u0000\u0001m\u0000\u0000\u00003\u00004l\nl\u0000\u0004\nmsng\r!l\u0000\u0004Z\u0000\u0000\u00008\u0000\\!o!p!qk\r!o\u0000\u0002>\u0001\u0000\u00008\u0000=!r!s\r!r\u0000\u0002n\u0000\u0000\u00008\u0000;!t!u\r!t\u0000\u0001m\u0000\u0000\u00009\u0000;j\nj\u0000\u0004\npcls\r!u\u0000\u0001o\u0000\u0000\u00008\u00009i\u000bi\u0000\u00050\u0000\u0001i\u0000\u0000\r!s\u0000\u0001m\u0000\u0000\u0000;\u0000<h\nh\u0000\u0004\nlist\r!p\u0000\u0002r\u0000\u0000\u0000@\u0000D!v!w\r!v\u0000\u0001o\u0000\u0000\u0000@\u0000Ag\u000bg\u0000\u00050\u0000\u0001i\u0000\u0000\r!w\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000!x!y\r!x\u0000\u0000;\u0000\u0000\u0000B\u0000C\r!y\u0000\u0001o\u0000\u0000\u0000A\u0000Bf\u000bf\u0000\u00050\u0000\u0001l\u0000\u0000\u0002!q\u0000\u0002!z!{\r!z\u0000\u0002=\u0000\u0003\u0000G\u0000L!|!}\r!|\u0000\u0002n\u0000\u0000\u0000G\u0000J!~!\r!~\u0000\u0001m\u0000\u0000\u0000H\u0000Je\ne\u0000\u0004\npcls\r!\u0000\u0001o\u0000\u0000\u0000G\u0000Hd\u000bd\u0000\u00050\u0000\u0001i\u0000\u0000\r!}\u0000\u0001m\u0000\u0000\u0000J\u0000Kc\nc\u0000\u0004\nlist\u0002!{\u0000\u0002!b\r!\u0000\u0002r\u0000\u0000\u0000O\u0000X!!\r!\u0000\u0002n\u0000\u0001\u0000O\u0000U!!\r!\u0000\u0003I\u0000\u0000\u0000P\u0000Ua!`\u000ba\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u0002!\u0000\u0002!_\r!\u0000\u0001o\u0000\u0000\u0000P\u0000Q^\u000b^\u0000\u00050\u0000\u0001i\u0000\u0000\u0002_\u0000\u0000\u0002`\u0000\u0000\r!\u0000\u0000f\u0000\u0000\u0000O\u0000P\r!\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000!!\r!\u0000\u0000;\u0000\u0000\u0000V\u0000W\r!\u0000\u0001o\u0000\u0000\u0000U\u0000V]\u000b]\u0000\u00050\u0000\u0001l\u0000\u0000\u0002b\u0000\u0000\u0001k\u0000\u0000\u0002o\u0000\u0000\u0001n\u0000\u0000\u0002p\u0000\u0000\u000bt\u0000\f0\u0000\u0004lref\u0000\u0004lRef\r!b\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \\\u000b\\\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002!`\u0000\u0002![\r!\u0000\u0001L\u0000\u0000\u0000f\u0000h!\r!\u0000\u0001o\u0000\u0000\u0000f\u0000gZ\u000bZ\u0000\u00050\u0000\u0001l\u0000\u0000\u0002[\u0000\u0000\u0002!H\u0000\u0002!!\r!\u0000\u0002i\u0000\u0000\u0000(\u0000+!!\r!\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000Y!X\u000bY\u0000\f0\u0000\bq_encode\u0000\u0000\u0002!\u0000\u0002!W\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\u00070\u0000\u0003str\u0000\u0000\u0002W\u0000\u0000\u0002X\u0000\u0000\r!\u0000\u0001k\u0000\u0000\u0000\u0000\u0000!\u0002!\u0000\u0002!!\r!\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0019!!UT\r!\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0010!!\r!\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005!!\r!\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003!!\r!\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003S\nS\u0000\u0004\npcls\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001R\u000bR\u0000\u00070\u0000\u0003str\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004Q\nQ\u0000\u0004\nctxt\r!\u0000\u0002n\u0000\u0001\u0000\b\u0000\u000e!!\r!\u0000\u0003I\u0000\u0000\u0000\t\u0000\u000eP!O\u000bP\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u0002!\u0000\u0002!N\r!\u0000\u0001o\u0000\u0000\u0000\t\u0000\nM\u000bM\u0000\u00070\u0000\u0003str\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r!\u0000\u0000f\u0000\u0000\u0000\b\u0000\t\r!\u0000\u0001L\u0000\u0000\u0000\u0013\u0000\u0015!\r!\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014L\u000bL\u0000\u00070\u0000\u0003str\u0000\u0000\u0002U\u0000\u0000\u0001T\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001d!!\r!\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b!\u000e!\u0000\u0001!\u0011!\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00050\u0000\u0001s\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0003X\u0000\u0000\u0000\u001e\u0000!J!\r!\u0000\u0001k\u0000\u0000\u0000.\u0000!\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000.\u00003!!\r!\u0000\u0002n\u0000\u0000\u0000.\u00001!!\r!\u0000\u00011\u0000\u0000\u0000\/\u00001I\nI\u0000\u0004\npcnt\r!\u0000\u0001o\u0000\u0000\u0000.\u0000\/H\u000bH\u0000\f0\u0000\u0004sref\u0000\u0004sRef\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\u00050\u0000\u0001c\u0000\u0000\u0002!\u0000\u0002!F\r!\u0000\u0004Z\u0000\u0000\u00004\u0000!!E!\r!\u0000\u0002E\u0000\u0001\u00004\u0000>!!\r!\u0000\u0001J\u0000\u0000\u00004\u0000<!\u0002!\u0000\u0002!!\r!\u0000\u0001m\u0000\u0000\u00004\u00005!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000&\u0002!\u0000\u0002!!\r!\u0000\u0001m\u0000\u0000\u00005\u00006!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000'\u0002!\u0000\u0002!!\r!\u0000\u0001m\u0000\u0000\u00006\u00007!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000\"\u0002!\u0000\u0002!!\r!\u0000\u0001m\u0000\u0000\u00007\u00008!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000<\u0002!\u0000\u0002!!\r!\u0000\u0001m\u0000\u0000\u00008\u00009!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000>\u0002!\u0000\u0002!D\r!\u0000\u00011\u0000\u0000\u00009\u0000:C\nC\u0000\u0004\ntab \u0002D\u0000\u0000\r!\u0000\u0001o\u0000\u0000\u0000<\u0000=B\u000bB\u0000\u00050\u0000\u0001c\u0000\u0000\r!\u0000\u0004Z\u0000\u0000\u0000A\u0000!!!A\r!\u0000\u0002=\u0000\u0003\u0000A\u0000F!!\r!\u0000\u0001o\u0000\u0000\u0000A\u0000B@\u000b@\u0000\u00050\u0000\u0001c\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000B\u0000E!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000&\r!\u0000\u0002r\u0000\u0000\u0000I\u0000P!!\r!\u0000\u0002b\u0000\u0000\u0000I\u0000N!!\r!\u0000\u0001o\u0000\u0000\u0000I\u0000J?\u000b?\u0000\u00050\u0000\u0001s\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000J\u0000M!\u000e!\u0000\u0001!\u0011!\u0000\n\u0000&\u0000a\u0000m\u0000p\u0000;\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000>\u000b>\u0000\u00050\u0000\u0001s\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002=\u0000\u0003\u0000S\u0000X!!\r!\u0000\u0001o\u0000\u0000\u0000S\u0000T=\u000b=\u0000\u00050\u0000\u0001c\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000T\u0000W!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000'\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000[\u0000b!!\r!\u0000\u0002b\u0000\u0000\u0000[\u0000`!!\r!\u0000\u0001o\u0000\u0000\u0000[\u0000\\<\u000b<\u0000\u00050\u0000\u0001s\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000\\\u0000_!\u000e!\u0000\u0001!\u0011!\u0000\f\u0000&\u0000a\u0000p\u0000o\u0000s\u0000;\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u00050\u0000\u0001s\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002=\u0000\u0003\u0000e\u0000j!!\r!\u0000\u0001o\u0000\u0000\u0000e\u0000f:\u000b:\u0000\u00050\u0000\u0001c\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000f\u0000i!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000\"\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000m\u0000t!!\r!\u0000\u0002b\u0000\u0000\u0000m\u0000r!!\r!\u0000\u0001o\u0000\u0000\u0000m\u0000n9\u000b9\u0000\u00050\u0000\u0001s\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000n\u0000q!\u000e!\u0000\u0001!\u0011!\u0000\f\u0000&\u0000q\u0000u\u0000o\u0000t\u0000;\r!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00008\u000b8\u0000\u00050\u0000\u0001s\u0000\u0000\u0002!\u0000\u0002!!\r!\u0000\u0002=\u0000\u0003\u0000w\u0000|!!\r!\u0000\u0001o\u0000\u0000\u0000w\u0000x7\u000b7\u0000\u00050\u0000\u0001c\u0000\u0000\r!\u0000\u0001m\u0000\u0000\u0000x\u0000{!\u000e!\u0000\u0001!\u0011!\u0000\u0002\u0000<\u0002!\u0000\u0002!!\r!\u0000\u0002r\u0000\u0000\u0000\u0000!\"\u0000\r!\u0000\u0002b\u0000\u0000\u0000\u0000\"\u0001\"\u0002\r\"\u0001\u0000\u0001o\u0000\u0000\u0000\u00006\u000b6\u0000\u00050\u0000\u0001s\u0000\u0000\r\"\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\"\u0003\u000e\"\u0003\u0000\u0001\"\u0004\u0011\"\u0004\u0000\b\u0000&\u0000l\u0000t\u0000;\r\"\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00050\u0000\u0001s\u0000\u0000\u0002!\u0000\u0002\"\u0005\"\u0006\r\"\u0005\u0000\u0002=\u0000\u0003\u0000\u0000\"\u0007\"\b\r\"\u0007\u0000\u0001o\u0000\u0000\u0000\u00004\u000b4\u0000\u00050\u0000\u0001c\u0000\u0000\r\"\b\u0000\u0001m\u0000\u0000\u0000\u0000\"\t\u000e\"\t\u0000\u0001\"\n\u0011\"\n\u0000\u0002\u0000>\u0002\"\u0006\u0000\u0002\"\u000b\"\f\r\"\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\"\r\"\u000e\r\"\r\u0000\u0002b\u0000\u0000\u0000\u0000\"\u000f\"\u0010\r\"\u000f\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00050\u0000\u0001s\u0000\u0000\r\"\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\"\u0011\u000e\"\u0011\u0000\u0001\"\u0012\u0011\"\u0012\u0000\b\u0000&\u0000g\u0000t\u0000;\r\"\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\"\f\u0000\u0002\"\u0013\"\u0014\r\"\u0013\u0000\u0002=\u0000\u0003\u0000\u0000\"\u0015\"\u0016\r\"\u0015\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00050\u0000\u0001c\u0000\u0000\r\"\u0016\u0000\u00011\u0000\u0000\u0000\u00000\n0\u0000\u0004\ntab \u0002\"\u0014\u0000\u0002\"\u0017\/\r\"\u0017\u0000\u0002r\u0000\u0000\u0000\u0000\"\u0018\"\u0019\r\"\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\"\u001a\"\u001b\r\"\u001a\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u00050\u0000\u0001s\u0000\u0000\r\"\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\"\u001c\u000e\"\u001c\u0000\u0001\"\u001d\u0011\"\u001d\u0000\f\u0000&\u0000#\u00000\u00000\u00009\u0000;\r\"\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\/\u0000\u0000\u0001A\u0000\u0000\u0002E\u0000\u0000\r!\u0000\u0002r\u0000\u0000\u0000\u0000\"\u001e\"\u001f\r\"\u001e\u0000\u0002b\u0000\u0000\u0000\u0000\" \"!\r\" \u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00050\u0000\u0001s\u0000\u0000\r\"!\u0000\u0001o\u0000\u0000\u0000\u0000+\u000b+\u0000\u00050\u0000\u0001c\u0000\u0000\r\"\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\u00050\u0000\u0001s\u0000\u0000\u0002F\u0000\u0000\u000bJ\u0000\f0\u0000\u0004sref\u0000\u0004sRef\r!\u0000\u0001o\u0000\u0000\u0000!\u0000\")\u000b)\u0000\u00070\u0000\u0003str\u0000\u0000\u0002!\u0000\u0002\"\"(\r\"\"\u0000\u0001L\u0000\u0000\u0000\u0000\"#\r\"#\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u00050\u0000\u0001s\u0000\u0000\u0002(\u0000\u0000\u0002!\u0000\u0002\"$\"%\r\"$\u0000\u0002i\u0000\u0000\u0000,\u0000\/\"&\"'\r\"&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000&\"(%\u000b&\u0000\u00160\u0000\u0012q_date_to_unixdate\u0000\u0000\u0002\"(\u0000\u0002\")$\r\")\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002$\u0000\u0000\u0002%\u0000\u0000\r\"'\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"*\u0002\"*\u0000\u0002\"+\",\r\"+\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0014\"-\".\r\"-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\"\u000b\"\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\".\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0000\"\/\u0006\"\/\u0000\u0003!\"0\"1\n!\u0000\u0004\nday \r\"0\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\u00050\u0000\u0001d\u0000\u0000\u0006\"1\u0000\u0003\u001f\"2\"3\n\u001f\u0000\u0004\nyear\r\"2\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u000b\u001e\u0000\u00050\u0000\u0001y\u0000\u0000\u0006\"3\u0000\u0003\u001d\"4\u001c\n\u001d\u0000\u0004\ntime\r\"4\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u00050\u0000\u0001t\u0000\u0000\u0006\u001c\u0000\u0000\u0002\",\u0000\u0002\"5\"6\r\"5\u0000\u0002s\u0000\u0000\u0000\u0015\u0000\u0019\"7\"8\r\"7\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u001a\u000b\u001a\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\"8\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\"6\u0000\u0002\"9\":\r\"9\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001f\";\"<\r\";\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0018\n\u0018\u0000\u0004\njan \r\"<\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\"=\">\r\"=\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\u0017\n\u0017\u0000\u0004\nmnth\r\">\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u0016\u000b\u0016\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\":\u0000\u0002\"?\"@\r\"?\u0000\u0002r\u0000\u0000\u0000 \u0000)\"A\"B\r\"A\u0000\u0002_\u0000\u0000\u0000 \u0000'\"C\"D\r\"C\u0000\u0003l\u0000\u0005\u0000 \u0000%\"E\u0015\u0014\r\"E\u0000\u0002\\\u0000\u0000\u0000 \u0000%\"F\"G\r\"F\u0000\u0002\\\u0000\u0000\u0000 \u0000#\"H\"I\r\"H\u0000\u0001o\u0000\u0000\u0000 \u0000!\u0013\u000b\u0013\u0000\u00050\u0000\u0001b\u0000\u0000\r\"I\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0012\u0007\u0012\u0000\u0004\u0000&%\r\"G\u0000\u0001o\u0000\u0000\u0000#\u0000$\u0011\u000b\u0011\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\r\"D\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0010\u0007\u0010\u0000\u0004`\r\"B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u000b\u000f\u0000\u00050\u0000\u0001m\u0000\u0000\u0002\"@\u0000\u0002\"J\"K\r\"J\u0000\u0002O\u0000\u0000\u0000*\u0000d\"L\"M\r\"L\u0000\u0002r\u0000\u0000\u00008\u0000c\"N\"O\r\"N\u0000\u0002b\u0000\u0000\u00008\u0000a\"P\"Q\r\"P\u0000\u0002b\u0000\u0000\u00008\u0000S\"R\"S\r\"R\u0000\u0002b\u0000\u0000\u00008\u0000Q\"T\"U\r\"T\u0000\u0002b\u0000\u0000\u00008\u0000E\"V\"W\r\"V\u0000\u00037\u0001\u0000\u00008\u0000C\u000e\"X\"Y\n\u000e\u0000\u0004\nctxt\r\"X\u0000\u0001m\u0000\u0000\u0000=\u0000?\r\u0003\r\u0000\u0005\r\"Y\u0000\u0001m\u0000\u0000\u0000@\u0000B\f\u0003\f\u0000\u0006\r\"W\u0000\u0001m\u0000\u0000\u0000C\u0000D\"Z\u000e\"Z\u0000\u0001\"[\u0011\"[\u0000\u0002\u0000\/\r\"U\u0000\u00037\u0001\u0000\u0000E\u0000P\u000b\"\\\"]\n\u000b\u0000\u0004\nctxt\r\"\\\u0000\u0001m\u0000\u0000\u0000J\u0000L\n\u0003\n\u0000\u0007\r\"]\u0000\u0001m\u0000\u0000\u0000M\u0000O\t\u0003\t\u0000\b\r\"S\u0000\u0001m\u0000\u0000\u0000Q\u0000R\"^\u000e\"^\u0000\u0001\"_\u0011\"_\u0000\u0002\u0000\/\r\"Q\u0000\u00037\u0001\u0000\u0000S\u0000`\b\"`\"a\n\b\u0000\u0004\nctxt\r\"`\u0000\u0001m\u0000\u0000\u0000X\u0000Z\u0007\u0003\u0007\u0000\u0001\r\"a\u0000\u0001m\u0000\u0000\u0000[\u0000_\u0006\u0003\u0006\u0000\u0004\r\"O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000\u00140\u0000\bunixdate\u0000\bUnixDate\r\"M\u0000\u0002c\u0000\u0000\u0000*\u00005\"b\"c\r\"b\u0000\u0003l\u0000\u0005\u0000*\u00003\"d\u0004\u0003\r\"d\u0000\u0002[\u0000\u0000\u0000*\u00003\"e\"f\r\"e\u0000\u0002[\u0000\u0000\u0000*\u00001\"g\"h\r\"g\u0000\u0002]\u0000\u0000\u0000*\u0000-\"i\"j\r\"i\u0000\u0001o\u0000\u0000\u0000*\u0000+\u0002\u000b\u0002\u0000\u00050\u0000\u0001y\u0000\u0000\r\"j\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\u0003\u0001'\u0010\r\"h\u0000\u0002]\u0000\u0000\u0000-\u00000\"k\"l\r\"k\u0000\u0001o\u0000\u0000\u0000-\u0000.\u0000\u000b\u0000\u0000\u00050\u0000\u0001m\u0000\u0000\r\"l\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000d\r\"f\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00050\u0000\u0001d\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\r\"c\u0000\u0001m\u0000\u0000\u00003\u00004\n\u0000\u0004\nctxt\u0002\"K\u0000\u0002\"m\"n\r\"m\u0000\u0002r\u0000\u0000\u0000e\u0000l\"o\"p\r\"o\u0000\u0002_\u0000\u0000\u0000e\u0000j\"q\"r\r\"q\u0000\u0001o\u0000\u0000\u0000e\u0000f\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\r\"r\u0000\u00011\u0000\u0000\u0000f\u0000i\n\u0000\u0004\nhour\r\"p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003h24\u0000\u0000\u0002\"n\u0000\u0002\"s\"t\r\"s\u0000\u0002r\u0000\u0000\u0000m\u0000z\"u\"v\r\"u\u0000\u0002[\u0000\u0000\u0000m\u0000x\"w\"x\r\"w\u0000\u0002`\u0000\u0000\u0000m\u0000v\"y\"z\r\"y\u0000\u0003l\u0000\u0005\u0000m\u0000r\"{\r\"{\u0000\u0002[\u0000\u0000\u0000m\u0000r\"|\"}\r\"|\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u00070\u0000\u0003h24\u0000\u0000\r\"}\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0003\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\r\"z\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0003\u0000\f\r\"x\u0000\u0001m\u0000\u0000\u0000v\u0000w\u0003\u0000\u0001\r\"v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003h12\u0000\u0000\u0002\"t\u0000\u0002\"~\"\r\"~\u0000\u0004Z\u0000\u0000\u0000{\u0000\"\"\"\r\"\u0000\u0003l\u0000\u0005\u0000{\u0000~\"\r\"\u0000\u0002=\u0000\u0000\u0000{\u0000~\"\"\r\"\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000\u00070\u0000\u0003h12\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00070\u0000\u0003h24\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\"\u0000\u0002r\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0006\u0000 \u0000A\u0000M\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004ampm\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0002r\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0006\u0000 \u0000P\u0000M\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004ampm\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002_\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002`\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\r\"\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nhour\r\"\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nmin \r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003min\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002`\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\r\"\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nmin \r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002O\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u00037\u0001\u0000\u0000\u0000\"\"\n\u0000\u0004\nctxt\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0003\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0002\u0000:\r\"\u0000\u00037\u0001\u0000\u0000\u0000\"\"\n\u0000\u0004\nctxt\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0004\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0005\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0002\u0000:\r\"\u0000\u00037\u0001\u0000\u0000\u0000\"\"\n\u0000\u0004\nctxt\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0006\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0007\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004ampm\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\r\"\u0000\u0002c\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0003l\u0000\u0005\u0000\u0000\"\r\"\u0000\u0002[\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002[\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002[\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0007\u0000\u0004\u0000\u000fB@\r\"\u0000\u0002]\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003h12\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003'\u0010\r\"\u0000\u0002]\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003min\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000d\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nctxt\u0002\"\u0000\u0002\"\r\"\u0000\u0001L\u0000\u0000\u0000\u0000\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u0000\"\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bunixdate\u0000\bUnixDate\r\"\u0000\u0001m\u0000\u0000\u0000\u0000\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0002\u0000 \r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0002\u0000\u0000\u0002\"%\u0000\u0002\"\"\r\"\u0000\u0002i\u0000\u0000\u00000\u00003\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\u0000\u00160\u0000\u0012q_unixdate_to_date\u0000\u0000\u0002\"\u0000\u0002\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btheunixdate\u0000\u000btheUnixDate\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0006\"\r\"\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0005\"\n\u0000\u0004\nldt \r\"\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\u001a0\u0000\u000btheunixdate\u0000\u000btheUnixDate\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002i\u0000\u0000\u00004\u00007\"\"\r\"\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\"\u000b\u0000\u00170\u0000\u0013q_timestamp_to_date\u0000\u0000\u0002\"\u0000\u0002\"\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0001k\u0000\u0000\u0000\u0000\u0000|\"\u0002\"\u0000\u0002\"\"\r\"\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\"\"\r\"\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\u0005\"\"\r\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\"\"\r\"\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\r\r\"\u0000\u0002r\u0000\u0000\u0000\b\u0000\u0017\"\"\r\"\u0000\u0002c\u0000\u0000\u0000\b\u0000\u0015\"\"\r\"\u0000\u0002n\u0000\u0000\u0000\b\u0000\u0013\"\"\r\"\u0000\u00037\u0001\u0000\u0000\t\u0000\u0013\"\"\n\u0000\u0004\ncha \r\"\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000f\u0003\u0000\u0001\r\"\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0012\u0003\r\"\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nctxt\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000\u001c\u0000'\"\"\r\"\u0000\u0003I\u0000\u0002\u0000\u001c\u0000%\"\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000!\"\"\r\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\"\"\r\"\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\"\u000e\"\u0000\u0001\"\u0011\"\u0000\u0010\u0000d\u0000a\u0000t\u0000e\u0000 \u0000-\u0000r\u0000 \r\"\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\r\"\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \"\u000e\"\u0000\u0001\"\u0011\"\u0000*\u0000 \u0000\"\u0000+\u0000%\u0000Y\u0000 \u0000%\u0000m\u0000 \u0000%\u0000d\u0000 \u0000%\u0000H\u0000 \u0000%\u0000M\u0000 \u0000%\u0000S\u0000\"\u0002\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u0000(\u0000\/\"\"\r\"\u0000\u0003I\u0000\u0002\u0000(\u0000-\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002\"\u0000\u0002\"\"\r\"\u0000\u0002r\u0000\u0000\u00000\u0000:\"\"\r\"\u0000\u0003l\u0000\u0005\u00000\u00006\"\r\"\u0000\u0002c\u0000\u0000\u00000\u00006#\u0000#\u0001\r#\u0000\u0000\u0002n\u0000\u0000\u00000\u00004#\u0002#\u0003\r#\u0002\u0000\u00024\u0000\u0000\u00001\u00004#\u0004\n\u0000\u0004\ncwor\r#\u0004\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\r#\u0003\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#\u0001\u0000\u0001m\u0000\u0000\u00004\u00005\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#\u0005#\u0006\r#\u0005\u0000\u00011\u0000\u0000\u00007\u00009\n\u0000\u0004\nyear\r#\u0006\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002\"\u0000\u0002#\u0007#\b\r#\u0007\u0000\u0002r\u0000\u0000\u0000;\u0000E#\t#\n\r#\t\u0000\u0003l\u0000\u0005\u0000;\u0000A#\u000b\r#\u000b\u0000\u0002c\u0000\u0000\u0000;\u0000A#\f#\r\r#\f\u0000\u0002n\u0000\u0000\u0000;\u0000?#\u000e#\u000f\r#\u000e\u0000\u00024\u0000\u0000\u0000<\u0000?#\u0010\n\u0000\u0004\ncwor\r#\u0010\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0002\r#\u000f\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#\r\u0000\u0001m\u0000\u0000\u0000?\u0000@\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r#\n\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#\u0011#\u0012\r#\u0011\u0000\u0001m\u0000\u0000\u0000B\u0000D\n\u0000\u0004\nmnth\r#\u0012\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002#\b\u0000\u0002#\u0013#\u0014\r#\u0013\u0000\u0002r\u0000\u0000\u0000F\u0000P#\u0015#\u0016\r#\u0015\u0000\u0003l\u0000\u0005\u0000F\u0000L#\u0017\r#\u0017\u0000\u0002c\u0000\u0000\u0000F\u0000L#\u0018#\u0019\r#\u0018\u0000\u0002n\u0000\u0000\u0000F\u0000J#\u001a#\u001b\r#\u001a\u0000\u00024\u0000\u0000\u0000G\u0000J#\u001c\n\u0000\u0004\ncwor\r#\u001c\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0003\u0000\u0003\r#\u001b\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#\u0019\u0000\u0001m\u0000\u0000\u0000J\u0000K\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r#\u0016\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#\u001d#\u001e\r#\u001d\u0000\u00011\u0000\u0000\u0000M\u0000O\n\u0000\u0004\nday \r#\u001e\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002#\u0014\u0000\u0002#\u001f# \r#\u001f\u0000\u0002r\u0000\u0000\u0000Q\u0000[#!#\"\r#!\u0000\u0003l\u0000\u0005\u0000Q\u0000W##\r##\u0000\u0002c\u0000\u0000\u0000Q\u0000W#$#%\r#$\u0000\u0002n\u0000\u0000\u0000Q\u0000U#&#'\r#&\u0000\u00024\u0000\u0000\u0000R\u0000U#(\n\u0000\u0004\ncwor\r#(\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0004\r#'\u0000\u0001o\u0000\u0000\u0000Q\u0000R\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#%\u0000\u0001m\u0000\u0000\u0000U\u0000V\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r#\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#)#*\r#)\u0000\u00011\u0000\u0000\u0000X\u0000Z\n\u0000\u0004\nhour\r#*\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002# \u0000\u0002#+#,\r#+\u0000\u0002r\u0000\u0000\u0000\\\u0000j#-#.\r#-\u0000\u0003l\u0000\u0005\u0000\\\u0000d#\/\r#\/\u0000\u0002c\u0000\u0000\u0000\\\u0000d#0#1\r#0\u0000\u0002n\u0000\u0000\u0000\\\u0000b#2#3\r#2\u0000\u00024\u0000\u0000\u0000]\u0000b#4\n\u0000\u0004\ncwor\r#4\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0003\u0000\u0005\r#3\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#1\u0000\u0001m\u0000\u0000\u0000b\u0000c\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r#.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#5#6\r#5\u0000\u00011\u0000\u0000\u0000e\u0000i\n\u0000\u0004\nmin \r#6\u0000\u0001o\u0000\u0000\u0000d\u0000e\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002#,\u0000\u0002#7#8\r#7\u0000\u0002r\u0000\u0000\u0000k\u0000y#9#:\r#9\u0000\u0003l\u0000\u0005\u0000k\u0000s#;\r#;\u0000\u0002c\u0000\u0000\u0000k\u0000s#<#=\r#<\u0000\u0002n\u0000\u0000\u0000k\u0000q#>#?\r#>\u0000\u00024\u0000\u0000\u0000l\u0000q#@\n\u0000\u0004\ncwor\r#@\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0003\u0000\u0006\r#?\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\r#=\u0000\u0001m\u0000\u0000\u0000q\u0000r\n\u0000\u0004\nlong\u0001\u0000\u0000\u0001\u0000\u0000\r#:\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000#A#B\r#A\u0000\u0001m\u0000\u0000\u0000t\u0000x\n\u0000\u0004\nscnd\r#B\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002#8\u0000\u0002#C\r#C\u0000\u0001L\u0000\u0000\u0000z\u0000|#D\r#D\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0002\u0000\u0000\u0002\"\u0000\u0002#E#F\r#E\u0000\u0002i\u0000\u0000\u00008\u0000;#G#H\r#G\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000~#I}\u000b~\u0000\u00170\u0000\u0013q_date_to_timestamp\u0000\u0000\u0002#I\u0000\u0002#J|\r#J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002|\u0000\u0000\u0002}\u0000\u0000\r#H\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\u0015#K\r#K\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0014#L#M\r#L\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0012#N#O\r#N\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0010#Pzy\r#P\u0000\u0002\\\u0000\u0000\u0000\u0000\u0000\u0010#Q#R\r#Q\u0000\u0002\\\u0000\u0000\u0000\u0000\u0000\n#S#T\r#S\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005#Uxw\r#U\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005vut\nv\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001u\u0000\u0000\u0002t\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\r#T\u0000\u0003l\u0000\u0005\u0000\u0005\u0000\t#Vsr\r#V\u0000\u00024\u0000\u0000\u0000\u0005\u0000\tq#W\nq\u0000\u0004\nldt \r#W\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\b#Xpo\r#X\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b#Y\u000e#Y\u0000\u0001#Z\u0011#Z\u0000\u0010\u00001\u0000\/\u00001\u0000\/\u00001\u00009\u00007\u00000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\r#R\u0000\u0003l\u0000\u0005\u0000\n\u0000\u000f#[nm\r#[\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000flkj\nl\u0000\u0018.sysoGMT long\u0000\u0000\u0010\u0000\u0000null\u0001k\u0000\u0000\u0002j\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\r#O\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011i\ni\u0000\u0004\nmile\r#M\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013h\nh\u0000\u0004\nctxt\u0002#F\u0000\u0002#\\#]\r#\\\u0000\u0002i\u0000\u0000\u0000<\u0000?#^#_\r#^\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000g#`f\u000bg\u0000\u00170\u0000\u0013q_send_notification\u0000\u0000\u0002#`\u0000\u0002#a#b\r#a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u0002#b\u0000\u0002#c#d\r#c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\u0002#d\u0000\u0002#ec\r#e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\btheextra\u0000\btheExtra\u0002c\u0000\u0000\u0002f\u0000\u0000\r#_\u0000\u0001k\u0000\u0000\u0000\u0000\u0000#f\u0002#f\u0000\u0002#g#h\r#g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007#i#j\r#i\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005a#k`\na\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r#k\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001#l\u000e#l\u0000\u0001#m\u0011#m\u0000\u0006\u0000p\u0000w\u0000d\u0002`\u0000\u0000\r#j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\t0\u0000\u0005_path\u0000\u0000\u0002#h\u0000\u0002#n#o\r#n\u0000\u0004Z\u0000\u0001\u0000\b\u0000\u0018#p#q^]\r#p\u0000\u0001H\u0000\u0000\u0000\b\u0000\f#r\r#r\u0000\u0002D\u0000\u0000\u0000\b\u0000\u000b#s#t\r#s\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\\\u000b\\\u0000\t0\u0000\u0005_path\u0000\u0000\r#t\u0000\u0001m\u0000\u0000\u0000\t\u0000\n#u\u000e#u\u0000\u0001#v\u0011#v\u0000\u0002\u0000\/\r#q\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0014#w#x\r#w\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012#y#z\r#y\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010[\u000b[\u0000\t0\u0000\u0005_path\u0000\u0000\r#z\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011#{\u000e#{\u0000\u0001#|\u0011#|\u0000\u0002\u0000\/\r#x\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Z\u000bZ\u0000\t0\u0000\u0005_path\u0000\u0000\u0002^\u0000\u0000\u0001]\u0000\u0000\u0002#o\u0000\u0002#}#~\r#}\u0000\u0004Z\u0000\u0001\u0000\u0019\u0000&##YX\r#\u0000\u0002=\u0000\u0003\u0000\u0019\u0000\u001c##\r#\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001aW\u000bW\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\r#\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001bV\nV\u0000\u0004\nmsng\r#\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"##\r#\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 #\u000e#\u0000\u0001#\u0011#\u0000\u0000\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u0002Y\u0000\u0000\u0001X\u0000\u0000\u0002#~\u0000\u0002##\r#\u0000\u0004Z\u0000\u0001\u0000'\u00004##TS\r#\u0000\u0002=\u0000\u0003\u0000'\u0000*##\r#\u0000\u0001o\u0000\u0000\u0000'\u0000(R\u000bR\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\r#\u0000\u0001m\u0000\u0000\u0000(\u0000)Q\nQ\u0000\u0004\nmsng\r#\u0000\u0002r\u0000\u0000\u0000-\u00000##\r#\u0000\u0001m\u0000\u0000\u0000-\u0000.#\u000e#\u0000\u0001#\u0011#\u0000\u0000\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\u0002T\u0000\u0000\u0001S\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0001\u00005\u0000B##ON\r#\u0000\u0002=\u0000\u0003\u00005\u00008##\r#\u0000\u0001o\u0000\u0000\u00005\u00006M\u000bM\u0000\u00140\u0000\btheextra\u0000\btheExtra\r#\u0000\u0001m\u0000\u0000\u00006\u00007L\nL\u0000\u0004\nmsng\r#\u0000\u0002r\u0000\u0000\u0000;\u0000>##\r#\u0000\u0001m\u0000\u0000\u0000;\u0000<#\u000e#\u0000\u0001#\u0011#\u0000\u0000\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\u00140\u0000\btheextra\u0000\btheExtra\u0002O\u0000\u0000\u0001N\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0004Z\u0000\u0001\u0000C\u0000b##JI\r#\u0000\u0002F\u0000\u0000\u0000C\u0000X##\r#\u0000\u0002=\u0000\u0003\u0000C\u0000K##\r#\u0000\u0002n\u0000\u0001\u0000C\u0000I##\r#\u0000\u0003I\u0000\u0000\u0000D\u0000IH#G\u000bH\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002#\u0000\u0002#F\r#\u0000\u0001o\u0000\u0000\u0000D\u0000EE\u000bE\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u0002F\u0000\u0000\u0002G\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000C\u0000D\r#\u0000\u0001m\u0000\u0000\u0000I\u0000J#\u000e#\u0000\u0001#\u0011#\u0000\u0000\r#\u0000\u0002=\u0000\u0003\u0000N\u0000V##\r#\u0000\u0002n\u0000\u0001\u0000N\u0000T##\r#\u0000\u0003I\u0000\u0000\u0000O\u0000TD#C\u000bD\u0000\n0\u0000\u0006q_trim\u0000\u0000\u0002#\u0000\u0002#B\r#\u0000\u0001o\u0000\u0000\u0000O\u0000PA\u000bA\u0000\u00140\u0000\btheextra\u0000\btheExtra\u0002B\u0000\u0000\u0002C\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000N\u0000O\r#\u0000\u0001m\u0000\u0000\u0000T\u0000U#\u000e#\u0000\u0001#\u0011#\u0000\u0000\r#\u0000\u0002r\u0000\u0000\u0000[\u0000^##\r#\u0000\u0001m\u0000\u0000\u0000[\u0000\\#\u000e#\u0000\u0001#\u0011#\u0000\u0018\u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u0002J\u0000\u0000\u0001I\u0000\u0000\u0002#\u0000\u0002#?\r#\u0000\u0003Q\u0000\u0000\u0000c\u0000##>\r#\u0000\u0003I\u0000\u0002\u0000f\u0000=#<\n=\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r#\u0000\u0003l\u0000\u0005\u0000f\u0000}#;:\r#\u0000\u0002b\u0000\u0000\u0000f\u0000}##\r#\u0000\u0002b\u0000\u0000\u0000f\u0000y##\r#\u0000\u0002b\u0000\u0000\u0000f\u0000u##\r#\u0000\u0002b\u0000\u0000\u0000f\u0000q##\r#\u0000\u0002b\u0000\u0000\u0000f\u0000o##\r#\u0000\u0002b\u0000\u0000\u0000f\u0000k##\r#\u0000\u0002n\u0000\u0000\u0000f\u0000i##\r#\u0000\u00011\u0000\u0000\u0000g\u0000i9\n9\u0000\u0004\nstrq\r#\u0000\u0001o\u0000\u0000\u0000f\u0000g8\u000b8\u0000\t0\u0000\u0005_path\u0000\u0000\r#\u0000\u0001m\u0000\u0000\u0000i\u0000j#\u000e#\u0000\u0001#\u0011#\u0000l\u0000b\u0000i\u0000n\u0000\/\u0000q\u0000_\u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000.\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000 \u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000 \r#\u0000\u0002n\u0000\u0000\u0000k\u0000n##\r#\u0000\u00011\u0000\u0000\u0000l\u0000n7\n7\u0000\u0004\nstrq\r#\u0000\u0001o\u0000\u0000\u0000k\u0000l6\u000b6\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\r#\u0000\u0001m\u0000\u0000\u0000o\u0000p#\u000e#\u0000\u0001#\u0011#\u0000\u0002\u0000 \r#\u0000\u0002n\u0000\u0000\u0000q\u0000t##\r#\u0000\u00011\u0000\u0000\u0000r\u0000t5\n5\u0000\u0004\nstrq\r#\u0000\u0001o\u0000\u0000\u0000q\u0000r4\u000b4\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\r#\u0000\u0001m\u0000\u0000\u0000u\u0000x#\u000e#\u0000\u0001#\u0011#\u0000\u0002\u0000 \r#\u0000\u0002n\u0000\u0000\u0000y\u0000|##\r#\u0000\u00011\u0000\u0000\u0000z\u0000|3\n3\u0000\u0004\nstrq\r#\u0000\u0001o\u0000\u0000\u0000y\u0000z2\u000b2\u0000\u00140\u0000\btheextra\u0000\btheExtra\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002<\u0000\u0000\r#\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u000010\/\n1\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00010\u0000\u0000\u0002\/\u0000\u0000\u0001>\u0000\u0000\u0002?\u0000\u0000\u0002#]\u0000\u0002##\r#\u0000\u0002i\u0000\u0000\u0000@\u0000C##\r#\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000.-,\u000b.\u0000\f0\u0000\bq_notify\u0000\u0000\u0002-\u0000\u0000\u0002,\u0000\u0000\r#\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\b##\r#\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\b+#*\u000b+\u0000\u00170\u0000\u0013q_send_notification\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002#\u000e#\u0000\u0001#\u0011#\u0000\u0000\u0002#\u0000\u0002##\r#\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003#\u000e#\u0000\u0001#\u0011#\u0000\u0000\u0002#\u0000\u0002#)\r#\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#\u000e#\u0000\u0001#\u0011#\u0000\u0000\u0002)\u0000\u0000\u0002*\u0000\u0000\r#\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002#\u0000\u0002##\r#\u0000\u0002i\u0000\u0000\u0000D\u0000G##\r#\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000(#'\u000b(\u0000\u00100\u0000\fq_encode_url\u0000\u0000\u0002#\u0000\u0002#&\r#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\u00070\u0000\u0003str\u0000\u0000\u0002&\u0000\u0000\u0002'\u0000\u0000\r#\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019#\u0002#\u0000\u0002##\r#\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000#\u0002#\u0000\u0002$#\u000b$\u0000\u00070\u0000\u0003str\u0000\u0000\u0002#\u0000\u0000\u0002#\u0000\u0002#\"\r#\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0019###\r#\u0000\u0001L\u0000\u0000\u0000\u0003\u0000\u000f#\r#\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\u000e#! \r#\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\u000e\u001f#\u001e\n\u001f\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r#\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\n##\r#\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b##\r#\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004#\u000e#\u0000\u0001#\u0011#\u0000\u0014\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000e\u0000c\u0000h\u0000o\u0000 \r#\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007##\r#\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\u001d\n\u001d\u0000\u0004\nstrq\r#\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u001c\u000b\u001c\u0000\u00070\u0000\u0003str\u0000\u0000\r#\u0000\u0003l\u0000\t\u0000\b\u0000\t#\u001b\u001a\r#\u0000\u0001m\u0000\u0000\u0000\b\u0000\t$\u0000\u000e$\u0000\u0000\u0001$\u0001\u0011$\u0001\u0000b\u0000 \u0000|\u0000 \u0000p\u0000e\u0000r\u0000l\u0000 \u0000-\u0000M\u0000U\u0000R\u0000I\u0000:\u0000:\u0000E\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000-\u0000l\u0000n\u0000e\u0000 \u0000'\u0000p\u0000r\u0000i\u0000n\u0000t\u0000 \u0000u\u0000r\u0000i\u0000_\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000$\u0000_\u0000)\u0000'\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u001e\u0000\u0000\u0001!\u0000\u0000\u0001 \u0000\u0000\r#\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0018\u0017\n\u0019\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0018\u0000\u0000\u0002\u0017\u0000\u0000\r#\u0000\u0001L\u0000\u0000\u0000\u0017\u0000\u0019$\u0002\r$\u0002\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0016\n\u0016\u0000\u0004\nmsng\u0002\"\u0000\u0000\u0002#\u0000\u0002$\u0003\u0015\r$\u0003\u0000\u0002i\u0000\u0000\u0000H\u0000K$\u0004$\u0005\r$\u0004\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0014$\u0006\u0013\u000b\u0014\u0000\u00100\u0000\fq_decode_url\u0000\u0000\u0002$\u0006\u0000\u0002$\u0007\u0012\r$\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0012\u0000\u0000\u0002\u0013\u0000\u0000\r$\u0005\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019$\b\u0002$\b\u0000\u0002$\t$\n\r$\t\u0000\u0001q\u0000\u0000\u0000\u0000\u0000\u0000$\u000b\u0002$\u000b\u0000\u0002\u0010\u000f\u000b\u0010\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u000f\u0000\u0000\u0002$\n\u0000\u0002$\f\u000e\r$\f\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0019$\r$\u000e$\u000f\r$\r\u0000\u0001L\u0000\u0000\u0000\u0003\u0000\u000f$\u0010\r$\u0010\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\u000e$\u0011\r\f\r$\u0011\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\u000e\u000b$\u0012\n\n\u000b\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r$\u0012\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\n$\u0013$\u0014\r$\u0013\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b$\u0015$\u0016\r$\u0015\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004$\u0017\u000e$\u0017\u0000\u0001$\u0018\u0011$\u0018\u0000\u0014\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000e\u0000c\u0000h\u0000o\u0000 \r$\u0016\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007$\u0019$\u001a\r$\u0019\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\t\n\t\u0000\u0004\nstrq\r$\u001a\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\b\u000b\b\u0000\u00070\u0000\u0003str\u0000\u0000\r$\u0014\u0000\u0003l\u0000\t\u0000\b\u0000\t$\u001b\u0007\u0006\r$\u001b\u0000\u0001m\u0000\u0000\u0000\b\u0000\t$\u001c\u000e$\u001c\u0000\u0001$\u001d\u0011$\u001d\u0000f\u0000 \u0000|\u0000 \u0000p\u0000e\u0000r\u0000l\u0000 \u0000-\u0000M\u0000U\u0000R\u0000I\u0000:\u0000:\u0000E\u0000s\u0000c\u0000a\u0000p\u0000e\u0000 \u0000-\u0000l\u0000n\u0000e\u0000 \u0000'\u0000p\u0000r\u0000i\u0000n\u0000t\u0000 \u0000u\u0000r\u0000i\u0000_\u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000$\u0000_\u0000)\u0000'\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\n\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\r$\u000e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u0004\u0003\n\u0005\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0004\u0000\u0000\u0002\u0003\u0000\u0000\r$\u000f\u0000\u0001L\u0000\u0000\u0000\u0017\u0000\u0019$\u001e\r$\u001e\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0002\n\u0002\u0000\u0004\nmsng\u0002\u000e\u0000\u0000\u0002\u0015\u0000\u0000\u0010\u001f\u0000\u0015\u0001$\u001f$ $!$\"$#$$$%$&$'$($)$*$+$,$-$.$\/$0$1$2\u0001\u0001\u0000\u0000\u0010$\u001f\u0000\u0013\u0000\u000b\u0000\u0000\u00100\u0000\fnew_workflow\u0000\u0000\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u000b\u0000\n0\u0000\u0006q_join\u0000\u0000\u000b\u0000\u000b0\u0000\u0007q_split\u0000\u0000\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u000b\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\u000b\u0000\u00110\u0000\rq_path_exists\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000b\u0000\n0\u0000\u0006q_trim\u0000\u0000\u000b\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u000b\u0000\u00160\u0000\u0012q_date_to_unixdate\u0000\u0000\u000b\u0000\u00160\u0000\u0012q_unixdate_to_date\u0000\u0000\u000b\u0000\u00170\u0000\u0013q_timestamp_to_date\u0000\u0000\u000b\u0000\u00170\u0000\u0013q_date_to_timestamp\u0000\u0000\u000b\u0000\u00170\u0000\u0013q_send_notification\u0000\u0000\u000b\u0000\f0\u0000\bq_notify\u0000\u0000\u000b\u0000\u00100\u0000\fq_encode_url\u0000\u0000\u000b\u0000\u00100\u0000\fq_decode_url\u0000\u0000\u000e$ \u0000\u0007\u0010\u001f$3$4\u000b\u0000\u00100\u0000\fnew_workflow\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010$3\u0000\u0000\u0010$4\u0000\u0002\n\u0000\u0004\nmsng\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u0011\u0000\b)k+\u0000\u0001\u000f\u000f\u000e$!\u0000\u0007\u0010\u001f$5$6\u000b\u0000\u001c0\u0000\u0018new_workflow_with_bundle\u0000\u0000\u000e\u0000\u0002\u0004$7\u0003\u0000\u0001\u000e$7\u0000\u0001\u0000\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0010$5\u0000\u0002\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u0010$6\u0000\u0005\u0019$8\u000b\u0000\u00140\u0000\bworkflow\u0000\bWorkflow\u000e$8\u0000\u0007\u0011$9$:$;\n\u0000\u0018.ascrinit****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r$9\u0000\u0001k\u0000\u0000\u0000\u0000\u0000`$<\u0002$<\u0000\u0002\u0019$=\u0002$=\u0000\u0002\u0019$>\u0002$>\u0000\u0002\u0019$?\u0002$?\u0000\u0002\u0019$@\u0002$@\u0000\u0002\u0019$A\u0002$A\u0000\u0002\u0019$B\u0002$B\u0000\u0002\u0019$C\u0002$C\u0000\u0002\u0019$D\u0002$D\u0000\u0002\u001a$E\u0002$E\u0000\u0002\u001a$F\u0002$F\u0000\u0002\u001a$G\u0002$G\u0000\u0002\u001b\u0004$H\u0002$H\u0000\u0002\u001b\u0018$I\u0002$I\u0000\u0002\u001b,$J\u0002$J\u0000\u0002\u001b3$K\u0002$K\u0000\u0002\u001c$L\u0002$L\u0000\u0002\u001d\\$M\u0002$M\u0000\u0002\u001do$N\u0002$N\u0000\u0002\u001d$O\u0002$O\u0000\u0002\u001d$P\u0002$P\u0000\u0002\u001d$Q\u0002$Q\u0000\u0002\u001e\u0011$R\u0002$R\u0000\u0002\u001ec$S\u0002$S\u0000\u0002\u001e$T\u0002$T\u0000\u0002\u001f\/$U\u0002$U\u0000\u0002\u001fT\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010$:\u0000\u001a\n\u0000\u0004\npcls\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u0000\f0\u0000\b_results\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000e0\u0000\nget_bundle\u0000\u0000\u000b\u0000\r0\u0000\tget_cache\u0000\u0000\u000b\u0000\f0\u0000\bget_data\u0000\u0000\u000b\u0000\f0\u0000\bget_path\u0000\u0000\u000b\u0000\f0\u0000\bget_home\u0000\u0000\u000b\u0000\u000f0\u0000\u000bget_results\u0000\u0000\u000b\u0000\n0\u0000\u0006to_xml\u0000\u0000\u000b\u0000\r0\u0000\tset_value\u0000\u0000\u000b\u0000\u000e0\u0000\nset_values\u0000\u0000\u000b\u0000\r0\u0000\tget_value\u0000\u0000\u000b\u0000\u000b0\u0000\u0007request\u0000\u0000\u000b\u0000\u00100\u0000\frequest_json\u0000\u0000\u000b\u0000\n0\u0000\u0006mdfind\u0000\u0000\u000b\u0000\u000e0\u0000\nwrite_file\u0000\u0000\u000b\u0000\r0\u0000\tread_file\u0000\u0000\u000b\u0000\u000e0\u0000\nadd_result\u0000\u0000\u000b\u0000\u000f0\u0000\u000b_make_plist\u0000\u0000\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\u0010$;\u0000\u001c\u0019$V$W$X$Y$Z$[$\\$]$^$_$`$a$b$c$d$e$f$g$h\n\u0000\u0004\npcls\n\u0000\u0004\nmsng\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u0000\f0\u0000\b_results\u0000\u0000\u000e$V\u0000\u0007\u0010\u0019$i$j\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0002\u0004$k\u0003\u0000\u0001\u000e$k\u0000\u0001\u0000\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u0002\u0000\u0000\u0010$i\u0000\u0002\u000b\u0000\f0\u0000\bbundleid\u0000\u0000\u000b\u0000\u00180\u0000\n_infoplist\u0000\n_infoPlist\u0010$j\u0000\u001c\u001a\u0004\u001a\u0011\u001a\u0019\u001a\"\u001a,\u001aF\u001aA\u001aa\u001af\u001aw\u001a|\u001a\u001a\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u0000\u00110\u0000\rq_file_exists\u0000\u0000\n\u0000\u0004\nplif\n\u0000\u0004\nplii\n\u0000\u0004\nvalL\n\u0000\u0004\nctxt\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\u000b\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\u000b\u0000\f0\u0000\b_results\u0000\u0000\u0011\u0000j\f\u0000\u0001),FO),\u0007\u000b\u001d\u0000\u000e),%),FY\u0000\u0003hOj\f\u0000\u0001),FOb\u0000\u0001\u0000\u0004%EO)k+\u0000\b\u001d\u0000\u001e\u0012\u0000\u0016*\/\u0012\u0000\u000e*\/,&),FUUY\u0000\u0003hO)k+\u0000\u0010\u000b\u001d\u0000\n),FY\u0000\u0003hO),a\u0000\u0011%),%a\u0000\u0012%)a\u0000\u0013,FO),a\u0000\u0014%),%a\u0000\u0015%)a\u0000\u0016,FO))a\u0000\u0013,k+\u0000\u0017\u000b\u001d\u0000\u0016a\u0000\u0018)a\u0000\u0013,a\u0000\u0019,%j\f\u0000\u0001Y\u0000\u0003hO))a\u0000\u0016,k+\u0000\u0017\u000b\u001d\u0000\u0016a\u0000\u001a)a\u0000\u0016,a\u0000\u0019,%j\f\u0000\u0001Y\u0000\u0003hOjv)a\u0000\u001b,FO)\u000f\u000f\u000e$W\u0000\u0007\u0010\u001a$l$m\u000b\u0000\u000e0\u0000\nget_bundle\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010$l\u0000\u0000\u0010$m\u0000\u0003\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nmsng\u0011\u0000\u0018)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO),E\u000f\u000f\u000e$X\u0000\u0007\u0010\u001a$n$o\u000b\u0000\r0\u0000\tget_cache\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010$n\u0000\u0000\u0010$o\u0000\u0004\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nmsng\u000b\u0000\n0\u0000\u0006_cache\u0000\u0000\u0011\u0000*)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO),E\u000f\u000f\u000e$Y\u0000\u0007\u0010\u001a$p$q\u000b\u0000\f0\u0000\bget_data\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010$p\u0000\u0000\u0010$q\u0000\u0004\u000b\u0000\u000b0\u0000\u0007_bundle\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005_data\u0000\u0000\u0011\u0000*)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO),E\u000f\u000f\u000e$Z\u0000\u0007\u0010\u001b\u0007$r$s\u000b\u0000\f0\u0000\bget_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010$r\u0000\u0000\u0010$s\u0000\u0003\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nmsng\u0011\u0000\u0018)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO),E\u000f\u000f\u000e$[\u0000\u0007\u0010\u001b\u001b~$t$u}\u000b\u0000\f0\u0000\bget_home\u0000\u0000\u0002\u0000\u0000\u0002~\u0000\u0000\u0010$t\u0000\u0000\u0010$u\u0000\u0003|{z\u000b|\u0000\t0\u0000\u0005_home\u0000\u0000\u000b{\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\nz\u0000\u0004\nmsng\u0011}\u0000\u0018)),k+\u0000\u0001\u001d\u0000\u0007\u000fY\u0000\u0003hO),E\u000f\u000f\u000e$\\\u0000\u0007\u0010y\u001b\/xw$v$wv\u000by\u0000\u000f0\u0000\u000bget_results\u0000\u0000\u0002x\u0000\u0000\u0002w\u0000\u0000\u0010$v\u0000\u0000\u0010$w\u0000\u0001u\u000bu\u0000\f0\u0000\b_results\u0000\u0000\u0011v\u0000\u0006),E\u000f\u000f\u000e$]\u0000\u0007\u0010t\u001b6sr$x$yq\u000bt\u0000\n0\u0000\u0006to_xml\u0000\u0000\u000es\u0000\u0002\u0004p$z\u0003p\u0000\u0001\u000e$z\u0000\u0001\u0000o\u000bo\u0000\u00050\u0000\u0001a\u0000\u0000\u0002r\u0000\u0000\u0010$x\u0000\u0006nmlkji\u000bn\u0000\u00050\u0000\u0001a\u0000\u0000\u000bm\u0000\b0\u0000\u0004tab2\u0000\u0000\u000bl\u0000\u00070\u0000\u0003xml\u0000\u0000\u000bk\u0000\u00120\u0000\u0007itemref\u0000\u0007itemRef\u000bj\u0000\u00050\u0000\u0001r\u0000\u0000\u000bi\u0000\u00060\u0000\u0002ic\u0000\u0000\u0010$y\u00004hgfed\u001btc\u001bvba`_\u001b^\u001b]\u001b\u001b\\\u001b[\u001bZ\u001b\u001bY\u001b\u001c\u0003\u001c\r\u001c\u001dX\u001c%\u001c5W\u001c=V\u001cX\u001ca\u001cjUT\u001cz\u001c\u001c\u001cS\u001cR\u001c\u001c\u001c\u001c\u000bh\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000bg\u0000\f0\u0000\b_results\u0000\u0000\nf\u0000\u0004\nbool\ne\u0000\u0004\nmsng\nd\u0000\u0004\ntab \nc\u0000\u0004\nret \nb\u0000\u0004\nkocl\na\u0000\u0004\ncobj\n`\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n_\u0000\u0004\npcnt\u000b^\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u000b]\u0000\f0\u0000\bq_encode\u0000\u0000\u000b\\\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\u000b[\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\u000bZ\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\u000bY\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\u000bX\u0000\u00140\u0000\bthetitle\u0000\btheTitle\u000bW\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\u000bV\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u0003U\u0000\n\nT\u0000\u0004\nctxt\u000bS\u0000\t0\u0000\u0005_path\u0000\u0000\u000bR\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u0011q\u0002\u000b)k+\u0000\u0000\t\u0000\r)),k+\u0000\u0000\u000b&\u001d\u0000\n),EY\u0000\u001e)k+\u0000\u0000\t\u0000\f)),k+\u0000\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO%EO%%%EO\u0017\u0001[l\f\u0000\nkh\u001b\u0000\u0003,EO%%EO),k+\u0000\u0000\u000b\u001d\u0000\u0017%),k+\u0000\u000f%a\u0000\u0010%EY\u0000\u0003hOa\u0000\u0011%)a\u0000\u0012,k+\u0000\u000f%a\u0000\u0013%EOa\u0000\u0014,f\u0000\u001d\u00005a\u0000\u0015%EO)a\u0000\u0016,k+\u0000\u0000\u000b\u001d\u0000\u001ba\u0000\u0017%)a\u0000\u0016,k+\u0000\u000f%a\u0000\u0018%EY\u0000\u0003hY\u0000\u0003hO)a\u0000\u0019,k+\u0000\u0000\u000b\u001d\u0000\u0016a\u0000\u001a%a\u0000\u0019,%a\u0000\u001b%EY\u0000\u0003hOa\u0000\u001c%%EO%a\u0000\u001d%)a\u0000\u001e,k+\u0000\u000f%a\u0000\u001f%%EO%a\u0000 %)a\u0000!,k+\u0000\u000f%a\u0000\"%%EOa\u0000#,EO)k+\u0000\u0000\u000b\u001d\u0000q%a\u0000$%EOa\u0000%\u0006\u001d\u0000 a\u0000&%EO[\\[Za\u0000'\\Zi2a\u0000(&EY\u0000)a\u0000)\u0006\u001d\u0000 a\u0000*%EO[\\[Za\u0000'\\Zi2a\u0000(&EY\u0000\u0003hOa\u0000+%)k+\u0000\u000f%a\u0000,%%EY\u0000())a\u0000-,a\u0000.%k+\u0000\/\u001d\u0000\u0016a\u00000EO%a\u00001%%EY\u0000\u0003hO%a\u00002%%E[OY\\Oa\u00003%EO\u000f\u000f\u000e$^\u0000\u0007\u0010Q\u001cPO${$|N\u000bQ\u0000\r0\u0000\tset_value\u0000\u0000\u000eP\u0000\u0002\u0004M$}\u0003M\u0000\u0003\u000e$}\u0000\u0003\u0000LKJ\u000bL\u0000\u00050\u0000\u0001a\u0000\u0000\u000bK\u0000\u00050\u0000\u0001b\u0000\u0000\u000bJ\u0000\u00050\u0000\u0001c\u0000\u0000\u0002O\u0000\u0000\u0010${\u0000\u0007IHGFEDC\u000bI\u0000\u00050\u0000\u0001a\u0000\u0000\u000bH\u0000\u00050\u0000\u0001b\u0000\u0000\u000bG\u0000\u00050\u0000\u0001c\u0000\u0000\u000bF\u0000\u00070\u0000\u0003lst\u0000\u0000\u000bE\u0000\u00160\u0000\trecordref\u0000\trecordRef\u000bD\u0000\u00050\u0000\u0001r\u0000\u0000\u000bC\u0000\u00050\u0000\u0001x\u0000\u0000\u0010$|\u0000\u0017\u001d[BA@?>=<;:9876543210\/.-\nB\u0000\u0004\npcls\nA\u0000\u0004\nlist\u000b@\u0000\u00100\u0000\fq_clean_list\u0000\u0000\n?\u0000\u0004\nplif\n>\u0000\u0004\nat \u000b=\u0000\t0\u0000\u0005plist\u0000\u0000\u0003<\u0000\u0004\u000b;\u0000\u00110\u0000\r_get_location\u0000\u0000\n:\u0000\u0004\nkocl\n9\u0000\u0004\ncobj\n8\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n7\u0000\u0004\npcnt\n6\u0000\u0004\nplii\n5\u0000\u0004\ninsh\n4\u0000\u0004\nprdt\n3\u0000\u0004\nkind\u000b2\u0000\u00140\u0000\bthevalue\u0000\btheValue\n1\u0000\u0004\npnam\u000b0\u0000\u00100\u0000\u0006thekey\u0000\u0006theKey\n\/\u0000\u0004\nvalL\u0003.\u0000\u0006\n-\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0011N\u0000\u0012\u0000,\u0000\u001d\u0000g)k+\u0000\u0003EO*)e\f\u0000\b\/EO\u0017\u0000I[l\f\u0000\u000bkh\u001b\u0000\u0004,EO*,-6a\u0000\u0010a\u0000\u0011,,a\u0000\u0012a\u0000\u0013,a\u0000\u0014a\u0000\u0011,a\u0000\u0015\u000ea\u0000\u0015\f\u0000\u0016[OYY\u0000K*)e\f\u0000\b\/EO,\u0000\u001d\u0000\r)k+\u0000\u0003EY\u0000\u0005EO*,-6a\u0000\u0010,a\u0000\u0012a\u0000\u0014a\u0000\u0015\u000ea\u0000\u0015\f\u0000\u0016U\u000f\u000e$_\u0000\u0007\u0010,\u001d_+*$~$)\u000b,\u0000\u000e0\u0000\nset_values\u0000\u0000\u000e+\u0000\u0002\u0004($\u0003(\u0000\u0002\u000e$\u0000\u0002\u0000'&\u000b'\u0000\u00050\u0000\u0001a\u0000\u0000\u000b&\u0000\u00050\u0000\u0001b\u0000\u0000\u0002*\u0000\u0000\u0010$~\u0000\u0002%$\u000b%\u0000\u00050\u0000\u0001a\u0000\u0000\u000b$\u0000\u00050\u0000\u0001b\u0000\u0000\u0010$\u0000\u0002\u001dm#\u000b#\u0000\r0\u0000\tset_value\u0000\u0000\u0011)\u0000\n)m+\u0000\u0001\u000f\u000f\u000e$`\u0000\u0007\u0010\"\u001dr! $$\u001f\u000b\"\u0000\r0\u0000\tget_value\u0000\u0000\u000e!\u0000\u0002\u0004\u001e$\u0003\u001e\u0000\u0002\u000e$\u0000\u0002\u0000\u001d\u001c\u000b\u001d\u0000\u00050\u0000\u0001a\u0000\u0000\u000b\u001c\u0000\u00050\u0000\u0001b\u0000\u0000\u0002 \u0000\u0000\u0010$\u0000\u0002\u001b\u001a\u000b\u001b\u0000\u00050\u0000\u0001a\u0000\u0000\u000b\u001a\u0000\u00050\u0000\u0001b\u0000\u0000\u0010$\u0000\f\u001d\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\n\u0019\u0000\u0004\nplif\n\u0018\u0000\u0004\nat \u000b\u0017\u0000\t0\u0000\u0005plist\u0000\u0000\u0003\u0016\u0000\u0004\u000b\u0015\u0000\u00110\u0000\r_get_location\u0000\u0000\n\u0014\u0000\u0004\npcnt\n\u0013\u0000\u0004\nplii\n\u0012\u0000\u0004\nvalL\u0001\u0011\u0000\u0000\u0002\u0010\u0000\u0000\n\u000f\u0000\u0004\nmsng\u0011\u001f\u0000.\u0012\u0000'*)e\f\u0000\u0005\/EO\u0014\u0000\u000f,\/,E\u000fW\u0000\bX\u0000\t\u0000\nhUO\u000f\u000f\u000e$a\u0000\u0007\u0010\u000e\u001d\r\f$$\u000b\u000b\u000e\u0000\u000b0\u0000\u0007request\u0000\u0000\u000e\r\u0000\u0002\u0004\n$\u0003\n\u0000\u0001\u000e$\u0000\u0001\u0000\t\u000b\t\u0000\u000b0\u0000\u0007website\u0000\u0000\u0002\f\u0000\u0000\u0010$\u0000\u0003\b\u0007\u0006\u000b\b\u0000\u000b0\u0000\u0007website\u0000\u0000\u000b\u0007\u0000\t0\u0000\u0005agent\u0000\u0000\u000b\u0006\u0000\u00180\u0000\nthecontent\u0000\ntheContent\u0010$\u0000\b\u001d\u001d\u001d\u001d\u0005\u0004\u0003\u0002\n\u0005\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0001\u0004\u0000\u0000\u0002\u0003\u0000\u0000\n\u0002\u0000\u0004\nmsng\u0011\u000b\u0000&EO\u0014\u0000\u0017%%%%j\f\u0000\u0004EO\u000fW\u0000\bX\u0000\u0005\u0000\u0006hO\u000f\u000f\u000e$b\u0000\u0007\u0010\u0001\u001d\u0000$$\u000b\u0001\u0000\u00100\u0000\frequest_json\u0000\u0000\u000e\u0000\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0003\u000b\u0000\u000b0\u0000\u0007website\u0000\u0000\u000b\u0000\u00180\u0000\njsonhelper\u0000\njsonHelper\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0010$\u0000\n\u001d\u001d\u001d\u001d\u001d\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\n\u0000\u0004\nmsng\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u00007\u0014\u0000.),%EO%%%%EOj\f\u0000\u0005EO\u0000\u001d\u0000\u0007\u000fY\u0000\u0004\u000fW\u0000\tX\u0000\b\u0000\t\u000f\u000f\u000e$c\u0000\u0007\u0010\u001d$$\u000b\u0000\n0\u0000\u0006mdfind\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0002\u000b\u0000\t0\u0000\u0005query\u0000\u0000\u000b\u0000\n0\u0000\u0006output\u0000\u0000\u0010$\u0000\u0005\u001e\u0005\u001e\u0007\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nret \u000b\u0000\u000b0\u0000\u0007q_split\u0000\u0000\u0011\u0000\u0015%%j\f\u0000\u0002EO)l+\u0000\u0004\u000f\u000f\u000e$d\u0000\u0007\u0010\u001e\u0014$$\u000b\u0000\u000e0\u0000\nwrite_file\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0002\u000e$\u0000\u0002\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0003\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u0010$\u0000\u0014\n\u0000\u0004\nat \u000b\u0000\t0\u0000\u0005plist\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\n\u0000\u0004\npcls\n\u0000\u0004\nlist\n\u0000\u0004\nret \u000b\u0000\n0\u0000\u0006q_join\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nperm\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\n\u0000\u0004\nset2\n\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\nrefn\n\u0000\u0004\nas \n\u0000\u0004\nutf8\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\u0011\u0000|)f\f\u0000\u0003EO,\u0000\u001d\u0000\u001b\u0014\u0000\u000e)l+\u0000\u0007EW\u0000\tX\u0000\b\u0000\tf\u000fY\u0000\u0014\u0014\u0000\n&EW\u0000\tX\u0000\b\u0000\tf\u000fO\u0014\u0000-el\f\u0000\fEOjl\f\u0000\u000eOa\u0000\u0010a\u0000\u0011\f\u0000\u0012Oj\f\u0000\u0013Oe\u000fW\u0000\u000fX\u0000\b\u0000\tj\f\u0000\u0013Of\u000f\u000f\u000e$e\u0000\u0007\u0010\u001ef$$\u000b\u0000\r0\u0000\tread_file\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0003\u000b\u0000\u00050\u0000\u0001a\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u000b\u0000\u00060\u0000\u0002sz\u0000\u0000\u0010$\u0000\u0010\u001e\n\u0000\u0004\nat \u000b\u0000\t0\u0000\u0005plist\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00110\u0000\r_get_location\u0000\u0000\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\n\u0000\u0018.rdwrgeofcomp\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\nfile\n\u0000\u0018.coredelonull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0004\nmsng\n\u0000\u0004\nas \n\u0000\u0004\nutf8\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000W)f\f\u0000\u0003EO\u0014\u0000<j\f\u0000\u0004EOj\f\u0000\u0005EOj\f\u0000\u0006Oj\u0000\u001d\u0000\u0015\u0012\u0000\n*\/j\f\u0000\tUO\u000fY\u0000\nl\f\u0000\r\u000fW\u0000\u000fX\u0000\u000e\u0000\u000fj\f\u0000\u0006O\u000f\u000f\u000e$f\u0000\u0007\u0010\u001e$$\u000b\u0000\u000e0\u0000\nadd_result\u0000\u0000\u0002\u0000\u0000\u0006\u0000\u0003$\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u000b\u0000\b0\u0000\u0004_uid\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\u000b\u0000\b0\u0000\u0004_arg\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\u00140\u0000\bthetitle\u0000\btheTitle\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\u000b\u0000\b0\u0000\u0004_sub\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\u000b\u0000\t0\u0000\u0005_auto\u0000\u0000\u0006$\u0000\u0003$\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\u0006$\u0000\u0003\u000b\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\u000b\u0000\n0\u0000\u0006_valid\u0000\u0000\u0006\u0000\u0000\u0010$\u0000\t\u000b\u0000\b0\u0000\u0004_uid\u0000\u0000\u000b\u0000\b0\u0000\u0004_arg\u0000\u0000\u000b\u0000\n0\u0000\u0006_title\u0000\u0000\u000b\u0000\b0\u0000\u0004_sub\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_auto\u0000\u0000\u000b\u0000\t0\u0000\u0005_type\u0000\u0000\u000b\u0000\n0\u0000\u0006_valid\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0010$\u0000\u0014\u001e\u001e\u001e\u001e\u001e\u001e\u001e\u001f\u0002\n\u0000\u0004\nmsng\u000b\u0000\u00100\u0000\u0006theuid\u0000\u0006theUID\u000b\u0000\u00100\u0000\u0006thearg\u0000\u0006theArg\u000b\u0000\u00140\u0000\bthetitle\u0000\btheTitle\u000b\u0000\u001a0\u0000\u000bthesubtitle\u0000\u000btheSubtitle\u000b\u0000\u00120\u0000\u0007theicon\u0000\u0007theIcon\u000b\u0000\u00120\u0000\u0007isvalid\u0000\u0007isValid\u000b\u0000\"0\u0000\u000ftheautocomplete\u0000\u000ftheAutocomplete\u000b\u0000\u00120\u0000\u0007thetype\u0000\u0007theType\u0003\u0000\u0010\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000b\u0000\f0\u0000\b_results\u0000\u0000\u0011\u0000\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hOa\u0000\u0010a\u0000\u0011\u000eEO)k+\u0000\u0012\u001d\u0000\fa\u0000\u0010,FY\u0000\u0003hO)a\u0000\u0013,6FO\u000f\u000f\u000e$g\u0000\u0007\u0010\u001f2$$\u000b\u0000\u000f0\u0000\u000b_make_plist\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tplistpath\u0000\tplistPath\u0002\u0000\u0000\u0010$\u0000\u0003\u000b\u0000\u00160\u0000\tplistpath\u0000\tplistPath\u000b\u0000\u001e0\u0000\rparentelement\u0000\rparentElement\u000b\u0000\u00160\u0000\tplistfile\u0000\tplistFile\u0010$\u0000\u000b\u001fQ~}|{zyxwv\n\u0000\u0004\nkocl\n~\u0000\u0004\nplii\n}\u0000\u0004\nprdt\n|\u0000\u0004\nkind\n{\u0000\u0004\nreco\u0003z\u0000\u0004\ny\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\nx\u0000\u0004\nplif\nw\u0000\u0004\npcnt\nv\u0000\u0004\npnam\u0011\u0000(\u0012\u0000!*l\u000e\f\u0000\u0007EO*\u000e\f\u0000\u0007EUO\u000f\u000f\u000e$h\u0000\u0007\u0010u\u001fVts$$r\u000bu\u0000\u00110\u0000\r_get_location\u0000\u0000\u0002t\u0000\u0000\u0006s\u0000\u0003qp$\nq\u0000\u0004\nat \u000bp\u0000\u00180\u0000\npathorname\u0000\npathOrName\u0006$\u0000\u0003onm\u000bo\u0000\t0\u0000\u0005plist\u0000\u0000\u000bn\u0000\u00120\u0000\u0007isplist\u0000\u0007isPlist\u0006m\u0000\u0000\u0010$\u0000\u0004lkji\u000bl\u0000\u00180\u0000\npathorname\u0000\npathOrName\u000bk\u0000\u00120\u0000\u0007isplist\u0000\u0007isPlist\u000bj\u0000\f0\u0000\blocation\u0000\u0000\u000bi\u0000\u00050\u0000\u0001f\u0000\u0000\u0010$\u0000\u0013hgf\u001fjedcba`_^]\\[Z\u001fYX\nh\u0000\u0004\nmsng\u000bg\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\nf\u0000\u0004\nbool\u000be\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u000bd\u0000\t0\u0000\u0005_path\u0000\u0000\u000bc\u0000\t0\u0000\u0005_data\u0000\u0000\u000bb\u0000\n0\u0000\u0006_cache\u0000\u0000\u000ba\u0000\u000f0\u0000\u000b_make_plist\u0000\u0000\n`\u0000\u0004\nperm\n_\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\n^\u0000\u0004\nset2\n]\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\n\\\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\u0001[\u0000\u0000\u0002Z\u0000\u0000\nY\u0000\u0004\nstrq\nX\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011r\u0000\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\bEY\u0000\u0003hO)k+\u0000\u0004\u001d\u0000\u0006hY\u0000)),%k+\u0000\u0004\u001d\u0000\f),%EY\u0000t)),%k+\u0000\u0004\u001d\u0000\f),%EY\u0000])),%k+\u0000\u0004\u001d\u0000\f),%EY\u0000F),%EO\u001d\u0000\u000b)k+\u0000\bY\u00001\u0014\u0000\u001cel\f\u0000\nEOjl\f\u0000\fOj\f\u0000\rW\u0000\u0014X\u0000\u000e\u0000\u000fa\u0000\u0010a\u0000\u0011,%j\f\u0000\u0012O\u000f\u000f\u0011\u0000aOOOOOOOL\u0000\tOL\u0000\nOL\u0000\u000bOL\u0000\fOL\u0000\rOL\u0000\u000eOL\u0000\u000fOL\u0000\u0010OL\u0000\u0011OL\u0000\u0012OL\u0000\u0013OL\u0000\u0014OL\u0000\u0015OL\u0000\u0016OL\u0000\u0017OL\u0000\u0018OL\u0000\u0019OL\u0000\u001aOL\u0000\u001b\u000f\n\u0000\u0004\nplst\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011\u0000\u0013K\u0000\u0002SOkvl\f\u0000\u0004\u000f\u000f\u000e$\"\u0000\u0007\u0010W\u001fVU$$T\u000bW\u0000\n0\u0000\u0006q_join\u0000\u0000\u000eV\u0000\u0002\u0004S$\u0003S\u0000\u0002\u000e$\u0000\u0002\u0000RQ\u000bR\u0000\u00050\u0000\u0001l\u0000\u0000\u000bQ\u0000\t0\u0000\u0005delim\u0000\u0000\u0002U\u0000\u0000\u0010$\u0000\u0005PONML\u000bP\u0000\u00050\u0000\u0001l\u0000\u0000\u000bO\u0000\t0\u0000\u0005delim\u0000\u0000\u000bN\u0000\u00050\u0000\u0001i\u0000\u0000\u000bM\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000bL\u0000\n0\u0000\u0006output\u0000\u0000\u0010$\u0000\u000bKJIH \rGF \u001dEDC\nK\u0000\u0004\npcls\nJ\u0000\u0004\nlist\nI\u0000\u0004\nmsng\nH\u0000\u0004\nbool\nG\u0000\u0004\nleng\nF\u0000\u0004\ncobj\nE\u0000\u0004\nascr\nD\u0000\u0004\ntxdl\nC\u0000\u0004\nctxt\u0011T\u0000X,\u0001\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000$k,Ekh\u001c\u0000\u0002\/\u0000\u001d\u0000\u000b\/FY\u0000\u0003h[OYO,EO,FO&EO,FO\u000f\u000f\u000e$#\u0000\u0007\u0010B AA@$$?\u000bB\u0000\u000b0\u0000\u0007q_split\u0000\u0000\u000eA\u0000\u0002\u0004>$\u0003>\u0000\u0002\u000e$\u0000\u0002\u0000=<\u000b=\u0000\u00050\u0000\u0001s\u0000\u0000\u000b<\u0000\t0\u0000\u0005delim\u0000\u0000\u0002@\u0000\u0000\u0010$\u0000\u0004;:98\u000b;\u0000\u00050\u0000\u0001s\u0000\u0000\u000b:\u0000\t0\u0000\u0005delim\u0000\u0000\u000b9\u0000\u00160\u0000\tolddelims\u0000\toldDelims\u000b8\u0000\n0\u0000\u0006output\u0000\u0000\u0010$\u0000\u0003765\n7\u0000\u0004\nascr\n6\u0000\u0004\ntxdl\n5\u0000\u0004\ncitm\u0011?\u0000\u001b,EO,FO-EO,FO\u000f\u000f\u000e$$\u0000\u0007\u00104 d32$$1\u000b4\u0000\u00110\u0000\rq_file_exists\u0000\u0000\u000e3\u0000\u0002\u00040$\u00030\u0000\u0001\u000e$\u0000\u0001\u0000\/\u000b\/\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u00022\u0000\u0000\u0010$\u0000\u0001.\u000b.\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0010$\u0000\u0005- z,+*\u000b-\u0000\u00110\u0000\rq_path_exists\u0000\u0000\n,\u0000\u0004\nditm\n+\u0000\u0004\npcls\n*\u0000\u0004\nfile\u00111\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e$%\u0000\u0007\u0010) ('$$&\u000b)\u0000\u00130\u0000\u000fq_folder_exists\u0000\u0000\u000e(\u0000\u0002\u0004%$\u0003%\u0000\u0001\u000e$\u0000\u0001\u0000$\u000b$\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002'\u0000\u0000\u0010$\u0000\u0001#\u000b#\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0010$\u0000\u0005\" ! \u001f\u000b\"\u0000\u00110\u0000\rq_path_exists\u0000\u0000\n!\u0000\u0004\nditm\n \u0000\u0004\npcls\n\u001f\u0000\u0004\ncfol\u0011&\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e$&\u0000\u0007\u0010\u001e \u001d\u001c$$\u001b\u000b\u001e\u0000\u00110\u0000\rq_path_exists\u0000\u0000\u000e\u001d\u0000\u0002\u0004\u001a$\u0003\u001a\u0000\u0001\u000e$\u0000\u0001\u0000\u0019\u000b\u0019\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u0002\u001c\u0000\u0000\u0010$\u0000\u0002\u0018\u0017\u000b\u0018\u0000\u00120\u0000\u0007thepath\u0000\u0007thePath\u000b\u0017\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010$\u0000\n\u0016\u0015\u0014\u0013\u0012 \u0011\u0010\u000f\n\u0016\u0000\u0004\nmsng\u000b\u0015\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0014\u0000\u0004\nbool\n\u0013\u0000\u0004\npcls\n\u0012\u0000\u0004\nalis\n\u0011\u0000\u0004\npsxf\u000b\u0010\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u000f\u0000\u0000\u0011\u001b\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e$'\u0000\u0007\u0010\u000e \r\f$$\u000b\u000b\u000e\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\u000e\r\u0000\u0002\u0004\n$\u0003\n\u0000\u0001\u000e$\u0000\u0001\u0000\t\u000b\t\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\f\u0000\u0000\u0010$\u0000\u0001\b\u000b\b\u0000\u00070\u0000\u0003str\u0000\u0000\u0010$\u0000\u0003\u0007\u0006\u0005\n\u0007\u0000\u0004\nmsng\u000b\u0006\u0000\n0\u0000\u0006q_trim\u0000\u0000\n\u0005\u0000\u0004\nleng\u0011\u000b\u0000\u0019\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e$(\u0000\u0007\u0010\u0004 \u0003\u0002$$\u0001\u000b\u0004\u0000\n0\u0000\u0006q_trim\u0000\u0000\u000e\u0003\u0000\u0002\u0004\u0000$\u0003\u0000\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0002\u0000\u0000\u0010$\u0000\u0002\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010$\u0000\u000f!\u0015!-!)!C!?\n\u0000\u0004\npcls\n\u0000\u0004\nctxt\n\u0000\u0004\nTEXT\n\u0000\u0004\nbool\n\u0000\u0004\nmsng\n\u0000\u0004\ncobj\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0003\u0001\u0000\u0000\u0011\u0001\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000f\u000e$)\u0000\u0007\u0010!J$$\u000b\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00070\u0000\u0003lst\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0004\u000b\u0000\u00070\u0000\u0003lst\u0000\u0000\u000b\u0000\u00050\u0000\u0001l\u0000\u0000\u000b\u0000\f0\u0000\u0004lref\u0000\u0004lRef\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010$\u0000\t\n\u0000\u0004\nmsng\n\u0000\u0004\npcls\n\u0000\u0004\nlist\n\u0000\u0004\nbool\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npcnt\u000b\u0000\u00100\u0000\fq_clean_list\u0000\u0000\u0011\u0000i\u0000\n\u0000\t,\u0001&\u001d\u0000\u0007\u000fY\u0000\u0003hOjvEO\u0017\u0000H[l\f\u0000\u0006kh\u001b\u0000\u0002,EO\u0001\u001d\u0000),\u0001\u001d\u0000\t6FY\u0000\u0017,\u0000\u001d\u0000\u000e)k+\u0000\b6FY\u0000\u0003hY\u0000\u0003h[OYO\u000f\u000f\u000e$*\u0000\u0007\u0010!$$\u000b\u0000\f0\u0000\bq_encode\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0004\u000b\u0000\u00070\u0000\u0003str\u0000\u0000\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\u000b\u0000\f0\u0000\u0004sref\u0000\u0004sRef\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\u0010$\u0000\u001b!!!!!!!!!!!!!\"\u0003\"\t\"\u0011\"\u001c\n\u0000\u0004\npcls\n\u0000\u0004\nctxt\u000b\u0000\u000e0\u0000\nq_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npcnt\n\u0000\u0004\ntab \u0003\u0000\u0006\u0011\u0000,\u0001\n\u0000\n)k+\u0000\u0002&\u001d\u0000\u0007\u000fY\u0000\u0003hOEO\u0017\u0000[l\f\u0000\u0007kh\u001b\u0000\u0002,EOv\b\u001d\u0000pa\u0000\u0010\u0000\u001d\u0000\fa\u0000\u0011%EY\u0000[a\u0000\u0012\u0000\u001d\u0000\fa\u0000\u0013%EY\u0000Ia\u0000\u0014\u0000\u001d\u0000\fa\u0000\u0015%EY\u00007a\u0000\u0016\u0000\u001d\u0000\fa\u0000\u0017%EY\u0000%a\u0000\u0018\u0000\u001d\u0000\fa\u0000\u0019%EY\u0000\u0013\u0000\u001d\u0000\fa\u0000\u001a%EY\u0000\u0003hY\u0000\u0007%E[OYtO\u000f\u000f\u000e$+\u0000\u0007\u0010\"'$$\u000b\u0000\u00160\u0000\u0012q_date_to_unixdate\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0010$\u0000\r\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u000b\u0000\u00050\u0000\u0001d\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u000b\u0000\u00050\u0000\u0001b\u0000\u0000\u000b\u0000\u00050\u0000\u0001m\u0000\u0000\u000b\u0000\u00140\u0000\bunixdate\u0000\bUnixDate\u000b\u0000\u00070\u0000\u0003h24\u0000\u0000\u000b\u0000\u00070\u0000\u0003h12\u0000\u0000\u000b\u0000\b0\u0000\u0004ampm\u0000\u0000\u000b\u0000\u00070\u0000\u0003min\u0000\u0000\u000b\u0000\u00050\u0000\u0001s\u0000\u0000\u000b\u0000\f0\u0000\bunixtime\u0000\u0000\u0010$\u0000\u001b\"Z\"^\"\"\"\"\"\n\u0000\u0004\nday \n\u0000\u0004\nyear\n\u0000\u0004\ntime\n\u0000\u0004\njan \n\u0000\u0004\nmnth\u0007\u0000\u0004\u0000&%\u0007\u0000\u0004`\u0003'\u0010\u0003\u0000d\n\u0000\u0004\nctxt\u0003\u0000\u0005\u0003\u0000\u0006\u0003\u0000\u0007\u0003\u0000\b\u0003\u0000\u0004\n\u0000\u0004\nhour\u0003\u0000\u000b\u0003\u0000\f\n\u0000\u0004\nmin \u0007\u0000\u0004\u0000\u000fB@\u0011\u0000E[,EZ[,EZ[,EZOEQO,FO\u001f\u001f\"EO \u001e\u001e&\u0012\u0000-*[\\[Z\\Z2%*[\\[Z\\Z2%%*[\\[Zk\\Za\u0000\u00102%EUO_\u0000\u0011\"EOa\u0000\u0012\u001ea\u0000\u0013#k\u001eEO\u0000\u001d\u0000\na\u0000\u0014EY\u0000\u0007a\u0000\u0015EO_\u0000\u0011#_\u0000\u0016\"EO_\u0000\u0016#EOa\u0000\u0017 \u001e \u001e\u001e&\u0012\u00003*[\\[Zl\\Zm2a\u0000\u0018%*[\\[Za\u0000\u0010\\Z2%a\u0000\u0019%*[\\[Z\\Z2%%EUOa\u0000\u001a%%\u000f\u000f\u000e$,\u0000\u0007\u0010\"$$\u000b\u0000\u00160\u0000\u0012q_unixdate_to_date\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\u001a0\u0000\u000btheunixdate\u0000\u000btheUnixDate\u0002\u0000\u0000\u0010$\u0000\u0001\u000b\u0000\u001a0\u0000\u000btheunixdate\u0000\u000btheUnixDate\u0010$\u0000\u0001\n\u0000\u0004\nldt \u0011\u0000\u0007*\/E\u000f\u000f\u000e$-\u0000\u0007\u0010\"$$\u000b\u0000\u00170\u0000\u0013q_timestamp_to_date\u0000\u0000\u000e\u0000\u0002\u0004$\u0003\u0000\u0001\u000e$\u0000\u0001\u0000\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\u0002\u0000\u0000\u0010$\u0000\u0003\u000b\u0000\r0\u0000\ttimestamp\u0000\u0000\u000b\u0000\u00050\u0000\u0001h\u0000\u0000\u000b\u0000\n0\u0000\u0006mydate\u0000\u0000\u0010$\u0000\u0014\"\"\n\u0000\u0004\nleng\u0003\u0000\r\n\u0000\u0004\ncha \u0003\n\u0000\u0004\nctxt\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0000\u0004\ncwor\n\u0000\u0004\nlong\n\u0000\u0004\nyear\n\u0000\u0004\nmnth\n\u0000\u0004\nday \u0003\u0000\u0004\n\u0000\u0004\nhour\u0003\u0000\u0005\n\u0000\u0004\nmin \u0003\u0000\u0006\n\u0000\u0004\nscnd\u0011\u0000},\u0000\u001d\u0000\u0014[\\[Zk\\Z2&EY\u0000\u0003hO%%j\f\u0000\u0007EO*j\f\u0000\bEOk\/&,FOl\/&,FOm\/&,FO\/&,FOa\u0000\u0010\/&a\u0000\u0011,FOa\u0000\u0012\/&a\u0000\u0013,FO\u000f\u000f\u000e$.\u0000\u0007\u0010#H$$~\u000b\u0000\u00170\u0000\u0013q_date_to_timestamp\u0000\u0000\u000e\u0000\u0002\u0004}$\u0003}\u0000\u0001\u000e$\u0000\u0001\u0000|\u000b|\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0010$\u0000\u0001{\u000b{\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0010$\u0000\u0006zy#Yxwv\nz\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\ny\u0000\u0004\nldt \nx\u0000\u0018.sysoGMT long\u0000\u0000\u0010\u0000\u0000null\nw\u0000\u0004\nmile\nv\u0000\u0004\nctxt\u0011~\u0000\u0016*j\f\u0000\u0000)\/\u001f*j\f\u0000\u0003\u001f&&\u000f\u000f\u000e$\/\u0000\u0007\u0010u#_ts$$r\u000bu\u0000\u00170\u0000\u0013q_send_notification\u0000\u0000\u000et\u0000\u0002\u0004q$\u0003q\u0000\u0003\u000e$\u0000\u0003\u0000pon\u000bp\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u000bo\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\u000bn\u0000\u00140\u0000\btheextra\u0000\btheExtra\u0002s\u0000\u0000\u0010$\u0000\u0004mlkj\u000bm\u0000\u00180\u0000\nthemessage\u0000\ntheMessage\u000bl\u0000\u00180\u0000\nthedetails\u0000\ntheDetails\u000bk\u0000\u00140\u0000\btheextra\u0000\btheExtra\u000bj\u0000\t0\u0000\u0005_path\u0000\u0000\u0010$\u0000\u0013#li#u#{h###g##f#e###dc\ni\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\nh\u0000\u0004\nmsng\u000bg\u0000\n0\u0000\u0006q_trim\u0000\u0000\nf\u0000\u0004\nbool\ne\u0000\u0004\nstrq\u0001d\u0000\u0000\u0002c\u0000\u0000\u0011r\u0000j\f\u0000\u0001EO\u0007\u000b\u001d\u0000\n%EY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO\u0000\u001d\u0000\bEY\u0000\u0003hO)k+\u0000\b\u0000\t\u0000\f)k+\u0000\b\u0000&\u001d\u0000\bEY\u0000\u0003hO\u0014\u0000 ,%,%%,%a\u0000\u0010%,%j\f\u0000\u0001W\u0000\bX\u0000\u0011\u0000\u0012h\u000f\u000e$0\u0000\u0007\u0010b#a`$$_\u000bb\u0000\f0\u0000\bq_notify\u0000\u0000\u0002a\u0000\u0000\u0002`\u0000\u0000\u0010$\u0000\u0000\u0010$\u0000\u0004###^\u000b^\u0000\u00170\u0000\u0013q_send_notification\u0000\u0000\u0011_\u0000\t)m+\u0000\u0003\u000f\u000e$1\u0000\u0007\u0010]#\\[$$Z\u000b]\u0000\u00100\u0000\fq_encode_url\u0000\u0000\u000e\\\u0000\u0002\u0004Y$\u0003Y\u0000\u0001\u000e$\u0000\u0001\u0000X\u000bX\u0000\u00070\u0000\u0003str\u0000\u0000\u0002[\u0000\u0000\u0010$\u0000\u0001W\u000bW\u0000\u00070\u0000\u0003str\u0000\u0000\u0010$\u0000\u0007#V$\u0000UTSR\nV\u0000\u0004\nstrq\nU\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0001T\u0000\u0000\u0002S\u0000\u0000\nR\u0000\u0004\nmsng\u0011Z\u0000\u001a\u0014\u0000\u0011,%%j\f\u0000\u0003\u000fW\u0000\tX\u0000\u0004\u0000\u0005\u000f\u000f\u000e$2\u0000\u0007\u0010Q$\u0005PO$$N\u000bQ\u0000\u00100\u0000\fq_decode_url\u0000\u0000\u000eP\u0000\u0002\u0004M$\u0003M\u0000\u0001\u000e$\u0000\u0001\u0000L\u000bL\u0000\u00070\u0000\u0003str\u0000\u0000\u0002O\u0000\u0000\u0010$\u0000\u0001K\u000bK\u0000\u00070\u0000\u0003str\u0000\u0000\u0010$\u0000\u0007$\u0017J$\u001cIHGF\nJ\u0000\u0004\nstrq\nI\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0001H\u0000\u0000\u0002G\u0000\u0000\nF\u0000\u0004\nmsng\u0011N\u0000\u001a\u0014\u0000\u0011,%%j\f\u0000\u0003\u000fW\u0000\tX\u0000\u0004\u0000\u0005\u000f\u000f\u0010\u0019\u0000\u001cE$:\u0019$$$$$$$V$W$X$Y$Z$[$\\$]$^$_$`$a$b$c$d$e$f$g$h\u0001E\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000j\u0000a\u0000c\u0000k\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000\/\u000e$\u0000\u0001$\u0011$\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000j\u0000a\u0000c\u0000k\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000\/\u000e$\u0000\u0001$\u0011$\u0000>\u0000c\u0000o\u0000m\u0000.\u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000r\u0000o\u0000a\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u000e$\u0000\u0001$\u0011$\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000j\u0000a\u0000c\u0000k\u0000\/\u0000D\u0000r\u0000o\u0000p\u0000b\u0000o\u0000x\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000\/\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000s\u0000\/\u0000u\u0000s\u0000e\u0000r\u0000.\u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000.\u00007\u00004\u0000D\u00006\u00006\u0000E\u00009\u00003\u0000-\u00004\u0000C\u00009\u00005\u0000-\u00004\u00000\u0000C\u0000E\u0000-\u0000B\u00009\u00003\u0000F\u0000-\u0000E\u00008\u00009\u00002\u00003\u00007\u0000A\u00004\u0000C\u0000F\u0000A\u0000B\u0000\/\u000e$\u0000\u0001$\u0011$\u0000\u0016\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000j\u0000a\u0000c\u0000k\u000e$\u0000\u0002\u0004DC\u0003D\u0000\u0000\u0001C\u0000\u0000\u000e\u0001J\u0000\u0002\u0004B$\u0003B\u0000\u0001\u000e$\u0000\u0010\u0000\u0001MA@?>=<;:9876543\u0006\u0001M\u0000\u00032$$\u000b2\u0000\u00070\u0000\u0003uid\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00003\u0000C\u00003\u00003\u00007\u00009\u00001\u0000B\u0000-\u00006\u0000A\u00000\u00009\u0000-\u00004\u0000B\u00006\u0000D\u0000-\u0000B\u00001\u0000E\u0000A\u0000-\u00008\u0000C\u0000A\u0000C\u00007\u00008\u00007\u00002\u00004\u00005\u0000C\u0000F\u0006$\u0000\u00031$$\u000b1\u0000\t0\u0000\u0005title\u0000\u0000\u000e$\u0000\u0001$\u0011$\u00002\u00004\u00000\u00004\u0000 \u0000p\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000u\u0000r\u0000r\u0000e\u0000a\u0000l\u0000 \u0000r\u0000o\u0000a\u0000d\u0006$\u0000\u00030$$\u000b0\u0000\u00100\u0000\fcreationdate\u0000\u0000\u000f$\u0000\f\rldt \u0000\u0000\u0000\u0000\u0331\u0005\u0006$\u0000\u0003\/.$\u000b\/\u0000\u000e0\u0000\nimportance\u0000\u0000\u0003.\u0000\u0000\u0006$\u0000\u0003-$,\u000b-\u0000\u000e0\u0000\nparentlist\u0000\u0000\u000e$\u0000\u0001$\u0011$\u0000\u0012\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0006,\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u00013\u0000\u0000\u000e\u0001K\u0000\u0002\u0004+$\u0003+\u0000\u0010\u000e$\u0000\u0010\u0000$$$$$$$$$$$$$$$$\u000e$\u0000\u0001\u0014$\u000e$\u0000\u0004\u0019$*$)\u000f$\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000rmnd\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001X\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0001;\rReminders.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001?<\u036d\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u036d{\u0000\u0000\u0000\u0001\u0000\u0004\u0001;\u0000\u0002\u0000(Macintosh HD:Applications:\u0000Reminders.app\u0000\u000e\u0000\u001c\u0000\r\u0000R\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u001aApplications\/Reminders.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\n*\u0000\u0004\nremi\u000e$\u0000\u0001$\u0011$\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00003\u0000C\u00003\u00003\u00007\u00009\u00001\u0000B\u0000-\u00006\u0000A\u00000\u00009\u0000-\u00004\u0000B\u00006\u0000D\u0000-\u0000B\u00001\u0000E\u0000A\u0000-\u00008\u0000C\u0000A\u0000C\u00007\u00008\u00007\u00002\u00004\u00005\u0000C\u0000F\n)\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0000\u000e%\u0000\u0000\u0004\u0019$(%\u0001'\n(\u0000\u0004\nremi\u000e%\u0001\u0000\u0001%\u0002\u0011%\u0002\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00004\u0000A\u00000\u00009\u00009\u00002\u00000\u0000B\u0000-\u00002\u00007\u00002\u00006\u0000-\u00004\u00009\u00005\u0000B\u0000-\u00008\u0000D\u00005\u0000D\u0000-\u00000\u0000B\u0000B\u00005\u00006\u00000\u00008\u00002\u00003\u0000C\u0000D\u00004\n'\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0003\u000e%\u0003\u0000\u0004\u0019$&%\u0004%\n&\u0000\u0004\nremi\u000e%\u0004\u0000\u0001%\u0005\u0011%\u0005\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00000\u0000B\u00000\u0000D\u0000E\u00001\u00002\u0000A\u0000-\u0000C\u0000D\u00001\u0000A\u0000-\u00004\u00007\u00004\u0000C\u0000-\u0000A\u00004\u00009\u00003\u0000-\u00001\u00000\u00007\u00000\u0000F\u0000C\u00007\u00001\u0000B\u0000A\u00000\u0000D\n%\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0006\u000e%\u0006\u0000\u0004\u0019$$%\u0007#\n$\u0000\u0004\nremi\u000e%\u0007\u0000\u0001%\b\u0011%\b\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00000\u00008\u00001\u0000F\u00009\u00002\u0000E\u0000C\u0000-\u0000C\u00000\u0000D\u00008\u0000-\u00004\u00002\u0000A\u0000C\u0000-\u0000A\u00002\u00002\u0000D\u0000-\u00003\u00002\u00002\u0000E\u00006\u0000F\u0000B\u00007\u00003\u0000F\u00004\u0000D\n#\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\t\u000e%\t\u0000\u0004\u0019$\"%\n!\n\"\u0000\u0004\nremi\u000e%\n\u0000\u0001%\u000b\u0011%\u000b\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u0000E\u0000D\u00009\u0000F\u00005\u00000\u00001\u0000F\u0000-\u00007\u0000F\u00007\u00001\u0000-\u00004\u0000A\u0000F\u00001\u0000-\u0000B\u00004\u00001\u0000A\u0000-\u0000A\u0000B\u0000C\u0000B\u00007\u00009\u00007\u00006\u00007\u00002\u0000A\u00006\n!\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\f\u000e%\f\u0000\u0004\u0019$ %\r\u001f\n \u0000\u0004\nremi\u000e%\r\u0000\u0001%\u000e\u0011%\u000e\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00008\u0000E\u00004\u0000E\u00006\u00008\u0000C\u0000C\u0000-\u00003\u0000D\u00004\u00003\u0000-\u00004\u00002\u0000D\u00003\u0000-\u0000B\u00004\u00008\u0000D\u0000-\u0000A\u0000B\u00005\u00006\u00006\u00003\u00003\u0000F\u00004\u00001\u0000A\u0000A\n\u001f\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u000f\u000e%\u000f\u0000\u0004\u0019$\u001e%\u0010\u001d\n\u001e\u0000\u0004\nremi\u000e%\u0010\u0000\u0001%\u0011\u0011%\u0011\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u0000F\u00003\u00008\u00003\u0000F\u0000E\u0000E\u0000F\u0000-\u00001\u00009\u00006\u00005\u0000-\u00004\u0000F\u00003\u0000F\u0000-\u00008\u0000E\u0000E\u0000E\u0000-\u00004\u0000F\u0000E\u0000D\u00002\u00002\u00004\u00001\u00001\u0000F\u00004\u00009\n\u001d\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0012\u000e%\u0012\u0000\u0004\u0019$\u001c%\u0013\u001b\n\u001c\u0000\u0004\nremi\u000e%\u0013\u0000\u0001%\u0014\u0011%\u0014\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00007\u0000D\u00002\u00000\u00002\u0000B\u00005\u00008\u0000-\u0000A\u00003\u00002\u0000D\u0000-\u00004\u00004\u0000D\u0000F\u0000-\u0000A\u00000\u00003\u00004\u0000-\u0000F\u00009\u00001\u0000D\u00001\u00004\u00007\u00002\u0000A\u00007\u00003\u00009\n\u001b\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0015\u000e%\u0015\u0000\u0004\u0019$\u001a%\u0016\u0019\n\u001a\u0000\u0004\nremi\u000e%\u0016\u0000\u0001%\u0017\u0011%\u0017\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00005\u00001\u0000C\u00008\u00009\u00009\u00002\u00009\u0000-\u00007\u00002\u00001\u00003\u0000-\u00004\u00009\u00004\u0000D\u0000-\u00009\u00003\u0000C\u0000F\u0000-\u00009\u00002\u00005\u0000A\u00006\u0000D\u00004\u0000B\u00000\u00006\u00005\u0000C\n\u0019\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u0018\u000e%\u0018\u0000\u0004\u0019$\u0018%\u0019\u0017\n\u0018\u0000\u0004\nremi\u000e%\u0019\u0000\u0001%\u001a\u0011%\u001a\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00005\u0000C\u0000A\u00001\u00004\u00005\u0000A\u00001\u0000-\u0000F\u0000B\u00008\u0000A\u0000-\u00004\u00001\u0000B\u00005\u0000-\u0000A\u0000F\u00002\u00009\u0000-\u0000E\u00005\u00006\u00007\u0000D\u00000\u00009\u0000F\u0000B\u0000F\u0000C\u0000C\n\u0017\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u001b\u000e%\u001b\u0000\u0004\u0019$\u0016%\u001c\u0015\n\u0016\u0000\u0004\nremi\u000e%\u001c\u0000\u0001%\u001d\u0011%\u001d\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00006\u00008\u00009\u0000A\u0000B\u0000B\u00002\u0000F\u0000-\u00009\u0000A\u00005\u0000F\u0000-\u00004\u00001\u00005\u00004\u0000-\u00008\u0000B\u00006\u0000B\u0000-\u00008\u00003\u00002\u00009\u00002\u00008\u00005\u0000E\u00000\u00001\u0000C\u00008\n\u0015\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%\u001e\u000e%\u001e\u0000\u0004\u0019$\u0014%\u001f\u0013\n\u0014\u0000\u0004\nremi\u000e%\u001f\u0000\u0001% \u0011% \u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u0000F\u00001\u0000A\u00001\u00008\u00001\u0000B\u0000F\u0000-\u00002\u00002\u0000B\u00007\u0000-\u00004\u0000B\u00002\u00006\u0000-\u00008\u00006\u0000F\u0000F\u0000-\u00009\u00009\u00007\u00003\u00006\u0000C\u0000A\u00006\u0000D\u00001\u00000\u00006\n\u0013\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%!\u000e%!\u0000\u0004\u0019$\u0012%\"\u0011\n\u0012\u0000\u0004\nremi\u000e%\"\u0000\u0001%#\u0011%#\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u0000A\u00005\u00008\u00000\u0000D\u00002\u0000F\u0000C\u0000-\u00004\u00006\u00003\u00005\u0000-\u00004\u0000D\u00005\u00003\u0000-\u0000B\u0000E\u00009\u00002\u0000-\u0000C\u0000E\u0000A\u00009\u00006\u00003\u00004\u00000\u0000F\u00006\u00002\u0000C\n\u0011\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%$\u000e%$\u0000\u0004\u0019$\u0010%%\u000f\n\u0010\u0000\u0004\nremi\u000e%%\u0000\u0001%&\u0011%&\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00008\u00007\u00003\u00008\u0000F\u0000E\u00005\u0000A\u0000-\u0000A\u00000\u00006\u00003\u0000-\u00004\u00009\u0000F\u0000F\u0000-\u0000A\u00006\u0000B\u00008\u0000-\u00002\u00002\u00001\u00006\u0000F\u00002\u0000A\u0000E\u00009\u00009\u00004\u00007\n\u000f\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%'\u000e%'\u0000\u0004\u0019$\u000e%(\r\n\u000e\u0000\u0004\nremi\u000e%(\u0000\u0001%)\u0011%)\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u00004\u00005\u00000\u0000C\u0000B\u0000E\u0000A\u00008\u0000-\u00007\u0000A\u0000D\u00009\u0000-\u00004\u00006\u0000A\u00008\u0000-\u0000A\u00008\u0000E\u00004\u0000-\u00005\u0000E\u00000\u00002\u0000A\u00004\u00001\u00006\u00007\u0000E\u00006\u0000A\n\r\u0000\b\u000bkfrmID \u000e$\u0000\u0001\u0014%*\u000e%*\u0000\u0004\u0019$\f%+\u000b\n\f\u0000\u0004\nremi\u000e%+\u0000\u0001%,\u0011%,\u0000n\u0000x\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000-\u0000r\u0000e\u0000m\u0000i\u0000n\u0000d\u0000e\u0000r\u0000:\u0000\/\u0000\/\u0000E\u0000A\u00006\u00001\u0000B\u00007\u00005\u00005\u0000-\u00006\u00001\u00004\u00008\u0000-\u00004\u00000\u00008\u0000F\u0000-\u0000A\u00004\u00006\u0000D\u0000-\u0000A\u0000A\u00008\u0000B\u00002\u00002\u00009\u00004\u00007\u0000D\u0000A\u00002\n\u000b\u0000\b\u000bkfrmID \u000f\u0001L\u0000\f\rldt \u0000\u0000\u0000\u0000^0z\n\u001c\u0000\b\u000bboovfalsascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d71f2edf4f72113fea84ecba3a5278edea77f32c","subject":"updated fmGUI_ScriptDebugger_Close to handle MBS Copy Script Text feature","message":"updated fmGUI_ScriptDebugger_Close to handle MBS Copy Script Text feature\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_FMATools\/fmGUI_ScriptDebugger_Close.applescript","new_file":"library\/fmGUI_FMATools\/fmGUI_ScriptDebugger_Close.applescript","new_contents":"-- fmGUI_ScriptDebugger_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes FileMaker's Script Debugger window\n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): First created. \n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\non run\n\tfmGUI_ScriptDebugger_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ScriptDebugger_Close()\n\t-- version 2020-03-04\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* \n\t\t\t\tIf the MBS Plugin is installed and the \"Copy Script Text\" feature is enabled, \n\t\t\t\tthat is the 1st button, so get the first one after that. If it does not exist, this still works.\n\t\t\t\t*)\n\t\t\t\tclick (first button of (first window whose name is \"Script Debugger\") whose name is not \"Copy Script Text\")\n\t\t\tend try\n\t\t\treturn true\n\t\t\t\n\t\tend tell\n\tend tell\nend fmGUI_ScriptDebugger_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","old_contents":"-- fmGUI_ScriptDebugger_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes FileMaker's Script Debugger window\n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): First created. \n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\non run\n\tfmGUI_ScriptDebugger_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ScriptDebugger_Close()\n\t-- version 2020-03-04\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"Script Debugger\")\n\t\t\tend try\n\t\t\treturn true\n\t\tend tell\n\tend tell\nend fmGUI_ScriptDebugger_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5fcfd18e9e2f7e9c9cd15425665845f6ded7696d","subject":"minor fix","message":"minor fix\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then tell application \"htcLib\" to logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjFromHtcLib(buttonRef)\n\t\t\ttell application \"htcLib\" to windowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet({objRef:objRefStr} & prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:objRefStr} & prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:null})\n-- Daniel A. Shockley, NYHTC\n-- Create\/Update a layout.\n\n\n(*\nHISTORY:\n\t2020-03-03 ( dshockley, hdu ): Updated as standalone function for fm-scripts git repository. Use clickObjectByCoords instead of clickObjFromHtcLib.\n\t-- 1.4 - 2017-06-14 ( eshagdar ): narrowed scope\n\t-- 1.3 - 2017-05-18 ( eshagdar ): updated for FM15.\n\t-- 1.2 - 2016-08-24 ( eshagdar ): wait until 'Layout Setup' window comes up.\n\t-- 1.1 - 2013-11-22 ( dshockley ): If oldLayoutName is specified, will look for and change layout name, even if otherwise doNotChangeExisting. \n\t\n\t-- TODO: NOT HANDLING SCRIPT TRIGGERS YET!!! 2013-11-20-dshockley\n\n\nREQUIRES:\n\tclickObjectByCoords\n\tlogConsole\n\tfmGUI_CheckboxSet\n\tfmGUI_DataViewer_Close\n\tfmGUI_ManageLayouts_LayoutFolderSelect\n\tfmGUI_ManageLayouts_Open\n\tfmGUI_ManageLayouts_PopupNewItemOfType\n\tfmGUI_ManageLayouts_Select\n\tfmGUI_PopupSet\n\twindowWaitUntil_FrontIS\n*)\n\n\non run\n\tfmGUI_ManageLayouts_Layout_CreateOrUpdate({layoutName:\"Directory\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {layoutName:null, oldLayoutName:null, doNotChangeExisting:false, baseTableName:null, layoutParentFolder:\"\", includeInLayoutMenus:0, menuSet:null, formViewEnabled:1, listViewEnabled:1, tableViewEnabled:1, defaultView:\"Form View\", scriptTriggers:{}}\n\t\n\tset layoutOptions to layoutOptions & defaultPrefs\n\t\n\tset layoutName to layoutName of layoutOptions\n\tset oldLayoutName to oldLayoutName of layoutOptions\n\t\n\t-- Select a Layout and Edit it, or create it if it didn't exist yet.\n\ttry\n\t\tfmGUI_DataViewer_Close()\n\t\tfmGUI_ManageLayouts_Open({})\n\t\t\n\t\t-- INIT: \n\t\tset foundThisLayout to false\n\t\tset foundOldLayout to false\n\t\tset layoutSelected to false\n\t\t\n\t\t\n\t\tset foundThisLayout to fmGUI_ManageLayouts_Select({layoutName:layoutName})\n\t\tset layoutSelected to foundThisLayout\n\t\t\n\t\t\n\t\tif oldLayoutName is not null then\n\t\t\tset foundOldLayout to fmGUI_ManageLayouts_Select({layoutName:oldLayoutName})\n\t\t\tif foundThisLayout and foundOldLayout then\n\t\t\t\terror \"Couldn't fmGUI_ManageLayouts_Layout_CreateOrUpdate: Both the old '\" & oldLayoutName & \"' and the 'new' layout name '\" & layoutName & \"' already exist - PROBLEM!\"\n\t\t\telse if foundOldLayout then\n\t\t\t\tset layoutSelected to true\n\t\t\tend if\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tset manageLayoutsWindow to window 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tif layoutSelected then\n\t\t\tif doNotChangeExisting of layoutOptions and not foundOldLayout then\n\t\t\t\t-- do NOT change if it already exists with the correct name.\n\t\t\telse\n\t\t\t\t-- exists and was selected, so click Edit: \n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"Edit\"\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\tclickObjectByCoords(buttonRef)\n\t\t\t\twindowWaitUntil_FrontIS({windowName:\"Layout Setup\"})\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tset layoutSetupDialog to window 1\n\t\t\t\t\t\tset interfaceParent to tab group 1 of layoutSetupDialog\n\t\t\t\t\t\t\n\t\t\t\t\t\tif foundOldLayout then\n\t\t\t\t\t\t\t-- need to rename this layout:\n\t\t\t\t\t\t\tset value of text field \"Layout Name\" of interfaceParent to layoutName\n\t\t\t\t\t\tend if\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif doNotChangeExisting of layoutOptions then\n\t\t\t\t\t\n\t\t\t\telse -- ALLOWED to CHANGE the other properties of the layout:\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"General\")\n\t\t\t\t\t\t\tset showRecordsButton to pop up button \"Show records from:\" of interfaceParent\n\t\t\t\t\t\t\tset inludeInMenuButton to checkbox \"Include in layout menus\" of interfaceParent\n\t\t\t\t\t\t\tset menuSetButton to pop up button \"Menu Set:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\tif baseTableName of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(showRecordsButton), objValue:baseTableName of layoutOptions})\n\t\t\t\t\tif includeInLayoutMenus of layoutOptions is not null then fmGUI_CheckboxSet(inludeInMenuButton, includeInLayoutMenus of layoutOptions)\n\t\t\t\t\tif menuSet of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(menuSetButton), objValue:menuSet of layoutOptions})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tclick (first radio button of interfaceParent whose name is \"Views\")\n\t\t\t\t\t\t\tset formCheckbox to checkbox \"Form View\" of interfaceParent\n\t\t\t\t\t\t\tset listCheckbox to checkbox \"List View\" of interfaceParent\n\t\t\t\t\t\t\tset tableCheckbox to checkbox \"Table View\" of interfaceParent\n\t\t\t\t\t\t\tset defaultButton to pop up button \"Default view:\" of interfaceParent\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif formViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(formCheckbox, formViewEnabled of layoutOptions)\n\t\t\t\t\tif listViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(listCheckbox, listViewEnabled of layoutOptions)\n\t\t\t\t\tif tableViewEnabled of layoutOptions is not null then fmGUI_CheckboxSet(tableCheckbox, tableViewEnabled of layoutOptions)\n\t\t\t\t\tif defaultView of layoutOptions is not null then fmGUI_PopupSet({objRef:my coerceToString(defaultButton), objValue:defaultView of layoutOptions})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick button \"OK\" of layoutSetupDialog\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend if\n\t\t\t\n\t\t\t-- END IF: existing to edit.\n\t\t\t\n\t\telse\n\t\t\t-- BEGIN: does not exist - need to create it:\n\t\t\t\n\t\t\tif length of (layoutParentFolder of layoutOptions) is greater than 0 then\n\t\t\t\t-- create it IN a layout folder:\n\t\t\t\t-- Select the folder, or create it if it doesn't exist yet:\n\t\t\t\tif not fmGUI_ManageLayouts_LayoutFolderSelect(layoutParentFolder of layoutOptions) then\n\t\t\t\t\tfmGUI_ManageLayouts_PopupNewItemOfType(\"Folder\")\n\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\tset value of text field \"Folder Name:\" of window 1 to layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tclick button \"OK\" of window 1\n\t\t\t\t\t\t\tset newFolderRow to first row of (outline 1 of scroll area 1 of manageLayoutsWindow) whose value of text field 1 of group 1 is layoutParentFolder of layoutOptions\n\t\t\t\t\t\t\tset checkboxRef to checkbox 1 of newFolderRow\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\t\tfmGUI_CheckboxSet(checkboxRef, 1)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- Create the layout:\n\t\t\tif debugMode then tell application \"htcLib\" to logConsole(ScriptName, \"creating layout: \" & (layoutName of layoutOptions))\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset buttonRef to first button of manageLayoutsWindow whose title is \"New\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\t-- BEGIN: NEW WINDOW CODE\n\t\t\tclickObjFromHtcLib(buttonRef)\n\t\t\ttell application \"htcLib\" to windowWaitUntil_FrontIS({windowName:\"New Layout\/Report\"})\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset newLayoutDialog to window 1\n\t\t\t\t\tset value of text field 1 of newLayoutDialog to layoutName of layoutOptions\n\t\t\t\t\tset buttonRef to pop up button 1 of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\ttell application \"htcLib\" to fmGUI_PopupSet({objRef:my coerceToString(buttonRef), objValue:baseTableName of layoutOptions})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tclick button 4 of newLayoutDialog -- select 'Computer'\n\t\t\t\t\tclick button 6 of newLayoutDialog -- select 'Form'\n\t\t\t\t\t\n\t\t\t\t\t-- we don't care which mode to view in, so Finish:\n\t\t\t\t\tclick button \"Finish\" of newLayoutDialog\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Now, believe it or not, need to call ITSELF since not all options available during Create:\n\t\t\tfmGUI_ManageLayouts_Layout_CreateOrUpdate(layoutOptions)\n\t\t\t\n\t\t\t-- END IF: does not exist - need to create it.\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_ManageLayouts_Layout_CreateOrUpdate '\" & layoutName of layoutOptions & \"' - \" & errMsg number errNum\n\tend try\n\t\n\t\nend fmGUI_ManageLayouts_Layout_CreateOrUpdate\n\n--------------------\n-- END OF CODE\n--------------------\n\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(prefs)\nend clickObjectByCoords\n\non fmGUI_CheckboxSet(prefs)\n\ttell application \"htcLib\" to fmGUI_CheckboxSet(prefs)\nend fmGUI_CheckboxSet\n\non fmGUI_DataViewer_Close()\n\ttell application \"htcLib\" to fmGUI_DataViewer_Close()\nend fmGUI_DataViewer_Close\n\non fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_LayoutFolderSelect(prefs)\nend fmGUI_ManageLayouts_LayoutFolderSelect\n\non fmGUI_ManageLayouts_Open(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Open(prefs)\nend fmGUI_ManageLayouts_Open\n\non fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_PopupNewItemOfType(prefs)\nend fmGUI_ManageLayouts_PopupNewItemOfType\n\non fmGUI_ManageLayouts_Select(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageLayouts_Select(prefs)\nend fmGUI_ManageLayouts_Select\n\non fmGUI_PopupSet(prefs)\n\ttell application \"htcLib\" to fmGUI_PopupSet(prefs)\nend fmGUI_PopupSet\n\non logConsole(prefs)\n\ttell application \"htcLib\" to logConsole(prefs)\nend logConsole\n\non windowWaitUntil_FrontIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontIS(prefs)\nend windowWaitUntil_FrontIS\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c03b3dfb120b1c74ba9b1ced12c9ce4883ed0b49","subject":"Fixed many errors, changed delay, and added more feedback","message":"Fixed many errors, changed delay, and added more feedback\n","repos":"kmlawson\/ZotDevon","old_file":"ZotDevon.applescript","new_file":"ZotDevon.applescript","new_contents":"--Location of this script and its work files:\nset workFolder to \"\/Users\/[your user]\/[path to ZotDevon]\"\n--The name of the group in DevonThink where you wish to create folders\/notes:\nset groupName to \"\/Sources\/\"\n--Name of file containing new entries to add:\nset newFile to \"new.txt\"\n--set the formate you want to have for the title\n-- 1. Author - Title\n-- 2. Title - Author\nset formatOrder to 1\n\n--if you are debugging or have run the findnew.rb script already, set skipscript to one\n--to jump directly to the DevonThink import process. Leave as 0 otherwise.\nset skipScript to 0\n\non split(someText, delimiter)\n\tset AppleScript's text item delimiters to delimiter\n\tset someText to someText's text items\n\tset AppleScript's text item delimiters to {\"\"} --> restore delimiters to default value\n\treturn someText\nend split\n\non readFile(filePath)\n\tset progressFile to ((POSIX file filePath) as string)\n\ttry\n\t\tset fileContents to read file progressFile as class utf8\n\ton error error_message number error_number\n\t\tif the error_number is not -128 then\n\t\t\tif error_number is -39 then\n\t\t\t\t--I think this happens when they are writing and reading at same timetry again\n\t\t\t\tdelay 2\n\t\t\t\tset fileContents to read file progressFile as class utf8\n\t\t\tend if\n\t\tend if\n\tend try\n\treturn fileContents\nend readFile\n\non existsFile(filePath)\n\ttell application \"Finder\" to set fileExists to exists my POSIX file filePath\n\treturn fileExists\nend existsFile\n\non formatTitle(dataArray, type)\n\tset titleData to item 3 of dataArray\n\tif titleData is \"\" then\n\t\tset titleData to \"Untitled\" & item 2 of dataArray\n\tend if\n\tset authorData to item 4 of dataArray\n\tif type is 1 then\n\t\tset returnData to titleData\n\t\tif authorData is not \"\" then\n\t\t\tset returnData to authorData & \" - \" & titleData\n\t\tend if\n\t\treturn cleanTitle(returnData)\n\telse\n\t\tset returnData to titleData\n\t\tif authorData is not \"\" then\n\t\t\tset returnData to titleData & \" - \" & authorData\n\t\tend if\n\t\treturn cleanTitle(returnData)\n\tend if\nend formatTitle\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\non cleanTitle(theTitle)\n\tlog \"Pre: \" & theTitle\n\tset returnData to replace_chars(theTitle, \"\/\", \"-\")\n\tlog \"After: \" & returnData\n\treturn returnData\nend cleanTitle\n\nif skipScript is not 1 then\n\t--check to see if there is a key and udpate file if there isn't then make an empty one\n\tif existsFile(workFolder & \"keys.txt\") is false then\n\t\tset a to do shell script \"touch '\" & workFolder & \"keys.txt'\"\n\tend if\n\tif existsFile(workFolder & \"lastupdate.txt\") is false then\n\t\tset a to do shell script \"touch '\" & workFolder & \"lastupdate.txt'\"\n\tend if\n\t\n\t--check to see if there are leftover backup files and use them if there are\n\tif existsFile(workFolder & \"keys_backup.txt\") or existsFile(workFolder & \"new.txt\") then\n\t\tset myanswer to display dialog \"The last sync did not complete. Do you wish to cancel, look for a backup of pre-import list of entries and ignore any downloaded entries, or first just import already downloaded items and cleanup (You can sync again afterwards).\" buttons {\"Cancel\", \"Look for Backup\", \"Import Downloaded Entries\"} default button 3 cancel button 1\n\t\tif the button returned of myanswer is \"Look for Backup\" then\n\t\t\tif existsFile(workFolder & \"keys_backup.txt\") then\n\t\t\t\tset a to do shell script \"mv '\" & workFolder & \"keys_backup.txt' '\" & workFolder & \"keys.txt'\"\n\t\t\tend if\n\t\t\tif existsFile(workFolder & \"lastupdate.txt\") then\n\t\t\t\tset b to do shell script \"mv '\" & workFolder & \"lastupdate_backup.txt' '\" & workFolder & \"lastupdate.txt'\"\n\t\t\tend if\n\t\telse if the button returned of myanswer is \"Import Downloaded Entries\" then\n\t\t\tif existsFile(workFolder & \"keys_backup.txt\") then\n\t\t\t\tset a to do shell script \"rm '\" & workFolder & \"keys_backup.txt'\"\n\t\t\tend if\n\t\t\tif existsFile(workFolder & \"lastupdate_backup.txt\") then\n\t\t\t\tset a to do shell script \"rm '\" & workFolder & \"lastupdate_backup.txt'\"\n\t\t\tend if\n\t\t\tset skipScript to 1\n\t\tend if\n\tend if\nend if\n\n\nif skipScript is not 1 then\n\t--make a copy of our list of database keys in case something goes wrong during sync\n\tset y to do shell script \"cp '\" & workFolder & \"keys.txt' '\" & workFolder & \"keys_backup.txt'\"\n\tset z to do shell script \"cp '\" & workFolder & \"lastupdate.txt' '\" & workFolder & \"lastupdate_backup.txt'\"\n\t\n\t--run ruby script to determine what IDs are missing\n\tset x to do shell script \"'\" & workFolder & \"findnew.rb' &> \/dev\/null 2>&1 &\"\n\tset startstat to split(readFile(workFolder & \"info.txt\"), \"\/\")\n\tset totalitems to item 2 of startstat\n\tset abortmission to false\n\t\n\ttell application \"ASObjC Runner\"\n\t\t-- set up dialog and show it \n\t\treset progress\n\t\tset properties of progress window to {button title:\"Cancel\", button visible:true, message:\"Checking for new items.\", detail:\"Looking for Zotero items not yet imported.\", indeterminate:false, max value:10, current value:0}\n\t\tactivate\n\t\tshow progress\n\tend tell\n\t\n\tset isdone to false\n\t\n\t--with timeout of 60 seconds\n\trepeat while isdone is false\n\t\tset mystats to split(readFile(workFolder & \"info.txt\"), \"\/\")\n\t\tlog mystats\n\t\ttell application \"ASObjC Runner\"\n\t\t\tset currentitem to item 1 of mystats\n\t\t\tset totalitems to item 2 of mystats\n\t\t\t--reduce chance of annoying error as read\/write happens at same time during large library import\n\t\t\tif totalitems < 200 then\n\t\t\t\tdelay 2\n\t\t\telse if totalitems < 500 then\n\t\t\t\tdelay 3\n\t\t\telse\n\t\t\t\tdelay 6\n\t\t\tend if\n\t\t\tif currentitem = \"Done\" then\n\t\t\t\texit repeat\n\t\t\tend if\n\t\t\tif totalitems > 0 then\n\t\t\t\tset properties of progress window to {detail:\"Getting Data: \" & currentitem & \" of \" & totalitems & \".\", current value:currentitem, max value:totalitems}\n\t\t\tend if\n\t\t\tif button was pressed of progress window then\n\t\t\t\tset abortmission to true\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend tell\n\tend repeat\n\t--end timeout\n\t--set progressMade to readProgress(workFolder)\n\t\n\t\n\t\n\ttell application \"ASObjC Runner\"\n\t\tactivate\n\t\tif abortmission is true then\n\t\t\tset properties of progress window to {detail:\"Operation cancelled. DevonThink database not modified.\"}\n\t\t\tdelay 1\n\t\t\ttell application \"ASObjC Runner\" to hide progress\n\t\t\terror number -128\n\t\telse\n\t\t\tset properties of progress window to {detail:\"Found \" & totalitems & \" new items including attachments and notes.\"}\n\t\tend if\n\tend tell\n\t\nend if\n\n\n\n\n\n--read the file with new entries to be added\nset filetoread to workFolder & \"new.txt\"\n\nif existsFile(filetoread) of me is false then\n\t--The \"new.txt\" file could not be found, so nothing to import\n\tdisplay dialog \"Could not find any downloaded entries. Nothing to import\"\n\terror number -128\nend if\n\nset newEntries to readFile(filetoread) of me\n--split it into separate lines\nset entryList to split(newEntries, \"\n\") of me\n\nif the number of items in entryList < 1 then\n\t--There must be at least one entry to import\n\tdisplay dialog \"Could not find any downloaded entries. Nothing to import\"\n\terror number -128\nend if\n\n--add all the attachments and notes last, extract them and add them to end\nset normalList to {}\nset endList to {}\nlog the number of items in entryList\ntell application \"ASObjC Runner\"\n\t-- set up dialog and show it \n\treset progress\n\tset properties of progress window to {button title:\"Cancel\", button visible:true, message:\"Extracting attachments.\", detail:\"Putting attachments and notes after all other items before importing into DEVONthink.\", indeterminate:true}\n\tactivate\n\tshow progress\nend tell\nrepeat with newEntry in entryList\n\tif newEntry is not \"\" and the number of words in newEntry > 1 then\n\t\tlog newEntry\n\t\tif word 1 of newEntry is \"attachment\" or word 1 of newEntry is \"note\" then\n\t\t\tset endList to endList & {newEntry}\n\t\telse\n\t\t\tset normalList to normalList & {newEntry}\n\t\tend if\n\tend if\nend repeat\nset sortedList to normalList & endList\n\ntell application id \"com.devon-technologies.thinkpro2\" to activate\n--cycle through each new entry and add it to DevonThink\ntell application \"ASObjC Runner\"\n\t-- set up dialog and show it \n\treset progress\n\tset properties of progress window to {button title:\"Cancel\", button visible:true, message:\"Importing downloaded items into DEVONthink.\", detail:\"Looking for Zotero items not yet imported.\", indeterminate:true}\n\tactivate\n\tshow progress\nend tell\nset mycount to 0\nrepeat with newEntry in sortedList\n\tset mycount to mycount + 1\n\tset entryData to split(newEntry, \"\t\") of me\n\tlog entryData\n\tset finalTitle to formatTitle(entryData, formatOrder) of me\n\tset entryType to item 1 of entryData\n\tset entryKey to item 2 of entryData\n\tset entryParent to item 5 of entryData\n\tset entryAtType to item 6 of entryData\n\tset entryURL to item 7 of entryData\n\ttell application \"ASObjC Runner\"\n\t\tset properties of progress window to {detail:\"Adding item: \" & mycount & \" of \" & the number of items in sortedList & \".\", indeterminate:false, current value:mycount, max value:the number of items in sortedList}\n\t\tif button was pressed of progress window then\n\t\t\tset abortmission to true\n\t\t\texit repeat\n\t\tend if\n\tend tell\n\tlog finalTitle\n\ttell application id \"com.devon-technologies.thinkpro2\"\n\t\ttry\n\t\t\tset theDatabase to current database\n\t\t\tif ((entryType is not \"attachment\") and (entryType is not \"note\")) then\n\t\t\t\t\n\t\t\t\tif not (exists record at groupName & finalTitle) then\n\t\t\t\t\tset theGroup to create location groupName & finalTitle in theDatabase\n\t\t\t\t\tset the comment of theGroup to entryKey\n\t\t\t\t\tif entryURL is not \"\" then\n\t\t\t\t\t\tset the URL of theGroup to entryURL\n\t\t\t\t\tend if\n\t\t\t\t\tset newRecord to create record with {name:finalTitle, type:rtf, rich text:finalTitle, URL:\"zotero:\/\/select\/item\/0_\" & entryKey} in theGroup\n\t\t\t\t\ttry\n\t\t\t\t\t\tif entryType is \"book\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-book.png\"\n\t\t\t\t\t\telse if entryType is \"thesis\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-thesis.png\"\n\t\t\t\t\t\telse if entryType is \"journalArticle\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-journalArticle.png\"\n\t\t\t\t\t\telse if entryType is \"newspaperArticle\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-newspaperArticle.png\"\n\t\t\t\t\t\telse if entryType is \"manuscript\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-manuscript.png\"\n\t\t\t\t\t\telse if entryType is \"case\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-case.png\"\n\t\t\t\t\t\telse if entryType is \"bookSection\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-bookSection.png\"\n\t\t\t\t\t\telse if entryType is \"document\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-file.png\"\n\t\t\t\t\t\telse if entryType is \"webpage\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-webpage.png\"\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tset iconPath to workFolder & \"icons\/\" & entryIcon\n\t\t\t\t\t\tset thumbnail of theGroup to iconPath\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\telse\n\t\t\t\t--We should have passed all normal entries now so we can find them by the Key in the comment\n\t\t\t\tset parentRecordList to lookup records with comment entryParent in theDatabase\n\t\t\t\t--If one record with the parent key is found then let us add children to it\n\t\t\t\tif the number of items in parentRecordList is 1 then\n\t\t\t\t\tset parentRecord to item 1 of parentRecordList\n\t\t\t\t\tif not (exists record at path of parentRecord & \"\/\" & finalTitle) then\n\t\t\t\t\t\tif entryAtType is not \"text\/html\" then\n\t\t\t\t\t\t\tset myurl to \"zotero:\/\/select\/item\/0_\" & entryKey\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset myurl to entryURL\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset newRecord to create record with {name:finalTitle, type:rtf, rich text:finalTitle, URL:myurl} in parentRecord\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tif entryAtType is \"text\/html\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-web-link.png\"\n\t\t\t\t\t\t\telse if entryAtType is \"application\/pdf\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-pdf.png\"\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tif entryType is \"note\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-note.png\"\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset iconPath to workFolder & \"icons\/\" & entryIcon\n\t\t\t\t\t\t\tset thumbnail of newRecord to iconPath\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\tend if\n\t\ton error error_message number error_number\n\t\t\ttell application \"ASObjC Runner\" to hide progress\n\t\t\tif the error_number is not -128 then display alert \"DEVONthink Pro\" message error_message as warning\n\t\tend try\n\tend tell\nend repeat\n\n\ntell application \"ASObjC Runner\"\n\tset properties of progress window to {detail:\"Import complete. \" & mycount & \" entries or attachments added.\"}\n\tdelay 2\n\thide progress\nend tell\n\n--Now that import is complete, delete the \"new.txt\" file\nif existsFile(workFolder & \"new.txt\") then\n\tset y to do shell script \"mv '\" & workFolder & \"new.txt' '\" & workFolder & \"lastimport.txt'\"\nend if\n--Delete the backup files too\nif existsFile(workFolder & \"keys_backup.txt\") then\n\tset y to do shell script \"rm '\" & workFolder & \"keys_backup.txt'\"\nend if\nif existsFile(workFolder & \"lastupdate_backup.txt\") then\n\tset z to do shell script \"rm '\" & workFolder & \"lastupdate_backup.txt'\"\nend if\n\n\n","old_contents":"--Location of this script and its work files:\nset workFolder to \"\/Users\/[your user]\/[path to ZotDevon]\"\n--The name of the group in DevonThink where you wish to create folders\/notes:\nset groupName to \"\/Sources\/\"\n--Name of file containing new entries to add:\nset newFile to \"new.txt\"\n--set the formate you want to have for the title\n-- 1. Author - Title\n-- 2. Title - Author\nset formatOrder to 1\n\n\n\n--if you are debugging or have run the findnew.rb script already, set skipscript to one\n--to jump directly to the DevonThink import process. Leave as 0 otherwise.\nset skipScript to 0\n\non split(someText, delimiter)\n\tset AppleScript's text item delimiters to delimiter\n\tset someText to someText's text items\n\tset AppleScript's text item delimiters to {\"\"} --> restore delimiters to default value\n\treturn someText\nend split\n\non readFile(filePath)\n\tset progressFile to ((POSIX file filePath) as string)\n\ttry\n\t\tset fileContents to read file progressFile as class utf8\n\ton error error_message number error_number\n\t\tif the error_number is not -128 then\n\t\t\tif error_number is -39 then\n\t\t\t\t--I think this happens when they are writing and reading at same timetry again\n\t\t\t\tdelay 2\n\t\t\t\tset fileContents to read file progressFile as class utf8\n\t\t\tend if\n\t\tend if\n\tend try\n\treturn fileContents\nend readFile\n\non existsFile(filePath)\n\ttell application \"Finder\" to set fileExists to exists my POSIX file filePath\n\treturn fileExists\nend existsFile\n\non formatTitle(dataArray, type)\n\tset titleData to item 3 of dataArray\n\tif titleData is \"\" then\n\t\tset titleData to \"Untitled\" & item 2 of dataArray\n\tend if\n\tset authorData to item 4 of dataArray\n\tif type is 1 then\n\t\tset returnData to titleData\n\t\tif authorData is not \"\" then\n\t\t\tset returnData to authorData & \" - \" & titleData\n\t\tend if\n\t\treturn cleanTitle(returnData)\n\telse\n\t\tset returnData to titleData\n\t\tif authorData is not \"\" then\n\t\t\tset returnData to titleData & \" - \" & authorData\n\t\tend if\n\t\treturn cleanTitle(returnData)\n\tend if\nend formatTitle\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\non cleanTitle(theTitle)\n\tlog \"Pre: \" & theTitle\n\tset returnData to replace_chars(theTitle, \"\/\", \"-\")\n\tlog \"After: \" & returnData\n\treturn returnData\nend cleanTitle\n\nif skipScript is not 1 then\n\t--check to see if there is a key and udpate file if there isn't then make an empty one\n\tif existsFile(workFolder & \"keys.txt\") is false then\n\t\tset a to do shell script \"touch '\" & workFolder & \"keys.txt'\"\n\tend if\n\tif existsFile(workFolder & \"lastupdate.txt\") is false then\n\t\tset a to do shell script \"touch '\" & workFolder & \"lastupdate.txt'\"\n\tend if\n\t\n\t--check to see if there are leftover backup files and use them if there are\n\tif existsFile(workFolder & \"keys_backup.txt\") then\n\t\tset myanswer to display dialog \"The last sync was aborted. The script will proceed with the pre-sync backup list of items.\"\n\t\tif the button returned of myanswer is \"OK\" then\n\t\t\tset a to do shell script \"mv '\" & workFolder & \"keys_backup.txt' '\" & workFolder & \"keys.txt'\"\n\t\t\tif existsFile(workFolder & \"lastupdate.txt\") then\n\t\t\t\tset b to do shell script \"mv '\" & workFolder & \"lastupdate_backup.txt' '\" & workFolder & \"lastupdate.txt'\"\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\t\n\t--make a copy of our list of database keys in case something goes wrong during sync\n\tset y to do shell script \"cp '\" & workFolder & \"keys.txt' '\" & workFolder & \"keys_backup.txt'\"\n\tset z to do shell script \"cp '\" & workFolder & \"lastupdate.txt' '\" & workFolder & \"lastupdate_backup.txt'\"\n\t\n\t--run ruby script to determine what IDs are missing\n\tset x to do shell script \"'\" & workFolder & \"findnew.rb' &> \/dev\/null 2>&1 &\"\n\tset startstat to split(readFile(workFolder & \"info.txt\"), \"\/\")\n\tset totalitems to item 2 of startstat\n\tset abortmission to false\n\t\n\ttell application \"ASObjC Runner\"\n\t\t-- set up dialog and show it \n\t\treset progress\n\t\tset properties of progress window to {button title:\"Cancel\", button visible:true, message:\"Checking for new items.\", detail:\"Looking for Zotero items not yet imported.\", indeterminate:false, max value:10, current value:0}\n\t\tactivate\n\t\tshow progress\n\tend tell\n\t\n\tset isdone to false\n\t\n\t--with timeout of 60 seconds\n\trepeat while isdone is false\n\t\tset mystats to split(readFile(workFolder & \"info.txt\"), \"\/\")\n\t\tlog mystats\n\t\ttell application \"ASObjC Runner\"\n\t\t\tset currentitem to item 1 of mystats\n\t\t\tset totalitems to item 2 of mystats\n\t\t\t--reduce chance of annoying error as read\/write happens at same time during large library import\n\t\t\tif totalitems < 200 then\n\t\t\t\tdelay 1\n\t\t\telse if totalitems < 500 then\n\t\t\t\tdelay 4\n\t\t\telse\n\t\t\t\tdelay 10\n\t\t\tend if\n\t\t\tif currentitem = \"Done\" then\n\t\t\t\texit repeat\n\t\t\tend if\n\t\t\tif totalitems > 0 then\n\t\t\t\tset properties of progress window to {detail:\"Getting Data: \" & currentitem & \" of \" & totalitems & \".\", current value:currentitem, max value:totalitems}\n\t\t\tend if\n\t\t\tif button was pressed of progress window then\n\t\t\t\tset abortmission to true\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend tell\n\tend repeat\n\t--end timeout\n\t--set progressMade to readProgress(workFolder)\n\t\n\t\n\t\n\ttell application \"ASObjC Runner\"\n\t\tactivate\n\t\tif abortmission is true then\n\t\t\tset properties of progress window to {detail:\"Operation cancelled. DevonThink database not modified.\"}\n\t\t\tdelay 1\n\t\t\ttell application \"ASObjC Runner\" to hide progress\n\t\t\terror number -128\n\t\telse\n\t\t\tset properties of progress window to {detail:\"Found \" & totalitems & \" new items including attachments and notes.\"}\n\t\tend if\n\tend tell\n\t\nend if\n\ntell application id \"com.devon-technologies.thinkpro2\"\n\tactivate\n\ttry\n\t\t--read the file with new entries to be added\n\t\tset filetoread to workFolder & \"new.txt\"\n\t\tset newEntries to readFile(filetoread) of me\n\t\t--split it into separate lines\n\t\tset entryList to split(newEntries, \"\n\") of me\n\t\t\n\t\t--add all the attachments and notes last, extract them and add them to end\n\t\tset normalList to {}\n\t\tset endList to {}\n\t\trepeat with newEntry in entryList\n\t\t\tif word 1 of newEntry is \"attachment\" or word 1 of newEntry is \"note\" then\n\t\t\t\tset endList to endList & {newEntry}\n\t\t\telse\n\t\t\t\tset normalList to normalList & {newEntry}\n\t\t\tend if\n\t\tend repeat\n\t\tset sortedList to normalList & endList\n\t\t\n\t\t\n\t\t--cycle through each new entry and add it to DevonThink\n\t\trepeat with newEntry in sortedList\n\t\t\tset entryData to split(newEntry, \"\t\") of me\n\t\t\tlog entryData\n\t\t\tset finalTitle to formatTitle(entryData, formatOrder) of me\n\t\t\tset entryType to item 1 of entryData\n\t\t\tset entryKey to item 2 of entryData\n\t\t\tset entryParent to item 5 of entryData\n\t\t\tset entryAtType to item 6 of entryData\n\t\t\tset entryURL to item 7 of entryData\n\t\t\tset theDatabase to current database\n\t\t\tlog finalTitle\n\t\t\tif ((entryType is not \"attachment\") and (entryType is not \"note\")) then\n\t\t\t\t\n\t\t\t\tif not (exists record at groupName & finalTitle) then\n\t\t\t\t\tset theGroup to create location groupName & finalTitle in theDatabase\n\t\t\t\t\tset the comment of theGroup to entryKey\n\t\t\t\t\tif entryURL is not \"\" then\n\t\t\t\t\t\tset the URL of theGroup to entryURL\n\t\t\t\t\tend if\n\t\t\t\t\tset newRecord to create record with {name:finalTitle, type:rtf, rich text:finalTitle, URL:\"zotero:\/\/select\/item\/0_\" & entryKey} in theGroup\n\t\t\t\t\ttry\n\t\t\t\t\t\tif entryType is \"book\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-book.png\"\n\t\t\t\t\t\telse if entryType is \"thesis\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-thesis.png\"\n\t\t\t\t\t\telse if entryType is \"journalArticle\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-journalArticle.png\"\n\t\t\t\t\t\telse if entryType is \"newspaperArticle\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-newspaperArticle.png\"\n\t\t\t\t\t\telse if entryType is \"manuscript\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-manuscript.png\"\n\t\t\t\t\t\telse if entryType is \"case\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-case.png\"\n\t\t\t\t\t\telse if entryType is \"bookSection\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-bookSection.png\"\n\t\t\t\t\t\telse if entryType is \"document\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-file.png\"\n\t\t\t\t\t\telse if entryType is \"webpage\" then\n\t\t\t\t\t\t\tset entryIcon to \"treeitem-webpage.png\"\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\tset iconPath to workFolder & \"icons\/\" & entryIcon\n\t\t\t\t\t\tset thumbnail of theGroup to iconPath\n\t\t\t\t\tend try\n\t\t\t\tend if\n\t\t\telse\n\t\t\t\t--We should have passed all normal entries now so we can find them by the Key in the comment\n\t\t\t\tset parentRecordList to lookup records with comment entryParent in theDatabase\n\t\t\t\t--If one record with the parent key is found then let us add children to it\n\t\t\t\tif the number of items in parentRecordList is 1 then\n\t\t\t\t\tset parentRecord to item 1 of parentRecordList\n\t\t\t\t\tif not (exists record at path of parentRecord & \"\/\" & finalTitle) then\n\t\t\t\t\t\tif entryAtType is not \"text\/html\" then\n\t\t\t\t\t\t\tset myurl to \"zotero:\/\/select\/item\/0_\" & entryKey\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset myurl to entryURL\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset newRecord to create record with {name:finalTitle, type:rtf, rich text:finalTitle, URL:myurl} in parentRecord\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tif entryAtType is \"text\/html\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-web-link.png\"\n\t\t\t\t\t\t\telse if entryAtType is \"application\/pdf\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-attachment-pdf.png\"\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tif entryType is \"note\" then\n\t\t\t\t\t\t\t\tset entryIcon to \"treeitem-note.png\"\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset iconPath to workFolder & \"icons\/\" & entryIcon\n\t\t\t\t\t\t\tset thumbnail of newRecord to iconPath\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\t--TODO:\n\t\t\t--ADD LINK TO HEADER TEXT\n\t\t\t--Allow people to sync only a particular collection\n\t\t\t\n\t\tend repeat\n\ton error error_message number error_number\n\t\tif the error_number is not -128 then display alert \"DEVONthink Pro\" message error_message as warning\n\tend try\nend tell\n\n\nif skipScript is not 1 then\n\tdelay 2\n\ttell application \"ASObjC Runner\" to hide progress\n\tset y to do shell script \"rm '\" & workFolder & \"keys_backup.txt'\"\n\tset z to do shell script \"rm '\" & workFolder & \"lastupdate_backup.txt'\"\nend if\n\n","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"f61c112a2f79099b875d72b557cd51f2fc8a0356","subject":"log only if debugMode","message":"log only if debugMode\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replace String in FM Objects.applescript","new_file":"Scripts\/fmClip - Replace String in FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"7c87260ff05eea23e1af843c6595181d7b8f7df8","subject":"fmGUI_2empowerFM_Toolbox_Close comment update","message":"fmGUI_2empowerFM_Toolbox_Close comment update\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_FMATools\/fmGUI_2empowerFM_Toolbox_Close.applescript","new_file":"library\/fmGUI_FMATools\/fmGUI_2empowerFM_Toolbox_Close.applescript","new_contents":"-- fmGUI_2empowerFM_Toolbox_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes floating 2empowerFM Toolbox utility window. \n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\non run\n\tfmGUI_2empowerFM_Toolbox_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_2empowerFM_Toolbox_Close()\n\t-- version 2020-03-04\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"2empowerFM Toolbox\")\n\t\t\t\t-- gets an error even if button exists, but still works. \n\t\t\tend try\n\t\t\treturn true\n\t\tend tell\n\tend tell\nend fmGUI_2empowerFM_Toolbox_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","old_contents":"-- fmGUI_2empowerFM_Toolbox_Close()\n-- Daniel A. Shockley, NYHTC\n-- Closes floating 2empowerFM Toolbox utility window. \n\n\n(*\nHISTORY:\n\t2020-03-04 ( dshockley ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n*)\n\n\non run\n\tfmGUI_2empowerFM_Toolbox_Close()\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_2empowerFM_Toolbox_Close()\n\t-- version 2020-03-04\n\t\n\tfmGUI_AppFrontMost()\n\ttell application \"System Events\"\n\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\ttry\n\t\t\t\tclick button 1 of (first window whose name is \"2empowerFM Toolbox\")\n\t\t\tend try\n\t\t\treturn true\n\t\tend tell\n\tend tell\nend fmGUI_2empowerFM_Toolbox_Close\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fea9048e53742f63f867f60937203cf17597828e","subject":"Make Mac disk image packager set application icon location more reliably.","message":"Make Mac disk image packager set application icon location more reliably.\n","repos":"gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm,gabeharms\/firestorm","old_file":"indra\/newview\/installers\/darwin\/set-labels.applescript","new_file":"indra\/newview\/installers\/darwin\/set-labels.applescript","new_contents":"-- This Applescript changes all of the icon labels on the disk image to\n-- a different color.\n-- Usage: osascript set-labels.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run argv\n\ttell application \"Finder\"\n\t\tset diskname to item 1 of argv\n\t\ttell disk diskname\n\t\t\tset file_list to every file\n\t\t\trepeat with i in file_list\n\t\t\t\tif the name of i is \"Applications\" then\n\t\t\t\t\tset the position of i to {368, 135}\n\t\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\t\tset the position of i to {134, 135}\n\t\t\t\tend if\n\t\t\t-- The magic happens here: This will set the label color of\n\t\t\t-- the file icon. Change the 7 to change the color: 0 is no\n\t\t\t-- label, then red, orange, yellow, green, blue, purple, or gray.\n\t\t\t\tset the label index of i to 7\n\t\t\tend repeat\n\t\t\tupdate without registering applications\n\t\t\tdelay 4\n\t\tend tell\n\tend tell\nend run\n","old_contents":"-- This Applescript changes all of the icon labels on the disk image to\n-- a different color.\n-- Usage: osascript set-labels.applescript <volume-name>\n-- where <volume-name> is the volume name of the disk image.\n\non run argv\n\ttell application \"Finder\"\n\t\tset diskname to item 1 of argv\n\t\tset file_list to every file in disk diskname\n\t\trepeat with i in file_list\n\t\t\tif the name of i is \"Applications\" then\n\t\t\t\tset the position of i to {368, 135}\n\t\t\telse if the name of i ends with \".app\" then\n\t\t\t\tset the position of i to {134, 135}\n\t\t\tend if\n\t\t-- The magic happens here: This will set the label color of\n\t\t-- the file icon. Change the 7 to change the color: 0 is no\n\t\t-- label, then red, orange, yellow, green, blue, purple, or gray.\n\t\t\tset the label index of i to 7\n\t\tend repeat\n\tend tell\nend run","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"db444a803426c6e4670ce2661f2196ac6ee34a00","subject":"updated fmGUI_MangeDB_TO_Add","message":"updated fmGUI_MangeDB_TO_Add\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageDB\/fmGUI_ManageDb_TO_Add.applescript","new_file":"library\/fmGUI_ManageDB\/fmGUI_ManageDb_TO_Add.applescript","new_contents":"-- fmGUI_ManageDb_TO_Add({tocName:null, dbName:null, doNotChangeExisting:false, baseTableName:null})\n-- Daniel Shockley, NYHTC\n-- add table occurence to the current database\n\n\n(*\nHISTORY:\n\t1.4 - 2016-08-23 ( eshagdar ): declare all params. fixed error message.\n\t1.3 - 2015-04-24 ( eshagdar ): creates a data source if needed\n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDataSources_EnsureExists\n\tfmGUI_ManageDataSources_Save\n\tfmGUI_ManageDb_GoToTab_Relationships\n\tfmGUI_ObjectClick_AffectsWindow\n\tfmGUI_PopupSet\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_ManageDb_TO_Add({tocName:\"bob\", dbName:\"a01_PERSON\", baseTableName:\"A_PERSON\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_TO_Add(prefs)\n\t-- version 1.4\n\t\n\tset defaultPrefs to {TOName:null, dbName:null, doNotChangeExisting:false, baseTableName:null}\n\t\n\tset prefs to prefs & defaultPrefs\n\tset dbName to dbName of prefs\n\tset baseTableName to baseTableName of prefs\n\tset TOName to TOName of prefs\n\t\n\t\n\ttry\n\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tmy fmGUI_AppFrontMost()\n\t\t\t\tset addTocButton to first button of tab group 1 of window 1 whose description contains \"Add a table\"\n\t\t\t\tmy fmGUI_ObjectClick_AffectsWindow(addTocButton)\n\t\t\t\tdelay 1\n\t\t\t\tset dataSourcePopUpButton to pop up button \"Data Source:\" of window 1\n\t\t\t\ttry\n\t\t\t\t\tmy fmGUI_PopupSet(dataSourcePopUpButton, dbName)\n\t\t\t\t\tselect (first row of table 1 of scroll area 1 of window 1 whose value of static text 1 is baseTableName)\n\t\t\t\ton error\n\t\t\t\t\t--Not an existing data source, so create it\n\t\t\t\t\tkey code 53 -- Hit 'Esc'\n\t\t\t\t\tmy fmGUI_PopupSet(dataSourcePopUpButton, \"Manage Data Sources\")\n\t\t\t\t\tmy fmGUI_ManageDataSources_EnsureExists({dataSourceName:dbName})\n\t\t\t\t\tmy fmGUI_ManageDataSources_Save({})\n\t\t\t\t\tdelay 1\n\t\t\t\t\t\n\t\t\t\t\t-- now that we've added the data source, try again\n\t\t\t\t\tmy fmGUI_PopupSet(dataSourcePopUpButton, dbName)\n\t\t\t\t\tselect (first row of table 1 of scroll area 1 of window 1 whose value of static text 1 is baseTableName)\n\t\t\t\tend try\n\t\t\t\t--if debugMode then my logLEVEL(5, \"Add TO 003\")\n\t\t\t\t--if debugMode then my logLEVEL(5, \"About to edit name\")\n\t\t\t\tset value of text field \"Name\" of window 1 to TOName\n\t\t\t\tif debugMode then my logLEVEL(5, \"TO added: '\" & TOName & \"'\")\n\t\t\t\t\n\t\t\t\tmy fmGUI_ObjectClick_AffectsWindow(button \"OK\" of window 1)\n\t\t\t\t\n\t\t\t\treturn true\n\t\t\tend tell\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"fmGUI_ManageDb_TO_Add - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_TO_Add\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDataSources_EnsureExists(prefs)\n\ttell helper to fmGUI_ManageDataSources_EnsureExists(prefs)\nend fmGUI_ManageDataSources_EnsureExists\n\non fmGUI_ManageDataSources_Save(prefs)\n\ttell helper to fmGUI_ManageDataSources_Save(prefs)\nend fmGUI_ManageDataSources_Save\n\non fmGUI_ManageDb_GoToTab_Relationships(prefs)\n\ttell helper to fmGUI_ManageDb_GoToTab_Relationships(prefs)\nend fmGUI_ManageDb_GoToTab_Relationships\n\non fmGUI_ObjectClick_AffectsWindow(prefs)\n\ttell helper to fmGUI_ObjectClick_AffectsWindow(prefs)\nend fmGUI_ObjectClick_AffectsWindow\n\non fmGUI_PopupSet(popupObject, popupChoice)\n\ttell helper to fmGUI_PopupSet(popupObject, popupChoice)\nend fmGUI_PopupSet\n","old_contents":"-- fmGUI_ManageDb_TO_Add({tocName:null, dbName:null, doNotChangeExisting:false, baseTableName:null})\n-- Daniel Shockley, NYHTC\n-- add table occurence to the current database\n\n\n(*\nHISTORY:\n\t1.3 - 2015-04-24 ( eshagdar ): creates a data source if needed\n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDataSources_EnsureExists\n\tfmGUI_ManageDataSources_Save\n\tfmGUI_ManageDb_GoToTab_Relationships\n\tfmGUI_ObjectClick_AffectsWindow\n\tfmGUI_PopupSet\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\tfmGUI_ManageDb_TO_Add({tocName:\"bob\", dbName:\"a01_PERSON\", baseTableName:\"A_PERSON\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_TO_Add(prefs)\n\t-- version 1.3\n\t\n\tset defaultPrefs to {tocName:null, dbName:null, doNotChangeExisting:false, baseTableName:null}\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\t\n\t\n\ttry\n\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\tmy fmGUI_AppFrontMost()\n\t\t\t\tset addTocButton to first button of tab group 1 of window 1 whose description contains \"Add a table\"\n\t\t\t\tmy fmGUI_ObjectClick_AffectsWindow(addTocButton)\n\t\t\t\tdelay 1\n\t\t\t\ttry\n\t\t\t\t\tmy fmGUI_PopupSet(pop up button \"Data Source:\" of window 1, dbName of prefs)\n\t\t\t\t\tselect (first row of table 1 of scroll area 1 of window 1 whose value of static text 1 is baseTableName of prefs)\n\t\t\t\ton error\n\t\t\t\t\t--Not an existing data source, so create it\n\t\t\t\t\tkey code 53 -- Hit 'Esc' to close pop up.\n\t\t\t\t\t\n\t\t\t\t\t-- add data source from within adding a new TO window\n\t\t\t\t\tmy fmGUI_PopupSet(pop up button \"Data Source:\" of window 1, \"Manage Data Sources\")\n\t\t\t\t\tmy fmGUI_ManageDataSources_EnsureExists({dataSourceName:dbName of prefs})\n\t\t\t\t\tmy fmGUI_ManageDataSources_Save({})\n\t\t\t\t\tdelay 1\n\t\t\t\t\t\n\t\t\t\t\t-- now that we've added the data source, try again...\n\t\t\t\t\tmy fmGUI_PopupSet(pop up button \"Data Source:\" of window 1, dbName of prefs)\n\t\t\t\t\tselect (first row of table 1 of scroll area 1 of window 1 whose value of static text 1 is baseTableName of prefs)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset value of text field \"Name\" of window 1 to tocName of prefs\n\t\t\t\tmy fmGUI_ObjectClick_AffectsWindow(button \"OK\" of window 1)\n\t\t\t\t\n\t\t\t\treturn true\n\t\t\tend tell\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"Couldn't add TO in Manage DB - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_TO_Add\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell helper to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDataSources_EnsureExists(prefs)\n\ttell helper to fmGUI_ManageDataSources_EnsureExists(prefs)\nend fmGUI_ManageDataSources_EnsureExists\n\non fmGUI_ManageDataSources_Save(prefs)\n\ttell helper to fmGUI_ManageDataSources_Save(prefs)\nend fmGUI_ManageDataSources_Save\n\non fmGUI_ManageDb_GoToTab_Relationships(prefs)\n\ttell helper to fmGUI_ManageDb_GoToTab_Relationships(prefs)\nend fmGUI_ManageDb_GoToTab_Relationships\n\non fmGUI_ObjectClick_AffectsWindow(prefs)\n\ttell helper to fmGUI_ObjectClick_AffectsWindow(prefs)\nend fmGUI_ObjectClick_AffectsWindow\n\non fmGUI_PopupSet(popupObject, popupChoice)\n\ttell helper to fmGUI_PopupSet(popupObject, popupChoice)\nend fmGUI_PopupSet\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"efbf67aec2cbc8b981863a33ce1d4963ba0ead3e","subject":"Cleanup dispatch path debug message","message":"Cleanup dispatch path debug message","repos":"westernx\/sgactions,vfxetc\/sgactions,vfxetc\/sgactions,westernx\/sgactions,westernx\/sgactions,vfxetc\/sgactions,vfxetc\/sgactions","old_file":"applescript_handler.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"applescript_handler.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u000f\u0000\u0010\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u000f\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0000\u0010\u0000\u0003\u0000\u0011\n\u0000\u0004\nrtyp\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\n\u0000\u0004\nTEXT\u0006\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u001b\u0000\u0013\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0013\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0017\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0015\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0013\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0011\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000 \u000e\u0000 \u0000\u0001\u0000!\u0011\u0000!\u00018\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000o\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000;\u0000 \u0000r\u0000e\u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000o\u0000l\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000 \u0000s\u0000l\u0000a\u0000s\u0000h\u0000e\u0000s\u0000.\u0000\n\u0000#\u0000 \u0000E\u0000.\u0000g\u0000.\u0000 \u0000'\u0000p\u0000a\u0000t\u0000h\u0000:\u0000t\u0000o\u0000:\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0000a\u0000p\u0000p\u0000:\u0000'\u0000 \u0000-\u0000>\u0000 \u0000'\u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000.\u0000a\u0000p\u0000p\u0000'\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000n\u0000a\u0000m\u0000e\u0000=\u0000$\u0000(\u0000e\u0000c\u0000h\u0000o\u0000 \u0000'\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\u0000'\u0000 \u0000|\u0000 \u0000s\u0000e\u0000d\u0000 \u0000-\u0000E\u0000 \u0000'\u0000s\u0000,\u0000(\u0000[\u0000^\u0000:\u0000]\u0000+\u0000)\u0000:\u0000,\u0000\/\u0000\\\u00001\u0000,\u0000g\u0000'\u0000)\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \u0000\"\u0000$\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000_\u0000n\u0000a\u0000m\u0000e\u0000\"\u0000 \u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000'\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0004\u001e\u0000'\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000\n\u0000\n\u0000#\u0000 \u0000B\u0000u\u0000i\u0000l\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000e\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000\n\u0000#\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000a\u0000s\u0000 \u0000i\u0000f\u0000 \u0000i\u0000n\u0000v\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000`\u0000.\u0000\n\u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000!\u0000 \u0000\"\u0000$\u0000K\u0000S\u0000_\u0000T\u0000O\u0000O\u0000L\u0000S\u0000\"\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000U\u0000s\u0000e\u0000r\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000o\u0000r\u0000 \u0000x\u0000 \u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000;\u0000 \u0000d\u0000o\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000$\u0000x\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000$\u0000x\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000d\u0000o\u0000n\u0000e\u0000\n\u0000f\u0000i\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000g\u0000r\u0000o\u0000u\u0000n\u0000d\u0000.\u0000\n\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000-\u0000m\u0000 \u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000 \u0000'\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0000'\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000&\u0000\n\u0000\n\u0000#\u0000 \u0000D\u0000i\u0000s\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000i\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000\n\u0000d\u0000i\u0000s\u0000o\u0000w\u0000n\u0000 \u0000%\u0000%\u0000\n\u0000\n\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000(\r\u0000(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000)\u0000*\u0001\u0000\u0000\u0010\u0000)\u0000\u0001\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000*\u0000\u0007\u0010\u0000\b\u0000+\u0000,\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\u0010\u0000+\u0000\u0002\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0010\u0000,\u0000\b\u0000 \u0000\"\u0000$\u0000&\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001c)l\f\u0000\u0002EO%%%%%%j\f\u0000\u0007\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001b\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u000f\u0000\u0010\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u000f\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0000\u0010\u0000\u0003\u0000\u0011\n\u0000\u0004\nrtyp\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\n\u0000\u0004\nTEXT\u0006\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0012\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u001b\u0000\u0013\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0013\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0017\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0015\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0013\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002b\u0000\u0000\u0000\n\u0000\u0011\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000 \u000e\u0000 \u0000\u0001\u0000!\u0011\u0000!\u0000F\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000o\u0000g\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000.\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \u0000'\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\u001e\u0000'\u0000 \u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000'\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0004\u001e\u0000'\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000\n\u0000\n\u0000#\u0000 \u0000B\u0000u\u0000i\u0000l\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000.\u0000 \u0000W\u0000e\u0000 \u0000t\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000\n\u0000#\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000 \u0000a\u0000s\u0000 \u0000i\u0000f\u0000 \u0000i\u0000n\u0000v\u0000o\u0000c\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000`\u0000.\u0000\n\u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000!\u0000 \u0000\"\u0000$\u0000K\u0000S\u0000_\u0000T\u0000O\u0000O\u0000L\u0000S\u0000\"\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000G\u0000l\u0000o\u0000b\u0000a\u0000l\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000\/\u0000e\u0000t\u0000c\u0000\/\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000\n\u0000 \u0000 \u0000 \u0000 \u0000#\u0000 \u0000U\u0000s\u0000e\u0000r\u0000 \u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000.\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000f\u0000o\u0000r\u0000 \u0000x\u0000 \u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000 \u0000~\u0000\/\u0000.\u0000b\u0000a\u0000s\u0000h\u0000_\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000~\u0000\/\u0000.\u0000p\u0000r\u0000o\u0000f\u0000i\u0000l\u0000e\u0000;\u0000 \u0000d\u0000o\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000i\u0000f\u0000 \u0000[\u0000[\u0000 \u0000-\u0000f\u0000 \u0000$\u0000x\u0000 \u0000]\u0000]\u0000;\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000$\u0000x\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000b\u0000r\u0000e\u0000a\u0000k\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000 \u0000f\u0000i\u0000\n\u0000 \u0000 \u0000 \u0000 \u0000d\u0000o\u0000n\u0000e\u0000\n\u0000f\u0000i\u0000\n\u0000\n\u0000#\u0000 \u0000L\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000i\u0000t\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000g\u0000r\u0000o\u0000u\u0000n\u0000d\u0000.\u0000\n\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000-\u0000m\u0000 \u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000s\u0000.\u0000d\u0000i\u0000s\u0000p\u0000a\u0000t\u0000c\u0000h\u0000 \u0000'\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0000'\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000|\u0000 \u0000l\u0000o\u0000g\u0000g\u0000e\u0000r\u0000 \u0000-\u0000t\u0000 \u0000c\u0000o\u0000m\u0000.\u0000w\u0000e\u0000s\u0000t\u0000e\u0000r\u0000n\u0000x\u0000.\u0000s\u0000g\u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000&\u0000\n\u0000\n\u0000#\u0000 \u0000D\u0000i\u0000s\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000 \u0000i\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000\n\u0000d\u0000i\u0000s\u0000o\u0000w\u0000n\u0000 \u0000%\u0000%\u0000\n\u0000\n\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000(\r\u0000(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000)\u0000*\u0001\u0000\u0000\u0010\u0000)\u0000\u0001\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000*\u0000\u0007\u0010\u0000\b\u0000+\u0000,\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u0002\u0000\u0000\u0010\u0000+\u0000\u0002\u000b\u0000\u00120\u0000\u000eencoded_action\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_name\u0000\u0000\u0010\u0000,\u0000\b\u0000 \u0000\"\u0000$\u0000&\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001c)l\f\u0000\u0002EO%%%%%%j\f\u0000\u0007\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d91fd503747390df446cad1fa1cacb5666e9d4ee","subject":"Fix open_shortcuts","message":"Fix open_shortcuts\n","repos":"cknadler\/vim-anywhere","old_file":"script\/open_shortcuts.scpt","new_file":"script\/open_shortcuts.scpt","new_contents":"-- vim-anywhere - use Vim whenever, wherever\n-- Author: Chris Knadler\n-- Homepage: https:\/\/www.github.com\/cknadler\/vim-anywhere\n--\n-- Open the \"Services\" keyboard shortcuts tab of keyboard system preferences\n\ntell application \"System Preferences\"\n activate\n reveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\n keystroke tab\n repeat 3 times\n key code 125\n end repeat\nend tell\n","old_contents":"-- vim-anywhere - use Vim whenever, wherever\n-- Author: Chris Knadler\n-- Homepage: https:\/\/www.github.com\/cknadler\/vim-anywhere\n--\n-- Open the keyboard shortcuts tab of keyboard system preferences\n\ntell application \"System Preferences\"\n activate\n reveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\n keystroke tab\n keystroke key code 125\n keystroke key code 125\n keystroke key code 125\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2ba5271f34e86b63f007b780bbf75af3e4cae048","subject":"RawVideoRec update","message":"RawVideoRec update\n\nWorking version of the applescript for raw video recording with the\nlivetrack+VTOP setup\n","repos":"gkaguirrelab\/LiveTrackfMRIToolbox,gkaguirrelab\/LiveTrackfMRIToolbox","old_file":"code\/AcquisitionTools\/RawVideoRec.scpt","new_file":"code\/AcquisitionTools\/RawVideoRec.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000$\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002O\u0000\u0000\u0000\b\u0000G\u0000)\u0000*\r\u0000)\u0000\u0001k\u0000\u0000\u0000\f\u0000F\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\f\u0000\u0014\u0000.\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000.\u0000\u00024\u0000\u0000\u0000\f\u0000\u0010\u0000\/\n\u0000\u0004\ncwin\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001c\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\u00006\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001d\u0000:\u0000;\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000;\u0000\u0003\u0000<\u0000=\n\u0000\u0004\nkWch\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000=\u0000\u0003\u0000@\u0000A\n\u0000\u0004\nkFil\r\u0000@\u0000\u00024\u0000\u0000\u0000!\u0000\/\u0000B\n\u0000\u0004\npsxf\r\u0000B\u0000\u0003l\u0000\u0005\u0000#\u0000.\u0000C\r\u0000C\u0000\u0002b\u0000\u0000\u0000#\u0000.\u0000D\u0000E\r\u0000D\u0000\u0002b\u0000\u0000\u0000#\u0000,\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0000\u0000#\u0000'\u0000H\u0000I\r\u0000H\u0000\u00024\u0000\u0000\u0000$\u0000'\u0000J\n\u0000\u0004\ncobj\r\u0000J\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r\u0000I\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000K\u0000L\r\u0000K\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000M\n\u0000\u0004\ncobj\r\u0000M\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0002\r\u0000L\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000A\u0000\u0003\u0000P\n\u0000\u0004\nkDur\r\u0000P\u0000\u0002n\u0000\u0000\u00000\u00004\u0000Q\u0000R\r\u0000Q\u0000\u00024\u0000\u0000\u00001\u00004\u0000S\n\u0000\u0004\ncobj\r\u0000S\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0003\r\u0000R\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000;\u0000F\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000;\u0000B\u0000W\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000W\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000f\u0000Z\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tLHH+\u0000\u0000\u0000\u000f\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000\t\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000\u000f\u0000\u0000\u0000H\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000(\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002r\u0000\u0000\u0000H\u0000S\u0000]\u0000^\r\u0000]\u0000\u0003I\u0000\u0002\u0000H\u0000O\u0000_\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000_\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\\\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000T\u0000d\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000T\u0000`\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000V\u0000Y\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000l\u0000\u0002\u0000m\r\u0000m\u0000\u0001o\u0000\u0000\u0000Y\u0000\\\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000c\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002r\u0000\u0000\u0000e\u0000p\u0000p\u0000q\r\u0000p\u0000\u0002c\u0000\u0000\u0000e\u0000l\u0000r\u0000s\r\u0000r\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000\u0000\r\u0000s\u0000\u0001m\u0000\u0000\u0000h\u0000k\n\u0000\u0004\nctxt\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000o\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003X\u0000\u0000\u0000q\u0000\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000}\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nlnfd\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000y\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000w\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u001d\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0010\u0000\u0000\u001e\u0000%\u0000Z\u00000\u00007\u0000>\u0000N\u0000X\u0000`\u0000t\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0003\u0000\u0004\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\n\u0000\u0004\nctxt\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nlnfd\u0011\u0000j\f\u0000\u0001EO\u0012\u0000<*\/j\f\u0000\u0006Oj\f\u0000\u0001EO**k\/l\/%%\/m\/a\u0000\u0010\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0001E`\u0000\u0013UOa\u0000\u0014j\f\u0000\u0001E`\u0000\u0015O_\u0000\u0013_\u0000\u0015a\u0000\u0016vE`\u0000\u0017Oa\u0000\u0018a\u0000\u0019&E`\u0000\u001aO\u0017\u0000%_\u0000\u0017[a\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0001_\u0000\u001a%_\u0000\u001d%E`\u0000\u001a[OYO_\u0000\u001a\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00002\u00008\u00000\u00004\u00003\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00004\u00000\u00008\u00007\u00009\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00008\u00002\u00008\u00009\u00002\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00009\u00000\u00002\u00005\u00009\u00000\u00000\u00000\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00002\u00008\u00000\u00004\u00003\u00000\u00000\u00000\u0000\n\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00004\u00000\u00008\u00007\u00009\u00000\u00000\u00000\u0000\n\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00008\u00002\u00008\u00009\u00002\u00000\u00000\u00000\u0000\n\u00001\u00005\u00001\u00007\u00004\u00001\u00000\u00006\u00005\u00000\u0000.\u00007\u00009\u00000\u00002\u00005\u00009\u00000\u00000\u00000\u0000\n\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000$\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002O\u0000\u0000\u0000\b\u0000G\u0000)\u0000*\r\u0000)\u0000\u0001k\u0000\u0000\u0000\f\u0000F\u0000+\u0002\u0000+\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000\f\u0000\u0014\u0000.\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000.\u0000\u00024\u0000\u0000\u0000\f\u0000\u0010\u0000\/\n\u0000\u0004\ncwin\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001c\u00004\u00005\r\u00004\u0000\u0003I\u0000\u0002\u0000\u0015\u0000\u001a\u00006\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001d\u0000:\u0000;\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000;\u0000\u0003\u0000<\u0000=\n\u0000\u0004\nkWch\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000=\u0000\u0003\u0000@\u0000A\n\u0000\u0004\nkFil\r\u0000@\u0000\u00024\u0000\u0000\u0000!\u0000\/\u0000B\n\u0000\u0004\npsxf\r\u0000B\u0000\u0003l\u0000\u0005\u0000#\u0000.\u0000C\r\u0000C\u0000\u0002b\u0000\u0000\u0000#\u0000.\u0000D\u0000E\r\u0000D\u0000\u0002b\u0000\u0000\u0000#\u0000,\u0000F\u0000G\r\u0000F\u0000\u0002n\u0000\u0000\u0000#\u0000'\u0000H\u0000I\r\u0000H\u0000\u00024\u0000\u0000\u0000$\u0000'\u0000J\n\u0000\u0004\ncobj\r\u0000J\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r\u0000I\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0000K\u0000L\r\u0000K\u0000\u00024\u0000\u0000\u0000(\u0000+\u0000M\n\u0000\u0004\ncobj\r\u0000M\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0002\r\u0000L\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000E\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000N\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000A\u0000\u0003\u0000P\n\u0000\u0004\nkDur\r\u0000P\u0000\u0002n\u0000\u0000\u00000\u00004\u0000Q\u0000R\r\u0000Q\u0000\u00024\u0000\u0000\u00001\u00004\u0000S\n\u0000\u0004\ncobj\r\u0000S\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0003\r\u0000R\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000:\u0000\u0002\u0000T\r\u0000T\u0000\u0002r\u0000\u0000\u0000;\u0000F\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000;\u0000B\u0000W\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000W\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000Z\u000f\u0000Z\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000}Q\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000}R\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000}Q\u0000I\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000(\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002r\u0000\u0000\u0000H\u0000S\u0000]\u0000^\r\u0000]\u0000\u0003I\u0000\u0002\u0000H\u0000O\u0000_\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000_\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u00006\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000g\u0000d\u0000a\u0000t\u0000e\u0000 \u0000+\u0000%\u0000s\u0000.\u0000%\u0000N\u0002\u0000\u0000\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\\\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0002r\u0000\u0000\u0000T\u0000d\u0000d\u0000e\r\u0000d\u0000\u0001J\u0000\u0000\u0000T\u0000`\u0000f\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000V\u0000Y\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u0002\u0000l\u0000\u0002\u0000m\r\u0000m\u0000\u0001o\u0000\u0000\u0000Y\u0000\\\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0002\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000c\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002r\u0000\u0000\u0000e\u0000p\u0000p\u0000q\r\u0000p\u0000\u0002c\u0000\u0000\u0000e\u0000l\u0000r\u0000s\r\u0000r\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000\u0000\r\u0000s\u0000\u0001m\u0000\u0000\u0000h\u0000k\n\u0000\u0004\nctxt\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000o\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003X\u0000\u0000\u0000q\u0000\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000}\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nlnfd\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0000y\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u0002\u0000w\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u001d\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0010\u0000\u0000\u001e\u0000%\u0000Z\u00000\u00007\u0000>\u0000N\u0000X\u0000`\u0000t\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\nbeforetell\u0000\nBeforeTell\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u001a0\u0000\u000bbeforestart\u0000\u000bBeforeStart\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u000b\u0000\u00180\u0000\nafterstart\u0000\nAfterStart\u000b\u0000\u00160\u0000\taftertell\u0000\tAfterTell\u0003\u0000\u0004\u000b\u0000\u00100\u0000\u0006mylist\u0000\u0006myList\n\u0000\u0004\nctxt\u000b\u0000\u00140\u0000\bmystring\u0000\bmyString\n\u0000\u0004\nkocl\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nlnfd\u0011\u0000j\f\u0000\u0001EO\u0012\u0000<*\/j\f\u0000\u0006Oj\f\u0000\u0001EO**k\/l\/%%\/m\/a\u0000\u0010\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0001E`\u0000\u0013UOa\u0000\u0014j\f\u0000\u0001E`\u0000\u0015O_\u0000\u0013_\u0000\u0015a\u0000\u0016vE`\u0000\u0017Oa\u0000\u0018a\u0000\u0019&E`\u0000\u001aO\u0017\u0000%_\u0000\u0017[a\u0000\u001bl\f\u0000\u001ckh\u001b\u0000\u0001_\u0000\u001a%_\u0000\u001d%E`\u0000\u001a[OYO_\u0000\u001a\u000f\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00002\u00005\u00009\u00005\u00001\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00003\u00005\u00000\u00001\u00000\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00006\u00007\u00000\u00005\u00006\u00000\u00000\u00000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00007\u00003\u00001\u00002\u00004\u00000\u00000\u00000\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00002\u00005\u00009\u00005\u00001\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00003\u00005\u00000\u00001\u00000\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00006\u00007\u00000\u00005\u00006\u00000\u00000\u00000\u0000\n\u00001\u00004\u00007\u00005\u00005\u00000\u00003\u00007\u00003\u00008\u0000.\u00005\u00007\u00003\u00001\u00002\u00004\u00000\u00000\u00000\u0000\n\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"398db2237fc355db1446d65333ffad906dfa1fc0","subject":"Alfred checkin","message":"Alfred checkin\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u000e\u0000)\u0000\u0003\u0018\u0000*\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000(\u0000\u0001\u0000,\u0011\u0000,\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u0000-\u0011\u0000-\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u0000.\u0011\u0000.\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000\/\u0011\u0000\/\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00000\u0011\u00000\u0000\u001a\u0000P\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00001\u0011\u00001\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u001a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000E\u0000d\u0000i\u0000t\u0000o\u0000r\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000D\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000a\u0000r\u0000y &\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"11c21504a38704811093ded02dc7dd6e930fed6a","subject":"Delete trailing whitespace","message":"Delete trailing whitespace\n","repos":"katsuma\/itunes-client","old_file":"scripts\/track\/finder.tmpl.scpt","new_file":"scripts\/track\/finder.tmpl.scpt","new_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & my escape_quote(name of specified_track) & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & my escape_quote(album of specified_track) & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & my escape_quote(artist of specified_track) & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n\n\non escape_quote(someText)\n return replaceText(someText, \"\\\"\", \"\\\\\\\"\")\nend escape_quote\n\n(*\n https:\/\/discussions.apple.com\/thread\/4588230?start=0&tstart=0\n*)\non replaceText(someText, oldItem, newItem)\n set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, oldItem}\n try\n set {itemList, AppleScript's text item delimiters} to {text items of someText, newItem}\n set {someText, AppleScript's text item delimiters} to {itemList as text, tempTID}\n on error errorMessage number errorNumber -- oops\n set AppleScript's text item delimiters to tempTID\n error errorMessage number errorNumber -- pass it on\n end try\n\n return someText\nend replaceText\n","old_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & my escape_quote(name of specified_track) & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & my escape_quote(album of specified_track) & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & my escape_quote(artist of specified_track) & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n\n\non escape_quote(someText)\n return replaceText(someText, \"\\\"\", \"\\\\\\\"\")\nend escape_quote\n\n(*\n https:\/\/discussions.apple.com\/thread\/4588230?start=0&tstart=0\n*)\non replaceText(someText, oldItem, newItem)\n set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, oldItem}\n try\n set {itemList, AppleScript's text item delimiters} to {text items of someText, newItem}\n set {someText, AppleScript's text item delimiters} to {itemList as text, tempTID}\n on error errorMessage number errorNumber -- oops\n set AppleScript's text item delimiters to tempTID\n error errorMessage number errorNumber -- pass it on\n end try\n \n return someText\nend replaceText\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"27f0a9d35469e28c8804a17c2b1aab709d376dd1","subject":"added dialogs to smart paste functions.","message":"added dialogs to smart paste functions.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"a9316f562d9a78828ea2ee5f69712a270b0a1240","subject":"Fixes #11","message":"Fixes #11\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"FFMPEG \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"4982973c843003353b009edd7b33a7d319e8f28b","subject":"Delete Sleep.applescript","message":"Delete Sleep.applescript","repos":"chrisiona\/OSX-Actions","old_file":"Sleep.applescript","new_file":"Sleep.applescript","new_contents":"","old_contents":"tell application \"Finder\"\n\tsleep\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8d308015b8f742e7968a97b21b59ed74564768bc","subject":"[#67] updated the Mac packager to latest version","message":"[#67] updated the Mac packager to latest version\n","repos":"hotarzhang\/phonegap-app-desktop,getto23\/phonegap-app-desktop,H-Ed\/phonegap-app-desktop,H-Ed\/phonegap-app-desktop,SyedMdKamruzzaman\/phonegap-app-desktop,jvkops\/phonegap-app-desktop,H-Ed\/phonegap-app-desktop,TheChrisLove\/phonegap-app-desktop,getto23\/phonegap-app-desktop,getto23\/phonegap-app-desktop,TheChrisLove\/phonegap-app-desktop,kissthink\/phonegap-app-desktop,TheChrisLove\/phonegap-app-desktop,H-Ed\/phonegap-app-desktop,jvkops\/phonegap-app-desktop,kissthink\/phonegap-app-desktop,kissthink\/phonegap-app-desktop,jvkops\/phonegap-app-desktop,caseytrombley\/phonegap-app-desktop,hotarzhang\/phonegap-app-desktop,getto23\/phonegap-app-desktop,hotarzhang\/phonegap-app-desktop,001szymon\/phonegap-app-desktop,SyedMdKamruzzaman\/phonegap-app-desktop,jvkops\/phonegap-app-desktop,TheChrisLove\/phonegap-app-desktop,SyedMdKamruzzaman\/phonegap-app-desktop,TheChrisLove\/phonegap-app-desktop,caseytrombley\/phonegap-app-desktop,001szymon\/phonegap-app-desktop,SyedMdKamruzzaman\/phonegap-app-desktop,H-Ed\/phonegap-app-desktop,001szymon\/phonegap-app-desktop,001szymon\/phonegap-app-desktop,jvkops\/phonegap-app-desktop,001szymon\/phonegap-app-desktop,kissthink\/phonegap-app-desktop,hotarzhang\/phonegap-app-desktop,caseytrombley\/phonegap-app-desktop,hotarzhang\/phonegap-app-desktop,getto23\/phonegap-app-desktop,SyedMdKamruzzaman\/phonegap-app-desktop,kissthink\/phonegap-app-desktop,caseytrombley\/phonegap-app-desktop,caseytrombley\/phonegap-app-desktop","old_file":"res\/installers\/osx\/support\/template.applescript","new_file":"res\/installers\/osx\/support\/template.applescript","new_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\t\tREPOSITION_HIDDEN_FILES_CLAUSE\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","old_contents":"on run (volumeName)\n\ttell application \"Finder\"\n\t\ttell disk (volumeName as string)\n\t\t\topen\n\t\t\t\n\t\t\tset theXOrigin to WINX\n\t\t\tset theYOrigin to WINY\n\t\t\tset theWidth to WINW\n\t\t\tset theHeight to WINH\n\t\t\t\n\t\t\tset theBottomRightX to (theXOrigin + theWidth)\n\t\t\tset theBottomRightY to (theYOrigin + theHeight)\n\t\t\tset dsStore to \"\\\"\" & \"\/Volumes\/\" & volumeName & \"\/\" & \".DS_STORE\\\"\"\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t-- set position of every item to {theBottomRightX + 100, 100}\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\t\tset statusbar visible to false\n\t\t\tend tell\n\t\t\t\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to ICON_SIZE\n\t\t\t\tset text size to TEXT_SIZE\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tBACKGROUND_CLAUSE\n\t\t\t\n\t\t\t-- Positioning\n\t\t\tPOSITION_CLAUSE\n\t\t\t\n\t\t\t-- Hiding\n\t\t\tHIDING_CLAUSE\n\t\t\t\n\t\t\t-- Application Link Clause\n\t\t\tAPPLICATION_CLAUSE\n close\n open\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\t-- Force saving of the size\n\t\t\tdelay 1\n\t\t\t\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX - 10, theBottomRightY - 10}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\tdelay 1\n\t\t\n\t\ttell disk (volumeName as string)\n\t\t\ttell container window\n\t\t\t\tset statusbar visible to false\n\t\t\t\tset the bounds to {theXOrigin, theYOrigin, theBottomRightX, theBottomRightY}\n\t\t\tend tell\n\t\t\t\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\t\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 3\n\t\t\n\t\tset waitTime to 0\n\t\tset ejectMe to false\n\t\trepeat while ejectMe is false\n\t\t\tdelay 1\n\t\t\tset waitTime to waitTime + 1\n\t\t\t\n\t\t\tif (do shell script \"[ -f \" & dsStore & \" ]; echo $?\") = \"0\" then set ejectMe to true\n\t\tend repeat\n\t\tlog \"waited \" & waitTime & \" seconds for .DS_STORE to be created.\"\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"ae508ac232ed328c67330dd066b9e7bb816b90a8","subject":"Update","message":"Update\n","repos":"sumipan\/photoshop-jsx.rb","old_file":"bin\/PhotoshopJsx.scpt","new_file":"bin\/PhotoshopJsx.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u00002\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u000e\u00002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\u0012\u00001\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\"\u0000#\u0000$\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000%\n\u0000\u0004\nalis\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0006\u0000$\u0000\u0003\u0000&\n\u0000\u0004\nfltp\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\n0\u0000\u0003psd\u0000\u0003PSD\u0006\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0002\u0000#\u0000+\u0000)\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0003l\u0000\u0005\u0000#\u0000'\u0000*\r\u0000*\u0000\u00024\u0000\u0000\u0000#\u0000'\u0000+\n\u0000\u0004\nfile\r\u0000+\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000(\u0000\u0002\u0000,\r\u0000,\u0000\u0003I\u0000\u0002\u0000,\u00001\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000-\u000f\u0000-\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000.\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\/\u00000\u0001\u0000\u0000\u0010\u0000\/\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00000\u0000\u0007\u0010\u0000\b\u00001\u00002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00001\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00002\u0000\f\u0000-\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0004\nfltp\u000b\u0000\n0\u0000\u0003psd\u0000\u0003PSD\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u00003k\/EOl\/EO\u0012\u0000!*j\f\u0000\u0004O*\/l\f\u0000\bO*\/j\f\u0000\nO*j\f\u0000\u000bU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\f\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0002O\u0000\u0000\u0000\u0007\u0000\u001a\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001k\u0000\u0000\u0000\u000b\u0000\u0019\u0000\u0016\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u0019\u0000\u001a\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u001a\u0000\u0003l\u0000\u0005\u0000\u0011\u0000\u0015\u0000\u001b\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015\u0000\u001c\n\u0000\u0004\nfile\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u001d\u000f\u0000\u001d\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001e\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u001f\u0000 \u0001\u0000\u0000\u0010\u0000\u001f\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000 \u0000\u0007\u0010\u0000\b\u0000!\u0000\"\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000!\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\"\u0000\u0006\u0000\u001d\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u0011\u0000\u001bk\/EO\u0012\u0000\u0010*j\f\u0000\u0003O*\/j\f\u0000\u0005U\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d170814b05264786150b5cf50e055a067b72ae65","subject":"Add random prefix to temporary files to prevent collisions","message":"Add random prefix to temporary files to prevent collisions\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix, randomPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Generate the random prefix\n -- via http:\/\/macscripter.net\/viewtopic.php?id=12212\n set randomPrefix to \"\"\n repeat with x from 1 to 6\n set randomChar to ASCII character (random number from 97 to 122)\n set randomPrefix to randomPrefix & randomChar\n end repeat\n set randomPrefix to randomPrefix & \"_\"\n \n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/\" & randomPrefix & \"concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp\/\" & randomPrefix & \" && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/\" & randomPrefix & \"concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/\" & randomPrefix & \"cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n -- Apparently fails if file is accessed too quickly\n -- https:\/\/bugs.launchpad.net\/maxosx\/+bug\/368342\n delay 2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n \ttry\n \t\tprogressField's setStringValue_(\"Waiting ten seconds...\")\n \t\tdelay 9\n \t\tprogressField's setStringValue_(\"Adding TOC...\")\n \t\tdelay 1\n \t\ttell application \"iTunes\"\n \tset lyrics of theAddedTrack to tocText\n \tend tell\n \ton error innererror number innererrornumber\n \t\tset errorHappened to true\n \tdo shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.mp4 \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.\" & mediaType\n \tprogressField's setStringValue_(\"\")\n \tset the clipboard to tocText\n \tdisplay dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & innererrornumber & \": \" & innererror & \" The TOC has been copied to the clipboard instead.\"\n \tend try\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/\" & randomPrefix & \"concat* \/private\/tmp\/\" & randomPrefix & \"cat.chapters.txt \/private\/tmp\/\" & randomPrefix & \"cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script\n\n","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n -- Apparently fails if file is accessed too quickly\n -- https:\/\/bugs.launchpad.net\/maxosx\/+bug\/368342\n delay 2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n \ttry\n \t\tprogressField's setStringValue_(\"Waiting ten seconds...\")\n \t\tdelay 9\n \t\tprogressField's setStringValue_(\"Adding TOC...\")\n \t\tdelay 1\n \t\ttell application \"iTunes\"\n \tset lyrics of theAddedTrack to tocText\n \tend tell\n \ton error innererror number innererrornumber\n \t\tset errorHappened to true\n \tdo shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n \tprogressField's setStringValue_(\"\")\n \tset the clipboard to tocText\n \tdisplay dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & innererrornumber & \": \" & innererror & \" The TOC has been copied to the clipboard instead.\"\n \tend try\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"c52f55d2a3beef0f5320e476c306ae81c6f10b8d","subject":"Fix permissions for Mavericks","message":"Fix permissions for Mavericks\n","repos":"pirog\/kalabox-server,kalamuna\/kalaboxv1,kalamuna\/kalaboxv1,kalamuna\/kalaboxv1","old_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_contents":"set kalaicon to alias ((path to me as text) & \":..:..:..:..:app.icns\")\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","old_contents":"set kalaicon to alias ((path to me as text) & \":..:..:..:..:app.icns\")\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6c0ebb4fd8b634604354dca4cbbfe84c15d40a35","subject":"Issue 98: add kalabox logo to the password prompt instead of default mac os application icon","message":"Issue 98: add kalabox logo to the password prompt instead of default mac os application icon\n","repos":"kalamuna\/kalaboxv1,kalamuna\/kalaboxv1,pirog\/kalabox-server,kalamuna\/kalaboxv1","old_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_file":"src\/kalabox\/utils\/task-runner\/sudo-pass.scpt","new_contents":"set kalaicon to alias ((path to me as text) & \":..:..:..:..:app.icns\")\ntell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon kalaicon \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","old_contents":"tell application \"SystemUIServer\"\n activate\n set my_password to display dialog \u00ac\n \"Please enter your administrator password:\" with title \u00ac\n \"Password\" with icon caution \u00ac\n default answer \u00ac\n \"\" buttons {\"Cancel\", \"OK\"} default button 2 \u00ac\n giving up after 295 \u00ac\n with hidden answer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"dc25544c14f8fc5548b6bef69715df45a5ad89d6","subject":"limit results to 1","message":"limit results to 1\n","repos":"irkit\/osx-launcher,irkit\/osx-launcher","old_file":"IRSender\/IRSender.applescript","new_file":"IRSender\/IRSender.applescript","new_contents":"-- thanks to http:\/\/stackoverflow.com\/questions\/3444326\/list-all-applications-output-as-text-file\nproperty pLSRegisterPath : \"\/System\/Library\/Frameworks\/CoreServices.framework\/Versions\/A\/Frameworks\/LaunchServices.framework\/Versions\/A\/Support\/lsregister\"\n\nusing terms from application \"Quicksilver\"\n\ton open _files\n display dialog _files as text\n\n\t\tset _apppath to (do shell script pLSRegisterPath & \" -dump | grep -m 1 --only-matching \\\"\/.*\/IRLauncher\\\\.app\\\"\")\n\t\tdisplay dialog _apppath\n\n\t\tset _path to POSIX path of (item 1 of _files as text)\n\t\tdisplay dialog _path\n\t\n\t\tdo shell script _apppath & \"\/Contents\/MacOS\/IRLauncher \" & _path & \" > \/dev\/null 2>&1 &\"\n\tend open\nend using terms from\n","old_contents":"-- thanks to http:\/\/stackoverflow.com\/questions\/3444326\/list-all-applications-output-as-text-file\nproperty pLSRegisterPath : \"\/System\/Library\/Frameworks\/CoreServices.framework\/Versions\/A\/Frameworks\/LaunchServices.framework\/Versions\/A\/Support\/lsregister\"\n\nusing terms from application \"Quicksilver\"\n\ton open _files\n display dialog _files as text\n\n\t\tset _apppath to (do shell script pLSRegisterPath & \" -dump | grep --only-matching \\\"\/.*\/IRLauncher\\\\.app\\\"\")\n\t\tdisplay dialog _apppath\n\n\t\tset _path to POSIX path of (item 1 of _files as text)\n\t\tdisplay dialog _path\n\t\n\t\tdo shell script _apppath & \"\/Contents\/MacOS\/IRLauncher \" & _path & \" > \/dev\/null 2>&1 &\"\n\tend open\nend using terms from\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"be09daac327af2af323ddba3374453329f16d997","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"global num_servers\nset num_servers to 7\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab && sudo umount \/mnt && sudo mkdir -p \/mnt\/local-ssd && sudo mount \/mnt\/local-ssd && sudo chown -R ubuntu \/mnt\/local-ssd && mkdir \/mnt\/local-ssd\/cass-data && mkdir ~\/cass-data-vol && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2 && mkdir \/mnt\/ebs-ssd-gp2\/cass-data && sudo mkdir -p \/mnt\/ebs-mag && sudo mount \/mnt\/ebs-mag && sudo mkdir \/mnt\/ebs-mag\/cass-data && sudo chown -R ubuntu \/mnt\/ebs-mag && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true) && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2 && sudo chown -R ubuntu \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_prepare_dirs\n\n\non watch_free_mem()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend watch_free_mem\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\t-- These can be grouped\n\tmy server_format_ebs_mag_mount_prepare_dirs()\n\tmy watch_free_mem()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\tmy save_screen_layout()\n\t\n\t-- This takes some time to make sure each server has different exp datetime. Wait till all servers are ready before moving on to the next step\n\tmy run_server()\n\t\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n\n\n\n\n\n\n\n","old_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab && sudo umount \/mnt && sudo mkdir -p \/mnt\/local-ssd && sudo mount \/mnt\/local-ssd && sudo chown -R ubuntu \/mnt\/local-ssd && mkdir \/mnt\/local-ssd\/cass-data && mkdir ~\/cass-data-vol && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2 && mkdir \/mnt\/ebs-ssd-gp2\/cass-data && sudo mkdir -p \/mnt\/ebs-mag && sudo mount \/mnt\/ebs-mag && sudo mkdir \/mnt\/ebs-mag\/cass-data && sudo chown -R ubuntu \/mnt\/ebs-mag && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true) && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2 && sudo chown -R ubuntu \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_prepare_dirs\n\n\non watch_free_mem()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend watch_free_mem\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\n-- One-time use.\non server_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\t-- In case needed\n\t-- my git_pull()\n\t\n\t-- These can be grouped\n\tmy server_format_ebs_mag_mount_prepare_dirs()\n\tmy watch_free_mem()\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\tmy save_screen_layout()\n\t\n\t-- This takes like 40 secs. Do not move focus to anywhere else, or it will fail.\n\tmy run_server()\n\t\n\tmy server_pressure_memory()\n\t\n\tmy client_run_loadgen()\n\t\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory\n\t-- my server_data_dir_to_ebs_mag()\nend run_all\n\n\nmy screen_detach()\n\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"524e293758fa179ad69d122d961bf2b948ec3c0f","subject":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.","message":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.\n","repos":"morganestes\/morganestes-growl,tectronics\/growl,ylian\/growl,nochkin\/growl,ylian\/growl,timbck2\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,tectronics\/growl,tectronics\/growl,chashion\/growl,chashion\/growl,morganestes\/morganestes-growl,nochkin\/growl,nkhorman\/archive-growl,ylian\/growl,nkhorman\/archive-growl,chashion\/growl,timbck2\/growl,tectronics\/growl,xhruso00\/growl,chashion\/growl,xhruso00\/growl,xhruso00\/growl,ylian\/growl,timbck2\/growl,SalrJupiter\/growl,SalrJupiter\/growl,tectronics\/growl,nagyistoce\/growl,chashion\/growl,tectronics\/growl,nkhorman\/archive-growl,ylian\/growl,an0nym0u5\/growl,xhruso00\/growl,timbck2\/growl,nochkin\/growl,an0nym0u5\/growl,SalrJupiter\/growl,nochkin\/growl,nagyistoce\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,xhruso00\/growl,morganestes\/morganestes-growl,xhruso00\/growl,SalrJupiter\/growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,nochkin\/growl,an0nym0u5\/growl,an0nym0u5\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,ylian\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,nochkin\/growl,timbck2\/growl,nagyistoce\/growl,an0nym0u5\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"994b421242aaa5f5046a3a9f81d2140237849f32","subject":"Wil who likes men said to do this","message":"Wil who likes men said to do this\n","repos":"wilg\/xboxlivefriends,wilg\/xboxlivefriends,wilg\/xboxlivefriends","old_file":"XLF.applescript","new_file":"XLF.applescript","new_contents":"","old_contents":"\n\non http_post(the_data, the_url)\n\tset the_command to \"curl -d \" & quoted form of the_data & \" \" & the_url\n\treturn do shell script (the_command as Unicode text)\nend http_post\n\non open_location(x)\n\topen location x\nend open_location","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b8acceeb34e4eb8530edca1d8d18e7e37242804b","subject":"Updated rate_current_track.","message":"Updated rate_current_track.\n","repos":"jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles","old_file":"bin\/osx\/rate_current_track.scpt","new_file":"bin\/osx\/rate_current_track.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001f\u0000\n\u0000\u000b\r\u0000\n\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000\u001e\u0000\f\u0000\r\r\u0000\f\u0000\u0002=\u0000\u0003\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npPlS\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\b\u000bePlSkPSP\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\f\u0000\u001a\u0000\u0010\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0001\u0000\u0000\f\u0000\u000f\u0000\u0015\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\npTrk\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0002\u0000\u0012\u0000\u0002\u0000\u0016\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u001a\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u0016\u0000\u0019\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0016\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u001c\n\u0000\u0004\ncobj\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0018\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u001d\r\u0000\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\npRte\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000 \u000f\u0000 \u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0755\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002T\u011aq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u011a\u0002\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0755\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000!\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\"\u0000#\u0000$\u0001\u0000\u0000\u0010\u0000\"\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u000e\u0000#\u0000\u0007\u0010\u0000\b\u0000%\u0000&\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000%\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000&\u0000\u0007\u0000 \n\u0000\u0004\npPlS\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\n\u0000\u0004\ncobj\n\u0000\u0004\npRte\u0011\u0000 \u0012\u0000\u001c*,\u0000\u001d\u0000\u0013*,EOk\/,FY\u0000\u0003hU\u000f\u000e\u0000$\u0000\u0001\u0014\u0000'\u000e\u0000'\u0000\u0004\u0019\u0000(\u000e\u0000(\u0000\u0004\u0019\u0000)\u000e\u0000)\u0000\u0004\u0019\u0000 \n\u0000\u0004\ncSrc\u0003\u0000(\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncUsP\u0003h\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncFlT\u0003h\n\u0000\b\u000bkfrmID ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001f\u0000\n\u0000\u000b\r\u0000\n\u0000\u0004Z\u0000\u0000\u0000\u0004\u0000\u001e\u0000\f\u0000\r\r\u0000\f\u0000\u0002=\u0000\u0003\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\npPlS\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\b\u000bePlSkPSP\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\f\u0000\u001a\u0000\u0010\u0002\u0000\u0010\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0001\u0000\u0000\f\u0000\u000f\u0000\u0015\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\npTrk\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0002\u0000\u0012\u0000\u0002\u0000\u0016\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u001a\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u0016\u0000\u0019\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0016\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u001c\n\u0000\u0004\ncobj\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0001\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0018\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u001d\r\u0000\u001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\npRte\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000 \u000f\u0000 \u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0755\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002T\u011aq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u011a\u0002\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0755\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000!\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\"\u0000#\u0000$\u0001\u0000\u0000\u0010\u0000\"\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u000e\u0000#\u0000\u0007\u0010\u0000\b\u0000%\u0000&\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000%\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000&\u0000\u0007\u0000 \n\u0000\u0004\npPlS\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\n\u0000\u0004\ncobj\n\u0000\u0004\npRte\u0011\u0000 \u0012\u0000\u001c*,\u0000\u001d\u0000\u0013*,EOk\/,FY\u0000\u0003hU\u000f\u000e\u0000$\u0000\u0001\u0014\u0000'\u000e\u0000'\u0000\u0004\u0019\u0000(\u000e\u0000(\u0000\u0004\u0019\u0000)\u000e\u0000)\u0000\u0004\u0019\u0000 \n\u0000\u0004\ncSrc\u0003\u0000*\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncUsP\u00031v\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncFlT\u0003w\n\u0000\b\u000bkfrmID ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b582b23092cd681c0cc416a3605737b8646c13be","subject":"Add openPresentation","message":"Add openPresentation\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1f7f80fed5c0b3352c040502909d1ac7d2663980","subject":"Saving","message":"Saving\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- set the chosenTheme to themeName\n\n\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset thisDocument to \u00ac\n\t\t\tmake new document with properties \u00ac\n\t\t\t\t{document theme:theme (themeName as string)}\n\t\t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- set the chosenTheme to themeName\n\n\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset thisDocument to \u00ac\n\t\t\tmake new document with properties \u00ac\n\t\t\t\t{document theme:theme (themeName as string)}\n\t\t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"23bf5244b75bfc1a5458110de7920acd1be3f428","subject":"separate dialog for closing window on osx","message":"separate dialog for closing window on osx\n\ngit-svn-id: 1940fb81eac38ef6ef058c79705648ed98d10eaf@591 981887c0-d8ae-4743-aaa6-7abdade54d40\n","repos":"wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav","old_file":"chartconvert\/AvChartConvert.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"chartconvert\/AvChartConvert.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\u0000\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003X\u0000\u0000\u0000\u0004\u0000*\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001k\u0000\u0000\u0000\u0014\u0000%\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nstrq\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u0017\u0000\u001e\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001f\u0000 \r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\npsxp\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000!\r\u0000!\u0000\u0002r\u0000\u0000\u0000\u001c\u0000%\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000$\u0000%\r\u0000$\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0000&\u0000'\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0002\u0000 \r\u0000%\u0000\u0003l\u0000\u0005\u0000\u001f\u0000\"\u0000*\r\u0000*\u0000\u0002c\u0000\u0000\u0000\u001f\u0000\"\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u0000\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000+\u00004\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\nstrq\r\u00002\u0000\u0003l\u0001\u0000\u0000+\u00002\u00003\r\u00003\u0000\u0002n\u0000\u0000\u0000+\u00002\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u00000\u00002\n\u0000\u0004\npsxp\r\u00005\u0000\u0003l\u0000\u0005\u0000+\u00000\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000+\u00000\u00007\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00007\u0000\u0000f\u0000\u0000\u0000+\u0000,\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\u0002\u0000.\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000:\u0000;\r\u0000:\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000<\u0000=\r\u0000<\u0000\u0002b\u0000\u0000\u00007\u0000<\u0000>\u0000?\r\u0000>\u0000\u0002b\u0000\u0000\u00007\u0000:\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u00007\u00008\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0012\u0000`\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000A\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000*\u0000`\u0000\/\u0000r\u0000e\u0000a\u0000d\u0000_\u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000_\u0000o\u0000s\u0000x\u0000.\u0000s\u0000h\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u00009\u0000\u0002\u0000F\r\u0000F\u0000\u0002O\u0000\u0000\u0000A\u0000\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000E\u0000\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0002\u0000E\u0000J\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000K\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000K\u0000R\u0000R\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000R\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0000S\u0000T\r\u0000S\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000T\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0000U\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u0000\n\u0000;\u0000e\u0000x\u0000i\u0000t\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0002\u0000O\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0002r\u0000\u0000\u0000U\u0000h\u0000Y\u0000Z\r\u0000Y\u0000\u0003l\u0000\u0005\u0000U\u0000f\u0000[\r\u0000[\u0000\u00026\u0001\u0000\u0000U\u0000f\u0000\\\u0000]\r\u0000\\\u0000\u00024\u0000\u0001\u0000U\u0000Y\u0000^\n\u0000\u0004\ncwin\r\u0000^\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u0000]\u0000\u0002=\u0000\u0003\u0000\\\u0000e\u0000_\u0000`\r\u0000_\u0000\u00011\u0000\u0000\u0000]\u0000a\n\u0000\u0004\ntcnt\r\u0000`\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000X\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0002r\u0000\u0000\u0000i\u0000r\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0003\u0000\r\u0000d\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000e\r\u0000e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nccol\r\u0000g\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000b\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000s\u0000|\u0000j\u0000k\r\u0000j\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000(\r\u0000k\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000l\r\u0000l\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000m\u0000n\r\u0000m\u0000\u00011\u0000\u0000\u0000w\u0000{\n\u0000\u0004\ncrow\r\u0000n\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000q\u0000r\r\u0000q\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000s\u000e\u0000s\u0000\u0001\u0000t\u0011\u0000t\u0000\u001c\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\r\u0000r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000u\u0000v\r\u0000u\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000p\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003I\u0000\u0002\u0000\u0000\u0000y\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000y\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000x\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002V\u0000\u0000\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001k\u0000\u0000\u0000\u0000\u0000~\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000*\u0000*\u0000*\u0000c\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\r\u0000\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000{\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000C\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000,\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nsavo\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000\u0000\r\u0000H\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f@\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0007wc\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000wG\u0000\u0000\u0000\u0001\u0000\b\u0000\f@\u0000\f?\u0000\u0002\u0000.AndreasMac:Applications:Utilities:Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000o\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nof C\r\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000N\u0000S\u0000O\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0018\u0000!\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000s\u0000e\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000F\u0000i\u0000l\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\"\u0000+\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000s\u0000e\u0000t\u0000F\u0000l\u0000o\u0000a\u0000t\u0000i\u0000n\u0000g\u0000P\u0000a\u0000n\u0000e\u0000l\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000,\u00005\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000D\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000@\u0000K\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000s\u0000e\u0000t\u0000R\u0000e\u0000s\u0000o\u0000l\u0000v\u0000e\u0000s\u0000A\u0000l\u0000i\u0000a\u0000s\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003~\u0000\u0000\n~\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E}\u000b}\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003|\u0000{\n|\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000Gz\u000bz\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000L\u0000Wy\u0000\u0000\ny\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000s\u0000e\u0000t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000s\u0000M\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000:\u0006\u0000\u0000\u0003x\u0000\u0000\nx\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000P\u0000Qw\u000bw\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003v\u0000u\nv\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000St\u000bt\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000X\u0000e\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000X\u0000as\u0000\u0000\ns\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000[\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000r\u0000u\u0000n\u0000M\u0000o\u0000d\u0000a\u0000l\u0006\u0000\u0000\u0003r\u0000q\nr\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]p\u000bp\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006q\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0004Z\u0000\u0000\u0000f\u0000\u0000\u0000ml\r\u0000\u0000\u0002=\u0000\u0003\u0000f\u0000k\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000ik\u000bk\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0000\u0000\u0001m\u0000\u0000\u0000i\u0000jj\u0003j\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0003\u0000n\u0000{\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000n\u0000{\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000wi\u0000\u0000\ni\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000n\u0000a\u0000m\u0000e\u0000s\u0006\u0000\u0000\u0003h\u0001\u0002g\nh\u0000\u0004\npsof\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0000r\u0000sf\u000bf\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006g\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\f\u0000\u00006\u00000 0 is returned when the cancel button is pressed\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000`\u0000 \u00000\u0000 \u0000i\u0000s\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000e\u0000s\u0000s\u0000e\u0000d\u0002m\u0000\u0000\u0001l\u0000\u0000\u0002n\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0004\u000f\u0001\u0004\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f7\u0014Automator Runner.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f(~\u0007`\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000}@\u0000\u0000\u0000\u0001\u0000\f\u0000\f7\u0000\f\u0000\f\u0000\u0002\u0000;AndreasMac:System:Library:CoreServices:Automator Runner.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000R\u0000u\u0000n\u0000n\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u00000System\/Library\/CoreServices\/Automator Runner.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0007dc\r\u0001\u0007\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001\b\u0001\tba\r\u0001\b\u0000\u0002=\u0000\u0003\u0000\u0000\u0001\n\u0001\u000b\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000`\u000b`\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000_\u0003_\u0000\u0001\r\u0001\t\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0003I\u0000\u0002\u0000\u0000^\u0001\u000e]\n^\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0001\u000e\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u000f\\[\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Z\u000bZ\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002]\u0000\u0000\r\u0001\r\u0000\u0000f\u0000\u0000\u0000\u0000\u0002b\u0000\u0000\u0001a\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0010Y\r\u0001\u0010\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000XWV\u0001X\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002Y\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\nU\u0001\u0011\u0001\u0012\u0001\u0013\u0001\u0014TS\u0001\u0015RQ\u0001U\u0000\u0000\u0010\u0001\u0011\u0000\bPONMLKJI\nP\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\nO\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bN\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000bM\u0000\u00140\u0000\btruebool\u0000\btrueBool\u000bL\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000bK\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001J\u0000\u0000\u0001I\u0000\u0000\u000e\u0001\u0012\u0000\u0007\u0010H\u0000\nGF\u0001\u0016\u0001\u0017E\nH\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000bG\u0000\u00060\u0000\u0002df\u0000\u0000\u0002F\u0000\u0000\u0010\u0001\u0016\u0000\bDCBA@?>=\u000bD\u0000\u00060\u0000\u0002df\u0000\u0000\u000bC\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u000bB\u0000\t0\u0000\u0005aname\u0000\u0000\u000bA\u0000\u00070\u0000\u0003dfp\u0000\u0000\u000b@\u0000\n0\u0000\u0006mypath\u0000\u0000\u000b?\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b>\u0000\u00060\u0000\u0002tw\u0000\u0000\u000b=\u0000\t0\u0000\u0005mywin\u0000\u0000\u0010\u0001\u0017\u0000 \u0000\u0011<;:98\u0000(76\u0000B\u0000D\u00005\u0000U43\u0001\u0018210\/.\u0000s-,+\u0000\u0000*)('\n<\u0000\u0004\nkocl\n;\u0000\u0004\ncobj\n:\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n9\u0000\u0004\npsxp\n8\u0000\u0004\nstrq\n7\u0000\u0004\nctxt\n6\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n5\u0000\u0018.miscactvnull\u0000\u0000null\n4\u0000\u0018.coredoscnull\u0000\u0000ctxt\n3\u0000\u0004\ncwin\u000e\u0001\u0018\u0000\u0000\u0013\n2\u0000\u0004\ntcnt\u00031\u0000\n0\u0000\u0004\nccol\u0003\/\u0000(\n.\u0000\u0004\ncrow\n-\u0000\u0004\ntitl\n,\u0000\u0018.sysodelanull\u0000\u0000nmbr\n+\u0000\u0004\npcnt\n*\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n)\u0000\u0004\nsavo\n(\u0000\b\u000bsavono \n'\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011E\u0000EO\u0017\u0000%[l\f\u0000\u0003kh\u001b\u0000\u0002,,EO%&%E[OYO)j\f\u0000\b,,EO%%%EO\u0012\u0000*j\f\u0000\fO%j\f\u0000\u000eEO*k\/a\u0000\u0010[a\u0000\u0011,\\Z81EOa\u0000\u0012a\u0000\u0013,FOa\u0000\u0014a\u0000\u0015,FOa\u0000\u0016a\u0000\u0017,FOlj\f\u0000\u0018O\u0017\u0000%he\u0019a\u0000\u0019,a\u0000\u0019,a\u0000\u001a\b\u001d\u0000\u0006\u0016Y\u0000\u0003hOkj\f\u0000\u0018[OYOa\u0000\u001bj\f\u0000\u001cOa\u0000\u001da\u0000\u001el\f\u0000\u001fU\u000f\u000e\u0001\u0013\u0000\u0007\u0010&\u0001\u0019%$\u0001\u001a\u0001\u001b#\n&\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0019\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001\u001c\u0002\u0001\u001c\u0000\u0002\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u0005\"\u0002\"\u0000\u0000\u0001%\u0000\u0000\u0002$\u0000\u0000\u0010\u0001\u001a\u0000\u0000\u0010\u0001\u001b\u0000\u0017\u0001\u0004!\u0000 \u0000\u001f\u001e\u001d\u0000\u001c\u001b\u0000\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0018\u0017\n!\u0000\u0018.miscactvnull\u0000\u0000null\n \u0000\u0004\nof C\n\u001f\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u001e\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000b\u001d\u0000\u00140\u0000\btruebool\u0000\btrueBool\n\u001c\u0000\u0004\npsof\n\u001b\u0000\u0004\nwitQ\u0003\u001a\u0000\u0004\u000b\u0019\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0018\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\n\u0017\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0011#\u0000\u0012\u0000}*j\f\u0000\u0001Ol\f\u0000\u0005EOeEO\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005Oa\u0000\u0010\f\u0000\u0005Oa\u0000\u0011\f\u0000\u0005Oa\u0000\u0012l\f\u0000\u0005E`\u0000\u0013O_\u0000\u0013k\u0000\u001d\u0000\u0012a\u0000\u0014l\f\u0000\u0005E`\u0000\u0015Y\u0000\u0003hUO_\u0000\u0013k\u0000\u001d\u0000\u0011)\u0012\u0000\t_\u0000\u0015j\f\u0000\u0016UY\u0000\u0003h\u000f\u000e\u0001\u0014\u0000\u0001\u0014\u0001\u001e\u000e\u0001\u001e\u0000\u0002\u0015\u0001\u0004\u0016\n\u0016\u0000\u0004\nopeP\nT\u0000\b\u000bboovtrue\u0003S\u0000\u0001\u000e\u0001\u0015\u0000\u0002\u0004\u0015\u0001\u001f\u0003\u0015\u0000\u0001\u000e\u0001\u001f\u0000\u0001\u0000\u0001 \u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000r\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000\/\u0000K\u0000a\u0000r\u0000t\u0000e\u0000n\u0000\/\u0000n\u0000v\u0000\/\u0000s\u0000a\u0000t\u0000z\u00004\u0000-\u00002\u00000\u00001\u00002\u0000-\u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0000\/\u0000H\u0000L\u0000S\u00004\u00005\u0000_\u00004\u0000.\u0000k\u0000a\u0000p\u0001R\u0000\u0000\u0001Q\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\u0000\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003X\u0000\u0000\u0000\u0004\u0000*\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001k\u0000\u0000\u0000\u0014\u0000%\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nstrq\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u0017\u0000\u001e\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001f\u0000 \r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\npsxp\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000!\r\u0000!\u0000\u0002r\u0000\u0000\u0000\u001c\u0000%\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000$\u0000%\r\u0000$\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0000&\u0000'\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0002\u0000 \r\u0000%\u0000\u0003l\u0000\u0005\u0000\u001f\u0000\"\u0000*\r\u0000*\u0000\u0002c\u0000\u0000\u0000\u001f\u0000\"\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u0000\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000+\u00004\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\nstrq\r\u00002\u0000\u0003l\u0001\u0000\u0000+\u00002\u00003\r\u00003\u0000\u0002n\u0000\u0000\u0000+\u00002\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u00000\u00002\n\u0000\u0004\npsxp\r\u00005\u0000\u0003l\u0000\u0005\u0000+\u00000\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000+\u00000\u00007\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00007\u0000\u0000f\u0000\u0000\u0000+\u0000,\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\u0002\u0000.\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000:\u0000;\r\u0000:\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000<\u0000=\r\u0000<\u0000\u0002b\u0000\u0000\u00007\u0000<\u0000>\u0000?\r\u0000>\u0000\u0002b\u0000\u0000\u00007\u0000:\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u00007\u00008\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0012\u0000`\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000A\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000*\u0000`\u0000\/\u0000r\u0000e\u0000a\u0000d\u0000_\u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000_\u0000o\u0000s\u0000x\u0000.\u0000s\u0000h\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u00009\u0000\u0002\u0000F\r\u0000F\u0000\u0002O\u0000\u0000\u0000A\u0000\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000E\u0000\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0002\u0000E\u0000J\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0001\u0000K\u0000K\u0000N\u0000O\u0001\u0000\u0000\f\u0000N\u0000*\u0000$set custom title to \"AvChartConvert\"\u0000\u0002\u0000\u0000\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000H\u0000s\u0000e\u0000t\u0000 \u0000c\u0000u\u0000s\u0000t\u0000o\u0000m\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000\"\u0002\u0000M\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000K\u0000R\u0000U\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000U\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000W\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\n\u0000;\u0000e\u0000x\u0000i\u0000t\u0002\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0002\u0000R\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000U\u0000h\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000U\u0000f\u0000^\r\u0000^\u0000\u00026\u0001\u0000\u0000U\u0000f\u0000_\u0000`\r\u0000_\u0000\u00024\u0000\u0001\u0000U\u0000Y\u0000a\n\u0000\u0004\ncwin\r\u0000a\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u0000`\u0000\u0002=\u0000\u0003\u0000\\\u0000e\u0000b\u0000c\r\u0000b\u0000\u00011\u0000\u0000\u0000]\u0000a\n\u0000\u0004\ntcnt\r\u0000c\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000[\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002r\u0000\u0000\u0000i\u0000r\u0000f\u0000g\r\u0000f\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0003\u0000\r\u0000g\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000h\r\u0000h\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nccol\r\u0000j\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000e\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002r\u0000\u0000\u0000s\u0000|\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000(\r\u0000n\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000o\r\u0000o\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000p\u0000q\r\u0000p\u0000\u00011\u0000\u0000\u0000w\u0000{\n\u0000\u0004\ncrow\r\u0000q\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000l\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u001c\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u0000y\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000s\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002V\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000)display dialog c buttons {\"OK\", \"Cancel\"}\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000c\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000O\u0000K\u0000\"\u0000,\u0000 \u0000\"\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0000\"\u0000}\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000*\u0000*\u0000*\u0000c\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\r\u0000\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000C\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000,\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nsavo\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000\u0000\r\u0000H\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f@\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0007wc\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000wG\u0000\u0000\u0000\u0001\u0000\b\u0000\f@\u0000\f?\u0000\u0002\u0000.AndreasMac:Applications:Utilities:Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000o\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nof C\r\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000N\u0000S\u0000O\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0018\u0000!\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000s\u0000e\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000F\u0000i\u0000l\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\"\u0000+\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000s\u0000e\u0000t\u0000F\u0000l\u0000o\u0000a\u0000t\u0000i\u0000n\u0000g\u0000P\u0000a\u0000n\u0000e\u0000l\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000,\u00005\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000D\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000@\u0000K~\u0000\u0000\n~\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000s\u0000e\u0000t\u0000R\u0000e\u0000s\u0000o\u0000l\u0000v\u0000e\u0000s\u0000A\u0000l\u0000i\u0000a\u0000s\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003}\u0000\u0000\n}\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E|\u000b|\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003{\u0000z\n{\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000Gy\u000by\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006z\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000L\u0000Wx\u0000\u0000\nx\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000s\u0000e\u0000t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000s\u0000M\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000:\u0006\u0000\u0000\u0003w\u0000\u0000\nw\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000P\u0000Qv\u000bv\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003u\u0000t\nu\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000Ss\u000bs\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000X\u0000e\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000X\u0000ar\u0000\u0000\nr\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000[\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000r\u0000u\u0000n\u0000M\u0000o\u0000d\u0000a\u0000l\u0006\u0000\u0000\u0003q\u0000p\nq\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]o\u000bo\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006p\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0001\u0000m\r\u0001\u0000\u0000\u0004Z\u0000\u0000\u0000f\u0000\u0001\u0001\u0001\u0002lk\r\u0001\u0001\u0000\u0002=\u0000\u0003\u0000f\u0000k\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000f\u0000ij\u000bj\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0000i\u0000ji\u0003i\u0000\u0001\r\u0001\u0002\u0000\u0003l\u0000\u0003\u0000n\u0000{\u0001\u0005\u0001\u0006\u0001\u0007\r\u0001\u0005\u0000\u0002r\u0000\u0000\u0000n\u0000{\u0001\b\u0001\t\r\u0001\b\u0000\u0003I\u0000\u0002\u0000n\u0000wh\u0001\n\u0001\u000b\nh\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0001\n\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000n\u0000a\u0000m\u0000e\u0000s\u0006\u0001\u000b\u0000\u0003g\u0001\u000ef\ng\u0000\u0004\npsof\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000r\u0000se\u000be\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006f\u0000\u0000\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\f\u0001\u0006\u00006\u00000 0 is returned when the cancel button is pressed\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000`\u0000 \u00000\u0000 \u0000i\u0000s\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000e\u0000s\u0000s\u0000e\u0000d\u0002l\u0000\u0000\u0001k\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f7\u0014Automator Runner.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f(~\u0007`\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000}@\u0000\u0000\u0000\u0001\u0000\f\u0000\f7\u0000\f\u0000\f\u0000\u0002\u0000;AndreasMac:System:Library:CoreServices:Automator Runner.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000R\u0000u\u0000n\u0000n\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u00000System\/Library\/CoreServices\/Automator Runner.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0013cb\r\u0001\u0013\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001\u0014\u0001\u0015a`\r\u0001\u0014\u0000\u0002=\u0000\u0003\u0000\u0000\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000^\u0003^\u0000\u0001\r\u0001\u0015\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0000]\u0001\u001a\\\n]\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0001\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u001b[Z\r\u0001\u001b\u0000\u0001o\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\\\u0000\u0000\r\u0001\u0019\u0000\u0000f\u0000\u0000\u0000\u0000\u0002a\u0000\u0000\u0001`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u001cX\r\u0001\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002X\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\nT\u0001\u001d\u0001\u001e\u0001\u001f\u0001 SR\u0001!QP\u0001T\u0000\u0000\u0010\u0001\u001d\u0000\bONMLKJIH\nO\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\nN\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bM\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000bL\u0000\u00140\u0000\btruebool\u0000\btrueBool\u000bK\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000bJ\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001I\u0000\u0000\u0001H\u0000\u0000\u000e\u0001\u001e\u0000\u0007\u0010G\u0000\nFE\u0001\"\u0001#D\nG\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000bF\u0000\u00060\u0000\u0002df\u0000\u0000\u0002E\u0000\u0000\u0010\u0001\"\u0000\tCBA@?>=<;\u000bC\u0000\u00060\u0000\u0002df\u0000\u0000\u000bB\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u000bA\u0000\t0\u0000\u0005aname\u0000\u0000\u000b@\u0000\u00070\u0000\u0003dfp\u0000\u0000\u000b?\u0000\n0\u0000\u0006mypath\u0000\u0000\u000b>\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b=\u0000\u00060\u0000\u0002tw\u0000\u0000\u000b<\u0000\t0\u0000\u0005mywin\u0000\u0000\u000b;\u0000\u00050\u0000\u0001c\u0000\u0000\u0010\u0001#\u0000 \u0000\u0011:9876\u0000(54\u0000B\u0000D\u00003\u0000X21\u0001$0\/.-,\u0000v+*)\u0000\u0000('&%\n:\u0000\u0004\nkocl\n9\u0000\u0004\ncobj\n8\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n7\u0000\u0004\npsxp\n6\u0000\u0004\nstrq\n5\u0000\u0004\nctxt\n4\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n3\u0000\u0018.miscactvnull\u0000\u0000null\n2\u0000\u0018.coredoscnull\u0000\u0000ctxt\n1\u0000\u0004\ncwin\u000e\u0001$\u0000\u0000\u0013\n0\u0000\u0004\ntcnt\u0003\/\u0000\n.\u0000\u0004\nccol\u0003-\u0000(\n,\u0000\u0004\ncrow\n+\u0000\u0004\ntitl\n*\u0000\u0018.sysodelanull\u0000\u0000nmbr\n)\u0000\u0004\npcnt\n(\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n'\u0000\u0004\nsavo\n&\u0000\b\u000bsavono \n%\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011D\u0000EO\u0017\u0000%[l\f\u0000\u0003kh\u001b\u0000\u0002,,EO%&%E[OYO)j\f\u0000\b,,EO%%%EO\u0012\u0000*j\f\u0000\fO%j\f\u0000\u000eEO*k\/a\u0000\u0010[a\u0000\u0011,\\Z81EOa\u0000\u0012a\u0000\u0013,FOa\u0000\u0014a\u0000\u0015,FOa\u0000\u0016a\u0000\u0017,FOlj\f\u0000\u0018O\u0017\u0000)he\u0019a\u0000\u0019,a\u0000\u0019,EOa\u0000\u001a\b\u001d\u0000\u0006\u0016Y\u0000\u0003hOkj\f\u0000\u0018[OYOa\u0000\u001bj\f\u0000\u001cOa\u0000\u001da\u0000\u001el\f\u0000\u001fU\u000f\u000e\u0001\u001f\u0000\u0007\u0010$\u0001%#\"\u0001&\u0001'!\n$\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001(\u0002\u0001(\u0000\u0002\u0000\u0001)\u0002\u0001)\u0000\u0002\u0001\u0011 \u0002 \u0000\u0000\u0001#\u0000\u0000\u0002\"\u0000\u0000\u0010\u0001&\u0000\u0000\u0010\u0001'\u0000\u0017\u0001\u0010\u001f\u0000\u001e\u0000\u001d\u001c\u001b\u0000\u001a\u0019\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0001\f\u0016\u0015\n\u001f\u0000\u0018.miscactvnull\u0000\u0000null\n\u001e\u0000\u0004\nof C\n\u001d\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u001c\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000b\u001b\u0000\u00140\u0000\btruebool\u0000\btrueBool\n\u001a\u0000\u0004\npsof\n\u0019\u0000\u0004\nwitQ\u0003\u0018\u0000\u0004\u000b\u0017\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0016\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\n\u0015\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0011!\u0000\u0012\u0000}*j\f\u0000\u0001Ol\f\u0000\u0005EOeEO\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005Oa\u0000\u0010\f\u0000\u0005Oa\u0000\u0011\f\u0000\u0005Oa\u0000\u0012l\f\u0000\u0005E`\u0000\u0013O_\u0000\u0013k\u0000\u001d\u0000\u0012a\u0000\u0014l\f\u0000\u0005E`\u0000\u0015Y\u0000\u0003hUO_\u0000\u0013k\u0000\u001d\u0000\u0011)\u0012\u0000\t_\u0000\u0015j\f\u0000\u0016UY\u0000\u0003h\u000f\u000e\u0001 \u0000\u0001\u0014\u0001*\u000e\u0001*\u0000\u0002\u0015\u0001\u0010\u0014\n\u0014\u0000\u0004\nopeP\nS\u0000\b\u000bboovtrue\u0003R\u0000\u0001\u000e\u0001!\u0000\u0002\u0004\u0013\u0001+\u0003\u0013\u0000\u0001\u000e\u0001+\u0000\u0001\u0000\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000r\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000\/\u0000K\u0000a\u0000r\u0000t\u0000e\u0000n\u0000\/\u0000n\u0000v\u0000\/\u0000s\u0000a\u0000t\u0000z\u00004\u0000-\u00002\u00000\u00001\u00002\u0000-\u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0000\/\u0000H\u0000L\u0000S\u00004\u00001\u0000_\u00007\u0000.\u0000k\u0000a\u0000p\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"60e8cfab8c3e04bb2aa665581853acb60e40017d","subject":"Fix Firefox UI scripting edge case: no URL to copy","message":"Fix Firefox UI scripting edge case: no URL to copy\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard -- be nice\n\t\tend try\n\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\t\n\tset os_ver to system version of (system info)\n\t\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\t\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2015 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2015 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\t\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\t\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\t\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\t\n\tif (count of argv) = 0 then return\n\t\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\t\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\t\t\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\terror number -128 -- User canceled\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\t\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\t\t\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\t\t\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\t\t\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\t\n\tset os_ver to system version of (system info)\n\t\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\t\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\t\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e1dd0bf0abf0f2c687018ceaf9c23707f430847c","subject":"use List to format query","message":"use List to format query\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) \n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) \n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\tend tell\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"95ab1864a7d6889d7c1b00ba381b4efc46dbd323","subject":"fixmoveformon","message":"fixmoveformon\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property USE_SIDEBAR : false\nproperty DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 0\n\non moveForMon(pars)\n\t-- set default variables\n\tset all to all of (pars & {all:DEF_ALL})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- set monitoring tools' positions\n\t\t-- SimpleFloatingClock\n\t\tset w_sfcCEST to 1\n\t\tset w_sfcJST to 2\n\t\t\n\t\t-- XRG\n\t\tset w_XRG to 1\n\t\t\n\t\t-- set monitoring tool's name\n\t\t-- GeekTool\n\t\tset s_gtCal to \"gcalCal\"\n\t\tset s_gtGcal to \"gcalList\"\n\t\tset s_gtTask to \"gtasklist\"\n\t\tset s_gtPs to \"myps\"\n\t\t\n\t\t-- x posiiotn for monitoring\n\t\tset m_width to 160\n\t\tset ledge to -1 * m_width\n\t\tset ledgeSFCoffset to 20\n\t\t\n\t\t-- y positions\n\t\tset y_sfcCEST to 30\n\t\tset sfc_height to 100\n\t\tset y_sfcJST to y_sfcCEST + sfc_height\n\t\tset y_gtCal to y_sfcJST + sfc_height + 5\n\t\tset gtCal_height to 115\n\t\tset y_gtGcal to y_gtCal + gtCal_height\n\t\tset gtGcal_height to 175\n\t\tset y_gtTask to y_gtGcal + gtGcal_height\n\t\tset gtTask_height to 85\n\t\tset y_gtPs to y_gtTask + gtTask_height\n\t\tset gtPs_height to 75\n\t\tset y_XRG to y_gtPs + gtPs_height\n\t\tset XRG_height to 400\n\tend if\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\tset scriptPath to ((path to me as text) & \"::\")\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset ws to load script file windowSizeScpt\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\t\n\t-- main screen\n\tset vframes to gf's getAllVisibleFrames()\n\t-- dpoxY needs to be enough bigger than menubar's (~23) height\n\tset dPosX to 100\n\tset dPosY to 100\n\tset dWidth to gf's getFrameWidth(item 1 of (vframes's main_frames))\n\tset dHeight to gf's getFrameHeight(item 1 of (vframes's main_frames))\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX\n\tset dPosY_L to dPosY\n\tif length of vframes's left_frames > 0 then\n\t\tset dPosX_L to (gf's getFrameOriginX(item 1 of (vframes's left_frames))) + 100\n\t\tset dPosY_L to (gf's getFrameOriginY(item 1 of (vframes's left_frames))) + 100\n\tend if\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\tif length of vframes's right_frames > 0 then\n\t\tset dPosX_R to (gf's getFrameOriginX(item 1 of (vframes's right_frames))) + 100\n\t\tset dPosY_R to (gf's getFrameOriginY(item 1 of (vframes's right_frames))) + 100\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- move monitoring tools\n\t\tif length of vframes's left_frames > 0 then\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeDual\"\n\t\t\tend if\n\t\telse\n\t\t\tset ledge to dWidth + ledge\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeSingle\"\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttell application \"System Events\"\n\t\t\t-- SimpleFloatingClock\n\t\t\ttry\n\t\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\t\tend tell\n\t\t\t\t\ttell window w_sfcJST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\t\t\n\t\t\t---- GeekTool\n\t\t\t--try\n\t\t\t--\t--set appName to \"GeekTool\"\n\t\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t--\t\n\t\t\t--\ttell process appName\n\t\t\t--\t\tset nW to number of windows\n\t\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t--\t\ttell window w_gtCal\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtGcal\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtTask\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtPs\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t\t--\t\tend tell\n\t\t\t--\tend tell\n\t\t\t--\t--on error errMsg\n\t\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t\t--end try\n\t\t\t\n\t\t\t-- XRG\n\t\t\ttry\n\t\t\t\tset appName to \"XRG\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_XRG\n\t\t\t\t\t\tset size to {m_width, XRG_height}\n\t\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t\t-- can't use position to geeklets\n tell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t\t--geeklets\n\t\t\trepeat with g in geeklets\n\t\t\t\ttell g\n\t\t\t\t\tif name is s_gtCal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtCal\n\t\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtGcal\n\t\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtTask\n\t\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\t\tset x to ledge\n\t\t\t\t\t\tset y to y_gtPs\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend tell\n\tend if\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property USE_SIDEBAR : false\nproperty DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 0\n\non moveForMon(pars)\n\t-- set default variables\n\tset all to all of (pars & {all:DEF_ALL})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- set monitoring tools' positions\n\t\t-- SimpleFloatingClock\n\t\tset w_sfcCEST to 1\n\t\tset w_sfcJST to 2\n\t\t\n\t\t-- XRG\n\t\tset w_XRG to 1\n\t\t\n\t\t-- set monitoring tool's name\n\t\t-- GeekTool\n\t\tset s_gtCal to \"gcalCal\"\n\t\tset s_gtGcal to \"gcalList\"\n\t\tset s_gtTask to \"gtasklist\"\n\t\tset s_gtPs to \"myps\"\n\t\t\n\t\t-- x posiiotn for monitoring\n\t\tset m_width to 160\n\t\tset ledge to -1 * m_width\n\t\tset ledgeSFCoffset to 20\n\t\t\n\t\t-- y positions\n\t\tset y_sfcCEST to 30\n\t\tset sfc_height to 100\n\t\tset y_sfcJST to y_sfcCEST + sfc_height\n\t\tset y_gtCal to y_sfcJST + sfc_height + 5\n\t\tset gtCal_height to 115\n\t\tset y_gtGcal to y_gtCal + gtCal_height\n\t\tset gtGcal_height to 175\n\t\tset y_gtTask to y_gtGcal + gtGcal_height\n\t\tset gtTask_height to 85\n\t\tset y_gtPs to y_gtTask + gtTask_height\n\t\tset gtPs_height to 75\n\t\tset y_XRG to y_gtPs + gtPs_height\n\t\tset XRG_height to 400\n\tend if\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\tset scriptPath to ((path to me as text) & \"::\")\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset ws to load script file windowSizeScpt\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\t\n\t-- main screen\n\tset vframes to gf's getAllVisibleFrames()\n\t-- dpoxY needs to be enough bigger than menubar's (~23) height\n\tset dPosX to 100\n\tset dPosY to 100\n\tset dWidth to gf's getFrameWidth(item 1 of (vframes's main_frames))\n\tset dHeight to gf's getFrameHeight(item 1 of (vframes's main_frames))\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX\n\tset dPosY_L to dPosY\n\tif length of vframes's left_frames > 0 then\n\t\tset dPosX_L to (gf's getFrameOriginX(item 1 of (vframes's left_frames))) + 100\n\t\tset dPosY_L to (gf's getFrameOriginY(item 1 of (vframes's left_frames))) + 100\n\tend if\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\tif length of vframes's right_frames > 0 then\n\t\tset dPosX_R to (gf's getFrameOriginX(item 1 of (vframes's right_frames))) + 100\n\t\tset dPosY_R to (gf's getFrameOriginY(item 1 of (vframes's right_frames))) + 100\n\tend if\n\t\n\tif USE_SIDEBAR then\n\t\t-- move monitoring tools\n\t\tif length of vframes's left_frames > 0 then\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeDual\"\n\t\t\tend if\n\t\telse\n\t\t\tset ledge to dWidth + ledge\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"ledge to ledgeSingle\"\n\t\t\tend if\n\t\tend if\n\t\t\n\t\ttell application \"System Events\"\n\t\t\t-- SimpleFloatingClock\n\t\t\ttry\n\t\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\t\tend tell\n\t\t\t\t\ttell window w_sfcJST\n\t\t\t\t\t\tset size to {m_width, sfc_height}\n\t\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\t\t\n\t\t\t---- GeekTool\n\t\t\t--try\n\t\t\t--\t--set appName to \"GeekTool\"\n\t\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t--\t\n\t\t\t--\ttell process appName\n\t\t\t--\t\tset nW to number of windows\n\t\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t--\t\ttell window w_gtCal\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtGcal\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtTask\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t\t--\t\tend tell\n\t\t\t--\t\ttell window w_gtPs\n\t\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t\t--\t\tend tell\n\t\t\t--\tend tell\n\t\t\t--\t--on error errMsg\n\t\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t\t--end try\n\t\t\t\n\t\t\t-- XRG\n\t\t\ttry\n\t\t\t\tset appName to \"XRG\"\n\t\t\t\ttell process appName\n\t\t\t\t\ttell window w_XRG\n\t\t\t\t\t\tset size to {m_width, XRG_height}\n\t\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t\t-- can't use position to geeklets\n\t\ttell application \"GeekTool Helper.app\" -- can not use appName (variable), which shows error at id?\n\t\t\t--geeklets\n\t\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\t\ttell g\n\t\t\t\t\tif name is s_gtCal then\n\t\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend repeat\n\t\tend tell\n\tend if\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tws's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cee924c467bc017a66f8c677a587384f9536143e","subject":"Working applescript to record with QT","message":"Working applescript to record with QT\n","repos":"gkaguirrelab\/LiveTrackfMRIToolbox,gkaguirrelab\/LiveTrackfMRIToolbox","old_file":"Tools\/QT_recording.scpt","new_file":"Tools\/QT_recording.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002O\u0000\u0000\u0000\u0000\u0000G\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000F\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.MVWRnavrnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0002\u0000\f\u0000\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0010\u0000\u0002\u0000\u0011\r\u0000\u0011\u0000\u0002O\u0000\u0000\u0000\f\u0000F\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001k\u0000\u0000\u0000\u0010\u0000E\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0010\u0000\u0015\n\u0000\u0018.MVWRstarnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001e\u0000\u0019\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u001c\n\u0000\u0004\ncobj\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0003\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000%\u00009\u0000!\u0000\"\n\u0000\u0018.coresavenull\u0000\u0000\u0000\u0000\u0000obj \r\u0000!\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0006\u0000\"\u0000\u0003\u0000#\n\u0000\u0004\nkfil\r\u0000#\u0000\u00024\u0000\u0000\u0000'\u00005\u0000$\n\u0000\u0004\npsxf\r\u0000$\u0000\u0003l\u0000\u0005\u0000)\u00004\u0000%\r\u0000%\u0000\u0002b\u0000\u0000\u0000)\u00004\u0000&\u0000'\r\u0000&\u0000\u0002b\u0000\u0000\u0000)\u00002\u0000(\u0000)\r\u0000(\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000*\u0000+\r\u0000*\u0000\u00024\u0000\u0000\u0000*\u0000-\u0000,\n\u0000\u0004\ncobj\r\u0000,\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u0000+\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000)\u0000\u0002n\u0000\u0000\u0000-\u00001\u0000-\u0000.\r\u0000-\u0000\u00024\u0000\u0000\u0000.\u00001\u0000\/\n\u0000\u0004\ncobj\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0003\u0000\u0002\r\u0000.\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u00002\u00003\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000 \u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000:\u0000?\n\u0000\u0018.MVWRstopnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00003\u0000\u0002\u00004\r\u00004\u0000\u0003I\u0000\u0002\u0000@\u0000E\u00005\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u00005\u0000\u0001o\u0000\u0000\u0000@\u0000A\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00006\u000f\u00006\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000mgvr\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000I\u0014QuickTime Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-s\u049flE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u049f\u0000\u0000\u0000\u0001\u0000\u0004\u0000I\u0000\u0002\u0000\/Macintosh HD:Applications:\u0000QuickTime Player.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000Q\u0000u\u0000i\u0000c\u0000k\u0000T\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000!Applications\/QuickTime Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u00007\u00008\u00009\u0001\u0000\u0000\u0010\u00007\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u000e\u00008\u0000\u0007\u0010\u0000\u0006\u0000:\u0000;\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000:\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000;\u0000\r\u00006\u00000\n\u0000\u0018.MVWRnavrnull\u0000\u0000null\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\n\u0000\u0018.MVWRstarnull\u0000\u0000\u0000\u0000\u0000docu\n\u0000\u0004\ncobj\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000docu\n\u0000\u0004\nkfil\n\u0000\u0004\npsxf\n\u0000\u0018.coresavenull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.MVWRstopnull\u0000\u0000\u0000\u0000\u0000docu\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011\u0000H\u0012\u0000D*j\f\u0000\u0001EO\u0012\u00007*j\f\u0000\u0003Om\/j\f\u0000\u0005O*j\f\u0000\u0006O*k\/l\/%%\/l\f\u0000\nO*j\f\u0000\u000bOj\f\u0000\fUU\u000f\u000e\u00009\u0000\u0001\u0014\u0000<\u000e\u0000<\u0000\u0003\u0018\u00006\u0000=\n\u0000\u0004\ndocu\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\u001e\u0000M\u0000o\u0000v\u0000i\u0000e\u0000 \u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000i\u0000n\u0000gascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001k\u0000\u0000\u0000\u0000\u0000T\u0000\b\u0002\u0000\b\u0000\u0002\u0000\t\u0000\n\r\u0000\t\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r\u0000\u000e\r\u0000\r\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u000f\n\u0000\u0004\ncobj\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsavepath\u0000\bsavePath\u0002\u0000\n\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0012\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0016\n\u0000\u0004\ncobj\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0003\u0000\u0002\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tmoviename\u0000\tmovieName\u0002\u0000\u0011\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0019\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u0019\u0000\u001d\n\u0000\u0004\ncobj\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0003\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007rectime\u0000\u0007recTime\u0002\u0000\u0018\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000 \r\u0000 \u0000\u0002O\u0000\u0000\u0000\u001c\u0000T\u0000!\u0000\"\r\u0000!\u0000\u0001k\u0000\u0000\u0000 \u0000S\u0000#\u0002\u0000#\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000 \u0000'\u0000&\u0000'\r\u0000&\u0000\u0003I\u0000\u0002\u0000 \u0000%\n\u0000\u0018.MVWRnavrnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000%\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000)\u0000\u0002\u0000*\r\u0000*\u0000\u0002O\u0000\u0000\u0000(\u0000S\u0000+\u0000,\r\u0000+\u0000\u0001k\u0000\u0000\u0000,\u0000R\u0000-\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003I\u0000\u0002\u0000,\u00001\n\u0000\u0018.MVWRstarnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003I\u0000\u0002\u00002\u00007\u00002\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00002\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00120\u0000\u0007rectime\u0000\u0007recTime\u0002\u0000\u0000\u0002\u00001\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003I\u0000\u0002\u00008\u0000=\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000>\u0000L\u00007\u00008\n\u0000\u0018.coresavenull\u0000\u0000\u0000\u0000\u0000obj \r\u00007\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0006\u00008\u0000\u0003\u00009\n\u0000\u0004\nkfil\r\u00009\u0000\u00024\u0000\u0000\u0000@\u0000H\u0000:\n\u0000\u0004\npsxf\r\u0000:\u0000\u0003l\u0000\u0005\u0000B\u0000G\u0000;\r\u0000;\u0000\u0002b\u0000\u0000\u0000B\u0000G\u0000<\u0000=\r\u0000<\u0000\u0002b\u0000\u0000\u0000B\u0000E\u0000>\u0000?\r\u0000>\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u00140\u0000\bsavepath\u0000\bsavePath\r\u0000?\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00160\u0000\tmoviename\u0000\tmovieName\r\u0000=\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000@\u000e\u0000@\u0000\u0001\u0000A\u0011\u0000A\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u00006\u0000\u0002\u0000B\r\u0000B\u0000\u0003I\u0000\u0002\u0000M\u0000R\u0000C\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\u0002\u0000\u0000\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000D\u000f\u0000D\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000mgvr\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001v\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000I\u0014QuickTime Player.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000-s\u049flE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u049f\u0000\u0000\u0000\u0001\u0000\u0004\u0000I\u0000\u0002\u0000\/Macintosh HD:Applications:\u0000QuickTime Player.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000Q\u0000u\u0000i\u0000c\u0000k\u0000T\u0000i\u0000m\u0000e\u0000 \u0000P\u0000l\u0000a\u0000y\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000!Applications\/QuickTime Player.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000E\u0000F\u0001\u0000\u0000\u0010\u0000E\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000F\u0000\u0007\u0010\u0000\u0006\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000H\u0000\u0010\u0000D\u0000@\n\u0000\u0004\ncobj\n\u0000\u0004\nbool\u000b\u0000\u00140\u0000\bsavepath\u0000\bsavePath\u000b\u0000\u00160\u0000\tmoviename\u0000\tmovieName\u000b\u0000\u00120\u0000\u0007rectime\u0000\u0007recTime\n\u0000\u0018.MVWRnavrnull\u0000\u0000null\u000b\u0000&0\u0000\u0011newmovierecording\u0000\u0011newMovieRecording\n\u0000\u0018.MVWRstarnull\u0000\u0000\u0000\u0000\u0000docu\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.MVWRpausnull\u0000\u0000\u0000\u0000\u0000docu\n\u0000\u0004\nkfil\n\u0000\u0004\npsxf\n\u0000\u0018.coresavenull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011\u0000U*k\/E\n\u0000\u0005&EOl\/EOm\/EO\u0012\u00005*j\f\u0000\u0006EO\u0012\u0000(*j\f\u0000\bOj\f\u0000\tO*j\f\u0000\nO*%%\/l\f\u0000\u000eOj\f\u0000\u000fUU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"706f4488ea194531855be8e74d5689fad318b2e9","subject":"CS4 -> CC 2019","message":"CS4 -> CC 2019\n","repos":"ppps\/ms-weather","old_file":"Weather.applescript","new_file":"Weather.applescript","new_contents":"do shell script \"\/usr\/local\/bin\/python3 \/Volumes\/Server\/Production\\\\ Resources\/Scripts\/ms-weather\/weather.py\"\ntell application \"Adobe InDesign CC 2019\" to activate\n","old_contents":"do shell script \"\/usr\/local\/bin\/python3 \/Volumes\/Server\/Production\\\\ Resources\/Scripts\/ms-weather\/weather.py\"\ntell application \"Adobe InDesign CS4\" to activate\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c85bab135e94b341c485c98415ccf6838d60e58d","subject":"Delete listeningtospotify.scpt","message":"Delete listeningtospotify.scpt","repos":"dohkoo\/listeningtospotify","old_file":"listeningtospotify.scpt","new_file":"listeningtospotify.scpt","new_contents":"","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tcountthis\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u0000\f\r\u0000\f\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u000e\u0000\u0000\u000f\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0001k\u0000\u0000\u0000\u0012\u0000\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u0015\u0000\u0019\r\u0000\u0019\u0000\u0002[\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\r0\u0000\tcountthis\u0000\u0000\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tcountthis\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0004Z\u0000\u0000\u0000\u0018\u0000\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002=\u0000\u0003\u0000\u0018\u0000\u001d\u0000\u001f\u0000 \r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\npPlS\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\b\u000bePlSkPSP\r\u0000\u001e\u0000\u0001k\u0000\u0000\u0000 \u0000\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002r\u0000\u0000\u0000 \u0000'\u0000$\u0000%\r\u0000$\u0000\u0002n\u0000\u0000\u0000 \u0000%\u0000&\u0000'\r\u0000&\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\npnam\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000#\n\u0000\u0004\npTrk\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thesong\u0000\u0007theSong\u0002\u0000#\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000(\u0000\/\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000(\u0000-\u0000,\u0000-\r\u0000,\u0000\u00011\u0000\u0000\u0000+\u0000-\n\u0000\u0004\npAlb\r\u0000-\u0000\u00011\u0000\u0000\u0000(\u0000+\n\u0000\u0004\npTrk\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthealbum\u0000\btheAlbum\u0002\u0000)\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u00000\u00007\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u00000\u00005\u00002\u00003\r\u00002\u0000\u00011\u0000\u0000\u00003\u00005\n\u0000\u0004\npArt\r\u00003\u0000\u00011\u0000\u0000\u00000\u00003\n\u0000\u0004\npTrk\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheartist\u0000\ttheArtist\u0002\u0000\/\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002r\u0000\u0000\u00008\u0000=\u00006\u00007\r\u00006\u0000\u00011\u0000\u0000\u00008\u0000;\n\u0000\u0004\npTrk\r\u00007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthistrack\u0000\tthisTrack\u0002\u00005\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002r\u0000\u0000\u0000>\u0000E\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0005\u0000>\u0000C\u0000<\r\u0000<\u0000\u0003I\u0000\u0002\u0000>\u0000C\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u00009\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0004Z\u0000\u0000\u0000F\u0000\u0000?\u0000@\r\u0000?\u0000\u0002>\u0001\u0000\u0000F\u0000M\u0000A\u0000B\r\u0000A\u0000\u0002n\u0000\u0000\u0000F\u0000I\u0000C\u0000D\r\u0000C\u0000\u00011\u0000\u0000\u0000G\u0000I\n\u0000\u0004\npcnt\r\u0000D\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00160\u0000\ttheartist\u0000\ttheArtist\r\u0000B\u0000\u0001m\u0000\u0000\u0000I\u0000L\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0000\r\u0000@\u0000\u0003l\u0000\u0007\u0000P\u0000\u0000G\u0000H\u0000I\r\u0000G\u0000\u0001k\u0000\u0000\u0000P\u0000\u0000J\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0006\u0000P\u0000P\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000\/\u0000)modify with your server information below\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000R\u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000b\u0000e\u0000l\u0000o\u0000w\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u0000P\u0000_\u0000R\u0000S\r\u0000R\u0000\u0003I\u0000\u0002\u0000P\u0000[\u0000T\u0000U\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\u0000T\u0000\u0001m\u0000\u0000\u0000P\u0000S\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u00004\u0000\/\u0000Y\u0000o\u0000u\u0000r\u0000\/\u0000S\u0000e\u0000r\u0000v\u0000e\u0000r\u0000\/\u0000l\u0000i\u0000s\u0000t\u0000e\u0000n\u0000i\u0000n\u0000g\u0000.\u0000p\u0000h\u0000p\u0006\u0000U\u0000\u0003\u0000X\n\u0000\u0004\nperm\r\u0000X\u0000\u0001m\u0000\u0000\u0000V\u0000W\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myfile\u0000\u0006myFile\u0002\u0000Q\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0002\u0000`\u0000k\u0000[\u0000\\\n\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\r\u0000[\u0000\u0001o\u0000\u0000\u0000`\u0000c\u000b\u0000\u00100\u0000\u0006myfile\u0000\u0006myFile\u0006\u0000\\\u0000\u0003\u0000]\n\u0000\u0004\nset2\r\u0000]\u0000\u0001m\u0000\u0000\u0000f\u0000g\u0003\u0000\u0000\u0006\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0003I\u0000\u0002\u0000l\u0000\u0000`\u0000a\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0000`\u0000\u0003l\u0000\u0005\u0000l\u0000\u0000b\r\u0000b\u0000\u0002c\u0000\u0000\u0000l\u0000\u0000c\u0000d\r\u0000c\u0000\u0001J\u0000\u0000\u0000l\u0000\u0000e\u0002\u0000e\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0000h\u000e\u0000h\u0000\u0001\u0000i\u0011\u0000i\u0000j\u0000<\u0000s\u0000p\u0000a\u0000n\u0000 \u0000s\u0000t\u0000y\u0000l\u0000e\u0000=\u0000'\u0000f\u0000o\u0000n\u0000t\u0000-\u0000s\u0000i\u0000z\u0000e\u0000:\u0000 \u00009\u0000p\u0000t\u0000'\u0000>\u0000L\u0000i\u0000s\u0000t\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000T\u0000o\u0000:\u0000<\u0000\/\u0000s\u0000p\u0000a\u0000n\u0000>\u0000<\u0000b\u0000r\u0000>\u0002\u0000g\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\u00120\u0000\u0007thesong\u0000\u0007theSong\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\b\u0000 \u0000b\u0000y\u0000 \u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00160\u0000\ttheartist\u0000\ttheArtist\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000B\u0000<\u0000b\u0000r\u0000>\u0000<\u0000s\u0000p\u0000a\u0000n\u0000 \u0000s\u0000t\u0000y\u0000l\u0000e\u0000=\u0000'\u0000f\u0000o\u0000n\u0000t\u0000-\u0000s\u0000i\u0000z\u0000e\u0000:\u0000 \u00009\u0000p\u0000t\u0000'\u0000>\u0002\u0000s\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000w\u0000\u0002\u0000x\r\u0000x\u0000\u0001m\u0000\u0000\u0000x\u0000{\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u000e\u0000<\u0000\/\u0000s\u0000p\u0000a\u0000n\u0000>\u0002\u0000\u0000\r\u0000d\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000a\u0000\u0003\u0000{\n\u0000\u0004\nrefn\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myfile\u0000\u0006myFile\u0006\u0000\u0000\u0002\u0000_\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000~\n\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006myfile\u0000\u0006myFile\u0002\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000Y\u0000o\u0000u\u0000r\u0000\/\u0000S\u0000e\u0000r\u0000v\u0000e\u0000r\u0000\/\u0000t\u0000r\u0000a\u0000n\u0000s\u0000m\u0000i\u0000t\u0000.\u0000p\u0000h\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ealerturlstring\u0000\u000eAlertURLString\f\u0000\u0000\"\u0000\u001cmodify with your server info\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000 \u0000i\u0000n\u0000f\u0000o\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000c\u0000u\u0000r\u0000l\u0000 \u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ealerturlstring\u0000\u000eAlertURLString\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurloutput\u0000\ncurlOutput\u0002\u0000\u0000\f\u0000H\u0000&\u0000 don't update this if it is an ad\u0000\u0002\u0000\u0000\u000e\u0000I\u0000\u0001\u0000\u0011\u0000\u0000@\u0000d\u0000o\u0000n\u0000'\u0000t\u0000 \u0000u\u0000p\u0000d\u0000a\u0000t\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000f\u0000 \u0000i\u0000t\u0000 \u0000i\u0000s\u0000 \u0000a\u0000n\u0000 \u0000a\u0000d\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\r\u0000\u0007delay 3\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u00003\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0010\u0000\nend repeat\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001>\u0000\u0002\u0000\u0001\u0006Stesha\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000EH+\u0000\u0000\u0001B[\u0011\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002hgo\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u00006\u0000\u0000\u0000\u0001\u0000\u0004\u0001B[\u0011\u0000\u0002\u0000 Stesha:Applications:\u0000Spotify.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000S\u0000t\u0000e\u0000s\u0000h\u0000a\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u001e\u0002\u0000\u0000\f\u0000\u00005\u0000\/run this every 30 seconds; can change as needed\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000^\u0000r\u0000u\u0000n\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u00003\u00000\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000;\u0000 \u0000c\u0000a\u0000n\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000a\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u0000\u0000\r\u0000\u000e\u0000\u0002=\u0000\u0002\u0000\b\u0000\r\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nprun\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001>\u0000\u0002\u0000\u0001\u0006Stesha\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000EH+\u0000\u0000\u0001B[\u0011\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002hgo\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000E\u0000\u0000\u0000\u0011\u0000\b\u0000\u00006\u0000\u0000\u0000\u0001\u0000\u0004\u0001B[\u0011\u0000\u0002\u0000 Stesha:Applications:\u0000Spotify.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000S\u0000t\u0000e\u0000s\u0000h\u0000a\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000(\u0000\u0000E\u0000V\u0000h\u0000n\u0000t\u0000y\u0000\u0000\u0000\u000b\u0000\r0\u0000\tcountthis\u0000\u0000\n\u0000\u0004\nprun\n\u0000\u0004\npPlS\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\n\u0000\u0004\npnam\u000b\u0000\u00120\u0000\u0007thesong\u0000\u0007theSong\n\u0000\u0004\npAlb\u000b\u0000\u00140\u0000\bthealbum\u0000\btheAlbum\n\u0000\u0004\npArt\u000b\u0000\u00160\u0000\ttheartist\u0000\ttheArtist\u000b\u0000\u00160\u0000\tthistrack\u0000\tthisTrack\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\n\u0000\u0004\npcnt\n\u0000\u0004\nperm\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\u000b\u0000\u00100\u0000\u0006myfile\u0000\u0006myFile\n\u0000\u0004\nset2\n\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\u0003\u0000\u0007\n\u0000\u0004\nTEXT\n\u0000\u0004\nrefn\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000 0\u0000\u000ealerturlstring\u0000\u000eAlertURLString\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\ncurloutput\u0000\ncurlOutput\u0003\u0000\u001e\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000jEO\u0017\u0000h,e\u0000\u0019\u0012\u0000k\u001eEO*,\u0000\u001d\u0000*,,EO*,,EO*,,EO*,EO*j\f\u0000\rEO,a\u0000\u0010\u0001\u001d\u0000fa\u0000\u0011a\u0000\u0012el\f\u0000\u0013E`\u0000\u0014O_\u0000\u0014a\u0000\u0015jl\f\u0000\u0016Oa\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001bva\u0000\u001c&a\u0000\u001d_\u0000\u0014l\f\u0000\u001eO_\u0000\u0014j\f\u0000\u001fOa\u0000 E`\u0000!Oa\u0000\"_\u0000!%a\u0000#%j\f\u0000$E`\u0000%Y\u0000\u0003hOPY\u0000\u0003hUOa\u0000&j\f\u0000'[OYA\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"09b0d8ea40688fef7780f8bb99ba797bc0e81aaf","subject":"Automatically select current version of a model (xmod comment has to be set on xcdatamodeld group)","message":"Automatically select current version of a model (xmod comment has to be set on xcdatamodeld group)","repos":"bewebste\/mogenerator,ef-ctx\/mogenerator,rentzsch\/mogenerator,bewebste\/mogenerator,ef-ctx\/mogenerator,willowtreeapps\/mattgenerator,seanm\/mogenerator,Erin-Mounts\/mogenerator,iv-mexx\/mogenerator,Erin-Mounts\/mogenerator,hardikdevios\/mogenerator,iv-mexx\/mogenerator,VladimirGoncharov\/mogenerator,untitledstartup\/mogenerator,ef-ctx\/mogenerator,mjasa\/mogenerator,kostiakoval\/mogenerator,kostiakoval\/mogenerator,bgulanowski\/mogenerator,VladimirGoncharov\/mogenerator,anton-matosov\/mogenerator,iv-mexx\/mogenerator,fizker\/mogenerator,rentzsch\/mogenerator,willowtreeapps\/mattgenerator,willowtreeapps\/mattgenerator,Erin-Mounts\/mogenerator,adozenlines\/mogenerator,otaran\/mogenerator,casademora\/mogenerator,pronebird\/mogenerator,mjasa\/mogenerator,anton-matosov\/mogenerator,anton-matosov\/mogenerator,kostiakoval\/mogenerator,hardikdevios\/mogenerator,rentzsch\/mogenerator,mjasa\/mogenerator,skywinder\/mogenerator,skywinder\/mogenerator,casademora\/mogenerator,pronebird\/mogenerator,fizker\/mogenerator,VladimirGoncharov\/mogenerator,untitledstartup\/mogenerator,skywinder\/mogenerator,seanm\/mogenerator,otaran\/mogenerator,bewebste\/mogenerator,adozenlines\/mogenerator,adozenlines\/mogenerator,bewebste\/mogenerator,casademora\/mogenerator,otaran\/mogenerator,bgulanowski\/mogenerator,pronebird\/mogenerator,hardikdevios\/mogenerator,untitledstartup\/mogenerator,iv-mexx\/mogenerator,bgulanowski\/mogenerator,seanm\/mogenerator,fizker\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\" and comments contains \"xmod\"\n\t\trepeat with modelItr in modelList\n\t\t\tmy updateModel(_project, modelItr, comments of modelItr)\n\t\tend repeat\n\t\t-- Iterate over every .xcdatamodeld (notice the 'd') in the project.\n\t\tset modeldList to every group of _project whose name contains \".xcdatamodeld\" and comments contains \"xmod\"\n\t\trepeat with modeldIt in modeldList\n\t\t\t-- Find the 'active' model version\n\t\t\tset currentVersionFile to full path of modeldIt & \"\/.xccurrentversion\"\n\t\t\tset activeModelVersionFilename to do shell script \"\/usr\/libexec\/PlistBuddy -c 'print _XCCurrentVersionName' \" & currentVersionFile\n\t\t\tset activeModelVersion to full path of modeldIt & \"\/\" & activeModelVersionFilename\n\t\t\tset modelItr to item 1 of (every file reference of modeldIt whose name is activeModelVersionFilename)\n\t\t\t-- Then update it\n\t\t\tmy updateModel(_project, modelItr, comments of modeldIt)\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","old_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\" and comments contains \"xmod\"\n\t\trepeat with modelItr in modelList\n\t\t\tmy updateModel(_project, modelItr, comments of modelItr)\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0894c56ed471b4c5d0d30cb312f1d8970a0dd216","subject":"Changed Xmod.applescript to better support --machine-dir, --human-dir and --output-dir comments... directories can be specified as either full or relative paths (relative to model file). Xcode group and file references are no longer deleted\/re-added with every save. New files are added automatically. This allows group references to be moved or contain files that are not auto generated.","message":"Changed Xmod.applescript to better support --machine-dir, --human-dir and --output-dir comments... directories can be specified as either full or relative paths (relative to model file). Xcode group and file references are no longer deleted\/re-added with every save. New files are added automatically. This allows group references to be moved or contain files that are not auto generated.\n","repos":"VladimirGoncharov\/mogenerator,kostiakoval\/mogenerator,rentzsch\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,bgulanowski\/mogenerator,Erin-Mounts\/mogenerator,seanm\/mogenerator,mjasa\/mogenerator,willowtreeapps\/mattgenerator,iv-mexx\/mogenerator,kostiakoval\/mogenerator,Erin-Mounts\/mogenerator,skywinder\/mogenerator,otaran\/mogenerator,mjasa\/mogenerator,untitledstartup\/mogenerator,mjasa\/mogenerator,kostiakoval\/mogenerator,VladimirGoncharov\/mogenerator,willowtreeapps\/mattgenerator,adozenlines\/mogenerator,adozenlines\/mogenerator,bewebste\/mogenerator,seanm\/mogenerator,pronebird\/mogenerator,anton-matosov\/mogenerator,adozenlines\/mogenerator,ef-ctx\/mogenerator,iv-mexx\/mogenerator,ef-ctx\/mogenerator,bgulanowski\/mogenerator,bewebste\/mogenerator,bewebste\/mogenerator,bewebste\/mogenerator,otaran\/mogenerator,casademora\/mogenerator,willowtreeapps\/mattgenerator,untitledstartup\/mogenerator,fizker\/mogenerator,fizker\/mogenerator,seanm\/mogenerator,untitledstartup\/mogenerator,skywinder\/mogenerator,bgulanowski\/mogenerator,anton-matosov\/mogenerator,Erin-Mounts\/mogenerator,VladimirGoncharov\/mogenerator,pronebird\/mogenerator,casademora\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,casademora\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,hardikdevios\/mogenerator,iv-mexx\/mogenerator,ef-ctx\/mogenerator,anton-matosov\/mogenerator,fizker\/mogenerator,pronebird\/mogenerator,skywinder\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif (length of the characters of theParagraph) is greater than 2 then\n\t\t\t\t\t\tset theToken to the first character of theParagraph & the second character of theParagraph\n\t\t\t\t\t\tif theToken is \"--\" then\n\t\t\t\t\t\t\tif ((offset of \"--human-dir \" in theParagraph) = 0) and ((offset of \"--machine-dir \" in theParagraph) = 0) and ((offset of \"--output-dir \" in theParagraph) = 0) then\n\t\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n\nproperty ASDScriptUniqueIdentifier : \"Xmod.applescript\"\n","old_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr)\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))) then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\tmake new group with properties {full path:(srcDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --output-dir '\" & (srcDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif (length of the characters of theParagraph) is greater than 2 then\n\t\t\t\t\t\tset theToken to the first character of theParagraph & the second character of theParagraph\n\t\t\t\t\t\tif theToken is \"--\" then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file (srcDirPath of modelInfo) as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\trepeat with pathItr in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\tif not (exists folder modelName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\tend tell\n\tset srcDirPath to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\n\treturn {name:modelName, isBundle:isModelBundle, srcDirPath:srcDirPath}\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"65ba3844a50be020bd4f8fca8d0177d909c0a91d","subject":"corrected \"get path\" functionality in Finder when no finder window is open","message":"corrected \"get path\" functionality in Finder when no finder window is open\n","repos":"ramiroaraujo\/alfred-tmux-workflow","old_file":"workflow\/get_finders_path.scpt","new_file":"workflow\/get_finders_path.scpt","new_contents":"if application \"Path Finder\" is running then\n tell application \"Path Finder\"\n set target_path to \"\\\"\" & (the POSIX path of the target of the front finder window) & \"\\\"\"\n return target_path\n end tell\nelse\ntell application \"Finder\"\n try\n set target_path to (quoted form of POSIX path of (folder of the front window as alias))\n on error line number num\n set target_path to (path to home folder)\n end try\n\t\treturn target_path\n\tend tell\nend if\n\n","old_contents":"if application \"Path Finder\" is running then\n tell application \"Path Finder\"\n set target_path to \"\\\"\" & (the POSIX path of the target of the front finder window) & \"\\\"\"\n return target_path\n end tell\nelse\ntell application \"Finder\"\n\t\tset target_path to (quoted form of POSIX path of (folder of the front window as alias))\n\t\treturn target_path\n\tend tell\nend if\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fabf4bba5f4026095b77924df42d29785775d1ac","subject":"Fix some bugs in iChat growl","message":"Fix some bugs in iChat growl\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iChat\/growl.scpt","new_file":"macosx\/scripts\/iChat\/growl.scpt","new_contents":"using terms from application \"iChat\"\n on message received message from theBuddy for textChat\n set whoDidIt to full name of theBuddy\n set buddyIcon to image of theBuddy\n \n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n end tell\n\n if frontApp is not equal to \"iChat\" then\n tell application \"GrowlHelperApp\" -- ** the daemon that is behind the scenes\n -- Make a list of all the notification types that this script will ever send:\n set the allNotificationsList to {\"IM Received\"}\n \n -- Make a list of the notifications that will be enabled by default.\n set the enabledNotificationsList to {\"IM Received\"}\n \n -- Register our script with growl.\n register as application \"iChat Growl AppleScript\" all notifications allNotificationsList default notifications enabledNotificationsList icon of application \"iChat\"\n \n if buddyIcon is equal to missing value then\n notify with name \"IM Received\" title whoDidIt description message application name \"iChat Growl AppleScript\" sticky no identifier whoDidIt\n else\n notify with name \"IM Received\" title whoDidIt description message application name \"iChat Growl AppleScript\" sticky no identifier whoDidIt image buddyIcon\n end if\n end tell\n end if\n end message received\nend using terms from\n","old_contents":"using terms from application \"iChat\"\n on message received message from theBuddy for textChat\n set whoDidIt to full name of theBuddy\n set buddyIcon to image of theBuddy\n set window_name to \"Not iChat\"\n \n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n end tell\n\n if frontApp is equal to \"iChat\"\n tell application frontApp\n if the (count of documents) is not 0 then\n set window_name to name of front window\n end if\n end tell\n end if\n \n if window_name is not equal to \"Chat with \" & whoDidIt then\n tell application \"GrowlHelperApp\" -- ** the daemon that is behind the scenes\n -- Make a list of all the notification types that this script will ever send:\n set the allNotificationsList to {\"IM Received\"}\n \n -- Make a list of the notifications that will be enabled by default.\n set the enabledNotificationsList to {\"IM Received\"}\n \n -- Register our script with growl.\n register as application \"iChat Growl AppleScript\" all notifications allNotificationsList default notifications enabledNotificationsList icon of application \"iChat\"\n \n if buddyIcon is equal to missing value then\n notify with name \"IM Received\" title whoDidIt description message application name \"iChat Growl AppleScript\" sticky no\n else\n notify with name \"IM Received\" title whoDidIt description message application name \"iChat Growl AppleScript\" sticky no image buddyIcon\n end if\n end tell\n end if\n end message received\nend using terms from\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"83a998ecff08e3022894f03af002f0048c60410c","subject":"Add practice text area to lookup dialog","message":"Add practice text area to lookup dialog\n","repos":"dimonster\/plover-dictionary-lookup","old_file":"dictlook-ui.scpt","new_file":"dictlook-ui.scpt","new_contents":"on run {input}\r try\r do shell script \"$HOME\/Dropbox\\\\ \\\\(Personal\\\\)\/projects\/plover-tools\/plover-dictionary-lookup\/dictlook -x \" & \"\\\"\" & input & \"\\\"\"\r display dialog result default answer \"\" buttons {\"OK\"} default button 1\r on error\r display dialog \"No such luck.\" buttons {\"OK\"} default button 1\r beep\r end try\rend run\r","old_contents":"on run {input}\r try\r do shell script \"$HOME\/Dropbox\\\\ \\\\(Personal\\\\)\/projects\/plover-tools\/plover-dictionary-lookup\/dictlook -x \" & \"\\\"\" & input & \"\\\"\"\r display dialog result buttons {\"OK\"} default button 1\r on error\r display dialog \"No such luck.\" buttons {\"OK\"} default button 1\r beep\r end try\rend run\r","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"362b2c4a65b6179b5482ec4cdb25deb543a91a36","subject":"changed it to be able to turn off wifi sharing with a second call","message":"changed it to be able to turn off wifi sharing with a second call\n","repos":"rodolfosantos\/applescripts","old_file":"toogleInternetSharing.scpt","new_file":"toogleInternetSharing.scpt","new_contents":"# If its on, it will turn off\n# If its off, it will turn on\n\n# Open System Preferences application\ntell application \"System Preferences\"\n\tactivate\nend tell\n\n# Open the Sharing preference pane\ntell application \"System Preferences\"\n\treveal (pane id \"com.apple.preferences.sharing\")\nend tell\n\n# Select the Internet Sharing checkbox.\ntell application \"System Events\"\n\ttell process \"System Preferences\"\n\t\ttell window \"Sharing\"\n\t\t\t# Internet Sharing is row 7 in Mavericks.\n\t\t\tset _checkbox to checkbox 1 of row 7 of table 1 of scroll area 1 of group 1\n\t\t\t\n\t\t\ttell _checkbox\n\t\t\t\t\n\t\t\t\t# Recheck the checkbox.\n\t\t\t\tclick _checkbox\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\t\tif (exists sheet 1) then\n\t\t\t\tif (exists button \"Turn Wi-Fi On\" of sheet 1) then\n\t\t\t\t\tclick button \"Turn Wi-Fi On\" of sheet 1\n\t\t\t\t\tdelay 1\n\t\t\t\tend if\n\t\t\t\tclick button \"Start\" of sheet 1\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\n# Close System Preferences application\ntell application \"System Preferences\"\n\tquit\nend tell\n","old_contents":"# Open System Preferences application\ntell application \"System Preferences\"\n\tactivate\nend tell\n\n# Open the Sharing preference pane\ntell application \"System Preferences\"\n\treveal (pane id \"com.apple.preferences.sharing\")\nend tell\n\n# Select the Internet Sharing checkbox.\ntell application \"System Events\"\n\ttell process \"System Preferences\"\n\t\ttell window \"Sharing\"\n\t\t\t# Internet Sharing is row 7 in Mavericks.\n\t\t\tset _checkbox to checkbox 1 of row 7 of table 1 of scroll area 1 of group 1\n\t\t\t\n\t\t\ttell _checkbox\n\t\t\t\t# If the checkbox is checked then uncheck.\n\t\t\t\tif (its value as boolean) then click _checkbox\n\t\t\t\tdelay 1\n\t\t\t\t\n\t\t\t\t# Recheck the checkbox.\n\t\t\t\tclick _checkbox\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\t\tif (exists sheet 1) then\n\t\t\t\tif (exists button \"Turn Wi-Fi On\" of sheet 1) then\n\t\t\t\t\tclick button \"Turn Wi-Fi On\" of sheet 1\n\t\t\t\t\tdelay 1\n\t\t\t\tend if\n\t\t\t\tclick button \"Start\" of sheet 1\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\n# Close System Preferences application\ntell application \"System Preferences\"\n\tquit\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"90040c9daafa906f4625acb761460c74cc2318c7","subject":"moveForMon.applescript, from darwin11","message":"moveForMon.applescript, from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEBUG_LEVEL : 1\n\non moveForMon(all)\n\t-- debug mode\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"debug mode = \" & DEBUG_LEVEL\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & DEBUG_LEVEL\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 105\n\tset y_gtTask to y_gtGcal + 180\n\tset y_gtPs to y_gtTask + 90\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX\n\tset dPosY_R to dPosY\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif DEBUG_LEVEL > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif DEBUG_LEVEL > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\tlog ledge & y_gtCal\n\t\t\tlog ledge & y_gtGcal\n\t\t\tlog ledge & y_gtTask\n\t\t\tlog ledge & y_gtPs\n\t\t\tset appName to \"GeekTool\"\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon(false)\nend run\n","old_contents":"property DEBUG_LEVEL : 1\n\non moveForMon(all)\n\t-- debug mode\n\tif DEBUG_LEVEL > 0 then\n\t\tlog \"debug mode = \" & DEBUG_LEVEL\n\t\tif DEBUG_LEVEL > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & DEBUG_LEVEL\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 105\n\tset y_gtTask to y_gtGcal + 170\n\tset y_gtPs to y_gtTask + 50\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to item 1 of svs\n\tset dPosY to item 2 of svs\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX\n\tset dPosY_R to dPosY\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif DEBUG_LEVEL > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif DEBUG_LEVEL > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\tlog ledge & y_gtCal\n\t\t\tlog ledge & y_gtGcal\n\t\t\tlog ledge & y_gtTask\n\t\t\tlog ledge & y_gtPs\n\t\t\tset appName to \"GeekTool\"\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon(false)\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d4e769f1fd416a6081d6c82ee904a78c9588b277","subject":"Show license on first run and add it to About view","message":"Show license on first run and add it to About view\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the license controller\n\t\t\tset license_controller to make_license_controller()\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller()\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"56a74929a15468f49479927c8cfe676cd03e1e1a","subject":"bring summary and actions to top, trim list in brief mode","message":"bring summary and actions to top, trim list in brief mode\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\telse\n\t\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"f2204be0262aed73167186a7bec1fe95508f348a","subject":"fix: cleanup launched apps","message":"fix: cleanup launched apps\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_contents":"--- Inspired by: http:\/\/www.makeuseof.com\/tag\/3-tools-unleash-mac-os-menu-bar\n\nto conditionalclose(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\tquit\n\t\t\treturn \"Quit \" & application_name\n\t\telse\n\t\t\t-- \tdisplay dialog \"Already quit \" & application_name\n\t\t\treturn \"Already quit \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.4\nend conditionalclose\n\nto conditionalopen(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\t-- \tdisplay dialog \"Already running \" & application_name\n\t\t\treturn application_name & \" is already open\"\n\t\telse\n\t\t\tlaunch\n\t\t\treturn \"Opened \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.2\nend conditionalopen\n\n-- if you are not sure about the exact name, start \"Activity Monitor\" (e.g. search it with Spotlight)\n-- and look up the \"Process Name\" (first column) in the list of running processes\n\n-- Open apps if not open already:\nconditionalopen(\"Sip\")\nconditionalopen(\"Dash\")\nconditionalopen(\"Dropshelf\")\nconditionalopen(\"Flux\")\nconditionalopen(\"Downlink\")\nconditionalopen(\"Cozy Drive\")\nconditionalopen(\"Bartender 2\")\nconditionalopen(\"Dropbox\")\nconditionalopen(\"Backup and Sync\") -- Google Drive Sync\n\n-- conditionalopen(\"Rocket\")\n-- conditionalopen(\"BetterTouchTool\")\n\n-- Debugging:\n\n-- Use console to log timestamp and info to console upon error\n-- to logit(log_string, log_file)\n-- \tdo shell script ?\n-- \t\t\"echo `date '+%Y-%m-%d %T: '`\\\"\" & log_string & ?\n-- \t\t\"\\\" >> $HOME\/Library\/Logs\/\" & log_file & \".log\"\n-- end logit\n\n-- Quit any unneccessary apps\n-- conditionalclose(\"KeepingYouAwake\")\n\n-- Other method of printing results\nset dateStamp to date string of (current date)\nset timeStamp to time string of (current date)\nreturn \"This script was run on \" & dateStamp & \" at \" & timeStamp\n","old_contents":"--- Inspired by: http:\/\/www.makeuseof.com\/tag\/3-tools-unleash-mac-os-menu-bar\n\nto conditionalclose(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\tquit\n\t\t\treturn \"Quit \" & application_name\n\t\telse\n\t\t\t-- \tdisplay dialog \"Already quit \" & application_name\n\t\t\treturn \"Already quit \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.4\nend conditionalclose\n\nto conditionalopen(application_name)\n\ttell application application_name\n\t\tif it is running then\n\t\t\t-- \tdisplay dialog \"Already running \" & application_name\n\t\t\treturn application_name & \" is already open\"\n\t\telse\n\t\t\tlaunch\n\t\t\treturn \"Opened \" & application_name\n\t\tend if\n\tend tell\n\tdelay 0.2\nend conditionalopen\n\n-- if you are not sure about the exact name, start \"Activity Monitor\" (e.g. search it with Spotlight)\n-- and look up the \"Process Name\" (first column) in the list of running processes\n\n-- Open apps if not open already:\nconditionalopen(\"Sip\")\nconditionalopen(\"Dash\")\n-- conditionalopen(\"PopClip\") -- Causes CMD C to fail. Currently deactivated\nconditionalopen(\"Dropshelf\")\nconditionalopen(\"Flux\")\nconditionalopen(\"Downlink\")\n-- conditionalopen(\"Numi\")\n\n-- Background Apps\n-- conditionalopen(\"Rocket\")\n-- conditionalopen(\"BetterTouchTool\")\n-- conditionalopen(\"EvernoteHelper\")\nconditionalopen(\"Bartender 2\")\nconditionalopen(\"Dropbox\")\nconditionalopen(\"Backup and Sync\") -- Google Drive Sync\n\n-- Debugging:\n\n-- Use console to log timestamp and info to console upon error\n-- to logit(log_string, log_file)\n-- \tdo shell script \n-- \t\t\"echo `date '+%Y-%m-%d %T: '`\\\"\" & log_string & \n-- \t\t\"\\\" >> $HOME\/Library\/Logs\/\" & log_file & \".log\"\n-- end logit\n\n-- Quit any unneccessary apps\n-- conditionalclose(\"KeepingYouAwake\")\n\n-- Other method of printing results\nset dateStamp to date string of (current date)\nset timeStamp to time string of (current date)\nreturn \"This script was run on \" & dateStamp & \" at \" & timeStamp\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fdbaea8e7bb54877dfcaa0f699a7595658fe7275","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"207414b281cd3df97d5fe1329168339522838344","subject":"fix sub-handler params","message":"fix sub-handler params\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Open.applescript","new_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Open.applescript","new_contents":"-- fmGUI_ManageDb_Open(prefs)\n-- Daniel A. Shockley, NYHTC\n-- Open Manage Database\n\n\n(*\nHISTORY:\n\t1.4 - 2020-05-20 ( dshockley ): added multiple missing sub-handlers. Removed referfence to old sub-handler. \n\t1.3 - 2018-04-30 ( eshagdar ): get window name via handler.\n\t1.2 - added xDBC connection error trapping\n\t1.1 - \n\t1.0 - created\n\n\nTODO:\n\t- 2015-06-03 ( eshagdar ): probably going to need to open manageDB via openManageDB script if the menu item fails\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDb_DismissXDBCDialog\n\tfmGUI_ManageDb_GoToTab_Relationships\n\tfmGUI_Menu_OpenDB\n\tfmGUI_NameOfFrontmostWindow\n*)\n\n\non run\n\tfmGUI_ManageDb_Open({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_Open(prefs)\n\t-- version 1.4\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- try to open Manage DB\n\t\tset windowName to fmGUI_NameOfFrontmostWindow()\n\t\tif windowName starts with \"Manage Database for\" then\n\t\t\treturn true\n\t\telse\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\t\n\t\t\t\n\t\t\t-- dismiss any initial xDBC connection errors\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- go to the TOs tab and AGAIN dismiss any xDBC connections that failed to connect\n\t\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t--zoom out to show all TOs and dismiss any xDBC errors that weren't already dismissed\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tkeystroke \"i\" using command down\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- zoom back in\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset zoomField to text field 1 of tab group 1 of window 1\n\t\t\t\t\tset focused of zoomField to true\n\t\t\t\t\tset value of zoomField to \"100\"\n\t\t\t\t\tkey code 48 (* tab out of the zoom field *)\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\treturn true\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"Couldn't open manage DB - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_AppFrontMost\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDb_DismissXDBCDialog(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_ManageDb_DismissXDBCDialog\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_ManageDb_DismissXDBCDialog(prefs)\nend fmGUI_ManageDb_DismissXDBCDialog\n\non fmGUI_ManageDb_GoToTab_Relationships(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_ManageDb_GoToTab_Relationships\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_ManageDb_GoToTab_Relationships(prefs)\nend fmGUI_ManageDb_GoToTab_Relationships\n\non fmGUI_Menu_OpenDB(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_Menu_OpenDB\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_Menu_OpenDB(prefs)\nend fmGUI_Menu_OpenDB\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_NameOfFrontmostWindow\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n","old_contents":"-- fmGUI_ManageDb_Open(prefs)\n-- Daniel A. Shockley, NYHTC\n-- Open Manage Database\n\n\n(*\nHISTORY:\n\t1.4 - 2020-05-20 ( dshockley ): added multiple missing sub-handlers. Removed referfence to old sub-handler. \n\t1.3 - 2018-04-30 ( eshagdar ): get window name via handler.\n\t1.2 - added xDBC connection error trapping\n\t1.1 - \n\t1.0 - created\n\n\nTODO:\n\t- 2015-06-03 ( eshagdar ): probably going to need to open manageDB via openManageDB script if the menu item fails\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDb_DismissXDBCDialog\n\tfmGUI_ManageDb_GoToTab_Relationships\n\tfmGUI_Menu_OpenDB\n\tfmGUI_NameOfFrontmostWindow\n*)\n\n\non run\n\tfmGUI_ManageDb_Open({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_Open(prefs)\n\t-- version 1.4\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- try to open Manage DB\n\t\tset windowName to fmGUI_NameOfFrontmostWindow()\n\t\tif windowName starts with \"Manage Database for\" then\n\t\t\treturn true\n\t\telse\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\t\n\t\t\t\n\t\t\t-- dismiss any initial xDBC connection errors\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- go to the TOs tab and AGAIN dismiss any xDBC connections that failed to connect\n\t\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t--zoom out to show all TOs and dismiss any xDBC errors that weren't already dismissed\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tkeystroke \"i\" using command down\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- zoom back in\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset zoomField to text field 1 of tab group 1 of window 1\n\t\t\t\t\tset focused of zoomField to true\n\t\t\t\t\tset value of zoomField to \"100\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\treturn true\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"Couldn't open manage DB - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_AppFrontMost\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_AppFrontMost(prefs)\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDb_DismissXDBCDialog(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_ManageDb_DismissXDBCDialog\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_ManageDb_DismissXDBCDialog(prefs)\nend\n\non fmGUI_ManageDb_GoToTab_Relationships(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_ManageDb_GoToTab_Relationships\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_ManageDb_GoToTab_Relationships(prefs)\nend\n\non fmGUI_Menu_OpenDB(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_Menu_OpenDB\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_Menu_OpenDB(prefs)\nend\n\non fmGUI_NameOfFrontmostWindow(prefs)\n\ttell application \"Finder\" to set handlerPath to ((container of (path to me)) as text) & \"fmGUI_NameOfFrontmostWindow\" & \".scpt\"\n\ttell (load script alias handlerPath) to return fmGUI_NameOfFrontmostWindow(prefs)\nend\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c9b66cf239a9aa19a6e64c67da9566b2bcb7a68a","subject":"Convert status.applescript to UTF-8","message":"Convert status.applescript to UTF-8\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"on is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset nl to \"\n\"\n\nif is_running(\"Hermes\") then\n\ttell application \"Hermes\"\n\t\treturn \"__RUNNING__\" & nl & \u00ac\n\t\t\tcurrent song's title & nl & \u00ac\n\t\t\tcurrent song's artist & nl & \u00ac\n\t\t\tcurrent song's album & nl & \u00ac\n\t\t\tcurrent song's artwork URL\n\tend tell\nelse\n\treturn \"__NOT_RUNNING__\"\nend if","old_contents":"on is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset nl to \"\n\"\n\nif is_running(\"Hermes\") then\n\ttell application \"Hermes\"\n\t\treturn \"__RUNNING__\" & nl & \n\t\t\tcurrent song's title & nl & \n\t\t\tcurrent song's artist & nl & \n\t\t\tcurrent song's album & nl & \n\t\t\tcurrent song's artwork URL\n\tend tell\nelse\n\treturn \"__NOT_RUNNING__\"\nend if","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ee73f671ddba5b8b2f2bec6b17bae26e3a259cb5","subject":"update applescript to work with a filter","message":"update applescript to work with a filter\n","repos":"helaili\/thumbscrew,azizshamim\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_root_dir> <path_to_keynotePresentation> <presentation_name>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_root_dir>\/.keynote\/<presentation>\nproperty thumbSize : 480\nproperty thumbnailDir: \"keynotes\"\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set gitRoot to item 1 of argv\n set tmpFile to item 2 of argv\n set documentName to item 3 of argv\n if documentName ends with \".key\" then set documentName to text 1 thru -5 of documentName\n\n set gitRoot to posix file (POSIX path of (gitRoot as text) & \"\/\" & thumbnailDir) as alias\n set tmpFile to (POSIX file tmpFile) as alias\n\n tell application \"Keynote\"\n activate\n open tmpFile\n\n if playing is true then stop the front document\n\n tell application \"Finder\"\n if not (exists folder documentName of folder gitRoot)\n make new folder at gitRoot with properties {name:documentName}\n end if\n set the targetFolder to folder documentName of folder gitRoot\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\n return POSIX path of gitRoot\nend run\n","old_contents":"property thumbSize : 480\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set keynotePresentation to item 1 of argv\n set tmpKeynotePresentation to item 2 of argv\n\n set keynotePresentation to (POSIX file keynotePresentation) as alias\n set tmpkeynotePresentation to (POSIX file keynotePresentation) as alias\n\n tell application \"Keynote\"\n activate\n open tmpkeynotePresentation\n\n if playing is true then stop the front document\n set documentName to the name of the front document\n if documentName ends with \".key\" then set documentName to text 1 thru -5 of documentName\n\n tell application \"Finder\"\n set keynoteContainer to (container of keynotePresentation) as alias\n if not (exists folder documentName of folder keynoteContainer)\n make new folder at keynoteContainer with properties {name:documentName}\n end if\n set the targetFolder to folder documentName of folder keynoteContainer\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\n return POSIX path of keynoteContainer\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b4f27e6ea734c2d3ede480848152fdfb082ba135","subject":"Always open a new window of iTerm2.","message":"Always open a new window of iTerm2.\n","repos":"lexrus\/LTFinderButtons","old_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"iTerm2FinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000)\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000(\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\f\u0000\f\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\f\u0000\"\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003I\u0000\u0002\u0000\u0012\u0000!\u0000\u0018\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0018\u0000\u0003\u0000\u0019\n\u0000\u0004\nText\r\u0000\u0019\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001d\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u001d\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001a\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001a\n\u0000\u0004\nstrq\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u0018\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\npsxp\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000\u001b\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000$\u000e\u0000$\u0000\u0001\u0000%\u0011\u0000%\u0000\u000e\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0006\u0000\u0000\r\u0000\u0017\u0000\u0003l\u0001\u0000\u0000\f\u0000\u000f\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\nWcsn\r\u0000(\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000)\r\u0000)\u0000\u0003I\u0000\u0002\u0000#\u0000(\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000*\u000f\u0000*\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0001]\u0002\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004b\u0005nA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0001]\u0002\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\r\u0000-\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000.\u0000\/\r\u0000.\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\/\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u00000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000#\u00003\u00004\r\u00003\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000\"\u00005\u00006\u00007\r\u00005\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0011\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000f\u0000:\r\u0000:\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000f\u0000;\u0000<\r\u0000;\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\r\u0000=\u0000>\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\ncfol\r\u0000>\u0000\u0003l\u0001\u0000\u0000\u0007\u0000\u000b\u0000?\r\u0000?\u0000\u00024\u0001\u0000\u0000\u0007\u0000\u000b\u0000@\n\u0000\u0004\ncwin\r\u0000@\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000<\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u00006\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00007\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\"\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0005\u0000\u0019\u0000 \u0000C\r\u0000C\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u0000D\u0000E\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000D\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000bafdmdesk\u0006\u0000E\u0000\u0003\u0000F\n\u0000\u0004\nrtyp\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000G\u000f\u0000G\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0001\\\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001|h\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0001\\\u0001\\\u0001\\\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00002\u0000\u0002\u0000H\r\u0000H\u0000\u0003I\u0000\u0000\u0000$\u0000*\u0000I\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000I\u0000\u0002\u0000J\r\u0000J\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000K\u0000L\u0000M\u0001\u0000\u0000\u0010\u0000K\u0000\u0002\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000L\u0000\u0007\u0010\u0000\b\u0000N\u0000O\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u000e\u0000\u0002\u0004\u0000P\u0003\u0000\u0001\u000e\u0000P\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0010\u0000N\u0000\u0002\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0010\u0000O\u0000\n\u0000*\u0000\u001e\u0000$\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nWcsn\n\u0000\u0004\nText\n\u0000\u0004\npsxp\n\u0000\u0004\nstrq\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.miscactvnull\u0000\u0000null\u0011\u0000*\u0012\u0000&*j\f\u0000\u0001EO,\u0012\u0000\u0011*,,%%l\f\u0000\bUO*j\f\u0000\tU\u000f\u000e\u0000M\u0000\u0007\u0010\u0000\/\u0000Q\u0000R\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000Q\u0000\u0000\u0010\u0000R\u0000\u000b\u0000G\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0011\u0000+\u0012\u0000 \u0014\u0000\u000f*k\/,&EW\u0000\u0010X\u0000\u0005\u0000\u0006l\f\u0000\tEUO*k+\u0000\n\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000Z\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000Y\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u001f\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001H\u0000\u0000\u0000\n\u0000\u0013\u0000\u0016\r\u0000\u0016\u0000\u0003l\u0000\u0005\u0000\n\u0000\u0012\u0000\u0017\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0012\u0000\u0018\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0018\u0000\u00024\u0000\u0001\u0000\n\u0000\u000e\u0000\u0019\n\u0000\u0004\ncwin\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000 \u0000 \u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002O\u0000\u0000\u0000 \u0000:\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0004Z\u0000\u0000\u0000)\u00009\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000)\u0000-\n\u0000\u0004\nPrcs\r\u0000!\u0000\u0003I\u0000\u0002\u00000\u00005\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000 \u0000&\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000$\u0000&\n\u0000\u0004\nWcsn\r\u0000#\u0000\u00024\u0000\u0001\u0000 \u0000$\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0001\u0002\u0000\u001d\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\r\u0000'\u0000\u0002O\u0000\u0000\u0000;\u0000Y\u0000(\u0000)\r\u0000(\u0000\u0002O\u0000\u0000\u0000B\u0000X\u0000*\u0000+\r\u0000*\u0000\u0003I\u0000\u0002\u0000H\u0000W\u0000,\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000,\u0000\u0003\u0000-\n\u0000\u0004\nText\r\u0000-\u0000\u0002b\u0000\u0000\u0000J\u0000S\u0000.\u0000\/\r\u0000.\u0000\u0002b\u0000\u0000\u0000J\u0000Q\u00000\u00001\r\u00000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u00002\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000\u0006\u0000c\u0000d\u0000 \r\u00001\u0000\u0002n\u0000\u0000\u0000K\u0000P\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u0000N\u0000P\n\u0000\u0004\nstrq\r\u00005\u0000\u0002n\u0000\u0000\u0000K\u0000N\u00006\u00007\r\u00006\u0000\u00011\u0000\u0000\u0000L\u0000N\n\u0000\u0004\npsxp\r\u00007\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000\/\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u00008\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u000e\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0006\u0000\u0000\r\u0000+\u0000\u0003l\u0001\u0000\u0000B\u0000E\u0000:\r\u0000:\u0000\u00011\u0000\u0000\u0000B\u0000E\n\u0000\u0004\nWcsn\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000)\u0000\u00024\u0000\u0001\u0000;\u0000?\u0000;\n\u0000\u0004\ncwin\r\u0000;\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000<\u000f\u0000<\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0001]\u0002\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004b\u0005nA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0001]\u0002\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000?\r\u0000?\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002O\u0000\u0000\u0000\u0000\u0000#\u0000E\u0000F\r\u0000E\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000\"\u0000G\u0000H\u0000I\r\u0000G\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u0011\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000f\u0000L\r\u0000L\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u000f\u0000M\u0000N\r\u0000M\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\r\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\ncfol\r\u0000P\u0000\u0003l\u0001\u0000\u0000\u0007\u0000\u000b\u0000Q\r\u0000Q\u0000\u00024\u0001\u0000\u0000\u0007\u0000\u000b\u0000R\n\u0000\u0004\ncwin\r\u0000R\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\u0004\nalis\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000H\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\"\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0005\u0000\u0019\u0000 \u0000U\r\u0000U\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u0000V\u0000W\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000V\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\b\u000bafdmdesk\u0006\u0000W\u0000\u0003\u0000X\n\u0000\u0004\nrtyp\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nalis\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000Y\u000f\u0000Y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\\H+\u0000\u0000\u0001\\\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001|h\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\\Ag\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0001\\\u0001\\\u0001\\\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000D\u0000\u0002\u0000Z\r\u0000Z\u0000\u0003I\u0000\u0000\u0000$\u0000*\u0000[\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000]\u0000^\u0000_\u0001\u0000\u0000\u0010\u0000]\u0000\u0002\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000^\u0000\u0007\u0010\u0000\b\u0000`\u0000a\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u000e\u0000\u0002\u0004\u0000b\u0003\u0000\u0001\u000e\u0000b\u0000\u0001\u0000\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0002\u0000\u0000\u0010\u0000`\u0000\u0001\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0010\u0000a\u0000\r\u0000<\u00002\u00008\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ncwin\n\u0000\u0018.coredoexnull\u0000\u0000\u0000\u0000\u0000obj \n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nWcsn\n\u0000\u0004\nPrcs\n\u0000\u0004\nText\n\u0000\u0004\npsxp\n\u0000\u0004\nstrq\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0011\u0000[\u0012\u0000W*j\f\u0000\u0001O*k\/j\f\u0000\u0003\u000b\u001d\u0000\n*j\f\u0000\u0004Y\u0000\u0003hO*k\/,\u0012\u0000\u0012*,E\u001d\u0000\n*j\f\u0000\u0004Y\u0000\u0003hUO*k\/\u0012\u0000\u0018*,\u0012\u0000\u0011*,,%%l\f\u0000\fUUU\u000f\u000e\u0000_\u0000\u0007\u0010\u0000A\u0000c\u0000d\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000c\u0000\u0000\u0010\u0000d\u0000\u000b\u0000Y\n\u0000\u0004\ncwin\n\u0000\u0004\ncfol\n\u0000\u0004\nalis\u000b\u0000\u00160\u0000\tthefolder\u0000\ttheFolder\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\b\u000bafdmdesk\n\u0000\u0004\nrtyp\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001a0\u0000\u000bopeniniterm\u0000\u000bopenIniTerm\u0011\u0000+\u0012\u0000 \u0014\u0000\u000f*k\/,&EW\u0000\u0010X\u0000\u0005\u0000\u0006l\f\u0000\tEUO*k+\u0000\n\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3bf04cf0f845645542959d53cc9c904b03cb412d","subject":"fix Terminal.app can not remove 'file' prefix","message":"fix Terminal.app can not remove 'file' prefix\n","repos":"lexrus\/LTFinderButtons","old_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"TerminalFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\bm\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010jscr\u0000\u0001\u0000\f\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\bY\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000k\u0000i\u0000n\u0000d\u0000(\u0000)\u0000 \u0000=\u0000=\u0000 \u0000'\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000'\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000 \u0000=\u0000 \u0000$\u0000.\u0000N\u0000S\u0000U\u0000R\u0000L\u0000.\u0000a\u0000l\u0000l\u0000o\u0000c\u0000.\u0000i\u0000n\u0000i\u0000t\u0000F\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000W\u0000i\u0000t\u0000h\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000O\u0000b\u0000j\u0000C\u0000.\u0000u\u0000n\u0000w\u0000r\u0000a\u0000p\u0000(\u0000f\u0000i\u0000l\u0000e\u0000U\u0000R\u0000L\u0000.\u0000p\u0000a\u0000t\u0000h\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000B\u0000y\u0000D\u0000e\u0000l\u0000e\u0000t\u0000i\u0000n\u0000g\u0000L\u0000a\u0000s\u0000t\u0000P\u0000a\u0000t\u0000h\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000)\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000m\u0000d\u0000 \u0000=\u0000 \u0000`\u0000c\u0000d\u0000 \u0000\"\u0000$\u0000{\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000}\u0000\"\u0000;\u0000c\u0000l\u0000e\u0000a\u0000r\u0000;\u0000`\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000'\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000(\u0000)\u0000\n\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000d\u0000o\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000(\u0000c\u0000m\u0000d\u0000)\u0000\n\u0000\n\u0000\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"72e2d2584e73540652747deb8572b70b657c3d28","subject":"another fix for prettify","message":"another fix for prettify\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.5, Daniel A. Shockley\n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & return & someXML & return & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & return & someXML & return & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.5, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\tset tidyShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\tset prettyXML to do shell script tidyShellCommand\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n--tell fmObjTrans to clipboardPatternCount({searchString:\"\/\/ version\"})\n--tell fmObjTrans to clipboardPatternCount({searchString:\"BLAHBLAHBLAH\"})\n--tell fmObjTrans to clipboardPatternCount({searchHex:\"2F2F2076657273696F6E20\"})\n--tell fmObjTrans to (clipboardGetTextBetween({beforeString:\"\/\/ version \", afterString:\",\"}))\n\n\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.4, Daniel A. Shockley\n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & return & someXML & return & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & return & someXML & return & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.4, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\tset tidyShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\tset prettyXML to do shell script tidyShellCommand\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"303183d414f71f51c61e9aee7018903c6de49770","subject":"recompile bundlet script","message":"recompile bundlet script\n\nreduces file size by recompiling without running\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/alfred.bundler.scpt","new_file":"tests\/applescript\/alfred.bundler.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000>\u0000?\u0001\u0000\u0000\f\u0000>\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000=\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000E\u0000F\r\u0000E\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000G\u0002\u0000G\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u0000K\u0001\u0000\u0000\f\u0000J\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000I\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000O\u0000P\u0001\u0000\u0000\f\u0000O\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000N\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000T\u0000U\r\u0000T\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000X\r\u0000X\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000[\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Z\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000W\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000U\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000]\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000`\u0000a\u0001\u0000\u0000\f\u0000`\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000_\u0000\u0002\u0000c\r\u0000c\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000e\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000h\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000h\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000i\b\u0000i\u0000\b?\u0002\u0000\u0000\u0002\u0000g\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000l\u0000m\u0001\u0000\u0000\f\u0000l\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000k\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000s\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000u\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000p\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000z\u0000{\u0001\u0000\u0000\f\u0000z\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000y\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000~\r\u0000~\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0001\u0001\u0001\u0002\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0001\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0003\u000e\u0001\u0003\u0000\u0001\u0001\u0004\u0011\u0001\u0004\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0002\u0000\u0003\u0001\u0005\n\u0000\u0004\nerrn\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\b\u0001\t\u0001\u0000\u0000\f\u0001\b\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\u000f\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0010\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u000e\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0013\u0001\u0014\u0001\u0000\u0000\f\u0001\u0013\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0014\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0012\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0001 \u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u0006\u0000c\u0000d\u0000 \r\u0001\u001f\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\"\r\u0001\"\u0000\u0002n\u0000\u0000\u0000\u0000\u0001#\u0001$\r\u0001#\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001$\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0000\u0000\u0001%\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u001b\u0000\u0003l\u0000\u0005\u0000\u0000\u0001'\r\u0001'\u0000\u0002n\u0000\u0000\u0000\u0000\u0001(\u0001)\r\u0001(\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nstrq\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000\u0000{\u0001,z\n{\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000y\u000by\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002z\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0001\u0000\u0000x\u0001\/\u00010\u0001x\u0000\u0000\f\u0001\/\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001.\u0000\u0002\u00012\u00013\r\u00012\u0000\u0002r\u0000\u0000\u0000\u0000\u00014\u00015\r\u00014\u0000\u0003l\u0000\u0005\u0000\u0000\u00016wv\r\u00016\u0000\u0002b\u0000\u0000\u0000\u0000\u00017\u00018\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00018\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001w\u0000\u0000\u0001v\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00013\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0002V\u0000\u0000\u0000\u0000\u0001=\u0001>\r\u0001=\u0000\u0003I\u0000\u0002\u0000\u0000s\u0001?r\ns\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001?\u0000\u0001m\u0000\u0000\u0000\u0000\u0001@\b\u0001@\u0000\b?\u0259\u0002r\u0000\u0000\r\u0001>\u0000\u0001H\u0000\u0000\u0000\u0000\u0001A\r\u0001A\u0000\u0003l\u0000\u0005\u0000\u0000\u0001Bqp\r\u0001B\u0000\u0002n\u0000\u0001\u0000\u0000\u0001C\u0001D\r\u0001C\u0000\u0003I\u0000\u0000\u0000\u0000o\u0001En\u000bo\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001E\u0000\u0002\u0001Fm\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002m\u0000\u0000\u0002n\u0000\u0000\r\u0001D\u0000\u0000f\u0000\u0000\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001<\u0000\u0002\u0001Gk\r\u0001G\u0000\u0001L\u0000\u0000\u0000\u0000j\u0001j\u0000\u0000\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ihg\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0001I\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000f\u0001L\u0001M\u0001f\u0000\u0000\f\u0001L\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001M\u0000\u0001\u0001N\u0011\u0001N\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001K\u0000\u0002\u0001O\u0001P\r\u0001O\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001Q\u0001R\r\u0001Q\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000edc\u000be\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002d\u0000\u0000\u0002c\u0000\u0000\r\u0001R\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001S\u0002\u0001S\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000b\u0001V\u0001W\u0001b\u0000\u0000\f\u0001V\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001U\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000a\u0001[\u0001\\\u0001a\u0000\u0000\f\u0001[\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001\\\u0000\u0001\u0001]\u0011\u0001]\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001Z\u0000\u0002\u0001^\u0001_\r\u0001^\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001b\u0001c\r\u0001b\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005`_^\u000b`\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002_\u0000\u0000\u0002^\u0000\u0000\r\u0001e\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001c\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001f\u000e\u0001f\u0000\u0001\u0001g\u0011\u0001g\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001_\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\\\u0001j\u0001k\u0001\\\u0000\u0000\f\u0001j\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001o\u0001p\r\u0001o\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001q\u0001r\r\u0001q\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001t\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f[\u000b[\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001r\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001w\u000e\u0001w\u0000\u0001\u0001x\u0011\u0001x\u0000\u0002\u0000'\r\u0001p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Z\u000bZ\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001n\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001{\u0001|\r\u0001{\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017Y\u0001}X\nY\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001}\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013W\u000bW\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002X\u0000\u0000\r\u0001|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000V\u000bV\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001z\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aU\u0001\u0001\u0001U\u0000\u0000\f\u0001\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fTSR\u000bT\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002S\u0000\u0000\u0002R\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Q\u000bQ\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*P\u0001O\u000bP\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001N\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&M\u000bM\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002N\u0000\u0000\u0002O\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-K\u0001\u0001\u0001K\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.J\u000bJ\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001I\u000bI\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007GFE\u0001G\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000WD\nD\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001CB\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000SA\u0001\u0001\nA\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u00008@\u000b@\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u0003?\u0001\u0001\n?\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u0001>\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u0002>\u0000\u0000\u0006\u0001\u0000\u0003=\u0001\u0001\n=\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@<\u0003<\u0000\u0003\u0006\u0001\u0000\u0003;\u0001\u0001\n;\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C:\u000b:\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u00039\u00018\n9\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M7\u0001\n7\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L6\u000b6\u0000\t0\u0000\u0005_icon\u0000\u0000\u00068\u0000\u0000\u0001C\u0000\u0000\u0001B\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z4\u0001\u0001\u00014\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u000132\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[1\u000b1\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c0\n0\u0000\b\u000bboovtrue\u00023\u0000\u0000\u00012\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i\/\u0001\u0001\u0001\/\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u0001.-\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j,\u000b,\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~+\u0001*\n+\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002*\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001)\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000(\u0001\u0001\n(\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003'\u0001&\n'\u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000%\u0003%\u0000\u0017\u0006&\u0000\u0000\u0002)\u0000\u0000\u0002.\u0000\u0000\u0001-\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000$\u0001\u0001\u0001$\u0000\u0000\f\u0001\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001#\r\u0001\u0000\u0004Z\u0000\u0001\u0000\u0000\u0001\u0001\"!\r\u0001\u0000\u0002=\u0000\u0001\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000 \u000b \u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0002\u0000\u0011\u0002\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u001f\u0002\u0001\u0002\u0002\n\u001f\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0003\u000e\u0002\u0003\u0000\u0001\u0002\u0004\u0011\u0002\u0004\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\u0002\u0000\u0003\u001e\u0002\u0005\u001d\n\u001e\u0000\u0004\nerrn\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u001c\u0003\u001c\u0000\u0017\u0006\u001d\u0000\u0000\u0002\"\u0000\u0000\u0001!\u0000\u0000\u0002#\u0000\u0000\u0002\u0001P\u0000\u0002\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u0002\u0007\u0000\u0002\u0002\b\u0002\t\r\u0002\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0018\u0017\u0016\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0002\u0002\t\u0000\u0002\u0002\n\u0002\u000b\r\u0002\n\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0015\u0002\f\u0002\r\u0001\u0015\u0000\u0000\f\u0002\f\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\r\u0000\u0001\u0002\u000e\u0011\u0002\u000e\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\u000b\u0000\u0002\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u0002\u0010\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0010\u000f\u000b\u0011\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u000f\u0000\u0000\r\u0002\u0014\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002\u0015\u0002\u0002\u0015\u0000\u0002\u0002\u0016\u0002\u0017\r\u0002\u0016\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0018\u0002\u0019\u0001\u000e\u0000\u0000\f\u0002\u0018\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0019\u0000\u0001\u0002\u001a\u0011\u0002\u001a\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0017\u0000\u0002\u0002\u001b\u0002\u001c\r\u0002\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\r\u0002\u001d\u0002\u001e\u0001\r\u0000\u0000\f\u0002\u001d\u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002\u001e\u0000\u0001\u0002\u001f\u0011\u0002\u001f\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002\u001c\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002\"\u0002#\r\u0002\"\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002$\u0002\u0002$\u0000\u0002\u0002%\u0002&\r\u0002%\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u0002'\u0002(\r\u0002'\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\f\n\f\u0000\u0004\ntxdl\r\u0002(\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u000b\n\u000b\u0000\u0004\nascr\u0002\u0002&\u0000\u0002\u0002)\n\r\u0002)\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u0000\u0002\u0000\/\u0002\n\u0000\u0000\r\u0002#\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0002,\u0002\u0002,\u0000\u0002\u0002-\u0002.\r\u0002-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\t\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u0002.\u0000\u0002\u0002\/\b\r\u0002\/\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u00020\u00021\r\u00020\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\u0007\n\u0007\u0000\u0004\ntxdl\r\u00021\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\u0006\n\u0006\u0000\u0004\nascr\u0002\b\u0000\u0000\u0002\u0002!\u0000\u0002\u00022\u00023\r\u00022\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\u0005\u00024\u00025\u0001\u0005\u0000\u0000\f\u00024\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u00025\u0000\u0001\u00026\u0011\u00026\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u00023\u0000\u0002\u00027\u00028\r\u00027\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u00029\u0002:\r\u00029\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u0002;\u0002<\r\u0002;\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002=\u0004\u0003\r\u0002=\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002>\u0002?\r\u0002>\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002@\u0002A\r\u0002@\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0002\u0002B\u0002C\n\u0002\u0000\u0004\ncitm\r\u0002B\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0001\u0003\u0001\u0000\u0001\r\u0002C\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0000\u0003\u0000\r\u0002A\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002D\r\u0002D\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002E\u0002F\r\u0002E\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npsxp\r\u0002F\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002G\r\u0002G\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002H\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002H\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002?\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\r\u0002<\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002I\u000e\u0002I\u0000\u0001\u0002J\u0011\u0002J\u0000\u0002\u0000\/\r\u0002:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00028\u0000\u0002\u0002K\u0002L\r\u0002K\u0000\u0003l\u0000\u0001\u00000\u00000\u0002M\u0002N\u0001\u0000\u0000\f\u0002M\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002N\u0000\u0001\u0002O\u0011\u0002O\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002L\u0000\u0002\u0002P\u0002Q\r\u0002P\u0000\u0002r\u0000\u0000\u00000\u00005\u0002R\u0002S\r\u0002R\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002S\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002T\u0002U\r\u0002T\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002U\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002Q\u0000\u0002\u0002V\r\u0002V\u0000\u0001L\u0000\u0000\u00006\u00008\u0002W\r\u0002W\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002X\u0002Y\r\u0002X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002Y\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002\\\u0002]\r\u0002\\\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002^\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002^\u0000\u0002\u0002_\r\u0002_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002`\u0002\u0002`\u0000\u0002\u0002a\u0002b\r\u0002a\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002c\u0002d\u0001\u0000\u0000\f\u0002c\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002d\u0000\u0001\u0002e\u0011\u0002e\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002b\u0000\u0002\u0002f\u0002g\r\u0002f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002h\u0002i\u0001\u0000\u0000\f\u0002h\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002i\u0000\u0001\u0002j\u0011\u0002j\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002g\u0000\u0002\u0002k\u0002l\r\u0002k\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002m\u0002n\r\u0002m\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002o\u0002p\r\u0002o\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002p\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002q\r\u0002q\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002r\u0002s\r\u0002r\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002s\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002l\u0000\u0002\u0002t\u0002u\r\u0002t\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002v\u0002w\u0001\u0000\u0000\f\u0002v\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002w\u0000\u0001\u0002x\u0011\u0002x\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002u\u0000\u0002\u0002y\u0002z\r\u0002y\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002{\u0002|\u0001\u0000\u0000\f\u0002{\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002|\u0000\u0001\u0002}\u0011\u0002}\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002z\u0000\u0002\u0002~\u0002\r\u0002~\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002[\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0002\n\u0000\u0004\nditm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002\u000f\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0003\u0001\r\u0003\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\u0002\u0002\u0003\u0002\u0000\u0002\u0003\u0003\u0003\u0004\r\u0003\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0005\u0003\u0006\u0001\u0000\u0000\f\u0003\u0005\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0006\u0000\u0001\u0003\u0007\u0011\u0003\u0007\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u0004\u0000\u0002\u0003\b\u0003\t\r\u0003\b\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\n\u0003\u000b\r\u0003\n\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\f\u0003\r\r\u0003\f\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\u000e\u0003\u000f\r\u0003\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\r\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u0010\u0003\u0011\r\u0003\u0010\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u0012\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u0012\u0000\u0002\u0003\u0013\r\u0003\u0013\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0011\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\u000b\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u0014\r\u0003\u0014\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\t\u0000\u0002\u0003\u0015\r\u0003\u0015\u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003\u0016\u0003\u0017\u0003\u0018\r\u0003\u0016\u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003\u0019\u0002\u0003\u0019\u0000\u0002\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003\u001c\u0003\u001d\r\u0003\u001c\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003\u001e\u0003\u001f\r\u0003\u001e\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003 \u0003!\r\u0003 \u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcls\r\u0003!\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u001f\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nalis\r\u0003\u001d\u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003\"\r\u0003\"\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u001b\u0000\u0002\u0003#~\r\u0003#\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003$\u0003%\u0003&\u0003'\r\u0003$\u0000\u0002E\u0000\u0000\u0000*\u0000-\u0003(\u0003)\r\u0003(\u0000\u0001o\u0000\u0000\u0000*\u0000+}\u000b}\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003)\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003*\u000e\u0003*\u0000\u0001\u0003+\u0011\u0003+\u0000\u0002\u0000:\r\u0003%\u0000\u0001k\u0000\u0000\u00000\u00008\u0003,\u0002\u0003,\u0000\u0002\u0003-\u0003.\r\u0003-\u0000\u00024\u0000\u0000\u00000\u00005|\u0003\/\n|\u0000\u0004\nalis\r\u0003\/\u0000\u0001o\u0000\u0000\u00002\u00003{\u000b{\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0003.\u0000\u0002\u00030z\r\u00030\u0000\u0001L\u0000\u0000\u00006\u00008\u00031\r\u00031\u0000\u0001m\u0000\u0000\u00006\u00007y\ny\u0000\b\u000bboovtrue\u0002z\u0000\u0000\u0002\u0003&\u0000\u0002\u00032\u00033\r\u00032\u0000\u0002E\u0000\u0000\u0000;\u0000>\u00034\u00035\r\u00034\u0000\u0001o\u0000\u0000\u0000;\u0000<x\u000bx\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00035\u0000\u0001m\u0000\u0000\u0000<\u0000=\u00036\u000e\u00036\u0000\u0001\u00037\u0011\u00037\u0000\u0002\u0000\/\u0002\u00033\u0000\u0002\u00038w\r\u00038\u0000\u0001k\u0000\u0000\u0000A\u0000J\u00039\u0002\u00039\u0000\u0002\u0003:\u0003;\r\u0003:\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003<\u0003=\r\u0003<\u0000\u00024\u0000\u0000\u0000A\u0000Ev\u0003>\nv\u0000\u0004\npsxf\r\u0003>\u0000\u0001o\u0000\u0000\u0000C\u0000Du\u000bu\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003=\u0000\u0001m\u0000\u0000\u0000E\u0000Ft\nt\u0000\u0004\nalis\u0002\u0003;\u0000\u0002\u0003?s\r\u0003?\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003@\r\u0003@\u0000\u0001m\u0000\u0000\u0000H\u0000Ir\nr\u0000\b\u000bboovtrue\u0002s\u0000\u0000\u0002w\u0000\u0000\r\u0003'\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003A\r\u0003A\u0000\u0001m\u0000\u0000\u0000M\u0000Nq\nq\u0000\b\u000bboovfals\u0002~\u0000\u0000\r\u0003\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000p\u0003Bo\np\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002o\u0000\u0000\r\u0003\u0018\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003C\r\u0003C\u0000\u0001m\u0000\u0000\u0000W\u0000Xm\nm\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0003D\u0003E\r\u0003D\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000lkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002\u0003E\u0000\u0002\u0003F\u0003G\r\u0003F\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003H\u0003I\r\u0003H\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000i\u0003Jh\u000bi\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003J\u0000\u0002\u0003Kg\r\u0003K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002g\u0000\u0000\u0002h\u0000\u0000\r\u0003I\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003L\u0002\u0003L\u0000\u0002\u0003M\u0003N\r\u0003M\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000e\u0003O\u0003P\u0001e\u0000\u0000\f\u0003O\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003P\u0000\u0001\u0003Q\u0011\u0003Q\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003N\u0000\u0002\u0003R\u0003S\r\u0003R\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000d\u0003T\u0003U\u0001d\u0000\u0000\f\u0003T\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003U\u0000\u0001\u0003V\u0011\u0003V\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003S\u0000\u0002\u0003W\u0003X\r\u0003W\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003Y\u0003Zcb\r\u0003Y\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003[\u0003\\\r\u0003[\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003]\u0002\u0003]\u0000\u0002\u0003^\u0003_\r\u0003^\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001a\na\u0000\b\u000bboovtrue\u0002\u0003_\u0000\u0002\u0003``\r\u0003`\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002_\n_\u0000\b\u000bboovfals\u0002`\u0000\u0000\r\u0003\\\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005^\u000b^\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003Z\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003a\r\u0003a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n]\n]\u0000\b\u000bboovfals\u0002c\u0000\u0000\u0001b\u0000\u0000\u0002\u0003X\u0000\u0002\u0003b\u0003c\r\u0003b\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\\\u0003d\u0003e\u0001\\\u0000\u0000\f\u0003d\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003e\u0000\u0001\u0003f\u0011\u0003f\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003c\u0000\u0002\u0003g\u0003h\r\u0003g\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003i\u0003j[Z\r\u0003i\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003k\u0003l\r\u0003k\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011Y\u000bY\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003l\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012X\nX\u0000\u0004\nmsng\r\u0003j\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003m\r\u0003m\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017W\nW\u0000\b\u000bboovtrue\u0002[\u0000\u0000\u0001Z\u0000\u0000\u0002\u0003h\u0000\u0002\u0003n\u0003o\r\u0003n\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dV\u0003p\u0003q\u0001V\u0000\u0000\f\u0003p\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003q\u0000\u0001\u0003r\u0011\u0003r\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003o\u0000\u0002\u0003sU\r\u0003s\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003t\r\u0003t\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003u\u0003v\r\u0003u\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003w\u0003x\r\u0003w\u0000\u00011\u0000\u0000\u0000#\u0000%T\nT\u0000\u0004\nleng\r\u0003x\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003ySR\r\u0003y\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003z\u0003{\r\u0003z\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#Q\u0003|P\u000bQ\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003|\u0000\u0002\u0003}O\r\u0003}\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fN\u000bN\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002O\u0000\u0000\u0002P\u0000\u0000\r\u0003{\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001S\u0000\u0000\u0001R\u0000\u0000\r\u0003v\u0000\u0001m\u0000\u0000\u0000%\u0000&M\u0003M\u0000\u0000\u0002U\u0000\u0000\u0002\u0003G\u0000\u0002\u0003~\u0003\r\u0003~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000LKJ\u0001L\u0000\u0000\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0003\u0000\u0002\u0003I\r\u0003\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000H\u0003G\u000bH\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003F\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000E\u000bE\u0000\b0\u0000\u0004_str\u0000\u0000\u0002F\u0000\u0000\u0002G\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000D\u0003\u0003\u0001D\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003CB\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003A\nA\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001@\u000b@\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004?\n?\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b>\n>\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t=\u000b=\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f<\n<\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013;\u000b;\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014:\n:\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b9\u000b9\u0000\b0\u0000\u0004_str\u0000\u0000\u0002C\u0000\u0000\u0001B\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u000387\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"6\u000b6\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(5\u000b5\u0000\b0\u0000\u0004_str\u0000\u0000\u00028\u0000\u0000\u00017\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D4\u0003\u0003\n4\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@3\u00033\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C2\u00032\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:1\u000b1\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E0\n0\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000.\u0003-\n.\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000,\u000b,\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002-\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003+\u000b+\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n*\u0003\u0003\n*\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j)\u0003)\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m(\u0003(\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d'\u000b'\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o&\n&\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000%\u000b%\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000$#\"\n$\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001#\u0000\u0000\u0002\"\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]!\u000b!\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003 \r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\b0\u0000\u0004_str\u0000\u0000\u0002 \u0000\u0000\u0002I\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0011\u001e\u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001\u001e\u0000\u0000\u0010\u0003\u0000\u000f\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000b\u001d\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u001c\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u001b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u001a\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u0019\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u0018\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u0017\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u0016\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u0015\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\u0014\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\u0013\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0012\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0011\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\u0010\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\u000f\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u000e\u0000F\r\f\u0003\u0003\u000b\u000b\u000e\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\r\u0000\u0000\u0002\f\u0000\u0000\u0010\u0003\u0000\u0001\n\u000b\n\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\t\b\u0000i\u0007\u0000v\u0006\u000b\t\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\u0007\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0006\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\u000b\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0005\u0000\u0004\u0003\u0003\u0003\u0002\u000b\u0005\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0004\u0000\u0000\u0002\u0003\u0000\u0000\u0010\u0003\u0000\u0006\u0001\u0000\u000b\u0001\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0000\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001 \u0001%\u00019\u0001@\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0002\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001R\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001f\u0001u\u0001w\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0014\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u0002*\u0002I\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002]\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0003\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0003\u0000\n\u0003*\u00036\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003I\u0003\u0004\u0000\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0001\u0003\u0000\u0001\u000e\u0004\u0001\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0004\u0000\u0000\u0003\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\n\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0004\u0002\u0004\u0003\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0004\u0003\u0000\u0001\u000e\u0004\u0004\u0000\u0001\u0000~\u000b~\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0002\u0000\u0002}|\u000b}\u0000\b0\u0000\u0004_str\u0000\u0000\u000b|\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0003\u0000\u000f{zyxw\u0003\u0003vut\u0003\u0003sr\u0003\n{\u0000\u0004\npcls\nz\u0000\u0004\nctxt\ny\u0000\u0004\nTEXT\nx\u0000\u0004\nbool\nw\u0000\u0004\nmsng\nv\u0000\u0004\ncobj\u000bu\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002t\u0000\u0000\u0003s\u0001r\u0000\u0000\u0011\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u0000=\u0001\u0000\u0000\f\u0000<\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000;\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000H\u0000I\u0001\u0000\u0000\f\u0000H\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000R\u0000S\r\u0000R\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000V\r\u0000V\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000Y\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000U\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000S\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000[\u0002\u0000[\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000^\u0000_\u0001\u0000\u0000\f\u0000^\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000]\u0000\u0002\u0000a\r\u0000a\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000g\b\u0000g\u0000\b?\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000i\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000o\u0000p\r\u0000o\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000q\r\u0000q\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000s\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000n\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000x\u0000y\u0001\u0000\u0000\f\u0000x\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000w\u0000\u0002\u0000{\r\u0000{\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000|\r\u0000|\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000}\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000}\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000B\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0000\u0001\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0000\u0000\u0003\u0001\u0003\n\u0000\u0004\nerrn\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0006\u0001\u0007\u0001\u0000\u0000\f\u0001\u0006\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\u0005\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\r\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u000e\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0011\u0001\u0012\u0001\u0000\u0000\f\u0001\u0011\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0010\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u0000\u0006\u0000c\u0000d\u0000 \r\u0001\u001d\u0000\u0003l\u0000\u0005\u0000\u0000\u0001 \r\u0001 \u0000\u0002n\u0000\u0000\u0000\u0000\u0001!\u0001\"\r\u0001!\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u0019\u0000\u0003l\u0000\u0005\u0000\u0000\u0001%\r\u0001%\u0000\u0002n\u0000\u0000\u0000\u0000\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0000\u0000~\u0001*}\n~\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002}\u0000\u0000\u0002\u0001)\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0001\u0000\u0000{\u0001-\u0001.\u0001{\u0000\u0000\f\u0001-\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001,\u0000\u0002\u00010\u00011\r\u00010\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0005\u0000\u0000\u00014zy\r\u00014\u0000\u0002b\u0000\u0000\u0000\u0000\u00015\u00016\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00016\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00011\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0002V\u0000\u0000\u0000\u0000\u0001;\u0001<\r\u0001;\u0000\u0003I\u0000\u0002\u0000\u0000v\u0001=u\nv\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001>\b\u0001>\u0000\b?\u0259\u0002u\u0000\u0000\r\u0001<\u0000\u0001H\u0000\u0000\u0000\u0000\u0001?\r\u0001?\u0000\u0003l\u0000\u0005\u0000\u0000\u0001@ts\r\u0001@\u0000\u0002n\u0000\u0001\u0000\u0000\u0001A\u0001B\r\u0001A\u0000\u0003I\u0000\u0000\u0000\u0000r\u0001Cq\u000br\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001C\u0000\u0002\u0001Dp\r\u0001D\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002p\u0000\u0000\u0002q\u0000\u0000\r\u0001B\u0000\u0000f\u0000\u0000\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0001:\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0003l\u0000\u0001\u0000\u0000n\u0001G\u0001H\u0001n\u0000\u0000\f\u0001G\u0000,\u0000&#TODO: remove bundler files from cache\u0000\u0002\u0000\u0000\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000L\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0002\u0001F\u0000\u0002\u0001Jm\r\u0001J\u0000\u0001L\u0000\u0000\u0000\u0000l\u0001l\u0000\u0000\u0002m\u0000\u0000\u0002\u0000\u0000\u0002\u0001K\u0001L\r\u0001K\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000h\u0001O\u0001P\u0001h\u0000\u0000\f\u0001O\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001P\u0000\u0001\u0001Q\u0011\u0001Q\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001N\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001T\u0001U\r\u0001T\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000gfe\u000bg\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002f\u0000\u0000\u0002e\u0000\u0000\r\u0001U\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001V\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000d\u0001Y\u0001Z\u0001d\u0000\u0000\f\u0001Y\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001X\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000c\u0001^\u0001_\u0001c\u0000\u0000\f\u0001^\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001_\u0000\u0001\u0001`\u0011\u0001`\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001]\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001c\u0001d\r\u0001c\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001e\u0001f\r\u0001e\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001g\u0001h\r\u0001g\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005ba`\u000bb\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002a\u0000\u0000\u0002`\u0000\u0000\r\u0001h\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001b\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0003l\u0000\u0001\u0000\n\u0000\n^\u0001m\u0001n\u0001^\u0000\u0000\f\u0001m\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001r\u0001s\r\u0001r\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001v\u0001w\r\u0001v\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001x\u000e\u0001x\u0000\u0001\u0001y\u0011\u0001y\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f]\u000b]\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001u\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001z\u000e\u0001z\u0000\u0001\u0001{\u0011\u0001{\u0000\u0002\u0000'\r\u0001s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001q\u0000\u0002\u0001|\u0001}\r\u0001|\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001~\u0001\r\u0001~\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017[\u0001Z\n[\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013Y\u000bY\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002Z\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000X\u000bX\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001}\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aW\u0001\u0001\u0001W\u0000\u0000\f\u0001\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fVUT\u000bV\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002U\u0000\u0000\u0002T\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*R\u0001Q\u000bR\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001P\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&O\u000bO\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002P\u0000\u0000\u0002Q\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-M\u0001\u0001\u0001M\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.L\u000bL\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001K\u000bK\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000WF\nF\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001ED\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000SC\u0001\u0001\nC\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u00008B\u000bB\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u0003A\u0001\u0001\nA\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u0001@\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u0002@\u0000\u0000\u0006\u0001\u0000\u0003?\u0001\u0001\n?\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@>\u0003>\u0000\u0003\u0006\u0001\u0000\u0003=\u0001\u0001\n=\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u0003;\u0001:\n;\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M9\u0001\n9\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L8\u000b8\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006:\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z6\u0001\u0001\u00016\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u000154\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[3\u000b3\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c2\n2\u0000\b\u000bboovtrue\u00025\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i1\u0001\u0001\u00011\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u00010\/\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j.\u000b.\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~-\u0001,\n-\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002,\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001+\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000*\u0001\u0001\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003)\u0001(\n)\u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000'\u0003'\u0000\u0017\u0006(\u0000\u0000\u0002+\u0000\u0000\u00020\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000&\u0001\u0001\u0001&\u0000\u0000\f\u0001\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001%\r\u0001\u0000\u0004Z\u0000\u0001\u0000\u0000\u0001\u0001$#\r\u0001\u0000\u0002=\u0000\u0001\u0000\u0000\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\"\u000b\"\u0000\r0\u0000\t_response\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0002\u000e\u0002\u0002\u0000\u0001\u0002\u0003\u0011\u0002\u0003\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000!\u0002\u0004\u0002\u0005\n!\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0006\u000e\u0002\u0006\u0000\u0001\u0002\u0007\u0011\u0002\u0007\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\u0005\u0000\u0003 \u0002\b\u001f\n \u0000\u0004\nerrn\r\u0002\b\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u0003\u001e\u0000\u0017\u0006\u001f\u0000\u0000\u0002$\u0000\u0000\u0001#\u0000\u0000\u0002%\u0000\u0000\u0002\u0001S\u0000\u0002\u0002\t\u0002\n\r\u0002\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0002\n\u0000\u0002\u0002\u000b\u0002\f\r\u0002\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0002\f\u0000\u0002\u0002\r\u0002\u000e\r\u0002\r\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u000f\u0002\u0010\u0001\u0017\u0000\u0000\f\u0002\u000f\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\u0010\u0000\u0001\u0002\u0011\u0011\u0002\u0011\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\u000e\u0000\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0002\u0013\u0000\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u0016\u0002\u0017\r\u0002\u0016\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u0012\u0011\u000b\u0013\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0012\u0000\u0000\u0002\u0011\u0000\u0000\r\u0002\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002\u0018\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0002\u001b\u0002\u001c\u0001\u0010\u0000\u0000\f\u0002\u001b\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u001c\u0000\u0001\u0002\u001d\u0011\u0002\u001d\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u001a\u0000\u0002\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u000f\u0002 \u0002!\u0001\u000f\u0000\u0000\f\u0002 \u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002!\u0000\u0001\u0002\"\u0011\u0002\"\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002\u001f\u0000\u0002\u0002#\u0002$\r\u0002#\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002%\u0002&\r\u0002%\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002'\u0002\u0002'\u0000\u0002\u0002(\u0002)\r\u0002(\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u0002*\u0002+\r\u0002*\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u000e\n\u000e\u0000\u0004\ntxdl\r\u0002+\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\r\n\r\u0000\u0004\nascr\u0002\u0002)\u0000\u0002\u0002,\f\r\u0002,\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0002-\u000e\u0002-\u0000\u0001\u0002.\u0011\u0002.\u0000\u0002\u0000\/\u0002\f\u0000\u0000\r\u0002&\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0002\/\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u00021\u0000\u0002\u00022\n\r\u00022\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u00023\u00024\r\u00023\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\t\n\t\u0000\u0004\ntxdl\r\u00024\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\b\n\b\u0000\u0004\nascr\u0002\n\u0000\u0000\u0002\u0002$\u0000\u0002\u00025\u00026\r\u00025\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\u0007\u00027\u00028\u0001\u0007\u0000\u0000\f\u00027\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u00028\u0000\u0001\u00029\u0011\u00029\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u00026\u0000\u0002\u0002:\u0002;\r\u0002:\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u0002<\u0002=\r\u0002<\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u0002>\u0002?\r\u0002>\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002@\u0006\u0005\r\u0002@\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002A\u0002B\r\u0002A\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002C\u0002D\r\u0002C\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0004\u0002E\u0002F\n\u0004\u0000\u0004\ncitm\r\u0002E\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0003\u0003\u0003\u0000\u0001\r\u0002F\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0002\u0003\u0002\r\u0002D\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002G\u0001\u0000\r\u0002G\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002H\u0002I\r\u0002H\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npsxp\r\u0002I\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002J\r\u0002J\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002K\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002K\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r\u0002B\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\r\u0002?\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002L\u000e\u0002L\u0000\u0001\u0002M\u0011\u0002M\u0000\u0002\u0000\/\r\u0002=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0002;\u0000\u0002\u0002N\u0002O\r\u0002N\u0000\u0003l\u0000\u0001\u00000\u00000\u0002P\u0002Q\u0001\u0000\u0000\f\u0002P\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002Q\u0000\u0001\u0002R\u0011\u0002R\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002O\u0000\u0002\u0002S\u0002T\r\u0002S\u0000\u0002r\u0000\u0000\u00000\u00005\u0002U\u0002V\r\u0002U\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002V\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002W\u0002X\r\u0002W\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002X\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002T\u0000\u0002\u0002Y\r\u0002Y\u0000\u0001L\u0000\u0000\u00006\u00008\u0002Z\r\u0002Z\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0015\u0000\u0002\u0002[\u0002\\\r\u0002[\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\\\u0000\u0002\u0002]\u0002^\r\u0002]\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002_\u0002`\r\u0002_\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002a\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002a\u0000\u0002\u0002b\r\u0002b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002`\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002c\u0002\u0002c\u0000\u0002\u0002d\u0002e\r\u0002d\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002f\u0002g\u0001\u0000\u0000\f\u0002f\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002g\u0000\u0001\u0002h\u0011\u0002h\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002e\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002k\u0002l\u0001\u0000\u0000\f\u0002k\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002l\u0000\u0001\u0002m\u0011\u0002m\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002j\u0000\u0002\u0002n\u0002o\r\u0002n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002p\u0002q\r\u0002p\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002r\u0002s\r\u0002r\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002s\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002t\r\u0002t\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002u\u0002v\r\u0002u\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002v\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002o\u0000\u0002\u0002w\u0002x\r\u0002w\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002y\u0002z\u0001\u0000\u0000\f\u0002y\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002z\u0000\u0001\u0002{\u0011\u0002{\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002x\u0000\u0002\u0002|\u0002}\r\u0002|\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002~\u0002\u0001\u0000\u0000\f\u0002~\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002}\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002^\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0002\n\u0000\u0004\nditm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002\u000f\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0003\u0000\r\u0002\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0003\u0001\u0003\u0002\r\u0003\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0003\u0003\u0000\u0002\u0003\u0004\r\u0003\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\u0005\u0002\u0003\u0005\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\b\u0003\t\u0001\u0000\u0000\f\u0003\b\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\t\u0000\u0001\u0003\n\u0011\u0003\n\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u0007\u0000\u0002\u0003\u000b\u0003\f\r\u0003\u000b\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\r\u0003\u000e\r\u0003\r\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\u000f\u0003\u0010\r\u0003\u000f\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\u0011\u0003\u0012\r\u0003\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\u0010\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u0013\u0003\u0014\r\u0003\u0013\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u0015\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u0015\u0000\u0002\u0003\u0016\r\u0003\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0014\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\u000e\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u0017\r\u0003\u0017\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\f\u0000\u0002\u0003\u0018\r\u0003\u0018\u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003\u0019\u0003\u001a\u0003\u001b\r\u0003\u0019\u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003\u001c\u0002\u0003\u001c\u0000\u0002\u0003\u001d\u0003\u001e\r\u0003\u001d\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003\u001f\u0003 \r\u0003\u001f\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003!\u0003\"\r\u0003!\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003#\u0003$\r\u0003#\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcls\r\u0003$\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\"\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nalis\r\u0003 \u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003%\r\u0003%\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u001e\u0000\u0002\u0003&\r\u0003&\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003'\u0003(\u0003)\u0003*\r\u0003'\u0000\u0002E\u0000\u0000\u0000*\u0000-\u0003+\u0003,\r\u0003+\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003,\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003-\u000e\u0003-\u0000\u0001\u0003.\u0011\u0003.\u0000\u0002\u0000:\r\u0003(\u0000\u0001k\u0000\u0000\u00000\u00008\u0003\/\u0002\u0003\/\u0000\u0002\u00030\u00031\r\u00030\u0000\u00024\u0000\u0000\u00000\u00005~\u00032\n~\u0000\u0004\nalis\r\u00032\u0000\u0001o\u0000\u0000\u00002\u00003}\u000b}\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00031\u0000\u0002\u00033|\r\u00033\u0000\u0001L\u0000\u0000\u00006\u00008\u00034\r\u00034\u0000\u0001m\u0000\u0000\u00006\u00007{\n{\u0000\b\u000bboovtrue\u0002|\u0000\u0000\u0002\u0003)\u0000\u0002\u00035\u00036\r\u00035\u0000\u0002E\u0000\u0000\u0000;\u0000>\u00037\u00038\r\u00037\u0000\u0001o\u0000\u0000\u0000;\u0000<z\u000bz\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00038\u0000\u0001m\u0000\u0000\u0000<\u0000=\u00039\u000e\u00039\u0000\u0001\u0003:\u0011\u0003:\u0000\u0002\u0000\/\u0002\u00036\u0000\u0002\u0003;y\r\u0003;\u0000\u0001k\u0000\u0000\u0000A\u0000J\u0003<\u0002\u0003<\u0000\u0002\u0003=\u0003>\r\u0003=\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003?\u0003@\r\u0003?\u0000\u00024\u0000\u0000\u0000A\u0000Ex\u0003A\nx\u0000\u0004\npsxf\r\u0003A\u0000\u0001o\u0000\u0000\u0000C\u0000Dw\u000bw\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003@\u0000\u0001m\u0000\u0000\u0000E\u0000Fv\nv\u0000\u0004\nalis\u0002\u0003>\u0000\u0002\u0003Bu\r\u0003B\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003C\r\u0003C\u0000\u0001m\u0000\u0000\u0000H\u0000It\nt\u0000\b\u000bboovtrue\u0002u\u0000\u0000\u0002y\u0000\u0000\r\u0003*\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003D\r\u0003D\u0000\u0001m\u0000\u0000\u0000M\u0000Ns\ns\u0000\b\u000bboovfals\u0002\u0000\u0000\r\u0003\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000r\u0003Eq\nr\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002q\u0000\u0000\r\u0003\u001b\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003F\r\u0003F\u0000\u0001m\u0000\u0000\u0000W\u0000Xo\no\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0003G\u0003H\r\u0003G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0003H\u0000\u0002\u0003I\u0003J\r\u0003I\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003K\u0003L\r\u0003K\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000k\u0003Mj\u000bk\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003M\u0000\u0002\u0003Ni\r\u0003N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002i\u0000\u0000\u0002j\u0000\u0000\r\u0003L\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003O\u0002\u0003O\u0000\u0002\u0003P\u0003Q\r\u0003P\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000g\u0003R\u0003S\u0001g\u0000\u0000\f\u0003R\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003S\u0000\u0001\u0003T\u0011\u0003T\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003Q\u0000\u0002\u0003U\u0003V\r\u0003U\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000f\u0003W\u0003X\u0001f\u0000\u0000\f\u0003W\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003X\u0000\u0001\u0003Y\u0011\u0003Y\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003V\u0000\u0002\u0003Z\u0003[\r\u0003Z\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003\\\u0003]ed\r\u0003\\\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003^\u0003_\r\u0003^\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003`\u0002\u0003`\u0000\u0002\u0003a\u0003b\r\u0003a\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001c\nc\u0000\b\u000bboovtrue\u0002\u0003b\u0000\u0002\u0003cb\r\u0003c\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002a\na\u0000\b\u000bboovfals\u0002b\u0000\u0000\r\u0003_\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005`\u000b`\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003]\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003d\r\u0003d\u0000\u0001m\u0000\u0000\u0000\t\u0000\n_\n_\u0000\b\u000bboovfals\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u0003[\u0000\u0002\u0003e\u0003f\r\u0003e\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010^\u0003g\u0003h\u0001^\u0000\u0000\f\u0003g\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003h\u0000\u0001\u0003i\u0011\u0003i\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003f\u0000\u0002\u0003j\u0003k\r\u0003j\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003l\u0003m]\\\r\u0003l\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003n\u0003o\r\u0003n\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011[\u000b[\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003o\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012Z\nZ\u0000\u0004\nmsng\r\u0003m\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003p\r\u0003p\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017Y\nY\u0000\b\u000bboovtrue\u0002]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0003k\u0000\u0002\u0003q\u0003r\r\u0003q\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dX\u0003s\u0003t\u0001X\u0000\u0000\f\u0003s\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003t\u0000\u0001\u0003u\u0011\u0003u\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003r\u0000\u0002\u0003vW\r\u0003v\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003w\r\u0003w\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003x\u0003y\r\u0003x\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003z\u0003{\r\u0003z\u0000\u00011\u0000\u0000\u0000#\u0000%V\nV\u0000\u0004\nleng\r\u0003{\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003|UT\r\u0003|\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003}\u0003~\r\u0003}\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#S\u0003R\u000bS\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003Q\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fP\u000bP\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002Q\u0000\u0000\u0002R\u0000\u0000\r\u0003~\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001U\u0000\u0000\u0001T\u0000\u0000\r\u0003y\u0000\u0001m\u0000\u0000\u0000%\u0000&O\u0003O\u0000\u0000\u0002W\u0000\u0000\u0002\u0003J\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0003\u0000\u0002\u0003K\r\u0003\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000J\u0003I\u000bJ\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003H\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\b0\u0000\u0004_str\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000F\u0003\u0003\u0001F\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003ED\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003C\nC\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001B\u000bB\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004A\nA\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b@\n@\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t?\u000b?\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f>\n>\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013=\u000b=\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014<\n<\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b;\u000b;\u0000\b0\u0000\u0004_str\u0000\u0000\u0002E\u0000\u0000\u0001D\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u0003:9\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"8\u000b8\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(7\u000b7\u0000\b0\u0000\u0004_str\u0000\u0000\u0002:\u0000\u0000\u00019\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D6\u0003\u0003\n6\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@5\u00035\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C4\u00034\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:3\u000b3\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E2\n2\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000\u0003\/\n0\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\/\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003-\u000b-\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n,\u0003\u0003\n,\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j+\u0003+\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m*\u0003*\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d)\u000b)\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o(\n(\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&%$\n&\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001%\u0000\u0000\u0002$\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]#\u000b#\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\"\r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000!\u000b!\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\"\u0000\u0000\u0002K\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0011 \u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001 \u0000\u0000\u0010\u0003\u0000\u000f\u001f\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u000b\u001f\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u001e\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u001d\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u001c\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u001b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u001a\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u0019\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u0018\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u0017\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\u0016\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\u0015\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0014\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0013\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\u0012\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\u0011\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u0010\u0000D\u000f\u000e\u0003\u0003\r\u000b\u0010\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u000f\u0000\u0000\u0002\u000e\u0000\u0000\u0010\u0003\u0000\u0001\f\u000b\f\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\u000b\n\u0000g\t\u0000t\b\u000b\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\n\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\t\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\b\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\r\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0007\u0000\u0006\u0005\u0003\u0003\u0004\u000b\u0007\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0005\u0000\u0000\u0010\u0003\u0000\u0006\u0003\u0002\u0001\u0000\u000b\u0003\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0002\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0001\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0000\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u001e\u0001#\u00017\u0001>\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0004\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001U\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001i\u0001x\u0001z\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0002\u0002\u0006\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0017\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u0002-\u0002L\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002`\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0003\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0002\u0003\u0004\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0001\u0003\u0000\u0001\u000e\u0004\u0001\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0000\u0000\n\u0003-\u00039\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003L\u0004\u0002\u0004\u0003\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0004\u0003\u0000\u0001\u000e\u0004\u0004\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0002\u0000\u0001\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0004\u0003\u0000\u0003\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\n\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0004\u0005\u0004\u0006\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0007\u0003\u0000\u0001\u000e\u0004\u0007\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0005\u0000\u0002~\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u000b~\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0006\u0000\u000f}|{zy\u0003\u0003xwv\u0003\u0003ut\u0003\n}\u0000\u0004\npcls\n|\u0000\u0004\nctxt\n{\u0000\u0004\nTEXT\nz\u0000\u0004\nbool\ny\u0000\u0004\nmsng\nx\u0000\u0004\ncobj\u000bw\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002v\u0000\u0000\u0003u\u0001t\u0000\u0000\u0011\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"110e250505efabd75064a8b8fd0d8cc2f430cbf1","subject":"Revert \":wrench: notifyme script: use HyperTerm instead of iTerm\"","message":"Revert \":wrench: notifyme script: use HyperTerm instead of iTerm\"\n\nThis reverts commit 17cba7446fc7fffc5bb5d09646fc11f3a5a68bdc.\n","repos":"mistadikay\/dotfiles","old_file":"applescript\/notifyme.applescript","new_file":"applescript\/notifyme.applescript","new_contents":"#!\/usr\/bin\/env osascript\n\n-- see http:\/\/frantic.im\/notify-on-completion\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n if frontApp is not \"iTerm2\" then\n set notifTitle to item 1 of argv\n set notifBody to \"succeded\"\n set errorCode to item 2 of argv\n if errorCode is not \"0\"\n set notifBody to \"failed with error code \" & errorCode\n end if\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- see http:\/\/frantic.im\/notify-on-completion\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n if frontApp is not \"HyperTerm\" then\n set notifTitle to item 1 of argv\n set notifBody to \"succeded\"\n set errorCode to item 2 of argv\n if errorCode is not \"0\"\n set notifBody to \"failed with error code \" & errorCode\n end if\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"4e8790ed288d5b65fe3c32341f6bc79b6dde14ad","subject":"\u267b\ufe0f Make minor improvements","message":"\u267b\ufe0f Make minor improvements\n","repos":"cescoferraro\/dotfiles,cescoferraro\/dotfiles,alrra\/dotfiles,cescoferraro\/dotfiles","old_file":"os\/os_x\/preferences\/set_custom_terminal_theme.scpt","new_file":"os\/os_x\/preferences\/set_custom_terminal_theme.scpt","new_contents":"tell application \"Terminal\"\n\n local allOpenedWindows\n local initialOpenedWindows\n local windowID\n\n set themeFileName to \"solarized_dark.terminal\"\n set themeName to \"Solarized Dark\"\n\n (* Store the IDs of all the open terminal windows *)\n set initialOpenedWindows to id of every window\n\n (* Open the custom theme so that it gets added to the list\n of available terminal themes (note: this will open two\n additional terminal windows) *)\n do shell script \"open \" & themeFileName\n\n (* Wait a little bit to ensure that the custom theme is added *)\n delay 1\n\n (* Set the custom theme as the default terminal theme *)\n set default settings to settings set themeName\n\n (* Get the IDs of all the currently opened terminal windows *)\n set allOpenedWindows to id of every window\n\n repeat with windowID in allOpenedWindows\n\n (* Close the additional windows that were opened in order\n to add the custom theme to the list of terminal themes *)\n if initialOpenedWindows does not contain windowID then\n close (every window whose id is windowID)\n\n (* Change the theme for the initial opened terminal windows\n to remove the need to close them in order for the custom\n theme to be applied *)\n else\n set current settings of tabs of (every window whose id is windowID) to settings set themeName\n end if\n\n end repeat\n\nend tell\n","old_contents":"tell application \"Terminal\"\n\n local allOpenedWindows\n local initialOpenedWindows\n local windowID\n\n set themeFileName to \"solarized_dark.terminal\"\n set themeName to \"Solarized Dark\"\n\n (* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - *)\n\n (* Store the IDs of all the open terminal windows *)\n set initialOpenedWindows to id of every window\n\n (* Open the custom theme so that it gets added to the list\n of available terminal themes (note: this will open two\n additional terminal windows) *)\n do shell script \"open \" & themeFileName\n\n (* Wait a little bit to ensure that the custom theme is added *)\n delay 1\n\n (* Set the custom theme as the default terminal theme *)\n set default settings to settings set themeName\n\n (* Get the IDs of all the currently opened terminal windows *)\n set allOpenedWindows to id of every window\n\n repeat with windowID in allOpenedWindows\n\n (* Close the additional windows that were opened in order\n to add the custom theme to the list of terminal themes *)\n if initialOpenedWindows does not contain windowID then\n close (every window whose id is windowID)\n\n (* Change the theme for the initial opened terminal windows\n to remove the need to close them in order for the custom\n theme to be applied *)\n else\n set current settings of tabs of (every window whose id is windowID) to settings set themeName\n end if\n\n end repeat\n\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"34f547d20b56890a0779f048a2648e0e21717f0d","subject":"Refer to playlist contents as songs, not tracks","message":"Refer to playlist contents as songs, not tracks\n\nThis is only a UI presentation change, not a behavior change.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"filters\/playplaylist.applescript","new_file":"filters\/playplaylist.applescript","new_contents":"-- playplaylist filter --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"Music\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\ttry\n\n\t\t\t\tset theSong to first track in thePlaylist\n\t\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"song\", \"songs\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\t\t-- Play Song does not support queueing Apple Music playlists\n\t\t\t\t-- because they can contain songs which the user has not added\n\t\t\t\t-- to their library (and such non-library songs cannot be\n\t\t\t\t-- programmatically added to a non-Apple Music playlist);\n\t\t\t\t-- therefore, we need to separate Apple Music playlists from\n\t\t\t\t-- other types of playlists\n\t\t\t\tif class of thePlaylist is subscription playlist then\n\t\t\t\t\tset prefixedPlaylistId to \"subscription_playlist-\" & playlistId\n\t\t\t\telse\n\t\t\t\t\tset prefixedPlaylistId to \"playlist-\" & playlistId\n\t\t\t\tend if\n\t\t\t\taddResult({uid:prefixedPlaylistId as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\n\t\t\ton error number -1728\n\t\t\tend try\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\non run query\n\tset config to loadConfig()\n\tgetPlaylistResultListFeedback(query as text)\nend run\n","old_contents":"-- playplaylist filter --\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non getPlaylistResultListFeedback(query)\n\n\tglobal config\n\n\tset query to trimWhitespace(query) of config\n\n\ttell application \"Music\"\n\n\t\t-- retrieve list of playlists matching query (ordered by relevance)\n\t\tset thePlaylists to (get playlists whose name starts with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains (space & query) and name does not start with query and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists < config's resultLimit then\n\n\t\t\tset thePlaylists to thePlaylists & (get playlists whose name contains query and name does not start with query and name does not contain (space & query) and name is not config's workflowPlaylistName and special kind is none and size is not 0)\n\n\t\tend if\n\n\t\tif length of thePlaylists > config's resultLimit then\n\n\t\t\tset thePlaylists to items 1 thru (config's resultLimit) of thePlaylists\n\n\t\tend if\n\n\t\trepeat with thePlaylist in thePlaylists\n\n\t\t\tset playlistName to name of thePlaylist\n\t\t\tset playlistId to id of thePlaylist\n\t\t\tset songCount to number of tracks in thePlaylist\n\t\t\tset playlistDuration to time of thePlaylist\n\n\t\t\ttry\n\n\t\t\t\tset theSong to first track in thePlaylist\n\t\t\t\tset songArtworkPath to getSongArtworkPath(theSong) of config\n\n\t\t\t\tset itemSubtitle to (quantifyNumber(songCount, \"track\", \"tracks\") of config) & \", \" & playlistDuration & \" in length\"\n\n\t\t\t\t-- Play Song does not support queueing Apple Music playlists\n\t\t\t\t-- because they can contain songs which the user has not added\n\t\t\t\t-- to their library (and such non-library songs cannot be\n\t\t\t\t-- programmatically added to a non-Apple Music playlist);\n\t\t\t\t-- therefore, we need to separate Apple Music playlists from\n\t\t\t\t-- other types of playlists\n\t\t\t\tif class of thePlaylist is subscription playlist then\n\t\t\t\t\tset prefixedPlaylistId to \"subscription_playlist-\" & playlistId\n\t\t\t\telse\n\t\t\t\t\tset prefixedPlaylistId to \"playlist-\" & playlistId\n\t\t\t\tend if\n\t\t\t\taddResult({uid:prefixedPlaylistId as text, valid:\"yes\", title:playlistName, subtitle:itemSubtitle, icon:songArtworkPath}) of config\n\n\t\t\ton error number -1728\n\t\t\tend try\n\n\t\tend repeat\n\n\t\tif config's resultListIsEmpty() then\n\n\t\t\taddNoResultsItem(query, \"playlist\") of config\n\n\t\tend if\n\n\tend tell\n\n\treturn getResultListFeedback() of config\n\nend getPlaylistResultListFeedback\n\non run query\n\tset config to loadConfig()\n\tgetPlaylistResultListFeedback(query as text)\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"22cdcdf6f83fd90f85d2b89a94cce868069758d0","subject":"fixed typo in error in displayFileMakerDatabase","message":"fixed typo in error in displayFileMakerDatabase\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/displayFileMakerDatabase.applescript","new_file":"library\/fmGUI_Database\/displayFileMakerDatabase.applescript","new_contents":"-- displayFileMakerDatabase({dbName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.6.4 - 2020-05-20 ( dshockley ): fixed typo in error message. \n\t1.6.3 - 2019-02-27 ( eshagdar ): throw up a dialog if there is a privSet violation.\n\t1.6.2 - 2018-12-07 ( eshagdar ): don't both using case, terms, or bundle ID - just talk to the application directly.\n\t1.6.1 - 2018-10-16 ( eshagdar ): remove remaining FMA references.\n\t1.6 - 2018-09-20 ( eshagdar ): FileMaker 17 has only version so talk to it by name.\n\t1.5.3 - 2018-01-18 ( eshagdar ): capture privSet violation error\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tcoerceToString\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerDatabase_TEST\"\n\non run\n\tdisplayFileMakerDatabase({dbName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerDatabase(prefs)\n\t-- version 1.6.3\n\t\n\ttry\n\t\tset defaultPrefs to {dbName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset dbName to dbName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\tdelay 0.25\n\t\trepeat waitCycleMax times\n\t\t\tset docNameList to null\n\t\t\ttry\n\t\t\t\tusing terms from application \"FileMaker Pro Advanced\"\n\t\t\t\t\ttell application ID \"com.filemaker.client.pro12\"\n\t\t\t\t\t\tset docNameList to name of every document\n\t\t\t\t\tend tell\n\t\t\t\tend using terms from\n\t\t\t\t\n\t\t\t\tif docNameList is not null then exit repeat\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -10011 then\n\t\t\t\t\t-- just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \n\t\t\t\telse if errNum is -10004 then\n\t\t\t\t\tactivate\n\t\t\t\t\tdisplay dialog \"unable to displayFileMakerDatabase because of privSet violation in some FM file errNum: \" & errNum buttons \"OK\" default button \"OK\"\n\t\t\t\t\terror \"privSet violation in some FM file...\" & errNum number errNum\n\t\t\t\telse\n\t\t\t\t\terror \"Error getting list of databases already open - \" & errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tdelay waitCycleDelaySeconds\n\t\tend repeat\n\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase docNameList: \" & my coerceToString(docNameList))\n\t\t\n\t\t\n\t\t--loop through available document and bring the specified to the front\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t-- get the name WITHOUT the file extension: \n\t\t\t(reverse of characters of oneDocName) as string\n\t\t\ttext ((offset of \".\" in result) + 1) thru -1 of result\n\t\t\tset oneDocName to (reverse of characters of result) as string\n\t\t\t\n\t\t\t-- apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\n\t\t\tif oneDocName is equal to (dbName as string) then\n\t\t\t\ttell application \"FileMaker Pro Advanced\"\n\t\t\t\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase about to show oneDocName: \" & oneDocName)\n\t\t\t\t\tshow document oneDocName\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase: \" & oneDocName)\n\t\t\t\tend tell\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerDatabase - \" & errMsg number errNum\n\tend try\nend displayFileMakerDatabase\n\n--------------------\n-- END OF CODE\n--------------------\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","old_contents":"-- displayFileMakerDatabase({dbName:\"\", waitCycleDelaySeconds:\"\", waitSaveTotalSeconds:\"\"})\n-- Dan Shockley, NYHTC\n-- If open, then display first window this finds and return true, else return false.\n\n\n(*\nHISTORY:\n\t1.6.3 - 2019-02-27 ( eshagdar ): throw up a dialog if there is a privSet violation.\n\t1.6.2 - 2018-12-07 ( eshagdar ): don't both using case, terms, or bundle ID - just talk to the application directly.\n\t1.6.1 - 2018-10-16 ( eshagdar ): remove remaining FMA references.\n\t1.6 - 2018-09-20 ( eshagdar ): FileMaker 17 has only version so talk to it by name.\n\t1.5.3 - 2018-01-18 ( eshagdar ): capture privSet violation error\n\t1.5.2 - 2017-11-20 ( eshagdar ): disable logging\n\t1.5.1 - 2017-10-25 ( eshagdar ): updated defaultPrefs. updated helper handlers. added delay, more debugging messages. get list of document names instead of documents - we don't need to get the name later.\n\t1.5 - added a time-out loop for dealing with delay in being able to get list of databases. \n\t1.4 - added error-handling\n\t1.3 - \n\t1.2 - \n\t1.1 - \n\t1.0 - created\n\n\nREQUIRES:\n\tcoerceToString\n\tlogConsole\n*)\n\n\nproperty debugMode : true\nproperty ScriptName : \"displayFileMakerDatabase_TEST\"\n\non run\n\tdisplayFileMakerDatabase({dbName:\"a01_PERSON\"})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non displayFileMakerDatabase(prefs)\n\t-- version 1.6.3\n\t\n\ttry\n\t\tset defaultPrefs to {dbName:null, waitCycleDelaySeconds:5, waitSaveTotalSeconds:2 * minutes}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t--if debugMode then logConsole(ScriptName, \"displayFileMakerDatabase prefs: \" & coerceToString(prefs))\n\t\t\n\t\tset dbName to dbName of prefs\n\t\t\n\t\tset waitSaveTotalSeconds to waitSaveTotalSeconds of prefs\n\t\tset waitCycleDelaySeconds to waitCycleDelaySeconds of prefs\n\t\tset waitCycleMax to round (waitSaveTotalSeconds \/ waitCycleDelaySeconds) rounding down\n\t\t\n\t\t\n\t\t-- get name of all documents\n\t\tdelay 0.25\n\t\trepeat waitCycleMax times\n\t\t\tset docNameList to null\n\t\t\ttry\n\t\t\t\tusing terms from application \"FileMaker Pro Advanced\"\n\t\t\t\t\ttell application ID \"com.filemaker.client.pro12\"\n\t\t\t\t\t\tset docNameList to name of every document\n\t\t\t\t\tend tell\n\t\t\t\tend using terms from\n\t\t\t\t\n\t\t\t\tif docNameList is not null then exit repeat\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -10011 then\n\t\t\t\t\t-- just keep trying - this error can be caused when a database is opening and the open script takes a bit too long to finish, or something in the FM interface is slow to respond. \n\t\t\t\telse if errNum is -10004 then\n\t\t\t\t\tactivate\n\t\t\t\t\tdisplay dialog \"unable to displayFileMakerDatabase becuase of privSet violation in some FM file errNum: \" & errNum buttons \"OK\" default button \"OK\"\n\t\t\t\t\terror \"privSet violation in some FM file...\" & errNum number errNum\n\t\t\t\telse\n\t\t\t\t\terror \"Error getting list of databases already open - \" & errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tdelay waitCycleDelaySeconds\n\t\tend repeat\n\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase docNameList: \" & my coerceToString(docNameList))\n\t\t\n\t\t\n\t\t--loop through available document and bring the specified to the front\n\t\trepeat with oneDocName in docNameList\n\t\t\tset oneDocName to contents of oneDocName\n\t\t\t\n\t\t\t-- get the name WITHOUT the file extension: \n\t\t\t(reverse of characters of oneDocName) as string\n\t\t\ttext ((offset of \".\" in result) + 1) thru -1 of result\n\t\t\tset oneDocName to (reverse of characters of result) as string\n\t\t\t\n\t\t\t-- apparently these two TEXT variables have some difference (formatting?) even when they are identical STRINGS:\n\t\t\tif oneDocName is equal to (dbName as string) then\n\t\t\t\ttell application \"FileMaker Pro Advanced\"\n\t\t\t\t\t--if debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase about to show oneDocName: \" & oneDocName)\n\t\t\t\t\tshow document oneDocName\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"displayFileMakerDatabase: \" & oneDocName)\n\t\t\t\tend tell\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\t\n\t\treturn false\n\ton error errMsg number errNum\n\t\terror \"unable to displayFileMakerDatabase - \" & errMsg number errNum\n\tend try\nend displayFileMakerDatabase\n\n--------------------\n-- END OF CODE\n--------------------\n\non logConsole(processName, consoleMsg)\n\ttell application \"htcLib\" to logConsole(processName, consoleMsg)\nend logConsole\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9bf9e2721a674824ee97021a0e2888dd6f781304","subject":"extract model relative code into updateModel method","message":"extract model relative code into updateModel method","repos":"skywinder\/mogenerator,bgulanowski\/mogenerator,iv-mexx\/mogenerator,VladimirGoncharov\/mogenerator,Erin-Mounts\/mogenerator,hardikdevios\/mogenerator,otaran\/mogenerator,VladimirGoncharov\/mogenerator,mjasa\/mogenerator,willowtreeapps\/mattgenerator,bewebste\/mogenerator,bewebste\/mogenerator,seanm\/mogenerator,fizker\/mogenerator,kostiakoval\/mogenerator,iv-mexx\/mogenerator,casademora\/mogenerator,bgulanowski\/mogenerator,ef-ctx\/mogenerator,bgulanowski\/mogenerator,adozenlines\/mogenerator,skywinder\/mogenerator,iv-mexx\/mogenerator,fizker\/mogenerator,casademora\/mogenerator,otaran\/mogenerator,rentzsch\/mogenerator,bewebste\/mogenerator,ef-ctx\/mogenerator,willowtreeapps\/mattgenerator,seanm\/mogenerator,VladimirGoncharov\/mogenerator,kostiakoval\/mogenerator,untitledstartup\/mogenerator,ef-ctx\/mogenerator,hardikdevios\/mogenerator,skywinder\/mogenerator,anton-matosov\/mogenerator,willowtreeapps\/mattgenerator,anton-matosov\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,pronebird\/mogenerator,otaran\/mogenerator,pronebird\/mogenerator,bewebste\/mogenerator,untitledstartup\/mogenerator,iv-mexx\/mogenerator,fizker\/mogenerator,Erin-Mounts\/mogenerator,seanm\/mogenerator,Erin-Mounts\/mogenerator,rentzsch\/mogenerator,untitledstartup\/mogenerator,adozenlines\/mogenerator,pronebird\/mogenerator,anton-matosov\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,mjasa\/mogenerator,casademora\/mogenerator,mjasa\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\tmy updateModel(_projet, modelItr, theComments)\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","old_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"300a1cfa942d93d9c1e4f4d98576e7c2a5d15049","subject":"Long timeout","message":"Long timeout\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/start_install.scpt","new_file":"script\/start_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 8.0\n\nmy doWithTimeout(\"click UI Element \\\"Install\\\" of window 1 of application process \\\"Install Command Line Developer Toold\\\"\", timeoutSeconds)\nmy doWithTimeout(\"click UI Element \\\"Agree\\\" of window 1 of application process \\\"Install Command Line Developer Toold\\\"\", timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\ndelay 0.4\ntell application \"System Events\"\n set installer to application process \"Install Command Line Developer Tools\"\n click UI Element \"Install\" of window 1 of installer\n click UI Element \"Agree\" of window 1 of installer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1678286f0e8d9c63231aca08a92b906446d75fe8","subject":"Refactor utility functions into single class","message":"Refactor utility functions into single class\n\nJust for code organization.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\n\tmy Util's debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy Util's debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy Util's debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy Util's debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\n\tif (count of argv) = 0 then return\n\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to my Util's split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\n\t\ton run\n\t\t\tmy Util's debug_log(1, \"---> running \" & my class & \"...\")\n\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\n\t\t\t(* == Settings == *)\n\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\n\t\t\t(* == Data Retrieval == *)\n\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset app_factory to make_factory()\n\t\t\ttell app_factory\n\t\t\t\t-- Register supported web browsers\n\t\t\t\tregister_product(make_safari_browser())\n\t\t\t\tregister_product(make_chrome_browser())\n\t\t\t\tregister_product(make_firefox_browser())\n\t\t\t\tregister_product(make_webkit_browser())\n\t\t\tend tell\n\n\t\t\tset browser_model to app_factory's make_browser(my Util's get_front_app_name())\n\t\t\tbrowser_model's fetch_page_info()\n\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\n\t\t\t\tmy Util's debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy Util's debug_log(1, \"[debug] \" & get_page_title())\n\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\n\t\t\t-- Done with browser. Does this free up memory\/make any difference?\n\t\t\tset {app_factory, browser_model} to {missing value, missing value}\n\n\t\t\t(* == Controllers == *)\n\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\n\t\t\tmy Util's debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t(* == UI == *)\n\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy Util's debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\n\t\t\t\tmy Util's debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\n\t\t\t(* == Processing == *)\n\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\n\tmy Util's debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\n\t\tproperty _log_header_sep : my Util's multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\n\t\t(* == Setters == *)\n\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy Util's debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\n\t\t(* == Getters == *)\n\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\n\t\t(* == Actions == *)\n\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\n\t\t\tset log_file_posix to my Util's expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to my Util's get_mac_path(log_file_posix)\n\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\n\t\t\t_validate_fields()\n\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tmy Util's create_directory(first item of my Util's split_path_into_dir_and_file(log_file_posix))\n\n\t\t\tif _should_create_file then _create_log_file()\n\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\n\t\ton parse_log() --> void\n\t\t\tmy Util's debug_log(2, my class & \".parse_log()...\")\n\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\n\t\t\tset log_file_posix to my Util's expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to my Util's get_mac_path(log_file_posix)\n\n\t\t\tmy Util's debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\n\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\n\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\n\t\t\tmy Util's debug_log(1, get_root_categories())\n\t\t\tmy Util's debug_log(2, get_all_categories())\n\n\t\t\tmy Util's debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\n\t\ton update_category_state()\n\t\t\tmy Util's debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my Util's split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy Util's debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\n\t\t\tset log_file_posix to my Util's expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to my Util's get_mac_path(log_file_posix)\n\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif my Util's trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my Util's multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my Util's multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to my Util's join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn my Util's join_list({y, m, d}, \"-\") & space & my Util's join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of my Util's convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to my Util's split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn my Util's join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\n\treturn this\nend make_page_log\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy Util's debug_log(1, my class & \".open_file()\")\n\n\t\tset posix_file_path to my Util's expand_home_path(posix_file_path)\n\t\tset mac_file_path to my Util's get_mac_path(posix_file_path)\n\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Factory Pattern -- -- --\n\non make_factory() --> Factory\n\tscript\n\t\tproperty class : \"WebBrowserFactory\"\n\t\tproperty _registered_products : {} -- array (concrete products)\n\n\t\ton register_product(this_product) --> void\n\t\t\tmy Util's debug_log(1, \"---> \" & my class & \".register_product(): registering \" & this_product's to_string())\n\t\t\tset end of _registered_products to this_product\n\t\tend register_product\n\n\t\ton make_browser(app_name) --> WebBrowser\n\t\t\tmy Util's debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tif app_name is this_product's to_string() then\n\t\t\t\t\tmy Util's debug_log(1, \"---> using \" & this_product's class)\n\t\t\t\t\treturn this_product\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t_handle_unsupported(app_name)\n\t\tend make_browser\n\n\t\ton _handle_unsupported(app_name) --> void -- PRIVATE\n\t\t\tset err_msg to \"The application \" & app_name & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & _get_app_names()\n\t\t\tset err_num to -2700\n\t\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\t\tset m to err_msg\n\t\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend _handle_unsupported\n\n\t\ton _get_app_names() --> string -- PRIVATE\n\t\t\tset app_names to {}\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tset end of app_names to this_product's to_string()\n\t\t\tend repeat\n\t\t\t--return app_names --> array\n\t\t\tmy Util's join_list(app_names, \", \") --> string\n\t\tend _get_app_names\n\tend script\nend make_factory\n\non make_web_browser() --> abstract product\n\tscript\n\t\tproperty class : \"WebBrowser\"\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to my Util's convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser() --> concrete product\n\tscript\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Safari\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_safari_browser\n\non make_webkit_browser() --> concrete product\n\tscript\n\t\tproperty class : \"WebKitBrowser\"\n\t\tproperty parent : make_safari_browser() -- extends SafariBrowser\n\t\tproperty short_name : \"WebKit\"\n\tend script\nend make_webkit_browser\n\non make_chrome_browser() --> concrete product\n\tscript\n\t\tproperty class : \"ChromeBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Chrome\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_chrome_browser\n\non make_firefox_browser() --> concrete product\n\tscript\n\t\tproperty class : \"FirefoxBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Firefox\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tmy Util's gui_scripting_status() -- Firefox requires GUI scripting\n\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard -- be nice\n\t\t\tend try\n\t\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\n\t\t\ttry\n\t\t\t\tset this_url to the clipboard\n\t\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tset the clipboard to old_clipboard\n\t\t\t\tend try\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_firefox_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\n\t\t(* == Plist File Methods (delegate) == *)\n\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\n\t\ton init()\n\t\t\tcontinue init()\n\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\n\t\t(* == State Methods == *)\n\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\n\t\t(* == Utility Methods == *)\n\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my Util's shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy Util's debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy Util's debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy Util's debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy Util's debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy Util's debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my Util's split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy Util's create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy Util's debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy Util's debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\n\t\ton run\n\t\t\tmy Util's debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy Util's debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy Util's debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\n\t\ton disable_warning() --> void\n\t\t\tmy Util's debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy Util's debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy Util's debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton show_license() --> void\n\t\t\tmy Util's debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\n\t\ton go_to_website() --> void\n\t\t\tmy Util's debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy Util's debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy Util's debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\n\t\ton run\n\t\t\tmy Util's debug_log(1, return & \"---> running \" & my class & \"...\")\n\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy Util's debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy Util's debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy Util's debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy Util's debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy Util's debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy Util's debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\n\t\t\tmy Util's debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\n\t\t\t\tmy Util's debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy Util's debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\n\t\ton run\n\t\t\tmy Util's debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\n\t\ton run\n\t\t\tmy Util's debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy Util's debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\n\t\ton reset_warning() --> void\n\t\t\tmy Util's debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\n\tmy Util's debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\n\t\t(* == Unicode Characters for Views == *)\n\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\n\t\t(* == View Components == *)\n\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\n\t\t(* == Methods == *)\n\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to my Util's multiply_text(tab, 2) & my Util's multiply_text(space, 2)\n\t\t\tset right_pad to my Util's multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : my Util's multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : my Util's multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : my Util's multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\n\t\tproperty _chosen_category : missing value --> string\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : my Util's multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of my Util's split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\n\t\ton register_observer(o) -- void\n\t\t\tmy Util's debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy Util's debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy Util's debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy Util's debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy Util's debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy Util's debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy Util's debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy Util's debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy Util's debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy Util's debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy Util's debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\n\t\t(* == Additional methods == *)\n\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\tmy Util's debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy Util's debug_log(1, linefeed & this_data)\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\tmy Util's debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy Util's debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\n\t\t(* == PUBLIC == *)\n\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n\n(* ==== Miscellaneous Classes ==== *)\n\nscript Util -- Utility Functions\n\ton gui_scripting_status()\n\t\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\t\tlocal err_msg, err_num, msg, t, b\n\n\t\tset os_ver to system version of (system info)\n\n\t\tconsidering numeric strings -- version strings\n\t\t\tset is_before_mavericks to os_ver < \"10.9\"\n\t\tend considering\n\n\t\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t\t-- check to see if assistive devices is enabled\n\t\t\ttell application \"System Events\"\n\t\t\t\tset ui_enabled to UI elements enabled\n\t\t\tend tell\n\t\t\tif ui_enabled is false then\n\t\t\t\ttell application \"System Preferences\"\n\t\t\t\t\tactivate\n\t\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\t\tend tell\n\t\t\tend if\n\t\telse\n\t\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\t\tset frontmost to true\n\t\t\t\t\t\ttell window 1\n\t\t\t\t\t\t\tUI elements\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\t\tif err_num is -1719 then\n\t\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\t\tend if\n\t\t\t\t\terror number -128 --> User canceled\n\t\t\t\tend if\n\t\t\tend try\n\t\tend if\n\tend gui_scripting_status\n\n\ton get_front_app_name()\n\t\ttell application \"System Events\"\n\n\t\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t\t-- name since they can be used to launch the script\n\t\t\trepeat 10 times -- limit repetitions just in case\n\t\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\t\tset visible of frontmost_process to false\n\t\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\t\tdelay 0.2\n\t\t\t\t\tend repeat\n\t\t\t\telse\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\t\tend tell\n\t\treturn current_app\n\tend get_front_app_name\n\n\ton convert_to_ascii(non_ascii_txt)\n\t\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\n\t\tFrom 'man iconv_open':\n\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\t\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\t\tdo shell script s\n\tend convert_to_ascii\n\n\ton create_directory(posix_dir)\n\t\tset this_dir to expand_home_path(posix_dir)\n\t\ttry\n\t\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\t\tdo shell script s\n\t\ton error err_msg number err_num\n\t\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\t\treturn \"Fatal Error: Can't create directory\"\n\t\tend try\n\tend create_directory\n\n\ton split_path_into_dir_and_file(file_path)\n\t\tset path_parts to split_text(file_path, \"\/\")\n\t\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\t\tset file_name to path_parts's last item\n\t\treturn {dir_path, file_name}\n\tend split_path_into_dir_and_file\n\n\ton get_mac_path(posix_path)\n\t\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\t\tset posix_file to expand_home_path(posix_path)\n\t\treturn POSIX file posix_file as string\n\tend get_mac_path\n\n\t-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n\t-- but it might be slower because of the overhead of starting up a shell.\n\ton expand_home_path(posix_path) --> string\n\t\tlocal posix_path, posix_home, char_length\n\t\tif posix_path starts with \"~\/\" then\n\t\t\tset char_length to 3\n\t\telse if posix_path starts with \"$HOME\/\" then\n\t\t\tset char_length to 7\n\t\telse\n\t\t\treturn posix_path\n\t\tend if\n\t\tset posix_home to get_posix_home()\n\t\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\t\treturn posix_path\n\tend expand_home_path\n\n\ton shorten_home_path(posix_path)\n\t\tlocal posix_path, posix_home\n\t\tset posix_home to get_posix_home()\n\t\tif posix_path starts with posix_home then\n\t\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\t\tend if\n\t\treturn posix_path\n\tend shorten_home_path\n\n\ton get_posix_home()\n\t\treturn POSIX path of (path to home folder from user domain)\n\tend get_posix_home\n\n\ton multiply_text(str, n)\n\t\tif n < 1 or str = \"\" then return \"\"\n\t\tset lst to {}\n\t\trepeat n times\n\t\t\tset end of lst to str\n\t\tend repeat\n\t\treturn lst as string\n\tend multiply_text\n\n\ton split_text(txt, delim)\n\t\tset old_tids to AppleScript's text item delimiters\n\t\ttry\n\t\t\tset AppleScript's text item delimiters to (delim as string)\n\t\t\tset lst to every text item of (txt as string)\n\t\t\tset AppleScript's text item delimiters to old_tids\n\t\t\treturn lst\n\t\ton error err_msg number err_num\n\t\t\tset AppleScript's text item delimiters to old_tids\n\t\t\terror \"Can't split_text(): \" & err_msg number err_num\n\t\tend try\n\tend split_text\n\n\ton join_list(lst, delim)\n\t\tset old_tids to AppleScript's text item delimiters\n\t\ttry\n\t\t\tset AppleScript's text item delimiters to (delim as string)\n\t\t\tset txt to lst as string\n\t\t\tset AppleScript's text item delimiters to old_tids\n\t\t\treturn txt\n\t\ton error err_msg number err_num\n\t\t\tset AppleScript's text item delimiters to old_tids\n\t\t\terror \"Can't join_list(): \" & err_msg number err_num\n\t\tend try\n\tend join_list\n\n\ton trim_whitespace(str)\n\t\tset white_space to space & tab & return & linefeed\n\n\t\t-- trim start\n\t\ttry\n\t\t\tset str to str's items\n\t\t\t--log str\n\t\t\ttry\n\t\t\t\trepeat while str's first item is in white_space\n\t\t\t\t\tset str to rest of str\n\t\t\t\tend repeat\n\t\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\t\treturn \"\"\n\t\t\tend try\n\t\ton error err_msg number err_num\n\t\t\terror \"Can't trim start: \" & err_msg number err_num\n\t\tend try\n\n\t\t-- trim end\n\t\ttry\n\t\t\tset str to reverse of str's items\n\t\t\t--log str\n\t\t\ttry\n\t\t\t\trepeat while str's first item is in white_space\n\t\t\t\t\tset str to rest of str\n\t\t\t\tend repeat\n\t\t\t\treturn str's reverse as text\n\t\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\t\treturn \"\"\n\t\t\tend try\n\t\ton error err_msg number err_num\n\t\t\terror \"Can't trim end: \" & err_msg number err_num\n\t\tend try\n\tend trim_whitespace\n\n\ton debug_log(_level, _msg)\n\t\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\n\tend debug_log\nend script\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: @@RELEASE_DATE@@\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2016 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 20112016 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\nproperty __DEFAULT_LOGFILE__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run argv -- argv is for 'run script with parameters' or osascript cli arguments\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\tset __DEFAULT_LOGFILE__ to \n\t\tPOSIX path of (path to application support folder from user domain) \n\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\"\n\n\t-- Override any default script properties\n\tmodify_runtime_config(argv)\n\n\tmy debug_log(2, \"[debug] \" & name & \".__BUNDLE_ID__: \" & __BUNDLE_ID__)\n\tmy debug_log(2, \"[debug] \" & name & \".__PLIST_DIR__: \" & __PLIST_DIR__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEFAULT_LOGFILE__: \" & __DEFAULT_LOGFILE__)\n\tmy debug_log(2, \"[debug] \" & name & \".__DEBUG_LEVEL__: \" & __DEBUG_LEVEL__)\n\n\trun make_app_controller()\nend run\n\n(*\n * Modify Runtime Configuration\n *\n * Configuration settings stored in script properties can be modified on\n * start-up by passing in command arguments from `osascript`. The arguments\n * will need both a key and a value in the format \"key:value\". The keys are\n * then parsed to assign the right value to the right property. See the\n * handler's conditional statements for available keys (which need to be\n * hard-coded because of AppleScript limitations).\n *\n * @param argv Array of arguments in \"key:value\" format.\n * @return No return value. Modifies script properties.\n *)\non modify_runtime_config(argv) --> void\n\tlocal args, k, v, this_arg\n\n\tif (count of argv) = 0 then return\n\n\t-- Parse arguments into key\/value pairs\n\tset args to {}\n\trepeat with i from 1 to count argv\n\t\tset {k, v} to split_text(argv's item i, \":\")\n\t\tset end of args to {key:k, val:v}\n\tend repeat\n\n\t-- Modify script property values for matching keys\n\trepeat with this_arg in args\n\t\tif this_arg's key is \"BUNDLE_ID\" then\n\t\t\tset __BUNDLE_ID__ to this_arg's val\n\t\telse if this_arg's key is \"PLIST_DIR\" then\n\t\t\tset __PLIST_DIR__ to this_arg's val\n\t\telse if this_arg's key is \"DEFAULT_LOGFILE\" then\n\t\t\tset __DEFAULT_LOGFILE__ to this_arg's val\n\t\telse if this_arg's key is \"DEBUG_LEVEL\" then\n\t\t\tset __DEBUG_LEVEL__ to this_arg's val as integer\n\t\telse if this_arg's key is \"NULL_IO\" then\n\t\t\ttry -- true\/false, yes\/no\n\t\t\t\tset __NULL_IO__ to this_arg's val as boolean\n\t\t\ton error -- allow 1 or 0\n\t\t\t\tset __NULL_IO__ to this_arg's val as integer as boolean\n\t\t\tend try\n\t\tend if\n\tend repeat\nend modify_runtime_config\n\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\n\t\t\t--\n\t\t\t-- Create the shared navigation controller first, then\n\t\t\t-- a license controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\tset license_controller to make_license_controller(nav_controller)\n\n\t\t\t(* == Settings == *)\n\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\n\t\t\t-- Settings controller needs both models plus the nav\n\t\t\t-- and license controllers\n\t\t\tset settings_controller to make_settings_controller(nav_controller, settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\n\t\t\t(* == Data Retrieval == *)\n\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset app_factory to make_factory()\n\t\t\ttell app_factory\n\t\t\t\t-- Register supported web browsers\n\t\t\t\tregister_product(make_safari_browser())\n\t\t\t\tregister_product(make_chrome_browser())\n\t\t\t\tregister_product(make_firefox_browser())\n\t\t\t\tregister_product(make_webkit_browser())\n\t\t\tend tell\n\n\t\t\tset browser_model to app_factory's make_browser(get_front_app_name())\n\t\t\tbrowser_model's fetch_page_info()\n\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\n\t\t\t-- Done with browser. Does this free up memory\/make any difference?\n\t\t\tset {app_factory, browser_model} to {missing value, missing value}\n\n\t\t\t(* == Controllers == *)\n\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller(nav_controller)\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's set_root_controller(title_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t(* == UI == *)\n\n\t\t\t--\n\t\t\t-- This is the main UI\/View event loop. It will loop through the\n\t\t\t-- controller stack until the stack is empty (prompting the user\n\t\t\t-- for info) or until one of the controllers on the stack\n\t\t\t-- indicates that the loop should end.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller that has\n\t\t\t-- a reference to it so the loop will run as long as those\n\t\t\t-- controllers keep pushing other controllers onto the stack in\n\t\t\t-- response to user action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\tmy debug_log(1, return & \"---> \" & my class & \" is starting the nav controller loop...\")\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\t--\n\t\t\t\t-- Run the next (top) controller on the stack by getting a\n\t\t\t\t-- reference to it but leaving it on the stack. Each\n\t\t\t\t-- individual controller on the stack determines what\n\t\t\t\t-- controllers to push on or pop off the stack. Any controller\n\t\t\t\t-- on the stack can also clear the stack to end the loop thus\n\t\t\t\t-- allowing the program to proceed with any final processing\n\t\t\t\t-- to be done after user interaction and before the program\n\t\t\t\t-- ends.\n\t\t\t\t--\n\t\t\t\t-- If a controller should not be kept in the controller\n\t\t\t\t-- history (for instance, a settings controller that acts as a\n\t\t\t\t-- modal dialog with it's own internal controller loop for\n\t\t\t\t-- navigating settings views), then it should pop itself from\n\t\t\t\t-- the stack right after it starts executing.\n\t\t\t\t--\n\t\t\t\tset this_controller to nav_controller's peek()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class & \"; no post-processing.\")\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\n\t\t\t(* == Processing == *)\n\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Quickly Resizes Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\n\t\t(* == Setters == *)\n\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\n\t\t(* == Getters == *)\n\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\n\t\ton get_only_category() --> string\n\t\t\treturn _all_categories's last item's contents\n\t\tend get_only_category\n\n\t\ton get_only_sub_category() --> string\n\t\t\treturn get_sub_categories()'s last item's contents\n\t\tend get_only_sub_category\n\n\t\t(* == Actions == *)\n\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\n\t\t\t_validate_fields()\n\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\n\t\t\tif _should_create_file then _create_log_file()\n\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\n\t\t\t-- Does file exist? Is file empty?\n\t\t\t--\n\t\t\t_check_log_file(log_file_mac)\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\n\t\t-- Does file exist? Is file empty?\n\t\ton _check_log_file(log_file_mac) --> void (sets '_should_create_file' boolean)\n\t\t\ttry -- nonexistent files will error\n\t\t\t\tif (get eof file log_file_mac) is 0 then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is empty\")\n\t\t\t\telse\n\t\t\t\t\tset _should_create_file to false\n\t\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file is not empty\")\n\t\t\t\tend if\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _should_create_file to true\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): file doesn't exist\")\n\t\t\tend try\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): _should_create_file = \" & _should_create_file)\n\t\tend _check_log_file\n\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\n\treturn this\nend make_page_log\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Factory Pattern -- -- --\n\non make_factory() --> Factory\n\tscript\n\t\tproperty class : \"WebBrowserFactory\"\n\t\tproperty _registered_products : {} -- array (concrete products)\n\n\t\ton register_product(this_product) --> void\n\t\t\tmy debug_log(1, \"---> \" & my class & \".register_product(): registering \" & this_product's to_string())\n\t\t\tset end of _registered_products to this_product\n\t\tend register_product\n\n\t\ton make_browser(app_name) --> WebBrowser\n\t\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tif app_name is this_product's to_string() then\n\t\t\t\t\tmy debug_log(1, \"---> using \" & this_product's class)\n\t\t\t\t\treturn this_product\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t_handle_unsupported(app_name)\n\t\tend make_browser\n\n\t\ton _handle_unsupported(app_name) --> void -- PRIVATE\n\t\t\tset err_msg to \"The application \" & app_name & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & _get_app_names()\n\t\t\tset err_num to -2700\n\t\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\t\tset m to err_msg\n\t\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend _handle_unsupported\n\n\t\ton _get_app_names() --> string -- PRIVATE\n\t\t\tset app_names to {}\n\t\t\trepeat with this_product in _registered_products\n\t\t\t\tset end of app_names to this_product's to_string()\n\t\t\tend repeat\n\t\t\t--return app_names --> array\n\t\t\tjoin_list(app_names, \", \") --> string\n\t\tend _get_app_names\n\tend script\nend make_factory\n\non make_web_browser() --> abstract product\n\tscript\n\t\tproperty class : \"WebBrowser\"\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} default button 1 as critical\n\t\t\terror number -128 -- User canceled\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser() --> concrete product\n\tscript\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Safari\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_safari_browser\n\non make_webkit_browser() --> concrete product\n\tscript\n\t\tproperty class : \"WebKitBrowser\"\n\t\tproperty parent : make_safari_browser() -- extends SafariBrowser\n\t\tproperty short_name : \"WebKit\"\n\tend script\nend make_webkit_browser\n\non make_chrome_browser() --> concrete product\n\tscript\n\t\tproperty class : \"ChromeBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Chrome\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\t\ttell application (my short_name)\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\t\tget this_title -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tget this_url -- check if defined\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_chrome_browser\n\non make_firefox_browser() --> concrete product\n\tscript\n\t\tproperty class : \"FirefoxBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\tproperty short_name : \"Firefox\"\n\n\t\ton fetch_page_info() --> void\n\t\t\treset_values()\n\t\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard -- be nice\n\t\t\tend try\n\t\t\tset the clipboard to missing value -- so we'll know if the copy op fails\n\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\n\t\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\n\t\t\ttry\n\t\t\t\tset this_url to the clipboard\n\t\t\t\tget this_url as string -- check if defined ('missing value' can't be coerced)\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tset the clipboard to old_clipboard\n\t\t\t\tend try\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\nend make_firefox_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\n\t\ton init()\n\t\t\tif __PLIST_DIR__'s last character is not \"\/\" then\n\t\t\t\tset __PLIST_DIR__ to __PLIST_DIR__ & \"\/\"\n\t\t\tend if\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\n\t\t(* == Observer Pattern == *)\n\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\n\t\t(* == Plist File Methods (delegate) == *)\n\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\n\t\ton init()\n\t\t\tcontinue init()\n\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, __DEFAULT_LOGFILE__)\n\t\tend init\n\n\t\t(* == Preferences Methods == *)\n\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\n\t\t(* == State Methods == *)\n\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\n\t\t(* == Associative List Methods (delegate) == *)\n\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\n\t\t(* == Utility Methods == *)\n\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy debug_log(2, \"[debug] Can't read_settings(): \" & err_msg & \"(\" & err_num & \")\")\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\n\t\ton set_root_controller(next_controller) --> void\n\t\t\treset() -- clear the controller stack\n\t\t\tpush(next_controller) -- push root controller onto stack\n\t\tend set_root_controller\n\n\t\ton go_back() --> void\n\t\t\t-- Pop the current controller off the stack so that the\n\t\t\t-- previous one (next on the stack) will run next.\n\t\t\tcontroller_stack's pop()\n\t\tend go_back\n\n\t\t(* == Controller Stack Methods (Delegate) == *)\n\n\t\ton push(this_controller) --> void\n\t\t\tcontroller_stack's push(this_controller)\n\t\tend push\n\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\n\t\ton reset() --> void\n\t\t\tcontroller_stack's reset()\n\t\tend reset\n\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty _nav_controller : missing value -- must be set by subclasses\n\t\tproperty other_controllers : {} --> array (for pushing on the stack)\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tmy debug_log(1, \"Other controllers: \" & other_controllers_to_string())\n\t\tend run\n\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\n\t\t-- Get the classes of the other_controllers (mostly for testing\/debugging)\n\t\ton other_controllers_to_string() --> string\n\t\t\tif other_controllers's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if other_controllers's length = 1 then\n\t\t\t\treturn other_controllers's item 1's class\n\t\t\tend if\n\t\t\tset controller_items to \"\"\n\t\t\trepeat with i from 1 to other_controllers's length\n\t\t\t\tset this_item to other_controllers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset controller_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset controller_items to controller_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn controller_items\n\t\tend other_controllers_to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\ttry\n\t\t\t\t_nav_controller's pop() -- remove from history\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend show_license\n\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend change_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton show_help() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\t\t-- NOTE: The Help controller will need to pop itself off the stack.\n\t\tend show_help\n\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend set_page_title\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_page_url\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push(my other_controllers's item i)\n\t\tend push_controller\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_root_categories()'s length < 2 and _model's get_sub_categories()'s length < 2 then\n\t\t\t\tif _model's get_all_categories()'s length > 0 then\n\t\t\t\t\t_model's set_chosen_category(_model's get_only_category())\n\t\t\t\tend if\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's pop() -- remove from history\n\t\t\t_nav_controller's push(my other_controllers's item 3)\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(6)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(7)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(9)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_only_sub_category())\n\t\t\t\tmy debug_log(2, \"[debug] 01\/10 \" & my class & \" skipping to edit category w\/pre-fill\")\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop()\n\n\t\t\t\t-- Now go to the next controller w\/o keeping this\n\t\t\t\t-- controller in the history.\n\t\t\t\tpop() -- remove from history\n\t\t\t\tpush(my other_controllers's item 1)\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(5)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(6)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(8)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\n\t\ton change_settings() --> void\n\t\t\tpush_controller(4)\n\t\tend change_settings\n\n\t\ton show_about() --> void\n\t\t\tpush_controller(5)\n\t\tend show_about\n\n\t\ton show_help() --> void\n\t\t\tpush_controller(6)\n\t\tend show_help\n\n\t\ton show_category_help() --> void\n\t\t\tpush_controller(7)\n\t\tend show_category_help\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend set_chosen_category\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\t\t_nav_controller's reset() -- clear the controller stack to end nav loop\n\t\tend set_page_note\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(navigation_controller, settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty nav_controller : navigation_controller -- common navigation (main app)\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\n\t\t-- Controllers instantiated during construction:\n\t\tproperty settings_nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\n\t\t\ttry\n\t\t\t\t-- Pop itself off the main app nav stack first thing so that\n\t\t\t\t-- it doesn't become part of the main app navigation history.\n\t\t\t\t--\n\t\t\t\tmy debug_log(2, my class & \" is immediately popping itself off the main navigation stack so that it won't be part of the navigation history and control will be returned to the controller that launched it when it completes.\")\n\t\t\t\tnav_controller's pop()\n\t\t\ton error\n\t\t\t\tmy debug_log(2, my class & \" is running before the main app navigation loop has started so it did not pop itself off the stack which is currently empty.\")\n\t\t\tend try\n\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\tmy debug_log(2, my class & \": first run? \" & _is_first_run as string)\n\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(settings_nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(settings_nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\n\t\t\t-- Load first controller\n\t\t\tsettings_nav_controller's set_root_controller(root_controller)\n\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\n\t\t\trepeat while not settings_nav_controller's is_empty()\n\t\t\t\tset this_controller to settings_nav_controller's peek() -- Get controller from top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & settings_nav_controller's to_string())\n\t\t\tend repeat\n\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(settings_nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(settings_nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\tend use_defaults\n\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main settings view will need the defaults too\n\t\t\t_nav_controller's pop() -- done with first-run settings controller\n\t\t\t_nav_controller's push(my other_controllers's item 1) -- main settings controller\n\t\tend change_settings\n\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 1)\n\t\tend choose_app\n\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push(my other_controllers's item 2)\n\t\tend choose_file\n\n\t\ton finish_settings() --> void\n\t\t\t_nav_controller's pop()\n\t\tend finish_settings\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_editor_controller)\n\t\tend choose_editor\n\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push(_viewer_controller)\n\t\tend choose_viewer\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\n\t\ton run\n\t\t\tcontinue run -- call superclass\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\n\t\t(* == Unicode Characters for Views == *)\n\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\n\t\t(* == View Components == *)\n\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\n\t\t(* == Methods == *)\n\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\n\t\tproperty _chosen_category : missing value --> string\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title > URL > Category > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\telse\n\t\t\t\t_controller's finish_settings()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\n\t\tproperty _default_app : missing value\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\n\t\t(* == Main View == *)\n\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\n\t\t(* == Subviews == *)\n\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\n\t\t(* == Actions == *)\n\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\n\t\t(* == Additional methods == *)\n\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\n\t\t(* == PUBLIC == *)\n\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\n\t\t(* == PRIVATE == *)\n\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\tlocal os_ver, is_before_mavericks, ui_enabled, apple_accessibility_article\n\tlocal err_msg, err_num, msg, t, b\n\n\tset os_ver to system version of (system info)\n\n\tconsidering numeric strings -- version strings\n\t\tset is_before_mavericks to os_ver < \"10.9\"\n\tend considering\n\n\tif is_before_mavericks then -- things changed in Mavericks (10.9)\n\t\t-- check to see if assistive devices is enabled\n\t\ttell application \"System Events\"\n\t\t\tset ui_enabled to UI elements enabled\n\t\tend tell\n\t\tif ui_enabled is false then\n\t\t\ttell application \"System Preferences\"\n\t\t\t\tactivate\n\t\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\t\tend tell\n\t\tend if\n\telse\n\t\t-- In Mavericks (10.9) and later, the system should prompt the user with\n\t\t-- instructions on granting accessibility access, so try to trigger that.\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell (first process whose frontmost is true)\n\t\t\t\t\tset frontmost to true\n\t\t\t\t\ttell window 1\n\t\t\t\t\t\tUI elements\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error err_msg number err_num\n\t\t\t-- In some cases, the system prompt doesn't appear, so always give some info.\n\t\t\tset msg to \"Error: \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tif err_num is -1719 then\n\t\t\t\tset apple_accessibility_article to \"http:\/\/support.apple.com\/en-us\/HT202802\"\n\t\t\t\tset t to \"GUI Scripting needs to be activated\"\n\t\t\t\tset msg to msg & return & return & \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"If the system doesn't prompt you with instructions for how to enable GUI scripting access, then see Apple's article at: \" & return & apple_accessibility_article\n\t\t\t\tset b to {\"Go to Apple's Webpage\", \"Cancel\"}\n\t\t\t\tdisplay alert t message msg buttons b default button 2\n\t\t\t\tif button returned of result is b's item 1 then\n\t\t\t\t\ttell me to open location apple_accessibility_article\n\t\t\t\tend if\n\t\t\t\terror number -128 --> User canceled\n\t\t\tend if\n\t\tend try\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\n\t\t-- Ignore (Apple)Script Editor and Terminal when getting the front app\n\t\t-- name since they can be used to launch the script\n\t\trepeat 10 times -- limit repetitions just in case\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tif short name of frontmost_process is in {\"Script Editor\", \"AppleScript Editor\", \"Terminal\"} then\n\t\t\t\tset visible of frontmost_process to false\n\t\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\t\tdelay 0.2\n\t\t\t\tend repeat\n\t\t\telse\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\t\tset current_app to short name of first process where it is frontmost\n\t\t--set frontmost of frontmost_process to true -- return orginal app to front\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\n\t\tFrom 'man iconv_open':\n\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file as string\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8d1e7438ff147fc2365d73c44eeaf1a99e3041fd","subject":"Add user input (URL, title, label) to dialog text","message":"Add user input (URL, title, label) to dialog text\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-21\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property uBullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property uBullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property uBullet : \"\"\n--property uBullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property uBullet : data utxt2043 as Unicode text -- HYPHEN BULLET\nproperty uBullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n--property uBack : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\nproperty uBack : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Get the info so far:\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Update the info:\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list with subcategories\", \n\t\t\t\" \" & uBullet & \" Create a new category...\", \n\t\t\tmultiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list of categories...\", \n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property uBullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property uBullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property uBullet : \"\"\n--property uBullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property uBullet : data utxt2043 as Unicode text -- HYPHEN BULLET\nproperty uBullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n--property uBack : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\nproperty uBack : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list with subcategories\", \n\t\t\t\" \" & uBullet & \" Create a new category...\", \n\t\t\tmultiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\t\" \" & uBullet & \" Show full list of categories...\", \n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tuBack & \" Go back to previous list...\", \n\t\t\tmultiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"80fdbab816472343c251e43134305732b58152cc","subject":"Reset the name and track w\/new batches","message":"Reset the name and track w\/new batches\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"8b928b567fd6765fe71c87561b2ee6a766e1e8f0","subject":"replicate now also offsets so items are not stacked on each other when pasted","message":"replicate now also offsets so items are not stacked on each other when pasted\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"95bd52d18bf9decfdf0ebe6664e8fc09ef4f379f","subject":"Fixed indentation","message":"Fixed indentation\n","repos":"jrocha2\/DynamicBG-OSX","old_file":"DynamicBG-OSX\/startup.scpt","new_file":"DynamicBG-OSX\/startup.scpt","new_contents":"tell application \"Terminal\"\n do script (\"nohup \/System\/Library\/Frameworks\/ScreenSaver.framework\/Resources\/ScreenSaverEngine.app\/Contents\/MacOS\/ScreenSaverEngine -background &\")\n do script (\"killall Terminal\")\nend tell","old_contents":"tell application \"Terminal\"\ndo script (\"nohup \/System\/Library\/Frameworks\/ScreenSaver.framework\/Resources\/ScreenSaverEngine.app\/Contents\/MacOS\/ScreenSaverEngine -background &\")\ndo script (\"killall Terminal\")\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0793e09795672dbda0c754865b617dadc46cdd41","subject":"Fix performance degredation introduced by 67b1c92","message":"Fix performance degredation introduced by 67b1c92\n\nThis change effectively reverts 67b1c92 while also making a\nsmall tweak to prevent the reappearance of duplicate results.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset searchSongs to {}\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\t\trepeat with searchSong in searchSongs\n\n\t\t\t\t\t\tset duplicateSong to false\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif (database ID of theSong) is (database ID of searchSong) then\n\n\t\t\t\t\t\t\t\tset duplicateSong to true\n\t\t\t\t\t\t\t\texit repeat\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\t\tif duplicateSong is false then\n\n\t\t\t\t\t\t\tcopy searchSong to end of theSongs\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d7f825bf51f42726f85b82ad495f83206a039690","subject":"Remove git pull from closing Vagrant","message":"Remove git pull from closing Vagrant\n","repos":"smathson\/dotfiles","old_file":"applescripts\/halt_vagrant.applescript","new_file":"applescripts\/halt_vagrant.applescript","new_contents":"set close_vagrant to \"z puppet; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","old_contents":"set close_vagrant to \"z puppet; git pull; vagrant halt -f;\"\n\n-- close vagrant\ntell application \"iTerm\"\n\tactivate\n\tset myterm to (make new terminal)\n\ttell myterm\n\t\tlaunch session \"Default\"\n\t\tset mysession to current session\n\tend tell\n\n\ttell mysession\n\t\twrite text close_vagrant\n\tend tell\n\n\tdelay 5\nend tell\n\n-- quit iTerm\nignoring application responses\n\ttell application \"iTerm\"\n\t\tquit\n\tend tell\nend ignoring\n\ndelay 2\ntell application \"System Events\" to keystroke return\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2e6cdc0f98b8515e66c014e7489fdf8d74430a0f","subject":"Replaced reference to PlistBuddy using standard AppleScript","message":"Replaced reference to PlistBuddy using standard AppleScript","repos":"adozenlines\/mogenerator,bewebste\/mogenerator,fizker\/mogenerator,casademora\/mogenerator,rentzsch\/mogenerator,bgulanowski\/mogenerator,untitledstartup\/mogenerator,casademora\/mogenerator,bgulanowski\/mogenerator,bewebste\/mogenerator,otaran\/mogenerator,mjasa\/mogenerator,willowtreeapps\/mattgenerator,seanm\/mogenerator,bewebste\/mogenerator,iv-mexx\/mogenerator,iv-mexx\/mogenerator,kostiakoval\/mogenerator,anton-matosov\/mogenerator,pronebird\/mogenerator,otaran\/mogenerator,skywinder\/mogenerator,adozenlines\/mogenerator,ef-ctx\/mogenerator,seanm\/mogenerator,hardikdevios\/mogenerator,iv-mexx\/mogenerator,ef-ctx\/mogenerator,mjasa\/mogenerator,iv-mexx\/mogenerator,VladimirGoncharov\/mogenerator,pronebird\/mogenerator,anton-matosov\/mogenerator,fizker\/mogenerator,bewebste\/mogenerator,hardikdevios\/mogenerator,Erin-Mounts\/mogenerator,untitledstartup\/mogenerator,willowtreeapps\/mattgenerator,kostiakoval\/mogenerator,otaran\/mogenerator,casademora\/mogenerator,bgulanowski\/mogenerator,Erin-Mounts\/mogenerator,adozenlines\/mogenerator,untitledstartup\/mogenerator,ef-ctx\/mogenerator,skywinder\/mogenerator,rentzsch\/mogenerator,kostiakoval\/mogenerator,pronebird\/mogenerator,rentzsch\/mogenerator,VladimirGoncharov\/mogenerator,hardikdevios\/mogenerator,mjasa\/mogenerator,fizker\/mogenerator,VladimirGoncharov\/mogenerator,seanm\/mogenerator,willowtreeapps\/mattgenerator,skywinder\/mogenerator,anton-matosov\/mogenerator,Erin-Mounts\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\" and comments contains \"xmod\"\n\t\trepeat with modelItr in modelList\n\t\t\tmy updateModel(_project, modelItr, comments of modelItr)\n\t\tend repeat\n\t\t-- Iterate over every .xcdatamodeld (notice the 'd') in the project.\n\t\tset modeldList to every group of _project whose name contains \".xcdatamodeld\" and comments contains \"xmod\"\n\t\trepeat with modeldIt in modeldList\n\t\t\t-- Find the 'active' model version\n\t\t\tset currentVersionFile to full path of modeldIt & \"\/.xccurrentversion\"\n\t\t\ttell application \"System Events\"\n\t\t\t\tset currentVersionPlist to contents of property list file currentVersionFile\n\t\t\t\tset activeModelVersionFilename to value of property list item \"_XCCurrentVersionName\" of currentVersionPlist\n\t\t\tend tell\n\t\t\tset activeModelVersion to full path of modeldIt & \"\/\" & activeModelVersionFilename\n\t\t\tset modelItr to item 1 of (every file reference of modeldIt whose name is activeModelVersionFilename)\n\t\t\t-- Then update it\n\t\t\tmy updateModel(_project, modelItr, comments of modeldIt)\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","old_contents":"property kExplicitlyProcessedOptions : {\"--human-dir \", \"--machine-dir \", \"--output-dir \", \"--log-command\"}\n\ntell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\" and comments contains \"xmod\"\n\t\trepeat with modelItr in modelList\n\t\t\tmy updateModel(_project, modelItr, comments of modelItr)\n\t\tend repeat\n\t\t-- Iterate over every .xcdatamodeld (notice the 'd') in the project.\n\t\tset modeldList to every group of _project whose name contains \".xcdatamodeld\" and comments contains \"xmod\"\n\t\trepeat with modeldIt in modeldList\n\t\t\t-- Find the 'active' model version\n\t\t\tset currentVersionFile to full path of modeldIt & \"\/.xccurrentversion\"\n\t\t\tset activeModelVersionFilename to do shell script \"\/usr\/libexec\/PlistBuddy -c 'print _XCCurrentVersionName' \" & currentVersionFile\n\t\t\tset activeModelVersion to full path of modeldIt & \"\/\" & activeModelVersionFilename\n\t\t\tset modelItr to item 1 of (every file reference of modeldIt whose name is activeModelVersionFilename)\n\t\t\t-- Then update it\n\t\t\tmy updateModel(_project, modelItr, comments of modeldIt)\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non updateModel(_project, modelItr, theComments)\n\ttell application \"Xcode\"\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr, theComments)\n\t\t\t\tset humanGroupRef to null\n\t\t\t\tset machineGroupRef to null\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- look for a group in the project that has the full path of the human manageable files\n\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t-- if we don't find one, create it in the same group as the model file\n\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t-- if we have different human and machine paths, then append '_human' to the model name for the group name\n\t\t\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo & \"_human\")}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tmake new group with properties {full path:(humanDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (humanDirPath of modelInfo))\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset humanGroupRef to item 1 of groupRefs\n\t\t\t\t\n\t\t\t\t-- if we have different human and machine paths, then look for a group for the machine files\n\t\t\t\tif (humanDirPath of modelInfo) is not equal to (machineDirPath of modelInfo) then\n\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\t-- if we don't find one, create it in the same group as the model file... named with '_machine' appended to the model name\n\t\t\t\t\tif (count of groupRefs) = 0 then\n\t\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\t\tmake new group with properties {full path:(machineDirPath of modelInfo), name:(name of modelInfo & \"_machine\")}\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\tset groupRefs to (every group of _project whose full path is (machineDirPath of modelInfo))\n\t\t\t\t\tend if\n\t\t\t\t\tset machineGroupRef to item 1 of groupRefs\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it, skipping the ones we've already parsed out\n\t\t\t\tset logCommand to false\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --human-dir '\" & (humanDirPath of modelInfo) & \"' --machine-dir '\" & (machineDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif theParagraph starts with \"--\" then\n\t\t\t\t\t\tset isExplicitlyProcessedOption to false\n\t\t\t\t\t\trepeat with explicitlyProcessedOption in kExplicitlyProcessedOptions\n\t\t\t\t\t\t\tif theParagraph starts with explicitlyProcessedOption then set isExplicitlyProcessedOption to true\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tif not isExplicitlyProcessedOption then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tif theParagraph starts with \"--log-command\" then\n\t\t\t\t\t\t\tset logCommand to true\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tif logCommand then\n\t\t\t\t\tmy logger(theScript)\n\t\t\t\tend if\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, humanGroupRef)\n\t\t\t\tif machineGroupRef is not null then\n\t\t\t\t\tmy addFilesFromPathToGroup(_project, modelItr, machineGroupRef)\n\t\t\t\tend if\n\tend tell\nend updateModel\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath, theComments)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\tset theOutputDir to \"\"\n\tset theHumanDir to \"\"\n\tset theMachineDir to \"\"\n\t\n\t-- check for any directory path options specified in the commments\n\tset theParagraphs to every paragraph of theComments\n\trepeat with theParagraph in theParagraphs\n\t\tset paragraphLength to (length of theParagraph)\n\t\tif (offset of \"--human-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--human-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theHumanDir to \"\"\n\t\t\telse\n\t\t\t\tset theHumanDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--machine-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--machine-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theMachineDir to \"\"\n\t\t\telse\n\t\t\t\tset theMachineDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\telse if (offset of \"--output-dir \" in theParagraph) = 1 then\n\t\t\tset remainderOffset to (length of \"--output-dir \") + 1\n\t\t\tif remainderOffset > paragraphLength then\n\t\t\t\tset theOutputDir to \"\"\n\t\t\telse\n\t\t\t\tset theOutputDir to text remainderOffset thru -1 of theParagraph\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\t-- remove any leading\/trailing spaces or tabs from the paths\n\tif (length of theHumanDir) > 0 then\n\t\trepeat while character 1 of theHumanDir = tab or character 1 of theHumanDir = space\n\t\t\tset theHumanDir to text 2 thru -1 of theHumanDir\n\t\tend repeat\n\t\trepeat while last character of theHumanDir = tab or last character of theHumanDir = space\n\t\t\tset theHumanDir to text 1 thru -2 of theHumanDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theMachineDir) > 0 then\n\t\trepeat while character 1 of theMachineDir = tab or character 1 of theMachineDir = space\n\t\t\tset theMachineDir to text 2 thru -1 of theMachineDir\n\t\tend repeat\n\t\trepeat while last character of theMachineDir = tab or last character of theMachineDir = space\n\t\t\tset theMachineDir to text 1 thru -2 of theMachineDir\n\t\tend repeat\n\tend if\n\t\n\tif (length of theOutputDir) > 0 then\n\t\trepeat while character 1 of theOutputDir = tab or character 1 of theOutputDir = space\n\t\t\tset theOutputDir to text 2 thru -1 of theOutputDir\n\t\tend repeat\n\t\trepeat while last character of theOutputDir = tab or last character of theOutputDir = space\n\t\t\tset theOutputDir to text 1 thru -2 of theOutputDir\n\t\tend repeat\n\tend if\n\t\n\t-- get actual the model info and modify value for theOutputDir if necessary\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\t\n\t\t-- if we didn't find any directory specifiers in the comments, then make theOutputDir the folder containg the model file\n\t\tif ((length of theOutputDir) = 0) and ((length of theHumanDir) = 0) and ((length of theMachineDir) = 0) then\n\t\t\tif not (exists folder modelName of modelFileFolder) then \n\t\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\t\t\tset theOutputDir to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias))\n\t\t\t-- otherwise, if theOutputDir isn't a full path itself already, set theOutputDir to a full path relative to the model file\n\t\telse if theOutputDir does not start with \"\/\" then\n\t\t\tset modelFolderPath to text 1 thru -2 of (POSIX path of (modelFileFolder as alias))\n\t\t\tif (length of theOutputDir) = 0 then\n\t\t\t\tset theOutputDir to modelFolderPath\n\t\t\telse\n\t\t\t\tcopy modelFolderPath & \"\/\" & theOutputDir to theOutputDir\n\t\t\tend if\n\t\tend if\n\t\t\n\tend tell\n\t\n\t\n\t-- if theHumanDir is empty, use theOutputDir value instead, if theHumanDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theHumanDir) = 0 then\n\t\tset theHumanDir to theOutputDir\n\telse if theHumanDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theHumanDir to theHumanDir\n\tend if\n\t\n\t-- if theMachineDir is empty, use theOutputDir value instead, if theMachineDir not empty and it isn't a full path, then treat it as a relative path to theOutputDir\n\tif (length of theMachineDir) = 0 then\n\t\tset theMachineDir to theOutputDir\n\telse if theMachineDir does not start with \"\/\" then\n\t\tcopy theOutputDir & \"\/\" & theMachineDir to theMachineDir\n\tend if\n\t\n\t-- ensure the directories exist\n\tdo shell script \"mkdir -p '\" & theHumanDir & \"'\"\n\tdo shell script \"mkdir -p '\" & theMachineDir & \"'\"\n\t\n\t-- the following should resolve any symlinks, '..', or '~' in the paths\n\ttell application \"System Events\"\n\t\tset dirAlias to POSIX file theHumanDir as alias\n\t\tset theHumanDir to (POSIX path of (dirAlias as alias))\n\t\tset dirAlias to POSIX file theMachineDir as alias\n\t\tset theMachineDir to (POSIX path of (dirAlias as alias))\n\tend tell\n\t\n\treturn {name:modelName, isBundle:isModelBundle, machineDirPath:theMachineDir, humanDirPath:theHumanDir}\n\t\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n\non addFilesFromPathToGroup(_project, modelItr, groupRef)\n\ttell application \"Xcode\"\n\t\t-- get the full path of the directory that the groupRef represents\n\t\tset groupPath to full path of groupRef\n\t\t\n\t\t--\tBuild a list of source files in the group's directory\n\t\ttell application \"System Events\"\n\t\t\tset modelSrcDirAlias to POSIX file groupPath as alias\n\t\t\tset fileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\" or name ends with \".h\"))\n\t\t\tset pathList to {}\n\t\t\trepeat with fileItem in fileList\n\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\tend repeat\n\t\tend tell\n\t\t\n\t\t--\tAdd the source files to the group and the model's targets, but only if they don't exist already\n\t\tset targetList to null\n\t\trepeat with pathItr in pathList\n\t\t\ttell groupRef\n\t\t\t\tset fileRefs to (every file reference of _project whose full path is pathItr)\n\t\t\t\tif (count of fileRefs) = 0 then\n\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\tif targetList is null then\n\t\t\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\t\tend if\n\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\nend addFilesFromPathToGroup\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6244669fb43681db85cec7e0b1d978acce666cf5","subject":"Require category. Don't allow blank answer.","message":"Require category. Don't allow blank answer.\n\nAlso move cancel button next to ok button so that they are grouped on\nthe right while the third button is over to the left.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat 10 times -- limit loops as a precaution\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\"\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-12-20\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty uRule : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer chosen_category with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t-- Customize list dialog properties\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\trepeat 10 times -- limit loops as a precaution\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then exit repeat\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t-- Call this handler recursively if another list was requested:\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\telse\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\t-- :TODO: verify that 'cur_type' is in 'p_list_types'\n\t\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\"Show full list with subcategories\", \"Create a new category...\", multiplyTxt(uRule, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\"Show full list of categories...\", \"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\"Go back to previous list...\", multiplyTxt(uRule, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4199862267d20fd5de1ef109dd73849e21f9f13c","subject":"adding a second newline to the MacOS uninstallers","message":"adding a second newline to the MacOS uninstallers\n","repos":"mquandalle\/rethinkdb,eliangidoni\/rethinkdb,eliangidoni\/rethinkdb,lenstr\/rethinkdb,jmptrader\/rethinkdb,robertjpayne\/rethinkdb,grandquista\/rethinkdb,mbroadst\/rethinkdb,urandu\/rethinkdb,bpradipt\/rethinkdb,grandquista\/rethinkdb,sebadiaz\/rethinkdb,ajose01\/rethinkdb,sbusso\/rethinkdb,rrampage\/rethinkdb,gdi2290\/rethinkdb,ayumilong\/rethinkdb,sontek\/rethinkdb,JackieXie168\/rethinkdb,wkennington\/rethinkdb,victorbriz\/rethinkdb,niieani\/rethinkdb,AntouanK\/rethinkdb,captainpete\/rethinkdb,AntouanK\/rethinkdb,tempbottle\/rethinkdb,Wilbeibi\/rethinkdb,Wilbeibi\/rethinkdb,niieani\/rethinkdb,alash3al\/rethinkdb,yaolinz\/rethinkdb,gdi2290\/rethinkdb,KSanthanam\/rethinkdb,pap\/rethinkdb,yakovenkodenis\/rethinkdb,bchavez\/rethinkdb,wojons\/rethinkdb,ayumilong\/rethinkdb,niieani\/rethinkdb,dparnell\/rethinkdb,spblightadv\/rethinkdb,grandquista\/rethinkdb,elkingtonmcb\/rethinkdb,mquandalle\/rethinkdb,mquandalle\/rethinkdb,gavioto\/rethinkdb,ayumilong\/rethinkdb,captainpete\/rethinkdb,dparnell\/rethinkdb,bchavez\/rethinkdb,marshall007\/rethinkdb,scripni\/rethinkdb,victorbriz\/rethinkdb,pap\/rethinkdb,yakovenkodenis\/rethinkdb,mbroadst\/rethinkdb,mcanthony\/rethinkdb,4talesa\/rethinkdb,gavioto\/rethinkdb,wujf\/rethinkdb,elkingtonmcb\/rethinkdb,rrampage\/rethinkdb,robertjpayne\/rethinkdb,mcanthony\/rethinkdb,catroot\/rethinkdb,dparnell\/rethinkdb,catroot\/rethinkdb,jmptrader\/rethinkdb,gavioto\/rethinkdb,dparnell\/rethinkdb,robertjpayne\/rethinkdb,greyhwndz\/rethinkdb,sontek\/rethinkdb,RubenKelevra\/rethinkdb,wojons\/rethinkdb,wujf\/rethinkdb,marshall007\/rethinkdb,lenstr\/rethinkdb,sbusso\/rethinkdb,pap\/rethinkdb,wojons\/rethinkdb,lenstr\/rethinkdb,eliangidoni\/rethinkdb,urandu\/rethinkdb,alash3al\/rethinkdb,eliangidoni\/rethinkdb,4talesa\/rethinkdb,gavioto\/rethinkdb,ayumilong\/rethinkdb,captainpete\/rethinkdb,bpradipt\/rethinkdb,niieani\/rethinkdb,yaolinz\/rethinkdb,urandu\/rethinkdb,KSanthanam\/rethinkdb,sebadiaz\/rethinkdb,gdi2290\/rethinkdb,marshall007\/rethinkdb,lenstr\/rethinkdb,sbusso\/rethinkdb,wujf\/rethinkdb,matthaywardwebdesign\/rethinkdb,marshall007\/rethinkdb,gavioto\/rethinkdb,gavioto\/rethinkdb,greyhwndz\/rethinkdb,bchavez\/rethinkdb,ajose01\/rethinkdb,gavioto\/rethinkdb,RubenKelevra\/rethinkdb,mbroadst\/rethinkdb,greyhwndz\/rethinkdb,marshall007\/rethinkdb,sbusso\/rethinkdb,JackieXie168\/rethinkdb,greyhwndz\/rethinkdb,wkennington\/rethinkdb,catroot\/rethinkdb,Qinusty\/rethinkdb,alash3al\/rethinkdb,grandquista\/rethinkdb,JackieXie168\/rethinkdb,alash3al\/rethinkdb,bchavez\/rethinkdb,robertjpayne\/rethinkdb,pap\/rethinkdb,jmptrader\/rethinkdb,KSanthanam\/rethinkdb,ayumilong\/rethinkdb,mquandalle\/rethinkdb,gdi2290\/rethinkdb,elkingtonmcb\/rethinkdb,alash3al\/rethinkdb,Qinusty\/rethinkdb,AntouanK\/rethinkdb,robertjpayne\/rethinkdb,tempbottle\/rethinkdb,losywee\/rethinkdb,elkingtonmcb\/rethinkdb,JackieXie168\/rethinkdb,catroot\/rethinkdb,robertjpayne\/rethinkdb,sbusso\/rethinkdb,jesseditson\/rethinkdb,mcanthony\/rethinkdb,pap\/rethinkdb,grandquista\/rethinkdb,tempbottle\/rethinkdb,yaolinz\/rethinkdb,RubenKelevra\/rethinkdb,rrampage\/rethinkdb,4talesa\/rethinkdb,mcanthony\/rethinkdb,rrampage\/rethinkdb,captainpete\/rethinkdb,Wilbeibi\/rethinkdb,scripni\/rethinkdb,Qinusty\/rethinkdb,mbroadst\/rethinkdb,JackieXie168\/rethinkdb,eliangidoni\/rethinkdb,tempbottle\/rethinkdb,mquandalle\/rethinkdb,wujf\/rethinkdb,rrampage\/rethinkdb,KSanthanam\/rethinkdb,Qinusty\/rethinkdb,Qinusty\/rethinkdb,sontek\/rethinkdb,bchavez\/rethinkdb,Qinusty\/rethinkdb,KSanthanam\/rethinkdb,matthaywardwebdesign\/rethinkdb,sontek\/rethinkdb,marshall007\/rethinkdb,sebadiaz\/rethinkdb,scripni\/rethinkdb,matthaywardwebdesign\/rethinkdb,sebadiaz\/rethinkdb,jmptrader\/rethinkdb,RubenKelevra\/rethinkdb,wojons\/rethinkdb,wojons\/rethinkdb,ajose01\/rethinkdb,catroot\/rethinkdb,sontek\/rethinkdb,grandquista\/rethinkdb,alash3al\/rethinkdb,wkennington\/rethinkdb,sontek\/rethinkdb,gdi2290\/rethinkdb,losywee\/rethinkdb,robertjpayne\/rethinkdb,jesseditson\/rethinkdb,rrampage\/rethinkdb,yaolinz\/rethinkdb,bchavez\/rethinkdb,wkennington\/rethinkdb,eliangidoni\/rethinkdb,spblightadv\/rethinkdb,eliangidoni\/rethinkdb,gdi2290\/rethinkdb,yakovenkodenis\/rethinkdb,JackieXie168\/rethinkdb,captainpete\/rethinkdb,spblightadv\/rethinkdb,mquandalle\/rethinkdb,catroot\/rethinkdb,wujf\/rethinkdb,wkennington\/rethinkdb,catroot\/rethinkdb,losywee\/rethinkdb,lenstr\/rethinkdb,AntouanK\/rethinkdb,dparnell\/rethinkdb,spblightadv\/rethinkdb,lenstr\/rethinkdb,sbusso\/rethinkdb,captainpete\/rethinkdb,jesseditson\/rethinkdb,rrampage\/rethinkdb,KSanthanam\/rethinkdb,4talesa\/rethinkdb,ajose01\/rethinkdb,bchavez\/rethinkdb,victorbriz\/rethinkdb,matthaywardwebdesign\/rethinkdb,RubenKelevra\/rethinkdb,spblightadv\/rethinkdb,sebadiaz\/rethinkdb,ayumilong\/rethinkdb,mcanthony\/rethinkdb,JackieXie168\/rethinkdb,bpradipt\/rethinkdb,sbusso\/rethinkdb,catroot\/rethinkdb,eliangidoni\/rethinkdb,mbroadst\/rethinkdb,ajose01\/rethinkdb,JackieXie168\/rethinkdb,mbroadst\/rethinkdb,bchavez\/rethinkdb,elkingtonmcb\/rethinkdb,RubenKelevra\/rethinkdb,victorbriz\/rethinkdb,mbroadst\/rethinkdb,tempbottle\/rethinkdb,matthaywardwebdesign\/rethinkdb,dparnell\/rethinkdb,dparnell\/rethinkdb,wojons\/rethinkdb,yakovenkodenis\/rethinkdb,lenstr\/rethinkdb,alash3al\/rethinkdb,grandquista\/rethinkdb,bpradipt\/rethinkdb,mcanthony\/rethinkdb,spblightadv\/rethinkdb,marshall007\/rethinkdb,yakovenkodenis\/rethinkdb,urandu\/rethinkdb,AntouanK\/rethinkdb,matthaywardwebdesign\/rethinkdb,niieani\/rethinkdb,mquandalle\/rethinkdb,JackieXie168\/rethinkdb,yaolinz\/rethinkdb,jesseditson\/rethinkdb,losywee\/rethinkdb,greyhwndz\/rethinkdb,greyhwndz\/rethinkdb,urandu\/rethinkdb,urandu\/rethinkdb,dparnell\/rethinkdb,victorbriz\/rethinkdb,spblightadv\/rethinkdb,losywee\/rethinkdb,bpradipt\/rethinkdb,victorbriz\/rethinkdb,sbusso\/rethinkdb,wkennington\/rethinkdb,niieani\/rethinkdb,AntouanK\/rethinkdb,jmptrader\/rethinkdb,sontek\/rethinkdb,bpradipt\/rethinkdb,mcanthony\/rethinkdb,yakovenkodenis\/rethinkdb,yaolinz\/rethinkdb,RubenKelevra\/rethinkdb,bchavez\/rethinkdb,wujf\/rethinkdb,AntouanK\/rethinkdb,captainpete\/rethinkdb,scripni\/rethinkdb,yakovenkodenis\/rethinkdb,mcanthony\/rethinkdb,yaolinz\/rethinkdb,jmptrader\/rethinkdb,pap\/rethinkdb,pap\/rethinkdb,scripni\/rethinkdb,KSanthanam\/rethinkdb,grandquista\/rethinkdb,gdi2290\/rethinkdb,losywee\/rethinkdb,wojons\/rethinkdb,Wilbeibi\/rethinkdb,scripni\/rethinkdb,mquandalle\/rethinkdb,yaolinz\/rethinkdb,elkingtonmcb\/rethinkdb,Qinusty\/rethinkdb,ayumilong\/rethinkdb,jesseditson\/rethinkdb,AntouanK\/rethinkdb,ajose01\/rethinkdb,victorbriz\/rethinkdb,Wilbeibi\/rethinkdb,victorbriz\/rethinkdb,tempbottle\/rethinkdb,scripni\/rethinkdb,sebadiaz\/rethinkdb,4talesa\/rethinkdb,grandquista\/rethinkdb,gavioto\/rethinkdb,greyhwndz\/rethinkdb,losywee\/rethinkdb,jmptrader\/rethinkdb,eliangidoni\/rethinkdb,mbroadst\/rethinkdb,wkennington\/rethinkdb,lenstr\/rethinkdb,scripni\/rethinkdb,greyhwndz\/rethinkdb,marshall007\/rethinkdb,sontek\/rethinkdb,ayumilong\/rethinkdb,dparnell\/rethinkdb,yakovenkodenis\/rethinkdb,ajose01\/rethinkdb,wkennington\/rethinkdb,jesseditson\/rethinkdb,Qinusty\/rethinkdb,jesseditson\/rethinkdb,KSanthanam\/rethinkdb,tempbottle\/rethinkdb,wojons\/rethinkdb,rrampage\/rethinkdb,sebadiaz\/rethinkdb,niieani\/rethinkdb,matthaywardwebdesign\/rethinkdb,spblightadv\/rethinkdb,4talesa\/rethinkdb,ajose01\/rethinkdb,4talesa\/rethinkdb,bpradipt\/rethinkdb,Wilbeibi\/rethinkdb,niieani\/rethinkdb,elkingtonmcb\/rethinkdb,captainpete\/rethinkdb,urandu\/rethinkdb,tempbottle\/rethinkdb,matthaywardwebdesign\/rethinkdb,bpradipt\/rethinkdb,jesseditson\/rethinkdb,robertjpayne\/rethinkdb,losywee\/rethinkdb,urandu\/rethinkdb,mbroadst\/rethinkdb,elkingtonmcb\/rethinkdb,robertjpayne\/rethinkdb,Qinusty\/rethinkdb,bpradipt\/rethinkdb,jmptrader\/rethinkdb,Wilbeibi\/rethinkdb,4talesa\/rethinkdb,alash3al\/rethinkdb,Wilbeibi\/rethinkdb,pap\/rethinkdb,wujf\/rethinkdb,RubenKelevra\/rethinkdb,sebadiaz\/rethinkdb","old_file":"packaging\/osx\/uninstall.scpt","new_file":"packaging\/osx\/uninstall.scpt","new_contents":"-- check that a package version has been installed\nset packageIdentifier to \"\"\nrepeat with candidateIdentifier in {\"rethinkdb\", \"com.rethinkdb\", \"com.rethinkdb.server\"}\n\ttry\n\t\tdo shell script \"\/usr\/sbin\/pkgutil --files \" & candidateIdentifier\n\t\tset packageIdentifier to candidateIdentifier\n\t\texit repeat\n\tend try\nend repeat\n\nif packageIdentifier is \"\" then\n\t-- the package is not installed, check if the server is there\n\ttry\n\t\tdo shell script \"PATH=:\\\"$PATH:\/usr\/local\/bin\\\"; \/usr\/bin\/which rethinkdb\"\n\t\tdisplay alert \"Unable to uninstall\" message \"Your copy of RethinkDB was not installed using a Mac OS package: you may have installed RethinkDB using Homebrew or manually.\" & return & return & \"This uninstaller will not be able to remove your installation.\"\n\ton error\n\t\tdisplay alert \"Unable to uninstall\" message \"The RethinkDB package is not installed on this system.\"\n\tend try\nelse\n\t-- verify with the user\n\tset result to display alert \"Uninstall RethinkDB?\" message \"This will uninstall the RethinkDB binaries and support files from '\/usr\/local\/'.\" & return & return & \"Your data files will not be affected. You will be asked for your Administrator password.\" as warning buttons {\"Uninstall\", \"Cancel\"} default button \"Cancel\"\n\t\n\t-- run the uninstall\n\tif the button returned of result is \"Uninstall\" then\n\t\tdo shell script \"set -e; pkgutil --files \" & packageIdentifier & \" --only-files | while read LINE; do rm -f $LINE; done && pkgutil --files \" & packageIdentifier & \" --only-dirs | while read LINE; do rmdir $LINE; done && pkgutil --forget \" & packageIdentifier with administrator privileges\n\tend if\nend if\n","old_contents":"-- check that a package version has been installed\nset packageIdentifier to \"\"\nrepeat with candidateIdentifier in {\"rethinkdb\", \"com.rethinkdb\", \"com.rethinkdb.server\"}\n\ttry\n\t\tdo shell script \"\/usr\/sbin\/pkgutil --files \" & candidateIdentifier\n\t\tset packageIdentifier to candidateIdentifier\n\t\texit repeat\n\tend try\nend repeat\n\nif packageIdentifier is \"\" then\n\t-- the package is not installed, check if the server is there\n\ttry\n\t\tdo shell script \"PATH=:\\\"$PATH:\/usr\/local\/bin\\\"; \/usr\/bin\/which rethinkdb\"\n\t\tdisplay alert \"Unable to uninstall\" message \"Your copy of RethinkDB was not installed using a Mac OS package: you may have installed RethinkDB using Homebrew or manually.\" & return & \"This uninstaller will not be able to remove your installation.\"\n\ton error\n\t\tdisplay alert \"Unable to uninstall\" message \"The RethinkDB package is not installed on this system.\"\n\tend try\nelse\n\t-- verify with the user\n\tset result to display alert \"Uninstall RethinkDB?\" message \"This will uninstall the RethinkDB binaries and support files from '\/usr\/local\/'.\" & return & \"Your data files will not be affected. You will be asked for your Administrator password.\" as warning buttons {\"Uninstall\", \"Cancel\"} default button \"Cancel\"\n\t\n\t-- run the uninstall\n\tif the button returned of result is \"Uninstall\" then\n\t\tdo shell script \"set -e; pkgutil --files \" & packageIdentifier & \" --only-files | while read LINE; do rm -f $LINE; done && pkgutil --files \" & packageIdentifier & \" --only-dirs | while read LINE; do rmdir $LINE; done && pkgutil --forget \" & packageIdentifier with administrator privileges\n\tend if\nend if\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"4ac9508d01623f30806aefb38bbb36e0453d33cf","subject":"Scripts","message":"Scripts\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/clear-notifications.scpt","new_file":"scripts\/clear-notifications.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000o\u0000p\u0001\u0000\u0000\u0010\u0000o\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000p\u0000\u0007\u0010\u0000q\u0000r\u0000s\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000t\u0002\u0000t\u0000\u0002\u0000\u0005\u0000u\u0002\u0000u\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000r\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000s\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000o\u0000p\u0000q\u0000r\u0001\u0000\u0000\u0010\u0000o\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u000e\u0000p\u0000\u0007\u0010\u0000s\u0000t\u0000u\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000s\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000v\u0002\u0000v\u0000\u0002\u0000\u0005\u0000w\u0002\u0000w\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000t\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000u\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u000e\u0000q\u0000\u0001\u0014\u0000x\u000e\u0000x\u0000\u0003\u0018\u0000y\u000e\u0000y\u0000\u0003\u0018\u0000z\u000e\u0000z\u0000\u0003\u0018\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000|\u0000}\u000e\u0000|\u0000\u0003\u0018\u0000n\u0000~\n\u0000\u0004\npcap\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\u000e\u0000r\u0000\u0002\u0004\u0000\u0003\u0000\u0002\u000e\u0000\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000A\u0000X\u0000S\u0000c\u0000r\u0000o\u0000l\u0000l\u0000T\u0000o\u0000V\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000A\u0000X\u0000S\u0000h\u0000o\u0000w\u0000M\u0000e\u0000n\u0000u\n\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9f4e8df54c8767eb9d7f1852b10e7cf771947b89","subject":"Add preferences UI to reset file edit warning","message":"Add preferences UI to reset file edit warning\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"898b00c4c9068f7133afb5060abf6ba51549a9ac","subject":"Completely refactor as MVC - major change","message":"Completely refactor as MVC - major change\n\nCode bears practically no resemblance to previous code other than some\nfunctions and snippets that were integrated into the various classes.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-24\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\tset settings_model to make_settings()\n\t\t\tsettings_model's init()\n\t\t\tset settings_controller to make_settings_controller(settings_model)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the main model\n\t\t\t--\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\ttell page_log\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\t-- :TODO: Error handling\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\tend parse_log\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _initialize_category()\n\t\t\tmy debug_log(1, my class & \"._initialize_category()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend _initialize_category\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tthis's _initialize_category()\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\t-- Define all preference keys here.\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\t_default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\t_default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Default Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\t_default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\t_default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\t_settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\t_settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\t_settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _root_categories to this's _model's get_root_categories()\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\tset this's _all_categories to this's _model's get_all_categories()\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path) --> string\n\tlocal char_length\n\tif file_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn file_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset file_path to posix_home & characters char_length thru -1 of file_path as text\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(* ==== Init ==== *)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(* ==== Read preferences ==== *)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(* ==== Get web page info ==== *)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(* ==== Parse existing data (model-ish) ==== *)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(* ==== Main view(-ish) ==== *)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button 3 cancel button 2 with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button 3 cancel button 2 with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button 3 with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(* ==== Main Functions ==== *)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(* ==== Settings Functions ==== *)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button 3 with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(* ==== Utility Functions ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(* ==== Main Classes ==== *)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button 3 with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(* ==== Utility Objects ==== *)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"5523cb101fa161646c3f81a16e3e198c0c68da83","subject":"Widen text input fields by widening buttons","message":"Widen text input fields by widening buttons\n\nIt's the only way to widen text input fields in AppleScript dialogs. I\njust added whitespace padding rather than coming up with longer button\nnames.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset File Edit Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset file edit warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4b2d4f05e579970f2698d097eab641c3cee1f142","subject":"partial fix for spotloght localizations","message":"partial fix for spotloght localizations\n","repos":"onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,Kapeli\/PopClip-Extensions,Kapeli\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,dreki\/PopClip-Extensions,Kapeli\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,onecrayon\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,a-b\/PopClip-Extensions,a-b\/PopClip-Extensions,onecrayon\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions,chenruixuan\/PopClip-Extensions","old_file":"source\/Spotlight\/Spotlight.applescript","new_file":"source\/Spotlight\/Spotlight.applescript","new_contents":"tell application \"System Events\"\n\ttell process \"SystemUIServer\"\n\t\t-- find the spotlight menu item. count backwards because it's usually in the second one. \n\t\ttry\n\t\t\trepeat with menuBarNum from (count of menu bars) to 0 by -1\n\t\t\t\trepeat with theItem in (menu bar items of (item menuBarNum of menu bars))\n\t\t\t\t\tif (description of theItem) contains \"spotlight\" then\n\t\t\t\t\t\t-- we found it\n\t\t\t\t\t\tif (selected of theItem) is false then\n\t\t\t\t\t\t\tclick theItem\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tkeystroke \"{popclip text}\"\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\ton error theError\n\t\tend try\n\tend tell\nend tell","old_contents":"tell application \"System Events\"\n\ttell process \"SystemUIServer\"\n\t\t-- find the spotlight menu item. count backwards because it's usually in the second one. \n\t\ttry\n\t\t\trepeat with menuBarNum from (count of menu bars) to 0 by -1\n\t\t\t\trepeat with theItem in (menu bar items of (item menuBarNum of menu bars))\n\t\t\t\t\tif (description of theItem) is \"spotlight menu\" then\n\t\t\t\t\t\t-- we found it\n\t\t\t\t\t\tif (selected of theItem) is false then\n\t\t\t\t\t\t\tclick theItem\n\t\t\t\t\t\tend if\n\t\t\t\t\t\tkeystroke \"{popclip text}\"\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\ton error theError\n\t\tend try\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f86f9827824ce3a105e55d6c3d713e1fce934058","subject":"Change tabs to open at work","message":"Change tabs to open at work\n","repos":"smathson\/dotfiles","old_file":"applescripts\/open_chrome_tabs.applescript","new_file":"applescripts\/open_chrome_tabs.applescript","new_contents":"set myTabs to {\"http:\/\/app.getsentry.com\/\", \"http:\/\/github.com\/uberVU\/thehole\/issues\/assigned\/palcu?direction=desc&labels=&milestone=&page=1&sort=updated&state=open\/\", \"https:\/\/mail.google.com\/mail\/u\/1\/?shva=1#inbox\", \"https:\/\/drive.google.com\/a\/hootsuite.com\/#folders\/0BwuFsHJDxJWPYmxXQ1VQVlN6T2M\"}\ntell application \"Google Chrome\"\n\tactivate\n\trepeat with i in myTabs\n\t\topen location i\n\tend repeat\nend tell\n","old_contents":"set myTabs to {\"http:\/\/app.getsentry.com\/\", \"http:\/\/app.ubervu.com\/\", \"http:\/\/github.com\/uberVU\/thehole\/issues\/assigned\/palcu?direction=desc&labels=&milestone=&page=1&sort=updated&state=open\/\", \"https:\/\/mail.google.com\/mail\/u\/1\/?shva=1#inbox\", \"https:\/\/drive.google.com\/a\/ubervu.com\/#folders\/0BzycGIkC5P50TXBlcTZoRXZ5VUE\"}\ntell application \"Google Chrome\"\n\tactivate\n\trepeat with i in myTabs\n\t\topen location i\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"55c5773f884acbb0580b01001fe5c387007b1d5a","subject":"Delete Jarvis-One-Time.applescript","message":"Delete Jarvis-One-Time.applescript","repos":"gskielian\/Jarvis","old_file":"Jarvis-One-Time.applescript","new_file":"Jarvis-One-Time.applescript","new_contents":"","old_contents":"(*Instead of using the spotlight app, this opens a new terminal directly*)\n\ntell application \"Terminal\"\n\t\n\t(*opens up speech-to-text*)\n\tdelay 0.5\n\ttell application \"System Events\" to key code 63\n\ttell application \"System Events\" to key code 63\n\tdelay 2\n\t\n\t(*presses \"enter\" on DictationIM*)\n\ttell application \"System Events\" to tell process \"DictationIM\"\n\t\tclick button 1\n\tend tell\n\tdelay 2\n\t\n\t(*presses \"enter\" in the terminal*)\n\ttell application \"System Events\" to key code 36\n\t\n\t\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"63c34cf88643a6b8dc62285e8ca4c0bad5f5ed93","subject":"Reactivate SWUpdate Server for Yosemite","message":"Reactivate SWUpdate Server for Yosemite","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or later we need to supply password\n\ttry\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\nglobal resources_directory\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"netboot-station.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--check for updates to the updater script\ntry\n\ttell application \"Finder\"\n\t\tset scripts_directory to (container of (path to me) as text)\n\t\tset resources_directory to (container of container of (path to me) as text)\n\tend tell\n\t\n\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\tset local_version to do shell script \"\/bin\/cat \\\"\" & local_file & \"\\\"\"\n\t\n\tset current_version to do shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version\"\n\t--display dialog \"Local version of updater is: \" & local_version & \", current version is: \" & current_version\n\t\n\tif current_version > local_version then\n\t\t\n\t\t--download the new version\n\t\tset local_file to the POSIX path of (scripts_directory & \"updater.applescript\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.applescript > \\\"\" & local_file & \"\\\"\"\n\t\t--update the local version string\n\t\tset local_file to the POSIX path of (resources_directory & \"updater.version\")\n\t\tdo shell script \"\/usr\/bin\/curl https:\/\/raw.githubusercontent.com\/nilness\/mhqtools\/master\/updater.version > \\\"\" & local_file & \"\\\"\"\n\t\t\n\tend if\nend try\n\ntell application \"Finder\"\n\tset resources_directory to (container of container of (path to me) as text)\nend tell\n\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reset Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reset Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) exit; URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or later we need to supply password\n\ttry\n\t\tif (osVersion as number > 6) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\ttell application \"Finder\"\n\t\t\tset TheFile to (resources_directory & \"mhqreset.sh\") as alias\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\ton error error_message\n\t\tdisplay dialog error_message\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to (resources_directory & \"Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\t\n\t--delete the current preference file\n\t\n\ttell application \"Finder\"\n\t\tset oldFile to (path to preferences folder as string) & \"com.fakeapp.Fake.plist\"\n\t\tdelete file oldFile\n\tend tell\n\t\n\t\n\t-- create new preference file and set the properties we care about\n\tset theSetScript to \"\n#!\/bin\/bash\n\ntouch \\\"~\/Preferences\/com.fakeapp.Fake.plist\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\ndefaults write com.fakeapp.Fake \\\"FakePlaySuccessFailureSounds\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to (resources_directory & \"Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cc91124db655d0aab2e6ca1166503fc52e66dfe2","subject":"Delete iterm_bookmark.scpt; no longer used.","message":"Delete iterm_bookmark.scpt; no longer used.\n","repos":"jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles","old_file":"bin\/osx\/iterm_bookmark.scpt","new_file":"bin\/osx\/iterm_bookmark.scpt","new_contents":"","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u00004\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0004\u00003\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\r\u0000\u000f\u0000\u0002O\u0000\u0000\u0000\n\u00003\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0011\u00002\u0000\u0012\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u001b\u0000\u0015\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0015\u0000\u0003\u0000\u0016\n\u0000\u0004\nPssn\r\u0000\u0016\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0017\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0017\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\"\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u001c\u0000 \u0000\u001f\r\u0000\u001f\u0000\u00024\u0000\u0001\u0000\u001c\u0000 \u0000 \n\u0000\u0004\nPssn\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000!\r\u0000!\u0000\u0002O\u0000\u0000\u0000#\u00002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000'\u00001\u0000$\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000$\u0000\u0003\u0000%\n\u0000\u0004\niTxt\r\u0000%\u0000\u0003l\u0000\u0005\u0000)\u0000-\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000'\u0000(\r\u0000'\u0000\u00024\u0000\u0000\u0000*\u0000-\u0000)\n\u0000\u0004\ncobj\r\u0000)\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0002\r\u0000(\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0003l\u0001\u0000\u0000\n\u0000\u000e\u0000*\r\u0000*\u0000\u00024\u0000\u0001\u0000\n\u0000\u000e\u0000+\n\u0000\u0004\nPtrm\r\u0000+\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000,\u000f\u0000,\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0755\tshell.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002:Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000:X\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0755\u0000\u0002\u0000#Macintosh HD:Applications:shell.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/shell.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000-\r\u0000-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000.\u0000\/\u00000\u0001\u0000\u0000\u0010\u0000.\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u000e\u0000\/\u0000\u0007\u0010\u0000\b\u00001\u00002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00001\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00002\u0000\t\u0000,\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nPtrm\n\u0000\u0004\nPssn\n\u0000\u0004\ncobj\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u0000\r0\u0000\tmysession\u0000\u0000\n\u0000\u0004\niTxt\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u00005\u0012\u00001*j\f\u0000\u0001O*k\/\u0012\u0000#*k\/l\f\u0000\u0005O*i\/EO\u0012\u0000\f*l\/l\f\u0000\bUUU\u000f\u000e\u00000\u0000\u0001\u0014\u00003\u000e\u00003\u0000\u0003\u0018\u00004\u000e\u00004\u0000\u0003\u0018\u0000,\n\u0000\u0004\nPtrm\u0003\u0000\u0001\n\u0000\u0004\nPssn\u0003\u0000\u0002\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6152fd762bfa11bbcea3880ddb957594933e714b","subject":"Remove debug code.","message":"Remove debug code.\n","repos":"katsuma\/itunes-client","old_file":"scripts\/track\/finder.tmpl.scpt","new_file":"scripts\/track\/finder.tmpl.scpt","new_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & my escape_quote(name of specified_track) & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & my escape_quote(album of specified_track) & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & my escape_quote(artist of specified_track) & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n\n\non escape_quote(someText)\n return replaceText(someText, \"\\\"\", \"\\\\\\\"\")\nend escape_quote\n\n(*\n https:\/\/discussions.apple.com\/thread\/4588230?start=0&tstart=0\n*)\non replaceText(someText, oldItem, newItem)\n set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, oldItem}\n try\n set {itemList, AppleScript's text item delimiters} to {text items of someText, newItem}\n set {someText, AppleScript's text item delimiters} to {itemList as text, tempTID}\n on error errorMessage number errorNumber -- oops\n set AppleScript's text item delimiters to tempTID\n error errorMessage number errorNumber -- pass it on\n end try\n \n return someText\nend replaceText\n","old_contents":"tell application \"iTunes\"\n set specified_tracks to (every track whose #{conditions})\n\n\n\tset json to \"[\"\n\n\trepeat with specified_track in specified_tracks\n set props to {}\n\n set prop_name to name of specified_track\n\n set end of props to \"{\"\n set end of props to (\"\\\"persistent_id\\\":\\\"\" & persistent ID of specified_track & \"\\\",\")\n set end of props to (\"\\\"name\\\":\\\"\" & my escape_quote(name of specified_track) & \"\\\",\")\n set end of props to (\"\\\"album\\\":\\\"\" & my escape_quote(album of specified_track) & \"\\\",\")\n set end of props to (\"\\\"artist\\\":\\\"\" & my escape_quote(artist of specified_track) & \"\\\",\")\n set end of props to (\"\\\"track_count\\\":\\\"\" & track count of specified_track & \"\\\",\")\n set end of props to (\"\\\"track_number\\\":\\\"\" & track number of specified_track & \"\\\"\")\n set end of props to \"}\"\n\n set json to json & props as string & \",\"\n end repeat\n\n set json to json & \"null]\"\n return json\n\nend tell\n\n\non escape_quote(someText)\n return replaceText(someText, \"\\\"\", \"\\\\\\\"\")\nend escape_quote\n\n(*\n https:\/\/discussions.apple.com\/thread\/4588230?start=0&tstart=0\n*)\non replaceText(someText, oldItem, newItem)\n set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, oldItem}\n try\n set {itemList, AppleScript's text item delimiters} to {text items of someText, newItem}\n set {someText, AppleScript's text item delimiters} to {itemList as text, tempTID}\n on error errorMessage number errorNumber -- oops\n set AppleScript's text item delimiters to tempTID\n error errorMessage number errorNumber -- pass it on\n end try\n \n return someText\nend replaceText\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3f0cd57dc8cb5a0a55b65dafb789c82d63d9e251","subject":"Scripts update","message":"Scripts update\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000B\u0000o\u0000o\u0000k\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000?\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000?\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000@\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000@\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000]\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000]\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000h\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000^\u0000h\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000i\u0000s\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000i\u0000s\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000n\u0000o}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000t\u0000~\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000t\u0000~z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000x\u0000yx\u000bx\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001o\u0000\u0000\u0000y\u0000zv\u000bv\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002w\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ut\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000s\u0000r\u000bs\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u000f\u0002\u0000\u0000\u0002\u0000p\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000(\u0002p\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0002\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002r\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0007\u0002\u0001\u0007\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0006\"\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0003\u0002U\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0000\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0000.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\b\u0000R\u0000o\u0000o\u0000n\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0001\b\u0001O)(\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0001\b'\u0001P&\u000b'\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0000\u0001\u0002\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003%\u000b%\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W$\r\u0001W\u0000\u0001o\u0000\u0000\u0001\u0003\u0001\u0004#\u000b#\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002$\u0000\u0000\u0002&\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001N\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\t\u0001\u0013\u0001Z\"!\r\u0001Z\u0000\u0003I\u0000\u0000\u0001\t\u0001\u0013 \u0001[\u001f\u000b \u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001[\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0001^\u000e\u0001^\u0000\u0001\u0001_\u0011\u0001_\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001]\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001o\u0000\u0000\u0001\r\u0001\u000e\u001e\u000b\u001e\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001a\u0000\u0002\u0001b\u001d\r\u0001b\u0000\u0001o\u0000\u0000\u0001\u000e\u0001\u000f\u001c\u000b\u001c\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0003l\u0000\u0002\u0001\u0014\u0001#\u0001e\u001b\u001a\r\u0001e\u0000\u0003I\u0000\u0000\u0001\u0014\u0001#\u0019\u0001f\u0018\u000b\u0019\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0018\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001h\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019\u0017\u000b\u0017\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001J\u0000\u0000\u0001\u0019\u0001\u001f\u0001n\u0002\u0001n\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001a\u0015\u0003\u0015\u0006\"\u0002\u0001p\u0000\u0002\u0001q\u0014\r\u0001q\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0013\u0003\u0013\u0003\u0002\u0014\u0000\u0000\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001d\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0002\u0001$\u0001<\u0001t\u0012\u0011\r\u0001t\u0000\u0003I\u0000\u0000\u0001$\u0001<\u0010\u0001u\u000f\u000b\u0010\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001u\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0001m\u0000\u0000\u0001%\u0001(\u0001x\u000e\u0001x\u0000\u0001\u0001y\u0011\u0001y\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001w\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0001J\u0000\u0000\u0001(\u00010\u0001|\u0002\u0001|\u0000\u0002\u0001}\u0001~\r\u0001}\u0000\u0001m\u0000\u0000\u0001(\u0001+\u000e\u0003\u000e\u0000\u000f\u0002\u0001~\u0000\u0002\u0001\r\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.\f\u0003\f\u0003]\u0002\r\u0000\u0000\u0002\u0001{\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001J\u0000\u0000\u00010\u00018\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\n\u0003\n\u0003R\u0002\u0001\u0000\u0002\u0001\t\r\u0001\u0000\u0001m\u0000\u0000\u00013\u00016\b\u0003\b\u00024\u0002\t\u0000\u0000\u0002\u000b\u0000\u0000\u0002\u000f\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0001s\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001=\u0001L\u0001\u0007\u0006\r\u0001\u0000\u0003I\u0000\u0000\u0001=\u0001L\u0005\u0001\u0004\u000b\u0005\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001>\u0001A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001A\u0001B\u0003\u000b\u0003\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\r\u0001\u0000\u0001J\u0000\u0000\u0001B\u0001H\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001B\u0001C\u0001\u0003\u0001\u0006\"\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0003\u0003\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0004\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001M\u0001W\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001M\u0001W\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001N\u0001Q\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000T\u0000I\u0000D\u0000A\u0000L\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001Q\u0001R\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001R\u0001S\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001X\u0001n\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001X\u0001n\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001Y\u0001\\\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001\\\u0001b\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\\\u0001_\u0003\u0000\u000f\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001_\u0001`\u0003\u0000(\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001b\u0001j\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001b\u0001e\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001e\u0001h\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001o\u0001~\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001o\u0001~\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001p\u0001s\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001s\u0001t\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001t\u0001z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001t\u0001u\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001~\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001X\u0001\u0002\u0001\u0000\u0002\u0001c\u0001\u0002\u0001\u0000\u0002\u0001r\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000,\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001S\u0001^\u0001i\u0001x\u0001\u0001\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014m+\u0000\u000bO*a\u0000\u0015a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001aa\u0000\u0010lvm+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#a\u0000\u0010lvm+\u0000\u000bO*a\u0000$a\u0000\u0016a\u0000%lva\u0000&a\u0000'lvm+\u0000\u000bO*a\u0000(a\u0000\u0010lvm+\u0000\u000bO*a\u0000)m+\u0000\u000bO*a\u0000*a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000+a\u0000\u0010lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000B\u0000o\u0000o\u0000k\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000?\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000?\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000@\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000@\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000]\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000]\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000h\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000^\u0000h\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000i\u0000s\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000i\u0000s\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000n\u0000o}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000t\u0000~\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000t\u0000~z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000x\u0000yx\u000bx\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001o\u0000\u0000\u0000y\u0000zv\u000bv\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002w\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ut\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000s\u0000r\u000bs\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u000f\u0002\u0000\u0000\u0002\u0000p\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000(\u0002p\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0002\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002r\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0007\u0002\u0001\u0007\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0006\"\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0003\u0002U\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0001\u0002\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0001\u0002.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\b\u0000R\u0000o\u0000o\u0000n\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001J\u0000\u0000\u0000\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001N\u0001O\r\u0001N\u0000\u0001m\u0000\u0000\u0000\u0000*\u0003*\u0006\"\u0002\u0001O\u0000\u0002\u0001P)\r\u0001P\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u0003\u0002)\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\r\u0001S'&\r\u0001S\u0000\u0003I\u0000\u0000\u0001\u0003\u0001\r%\u0001T$\u000b%\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0007\u0001W\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001V\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b#\u000b#\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001Z\u0000\u0002\u0001[\"\r\u0001[\u0000\u0001o\u0000\u0000\u0001\b\u0001\t!\u000b!\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\"\u0000\u0000\u0002$\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001R\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0002\u0001\u000e\u0001\u0018\u0001^ \u001f\r\u0001^\u0000\u0003I\u0000\u0000\u0001\u000e\u0001\u0018\u001e\u0001_\u001d\u000b\u001e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001a\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u001c\u000b\u001c\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u001b\r\u0001f\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0014\u001a\u000b\u001a\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001]\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003l\u0000\u0002\u0001\u0019\u0001(\u0001i\u0019\u0018\r\u0001i\u0000\u0003I\u0000\u0000\u0001\u0019\u0001(\u0017\u0001j\u0016\u000b\u0017\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001m\u000e\u0001m\u0000\u0001\u0001n\u0011\u0001n\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001l\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u0015\u000b\u0015\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001p\u0000\u0002\u0001q\u0014\r\u0001q\u0000\u0001J\u0000\u0000\u0001\u001e\u0001$\u0001r\u0002\u0001r\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0001\u001e\u0001\u001f\u0013\u0003\u0013\u0006\"\u0002\u0001t\u0000\u0002\u0001u\u0012\r\u0001u\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"\u0011\u0003\u0011\u0003\u0002\u0012\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0016\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0001h\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0003l\u0000\u0002\u0001)\u0001A\u0001x\u0010\u000f\r\u0001x\u0000\u0003I\u0000\u0000\u0001)\u0001A\u000e\u0001y\r\u000b\u000e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0001m\u0000\u0000\u0001*\u0001-\u0001|\u000e\u0001|\u0000\u0001\u0001}\u0011\u0001}\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001{\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001J\u0000\u0000\u0001-\u00015\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001-\u00010\f\u0003\f\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\n\u0003\n\u0003]\u0002\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\t\r\u0001\u0000\u0001J\u0000\u0000\u00015\u0001=\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00015\u00018\b\u0003\b\u0003R\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00018\u0001;\u0006\u0003\u0006\u00024\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002\r\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0001w\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001B\u0001Q\u0001\u0005\u0004\r\u0001\u0000\u0003I\u0000\u0000\u0001B\u0001Q\u0003\u0001\u0002\u000b\u0003\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001F\u0001G\u0001\u000b\u0001\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001H\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001K\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001R\u0001a\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001R\u0001a\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000T\u0000I\u0000D\u0000A\u0000L\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001V\u0001W\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001W\u0001]\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001W\u0001X\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001X\u0001[\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001b\u0001x\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001b\u0001x\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001c\u0001f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001f\u0001l\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0003\u0000\u000f\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001i\u0001j\u0003\u0000(\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001l\u0001t\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001y\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001y\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001}\u0001~\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001~\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001~\u0001\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001Q\u0001\u0002\u0001\u0000\u0002\u0001\\\u0001\u0002\u0001\u0000\u0002\u0001g\u0001\u0002\u0001\u0000\u0002\u0001v\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000,\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001W\u0001b\u0001m\u0001|\u0001\u0001\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014m+\u0000\u000bO*a\u0000\u0015a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001aa\u0000\u0010lvm+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 a\u0000\u0010lvm+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#a\u0000\u0010lvm+\u0000\u000bO*a\u0000$a\u0000\u0016a\u0000%lva\u0000&a\u0000'lvm+\u0000\u000bO*a\u0000(a\u0000\u0010lvm+\u0000\u000bO*a\u0000)a\u0000\u0010lvm+\u0000\u000bO*a\u0000*a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000+a\u0000\u0010lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"503881ae6b5f4b236bc0b559302b23615f44516c","subject":"allow for unusual short date strings","message":"allow for unusual short date strings","repos":"Mausy5043\/OSX-EmptyTrash","old_file":"dated_deleter.scpt","new_file":"dated_deleter.scpt","new_contents":"-- stolen from: https:\/\/discussions.apple.com\/thread\/3172966\nproperty keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n return (date d) \u2264 short date string of ((current date) - daysToWait * days)\nend checkDate\n","old_contents":"-- stolen from: https:\/\/discussions.apple.com\/thread\/3172966\nproperty keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n return (date d) \u2264 (current date) - daysToWait * days\nend checkDate\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9bab706158ccd2368ecfc57de6e215a7c9e8624f","subject":"Do not create TIFF from artwork if it already exists","message":"Do not create TIFF from artwork if it already exists\n\nThis prevents the creation of the artwork TIFF in get_artwork if the TIFF\nalready exists.\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_artwork.applescript","new_file":"lib\/scripts\/get_artwork.applescript","new_contents":"on replace_chars(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\non file_exists(filePath)\n tell application \"Finder\" to return exists filePath as POSIX file\nend file_exists\n\ntell application \"Spotify\"\n set currentArtwork to current track's artwork\n set savePath to POSIX path of (path to temporary items from user domain as string) & my replace_chars(current track's id,\":\",\"_\")\n set tiffPath to (savePath & \".tiff\")\n set pngPath to (savePath & \".png\")\nend tell\n\n-- don't do the image events dance when the file already exists\nif my file_exists(pngPath) then return pngPath\n\ntell application \"System Events\"\n if not (my file_exists(tiffPath)) then\n set fileRef to (open for access tiffPath with write permission)\n write currentArtwork to fileRef\n close access fileRef\n end\n\n tell application \"Image Events\"\n launch\n set theImage to open tiffPath\n save theImage as PNG in pngPath\n quit\n end tell\n\n delete file tiffPath\n quit\nend tell\n\nreturn pngPath\n","old_contents":"on replace_chars(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\ntell application \"Spotify\"\n set currentArtwork to current track's artwork\n set savePath to POSIX path of (path to temporary items from user domain as string) & my replace_chars(current track's id,\":\",\"_\")\n set tiffPath to (savePath & \".tiff\")\n set pngPath to (savePath & \".png\")\nend tell\n\n-- don't do the image events dance when the file already exists\ntell application \"Finder\"\n if exists pngPath as POSIX file then\n return pngPath\n end if\nend tell\n\ntell application \"System Events\"\n set fileRef to (open for access tiffPath with write permission)\n write currentArtwork to fileRef\n close access fileRef\n\n tell application \"Image Events\"\n launch\n set theImage to open tiffPath\n save theImage as PNG in pngPath\n quit\n end tell\n\n delete file tiffPath\n quit\nend tell\n\nreturn pngPath\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"84e0cc6803f8895c8045daf93525b3a6a644af38","subject":" windowSize.applescript, from darwin14","message":" windowSize.applescript, from darwin14\n","repos":"rcmdnk\/AppleScript","old_file":"windowSize.applescript","new_file":"windowSize.applescript","new_contents":"property DEF_XSIZE : 1\nproperty DEF_YSIZE : 1\nproperty DEF_XPOS : 0\nproperty DEF_YPOS : 0\n\nproperty DEF_LEFT_MARGIN : 10\nproperty DEF_RIGHT_MARGIN : 10\nproperty DEF_TOP_MARGIN : 10\nproperty DEF_BOTTOM_MARGIN : 10\n\nproperty DEF_APPNAME : \"\"\nproperty DEF_WINDOWNUMBER : \"\"\nproperty DEF_MONPOSX : \"\"\nproperty DEF_MONPOSY : \"\"\nproperty DEF_RESIZE : 1\nproperty DEF_DIRECTION : \"\"\n\nproperty DEF_MOVEFORMON_FLAG : true\nproperty DEF_DEBUG_LEVEL : 0\n\nproperty GEEKTOOL_WINDOW : 1\nproperty GEEKTOOL_MARGIN : 10\n\n-- Window size main function\non windowSize(pars)\n\t-- Set Parameters\n\tset xsize to xsize of (pars & {xsize:DEF_XSIZE})\n\tset ysize to ysize of (pars & {ysize:DEF_YSIZE})\n\tset xpos to xpos of (pars & {xpos:DEF_XPOS})\n\tset ypos to ypos of (pars & {ypos:DEF_YPOS})\n\tset leftmargin to leftmargin of (pars & {leftmargin:DEF_LEFT_MARGIN})\n\tset rightmargin to rightmargin of (pars & {rightmargin:DEF_RIGHT_MARGIN})\n\tset topmargin to topmargin of (pars & {topmargin:DEF_TOP_MARGIN})\n\tset bottommargin to bottommargin of (pars & {bottommargin:DEF_BOTTOM_MARGIN})\n\tset appName to appName of (pars & {appName:DEF_APPNAME})\n\tset windowNumber to windowNumber of (pars & {windowNumber:DEF_WINDOWNUMBER})\n\tset monPosX to monPosX of (pars & {monPosX:DEF_MONPOSX})\n\tset monPosY to monPosY of (pars & {monPosY:DEF_MONPOSY})\n\tset resize to resize of (pars & {resize:DEF_RESIZE})\n\tset direction to direction of (pars & {direction:DEF_DIRECTION})\n\tset moveformon_flag to moveformon_flag of (pars & {moveformon_flag:DEF_MOVEFORMON_FLAG})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- Debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- Get application name and window number, if appName is \"\", if windowNumber is not set, set 1\n\tif appName is \"\" then\n\t\ttell application \"System Events\"\n\t\t\tset pList to name of every process whose frontmost is true\n\t\t\tset appName to item 1 of pList\n\t\tend tell\n\tend if\n\tif windowNumber is \"\" then\n\t\tset windowNumber to 1\n\tend if\n\t\n\tif debug_level > 0 then\n\t\tlog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \",\" & moveformon_flag & \",\" & debug_level & \")\"\n\t\tif debug_level > 5 then\n\t\t\tdisplay dialog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \",\" & moveformon_flag & \",\" & debug_level & \")\"\n\t\tend if\n\tend if\n\t\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\t\n\t-- First, move monitor\n\tif moveformon_flag then\n\t\tset moveForMonScpt to scriptPath & \"moveForMon.scpt\"\n\t\tset moveformon to load script file moveForMonScpt\n\t\tmoveformon's moveformon({all:false})\n\tend if\n\t\n\t-- Get window position\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\tset winPos to position of topWindow\n\t\t\tset winSize to size of topWindow\n\t\t\tset winPosX to item 1 of winPos\n\t\t\tset winPosY to item 2 of winPos\n\t\t\tset winSizeX to item 1 of winSize\n\t\t\tset winSizeY to item 2 of winSize\n\t\t\tset winPosRT to {winPosX + winSizeX, winPosY}\n\t\t\tset winPosLB to {winPosX, winPosY + winSizeY}\n\t\t\tset winPosRB to {winPosX + winSizeX, winPosY + winSizeY}\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\tlog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tif debug_level > 5 then\n\t\t\t\t\tdisplay dialog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\t\tdisplay dialog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\tend tell\n\t\n\t-- Get screen (display) size\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\tset vframes to gf's getAllVisibleFrames()\n\tset getCurrentFrameScpt to scriptPath & \"getCurrentFrame.scpt\"\n\tset gcf to load script file getCurrentFrameScpt\n\t\n\tif monPosX is not \"\" and monPosY is not \"\" then\n\t\tset cf to gcf's getCurrentFrame(monPosX, monPosY, vframes)\n\telse\n\t\tset cf to gcf's getCurrentFrame(item 1 of winPos, item 2 of winPos, vframes)\n\t\tif cf is 0 then\n\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosRT, item 2 of winPosRT, vframes)\n\t\t\tif cf is 0 then\n\t\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosLB, item 2 of winPosLB, vframes)\n\t\t\t\tif cf is 0 then\n\t\t\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosRB, item 2 of winPosRB, vframes)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\tset recordlib to scriptPath & \"recordlib.scpt\"\n\tset rb to load script file recordlib\n\t\n\tset frames to rb's getKeyValue(vframes, item 1 of cf)\n\tset frame to item (item 2 of cf) of frames\n\t\n\t-- Move screen\n\tif direction is not \"\" then\n\t\tset fname to item 1 of cf\n\t\tset nout to item 2 of cf\n\t\tset nleft to length of rb's getKeyValue(vframes, \"left_frames\")\n\t\tset nright to length of rb's getKeyValue(vframes, \"right_frames\")\n\t\tset ntop to length of rb's getKeyValue(vframes, \"top_frames\")\n\t\tset nbottom to length of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\tif direction is \"LEFT\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nleft > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"left_frames\" then\n\t\t\t\tif nleft > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"right_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"RIGHT\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nright > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"right_frames\" then\n\t\t\t\tif nright > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"left_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"UP\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif ntop > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"top_frames\" then\n\t\t\t\tif ntop > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"bottom_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"DOWN\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nbottom > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"bottom_frames\" then\n\t\t\t\tif nbottom > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"top_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\tset dPosX to origin's x of frame\n\tset dPosY to origin's y of frame\n\tset dWidth to |size|'s width of frame\n\tset dHeight to |size|'s height of frame\n\tif debug_level > 0 then\n\t\tlog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tif debug_level > 5 then\n\t\t\tdisplay dialog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tend if\n\tend if\n\t\n\t\n\t-- Get GeekTool's position\n\ttell application \"System Events\"\n\t\ttry\n\t\t\ttell process \"GeekTool Helper\"\n\t\t\t\tset topWindow to window GEEKTOOL_WINDOW\n\t\t\t\tset gtPos to position of topWindow\n\t\t\tend tell\n\t\t\tset gtflag to 1\n\t\ton error\n\t\t\tset gtflag to 0\n\t\tend try\n\tend tell\n\t\n\t-- Check if the window and GeekTool are in same screen\n\tif gtflag is 1 then\n\t\tset gtsvs to gf's getVisibleFrame(item 1 of gtPos, item 2 of gtPos)\n\t\tset gtdPosX to origin's x of gtsvs\n\t\tset gtdPosY to origin's y of gtsvs\n\t\tif dPosX is gtdPosX and dPosY is gtdPosY then\n\t\t\ttry\n\t\t\t\tset gtSize to size of topWindow\n\t\t\t\tset geekToolWidth to item 1 of gtSize\n\t\t\t\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t\t\ton error\n\t\t\t\tset geekToolWidth to 0\n\t\t\tend try\n\t\telse\n\t\t\tset geekToolWidth to 0\n\t\tend if\n\tend if\n\t--if item 1 of winPos < 0 then\n\t--\tset geekToolWidth to 160\n\t--\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t--else\n\t--\tset geekToolWidth to 0\n\t--end if\n\t\n\t-- Subtract geekToolWidth from display width\n\tset dWidth to dWidth - geekToolWidth\n\t\n\t-- Resize\/move\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\t-- Set screen size w\/o margins\n\t\t\t--set useSize to {dWidth - leftmargin - rightmargin, dHeight - topmargin - bottommargin}\n\t\t\t--if debug_level > 0 then\n\t\t\t--\tlog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tif debug_level > 5 then\n\t\t\t--\t\tdisplay dialog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tend if\n\t\t\t--end if\n\t\t\t-- No margin w\/o edges of screen\n\t\t\t--set wpos to {dPosX + leftmargin + xpos * (item 1 of useSize), dPosY + topmargin + ypos * (item 2 of useSize)}\n\t\t\t--set wsize to {xsize * (item 1 of useSize), ysize * (item 2 of useSize)}\n\t\t\t\n\t\t\t-- Set margin in any place\n\t\t\tset wpos to {dPosX + leftmargin + xpos * dWidth, dPosY + topmargin + ypos * dHeight}\n\t\t\tset wsize to {xsize * dWidth - leftmargin - rightmargin, ysize * dHeight - topmargin - bottommargin}\n\t\t\t\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\tlog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tif debug_level > 5 then\n\t\t\t\t\tdisplay dialog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tdisplay dialog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\t\ttell topWindow\n\t\t\t\tif debug_level > 0 then\n\t\t\t\t\tlog \"preoperties before= \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\t\tset position to wpos\n\t\t\t\tif resize is 1 then\n\t\t\t\t\tset size to wsize\n\t\t\t\t\t-- When the original height is larger than the display size,\n\t\t\t\t\t-- the resize couldn't work well.\n\t\t\t\t\t-- Need to resize lower edge to internal of the display ({1,1})\n\t\t\t\t\t-- then resize to target size. \n\t\t\t\t\t-- -> resize to {1,1} could make a crash for such a terminal with screen.\n\t\t\t\t\t-- (maybe too small to resize windows.)\n\t\t\t\t\t-- use {100,100} for safe.\n\t\t\t\t\t-- if height is longer than display size, width can't be shorten than display size.\n\t\t\t\t\t-- Then, sometime only height can be changed first in the below procedure,\n\t\t\t\t\t-- then, need one more resize for the width (5 times for safe, but normamlly it should be fixed in a 2 times.)\n\t\t\t\t\trepeat 5 times\n\t\t\t\t\t\tset winSize to size\n\t\t\t\t\t\tif item 1 of winSize > item 1 of wsize or item 2 of winSize > item 2 of wsize then\n\t\t\t\t\t\t\tset size to {100, 100}\n\t\t\t\t\t\t\tset size to wsize\n\t\t\t\t\t\t\tdelay 0.1\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend windowSize\n\non run\n\twindowSize({})\nend run\n","old_contents":"property DEF_XSIZE : 1\nproperty DEF_YSIZE : 1\nproperty DEF_XPOS : 0\nproperty DEF_YPOS : 0\n\nproperty DEF_LEFT_MARGIN : 10\nproperty DEF_RIGHT_MARGIN : 10\nproperty DEF_TOP_MARGIN : 10\nproperty DEF_BOTTOM_MARGIN : 10\n\nproperty DEF_APPNAME : \"\"\nproperty DEF_WINDOWNUMBER : \"\"\nproperty DEF_MONPOSX : \"\"\nproperty DEF_MONPOSY : \"\"\nproperty DEF_RESIZE : 1\nproperty DEF_DIRECTION : \"\"\n\nproperty DEF_MOVEFORMON_FLAG : true\nproperty DEF_DEBUG_LEVEL : 0\n\nproperty GEEKTOOL_WINDOW : 1\nproperty GEEKTOOL_MARGIN : 10\n\n-- Window size main function\non windowSize(pars)\n\t-- Set Parameters\n\tset xsize to xsize of (pars & {xsize:DEF_XSIZE})\n\tset ysize to ysize of (pars & {ysize:DEF_YSIZE})\n\tset xpos to xpos of (pars & {xpos:DEF_XPOS})\n\tset ypos to ypos of (pars & {ypos:DEF_YPOS})\n\tset leftmargin to leftmargin of (pars & {leftmargin:DEF_LEFT_MARGIN})\n\tset rightmargin to rightmargin of (pars & {rightmargin:DEF_RIGHT_MARGIN})\n\tset topmargin to topmargin of (pars & {topmargin:DEF_TOP_MARGIN})\n\tset bottommargin to bottommargin of (pars & {bottommargin:DEF_BOTTOM_MARGIN})\n\tset appName to appName of (pars & {appName:DEF_APPNAME})\n\tset windowNumber to windowNumber of (pars & {windowNumber:DEF_WINDOWNUMBER})\n\tset monPosX to monPosX of (pars & {monPosX:DEF_MONPOSX})\n\tset monPosY to monPosY of (pars & {monPosY:DEF_MONPOSY})\n\tset resize to resize of (pars & {resize:DEF_RESIZE})\n\tset direction to direction of (pars & {direction:DEF_DIRECTION})\n\tset moveformon_flag to moveformon_flag of (pars & {moveformon_flag:DEF_MOVEFORMON_FLAG})\n\tset debug_level to debug_level of (pars & {debug_level:DEF_DEBUG_LEVEL})\n\t\n\t-- Debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- Get application name and window number, if appName is \"\", if windowNumber is not set, set 1\n\tif appName is \"\" then\n\t\ttell application \"System Events\"\n\t\t\tset pList to name of every process whose frontmost is true\n\t\t\tset appName to item 1 of pList\n\t\tend tell\n\tend if\n\tif windowNumber is \"\" then\n\t\tset windowNumber to 1\n\tend if\n\t\n\tif debug_level > 0 then\n\t\tlog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \",\" & moveformon_flag & \",\" & debug_level & \")\"\n\t\tif debug_level > 5 then\n\t\t\tdisplay dialog \"windowSize(\" & xsize & \", \" & ysize & \", \" & xpos & \", \" & ypos & \", \" & leftmargin & \", \" & rightmargin & \", \" & topmargin & \", \" & bottommargin & \", \" & appName & \", \" & windowNumber & \", \" & monPosX & \", \" & monPosY & \",\" & resize & \",\" & moveformon_flag & \",\" & debug_level & \")\"\n\t\tend if\n\tend if\n\t\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\t\n\t-- First, move monitor\n\tif moveformon_flag then\n\t\tset moveForMonScpt to scriptPath & \"moveForMon.scpt\"\n\t\tset moveformon to load script file moveForMonScpt\n\t\tmoveformon's moveformon({all:false})\n\tend if\n\t\n\t-- Get window position\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\tset winPos to position of topWindow\n\t\t\tset winSize to size of topWindow\n\t\t\tset winPosX to item 1 of winPos\n\t\t\tset winPosY to item 2 of winPos\n\t\t\tset winSizeX to item 1 of winSize\n\t\t\tset winSizeY to item 2 of winSize\n\t\t\tset winPosRT to {winPosX + winSizeX, winPosY}\n\t\t\tset winPosLB to {winPosX, winPosY + winSizeY}\n\t\t\tset winPosRB to {winPosX + winSizeX, winPosY + winSizeY}\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\tlog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tif debug_level > 5 then\n\t\t\t\t\tdisplay dialog \"winPos(\" & winPosX & \", \" & winPosY & \")\"\n\t\t\t\t\tdisplay dialog \"winSize(\" & winSizeX & \", \" & winSizeY & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\tend tell\n\t\n\t-- Get screen (display) size\n\tset getFrameScpt to scriptPath & \"getFrame.scpt\"\n\tset gf to load script file getFrameScpt\n\tset vframes to gf's getAllVisibleFrames()\n\tset getCurrentFrameScpt to scriptPath & \"getCurrentFrame.scpt\"\n\tset gcf to load script file getCurrentFrameScpt\n\t\n\tif monPosX is not \"\" and monPosY is not \"\" then\n\t\tset cf to gcf's getCurrentFrame(monPosX, monPosY, vframes)\n\telse\n\t\tset cf to gcf's getCurrentFrame(item 1 of winPos, item 2 of winPos, vframes)\n\t\tif cf is 0 then\n\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosRT, item 2 of winPosRT, vframes)\n\t\t\tif cf is 0 then\n\t\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosLB, item 2 of winPosLB, vframes)\n\t\t\t\tif cf is 0 then\n\t\t\t\t\tset cf to gcf's getCurrentFrame(item 1 of winPosRB, item 2 of winPosRB, vframes)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\tset recordlib to scriptPath & \"recordlib.scpt\"\n\tset rb to load script file recordlib\n\t\n\tset frames to rb's getKeyValue(vframes, item 1 of cf)\n\tset frame to item (item 2 of cf) of frames\n\t\n\t-- Move screen\n\tif direction is not \"\" then\n\t\tset fname to item 1 of cf\n\t\tset nout to item 2 of cf\n\t\tset nleft to length of rb's getKeyValue(vframes, \"left_frames\")\n\t\tset nright to length of rb's getKeyValue(vframes, \"right_frames\")\n\t\tset ntop to length of rb's getKeyValue(vframes, \"top_frames\")\n\t\tset nbottom to length of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\tif direction is \"LEFT\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nleft > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"left_frames\" then\n\t\t\t\tif nleft > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"right_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"RIGHT\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nright > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"right_frames\" then\n\t\t\t\tif nright > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"right_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"left_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"left_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"UP\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif ntop > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"top_frames\" then\n\t\t\t\tif ntop > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"bottom_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\telse if direction is \"DOWN\" then\n\t\t\tif fname is \"main_frames\" then\n\t\t\t\tif nbottom > 0 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"bottom_frames\" then\n\t\t\t\tif nbottom > nout then\n\t\t\t\t\tset frame to item (nout + 1) of rb's getKeyValue(vframes, \"bottom_frames\")\n\t\t\t\tend if\n\t\t\telse if fname is \"top_frames\" then\n\t\t\t\tif nout is 1 then\n\t\t\t\t\tset frame to item 1 of rb's getKeyValue(vframes, \"main_frames\")\n\t\t\t\telse\n\t\t\t\t\tset frame to item (nout - 1) of rb's getKeyValue(vframes, \"top_frames\")\n\t\t\t\tend if\n\t\t\tend if\n\t\tend if\n\tend if\n\t\n\tset dPosX to origin's x of frame\n\tset dPosY to origin's y of frame\n\tset dWidth to |size|'s width of frame\n\tset dHeight to |size|'s height of frame\n\tif debug_level > 0 then\n\t\tlog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tif debug_level > 5 then\n\t\t\tdisplay dialog \"svs(\" & dPosX & \", \" & dPosY & \", \" & dWidth & \", \" & dHeight & \")\"\n\t\tend if\n\tend if\n\t\n\t\n\t-- Get GeekTool's position\n\ttell application \"System Events\"\n\t\ttry\n\t\t\ttell process \"GeekTool Helper\"\n\t\t\t\tset topWindow to window GEEKTOOL_WINDOW\n\t\t\t\tset gtPos to position of topWindow\n\t\t\tend tell\n\t\t\tset gtflag to 1\n\t\ton error\n\t\t\tset gtflag to 0\n\t\tend try\n\tend tell\n\t\n\t-- Check if the window and GeekTool are in same screen\n\tif gtflag is 1 then\n\t\tset gtsvs to gf's getVisibleFrame(item 1 of gtPos, item 2 of gtPos)\n\t\tset gtdPosX to origin's x of gtsvs\n\t\tset gtdPosY to origin's y of gtsvs\n\t\tif dPosX is gtdPosX and dPosY is gtdPosY then\n\t\t\ttry\n\t\t\t\tset gtSize to size of topWindow\n\t\t\t\tset geekToolWidth to item 1 of gtSize\n\t\t\t\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t\t\ton error\n\t\t\t\tset geekToolWidth to 0\n\t\t\tend try\n\t\telse\n\t\t\tset geekToolWidth to 0\n\t\tend if\n\tend if\n\t--if item 1 of winPos < 0 then\n\t--\tset geekToolWidth to 160\n\t--\tset geekToolWidth to geekToolWidth + GEEKTOOL_MARGIN -- additional margin\n\t--else\n\t--\tset geekToolWidth to 0\n\t--end if\n\t\n\t-- Subtract geekToolWidth from display width\n\tset dWidth to dWidth - geekToolWidth\n\t\n\t-- Resize\/move\n\ttell application \"System Events\"\n\t\ttell process appName\n\t\t\ttry\n\t\t\t\tset topWindow to item windowNumber of (every window whose focused is true)\n\t\t\ton error\n\t\t\t\tset topWindow to window windowNumber\n\t\t\tend try\n\t\t\t-- Set screen size w\/o margins\n\t\t\t--set useSize to {dWidth - leftmargin - rightmargin, dHeight - topmargin - bottommargin}\n\t\t\t--if debug_level > 0 then\n\t\t\t--\tlog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tif debug_level > 5 then\n\t\t\t--\t\tdisplay dialog \"useSize(\" & item 1 of useSize & \", \" & item 2 of useSize & \")\"\n\t\t\t--\tend if\n\t\t\t--end if\n\t\t\t-- No margin w\/o edges of screen\n\t\t\t--set wpos to {dPosX + leftmargin + xpos * (item 1 of useSize), dPosY + topmargin + ypos * (item 2 of useSize)}\n\t\t\t--set wsize to {xsize * (item 1 of useSize), ysize * (item 2 of useSize)}\n\t\t\t\n\t\t\t-- Set margin in any place\n\t\t\tset wpos to {dPosX + leftmargin + xpos * dWidth, dPosY + topmargin + ypos * dHeight}\n\t\t\tset wsize to {xsize * dWidth - leftmargin - rightmargin, ysize * dHeight - topmargin - bottommargin}\n\t\t\t\n\t\t\tif debug_level > 0 then\n\t\t\t\tlog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\tlog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tif debug_level > 5 then\n\t\t\t\t\tdisplay dialog \"wpos(\" & item 1 of wpos & \", \" & item 2 of wpos & \")\"\n\t\t\t\t\tdisplay dialog \"wsize(\" & item 1 of wsize & \", \" & item 2 of wsize & \")\"\n\t\t\t\tend if\n\t\t\tend if\n\t\t\ttell topWindow\n\t\t\t\tif debug_level > 0 then\n\t\t\t\t\tlog \"preoperties before= \"\n\t\t\t\t\tlog properties\n\t\t\t\tend if\n\t\t\t\tset position to wpos\n\t\t\t\tif resize is 1 then\n\t\t\t\t\tset size to wsize\n\t\t\t\t\t-- When the original height is larger than the display size,\n\t\t\t\t\t-- the resize couldn't work well.\n\t\t\t\t\t-- Need to resize lower edge to internal of the display ({1,1})\n\t\t\t\t\t-- then resize to target size. \n\t\t\t\t\tset winSize to size\n\t\t\t\t\tif item 1 of winSize > item 1 of wsize or item 2 of winSize > item 2 of wsize then\n\t\t\t\t\t\tset size to {1, 1}\n\t\t\t\t\t\tset size to wsize\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\tend tell\nend windowSize\n\non run\n\twindowSize({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"85dee6d965065091fca60395e17a2dec7256671b","subject":"Use \"No Artwork\" icon for shared tracks","message":"Use \"No Artwork\" icon for shared tracks\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\tset songArtist to artist of theSong\n\t\t\tset songAlbum to album of theSong\n\t\t\t-- generate a unique identifier for that album\n\t\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t\t-- remove forbidden path characters\n\t\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\t\tend tell\n\n\t\ttell application \"Finder\"\n\n\t\t\t-- cache artwork if it's not already cached\n\t\t\tif not (songArtworkPath exists) then\n\n\t\t\t\ttell application \"Music\"\n\n\t\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t\t-- use default Music.app icon if song has no artwork\n\t\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\t\telse\n\n\t\t\t\t\t\t-- save artwork to file\n\t\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\t\tend if\n\n\t\t\t\tend tell\n\n\t\t\tend if\n\n\t\tend tell\n\n\t\treturn songArtworkPath\n\n\ton error number -50\n\n\t\t-- in macOS Catalina (10.15), a parameter error (-50) is always thrown\n\t\t-- when attempting to access any property on a non-downloaded track's\n\t\t-- artwork. In other words, the track must have been downloaded to the\n\t\t-- user's library in order for the artwork to be downloadable\/cacheable\n\t\t-- by AppleScript; there is no known workaround, so in the meantime,\n\t\t-- catch this error and return the default icon ;(\n\t\treturn defaultIconName\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\tset songArtist to artist of theSong\n\t\t\tset songAlbum to album of theSong\n\t\t\t-- generate a unique identifier for that album\n\t\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t\t-- remove forbidden path characters\n\t\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\t\tend tell\n\n\t\ttell application \"Finder\"\n\n\t\t\t-- cache artwork if it's not already cached\n\t\t\tif not (songArtworkPath exists) then\n\n\t\t\t\ttell application \"Music\"\n\n\t\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t\t-- use default Music.app icon if song has no artwork\n\t\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\t\telse\n\n\t\t\t\t\t\t-- save artwork to file\n\t\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\t\tend if\n\n\t\t\t\tend tell\n\n\t\t\tend if\n\n\t\tend tell\n\n\t\treturn songArtworkPath\n\n\ton error number -50\n\n\t\t-- in macOS Catalina (10.15), a parameter error (-50) is always thrown\n\t\t-- when attempting to access any property on a non-downloaded track's\n\t\t-- artwork. In other words, the track must have been downloaded to the\n\t\t-- user's library in order for the artwork to be downloadable\/cacheable\n\t\t-- by AppleScript; there is no known workaround, so in the meantime,\n\t\t-- catch this error and return the default icon ;(\n\t\treturn \"icon.png\"\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1031074d0d92af86e032d1d05b06f4bf057b1dcc","subject":"Return in getGenreSongs like other functions","message":"Return in getGenreSongs like other functions\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\n\tend tell\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and use it to fetch album artwork\n\t\t\tset songId to persistent ID of theSong\n\t\t\t-- the base path to the artwork file (without extension)\n\t\t\tset artworkPath to (do shell script \".\/resources\/get-song-artwork-path.sh\" & space & songId & space & defaultIconName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\ttell application \"Music\"\n\n\t\treturn every track of playlist 2 whose genre is genreName\n\n\tend tell\n\nend getGenreSongs\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"160fc766ef43a3c69f10b89891cf3c0fe04519c7","subject":"Source files don't need to be executable.","message":"Source files don't need to be executable.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402079\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Extras\/GrowlAction\/main.applescript","new_file":"Extras\/GrowlAction\/main.applescript","new_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (description of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","old_contents":"-- main.applescript\n-- GrowlAction\n\non run {input_items, parameters}\n\tset the output_items to {}\n\tset the notification_title to (|notificationTitle| of parameters) as string\n\tset the notification_description to (description of parameters) as string\n\tset the notification_priority to (priority of parameters) as integer\n\tset the notification_sticky to (sticky of parameters) as boolean\n\ttell application \"GrowlHelperApp\"\n\t\tregister as application \"Automator\" all notifications {\"Automator notification\"} default notifications {\"Automator notification\"}\n\t\tnotify with name \"Automator notification\" title notification_title description notification_description application name \"Automator\" sticky notification_sticky priority notification_priority\n\tend tell\n\treturn input_items\nend run\n\non localized_string(key_string)\n\treturn localized string key_string in bundle with identifier \"com.growl.GrowlAction\"\nend localized_string\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"5039ab5ba9008f9eafc5d2852974b7b6c8f5227b","subject":"Add script to create a playlist of good albums","message":"Add script to create a playlist of good albums\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/good-albums.applescript","new_file":"macosx\/scripts\/iTunes\/good-albums.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6e2acc0faeea8f81118ba527c129a895f228a212","subject":"preserve original tabs","message":"preserve original tabs\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.9, Daniel A. Shockley\n\t\t-- 3.9.9 - 2018-10-25 ( dshockley\/eshagdar ): added tab-size 4 to the tidy prettify options. Tidy CANNOT output tabs. \n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, spaces4String, spacePlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t(* Also, Tidy refueses to output tabs, so preserve and restore them, too! *)\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset someXML to replaceSimple({someXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.9, Daniel A. Shockley\n\t\t-- 3.9.9 - 2018-10-25 ( dshockley\/eshagdar ): added tab-size 4 to the tidy prettify options. Tidy CANNOT output tabs. \n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b03d8ba9fda01e24264d73b4d94b93c108bee6aa","subject":"fix reset simulator script for new apple software versions","message":"fix reset simulator script for new apple software versions\n","repos":"paypal\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,drptbl\/Illuminator,ifreecarve\/Illuminator,drptbl\/Illuminator,drptbl\/Illuminator,drptbl\/Illuminator,paypal\/Illuminator","old_file":"scripts\/reset_simulator.applescript","new_file":"scripts\/reset_simulator.applescript","new_contents":"(* commented out printer section for now\ntell application \"iPhone Simulator\" to activate\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"File\"\n tell menu \"File\"\n click menu item \"Open Printer Simulator\"\n end tell\n end tell\n end tell\n end tell\nend tell\n*)\n\ntell application \"iPhone Simulator\" to launch\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iPhone Simulator\" is in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"iPhone Simulator\" to activate\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if visible of process \"iPhone Simulator\" is true then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"iOS Simulator\"\n tell menu \"iOS Simulator\"\n click menu item \"Reset Content and Settings\u2026\"\n end tell\n end tell\n end tell\n\n tell window 1\n click button \"Reset\"\n end tell\n end tell\nend tell\n\ntell application \"iPhone Simulator\" to quit\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iPhone Simulator\" is not in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\n\n-- tell application \"System Events\" to tell process \"Printer Simulator\" to set visible to false\n","old_contents":"(* commented out printer section for now\ntell application \"iPhone Simulator\" to activate\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"File\"\n tell menu \"File\"\n click menu item \"Open Printer Simulator\"\n end tell\n end tell\n end tell\n end tell\nend tell\n*)\n\ntell application \"iPhone Simulator\" to activate\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"iOS Simulator\"\n tell menu \"iOS Simulator\"\n click menu item \"Reset Content and Settings\u2026\"\n end tell\n end tell\n end tell\n\n tell window 1\n click button \"Reset\"\n end tell\n end tell\nend tell\n\n-- tell application \"System Events\" to tell process \"Printer Simulator\" to set visible to false\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"c955ffeae8f5d8cb43a107c4acdd3992daa1c41e","subject":"Fix: Labels not updated after choosing another file","message":"Fix: Labels not updated after choosing another file\n\nRegression introduced by:\n\n\t2013-02-28 Add view file and category help menu items\n\nThe refactoring that was done in that commit to encapsulate varied\nbehavior in the subclasses while moving the shared behavior to new base\nsuperclasses caused menu items in category views to not reflect the\nupdated categories parsed after selecting a different log file during\nscript run.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"63d331cdba9cf2a0321cc593ce85cca8ea6f03d2","subject":"check for the presence of SVGO on launch","message":"check for the presence of SVGO on launch\n","repos":"superpixel\/SVGOdrop","old_file":"svgodrop.applescript","new_file":"svgodrop.applescript","new_contents":"(*\n\tSVGOdrop 1.0.2\n\t(c) 2016 Superpixel, Nico Rohrbach\n*)\n\nproperty extension_list : {\"svg\"}\n\nproperty pretty_code : true\nproperty remove_title : true\nproperty remove_desc : true\n\non run\n\tif isSVGOInstalled() is false then\n\t\tbeep\n\t\tdisplay alert \"SVGO seem not to be installed!\" message \n\t\t\t\"Install the tool via \\\"npm install -g svgo\\\" and try again.\" buttons \n\t\t\t{\"OK\"} default button \"OK\" as critical\n\t\treturn\n\tend if\n\tset these_items to choose file with multiple selections allowed\n\tcheck_files(these_items)\nend run\n\non open these_items\n\tif isSVGOInstalled() is false then\n\t\tbeep\n\t\tdisplay alert \"SVGO seem not to be installed!\" message \n\t\t\t\"Install the tool via \\\"npm install -g svgo\\\" and try again.\" buttons \n\t\t\t{\"OK\"} default button \"OK\" as critical\n\t\treturn\n\tend if\n\tcheck_files(these_items)\nend open\n\non isSVGOInstalled()\n\ttry\n\t\tset temp to do shell script \"\/bin\/bash -l -c 'svgo'\"\n\ton error err_msg number err_num\n\t\tif err_num is equal to 127 then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\tend try\nend isSVGOInstalled\n\non check_files(these_items)\n\trepeat with i from 1 to the count of these_items\n\t\tset this_item to item i of these_items\n\t\tset the item_info to info for this_item\n\t\tif folder of the item_info is false then\n\t\t\ttry\n\t\t\t\tset this_extension to the name extension of item_info\n\t\t\ton error\n\t\t\t\tset this_extension to \"\"\n\t\t\tend try\n\t\t\tif (this_extension is in the extension_list) then\n\t\t\t\tprocess_file(this_item)\n\t\t\tend if\n\t\tend if\n\tend repeat\nend check_files\n\non process_file(this_item)\n\tset the file_path to the POSIX path of this_item\n\t-- set options\n\tset svgo_options to \"\"\n\tif pretty_code is true then\n\t\tset svgo_options to \"--pretty\"\n\tend if\n\tif remove_title is true then\n\t\tset svgo_options to svgo_options & \" --enable=removeTitle\"\n\tend if\n\tif remove_desc is true then\n\t\tset svgo_options to svgo_options & \" --enable=removeDesc\"\n\tend if\n\t-- do the job\n\ttry\n\t\tdo shell script \"\/bin\/bash -l -c 'svgo\" & space & svgo_options & space & \"\\\"\" & file_path & \"\\\"\" & \"'\"\n\ton error err_msg number err_num\n\t\tbeep\n\t\tdisplay alert \"Error\" message err_msg buttons {\"OK\"} default button \"OK\" as critical\n\t\treturn err_num\n\tend try\nend process_file","old_contents":"(*\n\tSVGOdrop 1.0.1\n\t(c) 2016 Superpixel, Nico Rohrbach\n*)\n\nproperty extension_list : {\"svg\"}\n\nproperty pretty_code : true\nproperty remove_title : true\nproperty remove_desc : true\n\non run\n\tset these_items to choose file with multiple selections allowed\n\tcheck_files(these_items)\nend run\n\non open these_items\n\tcheck_files(these_items)\nend open\n\non check_files(these_items)\n\trepeat with i from 1 to the count of these_items\n\t\tset this_item to item i of these_items\n\t\tset the item_info to info for this_item\n\t\tif folder of the item_info is false then\n\t\t\ttry\n\t\t\t\tset this_extension to the name extension of item_info\n\t\t\ton error\n\t\t\t\tset this_extension to \"\"\n\t\t\tend try\n\t\t\tif (this_extension is in the extension_list) then\n\t\t\t\tprocess_file(this_item)\n\t\t\tend if\n\t\tend if\n\tend repeat\nend check_files\n\non process_file(this_item)\n\tset the file_path to the POSIX path of this_item\n\t-- set options\n\tset svgo_options to \"\"\n\tif pretty_code is true then\n\t\tset svgo_options to \"--pretty\"\n\tend if\n\tif remove_title is true then\n\t\tset svgo_options to svgo_options & \" --enable=removeTitle\"\n\tend if\n\tif remove_desc is true then\n\t\tset svgo_options to svgo_options & \" --enable=removeDesc\"\n\tend if\n\t-- do the job\n\ttry\n\t\tdo shell script \"\/bin\/bash -l -c 'svgo\" & space & svgo_options & space & \"\\\"\" & file_path & \"\\\"\" & \"'\"\n\ton error err_msg number err_num\n\t\tdisplay dialog \"Error: \" & err_msg buttons {\"OK\"} with icon stop\n\t\treturn err_num\n\tend try\nend process_file","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"13afb6998e1dfdf2d1429c2832df9c80f536bf7f","subject":"Made the iCal script a lot faster","message":"Made the iCal script a lot faster\n","repos":"nagyistoce\/growl,an0nym0u5\/growl,nagyistoce\/growl,timbck2\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,timbck2\/growl,an0nym0u5\/growl,xhruso00\/growl,nochkin\/growl,an0nym0u5\/growl,tectronics\/growl,SalrJupiter\/growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,tectronics\/growl,nochkin\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,ylian\/growl,SalrJupiter\/growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,chashion\/growl,nagyistoce\/growl,chashion\/growl,SalrJupiter\/growl,nagyistoce\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,ylian\/growl,ylian\/growl,an0nym0u5\/growl,ylian\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,nochkin\/growl,nkhorman\/archive-growl,CarlosCD\/growl,xhruso00\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,timbck2\/growl,timbck2\/growl,chashion\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,chashion\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,tectronics\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,nochkin\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,ylian\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,ylian\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(\u0000\u0000\u0000\u0000\u0000\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000=\u0000L\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000=\u0000L\u0000m\u0000n\r\u0000m\u0000\u0002\\\u0000\u0000\u0000=\u0000H\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000p\u0000\u0002l\u0000\u0005\u0000@\u0000G\u0000q\r\u0000q\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000r\u0000s\r\u0000r\u0000\u00011\u0000\u0000\u0000C\u0000G\n\u0000\u0004\ntime\r\u0000s\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0002\u0000M\u0000T\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000M\u0000T\u0000w\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0002l\u0000\u0005\u0000M\u0000P\u0000x\r\u0000x\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002l\u0000\u0002\u0000U\u0000d\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000U\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002\\\u0000\u0000\u0000U\u0000`\u0000~\u0000\r\u0000~\u0000\u0002[\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002]\u0000\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\ndays\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000e\u0000l\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000e\u0000h\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000h\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000m\u0002\t\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0002\t\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0002\b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000s\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000}\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000s\u0000y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000u\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000~\u0001U\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001P\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001O\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000Z\u0000T\tCatch events that start today or that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001O\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001J\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\f\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\b\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0004\u0001\b\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0004\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\r\u0001\/\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001\r\u0001+\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0001\r\u0001'\u0000\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0010\u0001\u0015\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0011\u0001\u0015\n\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0010\u0001\u0011\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0018\u0001\u001d\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0019\u0001\u001d\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0000\u0000\u0001o\u0000\u0000\u0001 \u0001#\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001'\u0001*\n\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00010\u0001=\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u00010\u00019\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u00010\u00015\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00010\u00013\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00015\u00018\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001>\u0001I\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001>\u0001E\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001>\u0001A\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001D\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwrev\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000{\n{\u0000\u0004\nwres\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vzy\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001V\u0001Vx\u0000\u0001x\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vwv\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001V\u0001\u0000\u0000ut\r\u0000\u0000\u0002l\u0000\u0005\u0001V\u0001c\u0000s\r\u0000\u0000\u0002=\u0000\u0000\u0001V\u0001c\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001V\u0001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001]\u0001ar\nr\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0001V\u0001]\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0001Y\u0001]q\nq\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001V\u0001Yp\u000bp\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001m\u0000\u0000\u0001a\u0001bo\u0003o\u0000\u0000\u0001s\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0001f\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001j\u0001\u0001\u0000n\r\u0001\u0000\u0000\u0003I\u0000\u0002\u0001j\u0001ml\u0001\u0001\nm\u0000\u0018.notifygrnull\u0000\u0000null\u0001l\u0000\u0000\u0006\u0001\u0001\u0000\u0003k\u0001\u0002\u0001\u0003\nk\u0000\u0004\nname\r\u0001\u0002\u0000\u0002l\u0000\t\u0001l\u0001o\u0001\u0004j\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0001\u0005\f\u0001\u0005\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001j\u0000\u0000\u0006\u0001\u0003\u0000\u0003i\u0001\u0006\u0001\u0007\ni\u0000\u0004\ntitl\r\u0001\u0006\u0000\u0002l\u0000\t\u0001p\u0001s\u0001\bh\r\u0001\b\u0000\u0001m\u0000\u0000\u0001p\u0001s\u0001\t\f\u0001\t\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001h\u0000\u0000\u0006\u0001\u0007\u0000\u0003g\u0001\n\u0001\u000b\ng\u0000\u0004\ndesc\r\u0001\n\u0000\u0002l\u0000\t\u0001v\u0001y\u0001\ff\r\u0001\f\u0000\u0001m\u0000\u0000\u0001v\u0001y\u0001\r\f\u0001\r\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\u000b\u0000\u0003e\u0001\u000ed\ne\u0000\u0004\nappl\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0001\u000f\f\u0001\u000f\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006d\u0000\u0000\u0001n\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001f\u0001g\u0000P\u0002u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002l\u0000\u0002\u0001\u0001cb\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003X\u0000\u0000\u0001\u0002\u0006\u0001\u0014a\u0001\u0015\r\u0001\u0014\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001\u0019\u0001\u001a\u0001\u001b\r\u0001\u0019\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002l\u0000\u0005\u0001\u0001\u0001\u001e`\r\u0001\u001e\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001!\u0001\"\r\u0001!\u0000\u0002n\u0000\u0000\u0001\u0001\u0001#\u0001$\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001$\u0000\u0001o\u0000\u0000\u0001\u0001^\u000b^\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\"\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001 \u0000\u0002n\u0000\u0000\u0001\u0001\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0001\u0001]\u000b]\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001'\u0000\u0001o\u0000\u0000\u0001\u0001\\\u000b\\\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001`\u0000\u0000\r\u0001\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ZYX\nZ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001Y\u0000\u0000\u0002X\u0000\u0000\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\u0001\u0001(\u0001)\r\u0001(\u0000\u0002b\u0000\u0000\u0001\u0001\u0001*\u0001+\r\u0001*\u0000\u0001m\u0000\u0000\u0001\u0001\u0001,\f\u0001,\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001+\u0000\u0002n\u0000\u0000\u0001\u0001\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0001\u0001W\u000bW\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001.\u0000\u0001o\u0000\u0000\u0001\u0001V\u000bV\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0018\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0002\u0001\u0001TS\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u00010\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003Q\u0000\u0000\u0001\u0001\u00013\u00014\u00015\r\u00013\u0000\u0002r\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002n\u0000\u0000\u0001\u0001\u00018\u00019\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0001R\u000bR\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u00019\u0000\u0001o\u0000\u0000\u0001\u0001Q\u000bQ\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u00014\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ONM\nO\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001N\u0000\u0000\u0002M\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0001\u0001<\f\u0001<\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u00012\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002l\u0000\u0002\u0001\u0001KJ\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001>\u0000\u0002\u0001?I\r\u0001?\u0000\u0002O\u0000\u0001\u0001\u0002\u0001\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\t\u0001\u0002\u0000\u0001BH\r\u0001B\u0000\u0003I\u0000\u0002\u0001\u0002\u0000GF\u0001C\nG\u0000\u0018.notifygrnull\u0000\u0000null\u0001F\u0000\u0000\u0006\u0001C\u0000\u0003E\u0001D\u0001E\nE\u0000\u0004\nname\r\u0001D\u0000\u0002l\u0000\t\u0001\u0001\u0001FD\r\u0001F\u0000\u0001m\u0000\u0000\u0001\u0001\u0001G\f\u0001G\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001D\u0000\u0000\u0006\u0001E\u0000\u0003C\u0001H\u0001I\nC\u0000\u0004\ntitl\r\u0001H\u0000\u0002l\u0000\t\u0001\u0001\u0001JB\r\u0001J\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001B\u0000\u0000\u0006\u0001I\u0000\u0003@\u0001K\u0001L\n@\u0000\u0004\ndesc\r\u0001K\u0000\u0002l\u0000\t\u0001\u0001\u0001M?\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001?\u0000\u0000\u0006\u0001L\u0000\u0003=\u0001N<\n=\u0000\u0004\nappl\r\u0001N\u0000\u0001m\u0000\u0000\u0001\u0001\u0001O\f\u0001O\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006<\u0000\u0000\u0001H\u0000\u0000\r\u0001A\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002I\u0000\u0000\u000ba\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001\u0001;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0001\u0013\u0000\u0002\u0001P:\r\u0001P\u0000\u0002l\u0000\u0002\u0002\u0007\u0002\u000798\u00019\u0000\u0000\u00018\u0000\u0000\u0002:\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0001Q\u000f\u0001Q\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u001fP<\u0004(\u0000\u0000\u0000\u0000\u0001\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000076\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001S\u0000\u0002\u0001T5\r\u0001T\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000043\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00032\u0001U\u0001V\u00012\u0000\u0000\u0010\u0001U\u0000\u00011\n1\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001V\u0000\u0007\u00100\u0001W\/.\u0001X\u0001Y-\n0\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001W\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\t\u0001Z\u0002\u0001Z\u0000\u0002\u0000.\u0001[\u0002\u0001[\u0000\u0002\u0000e\u0001\\\u0002\u0001\\\u0000\u0002\u0000j\u0001]\u0002\u0001]\u0000\u0002\u0000t\u0001^\u0002\u0001^\u0000\u0002\u0000y\u0001_\u0002\u0001_\u0000\u0002\u0000\u0001`\u0002\u0001`\u0000\u0002\u0000,\u0002,\u0000\u0000\u0001\/\u0000\u0000\u0002.\u0000\u0000\u0010\u0001X\u0000\u0003+*)\u000b+\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b*\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b)\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0010\u0001Y\u0000A\u0000P\u0000B\u0000D('\u0000I&%$\u0000O#\"!\u0000X \u0000\\\u001f\u0000`\u0000b\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0001Q\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u0001a\u000f\u000e\u0000\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0001\u0005\u0001\t\u0001\r\u0001\u000f\u0001%\u0000\u0001,\u0001<\u0001G\u0001O\u000b(\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n'\u0000\u0004\nappl\n&\u0000\u0004\nanot\n%\u0000\u0004\ndnot\n$\u0000\u0004\niapp\u0003#\u0000\b\n\"\u0000\u0018.registernull\u0000\u0000null\n!\u0000\u0004\nname\n \u0000\u0004\ntitl\n\u001f\u0000\u0004\ndesc\n\u001e\u0000\u0018.notifygrnull\u0000\u0000null\n\u001d\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u001c\u0000\u00070\u0000\u0003now\u0000\u0000\n\u001b\u0000\u0004\ntime\u000b\u001a\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0019\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0018\u0000\u0004\ndays\u000b\u0017\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0016\u0000\u0004\nlist\u000b\u0015\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0014\u0000\u0004\nwres\n\u0013\u0000\u0004\nkocl\n\u0012\u0000\u0004\ncobj\n\u0011\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0010\u0000\u0004\nwrev\u000e\u0001a\u0000\u0000\u0013\n\u000f\u0000\u0004\nwr1s\n\u000e\u0000\u0004\nwr5s\u000b\r\u0000\u00140\u0000\bthestart\u0000\btheStart\n\f\u0000\u0004\ntstr\u000b\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\n\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\t\u0000\u0004\nwr11\u000b\b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0007\u0000\u0004\nwr12\u000b\u0006\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0005\u0000\u0006\n\u0004\u0000\u0004\nreco\u000b\u0003\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0002\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\n\u0001\u0000\u0004\nnmbr\u000b\u0000\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011-\u0002\n\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015O_\u0000\u0015_\u0000\u0015a\u0000\u0016,\u001fE`\u0000\u0017O_\u0000\u0017j\f\u0000\u0018O_\u0000\u0017k_\u0000\u0019 \u001ek\u001fE`\u0000\u001aO_\u0000\u001aj\f\u0000\u0018Oa\u0000\u001b\u0012\u0001jva\u0000\u001c&E`\u0000\u001dO\u0017\u0000*a\u0000\u001e-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0000\u0012\u0000\u0017\u0000*a\u0000\"-a\u0000#[[[a\u0000$,\\Z_\u0000\u0017;\\[a\u0000$,\\Z_\u0000\u001a=A\\[[a\u0000%,\\Z_\u0000\u0015;\\[a\u0000$,\\Z_\u0000\u0017=AB1[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0001\u0012\u0000\\a\u0000&j\f\u0000\u0018O*a\u0000$,E`\u0000'O_\u0000'a\u0000(,E`\u0000)Oa\u0000*a\u0000+,a\u0000,a\u0000-,a\u0000._\u0000)a\u0000\/\u000ea\u00000&E`\u00001O_\u00001kva\u0000\u001c&E`\u00002O_\u0000\u001d_\u00002%E`\u0000\u001dU[OYU[OY@O_\u0000\u001da\u0000 -a\u00003,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u00004a\u00005a\u0000\u0010a\u00006a\u00007\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000~_\u0000\u001d[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0002\u0014\u0000\u0018a\u0000*,a\u00008%a\u0000.,%E`\u00009W\u0000\u0014X\u0000:\u0000;a\u0000<a\u0000.,%E`\u00009O\u0014\u0000\u000ea\u0000,,E`\u0000=W\u0000\u000eX\u0000:\u0000;a\u0000>E`\u0000=O\u0012\u0000\u0019*a\u0000?_\u00009a\u0000\u0010_\u0000=a\u0000@\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(\u0000\u0000\u0000\u0000\u0001x\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u0001zGRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000=\u0000L\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000=\u0000L\u0000m\u0000n\r\u0000m\u0000\u0002\\\u0000\u0000\u0000=\u0000H\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000p\u0000\u0002l\u0000\u0005\u0000@\u0000G\u0000q\r\u0000q\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000r\u0000s\r\u0000r\u0000\u00011\u0000\u0000\u0000C\u0000G\n\u0000\u0004\ntime\r\u0000s\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0002\u0000M\u0000T\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000M\u0000T\u0000w\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0002l\u0000\u0005\u0000M\u0000P\u0000x\r\u0000x\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002l\u0000\u0002\u0000U\u0000d\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000U\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002\\\u0000\u0000\u0000U\u0000`\u0000~\u0000\r\u0000~\u0000\u0002[\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002]\u0000\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\ndays\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000e\u0000l\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000e\u0000h\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000h\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000m\u0002B\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0002B\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0002A\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000s\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000}\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000s\u0000y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000u\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000~\u0001z\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001u\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001t\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001o\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001n\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e\tCatch events that start today\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000F\u0000@\tCatch events that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\u0007\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\b\u0001\b\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001\b\u0001n\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0001\b\u0001\r\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\b\u0001\r\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\b\u0001\u000b\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\r\u0000\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\f\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0010\u0001j\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0010\u0001\u0017\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0001\u0010\u0001\u0013\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0010\u0001\u0013\u0000\f\u0000\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0018\u0001!\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0018\u0001\u001d\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\"\u0001-\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\"\u0001)\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001%\u0001)\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0001\"\u0001%\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001.\u0001P\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001.\u0001L\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0001.\u0001H\u0000\u0006\u0000\u0000\u0003}\u0000\u0000\u000b}\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u00011\u00016\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00012\u00016|\n|\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u00011\u00012{\u000b{\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003z\u0000\u0000\u000bz\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u00019\u0001>\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001:\u0001>y\ny\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u00019\u0001:x\u000bx\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003w\u0000v\u000bw\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001Du\u000bu\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001H\u0001Kt\nt\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001Q\u0001^\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001Q\u0001Z\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001Q\u0001V\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0001o\u0000\u0000\u0001Q\u0001Tq\u000bq\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002r\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001V\u0001Yp\np\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0002r\u0000\u0000\u0001_\u0001j\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u0001_\u0001f\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u0001_\u0001bm\u000bm\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0001b\u0001el\u000bl\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002n\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000i\ni\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000g\ng\u0000\u0004\nwres\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0002l\u0000\u0002\u0001{\u0001{fe\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0002l\u0000\u0001\u0001{\u0001{d\u0001\b\u0001d\u0000\u0000\f\u0001\b\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002l\u0000\u0002\u0001{\u0001{cb\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0004Z\u0000\u0000\u0001{\u0001\u0001\r\u0001\u000ea`\r\u0001\r\u0000\u0002l\u0000\u0005\u0001{\u0001\u0001\u000f_\r\u0001\u000f\u0000\u0002=\u0000\u0000\u0001{\u0001\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002n\u0000\u0000\u0001{\u0001\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0001m\u0000\u0000\u0001\u0001^\n^\u0000\u0004\nnmbr\r\u0001\u0013\u0000\u0002n\u0001\u0000\u0001{\u0001\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u00012\u0000\u0001\u0001~\u0001]\n]\u0000\u0004\ncobj\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001{\u0001~\\\u000b\\\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0001\u0001[\u0003[\u0000\u0000\u0001_\u0000\u0000\r\u0001\u000e\u0000\u0002O\u0000\u0001\u0001\u0001\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\t\u0001\u0001\u0001\u0018Z\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0001\u0001YX\u0001\u0019\nY\u0000\u0018.notifygrnull\u0000\u0000null\u0001X\u0000\u0000\u0006\u0001\u0019\u0000\u0003W\u0001\u001a\u0001\u001b\nW\u0000\u0004\nname\r\u0001\u001a\u0000\u0002l\u0000\t\u0001\u0001\u0001\u001cV\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001d\f\u0001\u001d\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001V\u0000\u0000\u0006\u0001\u001b\u0000\u0003U\u0001\u001e\u0001\u001f\nU\u0000\u0004\ntitl\r\u0001\u001e\u0000\u0002l\u0000\t\u0001\u0001\u0001 T\r\u0001 \u0000\u0001m\u0000\u0000\u0001\u0001\u0001!\f\u0001!\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u001f\u0000\u0003S\u0001\"\u0001#\nS\u0000\u0004\ndesc\r\u0001\"\u0000\u0002l\u0000\t\u0001\u0001\u0001$R\r\u0001$\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001R\u0000\u0000\u0006\u0001#\u0000\u0003Q\u0001&P\nQ\u0000\u0004\nappl\r\u0001&\u0000\u0001m\u0000\u0000\u0001\u0001\u0001'\f\u0001'\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006P\u0000\u0000\u0001Z\u0000\u0000\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0002l\u0000\u0002\u0001\u0001ON\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0001)\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0005Y\u0000\u0000\u0001\u0002?\u0001,M\u0001-\u0001.L\r\u0001,\u0000\u0001k\u0000\u0000\u0001\u0002:\u0001\/\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0002r\u0000\u0000\u0001\u0001\u00012\u00013\r\u00012\u0000\u0002n\u0000\u0000\u0001\u0001\u00014\u00015\r\u00014\u0000\u00024\u0000\u0000\u0001\u0001K\u00016\nK\u0000\u0004\ncobj\r\u00016\u0000\u0001o\u0000\u0000\u0001\u0001J\u000bJ\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u00011\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003Q\u0000\u0000\u0001\u0001\u00019\u0001:\u0001;\r\u00019\u0000\u0002r\u0000\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u0002l\u0000\u0005\u0001\u0001\u0001>G\r\u0001>\u0000\u0002b\u0000\u0000\u0001\u0001\u0001?\u0001@\r\u0001?\u0000\u0002b\u0000\u0000\u0001\u0001\u0001A\u0001B\r\u0001A\u0000\u0002n\u0000\u0000\u0001\u0001\u0001C\u0001D\r\u0001C\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001D\u0000\u0001o\u0000\u0000\u0001\u0001E\u000bE\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001B\u0000\u0001m\u0000\u0000\u0001\u0001\u0001E\f\u0001E\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001@\u0000\u0002n\u0000\u0000\u0001\u0001\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0001\u0001D\u000bD\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001G\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001G\u0000\u0000\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000B\u000bB\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001:\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000A@?\nA\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001@\u0000\u0000\u0002?\u0000\u0000\r\u0001;\u0000\u0002r\u0000\u0000\u0001\u0001\u0001H\u0001I\r\u0001H\u0000\u0002b\u0000\u0000\u0001\u0001\u0001J\u0001K\r\u0001J\u0000\u0001m\u0000\u0000\u0001\u0001\u0001L\f\u0001L\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001K\u0000\u0002n\u0000\u0000\u0001\u0001\u0001M\u0001N\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001N\u0000\u0001o\u0000\u0000\u0001\u0001=\u000b=\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u00018\u0000\u0002\u0001O\u0001P\r\u0001O\u0000\u0002l\u0000\u0002\u0002\u0000\u0002\u0000;:\u0001;\u0000\u0000\u0001:\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003Q\u0000\u0000\u0002\u0000\u0002\u001d\u0001S\u0001T\u0001U\r\u0001S\u0000\u0002r\u0000\u0000\u0002\u0003\u0002\u000e\u0001V\u0001W\r\u0001V\u0000\u0002n\u0000\u0000\u0002\u0003\u0002\n\u0001X\u0001Y\r\u0001X\u0000\u0001o\u0000\u0000\u0002\u0006\u0002\n9\u000b9\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001Y\u0000\u0001o\u0000\u0000\u0002\u0003\u0002\u00068\u000b8\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001T\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000654\n6\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00015\u0000\u0000\u00024\u0000\u0000\r\u0001U\u0000\u0002r\u0000\u0000\u0002\u0016\u0002\u001d\u0001Z\u0001[\r\u0001Z\u0000\u0001m\u0000\u0000\u0002\u0016\u0002\u0019\u0001\\\f\u0001\\\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00003\u000b3\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001R\u0000\u0002\u0001]\u0001^\r\u0001]\u0000\u0002l\u0000\u0002\u0002\u001e\u0002\u001e21\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001^\u0000\u0002\u0001_0\r\u0001_\u0000\u0002O\u0000\u0001\u0002\u001e\u0002:\u0001`\u0001a\r\u0001`\u0000\u0002l\u0000\t\u0002\"\u00029\u0001b\/\r\u0001b\u0000\u0003I\u0000\u0002\u0002\"\u00029.-\u0001c\n.\u0000\u0018.notifygrnull\u0000\u0000null\u0001-\u0000\u0000\u0006\u0001c\u0000\u0003,\u0001d\u0001e\n,\u0000\u0004\nname\r\u0001d\u0000\u0002l\u0000\t\u0002$\u0002'\u0001f+\r\u0001f\u0000\u0001m\u0000\u0000\u0002$\u0002'\u0001g\f\u0001g\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001+\u0000\u0000\u0006\u0001e\u0000\u0003*\u0001h\u0001i\n*\u0000\u0004\ntitl\r\u0001h\u0000\u0002l\u0000\t\u0002(\u0002+\u0001j)\r\u0001j\u0000\u0001o\u0000\u0000\u0002(\u0002+(\u000b(\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001)\u0000\u0000\u0006\u0001i\u0000\u0003'\u0001k\u0001l\n'\u0000\u0004\ndesc\r\u0001k\u0000\u0002l\u0000\t\u0002.\u00021\u0001m&\r\u0001m\u0000\u0001o\u0000\u0000\u0002.\u00021%\u000b%\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001&\u0000\u0000\u0006\u0001l\u0000\u0003$\u0001n#\n$\u0000\u0004\nappl\r\u0001n\u0000\u0001m\u0000\u0000\u00022\u00025\u0001o\f\u0001o\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006#\u0000\u0000\u0001\/\u0000\u0000\r\u0001a\u0000\u0001m\u0000\u0000\u0002\u001e\u0002\u001f\u0000P\u00020\u0000\u0000\u000bM\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001-\u0000\u0001m\u0000\u0000\u0001\u0001\"\u0003\"\u0000\u0001\r\u0001.\u0000\u0002n\u0000\u0000\u0001\u0001\u0001p\u0001q\r\u0001p\u0000\u0001m\u0000\u0000\u0001\u0001!\n!\u0000\u0004\nnmbr\r\u0001q\u0000\u0002n\u0001\u0000\u0001\u0001\u0001r\u0001s\r\u0001r\u0000\u00012\u0000\u0001\u0001\u0001 \n \u0000\u0004\ncobj\r\u0001s\u0000\u0001o\u0000\u0000\u0001\u0001\u001f\u000b\u001f\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001L\u0000\u0000\u0002\u0001+\u0000\u0002\u0001t\u001e\r\u0001t\u0000\u0002l\u0000\u0002\u0002@\u0002@\u001d\u001c\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0001u\u000f\u0001u\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app\u05a0\u0000\u0000\u0000\u0000\u001fP<\u0004(\u0000\u0000\u0000\u0001\u0001x\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u0001zwrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001w\u0000\u0002\u0001x\u0019\r\u0001x\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0018\u0017\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\u0019\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0016\u0001y\u0001z\u0001\u0016\u0000\u0000\u0010\u0001y\u0000\u0001\u0015\n\u0015\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001z\u0000\u0007\u0010\u0014\u0001{\u0013\u0012\u0001|\u0001}\u0011\n\u0014\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001{\u0000\u0001k\u0000\u0000\u0000\u0000\u0002B\u0001~\u0002\u0001~\u0000\u0002\u0000.\u0001\u0002\u0001\u0000\u0002\u0000e\u0001\u0002\u0001\u0000\u0002\u0000j\u0001\u0002\u0001\u0000\u0002\u0000t\u0001\u0002\u0001\u0000\u0002\u0000y\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0010\u0002\u0010\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0012\u0000\u0000\u0010\u0001|\u0000\u0003\u000f\u000e\r\u000b\u000f\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u000e\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\r\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0001}\u0000C\u0000P\u0000B\u0000D\f\u000b\u0000I\n\t\b\u0000O\u0007\u0006\u0005\u0000X\u0004\u0000\\\u0003\u0000`\u0000b\u0002\u0001\u0000\u0001u\u0000\u0001\u001d\u0001!\u0001%\u0001'\u0001E\u0001L\u0001\\\u0001g\u0001o\u000b\f\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u000b\u0000\u0004\nappl\n\n\u0000\u0004\nanot\n\t\u0000\u0004\ndnot\n\b\u0000\u0004\niapp\u0003\u0007\u0000\b\n\u0006\u0000\u0018.registernull\u0000\u0000null\n\u0005\u0000\u0004\nname\n\u0004\u0000\u0004\ntitl\n\u0003\u0000\u0004\ndesc\n\u0002\u0000\u0018.notifygrnull\u0000\u0000null\n\u0001\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0000\u0004\ntime\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ndays\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0000\u0004\nlist\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0000\u0004\nwres\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nwrev\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\n\u0000\u0004\nwr1s\n\u0000\u0004\nbool\n\u0000\u0004\nwr5s\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\n\u0000\u0004\ntstr\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0000\u0004\nwr11\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0000\u0004\nwr12\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0000\u0006\n\u0000\u0004\nreco\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\n\u0000\u0004\nnmbr\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011\u0011\u0002C\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015O_\u0000\u0015_\u0000\u0015a\u0000\u0016,\u001fE`\u0000\u0017O_\u0000\u0017j\f\u0000\u0018O_\u0000\u0017k_\u0000\u0019 \u001ek\u001fE`\u0000\u001aO_\u0000\u001aj\f\u0000\u0018Oa\u0000\u001b\u0012\u0001jva\u0000\u001c&E`\u0000\u001dO\u0017\u0000*a\u0000\u001e-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0000\u0012\u0000\u0017\u0000*a\u0000\"-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0001\u0012\u0000fE`\u0000#O*a\u0000$,_\u0000\u0017\u0003\t\u0000\u000f*a\u0000$,_\u0000\u001a\u0005a\u0000%&\u001d\u0000\neE`\u0000#Y\u0000\u0003hO*a\u0000&,_\u0000\u0015\u0003\t\u0000\u000f*a\u0000$,_\u0000\u0017\u0005a\u0000%&\u001d\u0000\neE`\u0000#Y\u0000\u0003hO_\u0000#e\u0000\u001d\u0000_a\u0000'j\f\u0000\u0018O*a\u0000$,E`\u0000(O_\u0000(a\u0000),E`\u0000*Oa\u0000+a\u0000,,a\u0000-a\u0000.,a\u0000\/_\u0000*a\u00000\u000ea\u00001&E`\u00002O_\u00002kva\u0000\u001c&E`\u00003O_\u0000\u001d_\u00003%E`\u0000\u001dY\u0000\u0003hU[OY=U[OY\u001bO_\u0000\u001da\u0000 -a\u00004,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u00005a\u00006a\u0000\u0010a\u00007a\u00008\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000k_\u0000\u001da\u0000 -a\u00004,Ekh\u001c\u0000\u0002_\u0000\u001da\u0000 \/E`\u00009O\u0014\u0000\u001c_\u00009a\u0000+,a\u0000:%_\u00009a\u0000\/,%E`\u0000;W\u0000\u0016X\u0000<\u0000=a\u0000>_\u00009a\u0000\/,%E`\u0000;O\u0014\u0000\u0010_\u00009a\u0000-,E`\u0000?W\u0000\u000eX\u0000<\u0000=a\u0000@E`\u0000?O\u0012\u0000\u0019*a\u0000A_\u0000;a\u0000\u0010_\u0000?a\u0000B\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"540e18fe9831f2666baa2d1fc97aeded97d76e09","subject":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.","message":"Part 2 of the fix for #114 (GrowlTunes hang on dead pictd): Only accept data from artworks that are not QuickDraw pictures.\n","repos":"PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000r\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000r\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000e\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000d\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u001d\u0000 \u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000'\u0000(\r\u0000'\u0000\u00012\u0000\u0001\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000#\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0004Z\u0000\u0000\u0000#\u0000]\u0000+\u0000,\r\u0000+\u0000\u0002@\u0000\u0000\u0000#\u0000*\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0005\u0000#\u0000(\u0000\/\r\u0000\/\u0000\u0003I\u0000\u0002\u0000#\u0000(\u00000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u00000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000.\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\r\u0000,\u0000\u0005Y\u0000\u0000\u0000-\u0000Y\u00001\u00002\u00003\r\u00001\u0000\u0004Z\u0000\u0000\u0000;\u0000T\u00004\u00005\r\u00004\u0000\u0002>\u0001\u0000\u0000;\u0000C\u00006\u00007\r\u00006\u0000\u0002n\u0000\u0000\u0000;\u0000A\u00008\u00009\r\u00008\u0000\u00011\u0000\u0000\u0000?\u0000A\n\u0000\u0004\npFmt\r\u00009\u0000\u0002n\u0000\u0000\u0000;\u0000?\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000<\u0000?\u0000<\n\u0000\u0004\ncArt\r\u0000<\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00007\u0000\u0001m\u0000\u0000\u0000A\u0000B\n\u0000\u0004\nPICT\r\u00005\u0000\u0001k\u0000\u0000\u0000F\u0000P\u0000=\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000F\u0000N\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000F\u0000L\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000J\u0000L\n\u0000\u0004\npRaw\r\u0000C\u0000\u0002n\u0000\u0000\u0000F\u0000J\u0000D\u0000E\r\u0000D\u0000\u00024\u0000\u0000\u0000G\u0000J\u0000F\n\u0000\u0004\ncArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000E\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000?\u0000\u0002\u0000G\r\u0000G\u0000\u0000S\u0000\u0000\u0000O\u0000P\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\r\u00003\u0000\u0003l\u0000\u0005\u00001\u00006\u0000H\r\u0000H\u0000\u0003I\u0000\u0002\u00001\u00006\u0000I\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000I\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000J\r\u0000J\u0000\u0002r\u0000\u0000\u0000^\u0000d\u0000K\u0000L\r\u0000K\u0000\u0001J\u0000\u0000\u0000^\u0000b\u0000M\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000O\u0000\u0002\u0000P\r\u0000P\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000Q\u000f\u0000Q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000m\u0000r\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000s\u0000u\u0000X\r\u0000X\u0000\u0001L\u0000\u0000\u0000s\u0000u\u0000Y\r\u0000Y\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Z\r\u0000Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000[\u0000\\\u0001\u0000\u0000\u0010\u0000[\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\\\u0000\u0007\u0010\u0000]\u0000^\u0000_\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001k\u0000\u0000\u0000\u0000\u0000u\u0000`\u0002\u0000`\u0000\u0002\u0000\u0005\u0000a\u0002\u0000a\u0000\u0002\u0000V\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000^\u0000\u0001\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0000_\u0000\u0013\u0000Q\u0000\u0012\u0000T\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\u000b\u0000\u001a0\u0000\u000ballartworks\u0000\u000ballArtworks\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npFmt\n\u0000\u0004\nPICT\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000v\u0014\u0000g\u0012\u0000_EO*,,EO*,EOEO-EOj\f\u0000\fk\u0003\u001d\u00001\u0017\u0000+kj\f\u0000\fkh\u001c\u0000\u0000\/,\u0001\u001d\u0000\u000f\/,EO\u0016Y\u0000\u0003h[OYY\u0000\u0003hOlvEUW\u0000\fX\u0000\u0010\u0000\u0011a\u0000\u0012EO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000$\u0000%\r\u0000$\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$\u0000(\r\u0000(\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000)\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000%\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000,\u0000-\r\u0000,\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npRaw\r\u0000\/\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000*\u0000-\u00002\n\u0000\u0004\ncArt\r\u00002\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u00006\u0000<\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u00006\u0000:\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000:\u000f\u0000:\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000I\u0000K\u0000A\r\u0000A\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000I\u0002\u0000I\u0000\u0002\u0000\u0005\u0000J\u0002\u0000J\u0000\u0002\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0010\u0000:\u0000\u0012\u0000=\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"887e8fbe54b5baa7dbccc5f1a12aab48b6345fb9","subject":"enabled a couple of debug dialogs","message":"enabled a couple of debug dialogs\n\nTesting the auto-update system!","repos":"nilness\/mhqtools","old_file":"main.scpt","new_file":"main.scpt","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ndisplay dialog osVersion buttons {\"OK\"}\n\ndisplay dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"95d823a466dc795a65a7b53b185c626579494c08","subject":"add final message to the uninstaller","message":"add final message to the uninstaller\n","repos":"binaryage\/totalfinder-installer","old_file":"Uninstall.applescript","new_file":"Uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalFinder uninstallation done\" & newline\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8ec886360f8eb9625b9b84357c40def89ebd5f78","subject":"INTEGRATION: CWS changefileheader (1.4.160); FILE MERGED 2008\/03\/31 16:04:19 rt 1.4.160.1: #i87441# Change license header to LPGL v3.","message":"INTEGRATION: CWS changefileheader (1.4.160); FILE MERGED\n2008\/03\/31 16:04:19 rt 1.4.160.1: #i87441# Change license header to LPGL v3.\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/main.applescript","new_file":"instsetoo_native\/macosx\/application\/main.applescript","new_contents":"(*************************************************************************\n *\n * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.\n * \n * Copyright 2008 by Sun Microsystems, Inc.\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n * $Revision: 1.5 $\n *\n * This file is part of OpenOffice.org.\n *\n * OpenOffice.org is free software: you can redistribute it and\/or modify\n * it under the terms of the GNU Lesser General Public License version 3\n * only, as published by the Free Software Foundation.\n *\n * OpenOffice.org is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Lesser General Public License version 3 for more details\n * (a copy is included in the LICENSE file that accompanied this code).\n *\n * You should have received a copy of the GNU Lesser General Public License\n * version 3 along with OpenOffice.org. If not, see\n * <http:\/\/www.openoffice.org\/license.html>\n * for a copy of the LGPLv3 License.\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\treturn (((path to me) as string) & \"Contents:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"MacOS:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\t\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\"\n\t\tif the button returned of the result is \"Quit\" then\n\t\t\tquit\n\t\telse\n\t\t\t-- if more info is chosen, then open a help web page\n\t\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t\t-- cannot continue, so quit the script\n\t\t\treturn \"error\"\n\t\tend if\n\t\t\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","old_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n *\n * $Revision: 1.4 $\n *\n * last change: $Author: ihi $ $Date: 2007-06-05 11:52:25 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\treturn (((path to me) as string) & \"Contents:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"MacOS:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\t\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\"\n\t\tif the button returned of the result is \"Quit\" then\n\t\t\tquit\n\t\telse\n\t\t\t-- if more info is chosen, then open a help web page\n\t\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t\t-- cannot continue, so quit the script\n\t\t\treturn \"error\"\n\t\tend if\n\t\t\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"bf2785dd256e04fa1ca204a6d5eeabcbb27971cc","subject":"Change comments to be proper AppleScript style","message":"Change comments to be proper AppleScript style\n","repos":"ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,ascarter\/Go-bbpackage,ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,grmartin\/Go-bbpackage,ascarter\/Go-bbpackage,ascarter\/Go-bbpackage,ascarter\/Go.bbpackage","old_file":"src\/Resources\/package.applescript","new_file":"src\/Resources\/package.applescript","new_contents":"-- Go AppleScript library\n\nproperty package : \"Go\"\nproperty packageRoot : missing value\n\n-- Get working directory for a given document\non getWorkingDirectory(doc)\n\ttell application \"Finder\"\n\t\treturn POSIX path of ((container of ((file of doc) as alias) as string))\n\tend tell\nend getWorkingDirectory\n\n-- Find Go.bbpackage root\n-- Assumption: this is *always* run from within the package!\non getPackageRoot()\n\ttell application \"Finder\"\n\t\tset cwd to ((container of (path to me)) as alias)\n\t\trepeat until name of cwd is \"Go.bbpackage\"\n\t\t\tset cwd to (container of cwd as alias)\n\t\tend repeat\n\tend tell\n\treturn POSIX path of (cwd as string)\nend getPackageRoot\n\non exec(doc, cmd)\n\ttell application \"BBEdit\"\n\t\tif source language of doc is not \"Go\" then\n\t\t\terror \"Not a Go source file\"\n\t\tend if\n\tend tell\n\t\n\tif packageRoot is missing value then\n\t\tset packageRoot to getPackageRoot()\n\tend if\n\t\n\tset runner to quoted form of (POSIX path of (packageRoot as string) & \"Contents\/Resources\/gorunner\")\n\tset shellCmd to runner & space & \"-d \" & POSIX path of ((file of doc) as alias) & space & cmd\n\treturn do shell script (shellCmd)\nend exec\n\non execCommands(doc, commands)\n\tset output to {}\n\trepeat with cmd in commands\n\t\tset entry to exec(doc, cmd)\n\t\tif length of entry > 0 then\n\t\t\tcopy entry to the end of output\n\t\tend if\n\tend repeat\n\treturn output\nend execCommands\n\non packagePath(doc)\n\treturn quoted form of exec(doc, \"go list\")\nend packagePath\n\n-- Parse message into result browser entry\n--\n-- Format:\n-- [\/path\/to\/file]:[line]:(col): [message]\non makeEntry(itemData, cwd)\n\ttry\n\t\t-- Get source path\n\t\tset src to text 1 thru ((offset of \":\" in itemData) - 1) of itemData\n\t\tif src starts with \".\/\" then\n\t\t\tset srcFile to POSIX file (cwd & text 3 thru -1 of src)\n\t\telse\n\t\t\tset srcFile to POSIX file (src)\n\t\tend if\n\t\t\n\t\t-- Get line:column\n\t\tset lineColumn to text ((offset of \":\" in itemData) + 1) thru ((offset of \": \" in itemData) - 1) of itemData\n\t\tset lineNumber to (text 1 thru ((offset of \":\" in lineColumn) - 1) of lineColumn) as number\n\t\tset columnNumber to (text ((offset of \":\" in lineColumn) + 1) thru -1 of lineColumn) as number\n\t\t\n\t\t-- Get message\n\t\tset msg to text ((offset of \": \" in itemData) + 2) thru -1 of itemData\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tset resultKind to error_kind\n\t\t\t--\tif resultType is \"note\" then\n\t\t\t--\t\tset resultKind to note_kind\n\t\t\t--\telse if resultType is \"warning\" then\n\t\t\t--\t\tset resultKind to warning_kind\n\t\t\t--\telse\n\t\t\t--\t\tset resultKind to error_kind\n\t\t\t--\tend if\n\t\t\t\n\t\t\tset entry to {result_kind:resultKind, result_file:srcFile, result_line:lineNumber, message:msg}\n\t\tend tell\n\t\treturn entry\n\ton error msg\n\t\tlog \"Error: \" & msg\n\t\treturn missing value\n\tend try\nend makeEntry\n\n-- Filter and sort incoming messages\non prepareMessages(messages)\n\tset prevDelimiter to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to {ASCII character 10}\n\tset filteredString to do shell script (\"echo \" & quoted form of (messages as string) & \" | sort -f | uniq\")\n\tset AppleScript's text item delimiters to prevDelimiter\n\treturn paragraphs of filteredString\nend prepareMessages\n\non showResults(title, doc, messages)\n\ttell application \"Finder\"\n\t\tset cwd to POSIX path of ((container of (doc as alias) as string))\n\tend tell\n\t\n\tset errorList to {}\n\tset messageList to prepareMessages(messages)\n\t\n\trepeat with msg in messageList\n\t\tif msg does not start with \"#\" then\n\t\t\tset entry to makeEntry(msg, cwd)\n\t\t\tif entry is not missing value then\n\t\t\t\tcopy entry to the end of errorList\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\tif (count of errorList) > 0 then\n\t\ttry\n\t\t\ttell application \"BBEdit\"\n\t\t\t\tmake new results browser with data errorList with properties {name:title}\n\t\t\tend tell\n\t\ton error msg\n\t\t\tlog \"Error: \" & msg\n\t\tend try\n\tend if\nend showResults\n\non handleDocumentDidSave(doc)\n\ttry\n\t\tset docPath to POSIX path of ((file of doc) as string)\n\t\tset pkgPath to packagePath(doc)\n\t\tset goCommands to {\"goimports -w \" & quoted form of docPath, \"golint \" & quoted form of docPath, \"go build\", \"go test\"}\n\t\tset output to execCommands(doc, goCommands)\n\t\tif output is not missing value then\n\t\t\tshowResults(\"Save \" & (name of doc), POSIX file (docPath), output)\n\t\tend if\n\ton error msg\n\t\tlog \"Error handleDocumentDidSave: \" & msg\n\tend try\nend handleDocumentDidSave\n\n(*\non run\n\ttell application \"BBEdit\" to set doc to active document of window 1\n\thandleDocumentDidSave(doc)\nend run\n*)\n","old_contents":"-- Go AppleScript library\n\nproperty package : \"Go\"\nproperty packageRoot : missing value\n\n-- Get working directory for a given document\non getWorkingDirectory(doc)\n\ttell application \"Finder\"\n\t\treturn POSIX path of ((container of ((file of doc) as alias) as string))\n\tend tell\nend getWorkingDirectory\n\n-- Find Go.bbpackage root\n-- Assumption: this is *always* run from within the package!\non getPackageRoot()\n\ttell application \"Finder\"\n\t\tset cwd to ((container of (path to me)) as alias)\n\t\trepeat until name of cwd is \"Go.bbpackage\"\n\t\t\tset cwd to (container of cwd as alias)\n\t\tend repeat\n\tend tell\n\treturn POSIX path of (cwd as string)\nend getPackageRoot\n\non exec(doc, cmd)\n\ttell application \"BBEdit\"\n\t\tif source language of doc is not \"Go\" then\n\t\t\terror \"Not a Go source file\"\n\t\tend if\n\tend tell\n\t\n\tif packageRoot is missing value then\n\t\tset packageRoot to getPackageRoot()\n\tend if\n\t\n\tset runner to quoted form of (POSIX path of (packageRoot as string) & \"Contents\/Resources\/gorunner\")\n\tset shellCmd to runner & space & \"-d \" & POSIX path of ((file of doc) as alias) & space & cmd\n\treturn do shell script (shellCmd)\nend exec\n\non execCommands(doc, commands)\n\tset output to {}\n\trepeat with cmd in commands\n\t\tset entry to exec(doc, cmd)\n\t\tif length of entry > 0 then\n\t\t\tcopy entry to the end of output\n\t\tend if\n\tend repeat\n\treturn output\nend execCommands\n\non packagePath(doc)\n\treturn quoted form of exec(doc, \"go list\")\nend packagePath\n\n# Parse message into result browser entry\n#\n# Format:\n# [\/path\/to\/file]:[line]:(col): [message]\non makeEntry(itemData, cwd)\n\ttry\n\t\t# Get source path\n\t\tset src to text 1 thru ((offset of \":\" in itemData) - 1) of itemData\n\t\tif src starts with \".\/\" then\n\t\t\tset srcFile to POSIX file (cwd & text 3 thru -1 of src)\n\t\telse\n\t\t\tset srcFile to POSIX file (src)\n\t\tend if\n\t\t\n\t\t# Get line:column\n\t\tset lineColumn to text ((offset of \":\" in itemData) + 1) thru ((offset of \": \" in itemData) - 1) of itemData\n\t\tset lineNumber to (text 1 thru ((offset of \":\" in lineColumn) - 1) of lineColumn) as number\n\t\tset columnNumber to (text ((offset of \":\" in lineColumn) + 1) thru -1 of lineColumn) as number\n\t\t\n\t\t# Get message\n\t\tset msg to text ((offset of \": \" in itemData) + 2) thru -1 of itemData\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tset resultKind to error_kind\n\t\t\t#\tif resultType is \"note\" then\n\t\t\t#\t\tset resultKind to note_kind\n\t\t\t#\telse if resultType is \"warning\" then\n\t\t\t#\t\tset resultKind to warning_kind\n\t\t\t#\telse\n\t\t\t#\t\tset resultKind to error_kind\n\t\t\t#\tend if\n\t\t\t\n\t\t\tset entry to {result_kind:resultKind, result_file:srcFile, result_line:lineNumber, message:msg}\n\t\tend tell\n\t\treturn entry\n\ton error msg\n\t\tlog \"Error: \" & msg\n\t\treturn missing value\n\tend try\nend makeEntry\n\n-- Filter and sort incoming messages\non prepareMessages(messages)\n\tset prevDelimiter to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to {ASCII character 10}\n\tset filteredString to do shell script (\"echo \" & quoted form of (messages as string) & \" | sort -f | uniq\")\n\tset AppleScript's text item delimiters to prevDelimiter\n\treturn paragraphs of filteredString\nend prepareMessages\n\non showResults(title, doc, messages)\n\ttell application \"Finder\"\n\t\tset cwd to POSIX path of ((container of (doc as alias) as string))\n\tend tell\n\t\n\tset errorList to {}\n\tset messageList to prepareMessages(messages)\n\t\n\trepeat with msg in messageList\n\t\tif msg does not start with \"#\" then\n\t\t\tset entry to makeEntry(msg, cwd)\n\t\t\tif entry is not missing value then\n\t\t\t\tcopy entry to the end of errorList\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\tif (count of errorList) > 0 then\n\t\ttry\n\t\t\ttell application \"BBEdit\"\n\t\t\t\tmake new results browser with data errorList with properties {name:title}\n\t\t\tend tell\n\t\ton error msg\n\t\t\tlog \"Error: \" & msg\n\t\tend try\n\tend if\nend showResults\n\non handleDocumentDidSave(doc)\n\ttry\n\t\tset docPath to POSIX path of ((file of doc) as string)\n\t\tset pkgPath to packagePath(doc)\n\t\tset goCommands to {\"goimports -w \" & quoted form of docPath, \"golint \" & quoted form of docPath, \"go build\", \"go test\"}\n\t\tset output to execCommands(doc, goCommands)\n\t\tif output is not missing value then\n\t\t\tshowResults(\"Save \" & (name of doc), POSIX file (docPath), output)\n\t\tend if\n\ton error msg\n\t\tlog \"Error handleDocumentDidSave: \" & msg\n\tend try\nend handleDocumentDidSave\n\n(*\non run\n\ttell application \"BBEdit\" to set doc to active document of window 1\n\thandleDocumentDidSave(doc)\nend run\n*)\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a28524da9260d6070ae993e6d2c30b54c41303f4","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\t-- my server_format_ebs_mag_mount_dev_prepare_dirs()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n\n\n\n\n\n\n\n\n","old_contents":"global num_servers\nset num_servers to 7\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab && sudo umount \/mnt && sudo mkdir -p \/mnt\/local-ssd && sudo mount \/mnt\/local-ssd && sudo chown -R ubuntu \/mnt\/local-ssd && mkdir \/mnt\/local-ssd\/cass-data && mkdir ~\/cass-data-vol && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2 && mkdir \/mnt\/ebs-ssd-gp2\/cass-data && sudo mkdir -p \/mnt\/ebs-mag && sudo mount \/mnt\/ebs-mag && sudo mkdir \/mnt\/ebs-mag\/cass-data && sudo chown -R ubuntu \/mnt\/ebs-mag && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true) && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2 && sudo chown -R ubuntu \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_prepare_dirs\n\n\non watch_free_mem()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend watch_free_mem\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\t-- These can be grouped\n\tmy server_format_ebs_mag_mount_prepare_dirs()\n\tmy watch_free_mem()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\tmy save_screen_layout()\n\t\n\t-- This takes some time to make sure each server has different exp datetime. Wait till all servers are ready before moving on to the next step\n\tmy run_server()\n\t\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"b8a695bc5e95cd5cf373904d230e48867e846d61","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\t-- my server_format_ebs_mag_mount_dev_prepare_dirs()\n\t-- my server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n","old_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd\"\n\t\t\tset cmd to cmd & \" && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo mkdir \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true)\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t-- Run either of these, depending on what dev you have\n\t-- my server_format_ebs_mag_mount_dev_prepare_dirs()\n\tmy server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"6e11027e160c9fea709e1266c9f8d5be978e23ba","subject":"Add \"Edit Log\" action","message":"Add \"Edit Log\" action\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2011-02-09\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n--\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"egrep '^Label ' \" & quoted form of log_file_posix & \n\t\" | sed 's\/^Label | \/\/' | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n\n--\n-- Prompt for category\/subcategory of URL\n--\n\n-- Select an existing category\nset msg to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title script_name with prompt msg OK button name \"Select\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify or enter a new category\nset btns to {\"Cancel\", \"Manually Edit Log File\", \"Append URL to Log File\"}\nset msg to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog msg default answer cat_choice with title script_name buttons btns default button last item of btns\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of btns then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url, \n\t\trec_sep}, linefeed) & linefeed\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2011-02-09\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\nset log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\n--set log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n--\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset log_dir to (do shell script s) & \"\/logs\/\"\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"egrep '^Label ' \" & quoted form of log_file_posix & \n\t\" | sed 's\/^Label | \/\/' | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n\n--\n-- Prompt for category\/subcategory of URL\n--\n\n-- Select an existing category\nset msg to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title script_name with prompt msg OK button name \"Select\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify or enter a new category\nset btns to {\"Cancel\", \"TODO: Edit Log File\", \"Append URL to File\"}\nset msg to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog msg default answer cat_choice with title script_name buttons btns default button last item of btns\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of btns then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url, \n\t\trec_sep}, linefeed) & linefeed\n\t_IO's append_file(log_file, final_text)\nelse\n\tedit_log()\nend if\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log()\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tset t to script_name\n\tset m to \":TODO: Implement edit_log() function.\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"93bdbab5e0410fec078638a535b3e77e01c02022","subject":"Fixed keynote file opening","message":"Fixed keynote file opening\n","repos":"azizshamim\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_keynotePresentation>\/<thumbnailDir>\nproperty thumbSize : 480\nproperty thumbnailDir: \"thumbnail\"\n\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set repoPath to item 1 of argv\n set documentName to item 2 of argv\n set documentFullName to repoPath & \"\/\" & documentName\n\n set keynoteFile to (POSIX file documentFullName) as alias\n set documentPath to posix file (POSIX path of (do shell script \"dirname \" & quoted form of documentFullName)) as alias\n\n tell application \"Finder\"\n if not (exists folder thumbnailDir of folder documentPath)\n make new folder at folder documentPath with properties {name:thumbnailDir}\n end if\n set the targetFolder to folder thumbnailDir of folder documentPath\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open keynoteFile\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\n\nend run\n","old_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_keynotePresentation>\/<thumbnailDir>\nproperty thumbSize : 480\nproperty thumbnailDir: \"thumbnail\"\n\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set repoPath to item 1 of argv\n set documentName to item 2 of argv\n set documentFullName to repoPath & \"\/\" & documentName\n\n set documentPath to posix file (POSIX path of (do shell script \"dirname \" & quoted form of documentFullName)) as alias\n\n tell application \"Finder\"\n if not (exists folder thumbnailDir of folder documentPath)\n make new folder at folder documentPath with properties {name:thumbnailDir}\n end if\n set the targetFolder to folder thumbnailDir of folder documentPath\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open documentFullName\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\n\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4419ea160954dd376941f55f2e5174c2950cfccb","subject":"Turn off debug messages","message":"Turn off debug messages","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\ndisplay dialog osVersion buttons {\"OK\"}\n\ndisplay dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\t\n\t\tif osVersion is \"10\" then\n\t\t\tset target_file to \".bashrc\"\n\t\telse\n\t\t\tset target_file to \".profile\"\n\t\tend if\n\t\t\n\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" \" & current_user & \" >> \/private\/var\/root\/\" & target_file with administrator privileges\n\t\t\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\t\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c4298f80f263408679264085fb6e57b786c98efa","subject":"corrected one shortcuts","message":"corrected one shortcuts\n","repos":"fortinmike\/XcodeBoost","old_file":"shortcuts.applescript","new_file":"shortcuts.applescript","new_contents":"tell application \"System Preferences\"\n\tactivate\n\tset current pane to pane \"com.apple.preference.keyboard\"\n\treveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\n\t-- Incase the window is not opened instantly\n\tdelay 1\nend tell\ntell application \"System Events\"\n\ttell application process \"System Preferences\"\n\t\ttell splitter group 1 of tab group 1 of window \"Keyboard\"\n\t\t\tset selected of row 9 of table 1 of scroll area 1 to true\n\t\tend tell\n\t\t-- Click the \"Add\" button in the window \"Keyboard\"\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\t-- Choose the Target Application\n\t\ttell pop up button 1 of sheet 1 of window \"Keyboard\"\n\t\t\tclick\n\t\t\ttell menu 1\n\t\t\t\tclick menu item \"Xcode\"\n\t\t\tend tell\n\t\tend tell\n\t\t-- Set the shortcut title\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Occurences of Symbol\"\n\t\t-- Move the focus into the \"Keyboard Shortcut\" text field\n\t\tkeystroke tab\n\t\t-- The key code of \"F11\" is 103\n\t\tkey code 103 using {shift down, command down}\n\t\t-- Confirm and add the shortcut\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\t-- Now the application is default to Xcode,\n\t\t-- so go straight for the remaining shortcuts\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Occurences of String\"\n\t\tkeystroke tab\n\t\tkey code 111 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Regex Matches\"\n\t\tkeystroke tab\n\t\tkey code 103 using {control down, option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Remove Most Recently Added Highlight\"\n\t\tkeystroke tab\n\t\tkey code 109 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Remove All Highlighting\"\n\t\tkeystroke tab\n\t\tkey code 101 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\t-- The Methods group\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Select Methods and Functions\"\n\t\tkeystroke tab\n\t\tkey code 46 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Select Method and Function Signatures\"\n\t\tkeystroke tab\n\t\tkey code 46 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Duplicate Methods and Functions\"\n\t\tkeystroke tab\n\t\tkey code 2 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Copy Method and Function Declarations\"\n\t\tkeystroke tab\n\t\tkey code 8 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t-- The Lines group\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Cut Lines\"\n\t\tkeystroke tab\n\t\tkey code 7 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Copy Lines\"\n\t\tkeystroke tab\n\t\tkey code 8 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Paste Lines\"\n\t\tkeystroke tab\n\t\tkey code 9 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Paste Lines Without Reindent\"\n\t\tkeystroke tab\n\t\tkey code 9 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Duplicate Lines\"\n\t\tkeystroke tab\n\t\tkey code 2 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Delete Lines\"\n\t\tkeystroke tab\n\t\tkey code 37 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\tend tell\nend tell\ntell application \"System Preferences\" to quit\n","old_contents":"tell application \"System Preferences\"\n\tactivate\n\tset current pane to pane \"com.apple.preference.keyboard\"\n\treveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\n\t-- Incase the window is not opened instantly\n\tdelay 1\nend tell\ntell application \"System Events\"\n\ttell application process \"System Preferences\"\n\t\ttell splitter group 1 of tab group 1 of window \"Keyboard\"\n\t\t\tset selected of row 9 of table 1 of scroll area 1 to true\n\t\tend tell\n\t\t-- Click the \"Add\" button in the window \"Keyboard\"\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\t-- Choose the Target Application\n\t\ttell pop up button 1 of sheet 1 of window \"Keyboard\"\n\t\t\tclick\n\t\t\ttell menu 1\n\t\t\t\tclick menu item \"Xcode\"\n\t\t\tend tell\n\t\tend tell\n\t\t-- Set the shortcut title\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Occurences of Symbol\"\n\t\t-- Move the focus into the \"Keyboard Shortcut\" text field\n\t\tkeystroke tab\n\t\t-- The key code of \"F11\" is 103\n\t\tkey code 103 using {shift down, command down}\n\t\t-- Confirm and add the shortcut\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\t-- Now the application is default to Xcode,\n\t\t-- so go straight for the remaining shortcuts\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Occurences of String\"\n\t\tkeystroke tab\n\t\tkey code 111 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Highlight Regex Matches\"\n\t\tkeystroke tab\n\t\tkey code 103 using {control down, option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Remove Most Recently Added Highlight\"\n\t\tkeystroke tab\n\t\tkey code 109 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Remove All Highlighting\"\n\t\tkeystroke tab\n\t\tkey code 101 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\t-- The Methods group\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Select Methods and Functions\"\n\t\tkeystroke tab\n\t\tkey code 46 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Select Method and Function Signatures\"\n\t\tkeystroke tab\n\t\tkey code 46 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Duplicate Methods and Functions\"\n\t\tkeystroke tab\n\t\tkey code 2 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Copy Method and Function Declarations\"\n\t\tkeystroke tab\n\t\tkey code 8 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t-- The Lines group\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Cut Lines\"\n\t\tkeystroke tab\n\t\tkey code 7 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Copy Lines\"\n\t\tkeystroke tab\n\t\tkey code 8 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Paste Lines\"\n\t\tkeystroke tab\n\t\tkey code 9 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Paste Lines Without Reindent\"\n\t\tkeystroke tab\n\t\tkey code 9 using {option down, shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Duplicate Lines\"\n\t\tkeystroke tab\n\t\tkey code 7 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\t\t\n\t\tclick button 1 of group 1 of tab group 1 of window \"Keyboard\"\n\t\tset value of text field 1 of sheet 1 of window \"Keyboard\" to \"Delete Lines\"\n\t\tkeystroke tab\n\t\tkey code 37 using {shift down, command down}\n\t\tclick button \"Add\" of sheet 1 of window \"Keyboard\"\n\tend tell\nend tell\ntell application \"System Preferences\" to quit\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c8923bdbe8c4b4b7ce0a819d2cf072657413f7d5","subject":"fixed missing sub-handlers in fmGUI_ManageDb_Open","message":"fixed missing sub-handlers in fmGUI_ManageDb_Open\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Open.applescript","new_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Open.applescript","new_contents":"-- fmGUI_ManageDb_Open(prefs)\n-- Daniel A. Shockley, NYHTC\n-- Open Manage Database\n\n\n(*\nHISTORY:\n\t1.4 - 2020-05-20 ( dshockley ): added multiple missing sub-handlers. \n\t1.3 - 2018-04-30 ( eshagdar ): get window name via handler.\n\t1.2 - added xDBC connection error trapping\n\t1.1 - \n\t1.0 - created\n\n\nTODO:\n\t- 2015-06-03 ( eshagdar ): probably going to need to open manageDB via openManageDB script if the menu item fails\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDb_DismissXDBCDialog\n\tfmGUI_ManageDb_GoToTab_Relationships\n\tfmGUI_ManageDb_RelationshipsTab\n\tfmGUI_Menu_OpenDB\n\tfmGUI_NameOfFrontmostWindow\n*)\n\n\non run\n\tfmGUI_ManageDb_Open({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_Open(prefs)\n\t-- version 1.4\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- try to open Manage DB\n\t\tset windowName to fmGUI_NameOfFrontmostWindow()\n\t\tif windowName starts with \"Manage Database for\" then\n\t\t\treturn true\n\t\telse\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\t\n\t\t\t\n\t\t\t-- dismiss any initial xDBC connection errors\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- go to the TOs tab and AGAIN dismiss any xDBC connections that failed to connect\n\t\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t--zoom out to show all TOs and dismiss any xDBC errors that weren't already dismissed\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tkeystroke \"i\" using command down\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- zoom back in\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset zoomField to text field 1 of tab group 1 of window 1\n\t\t\t\t\tset focused of zoomField to true\n\t\t\t\t\tset value of zoomField to \"100\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\treturn true\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"Couldn't open manage DB - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDb_DismissXDBCDialog(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_DismissXDBCDialog(prefs)\nend fmGUI_ManageDb_DismissXDBCDialog\n\non fmGUI_ManageDb_GoToTab_Relationships(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_GoToTab_Relationships(prefs)\nend fmGUI_ManageDb_GoToTab_Relationships\n\non fmGUI_ManageDb_RelationshipsTab(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_RelationshipsTab(prefs)\nend fmGUI_ManageDb_RelationshipsTab\n\non fmGUI_Menu_OpenDB(prefs)\n\ttell application \"htcLib\" to fmGUI_Menu_OpenDB(prefs)\nend fmGUI_Menu_OpenDB\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n","old_contents":"-- fmGUI_ManageDb_Open(prefs)\n-- Daniel A. Shockley, NYHTC\n-- Open Manage Database\n\n\n(*\nHISTORY:\n\t1.3 - 2018-04-30 ( eshagdar ): get window name via handler.\n\t1.2 - added xDBC connection error trapping\n\t1.1 - \n\t1.0 - created\n\n\nTODO:\n\t- 2015-06-03 ( eshagdar ): probably going to need to open manageDB via openManageDB script if the menu item fails\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ManageDb_RelationshipsTab\n\tfmGUI_NameOfFrontmostWindow\n*)\n\n\non run\n\tfmGUI_ManageDb_Open({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_ManageDb_Open(prefs)\n\t-- version 1.3\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- try to open Manage DB\n\t\tset windowName to fmGUI_NameOfFrontmostWindow()\n\t\tif windowName starts with \"Manage Database for\" then\n\t\t\treturn true\n\t\telse\n\t\t\tfmGUI_Menu_OpenDB({})\n\t\t\t\n\t\t\t\n\t\t\t-- dismiss any initial xDBC connection errors\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- to to the TOs tab and dismiss any xDBC connections that failed to connect\n\t\t\tfmGUI_ManageDb_GoToTab_Relationships({})\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t--zoom out to show all TOs and dismiss any xDBC errors that weren't already dismissed\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tkeystroke \"i\" using command down\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tdelay 1\n\t\t\tfmGUI_ManageDb_DismissXDBCDialog({})\n\t\t\t\n\t\t\t\n\t\t\t-- zoom back in\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset zoomField to text field 1 of tab group 1 of window 1\n\t\t\t\t\tset focused of zoomField to true\n\t\t\t\t\tset value of zoomField to \"100\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\treturn true\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"Couldn't open manage DB - \" & errMsg number errNum\n\tend try\n\t\nend fmGUI_ManageDb_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_ManageDb_RelationshipsTab(prefs)\n\ttell application \"htcLib\" to fmGUI_ManageDb_RelationshipsTab(prefs)\nend fmGUI_ManageDb_RelationshipsTab\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a098ed02dc1e0885a02b7a5cf2032e2caabeac43","subject":"updated iCal AppleScript - better event searching, and warning about missing repeat events","message":"updated iCal AppleScript - better event searching, and warning about missing repeat events\n","repos":"ylian\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,xhruso00\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,timbck2\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,tectronics\/growl,ylian\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,an0nym0u5\/growl,nochkin\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,nochkin\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,ylian\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,tectronics\/growl,timbck2\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,ylian\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,tectronics\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,chashion\/growl,xhruso00\/growl,nkhorman\/archive-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,CarlosCD\/growl,nochkin\/growl,nochkin\/growl,tectronics\/growl,nagyistoce\/growl,SalrJupiter\/growl,CarlosCD\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,xhruso00\/growl,CarlosCD\/growl,nkhorman\/archive-growl,CarlosCD\/growl,timbck2\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,SalrJupiter\/growl,nagyistoce\/growl,an0nym0u5\/growl,ylian\/growl,timbck2\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,tectronics\/growl,chashion\/growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u0002L\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000O\u0012GrowlHelperApp.appL\u00007\u0010\u0000\u0000\u0000@\u0000p\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u0000\u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000O\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000)\u0000\u0000\u0000\u0001\u0000\u001c\u0000O\u0000O\u0000O\u0000\u0003+m\u0000\u0002\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000bWideBoy:Users:diggory:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000ZUsers\/diggory\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000l\u0000m\r\u0000l\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u0000=\u0000|\u0000p\r\u0000p\u0000\u0002r\u0000\u0000\u0000=\u0000|\u0000q\u0000r\r\u0000q\u0000\u0002c\u0000\u0000\u0000=\u0000x\u0000s\u0000t\r\u0000s\u0000\u0002l\u0000\u0005\u0000=\u0000t\u0000u\r\u0000u\u0000\u0002b\u0000\u0000\u0000=\u0000t\u0000v\u0000w\r\u0000v\u0000\u0002b\u0000\u0000\u0000=\u0000p\u0000x\u0000y\r\u0000x\u0000\u0002b\u0000\u0000\u0000=\u0000l\u0000z\u0000{\r\u0000z\u0000\u0002b\u0000\u0000\u0000=\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002b\u0000\u0000\u0000=\u0000`\u0000~\u0000\r\u0000~\u0000\u0002b\u0000\u0000\u0000=\u0000X\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000T\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000L\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000=\u0000H\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000G\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000L\u0000S\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000S\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000L\u0000O\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000X\u0000_\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000[\u0000_\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000[\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000}\u0000\u0001m\u0000\u0000\u0000`\u0000c\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000{\u0000\u0002n\u0000\u0000\u0000d\u0000k\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000g\u0000k\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000d\u0000g\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000y\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0000\f\u0000\u0000\u0012\u0000\f 12:00:00 am\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000t\u0000w\n\u0000\u0004\nTEXT\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000}\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000}\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nwkdy\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmnth\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nday \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\b\u0000\u0002, \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nyear\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0012\u0000\f 11:59:59 pm\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001\"\u0000\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nldt \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwres\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0001\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0001\u0002\u0002&\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0017\u0002!\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001#\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0017\u0001\u001f\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0001\u001a\u0001\u001f\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u001a\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001$\u0001$\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001$\u0002!\u0000\u0001\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001*\u0002 \u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002r\u0000\u0000\u0001*\u00013\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u00012\u0000\u0000\u0001*\u0001\/\n\u0000\u0004\nwrev\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0002\u0001\u0003\u0000\u0002\u0001\u0006\r\u0001\u0006\u0000\u0005Y\u0000\u0000\u00014\u0002 \u0001\u0007\u0001\b\u0001\t~\r\u0001\u0007\u0000\u0001k\u0000\u0000\u0001I\u0002\u001b\u0001\n\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0001I\u0001U\u0001\r\u0001\u000e\r\u0001\r\u0000\u0002n\u0000\u0000\u0001I\u0001Q\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u00024\u0000\u0000\u0001L\u0001Q}\u0001\u0011\n}\u0000\u0004\ncobj\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001O\u0001P|\u000b|\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001I\u0001L{\u000b{\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0001\f\u0000\u0002\u0001\u0012y\r\u0001\u0012\u0000\u0002O\u0000\u0000\u0001V\u0002\u001b\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001k\u0000\u0000\u0001\\\u0002\u001a\u0001\u0015\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\u0002\u0001\\\u0001\\xw\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002l\u0000\u0001\u0001\\\u0001\\v\u0001\u001a\u0001v\u0000\u0000\f\u0001\u001a\u0000$\u0000\u001e\tCatch events that start today\u0000\u0002\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\\\u0001a\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001m\u0000\u0000\u0001\\\u0001]u\nu\u0000\b\u000bboovfals\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002\u0001\u001c\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0004Z\u0000\u0000\u0001b\u0001\u0001!\u0001\"sr\r\u0001!\u0000\u0002F\u0000\u0000\u0001b\u0001{\u0001#\u0001$\r\u0001#\u0000\u0002l\u0000\u0005\u0001b\u0001k\u0001%q\r\u0001%\u0000\u0002?\u0000\u0000\u0001b\u0001k\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0001b\u0001gp\np\u0000\u0004\nwr1s\r\u0001'\u0000\u0001o\u0000\u0000\u0001g\u0001jo\u000bo\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001q\u0000\u0000\r\u0001$\u0000\u0002l\u0000\u0005\u0001n\u0001w\u0001(n\r\u0001(\u0000\u0002A\u0000\u0000\u0001n\u0001w\u0001)\u0001*\r\u0001)\u0000\u00011\u0000\u0000\u0001n\u0001sm\nm\u0000\u0004\nwr1s\r\u0001*\u0000\u0001o\u0000\u0000\u0001s\u0001vl\u000bl\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001n\u0000\u0000\r\u0001\"\u0000\u0002r\u0000\u0000\u0001~\u0001\u0001+\u0001,\r\u0001+\u0000\u0001m\u0000\u0000\u0001~\u0001k\nk\u0000\b\u000bboovtrue\r\u0001,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000j\u000bj\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002s\u0000\u0000\u0001r\u0000\u0000\u0002\u0001 \u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002l\u0000\u0002\u0001\u0001ih\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0001\u0001\u0001g\u00011\u0001g\u0000\u0000\f\u00011\u0000F\u0000@\tCatch events that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u00010\u0000\u0002\u00012\u00013\r\u00012\u0000\u0004Z\u0000\u0000\u0001\u0001\u00014\u00015fe\r\u00014\u0000\u0002F\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002l\u0000\u0005\u0001\u0001\u00018d\r\u00018\u0000\u0002?\u0000\u0000\u0001\u0001\u00019\u0001:\r\u00019\u0000\u00011\u0000\u0000\u0001\u0001c\nc\u0000\u0004\nwr5s\r\u0001:\u0000\u0001o\u0000\u0000\u0001\u0001b\u000bb\u0000\u00070\u0000\u0003now\u0000\u0000\u0001d\u0000\u0000\r\u00017\u0000\u0002l\u0000\u0005\u0001\u0001\u0001;a\r\u0001;\u0000\u0002A\u0000\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u00011\u0000\u0000\u0001\u0001`\n`\u0000\u0004\nwr1s\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001a\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001>\u0001?\r\u0001>\u0000\u0001m\u0000\u0000\u0001\u0001^\n^\u0000\b\u000bboovtrue\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\u0002f\u0000\u0000\u0001e\u0000\u0000\u0002\u00013\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\u0002\u0001\u0001\\[\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0002l\u0000\u0002\u0001\u0001ZY\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001C\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0004Z\u0000\u0000\u0001\u0002\u0018\u0001F\u0001GXW\r\u0001F\u0000\u0002l\u0000\u0005\u0001\u0001\u0001HV\r\u0001H\u0000\u0002=\u0000\u0003\u0001\u0001\u0001I\u0001J\r\u0001I\u0000\u0001o\u0000\u0000\u0001\u0001U\u000bU\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\r\u0001J\u0000\u0001m\u0000\u0000\u0001\u0001T\nT\u0000\b\u000bboovtrue\u0001V\u0000\u0000\r\u0001G\u0000\u0001k\u0000\u0000\u0001\u0002\u0014\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001S\u0001NR\nS\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001N\u0000\u0002l\u0000\u0005\u0001\u0001\u0001OQ\r\u0001O\u0000\u0001m\u0000\u0000\u0001\u0001\u0001P\f\u0001P\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001Q\u0000\u0000\u0002R\u0000\u0000\u0002\u0001M\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002r\u0000\u0000\u0001\u0001\u0001S\u0001T\r\u0001S\u0000\u00011\u0000\u0000\u0001\u0001P\nP\u0000\u0004\nwr1s\r\u0001T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0002r\u0000\u0000\u0001\u0001\u0001W\u0001X\r\u0001W\u0000\u0002n\u0000\u0000\u0001\u0001\u0001Y\u0001Z\r\u0001Y\u0000\u00011\u0000\u0000\u0001\u0001N\nN\u0000\u0004\ntstr\r\u0001Z\u0000\u0001o\u0000\u0000\u0001\u0001M\u000bM\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0001X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0001V\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0002r\u0000\u0000\u0001\u0001\u0001]\u0001^\r\u0001]\u0000\u0002c\u0000\u0000\u0001\u0001\u0001_\u0001`\r\u0001_\u0000\u0001K\u0000\u0000\u0001\u0001\u0001a\u0006\u0001a\u0000\u0003K\u0001b\u0001c\u000bK\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001b\u0000\u0002n\u0000\u0000\u0001\u0001\u0001d\u0001e\r\u0001d\u0000\u00011\u0000\u0000\u0001\u0001J\nJ\u0000\u0004\nwr11\r\u0001e\u0000\u0001o\u0000\u0000\u0001\u0001I\u000bI\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001c\u0000\u0003H\u0001f\u0001g\u000bH\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001f\u0000\u0002n\u0000\u0000\u0001\u0001\u0001h\u0001i\r\u0001h\u0000\u00011\u0000\u0000\u0001\u0001G\nG\u0000\u0004\nwr12\r\u0001i\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0001g\u0000\u0003E\u0001jD\u000bE\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001j\u0000\u0001o\u0000\u0000\u0001\u0001C\u000bC\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006D\u0000\u0000\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0001B\nB\u0000\u0004\nreco\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000A\u000bA\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0001\\\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002r\u0000\u0000\u0001\u0002\b\u0001m\u0001n\r\u0001m\u0000\u0002c\u0000\u0000\u0001\u0002\u0004\u0001o\u0001p\r\u0001o\u0000\u0001J\u0000\u0000\u0001\u0002\u0000\u0001q\u0002\u0001q\u0000\u0002\u0001r@\r\u0001r\u0000\u0001o\u0000\u0000\u0001\u0001?\u000b?\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002@\u0000\u0000\r\u0001p\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0003>\n>\u0000\u0004\nlist\r\u0001n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000=\u000b=\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0001l\u0000\u0002\u0001s<\r\u0001s\u0000\u0002r\u0000\u0000\u0002\t\u0002\u0014\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0002\t\u0002\u0010\u0001v\u0001w\r\u0001v\u0000\u0001o\u0000\u0000\u0002\t\u0002\f;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001w\u0000\u0001o\u0000\u0000\u0002\f\u0002\u000f:\u000b:\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0001u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002<\u0000\u0000\u0002X\u0000\u0000\u0001W\u0000\u0000\u0002\u0001E\u0000\u0002\u0001x\u0001y\r\u0001x\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001987\u00018\u0000\u0000\u00017\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z6\r\u0001z\u0000\u0002l\u0000\u0002\u0002\u0019\u0002\u001954\u00015\u0000\u0000\u00014\u0000\u0000\u00026\u0000\u0000\r\u0001\u0014\u0000\u0001o\u0000\u0000\u0001V\u0001Y3\u000b3\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002y\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0001\b\u0000\u0001m\u0000\u0000\u00017\u000182\u00032\u0000\u0001\r\u0001\t\u0000\u0002n\u0000\u0000\u00018\u0001D\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001?\u0001C1\n1\u0000\u0004\nnmbr\r\u0001|\u0000\u0002n\u0001\u0000\u00018\u0001?\u0001}\u0001~\r\u0001}\u0000\u00012\u0000\u0001\u0001;\u0001?0\n0\u0000\u0004\ncobj\r\u0001~\u0000\u0001o\u0000\u0000\u00018\u0001;\/\u000b\/\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0001~\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001$\u0001'.\u000b.\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006-\u0003-\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0006\u0001\u0012\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0011,\n,\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0001\u0006\u0001\r\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0001\t\u0001\r+\n+\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0006\u0001\t*\u000b*\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002')(\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002'\u0002''&\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0001\u0002'\u0002'%\u0001\u0001%\u0000\u0000\f\u0001\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u0002'\u0002\u0001$\u0001\u0001#\r\u0001\u0000\u0001k\u0000\u0000\u0002<\u0002\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002<\u0002H\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002<\u0002D\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0002?\u0002D\"\u0001\n\"\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002C!\u000b!\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002<\u0002? \u000b \u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002I\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002L\u0002c\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0005\u0002L\u0002_\u0001\u001e\r\u0001\u0000\u0002b\u0000\u0000\u0002L\u0002_\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002L\u0002W\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002L\u0002S\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002O\u0002S\u001d\u000b\u001d\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001\u0000\u0001o\u0000\u0000\u0002L\u0002O\u001c\u000b\u001c\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001m\u0000\u0000\u0002S\u0002V\u0001\f\u0001\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002W\u0002^\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002Z\u0002^\u001b\u000b\u001b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002W\u0002Z\u001a\u000b\u001a\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001\u001e\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0019\u000b\u0019\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0017\u0016\n\u0018\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0017\u0000\u0000\u0002\u0016\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002k\u0002z\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002k\u0002v\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002k\u0002n\u0001\f\u0001\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0002n\u0002u\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002q\u0002u\u0015\u000b\u0015\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001\u0000\u0001o\u0000\u0000\u0002n\u0002q\u0014\u000b\u0014\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002{\u0002{\u0012\u0011\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0002{\u0002\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002~\u0002\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002~\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u0010\u000b\u0010\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001\u0000\u0001o\u0000\u0000\u0002~\u0002\u000f\u000b\u000f\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u000b\u000e\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\r\f\u000b\n\r\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\f\u0000\u0000\u0002\u000b\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\n\u000b\n\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\t\b\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0002O\u0000\u0001\u0002\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0006\r\u0001\u0000\u0003I\u0000\u0002\u0002\u0002\u0005\u0004\u0001\n\u0005\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0004\u0000\u0000\u0006\u0001\u0000\u0003\u0003\u0001\u0001\n\u0003\u0000\u0004\nname\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0002\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001\u0002\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\u0001\n\u0001\u0000\u0004\ntitl\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\ndesc\r\u0001\u0000\u0002l\u0000\t\u0002\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nappl\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0001\f\u0001\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0001\u0006\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0002\u0000P\u0002\u0007\u0000\u0000\u000b$\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002*\u0002+\u0003\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002+\u00027\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00022\u00026\n\u0000\u0004\nnmbr\r\u0001\u0000\u0002n\u0001\u0000\u0002+\u00022\u0001\u0001\r\u0001\u0000\u00012\u0000\u0001\u0002.\u00022\n\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0002+\u0002.\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001#\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0002\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000f\u0001\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0003^\biCal.app`\u00000L\u00007\u0010\u0590\u00000\u0000p\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u05b0\u0000wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\u0003^\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0014\u001e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0006\u000e\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0003^\u0000\u0002\u0000\u001dWideBoy:Applications:iCal.app\u0000\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001\u0002\u0001\u0000\u0002\u0000.\u0001\u0002\u0001\u0000\u0002\u0000i\u0001\u0002\u0001\u0000\u0002\u0000n\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\u0010\u0001\u0000S\u0000P\u0000B\u0000D\u0000I\u0000O\u0000X\u0000\\\u0000`\u0000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001P\u0001\u0001\u0001\u0001\u0001\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u0000\u0004\nappl\n\u0000\u0004\nanot\n\u0000\u0004\ndnot\n\u0000\u0004\niapp\u0003\u0000\b\n\u0000\u0018.registernull\u0000\u0000null\n\u0000\u0004\nname\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0018.notifygrnull\u0000\u0000null\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0000\u0004\nwkdy\n\u0000\u0004\nmnth\n\u0000\u0004\nday \n\u0000\u0004\nyear\n\u0000\u0004\nTEXT\u000b\u0000\u001a0\u0000\u000bmorningtime\u0000\u000bmorningTime\n\u0000\u0004\nldt \u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000beveningtime\u0000\u000beveningTime\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0000\u0004\nwres\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\n\u0000\u0004\nlist\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0000\u0004\ncobj\n\u0000\u0004\nnmbr\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\n\u0000\u0004\nwrev\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000 0\u0000\u000eeventiscurrent\u0000\u000eeventIsCurrent\n\u0000\u0004\nwr1s\n\u0000\u0004\nbool\n\u0000\u0004\nwr5s\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\n\u0000\u0004\ntstr\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0000\u0004\nwr11\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0000\u0004\nwr12\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0000\u0006\n\u0000\u0004\nreco\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011\u0002\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015Oa\u0000\u0016_\u0000\u0015a\u0000\u0017,%a\u0000\u0018%_\u0000\u0015a\u0000\u0019,%a\u0000\u001a%_\u0000\u0015a\u0000\u001b,%a\u0000\u001c%_\u0000\u0015a\u0000\u001d,%a\u0000\u001e%a\u0000\u001f%a\u0000 &E`\u0000!O*a\u0000\"_\u0000!\/E`\u0000#O_\u0000#j\f\u0000$Oa\u0000%_\u0000\u0015a\u0000\u0017,%a\u0000&%_\u0000\u0015a\u0000\u0019,%a\u0000'%_\u0000\u0015a\u0000\u001b,%a\u0000(%_\u0000\u0015a\u0000\u001d,%a\u0000)%a\u0000*%a\u0000 &E`\u0000+O*a\u0000\"_\u0000+\/E`\u0000,O_\u0000,j\f\u0000$Oa\u0000-\u0012\u0001*a\u0000.-E`\u0000\/Ojva\u00000&E`\u00001O\u0017\u0001#k_\u0000\/a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u0000\/a\u00002\/E`\u00004O_\u00004\u0012\u0000*a\u00005-E`\u00006O\u0017\u0000k_\u00006a\u00002-a\u00003,Ekh\u001c\u0000\u0001_\u00006a\u00002\/E`\u00007O_\u00007\u0012\u0000fE`\u00008O*a\u00009,_\u0000#\u0002\t\u0000\u000f*a\u00009,_\u0000,\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO*a\u0000;,_\u0000\u0015\u0002\t\u0000\u000f*a\u00009,_\u0000#\u0004a\u0000:&\u001d\u0000\neE`\u00008Y\u0000\u0003hO_\u00008e\u0000\u001d\u0000ca\u0000<j\f\u0000$O*a\u00009,E`\u0000=O_\u0000=a\u0000>,E`\u0000?Oa\u0000@_\u00007a\u0000A,a\u0000B_\u00007a\u0000C,a\u0000D_\u0000?a\u0000E\u000ea\u0000F&E`\u0000GO_\u0000Gkva\u00000&E`\u0000HO_\u00001_\u0000H%E`\u00001Y\u0000\u0003hOPU[OY(U[OYO\u0017\u0000k_\u00001a\u00002-a\u00003,Ekh\u001c\u0000\u0000_\u00001a\u00002\/E`\u0000IO\u0014\u0000\u001c_\u0000Ia\u0000@,a\u0000J%_\u0000Ia\u0000D,%E`\u0000KW\u0000\u0016X\u0000L\u0000Ma\u0000N_\u0000Ia\u0000D,%E`\u0000KO\u0014\u0000\u0010_\u0000Ia\u0000B,E`\u0000OW\u0000\u000eX\u0000L\u0000Ma\u0000PE`\u0000OO\u0012\u0000\u0019*a\u0000Q_\u0000Ka\u0000\u0010_\u0000Oa\u0000R\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u0002\b\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000O\u0015\u0012GrowlHelperApp.appL\u00007\u0010\u0000p\u0014\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0004(K \u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000O\u0015\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u001a{&\u0747\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005build\u0000\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000&\u0747\u0000\u0000\u0000\u0001\u0000\u0018\u0000O\u0015\u0000N>\u0000\u0004\/\u0000\u0004\/\u0000\u0002\u0000\u0000\u001d|\u0000\u0002\u0000DWideBoy:Users:diggory:Code:OpenSource:growl:build:GrowlHelperApp.app\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000<Users\/diggory\/Code\/OpenSource\/growl\/build\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\u000e\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000+\u0000%Gathering today's events from iCal...\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\f\u0000m\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u00003\u0001\u0000p\r\u0000p\u0000\u0002O\u0000\u0000\u00003\u0001\u0000q\u0000r\r\u0000q\u0000\u0001k\u0000\u0000\u00009\u0001\u0000s\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002r\u0000\u0000\u00009\u0000B\u0000v\u0000w\r\u0000v\u0000\u0003I\u0000\u0002\u00009\u0000>\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0002\u0000u\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0002r\u0000\u0000\u0000C\u0000L\u0000z\u0000{\r\u0000z\u0000\u00012\u0000\u0000\u0000C\u0000H\n\u0000\u0004\nwres\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0002\u0000y\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002r\u0000\u0000\u0000M\u0000W\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000M\u0000S\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000M\u0000O\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000X\u0001\u0018\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000m\u0001\u0013\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000m\u0000y\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000m\u0000u\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000p\u0000u\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000p\u000b\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000z\u0000z\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000z\u0001\u0013\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\u0012\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\r\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\r\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\f\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\f\u0000\u0000\r\u0000\u0000\u0002A\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0001\b\u0000\u0000\r\u0000\u0000\u0002?\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d\tThis checking is pretty bad \u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000B\u0000< events today that have already elapsed are not included.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000$\u0000\u001e\tlog (\"CURRENT EVENT!\")\t\t\t\t\t\t\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u000b\u0000\u00060\u0000\u0002ii\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000z\u0000}\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0003\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0000\\\u0000h\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000c\u0000g\n\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0000\\\u0000c\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000_\u0000c~\n~\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000_}\u000b}\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u0019\u0001\u0019|{\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u0019\u0001\u0019zy\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001\u0019\u0001\u0019x\u0000\u0001x\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0001\u0019\u0001\u0000w\u0000\u0000v\r\u0000\u0000\u0001k\u0000\u0000\u0001.\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001.\u0001:\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001.\u00016\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00011\u00016u\u0000\nu\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u00014\u00015t\u000bt\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001.\u00011s\u000bs\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001;\u0001X\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001>\u0001I\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001>\u0001E\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001Eq\u000bq\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0001>\u0001Ap\u000bp\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000nml\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001m\u0000\u0000\u0002l\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001Q\u0001X\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0001Q\u0001T\u0001\u0004\f\u0001\u0004\u0000\u0010\u0000\nno summary\u0000\u0002\u0000\u0000\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0002l\u0000\u0002\u0001Y\u0001Yji\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003Q\u0000\u0000\u0001Y\u0001v\u0001\t\u0001\n\u0001\u000b\r\u0001\t\u0000\u0002r\u0000\u0000\u0001\\\u0001g\u0001\f\u0001\r\r\u0001\f\u0000\u0002n\u0000\u0000\u0001\\\u0001c\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0001_\u0001ch\u000bh\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0001\\\u0001_g\u000bg\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u0001\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000edc\ne\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001d\u0000\u0000\u0002c\u0000\u0000\r\u0001\u000b\u0000\u0002r\u0000\u0000\u0001o\u0001v\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001\u0012\f\u0001\u0012\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000b\u000bb\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0001\b\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002l\u0000\u0002\u0001w\u0001wa`\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015_\r\u0001\u0015\u0000\u0002O\u0000\u0001\u0001w\u0001\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002l\u0000\t\u0001{\u0001\u0001\u0018^\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0001{\u0001]\\\u0001\u0019\n]\u0000\u0018.notifygrnull\u0000\u0000null\u0001\\\u0000\u0000\u0006\u0001\u0019\u0000\u0003[\u0001\u001a\u0001\u001b\n[\u0000\u0004\nname\r\u0001\u001a\u0000\u0002l\u0000\t\u0001}\u0001\u0001\u001cZ\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0001}\u0001\u0001\u001d\f\u0001\u001d\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001Z\u0000\u0000\u0006\u0001\u001b\u0000\u0003Y\u0001\u001e\u0001\u001f\nY\u0000\u0004\ntitl\r\u0001\u001e\u0000\u0002l\u0000\t\u0001\u0001\u0001 X\r\u0001 \u0000\u0001o\u0000\u0000\u0001\u0001W\u000bW\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001X\u0000\u0000\u0006\u0001\u001f\u0000\u0003V\u0001!\u0001\"\nV\u0000\u0004\ndesc\r\u0001!\u0000\u0002l\u0000\t\u0001\u0001\u0001#U\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0001T\u000bT\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001U\u0000\u0000\u0006\u0001\"\u0000\u0003S\u0001$R\nS\u0000\u0004\nappl\r\u0001$\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006R\u0000\u0000\u0001^\u0000\u0000\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0001w\u0001x\u0000P\u0002_\u0000\u0000\u000bw\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001dQ\u0003Q\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0001\u001d\u0001)\u0001&\u0001'\r\u0001&\u0000\u0001m\u0000\u0000\u0001$\u0001(P\nP\u0000\u0004\nnmbr\r\u0001'\u0000\u0002n\u0001\u0000\u0001\u001d\u0001$\u0001(\u0001)\r\u0001(\u0000\u00012\u0000\u0001\u0001 \u0001$O\nO\u0000\u0004\ncobj\r\u0001)\u0000\u0001o\u0000\u0000\u0001\u001d\u0001 N\u000bN\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0002l\u0000\u0002\u0001\u0001ML\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002l\u0000\u0002\u0001\u0001KJ\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0002l\u0000\u0001\u0001\u0001I\u00010\u0001I\u0000\u0000\f\u00010\u0000#\u0000\u001d\texplain if there aren't any:\u0000\u0002\u0000\u0000\u0002\u0001\/\u0000\u0002\u00011\u00012\r\u00011\u0000\u0002l\u0000\u0002\u0001\u0001HG\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u00012\u0000\u0002\u00013\u00014\r\u00013\u0000\u0004Z\u0000\u0000\u0001\u0001\u00015\u00016FE\r\u00015\u0000\u0002=\u0000\u0000\u0001\u0001\u00017\u00018\r\u00017\u0000\u0002l\u0000\u0005\u0001\u0001\u00019D\r\u00019\u0000\u0002n\u0000\u0000\u0001\u0001\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0001C\nC\u0000\u0004\nnmbr\r\u0001;\u0000\u0002n\u0001\u0000\u0001\u0001\u0001<\u0001=\r\u0001<\u0000\u00012\u0000\u0001\u0001\u0001B\nB\u0000\u0004\ncobj\r\u0001=\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0001D\u0000\u0000\r\u00018\u0000\u0001m\u0000\u0000\u0001\u0001@\u0003@\u0000\u0000\r\u00016\u0000\u0001k\u0000\u0000\u0001\u0001\u0001>\u0002\u0001>\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0002O\u0000\u0001\u0001\u0001\u0001A\u0001B\r\u0001A\u0000\u0002l\u0000\t\u0001\u0001\u0001C?\r\u0001C\u0000\u0003I\u0000\u0002\u0001\u0001>=\u0001D\n>\u0000\u0018.notifygrnull\u0000\u0000null\u0001=\u0000\u0000\u0006\u0001D\u0000\u0003<\u0001E\u0001F\n<\u0000\u0004\nname\r\u0001E\u0000\u0002l\u0000\t\u0001\u0001\u0001G;\r\u0001G\u0000\u0001m\u0000\u0000\u0001\u0001\u0001H\f\u0001H\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001;\u0000\u0000\u0006\u0001F\u0000\u0003:\u0001I\u0001J\n:\u0000\u0004\ntitl\r\u0001I\u0000\u0002l\u0000\t\u0001\u0001\u0001K9\r\u0001K\u0000\u0001m\u0000\u0000\u0001\u0001\u0001L\f\u0001L\u0000\u000f\u0000\tNo Events\u0000\u0002\u0000\u0000\u00019\u0000\u0000\u0006\u0001J\u0000\u00038\u0001M\u0001N\n8\u0000\u0004\ndesc\r\u0001M\u0000\u0002l\u0000\t\u0001\u0001\u0001O7\r\u0001O\u0000\u0001m\u0000\u0000\u0001\u0001\u0001P\f\u0001P\u0000>\u00008There are no events in iCal today - go outside and play!\u0000\u0002\u0000\u0000\u00017\u0000\u0000\u0006\u0001N\u0000\u00036\u0001Q5\n6\u0000\u0004\nappl\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001R\f\u0001R\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u00065\u0000\u0000\u0001?\u0000\u0000\r\u0001B\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002\u0001@\u0000\u0002\u0001S4\r\u0001S\u0000\u0002l\u0000\u0002\u0001\u000132\u00013\u0000\u0000\u00012\u0000\u0000\u00024\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u00014\u0000\u0002\u0001T1\r\u0001T\u0000\u0002l\u0000\u0002\u0001\u00010\/\u00010\u0000\u0000\u0001\/\u0000\u0000\u00021\u0000\u0000\r\u0000r\u0000\u0001m\u0000\u0000\u00003\u00006\u0001U\u000f\u0001U\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0003^\biCal.appP\u0000\u0000\u0000P\u00000\u0000\u0000\u0000\u0000`\u0005U\u00000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000e\u0002(-l\u0000\u0000wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0007WideBoy\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000.1H+\u0000\u0000\u0000\u0000\u0003^\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0014\u001e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000.1\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0006\u000e\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0003^\u0000\u0002\u0000\u001dWideBoy:Applications:iCal.app\u0000\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000W\u0000i\u0000d\u0000e\u0000B\u0000o\u0000y\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000.-\u0001.\u0000\u0000\u0001-\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X,\r\u0001X\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000+*\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002,\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003)\u0001Y\u0001Z\u0001)\u0000\u0000\u0010\u0001Y\u0000\u0001(\n(\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001Z\u0000\u0007\u0010'\u0001[&%\u0001\\\u0001]$\n'\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001[\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001^\u0002\u0001^\u0000\u0002\u0000.\u0001_\u0002\u0001_\u0000\u0002\u0000n#\u0002#\u0000\u0000\u0001&\u0000\u0000\u0002%\u0000\u0000\u0010\u0001\\\u0000\u0002\"!\u000b\"\u0000\u00050\u0000\u0001i\u0000\u0000\u000b!\u0000\u00060\u0000\u0002ii\u0000\u0000\u0010\u0001]\u00008\u0000P\u0000B\u0000D \u001f\u0000I\u001e\u001d\u001c\u0000O\u001b\u001a\u0019\u0000X\u0018\u0000\\\u0017\u0000`\u0000b\u0016\u0001U\u0015\u0014\u0013\u0012\u0011\u0010\u000f\u000e\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0000\u0001\u0004\u0001\u0012\u0001\u001d\u0001%\u0001H\u0001L\u0001P\u0001R\u000b \u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n\u001f\u0000\u0004\nappl\n\u001e\u0000\u0004\nanot\n\u001d\u0000\u0004\ndnot\n\u001c\u0000\u0004\niapp\u0003\u001b\u0000\b\n\u001a\u0000\u0018.registernull\u0000\u0000null\n\u0019\u0000\u0004\nname\n\u0018\u0000\u0004\ntitl\n\u0017\u0000\u0004\ndesc\n\u0016\u0000\u0018.notifygrnull\u0000\u0000null\n\u0015\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u0014\u0000\u00070\u0000\u0003now\u0000\u0000\n\u0013\u0000\u0004\nwres\u000b\u0012\u0000\u001e0\u0000\reverycalendar\u0000\reveryCalendar\n\u0011\u0000\u0004\nlist\u000b\u0010\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u000f\u0000\u0004\ncobj\n\u000e\u0000\u0004\nnmbr\u000b\r\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\n\f\u0000\u0004\nwrev\u000b\u000b\u0000\u00180\u0000\neveryevent\u0000\neveryEvent\u000b\n\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\n\t\u0000\u0004\nwr1s\n\b\u0000\u0004\nwr5s\u000b\u0007\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\u0006\u0000\u0004\nwr11\u000b\u0005\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0004\u0000\u0004\nwr12\u0003\u0003\u0000\u0004\n\u0002\u0000\u0004\nreco\u000b\u0001\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0000\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u000b\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011$\u0001\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UOa\u0000\u0014\u0012\u0001*j\f\u0000\u0015E`\u0000\u0016O*a\u0000\u0017-E`\u0000\u0018Ojva\u0000\u0019&E`\u0000\u001aO\u0017\u0000k_\u0000\u0018a\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0000_\u0000\u0018a\u0000\u001b\/E`\u0000\u001dO_\u0000\u001d\u0012\u0000*a\u0000\u001e-E`\u0000\u001fO\u0017\u0000k_\u0000\u001fa\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0001_\u0000\u001fa\u0000\u001b\/E`\u0000 O_\u0000 \u0012\u0000\\*a\u0000!,_\u0000\u0016\u0004\u001d\u0000O*a\u0000\",_\u0000\u0016\u0002\u001d\u0000?a\u0000#_\u0000 a\u0000$,a\u0000%_\u0000 a\u0000&,a\u0000'\u000ea\u0000(&E`\u0000)O_\u0000)kva\u0000\u0019&E`\u0000*O_\u0000\u001a_\u0000*%E`\u0000\u001aY\u0000\u0003hY\u0000\u0003hU[OYU[OYTO\u0017\u0000~k_\u0000\u001aa\u0000\u001b-a\u0000\u001c,Ekh\u001c\u0000\u0000_\u0000\u001aa\u0000\u001b\/E`\u0000+O\u0014\u0000\u0010_\u0000+a\u0000#,E`\u0000,W\u0000\u000eX\u0000-\u0000.a\u0000\/E`\u0000,O\u0014\u0000\u0010_\u0000+a\u0000%,E`\u00000W\u0000\u000eX\u0000-\u0000.a\u00001E`\u00000O\u0012\u0000\u0019*a\u00002_\u0000,a\u0000\u0010_\u00000a\u00003\f\u0000\u0013U[OYO_\u0000\u001aa\u0000\u001b-a\u0000\u001c,j\u0000\u001d\u0000#\u0012\u0000\u0019*a\u00004a\u00005a\u0000\u0010a\u00006a\u00007\f\u0000\u0013UOPY\u0000\u0003hOPU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"87d353a795cf4ee0ddc5fd787d0926b50fd6d08d","subject":"el capitan script change","message":"el capitan script change\n","repos":"zammad\/zammad,zammad\/zammad,monotek\/zammad,zammad\/zammad,monotek\/zammad,zammad\/zammad,monotek\/zammad,monotek\/zammad,monotek\/zammad,zammad\/zammad,zammad\/zammad,monotek\/zammad","old_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\b\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\t\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\t\u0000\u001e\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001d\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001d\u0000%\u0000&\r\u0000%\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u001b\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0019\u0000)\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0019\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nfvtg\r\u0000+\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000,\n\u0000\u0004\nbrow\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000 \u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000-\u000f\u0000-\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000\u00008\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0016(\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u00005Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\u001f\u0000$\u00002\r\u00002\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u00003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00003\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\r\u00006\u0000\u0003l\u0000\u0002\u0000%\u0000\u00007\r\u00007\u0000\u0002O\u0000\u0000\u0000%\u0000\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000)\u0000\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000)\u0000.\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0000?\u0000@\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000?\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000A\u0000B\r\u0000A\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000C\u0000D\r\u0000C\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0006\u0000c\u0000d\u0000 \r\u0000D\u0000\u0003l\u0000\u0005\u00000\u00003\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00000\u00003\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npsxp\r\u0000I\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001m\u0000\u0000\u00004\u00007\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0004\u0000.\u0000.\u0006\u0000@\u0000\u0003\u0000L\n\u0000\u0004\nkfil\r\u0000L\u0000\u0002n\u0000\u0000\u0000;\u0000E\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\ntcnt\r\u0000N\u0000\u0003l\u0001\u0000\u0000;\u0000A\u0000O\r\u0000O\u0000\u00024\u0001\u0000\u0000;\u0000A\u0000P\n\u0000\u0004\ncwin\r\u0000P\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000>\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000J\u0000J\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000J\u0000O\u0000U\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000U\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000P\u0000P\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\r\u0000X\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000Y\u0000Z\u0000[\r\u0000Y\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000_\u0000`\r\u0000_\u0000\u0002?\u0000\u0001\u0000^\u0000a\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000b\u0000\u0001m\u0000\u0000\u0000_\u0000`\u0003\u0000\u0001\r\u0000`\u0000\u0001k\u0000\u0000\u0000d\u0000\u0000c\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000d\u0000i\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000g\r\u0000g\u0000\u0002O\u0000\u0000\u0000j\u0000\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000p\u0000\u0000j\u0000k\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000j\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000\u0002\u0000t\u0006\u0000k\u0000\u0003\u0000n\n\u0000\u0004\nfaal\r\u0000n\u0000\u0001J\u0000\u0000\u0000v\u0000{\u0000o\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0001m\u0000\u0000\u0000v\u0000y\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000i\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000q\u000f\u0000q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000\u00008\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0012l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u0000<Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000t\u0000u\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000\u0000\u0000v\r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00024\u0000\u0000\u0000\u0000\u0000y\n\u0000\u0004\ncobj\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000u\u0000\u0003\u0000z\n\u0000\u0004\nkfil\r\u0000z\u0000\u0002n\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000|\u0000\u0003l\u0001\u0000\u0000\u0000\u0000}\r\u0000}\u0000\u00024\u0001\u0000\u0000\u0000\u0000~\n\u0000\u0004\ncwin\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000s\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000Z\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000[\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001j\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000I\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000B\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000I\u0000\u0000\u0000W\u0000\u0002\u00001Solid Stone:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00006\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001c\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u0000-\u0000\u0000E\u0000J\u0000q\u0000l\u0003\u0000\u0004\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\u0007O*k\/,&EUOkj\f\u0000\fO\u0012\u0000*j\f\u0000\u0007O,%a\u0000\u0010%a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\fO\u0017\u0000Vkj\f\u0000\u0015kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\fOa\u0000\u0016\u0012\u0000\u0011a\u0000\u0017a\u0000\u0018a\u0000\u0019kvl\f\u0000\u001aUY\u0000\u0003hOa\u0000\u001b\/a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\f[OYU\u000f\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000j\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000m\u0000r\u0000f\u0000l\u0000i\u0000x\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000g\u0000i\u0000t\u0000:\u0000z\u0000a\u0000m\u0000m\u0000a\u0000d\u0000:\u0000c\u0000o\u0000n\u0000t\u0000r\u0000i\u0000b\u0000:\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\b\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\t\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\t\u0000\u001e\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001d\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001d\u0000%\u0000&\r\u0000%\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u001b\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0019\u0000)\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0019\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nfvtg\r\u0000+\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000,\n\u0000\u0004\nbrow\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000 \u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000-\u000f\u0000-\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010H+\u0000\u0000\u0003s\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00030B\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0010e\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000B\u0000\u0000\u0000\u0001\u0000\f\u0003s\u0003s\u0003s\u0000\u0002\u00005Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\u001f\u0000$\u00002\r\u00002\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u00003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00003\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\r\u00006\u0000\u0003l\u0000\u0002\u0000%\u0000\u00007\r\u00007\u0000\u0002O\u0000\u0000\u0000%\u0000\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000)\u0000\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000)\u0000.\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0000?\u0000@\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000?\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000A\u0000B\r\u0000A\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000C\u0000D\r\u0000C\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0006\u0000c\u0000d\u0000 \r\u0000D\u0000\u0003l\u0000\u0005\u00000\u00003\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00000\u00003\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npsxp\r\u0000I\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001m\u0000\u0000\u00004\u00007\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0004\u0000.\u0000.\u0006\u0000@\u0000\u0003\u0000L\n\u0000\u0004\nkfil\r\u0000L\u0000\u0002n\u0000\u0000\u0000;\u0000E\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\ntcnt\r\u0000N\u0000\u0003l\u0001\u0000\u0000;\u0000A\u0000O\r\u0000O\u0000\u00024\u0001\u0000\u0000;\u0000A\u0000P\n\u0000\u0004\ncwin\r\u0000P\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000>\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000J\u0000J\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000J\u0000O\u0000U\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000U\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000P\u0000P\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\r\u0000X\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000Y\u0000Z\u0000[\r\u0000Y\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000_\u0000`\r\u0000_\u0000\u0002?\u0000\u0001\u0000^\u0000a\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000b\u0000\u0001m\u0000\u0000\u0000_\u0000`\u0003\u0000\u0001\r\u0000`\u0000\u0001k\u0000\u0000\u0000d\u0000\u0000c\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000d\u0000i\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000g\r\u0000g\u0000\u0002O\u0000\u0000\u0000j\u0000\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000p\u0000\u0000j\u0000k\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000j\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000\u0002\u0000t\u0006\u0000k\u0000\u0003\u0000n\n\u0000\u0004\nfaal\r\u0000n\u0000\u0001J\u0000\u0000\u0000v\u0000{\u0000o\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0001m\u0000\u0000\u0000v\u0000y\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000i\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000q\u000f\u0000q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010H+\u0000\u0000\u0003s\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00035>\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0010e\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0003s\u0003s\u0003s\u0000\u0002\u0000<Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000t\u0000u\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000\u0000\u0000v\r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00024\u0000\u0000\u0000\u0000\u0000y\n\u0000\u0004\ncobj\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000u\u0000\u0003\u0000z\n\u0000\u0004\nkfil\r\u0000z\u0000\u0002n\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000|\u0000\u0003l\u0001\u0000\u0000\u0000\u0000}\r\u0000}\u0000\u00024\u0001\u0000\u0000\u0000\u0000~\n\u0000\u0004\ncwin\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000s\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000Z\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000[\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001j\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0010H+\u0000\u0000\u0003s\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00035B\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0010e\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005&h\u0000\u0000\u0000\u0001\u0000\b\u0003s\u0003s\u0000\u0002\u00001Solid Stone:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00006\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001c\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u0000-\u0000\u0000E\u0000J\u0000q\u0000l\u0003\u0000\u0004\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\u0007O*k\/,&EUOkj\f\u0000\fO\u0012\u0000*j\f\u0000\u0007O,%a\u0000\u0010%a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\fO\u0017\u0000Vkj\f\u0000\u0015kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\fOa\u0000\u0016\u0012\u0000\u0011a\u0000\u0017a\u0000\u0018a\u0000\u0019kvl\f\u0000\u001aUY\u0000\u0003hOa\u0000\u001b\/a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\f[OYU\u000f\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000j\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000m\u0000r\u0000f\u0000l\u0000i\u0000x\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000g\u0000i\u0000t\u0000:\u0000z\u0000a\u0000m\u0000m\u0000a\u0000d\u0000:\u0000c\u0000o\u0000n\u0000t\u0000r\u0000i\u0000b\u0000:\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"6cbf49d8f0ef60e569601f89ea96d94316e6f3ac","subject":"Chg: update load_order","message":"Chg: update load_order\n","repos":"KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook,KyleKing\/My-Programming-Sketchbook","old_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_file":"AppleScripts\/Hammerspoon-scpt\/load_order.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"7138498b0b812c5485804e954cffae296cd9e75f","subject":"debugMode is false by default.","message":"debugMode is false by default.\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.7, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.7 - 2019-03-12 ( eshagdar ): debugMode should be set to false by false. Users can overwrite it if they need to turn it on.\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.6, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3e96f25fc058ca0212c1e75a587b8d6e323e6824","subject":"Add log file edit functionality","message":"Add log file edit functionality\n\nStill need to add preference for file edit warnings as well as a UI for\nresetting the warning once it's been disabled.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\ton disable_file_edit_warning()\n\t\t\tset msg to my class & \".disable_file_edit_warning(): TODO\"\n\t\t\tmy debug_log(1, msg)\n\t\t\tdisplay dialog msg with title \"TODO\" buttons {\"OK\"} default button 1\n\t\tend disable_file_edit_warning\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's disable_file_edit_warning()\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4f4044099d05561adfa79af0c2b136b1bb87d676","subject":"whitespace","message":"whitespace\n","repos":"nuclearcoconut42\/niji","old_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u000e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\"\u0000\u000e\r\u0000\u000e\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\"\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\n\u0000\u001d\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\u0000\u0015\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000<\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000.\u0006\u0000\u0015\u0000\u0003\u0000\u0018\n\u0000\u0004\ndtxt\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000 \n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\r\u0000#\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000&\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000*\u0000\/\u00000\u00001\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u00004\u00005\r\u00004\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u00006\u00007\n\u0000\u0004\nctxt\r\u00006\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u00008\r\u00008\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000<\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000<\u0000\u0003\u0000=\u0000>\n\u0000\u0004\npsof\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\npsin\r\u0000A\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u00007\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u00000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000\"\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000E\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000E\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000H\r\u0000H\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000+\u00004\u0000M\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000M\u0000\u0003\u0000N\u0000O\n\u0000\u0004\npsof\r\u0000N\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000?\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\npsin\r\u0000R\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000J\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u00007\u0000I\u0000U\u0000V\r\u0000U\u0000\u0002A\u0000\u0001\u00007\u0000:\u0000W\u0000X\r\u0000W\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000X\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\r\u0000V\u0000\u0001k\u0000\u0000\u0000=\u0000E\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000\\\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\\\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0001L\u0000\u0000\u0000C\u0000E\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000J\u0000Y\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000J\u0000W\u0000d\u0000e\r\u0000d\u0000\u00037\u0001\u0000\u0000K\u0000W\u0000f\u0000g\n\u0000\u0004\nctxt\r\u0000f\u0000\u0001m\u0000\u0000\u0000O\u0000Q\u0003\u0000\u0001\r\u0000g\u0000\u0003l\u0000\u0005\u0000R\u0000V\u0000h\r\u0000h\u0000\u0002\\\u0000\u0000\u0000R\u0000V\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000a\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000Z\u0000w\u0000m\u0000n\u0000o\r\u0000m\u0000\u0002r\u0000\u0000\u0000]\u0000l\u0000p\u0000q\r\u0000p\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000r\u0000s\r\u0000r\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000t\u0000u\n\u0000\u0004\nctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000b\u0000f\u0000v\r\u0000v\u0000\u0002[\u0000\u0000\u0000b\u0000f\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000x\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000g\u0000i\u0003\r\u0000s\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0002r\u0000\u0000\u0000t\u0000w\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000l\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002r\u0000\u0000\u0000x\u0000}\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000&\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000z\u0000|\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000y\u0000z\n\u0000\u0004\nascr\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000=\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\t\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0001\u0001\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0001\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\n\u0001\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000e\u0001\u0010\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\r\u0001\u000e\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0012\u0001\u0012|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u0012\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013z\u000bz\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001a\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001a\u0001\u001ay\u0000\u0000\u0001y\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u001a\u0001L\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001d\u00014\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002r\u0000\u0000\u0001\u001d\u0001$\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0002n\u0000\u0000\u0001\u001d\u0001\"\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"x\u000bx\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001ew\u000bw\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002r\u0000\u0000\u0001%\u0001,\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0000\u0001%\u0001*\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001&\u0001*u\u000bu\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\f\u0000\u0001o\u0000\u0000\u0001%\u0001&t\u000bt\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\rr\r\u0001\r\u0000\u0002r\u0000\u0000\u0001-\u00014\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001-\u00012\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001.\u00012q\u000bq\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001-\u0001.p\u000bp\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000n\u0001\u0012m\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001\u0013\u0002\u0001\u0013\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001<\u0001Ik\u0001\u0016j\nk\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0001?\u0001@i\u000bi\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0002\u0000)\u0002j\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001fh\r\u0001\u001f\u0000\u0001L\u0000\u0000\u0001J\u0001Lg\u0001g\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0001M\u0001Mfed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0001M\u0001Mc\u0001$\u0001%\u0001c\u0000\u0000\f\u0001$\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003Q\u0000\u0000\u0001M\u0001\u0001)\u0001*\u0001+\r\u0001)\u0000\u0001k\u0000\u0000\u0001P\u0001\u0001,\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002r\u0000\u0000\u0001P\u0001e\u0001\/\u00010\r\u0001\/\u0000\u0002b\u0000\u0000\u0001P\u0001a\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0005\u0001P\u0001]\u00013ba\r\u00013\u0000\u0003I\u0000\u0002\u0001P\u0001]`\u00014\u00015\n`\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00014\u0000\u0001m\u0000\u0000\u0001P\u0001S_\n_\u0000\b\u000bafdrtemp\u0006\u00015\u0000\u0003^\u00016]\n^\u0000\u0004\nrtyp\r\u00016\u0000\u0001m\u0000\u0000\u0001V\u0001Y\\\n\\\u0000\u0004\nTEXT\u0006]\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u00012\u0000\u0001m\u0000\u0000\u0001]\u0001`\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001.\u0000\u0002\u00019Z\r\u00019\u0000\u0003I\u0000\u0002\u0001f\u0001Y\u0001:X\nY\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001:\u0000\u0002b\u0000\u0000\u0001f\u0001{\u0001;\u0001<\r\u0001;\u0000\u0002b\u0000\u0000\u0001f\u0001s\u0001=\u0001>\r\u0001=\u0000\u0002b\u0000\u0000\u0001f\u0001o\u0001?\u0001@\r\u0001?\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0001A\u000e\u0001A\u0000\u0001\u0001B\u0011\u0001B\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001@\u0000\u0003l\u0000\u0005\u0001i\u0001n\u0001CWV\r\u0001C\u0000\u0002n\u0000\u0000\u0001i\u0001n\u0001D\u0001E\r\u0001D\u0000\u00011\u0000\u0000\u0001j\u0001nU\nU\u0000\u0004\nstrq\r\u0001E\u0000\u0001o\u0000\u0000\u0001i\u0001jT\u000bT\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0001>\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0006\u0000 \u0000>\u0000 \r\u0001<\u0000\u0002n\u0000\u0000\u0001s\u0001z\u0001H\u0001I\r\u0001H\u0000\u00011\u0000\u0000\u0001v\u0001zS\nS\u0000\u0004\npsxp\r\u0001I\u0000\u0001o\u0000\u0000\u0001s\u0001vR\u000bR\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002X\u0000\u0000\u0002Z\u0000\u0000\r\u0001*\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000Q\u0001JP\nQ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002P\u0000\u0000\r\u0001+\u0000\u0001k\u0000\u0000\u0001\u0001\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001N\u0001NM\nN\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001N\u0000\u0002b\u0000\u0000\u0001\u0001\u0001O\u0001P\r\u0001O\u0000\u0002b\u0000\u0000\u0001\u0001\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001R\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001P\u0000\u0001m\u0000\u0000\u0001\u0001\u0001U\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0002\u0000)\u0002M\u0000\u0000\u0002\u0001M\u0000\u0002\u0001WK\r\u0001W\u0000\u0001L\u0000\u0000\u0001\u0001J\u0001J\u0000\u0000\u0002K\u0000\u0000\u0002\u0001(\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\u0001IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0001\u0001\u0001F\u0001\\\u0001]\u0001F\u0000\u0000\f\u0001\\\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001[\u0000\u0002\u0001_E\r\u0001_\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001`\u0001a\u0001b\r\u0001`\u0000\u0001k\u0000\u0000\u0001\u0001\u0001c\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001fC\nD\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001g\u0001h\r\u0001g\u0000\u0002b\u0000\u0000\u0001\u0001\u0001i\u0001j\r\u0001i\u0000\u0002b\u0000\u0000\u0001\u0001\u0001k\u0001l\r\u0001k\u0000\u0002b\u0000\u0000\u0001\u0001\u0001m\u0001n\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001o\u000e\u0001o\u0000\u0001\u0001p\u0011\u0001p\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001n\u0000\u0001o\u0000\u0000\u0001\u0001B\u000bB\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0001\u0001q\u000e\u0001q\u0000\u0001\u0001r\u0011\u0001r\u0000\u0002\u0000 \r\u0001j\u0000\u0002n\u0000\u0000\u0001\u0001\u0001s\u0001t\r\u0001s\u0000\u00011\u0000\u0000\u0001\u0001A\nA\u0000\u0004\npsxp\r\u0001t\u0000\u0001o\u0000\u0000\u0001\u0001@\u000b@\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001h\u0000\u0001m\u0000\u0000\u0001\u0001\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0002\u0000\"\u0002C\u0000\u0000\u0002\u0001e\u0000\u0002\u0001w?\r\u0001w\u0000\u0003I\u0000\u0002\u0001\u0001>\u0001x=\n>\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001x\u0000\u0002b\u0000\u0000\u0001\u0001\u0001y\u0001z\r\u0001y\u0000\u0002b\u0000\u0000\u0001\u0001\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001\u0001\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001|\u0000\u0001o\u0000\u0000\u0001\u0001<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001z\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002=\u0000\u0000\u0002?\u0000\u0000\r\u0001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000;\u0001:\n;\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002:\u0000\u0000\r\u0001b\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00018\u00017\n8\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00015\u000b5\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00027\u0000\u0000\u0002\u0001\u0000\u0002\u00014\r\u0001\u0000\u0001L\u0000\u0000\u0001\u00013\u00013\u0000\u0000\u00024\u0000\u0000\u0002E\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001\u0000\u0002\u00011\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00010\u0001\u0001\u00010\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002\u001f\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001.\u000b.\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001+\u000b+\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001)\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0000\u0002\u0007\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0000\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0005(\u000b(\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001'\u000b'\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000%\u0001$\n%\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002$\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u000f\u0002\u001f\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u000f\u0002\u001c\"\u0001!\n\"\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0018\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0014\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u000f\u0002\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0012\u0002\u0013 \u000b \u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0001L\u0000\u0000\u0002\u001d\u0002\u001f\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002 \u0002 \u001a\u0001\u0001\u0001\u001a\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002 \u00021\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002-\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002)\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002'\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002#\u0019\u000b\u0019\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002#\u0002&\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0002'\u0002(\u0018\u000b\u0018\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002)\u0002,\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0016\r\u0001\u0000\u0003Q\u0000\u0000\u00022\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u00025\u0002Z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00025\u0002J\u0015\u0001\u0014\n\u0015\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002F\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002B\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002>\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u00028\u0002=\u0001\u0013\u0012\r\u0001\u0000\u0002n\u0000\u0000\u00028\u0002=\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00029\u0002=\u0011\n\u0011\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u00028\u00029\u0010\u000b\u0010\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002>\u0002A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002E\u000f\u000b\u000f\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000e\r\u0001\u0000\u0003I\u0000\u0002\u0002K\u0002Z\r\u0001\f\n\r\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002V\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002R\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002N\u0002Q\u000b\u000b\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002R\u0002U\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002\f\u0000\u0000\u0002\u000e\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0001\t\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\t\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002b\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002b\u0002w\u0007\u0001\u0006\n\u0007\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002b\u0002s\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0002b\u0000\u0000\u0002b\u0002o\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0002b\u0002m\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0002b\u0002i\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0001m\u0000\u0000\u0002b\u0002e\u0002\b\u000e\u0002\b\u0000\u0001\u0002\t\u0011\u0002\t\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\u0007\u0000\u0001o\u0000\u0000\u0002e\u0002h\u0005\u000b\u0005\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0002i\u0002l\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0002m\u0002n\u0004\u000b\u0004\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0002o\u0002r\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000)\u0002\u0006\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u000e\u0003\r\u0002\u000e\u0000\u0001L\u0000\u0000\u0002x\u0002z\u0002\u0001\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0016\u0000\u0000\u00021\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002}\u0002\u0001\u0002\u000f\u0000\n\u0001\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u000f\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0010\u0002\u0011\r\u0002\u0010\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0001m\u0000\u0000\u0002}\u0002\u0002\u0014\u000e\u0002\u0014\u0000\u0001\u0002\u0015\u0011\u0002\u0015\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0002\u0013\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0002\u0002\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0000\u0002{\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0002\u0018\u0002\u0019\u0002\u001a\u0001\u0000\u0000\u0010\u0002\u0018\u0000\u0002\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002\u0019\u0000\u0007\u0010\u0000%\u0002\u001b\u0002\u001c\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001b\u0000\u0013\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002\u001c\u0000G\u0000?\u0000F\u0000P\u0000]\u0000{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001b\u0001\u001d\u00017\u0001A\u0001F\u0001S\u0001U\u0001o\u0001q\u0001u\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\b\u0002\n\u0002\f\u0002\u0014\u0002\u0016\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\u000fX\u0000\u0006\u0000\u0007j\f\u0000\tOh\u000fO*\f\u0000\u0005EOl\u0004\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0003hO[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000ukj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0014X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002\u001a\u0000\u0007\u0010\u0002\u001d\u0002\u001e\u0002\u001f\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"\u0002 \u0002\u0002 \u0000\u0002\u0000\u0005\u0002!\u0002\u0002!\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001e\u0000\u0000\u0010\u0002\u001f\u0000\b\u0000\n\u0000\u0016\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u0011\u0000#EO\u0017\u0000\u001dhe\u0019l\f\u0000\u0004O,EOj\f\u0000\u0007[OY\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u000e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\"\u0000\u000e\r\u0000\u000e\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\"\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\n\u0000\u001d\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\u0000\u0015\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000<\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000.\u0006\u0000\u0015\u0000\u0003\u0000\u0018\n\u0000\u0004\ndtxt\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000 \n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\r\u0000#\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000&\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000*\u0000\/\u00000\u00001\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u00004\u00005\r\u00004\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u00006\u00007\n\u0000\u0004\nctxt\r\u00006\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u00008\r\u00008\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000<\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000<\u0000\u0003\u0000=\u0000>\n\u0000\u0004\npsof\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\npsin\r\u0000A\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u00007\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u00000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000\"\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000E\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000E\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000H\r\u0000H\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000+\u00004\u0000M\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000M\u0000\u0003\u0000N\u0000O\n\u0000\u0004\npsof\r\u0000N\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000?\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\npsin\r\u0000R\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000J\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u00007\u0000I\u0000U\u0000V\r\u0000U\u0000\u0002A\u0000\u0001\u00007\u0000:\u0000W\u0000X\r\u0000W\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000X\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\r\u0000V\u0000\u0001k\u0000\u0000\u0000=\u0000E\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000\\\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\\\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0001L\u0000\u0000\u0000C\u0000E\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000J\u0000Y\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000J\u0000W\u0000d\u0000e\r\u0000d\u0000\u00037\u0001\u0000\u0000K\u0000W\u0000f\u0000g\n\u0000\u0004\nctxt\r\u0000f\u0000\u0001m\u0000\u0000\u0000O\u0000Q\u0003\u0000\u0001\r\u0000g\u0000\u0003l\u0000\u0005\u0000R\u0000V\u0000h\r\u0000h\u0000\u0002\\\u0000\u0000\u0000R\u0000V\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000a\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000Z\u0000w\u0000m\u0000n\u0000o\r\u0000m\u0000\u0002r\u0000\u0000\u0000]\u0000l\u0000p\u0000q\r\u0000p\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000r\u0000s\r\u0000r\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000t\u0000u\n\u0000\u0004\nctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000b\u0000f\u0000v\r\u0000v\u0000\u0002[\u0000\u0000\u0000b\u0000f\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000x\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000g\u0000i\u0003\r\u0000s\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0002r\u0000\u0000\u0000t\u0000w\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000l\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002r\u0000\u0000\u0000x\u0000}\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000&\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000z\u0000|\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000y\u0000z\n\u0000\u0004\nascr\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000=\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\t\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0001\u0001\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0001\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\n\u0001\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000e\u0001\u0010\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\r\u0001\u000e\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0012\u0001\u0012|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u0012\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013z\u000bz\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001a\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001a\u0001\u001ay\u0000\u0000\u0001y\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u001a\u0001L\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001d\u00014\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002r\u0000\u0000\u0001\u001d\u0001$\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0002n\u0000\u0000\u0001\u001d\u0001\"\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"x\u000bx\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001ew\u000bw\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002r\u0000\u0000\u0001%\u0001,\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0000\u0001%\u0001*\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001&\u0001*u\u000bu\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\f\u0000\u0001o\u0000\u0000\u0001%\u0001&t\u000bt\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\rr\r\u0001\r\u0000\u0002r\u0000\u0000\u0001-\u00014\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001-\u00012\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001.\u00012q\u000bq\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001-\u0001.p\u000bp\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000n\u0001\u0012m\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001\u0013\u0002\u0001\u0013\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001<\u0001Ik\u0001\u0016j\nk\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0001?\u0001@i\u000bi\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0002\u0000)\u0002j\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001fh\r\u0001\u001f\u0000\u0001L\u0000\u0000\u0001J\u0001Lg\u0001g\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0001M\u0001Mfed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0001M\u0001Mc\u0001$\u0001%\u0001c\u0000\u0000\f\u0001$\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003Q\u0000\u0000\u0001M\u0001\u0001)\u0001*\u0001+\r\u0001)\u0000\u0001k\u0000\u0000\u0001P\u0001\u0001,\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002r\u0000\u0000\u0001P\u0001e\u0001\/\u00010\r\u0001\/\u0000\u0002b\u0000\u0000\u0001P\u0001a\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0005\u0001P\u0001]\u00013ba\r\u00013\u0000\u0003I\u0000\u0002\u0001P\u0001]`\u00014\u00015\n`\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00014\u0000\u0001m\u0000\u0000\u0001P\u0001S_\n_\u0000\b\u000bafdrtemp\u0006\u00015\u0000\u0003^\u00016]\n^\u0000\u0004\nrtyp\r\u00016\u0000\u0001m\u0000\u0000\u0001V\u0001Y\\\n\\\u0000\u0004\nTEXT\u0006]\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u00012\u0000\u0001m\u0000\u0000\u0001]\u0001`\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001.\u0000\u0002\u00019Z\r\u00019\u0000\u0003I\u0000\u0002\u0001f\u0001Y\u0001:X\nY\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001:\u0000\u0002b\u0000\u0000\u0001f\u0001{\u0001;\u0001<\r\u0001;\u0000\u0002b\u0000\u0000\u0001f\u0001s\u0001=\u0001>\r\u0001=\u0000\u0002b\u0000\u0000\u0001f\u0001o\u0001?\u0001@\r\u0001?\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0001A\u000e\u0001A\u0000\u0001\u0001B\u0011\u0001B\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001@\u0000\u0003l\u0000\u0005\u0001i\u0001n\u0001CWV\r\u0001C\u0000\u0002n\u0000\u0000\u0001i\u0001n\u0001D\u0001E\r\u0001D\u0000\u00011\u0000\u0000\u0001j\u0001nU\nU\u0000\u0004\nstrq\r\u0001E\u0000\u0001o\u0000\u0000\u0001i\u0001jT\u000bT\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0001>\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0006\u0000 \u0000>\u0000 \r\u0001<\u0000\u0002n\u0000\u0000\u0001s\u0001z\u0001H\u0001I\r\u0001H\u0000\u00011\u0000\u0000\u0001v\u0001zS\nS\u0000\u0004\npsxp\r\u0001I\u0000\u0001o\u0000\u0000\u0001s\u0001vR\u000bR\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002X\u0000\u0000\u0002Z\u0000\u0000\r\u0001*\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000Q\u0001JP\nQ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002P\u0000\u0000\r\u0001+\u0000\u0001k\u0000\u0000\u0001\u0001\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001N\u0001NM\nN\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001N\u0000\u0002b\u0000\u0000\u0001\u0001\u0001O\u0001P\r\u0001O\u0000\u0002b\u0000\u0000\u0001\u0001\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001R\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001P\u0000\u0001m\u0000\u0000\u0001\u0001\u0001U\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0002\u0000)\u0002M\u0000\u0000\u0002\u0001M\u0000\u0002\u0001WK\r\u0001W\u0000\u0001L\u0000\u0000\u0001\u0001J\u0001J\u0000\u0000\u0002K\u0000\u0000\u0002\u0001(\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\u0001IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0001\u0001\u0001F\u0001\\\u0001]\u0001F\u0000\u0000\f\u0001\\\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001[\u0000\u0002\u0001_E\r\u0001_\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001`\u0001a\u0001b\r\u0001`\u0000\u0001k\u0000\u0000\u0001\u0001\u0001c\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001fC\nD\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001g\u0001h\r\u0001g\u0000\u0002b\u0000\u0000\u0001\u0001\u0001i\u0001j\r\u0001i\u0000\u0002b\u0000\u0000\u0001\u0001\u0001k\u0001l\r\u0001k\u0000\u0002b\u0000\u0000\u0001\u0001\u0001m\u0001n\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001o\u000e\u0001o\u0000\u0001\u0001p\u0011\u0001p\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001n\u0000\u0001o\u0000\u0000\u0001\u0001B\u000bB\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0001\u0001q\u000e\u0001q\u0000\u0001\u0001r\u0011\u0001r\u0000\u0002\u0000 \r\u0001j\u0000\u0002n\u0000\u0000\u0001\u0001\u0001s\u0001t\r\u0001s\u0000\u00011\u0000\u0000\u0001\u0001A\nA\u0000\u0004\npsxp\r\u0001t\u0000\u0001o\u0000\u0000\u0001\u0001@\u000b@\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001h\u0000\u0001m\u0000\u0000\u0001\u0001\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0002\u0000\"\u0002C\u0000\u0000\u0002\u0001e\u0000\u0002\u0001w?\r\u0001w\u0000\u0003I\u0000\u0002\u0001\u0001>\u0001x=\n>\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001x\u0000\u0002b\u0000\u0000\u0001\u0001\u0001y\u0001z\r\u0001y\u0000\u0002b\u0000\u0000\u0001\u0001\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001\u0001\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001|\u0000\u0001o\u0000\u0000\u0001\u0001<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001z\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002=\u0000\u0000\u0002?\u0000\u0000\r\u0001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000;\u0001:\n;\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002:\u0000\u0000\r\u0001b\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00018\u00017\n8\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00015\u000b5\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00027\u0000\u0000\u0002\u0001\u0000\u0002\u00014\r\u0001\u0000\u0001L\u0000\u0000\u0001\u00013\u00013\u0000\u0000\u00024\u0000\u0000\u0002E\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001\u0000\u0002\u00011\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00010\u0001\u0001\u00010\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002\u001f\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001.\u000b.\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001+\u000b+\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001)\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0000\u0002\u0007\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0000\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0005(\u000b(\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001'\u000b'\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000%\u0001$\n%\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002$\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u000f\u0002\u001f\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u000f\u0002\u001c\"\u0001!\n\"\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0018\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0014\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u000f\u0002\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0012\u0002\u0013 \u000b \u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0001L\u0000\u0000\u0002\u001d\u0002\u001f\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002 \u0002 \u0017\u0001\u0001\u0001\u0017\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002 \u00021\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002-\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002)\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002'\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002#\u0016\u000b\u0016\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002#\u0002&\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0002'\u0002(\u0015\u000b\u0015\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002)\u0002,\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u000b\u0014\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0013\r\u0001\u0000\u0003Q\u0000\u0000\u00022\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u00025\u0002Z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00025\u0002J\u0012\u0001\u0011\n\u0012\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002F\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002B\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002>\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u00028\u0002=\u0001\u0010\u000f\r\u0001\u0000\u0002n\u0000\u0000\u00028\u0002=\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00029\u0002=\u000e\n\u000e\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u00028\u00029\r\u000b\r\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002>\u0002A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002E\f\u000b\f\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0011\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0003I\u0000\u0002\u0002K\u0002Z\n\u0001\t\n\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002V\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002R\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002N\u0002Q\b\u000b\b\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002R\u0002U\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002\t\u0000\u0000\u0002\u000b\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0005\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0006\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002b\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003I\u0000\u0002\u0002b\u0002w\u0004\u0002\u0001\u0003\n\u0004\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u0001\u0000\u0002b\u0000\u0000\u0002b\u0002s\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0002b\u0002o\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0002b\u0002m\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0002b\u0002i\u0002\b\u0002\t\r\u0002\b\u0000\u0001m\u0000\u0000\u0002b\u0002e\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\t\u0000\u0001o\u0000\u0000\u0002e\u0002h\u0002\u000b\u0002\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0007\u0000\u0001m\u0000\u0000\u0002i\u0002l\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0002\u0005\u0000\u0001o\u0000\u0000\u0002m\u0002n\u0001\u000b\u0001\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0002\u0003\u0000\u0001m\u0000\u0000\u0002o\u0002r\u0002\u000e\u000e\u0002\u000e\u0000\u0001\u0002\u000f\u0011\u0002\u000f\u0000\u0002\u0000)\u0002\u0003\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0002\u0010\u0000\r\u0002\u0010\u0000\u0001L\u0000\u0000\u0002x\u0002z\u0001\u0000\u0000\u0002\u0000\u0000\u0000\u0002\u0013\u0000\u0000\u00021\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002}\u0002\u0002\u0011\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u0011\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0002}\u0002\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0002\u0015\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0002\u0002\u0002\u0018\u000e\u0002\u0018\u0000\u0001\u0002\u0019\u0011\u0002\u0019\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002{\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0002\u001a\u0002\u001b\u0002\u001c\u0002\u001d\u0001\u0000\u0000\u0010\u0002\u001a\u0000\u0004\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u000e\u0002\u001b\u0000\u0007\u0010\u0000%\u0002\u001e\u0002\u001f\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001e\u0000\u0013\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002\u001f\u0000G\u0000?\u0000F\u0000P\u0000]\u0000{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001b\u0001\u001d\u00017\u0001A\u0001F\u0001S\u0001U\u0001o\u0001q\u0001u\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u000e\u0002\u0016\u0002\u0018\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\u000fX\u0000\u0006\u0000\u0007j\f\u0000\tOh\u000fO*\f\u0000\u0005EOl\u0004\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0003hO[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000ukj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0014X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002\u001c\u0000\u0007\u0010\u0002 \u0002!\u0002\"\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002 \u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"\u0002#\u0002\u0002#\u0000\u0002\u0000\u0005\u0002$\u0002\u0002$\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002!\u0000\u0000\u0010\u0002\"\u0000\b\u0000\n\u0000\u0016\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u0011\u0000#EO\u0017\u0000\u001dhe\u0019l\f\u0000\u0004O,EOj\f\u0000\u0007[OY\u000f\u000e\u0002\u001d\u0000\u0001\u0002%\u0011\u0002%\u00006\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000y\u0000?\u0000c\u0000m\u0000d\u0000=\u0000h\u0000i\u0000&\u0000n\u0000a\u0000m\u0000e\u0000=\u0000h\u0000o\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bbe7fbcf3b08f9e0ded06e8c3bd19d9ca190a875","subject":"INTEGRATION: CWS macosxpbuildrepair (1.2.14); FILE MERGED 2007\/04\/03 19:35:33 tra 1.2.14.1: #75972#fix Panther incompatibility","message":"INTEGRATION: CWS macosxpbuildrepair (1.2.14); FILE MERGED\n2007\/04\/03 19:35:33 tra 1.2.14.1: #75972#fix Panther incompatibility\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/main.applescript","new_file":"instsetoo_native\/macosx\/application\/main.applescript","new_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n *\n * $Revision: 1.3 $\n *\n * last change: $Author: kz $ $Date: 2007-05-10 09:15:16 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\t-- return (((path to applications folder from system domain) as string) & \"OpenOffice %PRODUCTVERSION.app:\" & \"Contents:MacOS:\")\n\treturn (((path to me) as string) & \"Contents:MacOS:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"program:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\t\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\"\n\t\tif the button returned of the result is \"Quit\" then\n\t\t\tquit\n\t\telse\n\t\t\t-- if more info is chosen, then open a help web page\n\t\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t\t-- cannot continue, so quit the script\n\t\t\treturn \"error\"\n\t\tend if\n\t\t\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","old_contents":"(*************************************************************************\n *\n * OpenOffice.org - a multi-platform office productivity suite\n *\n * $RCSfile: main.applescript,v $\n *\n * $Revision: 1.2 $\n *\n * last change: $Author: vg $ $Date: 2007-02-26 14:57:12 $\n *\n * The Contents of this file are made available subject to\n * the terms of GNU Lesser General Public License Version 2.1.\n *\n *\t\t\n * GNU Lesser General Public License Version 2.1\n * =============================================\n * Copyright 2005 by Sun Microsystems, Inc.\n * 901 San Antonio Road, Palo Alto, CA 94303, USA\n *\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License version 2.1, as published by the Free Software Foundation.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n * MA 02111-1307 USA\n *\n *************************************************************************)\n\n(*==== (global variables as get-functions) ====*)\n\non getOOInstallPath()\n\t-- return (((path to applications folder from system domain) as string) & \"OpenOffice %PRODUCTVERSION.app:\" & \"Contents:MacOS:\")\n\treturn (((path to me) as string) & \"Contents:MacOS:\")\nend getOOInstallPath\n\non getOOResourcesPath()\n\treturn (((path to me) as string) & \"Contents:Resources:\")\nend getOOResourcesPath\n\non getOOProgramPath()\n\treturn (getOOInstallPath() & \"program:\")\nend getOOProgramPath\n\non getScriptPath()\n\t-- set this to absolute path when debugging\n\treturn (((path to me) as string) & \"Contents:Resources:Scripts:\")\nend getScriptPath\n\non getOOUserSettingsPath()\n\treturn (((path to home folder) as string) & \"Library:Application Support:OpenOffice.org:%USERDIRPRODUCTVERSION:\")\nend getOOUserSettingsPath\n\non getOOUserFontPath()\n\treturn (getOOUserSettingsPath() & \"user:fonts:\")\nend getOOUserFontPath\n\non getUserLogsPath()\n\treturn (((path to home folder) as string) & \"Library:Logs:\")\nend getUserLogsPath\n\non shellTerminator()\n\treturn (\" &>\/dev\/null & echo $!\") as string\nend shellTerminator\n\n--\n-- the default handlers: run, open, idle, quit\n--\n\non run\n\tif (preRun()) then\n\t\tlogEvent(\"(Scripts\/main) Running OpenOffice.org\")\n\t\topenSoffice(\"-\")\n\tend if\nend run\n\non open (theFiles)\n\tif (preRun()) then\n\t\topenFiles(theFiles)\n\tend if\nend open\n\non idle\n\t-- close icon only if ooo has terminated\n\tif (hasOOoQuit()) then\n\t\ttell me to quit\n\tend if\n\t-- check all x seconds if ok to quit\n\treturn 3\nend idle\n\non quit\n\tif (hasOOoQuit()) then\n\t\tcontinue quit\n\tend if\nend quit\n\n-------------------------------------------------------------\n\non preRun()\n\t\n\t\n\t-- Check for the required version of Mac OS X\n\tif (not atLeastOSXVersion(10, 3, 0)) then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_PANTHER\")\n\t\treturn false\n\tend if\n\t\n\t-- Check for that OOo can be found\n\tif (not isRealPath(getOOProgramPath())) then\n\t\tdisplay dialog getMessage(\"ERROR_OOO_NOT_FOUND\")\n\t\treturn false\n\tend if\n\t\n\tif (not isRealPath(getOOUserFontPath())) then\n\t\tset createUserFont to \"mkdir -p \" & (quoted form of POSIX path of getOOUserFontPath()) & \"; \"\n\t\tdo shell script createUserFont\n\tend if\n\n\t-- If no crash occured before, ~\/Library\/Logs does not exist, and OpenOffice.org cannot be started\n\tif (not isRealPath(getUserLogsPath())) then\n\t\tset createUserLogsPath to \"mkdir -p \" & (quoted form of POSIX path of getUserLogsPath()) & \"; \"\n\t\tdo shell script createUserLogsPath\n\tend if\n\n\t-- Checks are ok, now do the PostInstall stuff (e.g. fondu)\n\t\n\t-- load helper library\n\tset postinstall to load script alias \n\t\t(getScriptPath() & \"PostInstall.scpt\")\n\t-- execute the postinstall script\n\trun of postinstall\n\t\n\t\n\treturn true\nend preRun\n\n\non hasOOoQuit()\n\tif (isRealPath(getOOProgramPath())) then\n\t\t-- set the location of soffice binary\n\t\tset soffice to (quoted form of (POSIX path of getOOProgramPath() & \"soffice\"))\n\t\t\n\t\tset isRunning to do shell script \"_FOUND_=`ps -wx -o command | grep \" & soffice & \" | grep -v grep`; echo $_FOUND_\"\n\t\tif isRunning \"\" then\n\t\t\treturn false\n\t\telse\n\t\t\treturn true\n\t\tend if\n\telse\n\t\treturn true\n\tend if\nend hasOOoQuit\n\n\non openSoffice(aFile)\n\tset theDisplay to startXServer()\n\tif (theDisplay is equal to \"error\") then\n\t\treturn\n\tend if\n\tset theEnv to \"DISPLAY=\" & theDisplay & \" ; export DISPLAY; \"\n\tset theCmd to \"sh \" & (quoted form of (POSIX path of getOOProgramPath() & \"soffice\")) & \" \"\n\tdo shell script theEnv & theCmd & aFile & shellTerminator()\n\t-- logEvent(\"open CMD: \" & theEnv & theCmd & aFile)\nend openSoffice\n\n\n-- helper function to start X11 server\non startXServer()\n\t\n\t-- get X settings\n\tset XSettingsList to findXServer()\n\tset whichserver to item 1 of XSettingsList\n\tset Xserverloc to item 2 of XSettingsList\n\t\n\t-- debug:\n\t-- logEvent(\"(scripts\/main) X settings: \" & whichserver & \"--\" & POSIX path of Xserverloc)\n\t-- set whichserver to \"NOXSERVER\"\n\t\n\t-- if nothing really was found, display an error message.\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tdisplay dialog getMessage(\"ERROR_NEED_X11\") buttons {\"Quit\", \"More Info\"} default button \"More Info\" cancel button \"Quit\" with icon stop\n\t\t-- if more info is chosen, then open a help web page\n\t\tdo shell script \"open http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\t-- cannot continue, so quit the script\n\t\treturn \"error\"\n\tend if\n\t\n\tset now_running to \"\"\n\tset now_running to do shell script \"INX=`ps -wcx | grep \" & quoted form of (whichserver & \"$\") & \"`; echo $INX\"\n\tif whichserver = \"NOXSERVER\" then\n\t\t-- display dialog \"No XServer Found\"\n\t\tset now_running to \"Skip\"\n\tend if\n\tif now_running = \"\" then\n\t\tif whichserver = \"X11\" then\n\t\t\tset x11cmd to quoted form of (Xserverloc & \"\/Contents\/MacOS\/X11\") & shellTerminator()\n\t\t\tdo shell script x11cmd\n\t\t\t-- save process id\n\t\t\tset x11pid to the result\n\t\t\t-- wait until the window manager is started which is the second child process of x11\n\t\t\tset numchildrencmd to \"ps -x -o ppid | grep \" & x11pid & \" | wc -l\"\n\t\t\tset numchildren to 0\n\t\t\tset d to current date\n\t\t\tset t1 to time of d\n\t\t\trepeat while numchildren 2\n\t\t\t\tset d to current date\n\t\t\t\tset t2 to time of d\n\t\t\t\t-- give up after 30 seconds\n\t\t\t\tif t2 - t1 > 30 then\n\t\t\t\t\tdisplay dialog \"Command timed out\"\n\t\t\t\t\texit repeat\n\t\t\t\tend if\n\t\t\t\tset result to do shell script numchildrencmd\n\t\t\t\tset numchildren to result as integer\n\t\t\tend repeat\n\t\telse -- startup XDarwin\n\t\t\tdo shell script \"open \" & quoted form of Xserverloc & shellTerminator()\n\t\t\tdo shell script \"sleep 4\"\n\t\tend if\n\tend if\n\tif whichserver is equal to \"X11\" then\n\t\t-- the DISPLAY variable is different for every user currently logged in\n\t\t-- X11 passes the DISPLAY as the last command line parameter to its child process\n\t\t-- we can use ps to read the command line and parse the trailing :0, :1, or whatever\n\t\tset xdisplay to do shell script \"ps -wx -o command | grep X11.app | grep \\\":.$\\\" | sed \\\"s\/^.*:\/:\/g\\\"\"\n\t\t--display dialog xdisplay\n\t\treturn xdisplay\n\telse\n\t\t-- TODO: find out how XDarwin does it\n\t\treturn \":0\"\n\tend if\nend startXServer\n\n\non openFiles(fileList)\n\tif (count of fileList) > 0 then\n\t\trepeat with i from 1 to the count of fileList\n\t\t\tset theDocument to (item i of fileList)\n\t\t\tset theFilePath to (quoted form of POSIX path of theDocument)\n\t\t\tset theFileInfo to (info for theDocument)\n\t\t\topenSoffice(theFilePath)\n\t\t\tlogEvent(\"(Scripts\/main) Open file: \" & theFilePath)\n\t\tend repeat\n\tend if\nend openFiles\n\n\n(* ===== (Helper functions) ======= *)\n\n-- get a localized string\non getMessage(aKey)\n\ttry\n\t\tif (aKey is equal to \"YES_KEY\") then\n\t\t\treturn \"Yes\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"NO_KEY\") then\n\t\t\treturn \"No\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_OOO_NOT_FOUND\") then\n\t\t\treturn \"OpenOffice.org was not found on your system. Please (re-)install OpenOffice.org first.\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_PANTHER\") then\n\t\t\treturn \"This build of OpenOffice.org cannot be run on this system, OpenOffice.org requires MacOSX 10.3 (Panther) or newer system\"\n\t\tend if\n\t\t\n\t\tif (aKey is equal to \"ERROR_NEED_X11\") then\n\t\t\treturn \"OpenOffice.org for Mac OS X cannot be started, because the X11 software is not installed. Please install Apple X11 first from the Mac OS X install DVD. More information: http:\/\/porting.openoffice.org\/mac\/faq\/installing\/X11.html\"\n\t\tend if\n\tend try\nend getMessage\n\n\n-- function for logging script messages\non logEvent(themessage)\n\tset theLine to (do shell script \n\t\t\"date +'%Y-%m-%d %H:%M:%S'\" as string) \n\t\t& \" \" & themessage\n\tdo shell script \"echo \" & quoted form of theLine & \n\t\t\" >> ~\/Library\/Logs\/OpenOffice%USERDIRPRODUCTVERSION.log\"\nend logEvent\n\n\n-- function for checking if a path exists\non isRealPath(aPath)\n\ttry\n\t\talias aPath\n\t\treturn true\n\ton error\n\t\t-- error number -43 from aPath\n\t\t-- display dialog \"NotRP -- \" & aPath\n\t\treturn false\n\tend try\nend isRealPath\n\n-- try to find X11 server on the Mac OS X system\n-- return value: the found server or \"NOXSERVER\"\non findXServer()\n\t-- First try standard X11 location, then try standard XDarwin location\n\t\n\tset whichserver to \"NOXSERVER\"\n\t--Utilities folder of system\n\tset Xserverloc to ((path to utilities folder from system domain) as string) & \"X11.app:\"\n\t--display dialog \" Xserverloc\" & Xserverloc\n\tif (isRealPath(Xserverloc)) then\n\t\tset whichserver to \"X11\"\n\t\tset Xserverloc to (POSIX path of Xserverloc)\n\telse\n\t\t--Applications folder of system\n\t\tset Xserverloc to ((path to applications folder from system domain) as string) & \"XDarwin.app:\"\n\t\tif (isRealPath(Xserverloc)) then\n\t\t\tset whichserver to \"XDarwin\"\n\t\t\tset Xserverloc to (POSIX path of Xserverloc)\n\t\tend if\n\tend if\n\t\n\t-- if nothing found yet try using locate, first with X11.app and then with XDarwin.app\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate X11.app\/Contents\/MacOS\/X11 | sed -e 's-\/Contents\/MacOS\/X11--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"X11\"\n\t\tend if\n\tend if\n\t\n\tif (whichserver is equal to \"NOXSERVER\") then\n\t\tset Xserverloc to do shell script \"locate XDarwin.app\/Contents\/MacOS\/XDarwin | sed -e 's-\/Contents\/MacOS\/XDarwin--g'\"\n\t\tif Xserverloc \"\" then\n\t\t\tset whichserver to \"XDarwin\"\n\t\tend if\n\tend if\n\t\n\treturn {whichserver, Xserverloc}\nend findXServer\n\n\n-- Test for a minimum version of Mac OS X\non atLeastOSXVersion(verMajor, verMinor, verStep)\n\t-- The StandardAdditions's 'system attribute' used to be the Finder's 'computer' command.\n\ttell application \"Finder\" to set sysv to (system attribute \"sysv\")\n\t\n\t-- Generate sysv-compatible number from given version\n\tset reqVer to ((verMajor div 10) * 4096 + (verMajor mod 10) * 256 + verMinor * 16 + verStep)\n\t\n\t-- DEBUGGING:\t\n\t-- display dialog (\"RV:\" & reqVer & \" < \" & sysv as string)\n\t\n\t-- set major to ((sysv div 4096) * 10 + (sysv mod 4096 div 256))\n\t-- set minor to (sysv mod 256 div 16)\n\t-- set step to (sysv mod 16)\n\t-- display dialog (\"Your Mac OS X version: \" & major & \".\" & minor & \".\" & step)\n\t\n\tif (reqVer > sysv) then\n\t\treturn false\n\telse\n\t\treturn true\n\tend if\nend atLeastOSXVersion\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"3e19eaf24ab54b6ac2e96f35a9dae8105e830ba7","subject":"Huge update! More in the description.","message":"Huge update! More in the description.\n\n\u2013 Hopefuly fixing issue #5 (crash on Spotify updates)\n\u2013 Improved general stability\n\u2013 Added optional logging functionality\n\u2013 General code cleanup\n\u2013 Removed some redundant comments\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"property debug : false\nproperty currentVolume : null\n\nif (my isTheFirstRun() = true and my isInLoginItems() = false) then\n\tset userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \n\t\treturn & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \n\t\t& \"BTW, do you want it to run automatically on startup?\" with title \n\t\t\"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n\tif (userAnswer = \"OK\") then\n\t\ttry\n\t\t\tmy addToLoginItems()\n\t\tend try\n\tend if\n\ttry\n\t\t-- Save in the preferences that Spotifree has already ran.\n\t\tdo shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n\tend try\nend if\n\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying() and isAnAd()) then\n\t\t\ttry\n\t\t\t\tmute()\n\t\t\tend try\n\t\t\trepeat\n\t\t\t\ttry\n\t\t\t\t\tif (isAnAd() = false) then\n\t\t\t\t\t\t-- Have to delay a little bit, because Spotify may tell us about the next track too early,\n\t\t\t\t\t\t-- and a user has to hear the last half-second of an ad.\n\t\t\t\t\t\tdelay 0.8\n\t\t\t\t\t\tunmute()\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tdelay 0.3\n\t\t\tend repeat\n\t\telse\n\t\t\t-- Delaying, to get less of the crashing \"connection is invalid\" errors.\n\t\t\tdelay 1\n\t\tend if\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"some unhandled error in the outer loop.\")\n\tend try\n\t-- This is how fast we are polling Spotify.\n\t-- The only speed at which you will hear almost no sounds passing through.\n\t-- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\tset currentVolume to sound volume\n\t\t\t-- This is the only way possible to mute Spotify during an advertisement.\n\t\t\t-- Otherwise it pauses when you mute the sound.\n\t\t\tpause\n\t\t\tset sound volume to 0\n\t\t\tplay\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to mute Spotify.\")\n\tend try\n\treturn\nend mute\n\non unmute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to restore Spotify's volume.\")\n\tend try\n\treturn\nend unmute\n\non isAnAd()\n\tlocal currentTrackPopularity, currentTrackDuration\n\tset currentTrackPopularity to null\n\tset currentTrackDuration to null\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\tset currentTrackDuration to duration of current track\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to get popularity and duration of the current track.\")\n\t\treturn false\n\tend try\n\tif ((currentTrackPopularity null and currentTrackDuration null) and (currentTrackPopularity = 0 and currentTrackDuration 40)) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\tset playerState to null\n\t-- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n\twith timeout of (5) seconds\n\t\ttry\n\t\t\ttell application \"Spotify\"\n\t\t\t\tset playerState to player state\n\t\t\tend tell\n\t\ton error errorMessage number errorNumber\n\t\t\tmy log_error(errorNumber, errorMessage, \"counting Spotify processes.\")\n\t\t\treturn false\n\t\tend try\n\tend timeout\n\tif (playerState null and playerState = constant ****kPSP) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\t-- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n\twith timeout of (5) seconds\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\tset spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n\t\t\tend tell\n\t\ton error errorMessage number errorNumber\n\t\t\tmy log_error(errorNumber, errorMessage, \"counting Spotify processes.\")\n\t\t\treturn false\n\t\tend try\n\tend timeout\n\tif spotifyProcesses = 1 then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isRunning\n\non addToLoginItems()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Add Spotifree to the Login Items.\n\t\t\tmake login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"adding Spotifree to the Login Items\")\n\t\treturn\n\tend try\nend addToLoginItems\n\non isTheFirstRun()\n\ttry\n\t\t-- Get the value of the key 'hasRanBefore' in the file \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n\t\tset hasRanBefore to do shell script \"defaults read com.ArtemGordinsky.Spotifree 'hasRanBefore'\"\n\ton error errorMessage number errorNumber\n\t\t-- If the file not there yet, an error is going to be thrown. So it's the first run, probably.\n\t\t-- We are going to return 'true' even if it was some other error. Not a big deal, after all.\n\t\tmy log_error(errorNumber, errorMessage, \"checking is Spotify being run the first time.\")\n\t\treturn true\n\tend try\n\t\n\tif (hasRanBefore = \"true\") then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isTheFirstRun\n\non isInLoginItems()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif login item \"Spotifree\" exists then\n\t\t\t\treturn true\n\t\t\telse\n\t\t\t\treturn false\n\t\t\tend if\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"checking if Spotify is in Login Items\")\n\t\treturn false\n\tend try\nend isInLoginItems\n\non log_message(message)\n\tlocal content\n\tset content to (return & \n\t\t\"-----------------------------------------------------------\" & \n\t\treturn & my dateAndTime() & return & message & return \n\t\t& \"-----------------------------------------------------------\" & return)\n\tset log_file to (((path to desktop folder) as text) & \"Spotifree_log.txt\")\n\tmy write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, diag_message)\n\tlocal content\n\tif (debug = true) then\n\t\tset content to (return & \"-----------------------------------------------------------\" & \n\t\t\treturn & my dateAndTime() & return & \"Error number: \" & error_number \n\t\t\t& return & \"Error message: \" & error_message & return & \n\t\t\t\"Diagnostic message: \" & diag_message & return \n\t\t\t& \"-----------------------------------------------------------\" & return)\n\t\tset log_file to (((path to desktop folder) as text) & \"Spotifree_log.txt\")\n\t\tmy write_to_file(content, log_file, true)\n\tend if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n\ttry\n\t\tset the target_file to the target_file as text\n\t\tset the open_target_file to \n\t\t\topen for access file target_file with write permission\n\t\tif append_data is false then \n\t\t\tset eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\tend try\nend write_to_file\n\non dateAndTime()\n\tset currentDateAndTime to (current date) as string\n\treturn currentDateAndTime\nend dateAndTime","old_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume\n\n-- Check if Spotifree is being run the first time and is in Login Items.\nif (my isTheFirstRun() = true and my isInLoginItems() = false) then\n\t-- Tell the user how Spotifree runs and ask if he wants Spotifree to run automatically on startup.\n\t-- Assign a result to the variable 'userAnswer'.\n\tset userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \n\t\treturn & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \n\t\t& \"BTW, do you want it to run automatically on startup?\" with title \n\t\t\"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n\t-- Check if user agreed.\n\tif (userAnswer = \"OK\") then\n\t\ttry\n\t\t\t-- Add Spotifree to the Login Items.\n\t\t\tmy addToLoginItems()\n\t\tend try\n\tend if\n\ttry\n\t\t-- Save in the preferences that Spotifree has already ran.\n\t\tdo shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n\tend try\nend if\n\nrepeat\n\ttry\n\t\t-- Checking if Spotify is running, playing, and if current track is an advertisement.\n\t\tif (isRunning() and isPlaying() and isAnAd()) then\n\t\t\ttry\n\t\t\t\t-- Mute Spotify.\n\t\t\t\tmute()\n\t\t\tend try\n\t\t\trepeat\n\t\t\t\ttry\n\t\t\t\t\t-- Check if current track is an ad. Or if Spotify was paused during an advertisement.\n\t\t\t\t\tif (isAnAd()) then\n\t\t\t\t\t\t-- If Spotify was paused, or there is a second ad, this loop will continue to repeat.\n\t\t\t\t\telse\n\t\t\t\t\t\t-- If there's no more ads, pause for .5 seconds to let Spotify respond.\n\t\t\t\t\t\t-- Then, unmute and exit the loop.\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tunmute()\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tdelay 0.3\n\t\t\tend repeat\n\t\tend if\n\tend try\n\t-- This is how fast we are polling Spotify.\n\t-- The only speed at which you will hear no sounds passing through.\n\t-- Fortunately, combined with the added load on Spotify, the CPU usage stays well below 1% even on an old dual-core 3.6 GHz processor.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\tset currentVolume to sound volume\n\t\t\t-- This is the only way possible to mute Spotify during an advertisement. Otherwise it pauses when you mute the sound.\n\t\t\tpause\n\t\t\tset sound volume to 0\n\t\t\tplay\n\t\tend tell\n\tend try\n\treturn\nend mute\n\non unmute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend tell\n\tend try\n\treturn\nend unmute\n\non isAnAd()\n\tlocal currentTrackPopularity, currentTrackDuration\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\tset currentTrackDuration to duration of current track\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- If current track's popularity is 0 and its duration is 40 seconds or less, then it's almost certainly an ad.\n\tif (currentTrackPopularity = 0 and currentTrackDuration 40) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\tset playerState to player state\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\tif playerState = playing then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\tif spotifyProcesses 0 then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isRunning\n\non addToLoginItems()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Add Spotifree to the Login Items.\n\t\t\tmake login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n\t\tend tell\n\ton error\n\t\treturn\n\tend try\nend addToLoginItems\n\non isTheFirstRun()\n\ttry\n\t\t-- Get the value of the key 'hasRanBefore' in the file \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n\t\tset hasRanBefore to do shell script \"defaults read com.ArtemGordinsky.Spotifree 'hasRanBefore'\"\n\ton error\n\t\t-- If the file not there yet, an error is going to be thrown. So it's the first run, probably.\n\t\t-- We are going to return 'true' even if it was some other error. Not a big deal, after all.\n\t\treturn true\n\tend try\n\t\n\tif (hasRanBefore \"true\") then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isTheFirstRun\n\non isInLoginItems()\n\ttry\n\t\t-- Ask 'System Events' is 'Spotifree' is in 'Login Items'.\n\t\ttell application \"System Events\"\n\t\t\tif login item \"Spotifree\" exists then\n\t\t\t\treturn true\n\t\t\telse\n\t\t\t\treturn false\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\nend isInLoginItems","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6874e476581edd3817ac7820caafcfca000f1b81","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab && sudo umount \/mnt && sudo mkdir -p \/mnt\/local-ssd && sudo mount \/mnt\/local-ssd && sudo chown -R ubuntu \/mnt\/local-ssd && mkdir \/mnt\/local-ssd\/cass-data && mkdir ~\/cass-data-vol && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2 && mkdir \/mnt\/ebs-ssd-gp2\/cass-data && sudo mkdir -p \/mnt\/ebs-mag && sudo mount \/mnt\/ebs-mag && sudo mkdir \/mnt\/ebs-mag\/cass-data && sudo chown -R ubuntu \/mnt\/ebs-mag && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true) && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2 && sudo chown -R ubuntu \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_prepare_dirs\n\n\non watch_free_mem()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend watch_free_mem\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\n-- One-time use.\non server_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_data_dir_to_ebs_mag\n\n\n\n\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\t-- In case needed\n\t-- my git_pull()\n\t\n\t-- These can be grouped\n\tmy server_format_ebs_mag_mount_prepare_dirs()\n\tmy watch_free_mem()\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\tmy save_screen_layout()\n\t\n\t-- This takes like 40 secs. Do not move focus to anywhere else, or it will fail.\n\tmy run_server()\n\t\n\tmy server_pressure_memory()\n\t\n\tmy client_run_loadgen()\n\t\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory\n\t-- my server_data_dir_to_ebs_mag()\nend run_all\n\n\nmy screen_detach()\n\n\n\n\n\n\n\n\n\n\n\n","old_contents":"global num_servers\nset num_servers to 12\n\n\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_servers * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java && sudo apt-get update && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y && sudo apt-get autoremove -y vim-tiny && mkdir -p ~\/work && cd ~\/work && git clone https:\/\/github.com\/hoytech\/vmtouch.git && cd vmtouch && make -j && sudo make install && sudo service ntp stop && sudo ntpdate -bv 0.ubuntu.pool.ntp.org && sudo service ntp start && cd ~\/work && git clone git@github.com:hobinyoon\/linux-home.git && cd linux-home && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_servers * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_prepare_dirs()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo mkfs.ext4 -m 0 \/dev\/xvdd && sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab && sudo umount \/mnt && sudo mkdir -p \/mnt\/local-ssd && sudo mount \/mnt\/local-ssd && sudo chown -R ubuntu \/mnt\/local-ssd && mkdir \/mnt\/local-ssd\/cass-data && mkdir ~\/cass-data-vol && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2 && mkdir \/mnt\/ebs-ssd-gp2\/cass-data && sudo mkdir -p \/mnt\/ebs-mag && sudo mount \/mnt\/ebs-mag && sudo mkdir \/mnt\/ebs-mag\/cass-data && sudo chown -R ubuntu \/mnt\/ebs-mag && sudo chown -R ubuntu \/mnt\/ebs-mag\/cass-data && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold && (sudo mkdir -p \/mnt\/ebs-mag\/mtdb-cold || true) && sudo ln -s \/mnt\/ebs-mag \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2 && sudo chown -R ubuntu \/mnt\/cold-storage && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_prepare_dirs\n\n\non watch_free_mem()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend watch_free_mem\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t--\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: false\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 4\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && (.\/pressure-memory &) && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 1\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_servers * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true) && rsync -ave \\\"ssh -o StrictHostKeyChecking=no\\\" $CASSANDRA_CLIENT_ADDR:work\/cassandra\/mtdb\/logs\/loadgen ~\/work\/cassandra\/mtdb\/logs && cd ~\/work\/cassandra\/mtdb\/process-log\/calc-cost-latency-plot-tablet-timeline && (\\\\rm *.pdf || true) && .\/plot-cost-latency-tablet-timelines.py && du -hs ~\/work\/cassandra\/data\/\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_servers\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_servers * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\tmy build_cass_pressuremem_loadgen()\n\t\n\t-- In case needed\n\t-- my git_pull()\n\t\n\t-- These can be grouped\n\tmy server_format_ebs_mag_mount_prepare_dirs()\n\tmy watch_free_mem()\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\tmy save_screen_layout()\n\t\n\tmy run_server()\n\tmy server_pressure_memory()\n\t\n\tmy client_run_loadgen()\n\t\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\tmy server_get_client_logs_and_process()\nend run_all\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"0da4599eab6bf2d4b9b9ca85a84114616d073aa2","subject":"Multiple Search-Replace","message":"Multiple Search-Replace\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replace String in FM Objects.applescript","new_file":"Scripts\/fmClip - Replace String in FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"7514b09c225ced93ffcb642cad1dbadc5c612947","subject":"AppleScript won\u2019t take the POSIX path for the add operation","message":"AppleScript won\u2019t take the POSIX path for the add operation\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n try\n add \"\/private\/tmp\/cat.m4a\"\n end try\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"c2d816b43172bd2b342d8e3e54fe494dc5ad0197","subject":"Update chapter list in pdf generation script","message":"Update chapter list in pdf generation script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-and-typescript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nwhat-is-aws-cdk\nusing-aws-cdk-with-serverless-framework\nbuilding-a-cdk-app-with-sst\nconfigure-dynamodb-in-cdk\nconfigure-s3-in-cdk\nconfigure-cognito-user-pool-in-cdk\nconfigure-cognito-identity-pool-in-cdk\nconnect-serverless-framework-and-cdk-with-sst\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat\n if ((value of menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled) = true)\n exit repeat\n end if\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n delay 2\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\npurchase-a-domain-with-route-53\nsetup-ssl\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat\n if ((value of menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled) = true)\n exit repeat\n end if\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n delay 2\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b3abb2b37c912ac262165f5c162976b76113b4e0","subject":"Rename headphones","message":"Rename headphones\n","repos":"rkalis\/dotfiles,rkalis\/dotfiles","old_file":"hammerspoon\/connect_sony.applescript","new_file":"hammerspoon\/connect_sony.applescript","new_contents":"activate application \"SystemUIServer\"\ntell application \"System Events\"\n tell process \"SystemUIServer\"\n set btMenu to (menu bar item 1 of menu bar 1 whose description contains \"bluetooth\")\n tell btMenu\n click\n try\n tell (menu item \"Rosco's Headphones\" of menu 1)\n click\n if exists menu item \"Connect\" of menu 1 then\n click menu item \"Connect\" of menu 1\n return \"Connecting...\"\n else if exists menu item \"Disconnect\" of menu 1 then\n click menu item \"Disconnect\" of menu 1\n return \"Disconnecting...\"\n end if\n end tell\n end try\n end tell\n end tell\n key code 53\n return \"Device not found or Bluetooth turned off\"\nend tell\n\n\n","old_contents":"activate application \"SystemUIServer\"\ntell application \"System Events\"\n tell process \"SystemUIServer\"\n set btMenu to (menu bar item 1 of menu bar 1 whose description contains \"bluetooth\")\n tell btMenu\n click\n try\n tell (menu item \"WH-1000XM3\" of menu 1)\n click\n if exists menu item \"Connect\" of menu 1 then\n click menu item \"Connect\" of menu 1\n return \"Connecting...\"\n else if exists menu item \"Disconnect\" of menu 1 then\n click menu item \"Disconnect\" of menu 1\n return \"Disconnecting...\"\n end if\n end tell\n end try\n end tell\n end tell\n key code 53\n return \"Device not found or Bluetooth turned off\"\nend tell\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"324cf218a939028155249786b1649ddeb0412cf5","subject":"Nettoyage","message":"Nettoyage\n","repos":"Tiross\/dotfiles","old_file":"notifyme.scpt","new_file":"notifyme.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n\n if frontApp is not \"iTerm2\" then\n set notifTitle to item 1 of argv\n set notifBody to \"Succeded\"\n set errorCode to item 2 of argv\n\n if errorCode is not \"0\" then\n set notifBody to \"Failed with error code \" & errorCode\n end if\n\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","old_contents":"#!\/usr\/bin\/env osascript\n\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n if frontApp is not \"iTerm2\" then\n set notifTitle to item 1 of argv\n set notifBody to \"succeded\"\n set errorCode to item 2 of argv\n if errorCode is not \"0\"\n set notifBody to \"failed with error code \" & errorCode\n end if\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"483651f1e87f6edc11907b7383adbfb2ae7a6e03","subject":"Added progress text. Fixes #2.","message":"Added progress text. Fixes #2.\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Processing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Processing track \" & (item theIndex of these_files as text) & \"...\" as text)\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Now concatenating the audio files...\")\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"b29e2831da7194c13d142f7b6f8a002f28d76926","subject":"Started work on adding tracks from iTunes","message":"Started work on adding tracks from iTunes\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_titles\n property these_titles : {}\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our array and \/ or table\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php\n tell application \"iTunes\"\n set these_titles to {}\n set these_files to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_files to (get location of aTrack)\n display dialog these_files\n display dialog these_titles\n end if\n end repeat\n end if\n end tell\n end btnGetTracks_\n\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Run NSTask to see if ffmpeg is installed...\n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n\n \n \n end awakeFromNib\n \n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"62fb19db36235fb4f6d66c79c4b94cd8e47954cc","subject":"correct window handling on osx","message":"correct window handling on osx\n\ngit-svn-id: 1940fb81eac38ef6ef058c79705648ed98d10eaf@588 981887c0-d8ae-4743-aaa6-7abdade54d40\n","repos":"wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav,wellenvogel\/avnav","old_file":"chartconvert\/AvChartConvert.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"chartconvert\/AvChartConvert.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\u0000\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003X\u0000\u0000\u0000\u0004\u0000*\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001k\u0000\u0000\u0000\u0014\u0000%\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nstrq\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u0017\u0000\u001e\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001f\u0000 \r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\npsxp\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000!\r\u0000!\u0000\u0002r\u0000\u0000\u0000\u001c\u0000%\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000$\u0000%\r\u0000$\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0000&\u0000'\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0002\u0000 \r\u0000%\u0000\u0003l\u0000\u0005\u0000\u001f\u0000\"\u0000*\r\u0000*\u0000\u0002c\u0000\u0000\u0000\u001f\u0000\"\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u0000\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000+\u00004\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\nstrq\r\u00002\u0000\u0003l\u0001\u0000\u0000+\u00002\u00003\r\u00003\u0000\u0002n\u0000\u0000\u0000+\u00002\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u00000\u00002\n\u0000\u0004\npsxp\r\u00005\u0000\u0003l\u0000\u0005\u0000+\u00000\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000+\u00000\u00007\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00007\u0000\u0000f\u0000\u0000\u0000+\u0000,\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\u0002\u0000.\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000:\u0000;\r\u0000:\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000<\u0000=\r\u0000<\u0000\u0002b\u0000\u0000\u00007\u0000<\u0000>\u0000?\r\u0000>\u0000\u0002b\u0000\u0000\u00007\u0000:\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u00007\u00008\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0012\u0000`\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000A\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000*\u0000`\u0000\/\u0000r\u0000e\u0000a\u0000d\u0000_\u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000_\u0000o\u0000s\u0000x\u0000.\u0000s\u0000h\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u00009\u0000\u0002\u0000F\r\u0000F\u0000\u0002O\u0000\u0000\u0000A\u0000\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000E\u0000\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0002\u0000E\u0000J\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0001\u0000K\u0000K\u0000N\u0000O\u0001\u0000\u0000\f\u0000N\u0000*\u0000$set custom title to \"AvChartConvert\"\u0000\u0002\u0000\u0000\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000H\u0000s\u0000e\u0000t\u0000 \u0000c\u0000u\u0000s\u0000t\u0000o\u0000m\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000\"\u0002\u0000M\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000K\u0000R\u0000U\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000U\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000W\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\n\u0000;\u0000e\u0000x\u0000i\u0000t\u0002\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0002\u0000R\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000U\u0000h\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000U\u0000f\u0000^\r\u0000^\u0000\u00026\u0001\u0000\u0000U\u0000f\u0000_\u0000`\r\u0000_\u0000\u00024\u0000\u0001\u0000U\u0000Y\u0000a\n\u0000\u0004\ncwin\r\u0000a\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u0000`\u0000\u0002=\u0000\u0003\u0000\\\u0000e\u0000b\u0000c\r\u0000b\u0000\u00011\u0000\u0000\u0000]\u0000a\n\u0000\u0004\ntcnt\r\u0000c\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000[\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002r\u0000\u0000\u0000i\u0000r\u0000f\u0000g\r\u0000f\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0003\u0000\r\u0000g\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000h\r\u0000h\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nccol\r\u0000j\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000e\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002r\u0000\u0000\u0000s\u0000|\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000(\r\u0000n\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000o\r\u0000o\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000p\u0000q\r\u0000p\u0000\u00011\u0000\u0000\u0000w\u0000{\n\u0000\u0004\ncrow\r\u0000q\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000l\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u001c\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u0000y\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000s\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002V\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npcnt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000)display dialog c buttons {\"OK\", \"Cancel\"}\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000c\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000O\u0000K\u0000\"\u0000,\u0000 \u0000\"\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0000\"\u0000}\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001c\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000*\u0000*\u0000*\u0000c\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\r\u0000\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000C\u0000h\u0000a\u0000r\u0000t\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000,\u0000 \u0000O\u0000K\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nsavo\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000\u0000\r\u0000H\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f@\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0007wc\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000wG\u0000\u0000\u0000\u0001\u0000\b\u0000\f@\u0000\f?\u0000\u0002\u0000.AndreasMac:Applications:Utilities:Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000o\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nof C\r\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000N\u0000S\u0000O\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0018\u0000!\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000s\u0000e\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000F\u0000i\u0000l\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\"\u0000+\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000s\u0000e\u0000t\u0000F\u0000l\u0000o\u0000a\u0000t\u0000i\u0000n\u0000g\u0000P\u0000a\u0000n\u0000e\u0000l\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000,\u00005\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000D\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000@\u0000K~\u0000\u0000\n~\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000s\u0000e\u0000t\u0000R\u0000e\u0000s\u0000o\u0000l\u0000v\u0000e\u0000s\u0000A\u0000l\u0000i\u0000a\u0000s\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003}\u0000\u0000\n}\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E|\u000b|\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003{\u0000z\n{\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000Gy\u000by\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006z\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000L\u0000Wx\u0000\u0000\nx\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000s\u0000e\u0000t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000s\u0000M\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000:\u0006\u0000\u0000\u0003w\u0000\u0000\nw\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000P\u0000Qv\u000bv\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003u\u0000t\nu\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000Ss\u000bs\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000X\u0000e\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000X\u0000ar\u0000\u0000\nr\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000[\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000r\u0000u\u0000n\u0000M\u0000o\u0000d\u0000a\u0000l\u0006\u0000\u0000\u0003q\u0000p\nq\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]o\u000bo\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006p\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0001\u0000m\r\u0001\u0000\u0000\u0004Z\u0000\u0000\u0000f\u0000\u0001\u0001\u0001\u0002lk\r\u0001\u0001\u0000\u0002=\u0000\u0003\u0000f\u0000k\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000f\u0000ij\u000bj\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0000i\u0000ji\u0003i\u0000\u0001\r\u0001\u0002\u0000\u0003l\u0000\u0003\u0000n\u0000{\u0001\u0005\u0001\u0006\u0001\u0007\r\u0001\u0005\u0000\u0002r\u0000\u0000\u0000n\u0000{\u0001\b\u0001\t\r\u0001\b\u0000\u0003I\u0000\u0002\u0000n\u0000wh\u0001\n\u0001\u000b\nh\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0001\n\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000n\u0000a\u0000m\u0000e\u0000s\u0006\u0001\u000b\u0000\u0003g\u0001\u000ef\ng\u0000\u0004\npsof\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000r\u0000se\u000be\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006f\u0000\u0000\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000d\u000bd\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\f\u0001\u0006\u00006\u00000 0 is returned when the cancel button is pressed\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000`\u0000 \u00000\u0000 \u0000i\u0000s\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000e\u0000s\u0000s\u0000e\u0000d\u0002l\u0000\u0000\u0001k\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f7\u0014Automator Runner.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f(~\u0007`\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000}@\u0000\u0000\u0000\u0001\u0000\f\u0000\f7\u0000\f\u0000\f\u0000\u0002\u0000;AndreasMac:System:Library:CoreServices:Automator Runner.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000R\u0000u\u0000n\u0000n\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u00000System\/Library\/CoreServices\/Automator Runner.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0013cb\r\u0001\u0013\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001\u0014\u0001\u0015a`\r\u0001\u0014\u0000\u0002=\u0000\u0003\u0000\u0000\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000^\u0003^\u0000\u0001\r\u0001\u0015\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0000]\u0001\u001a\\\n]\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0001\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u001b[Z\r\u0001\u001b\u0000\u0001o\u0000\u0000\u0000\u0000Y\u000bY\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\\\u0000\u0000\r\u0001\u0019\u0000\u0000f\u0000\u0000\u0000\u0000\u0002a\u0000\u0000\u0001`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u001cX\r\u0001\u001c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002X\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\nT\u0001\u001d\u0001\u001e\u0001\u001f\u0001 SR\u0001!QP\u0001T\u0000\u0000\u0010\u0001\u001d\u0000\bONMLKJIH\nO\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\nN\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bM\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000bL\u0000\u00140\u0000\btruebool\u0000\btrueBool\u000bK\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000bJ\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001I\u0000\u0000\u0001H\u0000\u0000\u000e\u0001\u001e\u0000\u0007\u0010G\u0000\nFE\u0001\"\u0001#D\nG\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000bF\u0000\u00060\u0000\u0002df\u0000\u0000\u0002E\u0000\u0000\u0010\u0001\"\u0000\tCBA@?>=<;\u000bC\u0000\u00060\u0000\u0002df\u0000\u0000\u000bB\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u000bA\u0000\t0\u0000\u0005aname\u0000\u0000\u000b@\u0000\u00070\u0000\u0003dfp\u0000\u0000\u000b?\u0000\n0\u0000\u0006mypath\u0000\u0000\u000b>\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b=\u0000\u00060\u0000\u0002tw\u0000\u0000\u000b<\u0000\t0\u0000\u0005mywin\u0000\u0000\u000b;\u0000\u00050\u0000\u0001c\u0000\u0000\u0010\u0001#\u0000 \u0000\u0011:9876\u0000(54\u0000B\u0000D\u00003\u0000X21\u0001$0\/.-,\u0000v+*)\u0000\u0000('&%\n:\u0000\u0004\nkocl\n9\u0000\u0004\ncobj\n8\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n7\u0000\u0004\npsxp\n6\u0000\u0004\nstrq\n5\u0000\u0004\nctxt\n4\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n3\u0000\u0018.miscactvnull\u0000\u0000null\n2\u0000\u0018.coredoscnull\u0000\u0000ctxt\n1\u0000\u0004\ncwin\u000e\u0001$\u0000\u0000\u0013\n0\u0000\u0004\ntcnt\u0003\/\u0000\n.\u0000\u0004\nccol\u0003-\u0000(\n,\u0000\u0004\ncrow\n+\u0000\u0004\ntitl\n*\u0000\u0018.sysodelanull\u0000\u0000nmbr\n)\u0000\u0004\npcnt\n(\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n'\u0000\u0004\nsavo\n&\u0000\b\u000bsavono \n%\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011D\u0000EO\u0017\u0000%[l\f\u0000\u0003kh\u001b\u0000\u0002,,EO%&%E[OYO)j\f\u0000\b,,EO%%%EO\u0012\u0000*j\f\u0000\fO%j\f\u0000\u000eEO*k\/a\u0000\u0010[a\u0000\u0011,\\Z81EOa\u0000\u0012a\u0000\u0013,FOa\u0000\u0014a\u0000\u0015,FOa\u0000\u0016a\u0000\u0017,FOlj\f\u0000\u0018O\u0017\u0000)he\u0019a\u0000\u0019,a\u0000\u0019,EOa\u0000\u001a\b\u001d\u0000\u0006\u0016Y\u0000\u0003hOkj\f\u0000\u0018[OYOa\u0000\u001bj\f\u0000\u001cOa\u0000\u001da\u0000\u001el\f\u0000\u001fU\u000f\u000e\u0001\u001f\u0000\u0007\u0010$\u0001%#\"\u0001&\u0001'!\n$\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001(\u0002\u0001(\u0000\u0002\u0000\u0001)\u0002\u0001)\u0000\u0002\u0001\u0011 \u0002 \u0000\u0000\u0001#\u0000\u0000\u0002\"\u0000\u0000\u0010\u0001&\u0000\u0000\u0010\u0001'\u0000\u0017\u0001\u0010\u001f\u0000\u001e\u0000\u001d\u001c\u001b\u0000\u001a\u0019\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0001\f\u0016\u0015\n\u001f\u0000\u0018.miscactvnull\u0000\u0000null\n\u001e\u0000\u0004\nof C\n\u001d\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u001c\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000b\u001b\u0000\u00140\u0000\btruebool\u0000\btrueBool\n\u001a\u0000\u0004\npsof\n\u0019\u0000\u0004\nwitQ\u0003\u0018\u0000\u0004\u000b\u0017\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b\u0016\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\n\u0015\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0011!\u0000\u0012\u0000}*j\f\u0000\u0001Ol\f\u0000\u0005EOeEO\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005Oa\u0000\u0010\f\u0000\u0005Oa\u0000\u0011\f\u0000\u0005Oa\u0000\u0012l\f\u0000\u0005E`\u0000\u0013O_\u0000\u0013k\u0000\u001d\u0000\u0012a\u0000\u0014l\f\u0000\u0005E`\u0000\u0015Y\u0000\u0003hUO_\u0000\u0013k\u0000\u001d\u0000\u0011)\u0012\u0000\t_\u0000\u0015j\f\u0000\u0016UY\u0000\u0003h\u000f\u000e\u0001 \u0000\u0001\u0014\u0001*\u000e\u0001*\u0000\u0002\u0015\u0001\u0010\u0014\n\u0014\u0000\u0004\nopeP\nS\u0000\b\u000bboovtrue\u0003R\u0000\u0001\u000e\u0001!\u0000\u0002\u0004\u0013\u0001+\u0003\u0013\u0000\u0001\u000e\u0001+\u0000\u0001\u0000\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000r\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000\/\u0000K\u0000a\u0000r\u0000t\u0000e\u0000n\u0000\/\u0000n\u0000v\u0000\/\u0000s\u0000a\u0000t\u0000z\u00004\u0000-\u00002\u00000\u00001\u00002\u0000-\u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0000\/\u0000H\u0000L\u0000S\u00004\u00001\u0000_\u00007\u0000.\u0000k\u0000a\u0000p\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\t\u0000\n\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u000b\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000\u0000\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003X\u0000\u0000\u0000\u0004\u0000*\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001k\u0000\u0000\u0000\u0014\u0000%\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nstrq\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u0014\u0000\u0017\u0000\u001e\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001f\u0000 \r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\npsxp\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000!\r\u0000!\u0000\u0002r\u0000\u0000\u0000\u001c\u0000%\u0000\"\u0000#\r\u0000\"\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000$\u0000%\r\u0000$\u0000\u0002b\u0000\u0000\u0000\u001c\u0000\u001f\u0000&\u0000'\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0002\u0000 \r\u0000%\u0000\u0003l\u0000\u0005\u0000\u001f\u0000\"\u0000*\r\u0000*\u0000\u0002c\u0000\u0000\u0000\u001f\u0000\"\u0000+\u0000,\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00070\u0000\u0003dfp\u0000\u0000\r\u0000,\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u0002\u0000\u0000\u000b\u0000\t0\u0000\u0005aname\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\u00060\u0000\u0002df\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000+\u00004\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\nstrq\r\u00002\u0000\u0003l\u0001\u0000\u0000+\u00002\u00003\r\u00003\u0000\u0002n\u0000\u0000\u0000+\u00002\u00004\u00005\r\u00004\u0000\u00011\u0000\u0000\u00000\u00002\n\u0000\u0004\npsxp\r\u00005\u0000\u0003l\u0000\u0005\u0000+\u00000\u00006\r\u00006\u0000\u0003I\u0000\u0002\u0000+\u00000\u00007\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00007\u0000\u0000f\u0000\u0000\u0000+\u0000,\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\u0002\u0000.\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000:\u0000;\r\u0000:\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000<\u0000=\r\u0000<\u0000\u0002b\u0000\u0000\u00007\u0000<\u0000>\u0000?\r\u0000>\u0000\u0002b\u0000\u0000\u00007\u0000:\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u00007\u00008\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0012\u0000`\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000A\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\n0\u0000\u0006mypath\u0000\u0000\r\u0000?\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000*\u0000`\u0000\/\u0000r\u0000e\u0000a\u0000d\u0000_\u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000_\u0000o\u0000s\u0000x\u0000.\u0000s\u0000h\u0000 \r\u0000=\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\n0\u0000\u0006cmdarg\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u0002\u00009\u0000\u0002\u0000F\r\u0000F\u0000\u0002O\u0000\u0000\u0000A\u0000\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000E\u0000\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0002\u0000E\u0000J\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0001\u0000K\u0000K\u0000N\u0000O\u0001\u0000\u0000\f\u0000N\u0000*\u0000$set custom title to \"AvChartConvert\"\u0000\u0002\u0000\u0000\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000H\u0000s\u0000e\u0000t\u0000 \u0000c\u0000u\u0000s\u0000t\u0000o\u0000m\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000\"\u0002\u0000M\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000K\u0000R\u0000U\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000U\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0000W\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0000X\u000e\u0000X\u0000\u0001\u0000Y\u0011\u0000Y\u0000\n\u0000;\u0000e\u0000x\u0000i\u0000t\u0002\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0002\u0000R\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000U\u0000h\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000U\u0000f\u0000^\r\u0000^\u0000\u00026\u0001\u0000\u0000U\u0000f\u0000_\u0000`\r\u0000_\u0000\u00024\u0000\u0001\u0000U\u0000Y\u0000a\n\u0000\u0004\ncwin\r\u0000a\u0000\u0001m\u0000\u0000\u0000W\u0000X\u0003\u0000\u0001\r\u0000`\u0000\u0002=\u0000\u0003\u0000\\\u0000e\u0000b\u0000c\r\u0000b\u0000\u00011\u0000\u0000\u0000]\u0000a\n\u0000\u0004\ntcnt\r\u0000c\u0000\u0001o\u0000\u0000\u0000b\u0000d\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000[\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002r\u0000\u0000\u0000i\u0000r\u0000f\u0000g\r\u0000f\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0003\u0000\r\u0000g\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000h\r\u0000h\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nccol\r\u0000j\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000e\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0002r\u0000\u0000\u0000s\u0000|\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000(\r\u0000n\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000o\r\u0000o\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000p\u0000q\r\u0000p\u0000\u00011\u0000\u0000\u0000w\u0000{\n\u0000\u0004\ncrow\r\u0000q\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000l\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000}\u0000\u0000t\u0000u\r\u0000t\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000\u001c\u0000A\u0000v\u0000C\u0000h\u0000a\u0000r\u0000t\u0000C\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\r\u0000u\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u0000y\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntitl\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0002\u0000s\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0001\u0000\u0000\u0000|\u0000}\u0000~\r\u0000|\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\n\u0002\u0000\u0000\f\u0000}\u0000,\u0000& give the terminal a chance to come up\u0000\u0002\u0000\u0000\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000L\u0000 \u0000g\u0000i\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000a\u0000 \u0000c\u0000h\u0000a\u0000n\u0000c\u0000e\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000m\u0000e\u0000 \u0000u\u0000p\u0002\u0000{\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002V\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbusy\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002tw\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005mywin\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nsavo\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0000\u0000\r\u0000H\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001d\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f@\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0007wc\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000wG\u0000\u0000\u0000\u0001\u0000\b\u0000\f@\u0000\f?\u0000\u0002\u0000.AndreasMac:Applications:Utilities:Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000o\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nof C\r\u0000\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000N\u0000S\u0000O\u0000p\u0000e\u0000n\u0000P\u0000a\u0000n\u0000e\u0000l\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0018\u0000!\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000s\u0000e\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000F\u0000i\u0000l\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000h\u0000a\u0000r\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000c\u0000o\u0000n\u0000v\u0000e\u0000r\u0000t\u0000e\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\"\u0000+\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000s\u0000e\u0000t\u0000F\u0000l\u0000o\u0000a\u0000t\u0000i\u0000n\u0000g\u0000P\u0000a\u0000n\u0000e\u0000l\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000,\u00005\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00006\u0000?\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000s\u0000e\u0000t\u0000C\u0000a\u0000n\u0000C\u0000h\u0000o\u0000o\u0000s\u0000e\u0000D\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000@\u0000K\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000s\u0000e\u0000t\u0000R\u0000e\u0000s\u0000o\u0000l\u0000v\u0000e\u0000s\u0000A\u0000l\u0000i\u0000a\u0000s\u0000e\u0000s\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000L\u0000W\u0000\u0000\n\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000s\u0000e\u0000t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000s\u0000M\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000:\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000P\u0000Q\u000b\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006\u0000\u0000\u0003\u0000~\n\u0000\u0004\nwitQ\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S}\u000b}\u0000\u00140\u0000\btruebool\u0000\btrueBool\u0006~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000X\u0000e\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000X\u0000a|\u0000\u0000\n|\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000[\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000r\u0000u\u0000n\u0000M\u0000o\u0000d\u0000a\u0000l\u0006\u0000\u0000\u0003{\u0000z\n{\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]y\u000by\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006z\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0004Z\u0000\u0000\u0000f\u0000\u0000\u0000vu\r\u0000\u0000\u0002=\u0000\u0003\u0000f\u0000k\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000it\u000bt\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0000\u0000\u0001m\u0000\u0000\u0000i\u0000js\u0003s\u0000\u0001\r\u0000\u0000\u0003l\u0000\u0003\u0000n\u0000{\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000n\u0000{\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000wr\u0000\u0000\nr\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000f\u0000i\u0000l\u0000e\u0000n\u0000a\u0000m\u0000e\u0000s\u0006\u0000\u0000\u0003q\u0000p\nq\u0000\u0004\npsof\r\u0000\u0000\u0001o\u0000\u0000\u0000r\u0000so\u000bo\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u0006p\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000n\u000bn\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\f\u0000\u00006\u00000 0 is returned when the cancel button is pressed\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000 \u00000\u0000 \u0000i\u0000s\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000e\u0000s\u0000s\u0000e\u0000d\u0002v\u0000\u0000\u0001u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\nAndreasMac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\f7\u0014Automator Runner.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f(~\u0007`\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000}@\u0000\u0000\u0000\u0001\u0000\f\u0000\f7\u0000\f\u0000\f\u0000\u0002\u0000;AndreasMac:System:Library:CoreServices:Automator Runner.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000R\u0000u\u0000n\u0000n\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000A\u0000n\u0000d\u0000r\u0000e\u0000a\u0000s\u0000M\u0000a\u0000c\u0000\u0012\u00000System\/Library\/CoreServices\/Automator Runner.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ml\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0001\u0000kj\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00160\u0000\ttheresult\u0000\ttheResult\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0000\u0000h\u0003h\u0000\u0001\r\u0001\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003I\u0000\u0002\u0000\u0000g\u0001\u0005f\ng\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0001\u0005\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u0006ed\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000c\u000bc\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002f\u0000\u0000\r\u0001\u0004\u0000\u0000f\u0000\u0000\u0000\u0000\u0002k\u0000\u0000\u0001j\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000a`_\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0002b\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004^\u0001\b\u0001\t\u0001\n\u0001^\u0000\u0000\u0010\u0001\b\u0000\u0002]\\\n]\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\\\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\t\u0000\u0007\u0010[\u0000\nZY\u0001\u000b\u0001\fX\n[\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000bZ\u0000\u00060\u0000\u0002df\u0000\u0000\u0002Y\u0000\u0000\u0010\u0001\u000b\u0000\bWVUTSRQP\u000bW\u0000\u00060\u0000\u0002df\u0000\u0000\u000bV\u0000\n0\u0000\u0006cmdarg\u0000\u0000\u000bU\u0000\t0\u0000\u0005aname\u0000\u0000\u000bT\u0000\u00070\u0000\u0003dfp\u0000\u0000\u000bS\u0000\n0\u0000\u0006mypath\u0000\u0000\u000bR\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000bQ\u0000\u00060\u0000\u0002tw\u0000\u0000\u000bP\u0000\t0\u0000\u0005mywin\u0000\u0000\u0010\u0001\f\u0000\u001f\u0000\u0011ONMLK\u0000(JI\u0000B\u0000D\u0000H\u0000XGF\u0001\rEDCBA\u0000v@?>=<;:9\nO\u0000\u0004\nkocl\nN\u0000\u0004\ncobj\nM\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nL\u0000\u0004\npsxp\nK\u0000\u0004\nstrq\nJ\u0000\u0004\nctxt\nI\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\nH\u0000\u0018.miscactvnull\u0000\u0000null\nG\u0000\u0018.coredoscnull\u0000\u0000ctxt\nF\u0000\u0004\ncwin\u000e\u0001\r\u0000\u0000\u0013\nE\u0000\u0004\ntcnt\u0003D\u0000\nC\u0000\u0004\nccol\u0003B\u0000(\nA\u0000\u0004\ncrow\n@\u0000\u0004\ntitl\u0003?\u0000\n\n>\u0000\u0018.sysodelanull\u0000\u0000nmbr\n=\u0000\u0004\nbusy\u0003<\u0000\u000f\n;\u0000\u0004\nsavo\n:\u0000\b\u000bsavono \n9\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0000\u0000obj \u0011X\u0000EO\u0017\u0000%[l\f\u0000\u0003kh\u001b\u0000\u0002,,EO%&%E[OYO)j\f\u0000\b,,EO%%%EO\u0012\u0000u*j\f\u0000\fO%j\f\u0000\u000eEO*k\/a\u0000\u0010[a\u0000\u0011,\\Z81EOa\u0000\u0012a\u0000\u0013,FOa\u0000\u0014a\u0000\u0015,FOa\u0000\u0016a\u0000\u0017,FOa\u0000\u0018j\f\u0000\u0019O\u0017\u0000\u0014ha\u0000\u001a,E\u0019kj\f\u0000\u0019[OYOa\u0000\u001bj\f\u0000\u0019Oa\u0000\u001ca\u0000\u001dl\f\u0000\u001eU\u000f\u000e\u0001\n\u0000\u0007\u00108\u0001\u000e76\u0001\u000f\u0001\u00105\n8\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u000e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001\u0011\u0002\u0001\u0011\u0000\u0002\u0000\u0001\u0012\u0002\u0001\u0012\u0000\u0002\u00004\u00024\u0000\u0000\u00017\u0000\u0000\u00026\u0000\u0000\u0010\u0001\u000f\u0000\u0000\u0010\u0001\u0010\u0000\u0017\u00003\u00002\u000010\/\u0000.-\u0000,\u0000\u0000\u0000\u0000\u0000\u0000+\u0000*)\n3\u0000\u0018.miscactvnull\u0000\u0000null\n2\u0000\u0004\nof C\n1\u0000\u0018.appScalMnull\u0000\u0000\u0000\u0010\u0000obj \u000b0\u0000\u00160\u0000\topenpanel\u0000\topenPanel\u000b\/\u0000\u00140\u0000\btruebool\u0000\btrueBool\n.\u0000\u0004\npsof\n-\u0000\u0004\nwitQ\u0003,\u0000\u0004\u000b+\u0000\u00160\u0000\ttheresult\u0000\ttheResult\u000b*\u0000\u001a0\u0000\u000bchosenpaths\u0000\u000bchosenPaths\n)\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u00115\u0000\u0012\u0000}*j\f\u0000\u0001Ol\f\u0000\u0005EOeEO\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005O\f\u0000\u0005Oa\u0000\u0010\f\u0000\u0005Oa\u0000\u0011\f\u0000\u0005Oa\u0000\u0012l\f\u0000\u0005E`\u0000\u0013O_\u0000\u0013k\u0000\u001d\u0000\u0012a\u0000\u0014l\f\u0000\u0005E`\u0000\u0015Y\u0000\u0003hUO_\u0000\u0013k\u0000\u001d\u0000\u0011)\u0012\u0000\t_\u0000\u0015j\f\u0000\u0016UY\u0000\u0003h\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e31c3d8950775994c0e3ac6570edf94ac05b547b","subject":"Delete terminal-fix.scpt","message":"Delete terminal-fix.scpt\n","repos":"fsavje\/dotfiles","old_file":"terminal-fix.scpt","new_file":"terminal-fix.scpt","new_contents":"","old_contents":"#!\/usr\/bin\/env osascript\n\ntell application \"Terminal\"\n\n\tlocal allOpenedWindows\n\tlocal initialOpenedWindows\n\tlocal windowID\n\tset themeName to \"Solarized Dark Mod\"\n\n\t(* Store the IDs of all the open terminal windows. *)\n\tset initialOpenedWindows to id of every window\n\n\t(* Open the custom theme so that it gets added to the list\n\t of available terminal themes (note: this will open two\n\t additional terminal windows). *)\n\tdo shell script \"open '.\/dots\/terminal\/\" & themeName & \".terminal'\"\n\n\t(* Wait a little bit to ensure that the custom theme is added. *)\n\tdelay 1\n\n\t(* Set the custom theme as the default terminal theme. *)\n\tset default settings to settings set themeName\n\n\t(* Get the IDs of all the currently opened terminal windows. *)\n\tset allOpenedWindows to id of every window\n\n\trepeat with windowID in allOpenedWindows\n\n\t\t(* Close the additional windows that were opened in order\n\t\t to add the custom theme to the list of terminal themes. *)\n\t\tif initialOpenedWindows does not contain windowID then\n\t\t\tclose (every window whose id is windowID)\n\n\t\t(* Change the theme for the initial opened terminal windows\n\t\t to remove the need to close them in order for the custom\n\t\t theme to be applied. *)\n\t\telse\n\t\t\tset current settings of tabs of (every window whose id is windowID) to settings set themeName\n\t\tend if\n\n\tend repeat\n\nend tell\n","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"c4aa659aa18ccee26cdc3bd63448c936a2f93ac1","subject":"fix version comparison for Yosemite","message":"fix version comparison for Yosemite\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n--\n-- Permission is hereby granted, free of charge,\n-- to any person obtaining a copy of this software\n-- and associated documentation files (the \"Software\"),\n-- to deal in the Software without restriction,\n-- including without limitation the rights to use, copy,\n-- modify, merge, publish, distribute, sublicense,\n-- and\/or sell copies of the Software, and to permit persons\n-- to whom the Software is furnished to do so,\n-- subject to the following conditions:\n--\n-- *******\n-- The above copyright notice and this permission notice\n-- shall be included in ALL copies\n-- or substantial portions of the Software.\n-- *******\n--\n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\nset sysinfo to system info\nset osver to system version of sysinfo\n\nconsidering numeric strings\n\tif (osver < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher: \" & osver buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend considering\n\ntell application \"Finder\"\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\t\t\t\t\/* and dateDue < strftime('%s','now','+7 days') - strftime('%s','2001-01-01'); *\/\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n--\n-- Permission is hereby granted, free of charge,\n-- to any person obtaining a copy of this software\n-- and associated documentation files (the \"Software\"),\n-- to deal in the Software without restriction,\n-- including without limitation the rights to use, copy,\n-- modify, merge, publish, distribute, sublicense,\n-- and\/or sell copies of the Software, and to permit persons\n-- to whom the Software is furnished to do so,\n-- subject to the following conditions:\n--\n-- *******\n-- The above copyright notice and this permission notice\n-- shall be included in ALL copies\n-- or substantial portions of the Software.\n-- *******\n--\n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\t\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\t\t\t\t\/* and dateDue < strftime('%s','now','+7 days') - strftime('%s','2001-01-01'); *\/\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"7d08a4e2c7766a1d0f04c4020128e3edb1c47ca7","subject":"Update the watch workers applescript to watch the celerybeat log file.","message":"Update the watch workers applescript to watch the celerybeat log file.\n","repos":"frac\/celery,mitsuhiko\/celery,ask\/celery,frac\/celery,WoLpH\/celery,cbrepo\/celery,mitsuhiko\/celery,WoLpH\/celery,ask\/celery,cbrepo\/celery","old_file":"contrib\/mac\/watch-workers.applescript","new_file":"contrib\/mac\/watch-workers.applescript","new_contents":"set broker to \"h8.opera.com\"\nset workers to {\"h6.opera.com\", \"h8.opera.com\", \"h9.opera.com\", \"h10.opera.com\"}\nset clock to \"h6.opera.com\"\ntell application \"iTerm\"\n activate\n set myterm to (make new terminal)\n tell myterm\n set number of columns to 80\n set number of rows to 50\n repeat with workerhost in workers\n set worker to (make new session at the end of sessions)\n tell worker\n set name to workerhost\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & workerhost & \" 'tail -f \/var\/log\/celeryd.log'\"\n end tell\n end repeat\n set celerybeat to (make new session at the end of sessions)\n tell celerybeat\n set name to \"celerybeat.log\"\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & clock & \" 'tail -f \/var\/log\/celerybeat.log'\"\n end tell\n set rabbit to (make new session at the end of sessions)\n tell rabbit\n set name to \"rabbit.log\"\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & broker & \" 'tail -f \/var\/log\/rabbitmq\/rabbit.log'\"\n end tell\n tell the first session\n activate\n end tell\n end tell\nend tell\n","old_contents":"set broker to \"h8.opera.com\"\nset workers to {\"h6.opera.com\", \"h8.opera.com\", \"h9.opera.com\", \"h10.opera.com\"}\ntell application \"iTerm\"\n activate\n set myterm to (make new terminal)\n tell myterm\n set number of columns to 80\n set number of rows to 50\n repeat with workerhost in workers\n set worker to (make new session at the end of sessions)\n tell worker\n set name to workerhost\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & workerhost & \" 'tail -f \/var\/log\/celeryd.log'\"\n end tell\n end repeat\n set rabbit to (make new session at the end of sessions)\n tell rabbit\n set name to \"rabbit.log\"\n set foreground color to \"white\"\n set background color to \"black\"\n set transparency to 0.1\n exec command \"\/bin\/sh -i\"\n write text \"ssh root@\" & broker & \" 'tail -f \/var\/log\/rabbitmq\/rabbit.log'\"\n end tell\n tell the first session\n activate\n end tell\n end tell\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"92348c6180e9b7d2dca5a00ff3cabe2c571cf781","subject":"archive script","message":"archive script\n","repos":"cynikl\/mac-scripts,cynikl\/mac-scripts","old_file":"Mail-archive\/Inbox_mail_archive.scpt","new_file":"Mail-archive\/Inbox_mail_archive.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000?\u00009 http:\/\/macscripter.net\/viewtopic.php?id=40776, thevarium\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000r\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000m\u0000a\u0000c\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000v\u0000i\u0000e\u0000w\u0000t\u0000o\u0000p\u0000i\u0000c\u0000.\u0000p\u0000h\u0000p\u0000?\u0000i\u0000d\u0000=\u00004\u00000\u00007\u00007\u00006\u0000,\u0000 \u0000t\u0000h\u0000e\u0000v\u0000a\u0000r\u0000i\u0000u\u0000m\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000K\u0000E Automatically archive messages in the inbox for one or more accounts\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0000 \u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000a\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u001a\u0000\u0014 based on their age.\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000(\u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000i\u0000r\u0000 \u0000a\u0000g\u0000e\u0000.\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u00009\u00003 With some changes-simplifications by Cyril Niklaus\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000f\u0000 \u0000W\u0000i\u0000t\u0000h\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000s\u0000-\u0000s\u0000i\u0000m\u0000p\u0000l\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000b\u0000y\u0000 \u0000C\u0000y\u0000r\u0000i\u0000l\u0000 \u0000N\u0000i\u0000k\u0000l\u0000a\u0000u\u0000s\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u00006\u00000 Set this value to the age of messages, in days,\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000`\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000g\u0000e\u0000 \u0000o\u0000f\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000,\u0000 \u0000i\u0000n\u0000 \u0000d\u0000a\u0000y\u0000s\u0000,\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\"\u0000#\u0001\u0000\u0000\f\u0000\"\u0000#\u0000\u001d which should not be archived\u0000\u0002\u0000\u0000\u000e\u0000#\u0000\u0001\u0000$\u0011\u0000$\u0000:\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000d\u0002\u0000!\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000'\u000b\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000-\u0002\u0000&\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000)\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000,\u0000-\u0001\u0000\u0000\f\u0000,\u00007\u00001 Set ARCHIVE_FOLDER to the top level folder where\u0000\u0002\u0000\u0000\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000b\u0000 \u0000S\u0000e\u0000t\u0000 \u0000A\u0000R\u0000C\u0000H\u0000I\u0000V\u0000E\u0000_\u0000F\u0000O\u0000L\u0000D\u0000E\u0000R\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000o\u0000p\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0002\u0000+\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00001\u00002\u0001\u0000\u0000\f\u00001\u0000H\u0000B messages should be saved. There is no need to add On My Mac here.\u0000\u0002\u0000\u0000\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000s\u0000a\u0000v\u0000e\u0000d\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000d\u0000d\u0000 \u0000O\u0000n\u0000 \u0000M\u0000y\u0000 \u0000M\u0000a\u0000c\u0000 \u0000h\u0000e\u0000r\u0000e\u0000.\u0002\u00000\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u00006\u000b\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u00006\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000\u001e\u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000d\u0000\/\u0000S\u0000o\u0000r\u0000t\u0000e\u0000d\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000=\u0000>\u0001\u0000\u0000\f\u0000=\u0000>\u00008 This should remain empty and will be assigned the name \u0000\u0002\u0000\u0000\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000p\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000r\u0000e\u0000m\u0000a\u0000i\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000s\u0000i\u0000g\u0000n\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0002\u0000<\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000,\u0000& of any mailbox you have have selected\u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000L\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000 \u0000y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\n\u0000G\u000b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\r\u0000G\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\t\u0000H\u0002\u0000H\u0000\u0002\u0000I\r\u0000I\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0000\u0002\u0000\u0000\u0002\u0000F\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000P\u0000Q\u0001\u0000\u0000\f\u0000P\u0000\u0012\u0000\f Modify this\u0000\u0002\u0000\u0000\u000e\u0000Q\u0000\u0001\u0000R\u0011\u0000R\u0000\u0018\u0000 \u0000M\u0000o\u0000d\u0000i\u0000f\u0000y\u0000 \u0000t\u0000h\u0000i\u0000s\u0002\u0000O\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000U\r\u0000U\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0001\u0000X\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000Y\u000e\u0000Y\u0000\u0001\u0000Z\u0011\u0000Z\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000Y\u0000O\u0000U\u0000R\u0000U\u0000S\u0000E\u0000R\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000:\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000m\u0000a\u0000i\u0000l\u0000:\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000t\u0000e\u0000m\u0000p\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u000e\u0000]\r\u0000]\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000e\u0000^\u0000_\r\u0000^\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\f\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\f\u0000a\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000a\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000b\n\u0000\u0004\nalis\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthescript\u0000\ttheScript\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0002\u0000\u000f\u0001G\u0000g\r\u0000g\u0000\u0002O\u0000\u0000\u0000\u000f\u0001G\u0000h\u0000i\r\u0000h\u0000\u0001k\u0000\u0000\u0000\u0013\u0001F\u0000j\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000o\u0000p\u0001\u0000\u0000\f\u0000o\u00008\u00002 Figure out the earliest date for messages we want\u0000\u0002\u0000\u0000\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000d\u0000 \u0000F\u0000i\u0000g\u0000u\u0000r\u0000e\u0000 \u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000a\u0000r\u0000l\u0000i\u0000e\u0000s\u0000t\u0000 \u0000d\u0000a\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0002\u0000n\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000t\u0000u\u0001\u0000\u0000\f\u0000t\u0000\u001e\u0000\u0018 to leave in the mailbox\u0000\u0002\u0000\u0000\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u00000\u0000 \u0000t\u0000o\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0002\u0000s\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\"\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0005\u0000\u0013\u0000 \u0000{\r\u0000{\u0000\u0002\\\u0000\u0000\u0000\u0013\u0000 \u0000|\u0000}\r\u0000|\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0018\u0000~\r\u0000~\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000}\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0000\r\u0000\u0000\u0002]\u0000\u0000\u0000\u0018\u0000\u001f\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u001d\u000b\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\r\u0000\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\u0004\ndays\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000\/\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000#\u0000)\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000#\u0000)\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000'\u0000)\n\u0000\u0004\nmsbx\r\u0000\u0000\u00024\u0000\u0000\u0000#\u0000'\u0000\n\u0000\u0004\nmvwr\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00000\u0001F\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000D\u0001A\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000D\u0000D\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000) Set the Mailbox name of selected mailbox\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000M\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000D\u0000W\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000R\u0000W\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000R\u0000R\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000J\u0000Dlog \"Could not archive from \" & (name of anAccountName as rich text)\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000(\u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000s\u0000 \u0000r\u0000i\u0000c\u0000h\u0000 \u0000t\u0000e\u0000x\u0000t\u0000)\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\n\u0000\u0004\nnull\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000X\u0000X\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000X\u0001A\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\nnull\r\u0000\u0000\u0001k\u0000\u0000\u0000`\u0001=\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% Find the messages we want to archive\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000B\u0000< In addition to mail older than X number of days it will not\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000x\u0000 \u0000I\u0000n\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000i\u0000l\u0000 \u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000X\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000y\u0000s\u0000 \u0000i\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000A\u0000; archive any mail that is unread, flagged or marked as junk\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000v\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000a\u0000n\u0000y\u0000 \u0000m\u0000a\u0000i\u0000l\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000u\u0000n\u0000r\u0000e\u0000a\u0000d\u0000,\u0000 \u0000f\u0000l\u0000a\u0000g\u0000g\u0000e\u0000d\u0000 \u0000o\u0000r\u0000 \u0000m\u0000a\u0000r\u0000k\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000j\u0000u\u0000n\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000`\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000`\u0000\u0000\r\u0000\u0000\u00026\u0001\u0001\u0000`\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000`\u0000e\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000a\u0000e\n\u0000\u0004\nmssg\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0003l\u0000\u0005\u0000h\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000j\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000k\u0000t\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000l\u0000p\n\u0000\u0004\nisrd\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000s\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0002=\u0000\u0003\u0000u\u0000~\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000v\u0000z\n\u0000\u0004\nisjk\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000}\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nisfl\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002A\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndrcv\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001;\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0005\u0005-- first we find the sender of the message\r\t\t\t\tset theSender to sender of currentMessage as string\r\t\t\t\t-- now we strip off the sender's domain (everything after the \"@\")\r\t\t\t\tset oldDelimiters to AppleScript's text item delimiters\r\t\t\t\tset AppleScript's text item delimiters to {\"@\"}\r\t\t\t\ttry\r\t\t\t\t\tset theDomain to the second text item of theSender\r\t\t\t\t\t-- always set the text item delimiters back as soon as possible!\r\t\t\t\t\tset AppleScript's text item delimiters to \"\"\r\t\t\t\t\t-- and strip the last character off the domain, as it will be a \">\"\r\t\t\t\t\tif theDomain contains \">\" then\r\t\t\t\t\t\tset theDomain to leftStringFromRight(theDomain, \">\") of theScript\r\t\t\t\t\tend if\r\t\t\t\t\trepeat\r\t\t\t\t\t\t-- If the senders domain contains multiple periods\r\t\t\t\t\t\t-- I remove anything to right of any period to\r\t\t\t\t\t\t-- capture just the Root domain\r\t\t\t\t\t\tif theDomain contains \".\" then\r\t\t\t\t\t\t\tset theDomain to leftStringFromRight(theDomain, \".\") of theScript\r\t\t\t\t\t\telse\r\t\t\t\t\t\t\texit repeat\r\t\t\t\t\t\tend if\r\t\t\t\t\tend repeat\r\t\t\t\t\t-- Format the domain so your folders look uniform\r\t\t\t\t\t-- This is the OCD in me\r\t\t\t\t\tset theDomain to theScript's capitalizeString(theDomain)\r\t\t\t\ton error\r\t\t\t\t\t-- If the domain could not be found then it sets the \r\t\t\t\t\t-- domain to Undetermined and archives those emails\r\t\t\t\t\t-- into one folder. But this could be used to exit\r\t\t\t\t\t-- current loop and leave the messsage alone\r\t\t\t\t\tset theDomain to \"Undetermined\"\r\t\t\t\t\tset AppleScript's text item delimiters to \"\"\r\t\t\t\tend try \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u000bz\u0000-\u0000-\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000w\u0000e\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000S\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000a\u0000s\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000n\u0000o\u0000w\u0000 \u0000w\u0000e\u0000 \u0000s\u0000t\u0000r\u0000i\u0000p\u0000 \u0000o\u0000f\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000'\u0000s\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000@\u0000\"\u0000)\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000o\u0000l\u0000d\u0000D\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000{\u0000\"\u0000@\u0000\"\u0000}\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000S\u0000e\u0000n\u0000d\u0000e\u0000r\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000a\u0000s\u0000 \u0000s\u0000o\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000e\u0000!\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000c\u0000h\u0000a\u0000r\u0000a\u0000c\u0000t\u0000e\u0000r\u0000 \u0000o\u0000f\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000,\u0000 \u0000a\u0000s\u0000 \u0000i\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000\"\u0000>\u0000\"\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000\"\u0000>\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000l\u0000e\u0000f\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000F\u0000r\u0000o\u0000m\u0000R\u0000i\u0000g\u0000h\u0000t\u0000(\u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000,\u0000 \u0000\"\u0000>\u0000\"\u0000)\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000s\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000m\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000 \u0000p\u0000e\u0000r\u0000i\u0000o\u0000d\u0000s\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000I\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000a\u0000n\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000i\u0000o\u0000d\u0000 \u0000t\u0000o\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000c\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000R\u0000o\u0000o\u0000t\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000\"\u0000.\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000l\u0000e\u0000f\u0000t\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000F\u0000r\u0000o\u0000m\u0000R\u0000i\u0000g\u0000h\u0000t\u0000(\u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000,\u0000 \u0000\"\u0000.\u0000\"\u0000)\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000l\u0000s\u0000e\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000F\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000s\u0000o\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000l\u0000o\u0000o\u0000k\u0000 \u0000u\u0000n\u0000i\u0000f\u0000o\u0000r\u0000m\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000O\u0000C\u0000D\u0000 \u0000i\u0000n\u0000 \u0000m\u0000e\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000c\u0000a\u0000p\u0000i\u0000t\u0000a\u0000l\u0000i\u0000z\u0000e\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000(\u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000)\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000o\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000i\u0000t\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000U\u0000n\u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\u0000 \u0000t\u0000h\u0000o\u0000s\u0000e\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000s\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000o\u0000n\u0000e\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000 \u0000B\u0000u\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000x\u0000i\u0000t\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000l\u0000o\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000a\u0000l\u0000o\u0000n\u0000e\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000D\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000U\u0000n\u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000d\u0000\"\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000\r\u0000\t\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000r\u0000y\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000,\u0000& Set the archive location based on the\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000L\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% modified this to not sort by sender.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000t\u0000o\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000o\u0000r\u0000t\u0000 \u0000b\u0000y\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000~\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0001\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u001a0\u0000\u000bmailboxname\u0000\u000bmailboxName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000z\u0000\u0000\u0001z\u0000\u0000\f\u0000\u00004\u0000. Find the top level mailbox. If this does not\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\\\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000o\u0000p\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000.\u0000 \u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0001\u0000\u0000y\u0001\u0003\u0001\u0004\u0001y\u0000\u0000\f\u0001\u0003\u00000\u0000* exist, we will get an error and bail out.\u0000\u0002\u0000\u0000\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000T\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000b\u0000a\u0000i\u0000l\u0000 \u0000o\u0000u\u0000t\u0000.\u0002\u0001\u0002\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\b\u0001\t\r\u0001\b\u0000\u00024\u0000\u0000\u0000\u0000x\u0001\n\nx\u0000\u0004\nmbxp\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000w\u000bw\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0001\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0001\u0000\u0000u\u0001\r\u0001\u000e\u0001u\u0000\u0000\f\u0001\r\u00009\u00003 Find the domain archive mailbox. If this does not\u0000\u0002\u0000\u0000\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000f\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000.\u0000 \u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0002\u0001\f\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0003l\u0000\u0001\u0000\u0000t\u0001\u0012\u0001\u0013\u0001t\u0000\u0000\f\u0001\u0012\u0000\u001b\u0000\u0015 exist, we create it.\u0000\u0002\u0000\u0000\u000e\u0001\u0013\u0000\u0001\u0001\u0014\u0011\u0001\u0014\u0000*\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000w\u0000e\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000.\u0002\u0001\u0011\u0000\u0002\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0003Q\u0000\u0000\u0000\u0001(\u0001\u0017\u0001\u0018\u0001\u0019\r\u0001\u0017\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0003l\u0000\u0005\u0000\u0000\u0001\u001csr\r\u0001\u001c\u0000\u0002n\u0000\u0000\u0000\u0000\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u00024\u0000\u0000\u0000\u0000q\u0001\u001f\nq\u0000\u0004\nmbxp\r\u0001\u001f\u0000\u0003l\u0000\u0005\u0000\u0000\u0001 po\r\u0001 \u0000\u0002c\u0000\u0000\u0000\u0000\u0001!\u0001\"\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000n\u000bn\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000m\nm\u0000\u0004\nTEXT\u0001p\u0000\u0000\u0001o\u0000\u0000\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u0001s\u0000\u0000\u0001r\u0000\u0000\r\u0001\u001b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\r\u0001\u0018\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000jih\nj\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001i\u0000\u0000\u0002h\u0000\u0000\r\u0001\u0019\u0000\u0001k\u0000\u0000\u0000\u0001(\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003I\u0000\u0002\u0000\u0001\u0015gf\u0001&\ng\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001f\u0000\u0000\u0006\u0001&\u0000\u0003e\u0001'\u0001(\ne\u0000\u0004\nkocl\r\u0001'\u0000\u0001m\u0000\u0000\u0000\u0000d\nd\u0000\u0004\nmbxp\u0006\u0001(\u0000\u0003c\u0001)b\nc\u0000\u0004\nprdt\r\u0001)\u0000\u0001K\u0000\u0000\u0000\u0001\u000f\u0001*\u0006\u0001*\u0000\u0003a\u0001+`\na\u0000\u0004\npnam\r\u0001+\u0000\u0003l\u0000\u0005\u0001\u0000\u0001\r\u0001,_^\r\u0001,\u0000\u0002b\u0000\u0000\u0001\u0000\u0001\r\u0001-\u0001.\r\u0001-\u0000\u0002b\u0000\u0000\u0001\u0000\u0001\t\u0001\/\u00010\r\u0001\/\u0000\u0001o\u0000\u0000\u0001\u0000\u0001\u0005]\u000b]\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u00010\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\b\u00011\u000e\u00011\u0000\u0001\u00012\u0011\u00012\u0000\u0002\u0000\/\r\u0001.\u0000\u0001o\u0000\u0000\u0001\t\u0001\f\\\u000b\\\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0001_\u0000\u0000\u0001^\u0000\u0000\u0006`\u0000\u0000\u0006b\u0000\u0000\u0002\u0001%\u0000\u0002\u00013[\r\u00013\u0000\u0002r\u0000\u0000\u0001\u0016\u0001(\u00014\u00015\r\u00014\u0000\u0003l\u0000\u0005\u0001\u0016\u0001$\u00016ZY\r\u00016\u0000\u0002n\u0000\u0000\u0001\u0016\u0001$\u00017\u00018\r\u00017\u0000\u00024\u0000\u0000\u0001\u0019\u0001$X\u00019\nX\u0000\u0004\nmbxp\r\u00019\u0000\u0003l\u0000\u0005\u0001\u001c\u0001#\u0001:WV\r\u0001:\u0000\u0002c\u0000\u0000\u0001\u001c\u0001#\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0001\u001c\u0001\u001fU\u000bU\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001<\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"T\nT\u0000\u0004\nTEXT\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0016\u0001\u0019S\u000bS\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u0001Z\u0000\u0000\u0001Y\u0000\u0000\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000R\u000bR\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\u0002[\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0003I\u0000\u0002\u0001)\u00014Q\u0001?\u0001@\nQ\u0000\u0018.coremovenull\u0000\u0000\u0000\u0000\u0000obj \r\u0001?\u0000\u0001o\u0000\u0000\u0001)\u0001*P\u000bP\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\u0006\u0001@\u0000\u0003O\u0001AN\nO\u0000\u0004\ninsh\r\u0001A\u0000\u0001o\u0000\u0000\u0001-\u00010M\u000bM\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\u0006N\u0000\u0000\u0002\u0001>\u0000\u0002\u0001BL\r\u0001B\u0000\u0003l\u0000\u0002\u00015\u00015KJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002L\u0000\u0000\u000b\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\u0002\u0000\u0000\u0002\u0001CG\r\u0001C\u0000\u0003l\u0000\u0002\u0001<\u0001<FED\u0001F\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002G\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00008C\u000bC\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\u0002\u0000\u0000\r\u0000i\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0001D\u000f\u0001D\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000emal\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001*\u0000\u0002\u0000\u0001\u0003Ode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001c\u000bH+\u0000\u0000\u0000\u0000\u0000$\bMail.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000yir\u0015\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000iU\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000$\u0000\u0002\u0000\u001aOde:Applications:\u0000Mail.app\u0000\u000e\u0000\u0012\u0000\b\u0000M\u0000a\u0000i\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000O\u0000d\u0000e\u0000\u0012\u0000\u0015Applications\/Mail.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000BA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0001F\u0000\u0002\u0001G?\r\u0001G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000>=<\u0001>\u0000\u0000\u0001=\u0000\u0000\u0001<\u0000\u0000\u0002?\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006;\u0001H:\u00007\u0001I\u0001J\u0001;\u0000\u0000\u0010\u0001H\u0000\u00049876\u000b9\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\u000b8\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\u000b7\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\n6\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003:\u0000-\u000e\u0001I\u0000\u0002\u00045\u0001K\u00035\u0000\u0001\u000e\u0001K\u0000\u0001\u0000\u0000J\u000e\u0001J\u0000\u0007\u00104\u0001L32\u0001M\u0001N1\n4\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001L\u0000\u0001k\u0000\u0000\u0000\u0000\u0001G\u0001O\u0002\u0001O\u0000\u0002\u0000S\u0001P\u0002\u0001P\u0000\u0002\u0000[\u0001Q\u0002\u0001Q\u0000\u0002\u0000e0\u00020\u0000\u0000\u00013\u0000\u0000\u00022\u0000\u0000\u0010\u0001M\u0000\u0002\/.\u000b\/\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\u000b.\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\u0010\u0001N\u0000'\u0000Y-,+*\u0001D)('&%$#\"! \u001f\u001e\u001d\u0001R\u001c\u001b\u001a\u0019\u0018\u0017\u0000\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u00011\u000f\u000e\r\f\u000b-\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\n,\u0000\u0004\nalis\n+\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u000b*\u0000\u00160\u0000\tthescript\u0000\ttheScript\n)\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n(\u0000\u0004\ndays\u000b'\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\n&\u0000\u0004\nmvwr\n%\u0000\u0004\nmsbx\n$\u0000\u0004\nkocl\n#\u0000\u0004\ncobj\n\"\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b!\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\u0001 \u0000\u0000\u0002\u001f\u0000\u0000\n\u001e\u0000\u0004\nnull\n\u001d\u0000\u0004\nmssg\u000e\u0001R\u0000\u0000\u0013\n\u001c\u0000\u0004\nisrd\n\u001b\u0000\u0004\nisjk\n\u001a\u0000\u0004\nisfl\n\u0019\u0000\u0004\ndrcv\u000b\u0018\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\u000b\u0017\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u000b\u0016\u0000\u001a0\u0000\u000bmailboxname\u0000\u000bmailboxName\n\u0015\u0000\u0004\nmbxp\u000b\u0014\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\n\u0013\u0000\u0004\nTEXT\u000b\u0012\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\n\u0011\u0000\u0004\nprdt\n\u0010\u0000\u0004\npnam\u0003\u000f\u0000\u0004\n\u000e\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\n\r\u0000\u0004\ninsh\n\f\u0000\u0018.coremovenull\u0000\u0000\u0000\u0000\u0000obj \u00111\u0001HEO*\/j\f\u0000\u0003EO\u0012\u00015*j\f\u0000\u0006b\u0000\u0001\u0000\u0000 \u001fEO*k\/,Ec\u0000\u0001\u0000\u0002O\u0017\u0001\u0015b\u0000\u0001\u0000\u0002[l\f\u0000\rkh\u001b\u0000\u0000\u0014\u0000\bEW\u0000\fX\u0000\u000f\u0000\u0010a\u0000\u0011EOa\u0000\u0011\u0001\u001d\u0000a\u0000\u0012-a\u0000\u0013[[[[a\u0000\u0014,\\Ze8\\[a\u0000\u0015,\\Zf8A\\[a\u0000\u0016,\\Zf8A\\[a\u0000\u0017,\\Z<A1E`\u0000\u0018O\u0017\u0000_\u0000\u0018[l\f\u0000\rkh\u001b\u0000\u0001*j\f\u0000\u0006E`\u0000\u0019Ob\u0000\u0001\u0000\u0001a\u0000\u001a%_\u0000\u0019%E`\u0000\u001bO*a\u0000\u001cb\u0000\u0001\u0000\u0001\/E`\u0000\u001dO\u0014\u0000\u0017_\u0000\u001da\u0000\u001c_\u0000\u0019a\u0000\u001e&\/E`\u0000\u001fW\u0000:X\u0000\u000f\u0000\u0010*a\u0000\u001ca\u0000 a\u0000!b\u0000\u0001\u0000\u0001a\u0000\"%_\u0000\u0019%l\u000ea\u0000#\f\u0000$O_\u0000\u001da\u0000\u001c_\u0000\u0019a\u0000\u001e&\/E`\u0000\u001fOa\u0000%_\u0000\u001fl\f\u0000&OP[OYqOPY\u0000\u0003h[OYU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000?\u00009 http:\/\/macscripter.net\/viewtopic.php?id=40776, thevarium\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000r\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000m\u0000a\u0000c\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000v\u0000i\u0000e\u0000w\u0000t\u0000o\u0000p\u0000i\u0000c\u0000.\u0000p\u0000h\u0000p\u0000?\u0000i\u0000d\u0000=\u00004\u00000\u00007\u00007\u00006\u0000,\u0000 \u0000t\u0000h\u0000e\u0000v\u0000a\u0000r\u0000i\u0000u\u0000m\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000K\u0000E Automatically archive messages in the inbox for one or more accounts\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0000 \u0000A\u0000u\u0000t\u0000o\u0000m\u0000a\u0000t\u0000i\u0000c\u0000a\u0000l\u0000l\u0000y\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000b\u0000o\u0000x\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000n\u0000e\u0000 \u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000a\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000s\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u001a\u0000\u0014 based on their age.\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000(\u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000i\u0000r\u0000 \u0000a\u0000g\u0000e\u0000.\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u00006\u00000 Set this value to the age of messages, in days,\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000`\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000g\u0000e\u0000 \u0000o\u0000f\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000,\u0000 \u0000i\u0000n\u0000 \u0000d\u0000a\u0000y\u0000s\u0000,\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u0000#\u0000\u001d which should not be archived\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000:\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000d\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\"\u000b\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000-\u0002\u0000!\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u00007\u00001 Set ARCHIVE_FOLDER to the top level folder where\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000b\u0000 \u0000S\u0000e\u0000t\u0000 \u0000A\u0000R\u0000C\u0000H\u0000I\u0000V\u0000E\u0000_\u0000F\u0000O\u0000L\u0000D\u0000E\u0000R\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000o\u0000p\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0002\u0000&\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000,\u0000-\u0001\u0000\u0000\f\u0000,\u0000C\u0000= messages should be saved. For mine I created a folder called\u0000\u0002\u0000\u0000\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000z\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000s\u0000a\u0000v\u0000e\u0000d\u0000.\u0000 \u0000F\u0000o\u0000r\u0000 \u0000m\u0000i\u0000n\u0000e\u0000 \u0000I\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000d\u0000 \u0000a\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000c\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000+\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00001\u00002\u0001\u0000\u0000\f\u00001\u0000G\u0000A Sorted which houses all of the sub folders created by the script\u0000\u0002\u0000\u0000\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000\u0000 \u0000S\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000h\u0000o\u0000u\u0000s\u0000e\u0000s\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000u\u0000b\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u00000\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000.\u0000( there is no need to add On My Mac here.\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000P\u0000 \u0000t\u0000h\u0000e\u0000r\u0000e\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000d\u0000d\u0000 \u0000O\u0000n\u0000 \u0000M\u0000y\u0000 \u0000M\u0000a\u0000c\u0000 \u0000h\u0000e\u0000r\u0000e\u0000.\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000;\u000b\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0000;\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000<\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000\u001e\u0000A\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000d\u0000\/\u0000S\u0000o\u0000r\u0000t\u0000e\u0000d\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000B\u0000C\u0001\u0000\u0000\f\u0000B\u0000>\u00008 This should remain empty and will be assigned the name \u0000\u0002\u0000\u0000\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000p\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000h\u0000o\u0000u\u0000l\u0000d\u0000 \u0000r\u0000e\u0000m\u0000a\u0000i\u0000n\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000s\u0000i\u0000g\u0000n\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0002\u0000A\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000G\u0000H\u0001\u0000\u0000\f\u0000G\u0000,\u0000& of any mailbox you have have selected\u0000\u0002\u0000\u0000\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u0000L\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000 \u0000y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0002\u0000F\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\n\u0000L\u000b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0006\u0000\t\u0000M\u0002\u0000M\u0000\u0002\u0000N\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000O\u000e\u0000O\u0000\u0001\u0000P\u0011\u0000P\u0000\u0000\u0002\u0000\u0000\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000U\u0000V\u0001\u0000\u0000\f\u0000U\u0000\u0000set scriptPath to (\"Macintosh HD:Users:YOURUSER:Library:Application Scripts:com.apple.mail\") Or another location of your choosing\u0000\u0002\u0000\u0000\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0001\u0002\u0000s\u0000e\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000(\u0000\"\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000Y\u0000O\u0000U\u0000R\u0000U\u0000S\u0000E\u0000R\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000:\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000m\u0000a\u0000i\u0000l\u0000\"\u0000)\u0000 \u0000O\u0000r\u0000 \u0000a\u0000n\u0000o\u0000t\u0000h\u0000e\u0000r\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000c\u0000h\u0000o\u0000o\u0000s\u0000i\u0000n\u0000g\u0002\u0000T\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000Z\r\u0000Z\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0001\u0000]\r\u0000]\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000Y\u0000O\u0000U\u0000R\u0000U\u0000S\u0000E\u0000R\u0000:\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000:\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000:\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000m\u0000a\u0000i\u0000l\u0000:\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000t\u0000e\u0000m\u0000p\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\u000e\u0000b\r\u0000b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u000e\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\f\u0000e\r\u0000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\f\u0000f\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000f\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000g\n\u0000\u0004\nalis\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthescript\u0000\ttheScript\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000a\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u000f\u0001\u0000l\r\u0000l\u0000\u0002O\u0000\u0000\u0000\u000f\u0001\u0000m\u0000n\r\u0000m\u0000\u0001k\u0000\u0000\u0000\u0013\u0001\u0000o\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0003l\u0000\u0002\u0000\u0013\u0000\u0013\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000t\u0000u\u0001\u0000\u0000\f\u0000t\u00008\u00002 Figure out the earliest date for messages we want\u0000\u0002\u0000\u0000\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000d\u0000 \u0000F\u0000i\u0000g\u0000u\u0000r\u0000e\u0000 \u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000a\u0000r\u0000l\u0000i\u0000e\u0000s\u0000t\u0000 \u0000d\u0000a\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0002\u0000s\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000y\u0000z\u0001\u0000\u0000\f\u0000y\u0000\u001e\u0000\u0018 to leave in the mailbox\u0000\u0002\u0000\u0000\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u00000\u0000 \u0000t\u0000o\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0002\u0000x\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\"\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0005\u0000\u0013\u0000 \u0000\r\u0000\u0000\u0002\\\u0000\u0000\u0000\u0013\u0000 \u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0018\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0000\r\u0000\u0000\u0002]\u0000\u0000\u0000\u0018\u0000\u001f\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u001d\u000b\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\r\u0000\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\u0004\ndays\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000\/\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000#\u0000)\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000#\u0000)\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000'\u0000)\n\u0000\u0004\nmsbx\r\u0000\u0000\u00024\u0000\u0000\u0000#\u0000'\u0000\n\u0000\u0004\nmvwr\r\u0000\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000D\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000D\u0000D\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000) Set the Mailbox name of selected mailbox\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000M\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000D\u0000W\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000G\u0000J\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000R\u0000W\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000R\u0000R\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000J\u0000Dlog \"Could not archive from \" & (name of anAccountName as rich text)\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000(\u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000A\u0000c\u0000c\u0000o\u0000u\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000s\u0000 \u0000r\u0000i\u0000c\u0000h\u0000 \u0000t\u0000e\u0000x\u0000t\u0000)\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\n\u0000\u0004\nnull\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000X\u0000X\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000X\u0001\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\nnull\r\u0000\u0000\u0001k\u0000\u0000\u0000`\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% Find the messages we want to archive\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000B\u0000< In addition to mail older than X number of days it will not\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000x\u0000 \u0000I\u0000n\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000m\u0000a\u0000i\u0000l\u0000 \u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000n\u0000 \u0000X\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000d\u0000a\u0000y\u0000s\u0000 \u0000i\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000`\u0000`\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000A\u0000; archive any mail that is unread, flagged or marked as junk\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000v\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000a\u0000n\u0000y\u0000 \u0000m\u0000a\u0000i\u0000l\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000s\u0000 \u0000u\u0000n\u0000r\u0000e\u0000a\u0000d\u0000,\u0000 \u0000f\u0000l\u0000a\u0000g\u0000g\u0000e\u0000d\u0000 \u0000o\u0000r\u0000 \u0000m\u0000a\u0000r\u0000k\u0000e\u0000d\u0000 \u0000a\u0000s\u0000 \u0000j\u0000u\u0000n\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000`\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000`\u0000\u0000\r\u0000\u0000\u00026\u0001\u0001\u0000`\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000`\u0000e\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000a\u0000e\n\u0000\u0004\nmssg\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\r\u0000\u0000\u0003l\u0000\u0005\u0000h\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000h\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000j\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000k\u0000t\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000l\u0000p\n\u0000\u0004\nisrd\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000s\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0002=\u0000\u0003\u0000u\u0000~\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000v\u0000z\n\u0000\u0004\nisjk\r\u0000\u0000\u0001m\u0000\u0000\u0000{\u0000}\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nisfl\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\r\u0000\u0000\u0002A\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndrcv\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000.\u0000( first we find the sender of the message\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000P\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000 \u0000w\u0000e\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nsndr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000F\u0000@ now we strip off the sender's domain (everything after the \"@\")\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000n\u0000o\u0000w\u0000 \u0000w\u0000e\u0000 \u0000s\u0000t\u0000r\u0000i\u0000p\u0000 \u0000o\u0000f\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000'\u0000s\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000@\u0000\"\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rolddelimiters\u0000\roldDelimiters\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\u0002\u0000@\u0002~\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u00011\u0000\u0000\u0000\u0000}\n}\u0000\u0004\ntxdl\r\u0001\u0003\u0000\u00011\u0000\u0000\u0000\u0000|\n|\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003Q\u0000\u0000\u0000\u0001^\u0001\u0006\u0001\u0007\u0001\b\r\u0001\u0006\u0000\u0001k\u0000\u0000\u0000\u0001C\u0001\t\u0002\u0001\t\u0000\u0002\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\f\u0001\r\r\u0001\f\u0000\u0003l\u0001\u0000\u0000\u0000\u0001\u000e{z\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0000\u0000\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u00024\u0000\u0001\u0000\u0000y\u0001\u0011\ny\u0000\u0004\ncitm\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000\u0000x\u0003x\u0000\u0002\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000\u0000w\u000bw\u0000\u00160\u0000\tthesender\u0000\ttheSender\u0001{\u0000\u0000\u0001z\u0000\u0000\r\u0001\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002\u0001\u000b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0001\u0000\u0000u\u0001\u0014\u0001\u0015\u0001u\u0000\u0000\f\u0001\u0014\u0000D\u0000> always set the text item delimiters back as soon as possible!\u0000\u0002\u0000\u0000\u000e\u0001\u0015\u0000\u0001\u0001\u0016\u0011\u0001\u0016\u0000|\u0000 \u0000a\u0000l\u0000w\u0000a\u0000y\u0000s\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000b\u0000a\u0000c\u0000k\u0000 \u0000a\u0000s\u0000 \u0000s\u0000o\u0000o\u0000n\u0000 \u0000a\u0000s\u0000 \u0000p\u0000o\u0000s\u0000s\u0000i\u0000b\u0000l\u0000e\u0000!\u0002\u0001\u0013\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000\u0000\r\u0001\u001a\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u00011\u0000\u0000\u0000\u0000t\nt\u0000\u0004\ntxdl\r\u0001\u001e\u0000\u00011\u0000\u0000\u0000\u0000s\ns\u0000\u0004\nascr\u0002\u0001\u0018\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0003l\u0000\u0001\u0000\u0000r\u0001!\u0001\"\u0001r\u0000\u0000\f\u0001!\u0000G\u0000A and strip the last character off the domain, as it will be a \">\"\u0000\u0002\u0000\u0000\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000c\u0000h\u0000a\u0000r\u0000a\u0000c\u0000t\u0000e\u0000r\u0000 \u0000o\u0000f\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000,\u0000 \u0000a\u0000s\u0000 \u0000i\u0000t\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000\"\u0000>\u0000\"\u0002\u0001 \u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0004Z\u0000\u0000\u0000\u0001\u000e\u0001&\u0001'qp\r\u0001&\u0000\u0002E\u0000\u0000\u0000\u0000\u0001(\u0001)\r\u0001(\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001)\u0000\u0001m\u0000\u0000\u0000\u0000\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000>\r\u0001'\u0000\u0002r\u0000\u0000\u0000\u0001\n\u0001,\u0001-\r\u0001,\u0000\u0002n\u0000\u0000\u0000\u0001\u0006\u0001.\u0001\/\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0001\u0006n\u00010m\u000bn\u0000*0\u0000\u0013leftstringfromright\u0000\u0013leftStringFromRight\u0002\u00010\u0000\u0002\u00011\u00012\r\u00011\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002\u00012\u0000\u0002\u00013k\r\u00013\u0000\u0001m\u0000\u0000\u0000\u0001\u0002\u00014\u000e\u00014\u0000\u0001\u00015\u0011\u00015\u0000\u0002\u0000>\u0002k\u0000\u0000\u0002m\u0000\u0000\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00160\u0000\tthescript\u0000\ttheScript\r\u0001-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002q\u0000\u0000\u0001p\u0000\u0000\u0002\u0001%\u0000\u0002\u00016\u00017\r\u00016\u0000\u0001T\u0000\u0000\u0001\u000f\u00016\u00018\r\u00018\u0000\u0001k\u0000\u0000\u0001\u0014\u00011\u00019\u0002\u00019\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003l\u0000\u0001\u0001\u0014\u0001\u0014h\u0001<\u0001=\u0001h\u0000\u0000\f\u0001<\u00006\u00000 If the senders domain contains multiple periods\u0000\u0002\u0000\u0000\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000`\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000n\u0000d\u0000e\u0000r\u0000s\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000m\u0000u\u0000l\u0000t\u0000i\u0000p\u0000l\u0000e\u0000 \u0000p\u0000e\u0000r\u0000i\u0000o\u0000d\u0000s\u0002\u0001;\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0003l\u0000\u0001\u0001\u0014\u0001\u0014g\u0001A\u0001B\u0001g\u0000\u0000\f\u0001A\u00002\u0000, I remove anything to right of any period to\u0000\u0002\u0000\u0000\u000e\u0001B\u0000\u0001\u0001C\u0011\u0001C\u0000X\u0000 \u0000I\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000a\u0000n\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000o\u0000f\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000i\u0000o\u0000d\u0000 \u0000t\u0000o\u0002\u0001@\u0000\u0002\u0001D\u0001E\r\u0001D\u0000\u0003l\u0000\u0001\u0001\u0014\u0001\u0014f\u0001F\u0001G\u0001f\u0000\u0000\f\u0001F\u0000#\u0000\u001d capture just the Root domain\u0000\u0002\u0000\u0000\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000:\u0000 \u0000c\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000j\u0000u\u0000s\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000R\u0000o\u0000o\u0000t\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0002\u0001E\u0000\u0002\u0001Ie\r\u0001I\u0000\u0004Z\u0000\u0000\u0001\u0014\u00011\u0001J\u0001Kd\u0001L\r\u0001J\u0000\u0002E\u0000\u0000\u0001\u0014\u0001\u001b\u0001M\u0001N\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0014\u0001\u0017c\u000bc\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001N\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\u0002\u0000.\r\u0001K\u0000\u0002r\u0000\u0000\u0001\u001e\u0001-\u0001Q\u0001R\r\u0001Q\u0000\u0002n\u0000\u0000\u0001\u001e\u0001)\u0001S\u0001T\r\u0001S\u0000\u0003I\u0000\u0000\u0001\u001f\u0001)b\u0001Ua\u000bb\u0000*0\u0000\u0013leftstringfromright\u0000\u0013leftStringFromRight\u0002\u0001U\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0001o\u0000\u0000\u0001\u001f\u0001\"`\u000b`\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002\u0001W\u0000\u0002\u0001X_\r\u0001X\u0000\u0001m\u0000\u0000\u0001\"\u0001%\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\u0002\u0000.\u0002_\u0000\u0000\u0002a\u0000\u0000\r\u0001T\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\u001f^\u000b^\u0000\u00160\u0000\tthescript\u0000\ttheScript\r\u0001R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002d\u0000\u0000\r\u0001L\u0000\u0000S\u0000\u0000\u00010\u00011\u0002e\u0000\u0000\u0002\u00017\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0003l\u0000\u0001\u00017\u00017\\\u0001]\u0001^\u0001\\\u0000\u0000\f\u0001]\u00005\u0000\/ Format the domain so your folders look uniform\u0000\u0002\u0000\u0000\u000e\u0001^\u0000\u0001\u0001_\u0011\u0001_\u0000^\u0000 \u0000F\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000s\u0000o\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000 \u0000l\u0000o\u0000o\u0000k\u0000 \u0000u\u0000n\u0000i\u0000f\u0000o\u0000r\u0000m\u0002\u0001\\\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0003l\u0000\u0001\u00017\u00017[\u0001b\u0001c\u0001[\u0000\u0000\f\u0001b\u0000\u001c\u0000\u0016 This is the OCD in me\u0000\u0002\u0000\u0000\u000e\u0001c\u0000\u0001\u0001d\u0011\u0001d\u0000,\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000i\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000O\u0000C\u0000D\u0000 \u0000i\u0000n\u0000 \u0000m\u0000e\u0002\u0001a\u0000\u0002\u0001eZ\r\u0001e\u0000\u0002r\u0000\u0000\u00017\u0001C\u0001f\u0001g\r\u0001f\u0000\u0002n\u0000\u0003\u00017\u0001?\u0001h\u0001i\r\u0001h\u0000\u0003I\u0000\u0000\u00018\u0001?Y\u0001jX\u000bY\u0000$0\u0000\u0010capitalizestring\u0000\u0010capitalizeString\u0002\u0001j\u0000\u0002\u0001kW\r\u0001k\u0000\u0001o\u0000\u0000\u00018\u0001;V\u000bV\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002W\u0000\u0000\u0002X\u0000\u0000\r\u0001i\u0000\u0001o\u0000\u0000\u00017\u00018U\u000bU\u0000\u00160\u0000\tthescript\u0000\ttheScript\r\u0001g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002Z\u0000\u0000\r\u0001\u0007\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000SRQ\nS\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001R\u0000\u0000\u0002Q\u0000\u0000\r\u0001\b\u0000\u0001k\u0000\u0000\u0001K\u0001^\u0001l\u0002\u0001l\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003l\u0000\u0001\u0001K\u0001KP\u0001o\u0001p\u0001P\u0000\u0000\f\u0001o\u00009\u00003 If the domain could not be found then it sets the \u0000\u0002\u0000\u0000\u000e\u0001p\u0000\u0001\u0001q\u0011\u0001q\u0000f\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000i\u0000t\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0002\u0001n\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0001\u0001K\u0001KO\u0001t\u0001u\u0001O\u0000\u0000\f\u0001t\u00007\u00001 domain to Undetermined and archives those emails\u0000\u0002\u0000\u0000\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000b\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000t\u0000o\u0000 \u0000U\u0000n\u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000s\u0000 \u0000t\u0000h\u0000o\u0000s\u0000e\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000s\u0002\u0001s\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0001\u0001K\u0001KN\u0001y\u0001z\u0001N\u0000\u0000\f\u0001y\u00006\u00000 into one folder. But this could be used to exit\u0000\u0002\u0000\u0000\u000e\u0001z\u0000\u0001\u0001{\u0011\u0001{\u0000`\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000o\u0000n\u0000e\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000 \u0000B\u0000u\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000e\u0000x\u0000i\u0000t\u0002\u0001x\u0000\u0002\u0001|\u0001}\r\u0001|\u0000\u0003l\u0000\u0001\u0001K\u0001KM\u0001~\u0001\u0001M\u0000\u0000\f\u0001~\u00000\u0000* current loop and leave the messsage alone\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000l\u0000o\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000e\u0000a\u0000v\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000s\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000a\u0000l\u0000o\u0000n\u0000e\u0002\u0001}\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001K\u0001R\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001K\u0001N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000U\u0000n\u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000d\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0002\u0001\u0000\u0002\u0001K\r\u0001\u0000\u0002r\u0000\u0000\u0001S\u0001^\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0001Y\u0001]J\nJ\u0000\u0004\ntxdl\r\u0001\u0000\u00011\u0000\u0000\u0001V\u0001YI\nI\u0000\u0004\nascr\u0002K\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001_\u0001_HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001_\u0001_E\u0001\u0001\u0001E\u0000\u0000\f\u0001\u0000,\u0000& Set the archive location based on the\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000 \u0000S\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001_\u0001p\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0001_\u0001l\u0001DC\r\u0001\u0000\u0002b\u0000\u0000\u0001_\u0001l\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001_\u0001h\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001_\u0001dB\u000bB\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0001\u0000\u0001m\u0000\u0000\u0001d\u0001g\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0001h\u0001kA\u000bA\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0001D\u0000\u0000\u0001C\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000@\u000b@\u0000\u001a0\u0000\u000bmailboxname\u0000\u000bmailboxName\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001q\u0001q?\u0001\u0001\u0001?\u0000\u0000\f\u0001\u00004\u0000. Find the top level mailbox. If this does not\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\\\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000o\u0000p\u0000 \u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000.\u0000 \u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001q\u0001q>\u0001\u0001\u0001>\u0000\u0000\f\u0001\u00000\u0000* exist, we will get an error and bail out.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000w\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000b\u0000a\u0000i\u0000l\u0000 \u0000o\u0000u\u0000t\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001q\u0001\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001q\u0001{=\u0001\n=\u0000\u0004\nmbxp\r\u0001\u0000\u0001o\u0000\u0000\u0001u\u0001z<\u000b<\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u0001:\u0001\u0001\u0001:\u0000\u0000\f\u0001\u00009\u00003 Find the domain archive mailbox. If this does not\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000F\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000o\u0000m\u0000a\u0000i\u0000n\u0000 \u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000 \u0000m\u0000a\u0000i\u0000l\u0000b\u0000o\u0000x\u0000.\u0000 \u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00019\u0001\u0001\u00019\u0000\u0000\f\u0001\u0000\u001b\u0000\u0015 exist, we create it.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000w\u0000e\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u000187\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001\u00016\u0001\n6\u0000\u0004\nmbxp\r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u000154\r\u0001\u0000\u0002c\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00013\u000b3\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001\u0000\u0001m\u0000\u0000\u0001\u00012\n2\u0000\u0004\nTEXT\u00015\u0000\u0000\u00014\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00011\u000b1\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u00018\u0000\u0000\u00017\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0001,+\u0001\n,\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001+\u0000\u0000\u0006\u0001\u0000\u0003*\u0001\u0001\n*\u0000\u0004\nkocl\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001)\n)\u0000\u0004\nmbxp\u0006\u0001\u0000\u0003(\u0001'\n(\u0000\u0004\nprdt\r\u0001\u0000\u0001K\u0000\u0000\u0001\u0001\u0001\u0006\u0001\u0000\u0003&\u0001%\n&\u0000\u0004\npnam\r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u0001$#\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\"\u000b\"\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001!\u000b!\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u0001$\u0000\u0000\u0001#\u0000\u0000\u0006%\u0000\u0000\u0006'\u0000\u0000\u0002\u0001\u0000\u0002\u0001 \r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u001f\u001e\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001\u0001\u001d\u0001\n\u001d\u0000\u0004\nmbxp\r\u0001\u0000\u0003l\u0000\u0005\u0001\u0001\u0001\u001c\u001b\r\u0001\u0000\u0002c\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\u001a\u000b\u001a\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0019\n\u0019\u0000\u0004\nTEXT\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\u0018\u000b\u0018\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\u0002 \u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u0001\u0016\u0001\u0001\n\u0016\u0000\u0018.coremovenull\u0000\u0000\u0000\u0000\u0000obj \r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\u0015\u000b\u0015\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\u0006\u0001\u0000\u0003\u0014\u0001\u0013\n\u0014\u0000\u0004\ninsh\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\u0012\u000b\u0012\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\u0006\u0013\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0011\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001\u0010\u000f\u000e\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0002\u0011\u0000\u0000\u000b\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\r\u000b\r\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\u0002\u0000\u0000\u0002\u0001\f\r\u0001\u0000\u0003l\u0000\u0002\u0001\u0001\u000b\n\t\u0001\u000b\u0000\u0000\u0001\n\u0000\u0000\u0001\t\u0000\u0000\u0002\f\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\r\u0000\u0000\u0001o\u0000\u0000\u00003\u00008\b\u000b\b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\u0002\u0000\u0000\r\u0000n\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000emal\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001*\u0000\u0002\u0000\u0001\u0003Bob\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\u0000\u0000I\bMail.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002!\u0385\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u07f8\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0384\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000I\u0000\u0002\u0000\u001aBob:Applications:\u0000Mail.app\u0000\u000e\u0000\u0012\u0000\b\u0000M\u0000a\u0000i\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000B\u0000o\u0000b\u0000\u0012\u0000\u0015Applications\/Mail.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\u0006\u0005\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0004\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0001\u0000<\u0001\u0001\u0001\u0000\u0000\u0000\u0010\u0001\u0000\u0004\u000b\u0000\u00180\u0000\ndaystosave\u0000\ndaysToSave\u000b\u0000\u001e0\u0000\rarchivefolder\u0000\rarchiveFolder\u000b\u0000\u001c0\u0000\faccountnames\u0000\faccountNames\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u0003\u0000-\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0001\u000e\u0001\u0000\u0001\u0000\u0000O\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0000X\u0001\u0002\u0001\u0000\u0002\u0000`\u0001\u0002\u0001\u0000\u0002\u0000j\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u001e0\u0000\ranaccountname\u0000\ranAccountName\u000b\u0000 0\u0000\u000ecurrentmessage\u0000\u000ecurrentMessage\u0010\u0001\u00007\u0000^\u0001\u0001\u0001\u0000\u0001\u001b\u0001*\u00014\u0001O\u0001Y\u0001\u0001\u0001\u0001\u000b\u0000\u00180\u0000\nscriptpath\u0000\nscriptPath\n\u0000\u0004\nalis\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u000b\u0000\u00160\u0000\tthescript\u0000\ttheScript\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\n\u0000\u0004\ndays\u000b\u0000\u001c0\u0000\fearliestdate\u0000\fearliestDate\n\u0000\u0004\nmvwr\n\u0000\u0004\nmsbx\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u00180\u0000\nthemailbox\u0000\ntheMailbox\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nnull\n\u0000\u0004\nmssg\u000e\u0001\u0000\u0000\u0013\n\u0000\u0004\nisrd\n\u0000\u0004\nisjk\n\u0000\u0004\nisfl\n\u0000\u0004\ndrcv\u000b\u0000\u001a0\u0000\u000bthemessages\u0000\u000btheMessages\n\u0000\u0004\nsndr\n\u0000\u0004\nTEXT\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\u000b\u0000\u001e0\u0000\rolddelimiters\u0000\roldDelimiters\n\u0000\u0004\ncitm\u000b\u0000\u00160\u0000\tthedomain\u0000\ttheDomain\u000b\u0000*0\u0000\u0013leftstringfromright\u0000\u0013leftStringFromRight\u000b\u0000$0\u0000\u0010capitalizestring\u0000\u0010capitalizeString\u000b\u0000\u001a0\u0000\u000bmailboxname\u0000\u000bmailboxName\n\u0000\u0004\nmbxp\u000b\u0000\u001a0\u0000\u000brootmailbox\u0000\u000brootMailbox\u000b\u0000\u001e0\u0000\rdomainmailbox\u0000\rdomainMailbox\n\u0000\u0004\nprdt\n\u0000\u0004\npnam\u0003\u0000\u0004\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\ninsh\n\u0000\u0018.coremovenull\u0000\u0000\u0000\u0000\u0000obj \u0011\u0001EO*\/j\f\u0000\u0003EO\u0012\u0001*j\f\u0000\u0006b\u0000\u0001\u0000\u0000 \u001fEO*k\/,Ec\u0000\u0001\u0000\u0002O\u0017\u0001b\u0000\u0001\u0000\u0002[l\f\u0000\rkh\u001b\u0000\u0000\u0014\u0000\bEW\u0000\fX\u0000\u000f\u0000\u0010a\u0000\u0011EOa\u0000\u0011\u0001\u001d\u0001a\u0000\u0012-a\u0000\u0013[[[[a\u0000\u0014,\\Ze8\\[a\u0000\u0015,\\Zf8A\\[a\u0000\u0016,\\Zf8A\\[a\u0000\u0017,\\Z<A1E`\u0000\u0018O\u0017\u0001G_\u0000\u0018[l\f\u0000\rkh\u001b\u0000\u0001a\u0000\u0019,a\u0000\u001a&E`\u0000\u001bO_\u0000\u001ca\u0000\u001d,E`\u0000\u001eOa\u0000\u001fkv_\u0000\u001ca\u0000\u001d,FO\u0014\u0000p_\u0000\u001ba\u0000 l\/E`\u0000!Oa\u0000\"_\u0000\u001ca\u0000\u001d,FO_\u0000!a\u0000#\b\u001d\u0000\u0014_\u0000!a\u0000$l+\u0000%E`\u0000!Y\u0000\u0003hO\u0017\u0000&hZ_\u0000!a\u0000&\b\u001d\u0000\u0014_\u0000!a\u0000'l+\u0000%E`\u0000!Y\u0000\u0003\u0016[OYO_\u0000!k+\u0000(E`\u0000!W\u0000\u001aX\u0000\u000f\u0000\u0010a\u0000)E`\u0000!Oa\u0000*_\u0000\u001ca\u0000\u001d,FOb\u0000\u0001\u0000\u0001a\u0000+%_\u0000!%E`\u0000,O*a\u0000-b\u0000\u0001\u0000\u0001\/E`\u0000.O\u0014\u0000\u0017_\u0000.a\u0000-_\u0000!a\u0000\u001a&\/E`\u0000\/W\u0000:X\u0000\u000f\u0000\u0010*a\u0000-a\u00000a\u00001b\u0000\u0001\u0000\u0001a\u00002%_\u0000!%l\u000ea\u00003\f\u00004O_\u0000.a\u0000-_\u0000!a\u0000\u001a&\/E`\u0000\/Oa\u00005_\u0000\/l\f\u00006OP[OYOPY\u0000\u0003h[OYUU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6f67cb8ab537e8f582c58f3721beb9db6b676000","subject":"Tidied the shell script lines; added \u201c.000\u201d to each chapter marker time for compatibility","message":"Tidied the shell script lines; added \u201c.000\u201d to each chapter marker time for compatibility\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg, via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/chapters\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/chapters\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Clean up\n -- do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/chapters\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg, via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/chapters\" as text)\n set theCounter to (do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/chapters\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (\"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Clean up\n -- do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/chapters\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"80502f6fa6e8ec63e58187ebcc42b2cc7c8596d3","subject":"Do not create empty stations object","message":"Do not create empty stations object\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n--\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n--\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","old_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3dc01c3693fcf24756484ec6c9597e576c470a9a","subject":"Add deleteAllSlides","message":"Add deleteAllSlides\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non deleteAllSlides(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"718fb28d111e4e24583415957f2fc25f282bec8b","subject":"Used cleaner AppleScript with whose filter on application object","message":"Used cleaner AppleScript with whose filter on application object\n","repos":"shichao-an\/adium-sh,shichao-an\/adium-sh","old_file":"adiumsh\/adium-name.scpt","new_file":"adiumsh\/adium-name.scpt","new_contents":"#!\/usr\/bin\/osascript\n# Query contact name with display name (alias)\n\non run argv\n\ttell application \"Adium\"\n\t\tset service_name to item 1 of argv\n\t\tset account_name to item 2 of argv\n\t\tset display_name to item 3 of argv\n\t\tset users to get every contact of account account_name of service service_name\n\t\treturn (name of first contact whose display name is display_name) of account account_name of service service_name\n\tend tell\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n# Query contact name with display name (alias)\n\non run argv\n\ttell application \"Adium\"\n\t\tset service_name to item 1 of argv\n\t\tset account_name to item 2 of argv\n\t\tset display_name to item 3 of argv\n\t\tset users to get every contact of account account_name of service service_name\n\t\trepeat with user in users\n\t\t\tset dname to (display name of user)\n\t\t\tdo shell script \"echo \" & dname\n\t\t\tif (dname = display_name) then\n\t\t\t\treturn name of user\n\t\t\t\texit repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"6cc4799449b48e56e74541fca16965946e2a2b1b","subject":"compiled applescript","message":"compiled applescript\n","repos":"dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles","old_file":"applescript\/MaximizeTerminalHeight.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"applescript\/MaximizeTerminalHeight.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npbnd\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\ncwin\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\ndesk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0001E\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001j_\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000`D\u0019\u0000\u0000\u0000\u0001\u0000\f\u0001E\u0001E\u0001E\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u000f\u0000O\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u000f\u0000O\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002O\u0000\u0000\u0000\u0013\u0000N\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001k\u0000\u0000\u0000\u001a\u0000M\u0000\u0019\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u001a\u0000;\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0001e\u0000\u0000\u0000\u001a\u0000\u001e\u0000\u001f\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001e\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000,\u0000-\r\u0000,\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000.\n\u0000\u0004\ncobj\r\u0000.\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0004\r\u0000-\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000)\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002r\u0000\u0000\u0000C\u0000M\u00000\u00001\r\u00000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u00011\u0000\u0000\u0000I\u0000L\n\u0000\u0004\npbnd\u0002\u0000\u0000\r\u0000\u0018\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000:\n\u0000\u0004\ncwin\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000;\u000f\u0000;\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0001E\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001n >e\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?A\u0000\u0000\u0000\u0001\u0000\b\u0001E\u0001E\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000<\u0000=\u0000>\u0001\u0000\u0000\u0010\u0000<\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0001\u0000\u0000\u000e\u0000=\u0000\u0007\u0010\u0000?\u0000@\u0000A\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000O\u0000B\u0002\u0000B\u0000\u0002\u0000\u0005\u0000C\u0002\u0000C\u0000\u0002\u0000\u0013\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000@\u0000\u0000\u0010\u0000A\u0000\r\u0000\u0010\u0000;\n\u0000\u0004\ndesk\n\u0000\u0004\ncwin\n\u0000\u0004\npbnd\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\n\u0000\u0004\ncobj\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0011\u0000P\u0012\u0000\u000b*,,,EUO\u0012\u0000=*k\/\u0012\u00005*,EE[k\/EZ[l\/EZ[m\/EZ[\/EZO\/EOkv*,FUU\u000f\u000e\u0000>\u0000\u0002\u0004\u0000D\u0003\u0000\u0004\u000e\u0000D\u0000\u0004\u0000\u0003\u0000\u0000\u0003\u0000\u0000\u0003\u0005\u0003\u0003\u0003\u0000\u0000\u0003\u0000\u001a\u0003\u0005\u0003\u0003}\u0003\u0003\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npbnd\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\ncwin\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\ndesk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0000\fh\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000em\u0012k\"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0012\u0352\u0000\u0000\u0000\u0001\u0000\f\u0000\fh\u0000\fb\u0000\fa\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u000f\u0000O\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u000f\u0000O\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002O\u0000\u0000\u0000\u0013\u0000N\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001k\u0000\u0000\u0000\u001a\u0000M\u0000\u0019\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u001a\u0000;\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0001e\u0000\u0000\u0000\u001a\u0000\u001e\u0000\u001f\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001e\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000,\u0000-\r\u0000,\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000.\n\u0000\u0004\ncobj\r\u0000.\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0004\r\u0000-\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000)\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002r\u0000\u0000\u0000C\u0000M\u00000\u00001\r\u00000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u00011\u0000\u0000\u0000I\u0000L\n\u0000\u0004\npbnd\u0002\u0000\u0000\r\u0000\u0018\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000:\n\u0000\u0004\ncwin\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000;\u000f\u0000;\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0000\f\u0346\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0007g\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\b\u0000\f\u0346\u0000\f\u0345\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000<\u0000=\u0000>\u0001\u0000\u0000\u0010\u0000<\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0001\u0000\u0000\u000e\u0000=\u0000\u0007\u0010\u0000?\u0000@\u0000A\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000O\u0000B\u0002\u0000B\u0000\u0002\u0000\u0005\u0000C\u0002\u0000C\u0000\u0002\u0000\u0013\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000@\u0000\u0000\u0010\u0000A\u0000\r\u0000\u0010\u0000;\n\u0000\u0004\ndesk\n\u0000\u0004\ncwin\n\u0000\u0004\npbnd\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\n\u0000\u0004\ncobj\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0011\u0000P\u0012\u0000\u000b*,,,EUO\u0012\u0000=*k\/\u0012\u00005*,EE[k\/EZ[l\/EZ[m\/EZ[\/EZO\/EOkv*,FUU\u000f\u000e\u0000>\u0000\u0002\u0004\u0000D\u0003\u0000\u0004\u000e\u0000D\u0000\u0004\u0000\u0003`\u0003\u0000\u0000\u0003\n\u0000\u0003\u0006'\u0003\u0000%\u0003\u0000\u0016\u0003\u0003\u0003\u0005\u0003\u0006'\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a081db731a3f568812e719200162fc6ed3f87c26","subject":"add killall at uninstaller.applescript","message":"add killall at uninstaller.applescript\n","repos":"tekezo\/NoEjectDelay,tekezo\/NoEjectDelay,tekezo\/NoEjectDelay","old_file":"files\/extra\/uninstaller.applescript","new_file":"files\/extra\/uninstaller.applescript","new_contents":"try\n display dialog \"Are you sure you want to remove NoEjectDelay?\" buttons {\"Cancel\", \"OK\"}\n if the button returned of the result is \"OK\" then\n try\n do shell script \"test -f '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\"\n try\n do shell script \"sh '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\" with administrator privileges\n display alert \"NoEjectDelay has been uninstalled. Please restart OS X.\"\n do shell script \"killall 'NoEjectDelay Utility'\"\n on error\n display alert \"Failed to uninstall NoEjectDelay.\"\n end try\n on error\n display alert \"NoEjectDelay is not installed.\"\n end try\n end if\non error\n display alert \"NoEjectDelay uninstallation was canceled.\"\nend try\n","old_contents":"try\n display dialog \"Are you sure you want to remove NoEjectDelay?\" buttons {\"Cancel\", \"OK\"}\n if the button returned of the result is \"OK\" then\n try\n do shell script \"test -f '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\"\n try\n do shell script \"sh '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\" with administrator privileges\n display alert \"NoEjectDelay has been uninstalled. Please restart OS X.\"\n on error\n display alert \"Failed to uninstall NoEjectDelay.\"\n end try\n on error\n display alert \"NoEjectDelay is not installed.\"\n end try\n end if\non error\n display alert \"NoEjectDelay uninstallation was canceled.\"\nend try\n","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"624760deb2429e8880fa4b3ffbee4789c066c2a5","subject":"Implement isMavericksOrLater on the updater.","message":"Implement isMavericksOrLater on the updater.\n","repos":"MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian","old_file":"Opener\/AppDelegate.applescript","new_file":"Opener\/AppDelegate.applescript","new_contents":"--\n-- AppDelegate.applescript\n-- PerianOpener\n--\n-- Created by C.W. Betts on 9\/25\/13.\n-- Copyright (c) 2013 Perian Team. All rights reserved.\n--\n\nscript AppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\ton isMavericksOrLater()\n\t\tset osver to system version of (system info)\n\t\t(* skip the first three characters: We don't run on pre-OS X systems,\n\t\t and we won't reach Mac OS version 100 any time soon. *)\n\t\tset osList to characters 4 thru 6 of osver\n\t\t(* If we get a decimal as the last item, the second version value is greater than 10.\n\t\t We're looking for Mac versions greater than nine. *)\n\t\tif (osList's item 3) is equal to \".\" then\n\t\t\treturn yes\n\t\t\telse\n\t\t\tset preTen to osList's as text as real\n\t\t\tif preTen is greater than or equal to 9.0 then\n\t\t\t\treturn yes\n\t\t\t\telse\n\t\t\t\treturn no\n\t\t\tend if\n\t\tend if\n\tend isMavericksOrLater\n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationDidFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\t\ttell current application's NSTimer to set theTimer to scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(10, me, \"timerFired:\", missing value, false)\n\tend applicationDidFinishLaunching_\n\t\n\ton timerFired_(timer)\n\t\tquit\n\tend timerFired_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\n\ton application_openFiles_(appl, theFiles)\n\t\t\n\t\tset mavericks to isMavericksOrLater()\n\t\tif mavericks is true\n\t\t(* TODO: check for QuickTime 7, and point the user to the download location if they don't *)\n\t\ttell application id \"com.apple.quicktimeplayer\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\n\t\telse\n\t\t\n\t\ttell application \"QuickTime Player\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\t\tend\n\t\tquit\n\t\t\n\t\treturn yes\n\tend application_openFiles_\n\t\nend script\n","old_contents":"--\n-- AppDelegate.applescript\n-- PerianOpener\n--\n-- Created by C.W. Betts on 9\/25\/13.\n-- Copyright (c) 2013 Perian Team. All rights reserved.\n--\n\nscript AppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\ton isMavericksOrLater()\n\t\t-- TODO: Implement\n\t\treturn yes\n\tend isMavericksOrLater\n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationDidFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\t\ttell current application's NSTimer to set theTimer to scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(10, me, \"timerFired:\", missing value, false)\n\tend applicationDidFinishLaunching_\n\t\n\ton timerFired_(timer)\n\t\tquit\n\tend timerFired_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\n\ton application_openFiles_(appl, theFiles)\n\t\t\n\t\tset mavericks to isMavericksOrLater()\n\t\tif mavericks is true\n\t\ttell application \"com.apple.quicktimeplayer\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\n\t\telse\n\t\t\n\t\ttell application \"QuickTime Player\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\t\tend\n\t\tquit\n\t\t\n\t\treturn yes\n\tend application_openFiles_\n\t\nend script\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"6d11fe3774ad16f29b5f099cdb2dc82ff33db66e","subject":"Work around an issue with iTunes 9 that causes it to delay a connection to remote speakers","message":"Work around an issue with iTunes 9 that causes it to delay a\nconnection to remote speakers\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n -- Given a list of buttons, find the remote speakers button\n -- by finding the first button with a name that isn't in a \n -- rejection list.\n on findCorrectButton (in_buttons)\n set buttons_to_skip to {\"Burn Disc\"}\n\n repeat with a_button in in_buttons\n try -- some buttons don't have names\n set the_name to name of a_button\n if buttons_to_skip does not contain {the_name} then\n return the_name\n end if\n end try\n end repeat\n\n return 16 -- default response\n end findCorrectButton\nend script\n\n(*\n Tell iTunes to use the \"Mobile\" set of remote speakers.\n*)\ntell application \"System Events\"\n tell process \"iTunes\"\n set the_buttons to (get buttons of window 1)\n set the_speaker_button to (remoteSpeakerFinder's findCorrectButton(the_buttons))\n\n -- Switch to the speakers in my bedroom\n set frontmost to true\n click button the_speaker_button of window 1\n key code 115 -- Home Key (first speaker in list)\n key code 125 -- Down Arrow\n key code 125 -- Down Arrow\n key code 36 -- Return Key\n\n -- Wait for iTunes to connect to the speakers\n delay 5\n end tell\nend tell\n","old_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n -- Given a list of buttons, find the remote speakers button\n -- by finding the first button with a name that isn't in a \n -- rejection list.\n on findCorrectButton (in_buttons)\n set buttons_to_skip to {\"Burn Disc\"}\n\n repeat with a_button in in_buttons\n try -- some buttons don't have names\n set the_name to name of a_button\n if buttons_to_skip does not contain {the_name} then\n return the_name\n end if\n end try\n end repeat\n\n return 16 -- default response\n end findCorrectButton\nend script\n\n(*\n Tell iTunes to use the \"Mobile\" set of remote speakers.\n*)\ntell application \"System Events\"\n tell process \"iTunes\"\n set the_buttons to (get buttons of window 1)\n set the_speaker_button to (remoteSpeakerFinder's findCorrectButton(the_buttons))\n\n -- Switch to the speakers in my bedroom\n set frontmost to true\n click button the_speaker_button of window 1\n key code 115 -- Home Key (first speaker in list)\n key code 125 -- Down Arrow\n key code 125 -- Down Arrow\n key code 36 -- Return Key\n end tell\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4fa706df5e87b9dd4df0ea572cd7c6914b0b546d","subject":"JasonLeyba: Make reinstall.scpt system language independent.","message":"JasonLeyba: Make reinstall.scpt system language independent.\n\nr16964\n","repos":"gurayinan\/selenium,kalyanjvn1\/selenium,amar-sharma\/selenium,jerome-jacob\/selenium,knorrium\/selenium,BlackSmith\/selenium,isaksky\/selenium,BlackSmith\/selenium,compstak\/selenium,lrowe\/selenium,Herst\/selenium,dibagga\/selenium,lilredindy\/selenium,Tom-Trumper\/selenium,clavery\/selenium,meksh\/selenium,DrMarcII\/selenium,oddui\/selenium,denis-vilyuzhanin\/selenium-fastview,carlosroh\/selenium,skurochkin\/selenium,slongwang\/selenium,tbeadle\/selenium,tkurnosova\/selenium,mojwang\/selenium,customcommander\/selenium,mach6\/selenium,Dude-X\/selenium,gotcha\/selenium,DrMarcII\/selenium,Dude-X\/selenium,carsonmcdonald\/selenium,SevInf\/IEDriver,o-schneider\/selenium,thanhpete\/selenium,minhthuanit\/selenium,joshbruning\/selenium,temyers\/selenium,meksh\/selenium,Dude-X\/selenium,chrsmithdemos\/selenium,lilredindy\/selenium,i17c\/selenium,xsyntrex\/selenium,pulkitsinghal\/selenium,asashour\/selenium,orange-tv-blagnac\/selenium,RamaraoDonta\/ramarao-clone,slongwang\/selenium,jabbrwcky\/selenium,sevaseva\/selenium,chrsmithdemos\/selenium,gemini-testing\/selenium,orange-tv-blagnac\/selenium,alb-i986\/selenium,gotcha\/selenium,Appdynamics\/selenium,JosephCastro\/selenium,markodolancic\/selenium,valfirst\/selenium,gorlemik\/selenium,titusfortner\/selenium,rovner\/selenium,Tom-Trumper\/selenium,joshuaduffy\/selenium,joshmgrant\/selenium,gregerrag\/selenium,yukaReal\/selenium,lummyare\/lummyare-test,denis-vilyuzhanin\/selenium-fastview,asashour\/selenium,TheBlackTuxCorp\/selenium,krosenvold\/selenium,GorK-ChO\/selenium,quoideneuf\/selenium,freynaud\/selenium,dbo\/selenium,markodolancic\/selenium,xsyntrex\/selenium,onedox\/selenium,uchida\/selenium,livioc\/selenium,bmannix\/selenium,lummyare\/lummyare-test,joshuaduffy\/selenium,sebady\/selenium,SevInf\/IEDriver,blackboarddd\/selenium,temyers\/selenium,houchj\/selenium,telefonicaid\/selenium,dandv\/selenium,knorrium\/selenium,clavery\/selenium,zenefits\/selenium,sevaseva\/selenium,Herst\/selenium,dibagga\/selenium,krosenvold\/selenium,mojwang\/selenium,JosephCastro\/selenium,kalyanjvn1\/selenium,arunsingh\/selenium,dbo\/selenium,tkurnosova\/selenium,GorK-ChO\/selenium,5hawnknight\/selenium,sag-enorman\/selenium,gotcha\/selenium,denis-vilyuzhanin\/selenium-fastview,yukaReal\/selenium,MeetMe\/selenium,SouWilliams\/selenium,jsakamoto\/selenium,MeetMe\/selenium,blueyed\/selenium,petruc\/selenium,blackboarddd\/selenium,GorK-ChO\/selenium,wambat\/selenium,chrsmithdemos\/selenium,davehunt\/selenium,customcommander\/selenium,DrMarcII\/selenium,carsonmcdonald\/selenium,sankha93\/selenium,chrsmithdemos\/selenium,lilredindy\/selenium,soundcloud\/selenium,tkurnosova\/selenium,juangj\/selenium,lilredindy\/selenium,jerome-jacob\/selenium,livioc\/selenium,vinay-qa\/vinayit-android-server-apk,sebady\/selenium,rovner\/selenium,oddui\/selenium,freynaud\/selenium,tkurnosova\/selenium,AutomatedTester\/selenium,gabrielsimas\/selenium,alb-i986\/selenium,joshmgrant\/selenium,krosenvold\/selenium,pulkitsinghal\/selenium,lilredindy\/selenium,alexec\/selenium,Herst\/selenium,chrisblock\/selenium,jsakamoto\/selenium,skurochkin\/selenium,isaksky\/selenium,mestihudson\/selenium,vinay-qa\/vinayit-android-server-apk,thanhpete\/selenium,misttechnologies\/selenium,TheBlackTuxCorp\/selenium,joshmgrant\/selenium,joshbruning\/selenium,misttechnologies\/selenium,gotcha\/selenium,amar-sharma\/selenium,DrMarcII\/selenium,joshuaduffy\/selenium,zenefits\/selenium,kalyanjvn1\/selenium,dcjohnson1989\/selenium,jerome-jacob\/selenium,Ardesco\/selenium,gurayinan\/selenium,joshuaduffy\/selenium,Jarob22\/selenium,quoideneuf\/selenium,bmannix\/selenium,rrussell39\/selenium,stupidnetizen\/selenium,zenefits\/selenium,p0deje\/selenium,bartolkaruza\/selenium,mach6\/selenium,lukeis\/selenium,lukeis\/selenium,anshumanchatterji\/selenium,compstak\/selenium,s2oBCN\/selenium,sankha93\/selenium,xsyntrex\/selenium,meksh\/selenium,uchida\/selenium,bmannix\/selenium,lukeis\/selenium,aluedeke\/chromedriver,Sravyaksr\/selenium,blueyed\/selenium,clavery\/selenium,Ardesco\/selenium,xsyntrex\/selenium,wambat\/selenium,HtmlUnit\/selenium,chrsmithdemos\/selenium,kalyanjvn1\/selenium,Herst\/selenium,onedox\/selenium,markodolancic\/selenium,alexec\/selenium,dkentw\/selenium,jerome-jacob\/selenium,amikey\/selenium,lmtierney\/selenium,jknguyen\/josephknguyen-selenium,lummyare\/lummyare-test,knorrium\/selenium,eric-stanley\/selenium,joshbruning\/selenium,Tom-Trumper\/selenium,orange-tv-blagnac\/selenium,amikey\/selenium,amar-sharma\/selenium,amar-sharma\/selenium,lummyare\/lummyare-test,tarlabs\/selenium,customcommander\/selenium,titusfortner\/selenium,arunsingh\/selenium,lmtierney\/selenium,rovner\/selenium,mach6\/selenium,joshuaduffy\/selenium,vinay-qa\/vinayit-android-server-apk,valfirst\/selenium,chrisblock\/selenium,RamaraoDonta\/ramarao-clone,dimacus\/selenium,lilredindy\/selenium,GorK-ChO\/selenium,jsakamoto\/selenium,anshumanchatterji\/selenium,blackboarddd\/selenium,DrMarcII\/selenium,slongwang\/selenium,twalpole\/selenium,misttechnologies\/selenium,bayandin\/selenium,aluedeke\/chromedriver,yukaReal\/selenium,mestihudson\/selenium,JosephCastro\/selenium,Jarob22\/selenium,jknguyen\/josephknguyen-selenium,lummyare\/lummyare-test,sevaseva\/selenium,juangj\/selenium,MCGallaspy\/selenium,uchida\/selenium,orange-tv-blagnac\/selenium,sevaseva\/selenium,gregerrag\/selenium,xmhubj\/selenium,TheBlackTuxCorp\/selenium,pulkitsinghal\/selenium,s2oBCN\/selenium,orange-tv-blagnac\/selenium,p0deje\/selenium,gorlemik\/selenium,xsyntrex\/selenium,alexec\/selenium,gregerrag\/selenium,wambat\/selenium,sankha93\/selenium,doungni\/selenium,denis-vilyuzhanin\/selenium-fastview,juangj\/selenium,tkurnosova\/selenium,RamaraoDonta\/ramarao-clone,Tom-Trumper\/selenium,SevInf\/IEDriver,twalpole\/selenium,dandv\/selenium,dandv\/selenium,TikhomirovSergey\/selenium,thanhpete\/selenium,telefonicaid\/selenium,tkurnosova\/selenium,blueyed\/selenium,gurayinan\/selenium,onedox\/selenium,JosephCastro\/selenium,jabbrwcky\/selenium,freynaud\/selenium,jabbrwcky\/selenium,asolntsev\/selenium,markodolancic\/selenium,rovner\/selenium,xmhubj\/selenium,freynaud\/selenium,compstak\/selenium,actmd\/selenium,sankha93\/selenium,juangj\/selenium,isaksky\/selenium,Jarob22\/selenium,valfirst\/selenium,knorrium\/selenium,lmtierney\/selenium,tarlabs\/selenium,AutomatedTester\/selenium,i17c\/selenium,thanhpete\/selenium,sebady\/selenium,davehunt\/selenium,5hawnknight\/selenium,vveliev\/selenium,tbeadle\/selenium,sankha93\/selenium,carlosroh\/selenium,JosephCastro\/selenium,isaksky\/selenium,carsonmcdonald\/selenium,krmahadevan\/selenium,lummyare\/lummyare-test,lummyare\/lummyare-lummy,aluedeke\/chromedriver,actmd\/selenium,Herst\/selenium,zenefits\/selenium,orange-tv-blagnac\/selenium,joshmgrant\/selenium,lummyare\/lummyare-lummy,dibagga\/selenium,o-schneider\/selenium,mestihudson\/selenium,bmannix\/selenium,titusfortner\/selenium,jerome-jacob\/selenium,bayandin\/selenium,Sravyaksr\/selenium,alb-i986\/selenium,jsakamoto\/selenium,Herst\/selenium,meksh\/selenium,orange-tv-blagnac\/selenium,Ardesco\/selenium,lukeis\/selenium,blackboarddd\/selenium,bartolkaruza\/selenium,joshmgrant\/selenium,stupidnetizen\/selenium,5hawnknight\/selenium,wambat\/selenium,minhthuanit\/selenium,Appdynamics\/selenium,zenefits\/selenium,tarlabs\/selenium,JosephCastro\/selenium,sri85\/selenium,MCGallaspy\/selenium,gotcha\/selenium,chrisblock\/selenium,onedox\/selenium,vveliev\/selenium,xmhubj\/selenium,zenefits\/selenium,rrussell39\/selenium,clavery\/selenium,lrowe\/selenium,gorlemik\/selenium,sebady\/selenium,amar-sharma\/selenium,Dude-X\/selenium,blackboarddd\/selenium,quoideneuf\/selenium,joshbruning\/selenium,twalpole\/selenium,vinay-qa\/vinayit-android-server-apk,misttechnologies\/selenium,rplevka\/selenium,isaksky\/selenium,jerome-jacob\/selenium,HtmlUnit\/selenium,denis-vilyuzhanin\/selenium-fastview,dibagga\/selenium,onedox\/selenium,p0deje\/selenium,jknguyen\/josephknguyen-selenium,mojwang\/selenium,MeetMe\/selenium,kalyanjvn1\/selenium,temyers\/selenium,skurochkin\/selenium,HtmlUnit\/selenium,dcjohnson1989\/selenium,rrussell39\/selenium,valfirst\/selenium,sag-enorman\/selenium,SeleniumHQ\/selenium,compstak\/selenium,jabbrwcky\/selenium,joshmgrant\/selenium,TheBlackTuxCorp\/selenium,blueyed\/selenium,clavery\/selenium,gurayinan\/selenium,SeleniumHQ\/selenium,amikey\/selenium,livioc\/selenium,denis-vilyuzhanin\/selenium-fastview,dcjohnson1989\/selenium,lilredindy\/selenium,thanhpete\/selenium,juangj\/selenium,mojwang\/selenium,Appdynamics\/selenium,temyers\/selenium,dibagga\/selenium,temyers\/selenium,oddui\/selenium,soundcloud\/selenium,arunsingh\/selenium,i17c\/selenium,dandv\/selenium,AutomatedTester\/selenium,asashour\/selenium,dimacus\/selenium,Sravyaksr\/selenium,xmhubj\/selenium,Sravyaksr\/selenium,mestihudson\/selenium,alexec\/selenium,gregerrag\/selenium,alb-i986\/selenium,TikhomirovSergey\/selenium,lukeis\/selenium,amikey\/selenium,rrussell39\/selenium,telefonicaid\/selenium,gemini-testing\/selenium,lukeis\/selenium,bmannix\/selenium,bartolkaruza\/selenium,stupidnetizen\/selenium,carsonmcdonald\/selenium,jknguyen\/josephknguyen-selenium,krmahadevan\/selenium,Jarob22\/selenium,twalpole\/selenium,orange-tv-blagnac\/selenium,carsonmcdonald\/selenium,GorK-ChO\/selenium,TikhomirovSergey\/selenium,krosenvold\/selenium,vveliev\/selenium,customcommander\/selenium,misttechnologies\/selenium,SouWilliams\/selenium,SevInf\/IEDriver,pulkitsinghal\/selenium,lummyare\/lummyare-lummy,Dude-X\/selenium,gabrielsimas\/selenium,manuelpirez\/selenium,DrMarcII\/selenium,eric-stanley\/selenium,dimacus\/selenium,alb-i986\/selenium,jabbrwcky\/selenium,gemini-testing\/selenium,davehunt\/selenium,yukaReal\/selenium,rrussell39\/selenium,soundcloud\/selenium,quoideneuf\/selenium,mach6\/selenium,alb-i986\/selenium,misttechnologies\/selenium,markodolancic\/selenium,houchj\/selenium,slongwang\/selenium,5hawnknight\/selenium,Appdynamics\/selenium,Herst\/selenium,petruc\/selenium,jsakamoto\/selenium,dkentw\/selenium,doungni\/selenium,alexec\/selenium,krmahadevan\/selenium,lrowe\/selenium,compstak\/selenium,i17c\/selenium,sevaseva\/selenium,manuelpirez\/selenium,dkentw\/selenium,oddui\/selenium,MCGallaspy\/selenium,titusfortner\/selenium,joshbruning\/selenium,aluedeke\/chromedriver,TheBlackTuxCorp\/selenium,vinay-qa\/vinayit-android-server-apk,houchj\/selenium,actmd\/selenium,bartolkaruza\/selenium,i17c\/selenium,misttechnologies\/selenium,freynaud\/selenium,anshumanchatterji\/selenium,asolntsev\/selenium,TikhomirovSergey\/selenium,Sravyaksr\/selenium,o-schneider\/selenium,mestihudson\/selenium,yukaReal\/selenium,eric-stanley\/selenium,chrisblock\/selenium,telefonicaid\/selenium,minhthuanit\/selenium,AutomatedTester\/selenium,xmhubj\/selenium,krmahadevan\/selenium,customcommander\/selenium,bayandin\/selenium,actmd\/selenium,rplevka\/selenium,dimacus\/selenium,lummyare\/lummyare-lummy,Herst\/selenium,gurayinan\/selenium,bartolkaruza\/selenium,petruc\/selenium,o-schneider\/selenium,onedox\/selenium,uchida\/selenium,MeetMe\/selenium,p0deje\/selenium,BlackSmith\/selenium,pulkitsinghal\/selenium,eric-stanley\/selenium,gorlemik\/selenium,actmd\/selenium,sag-enorman\/selenium,lmtierney\/selenium,markodolancic\/selenium,petruc\/selenium,joshuaduffy\/selenium,gurayinan\/selenium,quoideneuf\/selenium,davehunt\/selenium,temyers\/selenium,temyers\/selenium,i17c\/selenium,oddui\/selenium,Appdynamics\/selenium,blueyed\/selenium,krmahadevan\/selenium,GorK-ChO\/selenium,lummyare\/lummyare-test,o-schneider\/selenium,meksh\/selenium,rrussell39\/selenium,titusfortner\/selenium,amar-sharma\/selenium,BlackSmith\/selenium,sag-enorman\/selenium,valfirst\/selenium,actmd\/selenium,JosephCastro\/selenium,TikhomirovSergey\/selenium,houchj\/selenium,minhthuanit\/selenium,HtmlUnit\/selenium,freynaud\/selenium,s2oBCN\/selenium,lmtierney\/selenium,skurochkin\/selenium,lukeis\/selenium,dcjohnson1989\/selenium,jabbrwcky\/selenium,quoideneuf\/selenium,vveliev\/selenium,asolntsev\/selenium,actmd\/selenium,chrisblock\/selenium,MCGallaspy\/selenium,davehunt\/selenium,actmd\/selenium,houchj\/selenium,dbo\/selenium,amar-sharma\/selenium,skurochkin\/selenium,sag-enorman\/selenium,denis-vilyuzhanin\/selenium-fastview,SouWilliams\/selenium,SevInf\/IEDriver,dkentw\/selenium,meksh\/selenium,carlosroh\/selenium,thanhpete\/selenium,xsyntrex\/selenium,MeetMe\/selenium,joshbruning\/selenium,titusfortner\/selenium,clavery\/selenium,slongwang\/selenium,bayandin\/selenium,valfirst\/selenium,dbo\/selenium,krmahadevan\/selenium,blackboarddd\/selenium,sri85\/selenium,dcjohnson1989\/selenium,rrussell39\/selenium,yukaReal\/selenium,compstak\/selenium,s2oBCN\/selenium,titusfortner\/selenium,dbo\/selenium,dimacus\/selenium,rrussell39\/selenium,RamaraoDonta\/ramarao-clone,sevaseva\/selenium,TheBlackTuxCorp\/selenium,clavery\/selenium,denis-vilyuzhanin\/selenium-fastview,dandv\/selenium,gemini-testing\/selenium,wambat\/selenium,JosephCastro\/selenium,kalyanjvn1\/selenium,clavery\/selenium,tbeadle\/selenium,JosephCastro\/selenium,jknguyen\/josephknguyen-selenium,rplevka\/selenium,sebady\/selenium,compstak\/selenium,slongwang\/selenium,gregerrag\/selenium,AutomatedTester\/selenium,markodolancic\/selenium,chrsmithdemos\/selenium,krmahadevan\/selenium,sankha93\/selenium,Appdynamics\/selenium,vveliev\/selenium,mach6\/selenium,bmannix\/selenium,joshmgrant\/selenium,jabbrwcky\/selenium,o-schneider\/selenium,jabbrwcky\/selenium,dimacus\/selenium,Sravyaksr\/selenium,thanhpete\/selenium,s2oBCN\/selenium,sag-enorman\/selenium,stupidnetizen\/selenium,arunsingh\/selenium,manuelpirez\/selenium,mach6\/selenium,carlosroh\/selenium,dibagga\/selenium,stupidnetizen\/selenium,sankha93\/selenium,manuelpirez\/selenium,gemini-testing\/selenium,joshmgrant\/selenium,joshmgrant\/selenium,i17c\/selenium,anshumanchatterji\/selenium,carlosroh\/selenium,joshuaduffy\/selenium,RamaraoDonta\/ramarao-clone,freynaud\/selenium,DrMarcII\/selenium,rplevka\/selenium,5hawnknight\/selenium,yukaReal\/selenium,rovner\/selenium,eric-stanley\/selenium,bartolkaruza\/selenium,lummyare\/lummyare-test,HtmlUnit\/selenium,sri85\/selenium,sebady\/selenium,gurayinan\/selenium,jsarenik\/jajomojo-selenium,mach6\/selenium,jabbrwcky\/selenium,asashour\/selenium,s2oBCN\/selenium,rovner\/selenium,sebady\/selenium,valfirst\/selenium,bayandin\/selenium,Jarob22\/selenium,titusfortner\/selenium,livioc\/selenium,TikhomirovSergey\/selenium,twalpole\/selenium,carlosroh\/selenium,dkentw\/selenium,actmd\/selenium,amikey\/selenium,lummyare\/lummyare-lummy,arunsingh\/selenium,gorlemik\/selenium,dkentw\/selenium,anshumanchatterji\/selenium,skurochkin\/selenium,houchj\/selenium,jsarenik\/jajomojo-selenium,rplevka\/selenium,telefonicaid\/selenium,tkurnosova\/selenium,dandv\/selenium,sevaseva\/selenium,p0deje\/selenium,HtmlUnit\/selenium,jsarenik\/jajomojo-selenium,jsakamoto\/selenium,mach6\/selenium,MeetMe\/selenium,Dude-X\/selenium,sevaseva\/selenium,skurochkin\/selenium,dimacus\/selenium,manuelpirez\/selenium,arunsingh\/selenium,vveliev\/selenium,customcommander\/selenium,mojwang\/selenium,Jarob22\/selenium,zenefits\/selenium,orange-tv-blagnac\/selenium,jknguyen\/josephknguyen-selenium,compstak\/selenium,dbo\/selenium,asolntsev\/selenium,petruc\/selenium,tbeadle\/selenium,blueyed\/selenium,blueyed\/selenium,jsarenik\/jajomojo-selenium,gorlemik\/selenium,MeetMe\/selenium,asolntsev\/selenium,isaksky\/selenium,minhthuanit\/selenium,krosenvold\/selenium,dimacus\/selenium,lummyare\/lummyare-lummy,MCGallaspy\/selenium,SeleniumHQ\/selenium,sag-enorman\/selenium,joshuaduffy\/selenium,dkentw\/selenium,5hawnknight\/selenium,AutomatedTester\/selenium,Jarob22\/selenium,mojwang\/selenium,sri85\/selenium,BlackSmith\/selenium,p0deje\/selenium,customcommander\/selenium,petruc\/selenium,lilredindy\/selenium,amikey\/selenium,rovner\/selenium,knorrium\/selenium,Ardesco\/selenium,MCGallaspy\/selenium,oddui\/selenium,clavery\/selenium,houchj\/selenium,carsonmcdonald\/selenium,BlackSmith\/selenium,lrowe\/selenium,dimacus\/selenium,s2oBCN\/selenium,lmtierney\/selenium,bmannix\/selenium,sri85\/selenium,SeleniumHQ\/selenium,SeleniumHQ\/selenium,SeleniumHQ\/selenium,valfirst\/selenium,dibagga\/selenium,jsarenik\/jajomojo-selenium,juangj\/selenium,gregerrag\/selenium,Tom-Trumper\/selenium,kalyanjvn1\/selenium,BlackSmith\/selenium,xsyntrex\/selenium,rplevka\/selenium,tarlabs\/selenium,vinay-qa\/vinayit-android-server-apk,mestihudson\/selenium,lilredindy\/selenium,lmtierney\/selenium,vveliev\/selenium,blueyed\/selenium,AutomatedTester\/selenium,amikey\/selenium,jsakamoto\/selenium,asashour\/selenium,Tom-Trumper\/selenium,TikhomirovSergey\/selenium,o-schneider\/selenium,dcjohnson1989\/selenium,joshbruning\/selenium,SouWilliams\/selenium,SouWilliams\/selenium,HtmlUnit\/selenium,RamaraoDonta\/ramarao-clone,lrowe\/selenium,livioc\/selenium,dbo\/selenium,HtmlUnit\/selenium,p0deje\/selenium,tarlabs\/selenium,gorlemik\/selenium,SouWilliams\/selenium,s2oBCN\/selenium,SeleniumHQ\/selenium,houchj\/selenium,isaksky\/selenium,customcommander\/selenium,SevInf\/IEDriver,GorK-ChO\/selenium,dcjohnson1989\/selenium,knorrium\/selenium,carsonmcdonald\/selenium,tarlabs\/selenium,s2oBCN\/selenium,blackboarddd\/selenium,dibagga\/selenium,SeleniumHQ\/selenium,tarlabs\/selenium,gabrielsimas\/selenium,amikey\/selenium,Dude-X\/selenium,gregerrag\/selenium,minhthuanit\/selenium,MCGallaspy\/selenium,tarlabs\/selenium,onedox\/selenium,telefonicaid\/selenium,chrisblock\/selenium,SouWilliams\/selenium,RamaraoDonta\/ramarao-clone,Ardesco\/selenium,lukeis\/selenium,slongwang\/selenium,vinay-qa\/vinayit-android-server-apk,chrsmithdemos\/selenium,krmahadevan\/selenium,titusfortner\/selenium,gurayinan\/selenium,titusfortner\/selenium,gorlemik\/selenium,vveliev\/selenium,soundcloud\/selenium,aluedeke\/chromedriver,twalpole\/selenium,tbeadle\/selenium,Sravyaksr\/selenium,o-schneider\/selenium,petruc\/selenium,SevInf\/IEDriver,manuelpirez\/selenium,slongwang\/selenium,sebady\/selenium,livioc\/selenium,jsarenik\/jajomojo-selenium,knorrium\/selenium,BlackSmith\/selenium,Ardesco\/selenium,doungni\/selenium,chrsmithdemos\/selenium,gemini-testing\/selenium,twalpole\/selenium,chrisblock\/selenium,stupidnetizen\/selenium,denis-vilyuzhanin\/selenium-fastview,krosenvold\/selenium,sri85\/selenium,carsonmcdonald\/selenium,GorK-ChO\/selenium,joshuaduffy\/selenium,xsyntrex\/selenium,davehunt\/selenium,gorlemik\/selenium,sebady\/selenium,gabrielsimas\/selenium,lukeis\/selenium,krosenvold\/selenium,gabrielsimas\/selenium,lrowe\/selenium,uchida\/selenium,jsarenik\/jajomojo-selenium,5hawnknight\/selenium,markodolancic\/selenium,sevaseva\/selenium,quoideneuf\/selenium,aluedeke\/chromedriver,asashour\/selenium,krosenvold\/selenium,doungni\/selenium,tbeadle\/selenium,GorK-ChO\/selenium,bartolkaruza\/selenium,manuelpirez\/selenium,zenefits\/selenium,amar-sharma\/selenium,SeleniumHQ\/selenium,MCGallaspy\/selenium,eric-stanley\/selenium,asashour\/selenium,asashour\/selenium,krmahadevan\/selenium,jerome-jacob\/selenium,Ardesco\/selenium,bmannix\/selenium,amar-sharma\/selenium,jerome-jacob\/selenium,temyers\/selenium,minhthuanit\/selenium,lmtierney\/selenium,dandv\/selenium,uchida\/selenium,meksh\/selenium,meksh\/selenium,MeetMe\/selenium,jknguyen\/josephknguyen-selenium,chrisblock\/selenium,arunsingh\/selenium,mestihudson\/selenium,twalpole\/selenium,AutomatedTester\/selenium,carsonmcdonald\/selenium,misttechnologies\/selenium,gemini-testing\/selenium,oddui\/selenium,dkentw\/selenium,titusfortner\/selenium,gemini-testing\/selenium,bartolkaruza\/selenium,Appdynamics\/selenium,davehunt\/selenium,carlosroh\/selenium,tbeadle\/selenium,uchida\/selenium,Appdynamics\/selenium,asolntsev\/selenium,kalyanjvn1\/selenium,HtmlUnit\/selenium,vinay-qa\/vinayit-android-server-apk,carlosroh\/selenium,gotcha\/selenium,vveliev\/selenium,aluedeke\/chromedriver,lrowe\/selenium,manuelpirez\/selenium,jknguyen\/josephknguyen-selenium,slongwang\/selenium,eric-stanley\/selenium,RamaraoDonta\/ramarao-clone,amikey\/selenium,uchida\/selenium,tkurnosova\/selenium,mach6\/selenium,Jarob22\/selenium,pulkitsinghal\/selenium,mojwang\/selenium,soundcloud\/selenium,TheBlackTuxCorp\/selenium,jsarenik\/jajomojo-selenium,joshbruning\/selenium,sri85\/selenium,blackboarddd\/selenium,isaksky\/selenium,TikhomirovSergey\/selenium,blackboarddd\/selenium,joshmgrant\/selenium,gotcha\/selenium,p0deje\/selenium,dbo\/selenium,alexec\/selenium,anshumanchatterji\/selenium,gregerrag\/selenium,livioc\/selenium,soundcloud\/selenium,valfirst\/selenium,Tom-Trumper\/selenium,misttechnologies\/selenium,tbeadle\/selenium,minhthuanit\/selenium,rplevka\/selenium,wambat\/selenium,carlosroh\/selenium,knorrium\/selenium,compstak\/selenium,bayandin\/selenium,lmtierney\/selenium,xmhubj\/selenium,SeleniumHQ\/selenium,quoideneuf\/selenium,wambat\/selenium,joshmgrant\/selenium,xsyntrex\/selenium,Tom-Trumper\/selenium,soundcloud\/selenium,TheBlackTuxCorp\/selenium,sag-enorman\/selenium,yukaReal\/selenium,soundcloud\/selenium,valfirst\/selenium,aluedeke\/chromedriver,chrsmithdemos\/selenium,anshumanchatterji\/selenium,gotcha\/selenium,petruc\/selenium,Dude-X\/selenium,BlackSmith\/selenium,rrussell39\/selenium,bartolkaruza\/selenium,alb-i986\/selenium,rplevka\/selenium,alexec\/selenium,tkurnosova\/selenium,juangj\/selenium,meksh\/selenium,HtmlUnit\/selenium,dcjohnson1989\/selenium,pulkitsinghal\/selenium,mojwang\/selenium,arunsingh\/selenium,doungni\/selenium,onedox\/selenium,i17c\/selenium,krosenvold\/selenium,arunsingh\/selenium,DrMarcII\/selenium,Tom-Trumper\/selenium,jerome-jacob\/selenium,rovner\/selenium,rplevka\/selenium,TikhomirovSergey\/selenium,mestihudson\/selenium,Jarob22\/selenium,markodolancic\/selenium,doungni\/selenium,lrowe\/selenium,valfirst\/selenium,doungni\/selenium,knorrium\/selenium,yukaReal\/selenium,jsarenik\/jajomojo-selenium,sri85\/selenium,anshumanchatterji\/selenium,juangj\/selenium,wambat\/selenium,p0deje\/selenium,doungni\/selenium,davehunt\/selenium,dandv\/selenium,SouWilliams\/selenium,bayandin\/selenium,Sravyaksr\/selenium,sri85\/selenium,asolntsev\/selenium,bayandin\/selenium,telefonicaid\/selenium,livioc\/selenium,Herst\/selenium,alb-i986\/selenium,Ardesco\/selenium,rovner\/selenium,mestihudson\/selenium,eric-stanley\/selenium,asolntsev\/selenium,dibagga\/selenium,TheBlackTuxCorp\/selenium,chrisblock\/selenium,xmhubj\/selenium,AutomatedTester\/selenium,xmhubj\/selenium,joshbruning\/selenium,dcjohnson1989\/selenium,lrowe\/selenium,gabrielsimas\/selenium,uchida\/selenium,thanhpete\/selenium,o-schneider\/selenium,Ardesco\/selenium,eric-stanley\/selenium,mojwang\/selenium,i17c\/selenium,alexec\/selenium,Dude-X\/selenium,sankha93\/selenium,asashour\/selenium,kalyanjvn1\/selenium,gabrielsimas\/selenium,xmhubj\/selenium,aluedeke\/chromedriver,lummyare\/lummyare-lummy,vinay-qa\/vinayit-android-server-apk,juangj\/selenium,zenefits\/selenium,pulkitsinghal\/selenium,gemini-testing\/selenium,jknguyen\/josephknguyen-selenium,temyers\/selenium,alb-i986\/selenium,doungni\/selenium,manuelpirez\/selenium,SevInf\/IEDriver,soundcloud\/selenium,pulkitsinghal\/selenium,lummyare\/lummyare-lummy,stupidnetizen\/selenium,blueyed\/selenium,customcommander\/selenium,sag-enorman\/selenium,isaksky\/selenium,anshumanchatterji\/selenium,MeetMe\/selenium,thanhpete\/selenium,DrMarcII\/selenium,dandv\/selenium,livioc\/selenium,telefonicaid\/selenium,stupidnetizen\/selenium,onedox\/selenium,5hawnknight\/selenium,SouWilliams\/selenium,tbeadle\/selenium,dkentw\/selenium,Appdynamics\/selenium,gregerrag\/selenium,wambat\/selenium,stupidnetizen\/selenium,quoideneuf\/selenium,skurochkin\/selenium,5hawnknight\/selenium,jsakamoto\/selenium,SeleniumHQ\/selenium,RamaraoDonta\/ramarao-clone,alexec\/selenium,lummyare\/lummyare-test,oddui\/selenium,petruc\/selenium,dbo\/selenium,gurayinan\/selenium,SevInf\/IEDriver,lummyare\/lummyare-lummy,Sravyaksr\/selenium,jsakamoto\/selenium,sankha93\/selenium,gabrielsimas\/selenium,telefonicaid\/selenium,gotcha\/selenium,bayandin\/selenium,houchj\/selenium,MCGallaspy\/selenium,bmannix\/selenium,freynaud\/selenium,gabrielsimas\/selenium,twalpole\/selenium,davehunt\/selenium,tarlabs\/selenium,asolntsev\/selenium,minhthuanit\/selenium,oddui\/selenium,freynaud\/selenium,skurochkin\/selenium","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t\t\"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\t-- tell menu \"Develop\"\n\t\t\ttell menu bar item 8\n\t\t\t\ttell menu 1\n\t\t\t\t\t-- click menu item \"Show Extension Builder\"\n\t\t\t\t\tclick menu item 7\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\tdelay 0.2\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\t-- tell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\ttell UI element 1 of scroll area 1 of window 1\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\t-- click button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\tclick button 1 of UI element 4\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t\t& \"\\\"\" & return & return \u00ac\n\t\t\t\t\t& \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","old_contents":"#!\/usr\/bin\/osascript\n(*\nCopyright 2012 Software Freedom Conservancy. All Rights Reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*)\n\n(*\nThis script can be used to quickly re-install the SafariDriver extension\nduring development.\n\nRequirements:\n- The extension must be manually installed before use\n- This script must be run from the trunk.\n*)\n\n\n-- Keep this in sync with the name of the extension in the Info.plist\nset EXTENSION to \"WebDriver\"\n\ntell application \"System Events\"\n\tset ui_elements_enabled to UI elements enabled\nend tell\n\nif ui_elements_enabled is false then\n\ttell application \"System Preferences\"\n\t\tactivate\n\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\tdisplay dialog \"Please \\\"Enable access for assistive devices\\\" \" & \u00ac\n\t\t \"and try again...\"\n\t\terror number -128\n\tend tell\nend if\n\n\ntell application \"Safari\" to activate\n\ntell application \"System Events\"\n\ttell process \"Safari\"\n\t\ttell menu bar 1\n\t\t\ttell menu \"Develop\"\n\t\t\t\tclick menu item \"Show Extension Builder\"\n\t\t\t\tdelay 1\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t-- https:\/\/discussions.apple.com\/thread\/2726674?start=0&tstart=0\n\t\ttell UI element 1 of scroll area 1 of window \"Extension Builder\"\n\t\t\tset found_extension to false\n\t\t\tset tc to (count (groups whose its images is not {}))\n\t\t\trepeat with i from 1 to tc\n\t\t\t\tif exists (static text 1 of group i) then\n\t\t\t\t\tset t_name to name of static text 1 of group i\n\t\t\t\t\tif t_name is EXTENSION then\n\t\t\t\t\t\tset found_extension to true\n\t\t\t\t\t\tclick button \"Reload\" of UI element (\"ReloadUninstall\" & t_name)\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\tkeystroke (character id 31)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\t\n\t\t\tif found_extension is false then\n\t\t\t\tdisplay dialog \"Was unable to locate the extension \\\"\" & EXTENSION \u00ac\n\t\t\t\t & \"\\\"\" & return & return \u00ac\n\t\t\t\t & \"It must be manually installed before this script may be used.\"\n\t\t\t\terror number -128\n\t\t\tend if\n\t\tend tell\n\tend tell\nend tell\n\ntell application \"Safari\" to quit\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"254c8f4a3399bc249e52b3f555bb3046f3f6e647","subject":"Allow editing of URL title","message":"Allow editing of URL title\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- Accept or modify URL title\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Next...\"}\nset t to \"\" & script_name & \": Title (1\/4)\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nif btn_pressed is item 2 of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\teditLog(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (item 2 of b as text) & \"'\"\nend if\n\n-- Select an existing category\nset t to \"\" & script_name & \": Category (2\/4)\"\nset m to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title t with prompt m OK button name \"Next...\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (3\/4)\"\nset m to \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (4\/4)\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2012-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2012 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_cats & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset cat_txt to default_cats\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset cat_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset used_cats to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & cat_txt & linefeed & used_cats & \"\\\" | egrep -v '^$' | sort | uniq\"\nset cat_txt to do shell script s\n-- Coerce the lines into a list:\nset cat_list to paragraphs of cat_txt\n--return cat_list -- :DEBUG:\n\n\n--\n-- Prompt for category\/subcategory of URL\n--\n\n-- Select an existing category\nset t to \"\" & script_name & \" (1\/3)\"\nset m to \"Please select a category for the URL you want to log. You will have a chance to edit your choice.\"\nset cat_choice to choose from list cat_list with title t with prompt m OK button name \"Select\"\n--if cat_choice is false then return false\nif cat_choice is false then set cat_choice to \"Please enter a category...\"\n\n-- Modify or enter a new category\nset b to {\"Cancel\", \"Manually Edit Log File\", \"Append URL to Log File...\"}\nset t to \"\" & script_name & \" (2\/3)\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\ndisplay dialog m default answer cat_choice with title t buttons b default button last item of b\nset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \" (3\/3)\"\n\tset m to \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a1470101a2b0a5d49805f849d132a04f0c6281b7","subject":"moveForMon.applescript, from darwin11","message":"moveForMon.applescript, from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : true\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 170\n\tset y_gtPs to y_gtTask + 80\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : true\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t-- GeekTool\n\tset w_gtCal to 2\n\tset w_gtGcal to 3\n\tset w_gtTask to 4\n\tset w_gtPs to 1\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- x posiiotn for dual\/single monitor mode\n\tset ledgeDual to -160\n\tset ledgeSingle to 1280\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 105\n\tset y_gtTask to y_gtGcal + 180\n\tset y_gtPs to y_gtTask + 90\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tset ledge to ledgeDual\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to ledgeSingle\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t-- GeekTool\n\t\ttry\n\t\t\t--set appName to \"GeekTool\"\n\t\t\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t\t\n\t\t\ttell process appName\n\t\t\t\tset nW to number of windows\n\t\t\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t\t\ttell window w_gtCal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtCal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtGcal\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtGcal}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtTask\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtTask}\n\t\t\t\tend tell\n\t\t\t\ttell window w_gtPs\n\t\t\t\t\t-- set size to {1000, 1000}\n\t\t\t\t\tset position to {ledge, y_gtPs}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t--on error errMsg\n\t\t\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\tend try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"20fe88636a7ca6757a4f2c0faa0c0f4cb33f7098","subject":"added 0.1 delay to fmGUI_AuthenticateDialog","message":"added 0.1 delay to fmGUI_AuthenticateDialog\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\twindowWaitUntil_FrontNotIS\n\t\n\nHISTORY:\n\t1.1.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\tset authWindowName to fmGUI_NameOfFrontmostWindow()\n\t\tif authWindowName contains windowName of prefs then\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell process \"FileMaker Pro\"\n\t\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\tdelay 0.1\n\t\t\ttry\n\t\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\t\ton error\n\t\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\t\tend try\n\t\t\t\n\t\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro\" then error \"incorrect credentials\" number -1024\n\t\t\t\n\t\t\treturn windowWaitUntil_FrontNotIS({windowName:authWindowName})\n\t\tend if\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\non windowWaitUntil_FrontNotIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontNotIS(prefs)\nend windowWaitUntil_FrontNotIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString","old_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\twindowWaitUntil_FrontNotIS\n\t\n\nHISTORY:\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\tset authWindowName to fmGUI_NameOfFrontmostWindow()\n\t\tif authWindowName contains windowName of prefs then\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell process \"FileMaker Pro\"\n\t\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\ttry\n\t\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\t\ton error\n\t\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\t\tend try\n\t\t\t\n\t\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro\" then error \"incorrect credentials\" number -1024\n\t\t\t\n\t\t\treturn windowWaitUntil_FrontNotIS({windowName:authWindowName})\n\t\tend if\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\non windowWaitUntil_FrontNotIS(prefs)\n\ttell application \"htcLib\" to windowWaitUntil_FrontNotIS(prefs)\nend windowWaitUntil_FrontNotIS\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0ab718fba1884d4ae34c675cd9052bb6bc9c3044","subject":"altered to work with Apple Music (vs. iTunes)","message":"altered to work with Apple Music (vs. iTunes)\n","repos":"grahams\/nicecast-trackupdate","old_file":"Automation\/GetCurrentTrackJSON.scpt","new_file":"Automation\/GetCurrentTrackJSON.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u0011\u0001\u001fvar iTunes = Application('Music');\n\nvar track = {};\nvar cT = iTunes.currentTrack;\nvar state = iTunes.playerState()\n\t\nif (state == 'playing') {\n\ttrack[\"album\"] = cT.album();\n\ttrack[\"artist\"] = cT.artist();\n\ttrack[\"name\"] = cT.name();\n\ttrack[\"time\"] = cT.time();\n}\n\n\nJSON.stringify(track);\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00015\u0000jscr\u0000\u0001\u0000\r\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u0011\u0001 var iTunes = Application('iTunes');\n\nvar track = {};\nvar cT = iTunes.currentTrack;\nvar state = iTunes.playerState()\n\t\nif (state == 'playing') {\n\ttrack[\"album\"] = cT.album();\n\ttrack[\"artist\"] = cT.artist();\n\ttrack[\"name\"] = cT.name();\n\ttrack[\"time\"] = cT.time();\n}\n\n\nJSON.stringify(track);\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00016jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"36b07869f8f12c55edbff56b390ae97688883f58","subject":":wrench: notifyme script: use HyperTerm instead of iTerm","message":":wrench: notifyme script: use HyperTerm instead of iTerm\n","repos":"mistadikay\/dotfiles","old_file":"applescript\/notifyme.applescript","new_file":"applescript\/notifyme.applescript","new_contents":"#!\/usr\/bin\/env osascript\n\n-- see http:\/\/frantic.im\/notify-on-completion\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n if frontApp is not \"HyperTerm\" then\n set notifTitle to item 1 of argv\n set notifBody to \"succeded\"\n set errorCode to item 2 of argv\n if errorCode is not \"0\"\n set notifBody to \"failed with error code \" & errorCode\n end if\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- see http:\/\/frantic.im\/notify-on-completion\non run argv\n tell application \"System Events\"\n set frontApp to name of first application process whose frontmost is true\n if frontApp is not \"iTerm2\" then\n set notifTitle to item 1 of argv\n set notifBody to \"succeded\"\n set errorCode to item 2 of argv\n if errorCode is not \"0\"\n set notifBody to \"failed with error code \" & errorCode\n end if\n display notification notifBody with title notifTitle\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"b8ab0de147c88a508cc7324f955461452f47ffd9","subject":"Gist reminders-adjust-timezone.applescript","message":"Gist reminders-adjust-timezone.applescript\n\nhttps:\/\/gist.github.com\/gurdiga\/4462e5f4843ffebef17968030031f966\n","repos":"gurdiga\/dotfiles,gurdiga\/dotfiles","old_file":"reminders-adjust-timezone.applescript","new_file":"reminders-adjust-timezone.applescript","new_contents":"","old_contents":"#!\/usr\/bin\/osascript\n\n# I use this when I change the time-zones.\n\ntell application \"Reminders\"\n repeat with eachReminder in reminders in list \"Planned\"\n tell eachReminder\n set due date to (due date as date + 10 * hours)\n end tell\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0f04df594dba53ab396d4c5c2919423ae11e3d79","subject":"Modify tystrings.scpt","message":"Modify tystrings.scpt\n","repos":"luckytianyiyan\/TyStrings,luckytianyiyan\/TyStrings","old_file":"script\/tystrings.scpt","new_file":"script\/tystrings.scpt","new_contents":"-- tystrings.scpt\n--\n-- The MIT License (MIT)\n-- \n-- Copyright (c) 2017 luckytianyiyan\n-- \n-- Permission is hereby granted, free of charge, to any person obtaining a copy\n-- of this software and associated documentation files (the \"Software\"), to deal\n-- in the Software without restriction, including without limitation the rights\n-- to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\n-- copies of the Software, and to permit persons to whom the Software is\n-- furnished to do so, subject to the following conditions:\n-- \n-- The above copyright notice and this permission notice shall be included in all\n-- copies or substantial portions of the Software.\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n-- SOFTWARE.\n--\n\nset currentPath to getCurrentPath() as alias\n\nactivateiTerms()\nsetWindowTitle(\"TyStrings Demo\")\n\n# cd to repo root path\nrunCommand(\"cd \" & (quoted form of POSIX path of currentPath) & \"..\/\")\nrunCommand(\"source venv\/bin\/activate\")\nrunCommand(\"cd tests\/example\/\")\nclear()\nrunCommand(\"ttyrec ..\/..\/resource\/recording\")\ndelay 0.5\nrunTyStringsSubCommand(\"generate\", {\"$(find . -name \\\\*.m)\", \"-o\", \"en.lproj zh-Hans.lproj\"})\ndelay 2\nclear()\nrunTyStringsSubCommand(\"translate\", {\"strings\/base_translator.strings\", \"zh-Hans.lproj\/base_translator.strings\", \"--dst-lang\", \"zh\", \"--src-lang\", \"en\"})\ndelay 2\nclear()\nrunTyStringsSubCommand(\"diff\", {\"strings\/diff1.strings\", \"strings\/diff2.strings\"})\ndelay 2\nclear()\nrunTyStringsSubCommand(\"lint\", {\"strings\/lint.strings\"})\ndelay 2\nrunCommand(\"exit\")\ndelay 0.5\nrunCommand(\"cd \" & (quoted form of POSIX path of currentPath) & \"..\/\")\nrunCommand(\"deactivate\")\nrunCommand(\"ttygif resource\/recording -f\")\nrunCommand(\"mv tty.gif resource\/tystrings.gif\")\n\n# clean\nrunCommand(\"rm -rf tests\/example\/en.lproj\")\nrunCommand(\"rm -rf tests\/example\/zh-Hans.lproj\")\n\n# ------- TyStrings Helper ------- \n\non runTyStringsSubCommand(subcommand, args)\n\ttypingString(\"tys\")\n\ttypingStringWithDelay(\"trings \", 0)\n\ttypingString(subcommand & \" \")\n\trepeat with i from 1 to count of args\n\t\ttypingStringWithDelay(item i of args & \" \", 0.02)\n\tend repeat\n\t# typing '\\n'\n\ttypingString(\"\n\")\n\t\nend runTyStringsSubCommand\n\n# ------- Core ------- \n\non typingString(content)\n\ttypingStringWithDelay(content, 0.1)\nend typingString\n\non typingStringWithDelay(content, dy)\n\ttell application \"iTerm\"\n\t\ttell current session of current window\n\t\t\tset charList to (characters 1 thru (length of content) of content)\n\t\t\trepeat with char in charList\n\t\t\t\twrite text char newline no\n\t\t\t\tdelay dy\n\t\t\tend repeat\n\t\tend tell\n\tend tell\nend typingStringWithDelay\n\non runCommand(command)\n\ttell application \"iTerm\"\n\t\ttell current session of current window\n\t\t\twrite text command\n\t\tend tell\n\tend tell\nend runCommand\n\non clear()\n\trunCommand(\"clear\")\n\tdelay 0.1\nend clear\n\non isAppRunning(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend isAppRunning\n\non setWindowTitle(title)\n\trunCommand(\"echo -e \\\"\\\\033];\" & title & \"\\\\007\\\"\")\nend setWindowTitle\n\non activateiTerms()\n\tif isAppRunning(\"iTerm\") then\n\t\ttell application \"iTerm\"\n\t\t\tactivate\n\t\tend tell\n\telse\n\t\tactivate application \"iTerm\"\n\tend if\nend activateiTerms\n\non getCurrentPath()\n\ttell application \"Finder\"\n\t\treturn container of (path to me)\n\tend tell\nend getCurrentPath\n","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0015\u0000\u000f tystrings.scpt\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u001e\u0000 \u0000t\u0000y\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000\u001c\u0000\u0016 The MIT License (MIT)\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000,\u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0013\u0000\u0014\u0001\u0000\u0000\f\u0000\u0013\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\u000e\u0000\u0014\u0000\u0001\u0000\u0015\u0011\u0000\u0015\u0000\u0002\u0000 \u0002\u0000\u0012\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000(\u0000\" Copyright (c) 2017 luckytianyiyan\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000D\u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000(\u0000c\u0000)\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000l\u0000u\u0000c\u0000k\u0000y\u0000t\u0000i\u0000a\u0000n\u0000y\u0000i\u0000y\u0000a\u0000n\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0002\u0000 \u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\"\u0000#\u0001\u0000\u0000\f\u0000\"\u0000S\u0000M Permission is hereby granted, free of charge, to any person obtaining a copy\u0000\u0002\u0000\u0000\u000e\u0000#\u0000\u0001\u0000$\u0011\u0000$\u0000\u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0002\u0000!\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000T\u0000N of this software and associated documentation files (the \"Software\"), to deal\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u0000\"\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000\"\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0002\u0000&\u0000\u0002\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000,\u0000-\u0001\u0000\u0000\f\u0000,\u0000S\u0000M in the Software without restriction, including without limitation the rights\u0000\u0002\u0000\u0000\u000e\u0000-\u0000\u0001\u0000.\u0011\u0000.\u0000\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0002\u0000+\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00001\u00002\u0001\u0000\u0000\f\u00001\u0000P\u0000J to use, copy, modify, merge, publish, distribute, sublicense, and\/or sell\u0000\u0002\u0000\u0000\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0002\u00000\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000L\u0000F copies of the Software, and to permit persons to whom the Software is\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000?\u00009 furnished to do so, subject to the following conditions:\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000r\u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000@\u0000A\u0001\u0000\u0000\f\u0000@\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\u0002\u0000 \u0002\u0000?\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000E\u0000F\u0001\u0000\u0000\f\u0000E\u0000U\u0000O The above copyright notice and this permission notice shall be included in all\u0000\u0002\u0000\u0000\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000\u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000a\u0000l\u0000l\u0002\u0000D\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000J\u0000K\u0001\u0000\u0000\f\u0000J\u00006\u00000 copies or substantial portions of the Software.\u0000\u0002\u0000\u0000\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000`\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0002\u0000I\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000O\u0000P\u0001\u0000\u0000\f\u0000O\u0000\u0007\u0000\u0001 \u0000\u0002\u0000\u0000\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000 \u0002\u0000N\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000T\u0000U\u0001\u0000\u0000\f\u0000T\u0000Q\u0000K THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\u0000\u0002\u0000\u0000\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u0000\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u0000\"\u0000A\u0000S\u0000 \u0000I\u0000S\u0000\"\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0002\u0000S\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000Y\u0000Z\u0001\u0000\u0000\f\u0000Y\u0000O\u0000I IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\u0000\u0002\u0000\u0000\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0002\u0000X\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000^\u0000_\u0001\u0000\u0000\f\u0000^\u0000R\u0000L FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\u0000\u0002\u0000\u0000\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u0000\u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0002\u0000]\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000c\u0000d\u0001\u0000\u0000\f\u0000c\u0000M\u0000G AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\u0000\u0002\u0000\u0000\u000e\u0000d\u0000\u0001\u0000e\u0011\u0000e\u0000\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0002\u0000b\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000h\u0000i\u0001\u0000\u0000\f\u0000h\u0000T\u0000N LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\u0000\u0002\u0000\u0000\u000e\u0000i\u0000\u0001\u0000j\u0011\u0000j\u0000\u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0002\u0000g\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000m\u0000n\u0001\u0000\u0000\f\u0000m\u0000T\u0000N OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\u0000\u0002\u0000\u0000\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000 \u0000T\u0000H\u0000E\u0002\u0000l\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000r\u0000s\u0001\u0000\u0000\f\u0000r\u0000\u0010\u0000\n SOFTWARE.\u0000\u0002\u0000\u0000\u000e\u0000s\u0000\u0001\u0000t\u0011\u0000t\u0000\u0014\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0002\u0000q\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000|\u0000}\r\u0000|\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0007\u0000~\u0000\r\u0000~\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0000 0\u0000\u000egetcurrentpath\u0000\u000egetCurrentPath\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nalis\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcurrentpath\u0000\u000bcurrentPath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\n\u0000\u000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\n\u0000\u000f\u000b\u0000 0\u0000\u000eactivateiterms\u0000\u000eactivateiTerms\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0010\u0000\u0016\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0016\u0000\u000b\u0000 0\u0000\u000esetwindowtitle\u0000\u000esetWindowTitle\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000T\u0000y\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000 \u0000D\u0000e\u0000m\u0000o\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001b\u0000\u0015 cd to repo root path\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000*\u0000 \u0000c\u0000d\u0000 \u0000t\u0000o\u0000 \u0000r\u0000e\u0000p\u0000o\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000%\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0017\u0000%\u0000\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0018\u0000!\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0018\u0000\u001f\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0003l\u0000\u0005\u0000\u0019\u0000\u001e\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001e\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\nstrq\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001c\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001c\n\u0000\u0004\npsxp\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u001a0\u0000\u000bcurrentpath\u0000\u000bcurrentPath\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000.\u0000.\u0000\/\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000&\u0000,\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000&\u0000,\u0000\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000v\u0000e\u0000n\u0000v\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000-\u00003\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000-\u00003\u0000\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000c\u0000d\u0000 \u0000t\u0000e\u0000s\u0000t\u0000s\u0000\/\u0000e\u0000x\u0000a\u0000m\u0000p\u0000l\u0000e\u0000\/\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00004\u00009\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00004\u00009\u000b\u0000\t0\u0000\u0005clear\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000:\u0000@\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000:\u0000@\u0000\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000t\u0000t\u0000y\u0000r\u0000e\u0000c\u0000 \u0000.\u0000.\u0000\/\u0000.\u0000.\u0000\/\u0000r\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000\/\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000i\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000A\u0000F\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000A\u0000F\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\b\u0000\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000G\u0000Z\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000G\u0000Z\u0000\u000b\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000K\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000K\u0000V\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000$\u0000(\u0000f\u0000i\u0000n\u0000d\u0000 \u0000.\u0000 \u0000-\u0000n\u0000a\u0000m\u0000e\u0000 \u0000\\\u0000*\u0000.\u0000m\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000N\u0000Q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000-\u0000o\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Q\u0000T\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000e\u0000n\u0000.\u0000l\u0000p\u0000r\u0000o\u0000j\u0000 \u0000z\u0000h\u0000-\u0000H\u0000a\u0000n\u0000s\u0000.\u0000l\u0000p\u0000r\u0000o\u0000j\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000[\u0000`\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000[\u0000`\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0003\u0000\u0002\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000a\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000a\u0000f\u000b\u0000\t0\u0000\u0005clear\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000\u0000\u000b\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000t\u0000r\u0000a\u0000n\u0000s\u0000l\u0000a\u0000t\u0000e\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000\/\u0000b\u0000a\u0000s\u0000e\u0000_\u0000t\u0000r\u0000a\u0000n\u0000s\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000z\u0000h\u0000-\u0000H\u0000a\u0000n\u0000s\u0000.\u0000l\u0000p\u0000r\u0000o\u0000j\u0000\/\u0000b\u0000a\u0000s\u0000e\u0000_\u0000t\u0000r\u0000a\u0000n\u0000s\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000-\u0000-\u0000d\u0000s\u0000t\u0000-\u0000l\u0000a\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000z\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000-\u0000-\u0000s\u0000r\u0000c\u0000-\u0000l\u0000a\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000e\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0001\r\u0001\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0001\u0002\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0005\r\u0001\u0005\u0000\u0003I\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005clear\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\b\r\u0001\b\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\t\u000b\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0002\u0001\t\u0000\u0002\u0001\n\u0001\u000b\r\u0001\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\f\u000e\u0001\f\u0000\u0001\u0001\r\u0011\u0001\r\u0000\b\u0000d\u0000i\u0000f\u0000f\u0002\u0001\u000b\u0000\u0002\u0001\u000e\r\u0001\u000e\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000f\u0002\u0001\u000f\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000*\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000\/\u0000d\u0000i\u0000f\u0000f\u00001\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0002\u0001\u0011\u0000\u0002\u0001\u0014\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0015\u000e\u0001\u0015\u0000\u0001\u0001\u0016\u0011\u0001\u0016\u0000*\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000\/\u0000d\u0000i\u0000f\u0000f\u00002\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0007\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0019~\r\u0001\u0019\u0000\u0003I\u0000\u0002\u0000\u0000}\u0001\u001a|\n}\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000{\u0003{\u0000\u0002\u0002|\u0000\u0000\u0001\u0000\u0000\u0001~\u0000\u0000\u0002\u0001\u0018\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001dzy\r\u0001\u001d\u0000\u0003I\u0000\u0000\u0000\u0000xwv\u000bx\u0000\t0\u0000\u0005clear\u0000\u0000\u0002w\u0000\u0000\u0002v\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0001 ut\r\u0001 \u0000\u0003I\u0000\u0000\u0000\u0000s\u0001!r\u000bs\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0001$\u000e\u0001$\u0000\u0001\u0001%\u0011\u0001%\u0000\b\u0000l\u0000i\u0000n\u0000t\u0002\u0001#\u0000\u0002\u0001&q\r\u0001&\u0000\u0001J\u0000\u0000\u0000\u0000\u0001'\u0002\u0001'\u0000\u0002\u0001(p\r\u0001(\u0000\u0001m\u0000\u0000\u0000\u0000\u0001)\u000e\u0001)\u0000\u0001\u0001*\u0011\u0001*\u0000(\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000\/\u0000l\u0000i\u0000n\u0000t\u0000.\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0002p\u0000\u0000\u0002q\u0000\u0000\u0002r\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0002\u0000\u0000\u0001-on\r\u0001-\u0000\u0003I\u0000\u0002\u0000\u0000m\u0001.l\nm\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001.\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0000\u0002\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0001,\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0002\u0000\u0000\u00011ji\r\u00011\u0000\u0003I\u0000\u0000\u0000\u0000h\u00012g\u000bh\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u00012\u0000\u0002\u00013f\r\u00013\u0000\u0001m\u0000\u0000\u0000\u0000\u00014\u000e\u00014\u0000\u0001\u00015\u0011\u00015\u0000\b\u0000e\u0000x\u0000i\u0000t\u0002f\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u00010\u0000\u0002\u00016\u00017\r\u00016\u0000\u0003l\u0000\u0002\u0000\u0000\u00018ed\r\u00018\u0000\u0003I\u0000\u0002\u0000\u0000c\u00019b\nc\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0000\u0001:\b\u0001:\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002b\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u00017\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0003l\u0000\u0002\u0000\u0000\u0001=a`\r\u0001=\u0000\u0003I\u0000\u0000\u0000\u0000_\u0001>^\u000b_\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001>\u0000\u0002\u0001?]\r\u0001?\u0000\u0002b\u0000\u0000\u0000\u0000\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0000\u0000\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0006\u0000c\u0000d\u0000 \r\u0001C\u0000\u0003l\u0000\u0005\u0000\u0000\u0001F\\[\r\u0001F\u0000\u0002n\u0000\u0000\u0000\u0000\u0001G\u0001H\r\u0001G\u0000\u00011\u0000\u0000\u0000\u0000Z\nZ\u0000\u0004\nstrq\r\u0001H\u0000\u0002n\u0000\u0000\u0000\u0000\u0001I\u0001J\r\u0001I\u0000\u00011\u0000\u0000\u0000\u0000Y\nY\u0000\u0004\npsxp\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u000bcurrentpath\u0000\u000bcurrentPath\u0001\\\u0000\u0000\u0001[\u0000\u0000\r\u0001A\u0000\u0001m\u0000\u0000\u0000\u0000\u0001K\u000e\u0001K\u0000\u0001\u0001L\u0011\u0001L\u0000\u0006\u0000.\u0000.\u0000\/\u0002]\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0001<\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0000\u0001OWV\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0000U\u0001PT\u000bU\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001P\u0000\u0002\u0001QS\r\u0001Q\u0000\u0001m\u0000\u0000\u0000\u0000\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000\u0014\u0000d\u0000e\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0002S\u0000\u0000\u0002T\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\u0002\u0001N\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0002\u0000\u0000\u0001VRQ\r\u0001V\u0000\u0003I\u0000\u0000\u0000\u0000P\u0001WO\u000bP\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001W\u0000\u0002\u0001XN\r\u0001X\u0000\u0001m\u0000\u0000\u0000\u0000\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u00008\u0000t\u0000t\u0000y\u0000g\u0000i\u0000f\u0000 \u0000r\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000\/\u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000i\u0000n\u0000g\u0000 \u0000-\u0000f\u0002N\u0000\u0000\u0002O\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002\u0001U\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0003l\u0000\u0002\u0000\u0000\u0001]ML\r\u0001]\u0000\u0003I\u0000\u0000\u0000\u0000K\u0001^J\u000bK\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001^\u0000\u0002\u0001_I\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0000\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000B\u0000m\u0000v\u0000 \u0000t\u0000t\u0000y\u0000.\u0000g\u0000i\u0000f\u0000 \u0000r\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000\/\u0000t\u0000y\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000.\u0000g\u0000i\u0000f\u0002I\u0000\u0000\u0002J\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0001\\\u0000\u0002\u0001b\u0001c\r\u0001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000E\u0001f\u0001g\u0001E\u0000\u0000\f\u0001f\u0000\f\u0000\u0006 clean\u0000\u0002\u0000\u0000\u000e\u0001g\u0000\u0001\u0001h\u0011\u0001h\u0000\f\u0000 \u0000c\u0000l\u0000e\u0000a\u0000n\u0002\u0001e\u0000\u0002\u0001i\u0001j\r\u0001i\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\b\u0001kDC\r\u0001k\u0000\u0003I\u0000\u0000\u0001\u0000\u0001\bB\u0001lA\u000bB\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001l\u0000\u0002\u0001m@\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004\u0001n\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000:\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000t\u0000e\u0000s\u0000t\u0000s\u0000\/\u0000e\u0000x\u0000a\u0000m\u0000p\u0000l\u0000e\u0000\/\u0000e\u0000n\u0000.\u0000l\u0000p\u0000r\u0000o\u0000j\u0002@\u0000\u0000\u0002A\u0000\u0000\u0001D\u0000\u0000\u0001C\u0000\u0000\u0002\u0001j\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0003l\u0000\u0002\u0001\t\u0001\u0011\u0001r?>\r\u0001r\u0000\u0003I\u0000\u0000\u0001\t\u0001\u0011=\u0001s<\u000b=\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0001s\u0000\u0002\u0001t;\r\u0001t\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000D\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000t\u0000e\u0000s\u0000t\u0000s\u0000\/\u0000e\u0000x\u0000a\u0000m\u0000p\u0000l\u0000e\u0000\/\u0000z\u0000h\u0000-\u0000H\u0000a\u0000n\u0000s\u0000.\u0000l\u0000p\u0000r\u0000o\u0000j\u0002;\u0000\u0000\u0002<\u0000\u0000\u0001?\u0000\u0000\u0001>\u0000\u0000\u0002\u0001q\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000:98\u0001:\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u00007\u0001{\u0001|\u00017\u0000\u0000\f\u0001{\u0000(\u0000\" ------- TyStrings Helper ------- \u0000\u0002\u0000\u0000\u000e\u0001|\u0000\u0001\u0001}\u0011\u0001}\u0000D\u0000 \u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000 \u0000T\u0000y\u0000S\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000 \u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000 \u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000 \u0002\u0001z\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000321\u000b3\u0000(0\u0000\u0012rungeneratecommand\u0000\u0012runGenerateCommand\u00022\u0000\u0000\u00021\u0000\u0000\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u00000\/.\u00010\u0000\u0000\u0001\/\u0000\u0000\u0001.\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000-,+\u0001-\u0000\u0000\u0001,\u0000\u0000\u0001+\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000*\u0001)\u000b*\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u000e0\u0000\nsubcommand\u0000\u0000\u0002\u0001\u0000\u0002\u0001'\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\b0\u0000\u0004args\u0000\u0000\u0002'\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000@\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006%\u0001$\u000b%\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u0002\u0001\u0000\u0002\u0001#\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000t\u0000y\u0000s\u0002#\u0000\u0000\u0002$\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\u000e\"\u0001!\u000b\"\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000t\u0000r\u0000i\u0000n\u0000g\u0000s\u0000 \u0002\u0001\u0000\u0002\u0001 \r\u0001\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u001f\u0003\u001f\u0000\u0000\u0002 \u0000\u0000\u0002!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u000f\u0000\u0017\u001e\u0001\u001d\u000b\u001e\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u0002\u0001\u0000\u0002\u0001\u001c\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0010\u0000\u0013\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u001b\u000b\u001b\u0000\u000e0\u0000\nsubcommand\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000 \u0002\u001c\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u0000\u0018\u00007\u0001\u001a\u0001\u0001\u0019\r\u0001\u0000\u0003I\u0000\u0000\u0000&\u00002\u0018\u0001\u0017\u000b\u0018\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000'\u0000-\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000'\u0000+\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000(\u0000+\u0016\u0001\n\u0016\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u0015\u000b\u0015\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000'\u0000(\u0014\u000b\u0014\u0000\b0\u0000\u0004args\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000 \u0002\u0001\u0000\u0002\u0001\u0013\r\u0001\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0001\b\u0001\u0000\b?zG\u0014{\u0002\u0013\u0000\u0000\u0002\u0017\u0000\u0000\u000b\u001a\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0012\u0003\u0012\u0000\u0001\r\u0001\u0000\u0003I\u0000\u0001\u0000\u001c\u0000!\u0011\u0001\u0010\n\u0011\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u001c\u0000\u001d\u000f\u000b\u000f\u0000\b0\u0000\u0004args\u0000\u0000\u0002\u0010\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0006\u00008\u00008\u000e\u0001\u0001\u0001\u000e\u0000\u0000\f\u0001\u0000\u0012\u0000\f typing '\\n'\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000 \u0000t\u0000y\u0000p\u0000i\u0000n\u0000g\u0000 \u0000'\u0000\\\u0000n\u0000'\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u00008\u0000>\r\u0001\f\u000b\r\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\u0002\u000b\u0000\u0000\u0002\f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\n\r\u0001\u0000\u0003l\u0000\u0002\u0000?\u0000?\t\b\u0007\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0002\n\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0006\u0005\u0004\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0003\u0001\u0001\u0001\u0003\u0000\u0000\f\u0001\u0000\u001c\u0000\u0016 ------- Core ------- \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000,\u0000 \u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000 \u0000C\u0000o\u0000r\u0000e\u0000 \u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000-\u0000 \u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007content\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u000b\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007content\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0001\b\u0001\u0000\b?\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007content\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002dy\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000B\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0004\u0000A\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000\f\u0000@\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\f\u0000\u001b\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0000\f\u0000\u0019\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\f\u0000\u0019\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0000\r\u0000\u0019\u0001\u0001\n\u0000\u0004\ncha \r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0000\u0014\u0000\u0018\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0018\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000\u0016\u0000\u0018\n\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0016\u000b\u0000\u000b0\u0000\u0007content\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007content\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bcharlist\u0000\bcharList\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003X\u0000\u0000\u0000\u001c\u0000@\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000,\u0000;\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000,\u00005\u0001\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\nText\r\u0001\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004char\u0000\u0000\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\nWtnl\r\u0001\u0000\u0001m\u0000\u0000\u00000\u00001\n\u0000\b\u000bsavono \u0006\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00006\u0000;\u0001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00060\u0000\u0002dy\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004char\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00140\u0000\bcharlist\u0000\bcharList\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\nWcsn\r\u0001\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\nCrwn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u000f\u0002\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00021Gl\u06d2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000lk\u0012\u0000\u0000\u0000\u0001\u0000\u0004\u0002\u0663\u0000\u0002\u0000!Macintosh:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0001\u0002\u0002\r\u0002\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0002\u0000\u0002\u0002\u0003\u0002\u0004\r\u0002\u0003\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0002\u0005\u0002\u0006\r\u0002\u0005\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0007\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0002\u0007\u0000\u0002\u0002\b\r\u0002\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0006\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0015\u0002\t\u0002\n\r\u0002\t\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u0014\u0002\u000b\u0002\f\r\u0002\u000b\u0000\u0003I\u0000\u0002\u0000\f\u0000\u0013\u0002\r\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0002\r\u0000\u0003\u0002\u000e\n\u0000\u0004\nText\r\u0002\u000e\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0006\u0000\u0000\r\u0002\f\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\nWcsn\r\u0002\u0010\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\nCrwn\r\u0002\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0011\u000f\u0002\u0011\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00021Gl\u06d2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000lk\u0012\u0000\u0000\u0000\u0001\u0000\u0004\u0002\u0663\u0000\u0002\u0000!Macintosh:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0002\u0004\u0000\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0013\u0000\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0002\u0016\u0002\u0017\r\u0002\u0016\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005clear\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\f\u0002\u0018\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006\u0002\u001b\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0002\u001b\u0000\u0002\u0002\u001c\r\u0002\u001c\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000\n\u0000c\u0000l\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u001a\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0003I\u0000\u0002\u0000\u0007\u0000\f\u0002 \n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0002 \u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0002!\b\u0002!\u0000\b?\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0015\u0000\u0002\u0002\"\u0002#\r\u0002\"\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002#\u0000\u0002\u0002$\u0002%\r\u0002$\u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b\u0002&\u0002'\r\u0002&\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002(\u000b\u0000\u001c0\u0000\fisapprunning\u0000\fisAppRunning\u0002\u0002(\u0000\u0002\u0002)\r\u0002)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002'\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\f\u0002*\u0002+\r\u0002*\u0000\u0002E\u0000\u0000\u0000\u0004\u0000\u000b\u0002,\u0002-\r\u0002,\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0002.\r\u0002.\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0002\/\u00020\r\u0002\/\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npnam\r\u00020\u0000\u00012\u0000\u0001\u0000\u0004\u0000\u0007\n\u0000\u0004\nprcs\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002-\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\r\u0002+\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00021\u000f\u00021\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663}\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0720\u00d3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000#(\u0000\u0000\u0000\u0001\u0000\f\u0002\u0663}\u0002\u0663|\u0002\u0663{\u0000\u0002\u0000:Macintosh:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0002%\u0000\u0002\u00022\u00023\r\u00022\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00023\u0000\u0002\u00024\u00025\r\u00024\u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f\u00026\u00027\r\u00026\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u00028\u000b\u0000 0\u0000\u000esetwindowtitle\u0000\u000esetWindowTitle\u0002\u00028\u0000\u0002\u00029\r\u00029\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u00027\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\n\u0002:\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0002\u0002:\u0000\u0002\u0002;\r\u0002;\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u0006\u0002<\u0002=\r\u0002<\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u0004\u0002>\u0002?\r\u0002>\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0002@\u000e\u0002@\u0000\u0001\u0002A\u0011\u0002A\u0000\u001e\u0000e\u0000c\u0000h\u0000o\u0000 \u0000-\u0000e\u0000 \u0000\"\u0000\\\u00000\u00003\u00003\u0000]\u0000;\r\u0002?\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0002=\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0002B\u000e\u0002B\u0000\u0001\u0002C\u0011\u0002C\u0000\n\u0000\\\u00000\u00000\u00007\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u00025\u0000\u0002\u0002D\u0002E\r\u0002D\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002E\u0000\u0002\u0002F\u0002G\r\u0002F\u0000\u0002i\u0000\u0000\u0000 \u0000#\u0002H\u0002I\r\u0002H\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eactivateiterms\u0000\u000eactivateiTerms\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002I\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002J\u0002K\u0002L\r\u0002J\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0006\u0002M\u000b\u0000\u001c0\u0000\fisapprunning\u0000\fisAppRunning\u0002\u0002M\u0000\u0002\u0002N\r\u0002N\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0002O\u000e\u0002O\u0000\u0001\u0002P\u0011\u0002P\u0000\n\u0000i\u0000T\u0000e\u0000r\u0000m\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002K\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0013\u0002Q\u0002R\r\u0002Q\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002R\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002S\u000f\u0002S\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00021Gl\u06d2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000lk\u0012\u0000\u0000\u0000\u0001\u0000\u0004\u0002\u0663\u0000\u0002\u0000!Macintosh:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0002L\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b\u0002T\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0002T\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0002U\u000f\u0002U\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001@\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00021Gl\u06d2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000lk\u0012\u0000\u0000\u0000\u0001\u0000\u0004\u0002\u0663\u0000\u0002\u0000!Macintosh:Applications:\u0000iTerm.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0002G\u0000\u0002\u0002V\u0002W\r\u0002V\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002W\u0000\u0002\u0002X\u0002Y\r\u0002X\u0000\u0002i\u0000\u0000\u0000$\u0000'\u0002Z\u0002[\r\u0002Z\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000egetcurrentpath\u0000\u000egetCurrentPath\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002[\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0002\\\u0002]\r\u0002\\\u0000\u0001L\u0000\u0000\u0000\u0004\u0000\r\u0002^\r\u0002^\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\f\u0002_\u0002`\r\u0002_\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nctnr\r\u0002`\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\t\u0002a\r\u0002a\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\u0002b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002b\u0000\u0000f\u0000\u0000\u0000\u0004\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002]\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002c\u000f\u0002c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\tMacintosh\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00006]H+\u0000\u0000\u0002\u0663}\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00029JH\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00006.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000HA\u000e\u0000\u0000\u0000\u0001\u0000\f\u0002\u0663}\u0002\u0663|\u0002\u0663{\u0000\u0002\u00003Macintosh:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0002Y\u0000\u0002\u0002d\r\u0002d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\r\u0002e\u0002f\u0002g\u0002h\u0002i\u0002j\u0002k\u0002l\u0002m\u0002n\u0002o\u0002p\u0001\u0000\u0000\u0010\u0002e\u0000\u000b~}|{\u000b\u0000(0\u0000\u0012rungeneratecommand\u0000\u0012runGenerateCommand\u000b\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u000b\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u000b\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u000b\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u000b\u0000\t0\u0000\u0005clear\u0000\u0000\u000b\u0000\u001c0\u0000\fisapprunning\u0000\fisAppRunning\u000b~\u0000 0\u0000\u000esetwindowtitle\u0000\u000esetWindowTitle\u000b}\u0000 0\u0000\u000eactivateiterms\u0000\u000eactivateiTerms\u000b|\u0000 0\u0000\u000egetcurrentpath\u0000\u000egetCurrentPath\n{\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002f\u0000\u0007\u0010z\u0001yx\u0002q\u0002rw\u000bz\u0000(0\u0000\u0012rungeneratecommand\u0000\u0012runGenerateCommand\u0002y\u0000\u0000\u0002x\u0000\u0000\u0010\u0002q\u0000\u0000\u0010\u0002r\u0000\u0000\u0011w\u0000\u0002h\u000f\u000e\u0002g\u0000\u0007\u0010v\u0001ut\u0002s\u0002ts\u000bv\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u000eu\u0000\u0002\u0004r\u0002u\u0003r\u0000\u0002\u000e\u0002u\u0000\u0002\u0000qp\u000bq\u0000\u000e0\u0000\nsubcommand\u0000\u0000\u000bp\u0000\b0\u0000\u0004args\u0000\u0000\u0002t\u0000\u0000\u0010\u0002s\u0000\u0003onm\u000bo\u0000\u000e0\u0000\nsubcommand\u0000\u0000\u000bn\u0000\b0\u0000\u0004args\u0000\u0000\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0002t\u0000\n\u0001l\u0001k\u0001ji\u0001\u0001\u0001\u000bl\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u000bk\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\nj\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\ni\u0000\u0004\ncobj\u0011s\u0000A*k+\u0000\u0001O*jl+\u0000\u0003O*%k+\u0000\u0001O\u0017\u0000\u001ekj\f\u0000\u0005kh\u001c\u0000\u0002*\/%l+\u0000\u0003[OYO*k+\u0000\u0001OP\u000f\u000e\u0002h\u0000\u0007\u0010h\u0001gf\u0002v\u0002we\u000bh\u0000\u001c0\u0000\ftypingstring\u0000\ftypingString\u000eg\u0000\u0002\u0004d\u0002x\u0003d\u0000\u0001\u000e\u0002x\u0000\u0001\u0000c\u000bc\u0000\u000b0\u0000\u0007content\u0000\u0000\u0002f\u0000\u0000\u0010\u0002v\u0000\u0001b\u000bb\u0000\u000b0\u0000\u0007content\u0000\u0000\u0010\u0002w\u0000\u0002\u0001a\u000ba\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u0011e\u0000\b*l+\u0000\u0001\u000f\u000e\u0002i\u0000\u0007\u0010`\u0001_^\u0002y\u0002z]\u000b`\u0000.0\u0000\u0015typingstringwithdelay\u0000\u0015typingStringWithDelay\u000e_\u0000\u0002\u0004\\\u0002{\u0003\\\u0000\u0002\u000e\u0002{\u0000\u0002\u0000[Z\u000b[\u0000\u000b0\u0000\u0007content\u0000\u0000\u000bZ\u0000\u00060\u0000\u0002dy\u0000\u0000\u0002^\u0000\u0000\u0010\u0002y\u0000\u0004YXWV\u000bY\u0000\u000b0\u0000\u0007content\u0000\u0000\u000bX\u0000\u00060\u0000\u0002dy\u0000\u0000\u000bW\u0000\u00140\u0000\bcharlist\u0000\bcharList\u000bV\u0000\b0\u0000\u0004char\u0000\u0000\u0010\u0002z\u0000\u000e\u0002\u0000UTSRQPONMLKJI\nU\u0000\u0004\nCrwn\nT\u0000\u0004\nWcsn\nS\u0000\u0004\ncha \nR\u0000\u0004\nleng\nQ\u0000\u0004\nkocl\nP\u0000\u0004\ncobj\nO\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nN\u0000\u0004\nText\nM\u0000\u0004\nWtnl\nL\u0000\b\u000bsavono \u0003K\u0000\u0004\nJ\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \nI\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011]\u0000C\u0012\u0000?*,,\u0012\u00006[\\[Zk\\Z,2EO\u0017\u0000#[l\f\u0000\u0007kh\u001b\u0000\u0003*\f\u0000\fOj\f\u0000\r[OYUU\u000f\u000e\u0002j\u0000\u0007\u0010H\u0002\u0006GF\u0002|\u0002}E\u000bH\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u000eG\u0000\u0002\u0004D\u0002~\u0003D\u0000\u0001\u000e\u0002~\u0000\u0001\u0000C\u000bC\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002F\u0000\u0000\u0010\u0002|\u0000\u0001B\u000bB\u0000\u000b0\u0000\u0007command\u0000\u0000\u0010\u0002}\u0000\u0005\u0002\u0011A@?>\nA\u0000\u0004\nCrwn\n@\u0000\u0004\nWcsn\n?\u0000\u0004\nText\n>\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0011E\u0000\u0016\u0012\u0000\u0012*,,\u0012\u0000\t*l\f\u0000\u0004UU\u000f\u000e\u0002k\u0000\u0007\u0010=\u0002\u0017<;\u0002\u0002:\u000b=\u0000\t0\u0000\u0005clear\u0000\u0000\u0002<\u0000\u0000\u0002;\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0004\u0002\u001d9\u0002!8\u000b9\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\n8\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011:\u0000\r*k+\u0000\u0001Oj\f\u0000\u0003\u000f\u000e\u0002l\u0000\u0007\u00107\u0002'65\u0002\u00024\u000b7\u0000\u001c0\u0000\fisapprunning\u0000\fisAppRunning\u000e6\u0000\u0002\u00043\u0002\u00033\u0000\u0001\u000e\u0002\u0000\u0001\u00002\u000b2\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u00025\u0000\u0000\u0010\u0002\u0000\u00011\u000b1\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0010\u0002\u0000\u0003\u000210\/\n0\u0000\u0004\nprcs\n\/\u0000\u0004\npnam\u00114\u0000\r\u0012\u0000\t*-,\bU\u000f\u000e\u0002m\u0000\u0007\u0010.\u00027-,\u0002\u0002+\u000b.\u0000 0\u0000\u000esetwindowtitle\u0000\u000esetWindowTitle\u000e-\u0000\u0002\u0004*\u0002\u0003*\u0000\u0001\u000e\u0002\u0000\u0001\u0000)\u000b)\u0000\t0\u0000\u0005title\u0000\u0000\u0002,\u0000\u0000\u0010\u0002\u0000\u0001(\u000b(\u0000\t0\u0000\u0005title\u0000\u0000\u0010\u0002\u0000\u0003\u0002@\u0002B'\u000b'\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u0011+\u0000\u000b*%%k+\u0000\u0002\u000f\u000e\u0002n\u0000\u0007\u0010&\u0002I%$\u0002\u0002#\u000b&\u0000 0\u0000\u000eactivateiterms\u0000\u000eactivateiTerms\u0002%\u0000\u0000\u0002$\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0004\u0002O\"\u0002S!\u000b\"\u0000\u001c0\u0000\fisapprunning\u0000\fisAppRunning\n!\u0000\u0018.miscactvnull\u0000\u0000null\u0011#\u0000\u001c*k+\u0000\u0001\u001d\u0000\u000f\u0012\u0000\u0007*j\f\u0000\u0003UY\u0000\u0007j\f\u0000\u0003\u000f\u000e\u0002o\u0000\u0007\u0010 \u0002[\u001f\u001e\u0002\u0002\u001d\u000b \u0000 0\u0000\u000egetcurrentpath\u0000\u000egetCurrentPath\u0002\u001f\u0000\u0000\u0002\u001e\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0003\u0002c\u001c\u001b\n\u001c\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u001b\u0000\u0004\nctnr\u0011\u001d\u0000\u000f\u0012\u0000\u000b)j\f\u0000\u0001,E\u000fU\u000f\u000e\u0002p\u0000\u0007\u0010\u001a\u0002\u0019\u0018\u0002\u0002\u0017\n\u001a\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0011\u0002\u0002\u0002\u0000\u0002\u0000y\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0000\u0002\u0002\u0002\u0000\u0002\u0001\u0003\u0002\u0002\u0002\u0000\u0002\u0001\u0006\u0002\u0002\u0002\u0000\u0002\u0001\u0017\u0002\u0002\u0002\u0000\u0002\u0001\u001b\u0002\u0002\u0002\u0000\u0002\u0001\u001e\u0002\u0002\u0002\u0000\u0002\u0001+\u0002\u0002\u0002\u0000\u0002\u0001\/\u0002\u0002\u0002\u0000\u0002\u00016\u0002\u0002\u0002\u0000\u0002\u0001;\u0002\u0002\u0002\u0000\u0002\u0001M\u0002\u0002\u0002\u0000\u0002\u0001T\u0002\u0002\u0002\u0000\u0002\u0001[\u0002\u0002\u0002\u0000\u0002\u0001i\u0002\u0002\u0002\u0000\u0002\u0001p\u0016\u0002\u0016\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u0018\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000+\u0015\u0014\u0013\u0012\u0000\u0011\u0000\u0010\u000f\u0000\u000e\u0000\u0000\r\u0000\u0000\f\u0000\u0000\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0001\f\u0001\u0012\u0001\u0015\u0001$\u0001)\u00014\u0001D\u0001K\u0001R\u0001Y\u0001`\u0001n\u0001u\u000b\u0015\u0000 0\u0000\u000egetcurrentpath\u0000\u000egetCurrentPath\n\u0014\u0000\u0004\nalis\u000b\u0013\u0000\u001a0\u0000\u000bcurrentpath\u0000\u000bcurrentPath\u000b\u0012\u0000 0\u0000\u000eactivateiterms\u0000\u000eactivateiTerms\u000b\u0011\u0000 0\u0000\u000esetwindowtitle\u0000\u000esetWindowTitle\n\u0010\u0000\u0004\npsxp\n\u000f\u0000\u0004\nstrq\u000b\u000e\u0000\u00180\u0000\nruncommand\u0000\nrunCommand\u000b\r\u0000\t0\u0000\u0005clear\u0000\u0000\n\f\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u000b\u000000\u0000\u0016runtystringssubcommand\u0000\u0016runTyStringsSubCommand\u0003\n\u0000\u0006\u0011\u0017\u0001\u0012*j+\u0000\u0000&EO*j+\u0000\u0003O*k+\u0000\u0005O*,,%%k+\u0000\nO*k+\u0000\nO*k+\u0000\nO*j+\u0000\rO*k+\u0000\nOj\f\u0000\u0010O*a\u0000\u0011a\u0000\u0012a\u0000\u0013a\u0000\u0014mvl+\u0000\u0015Olj\f\u0000\u0010O*j+\u0000\rO*a\u0000\u0016a\u0000\u0017a\u0000\u0018a\u0000\u0019a\u0000\u001aa\u0000\u001ba\u0000\u001ca\u0000\u001dvl+\u0000\u0015Olj\f\u0000\u0010O*j+\u0000\rO*a\u0000\u001ea\u0000\u001fa\u0000 lvl+\u0000\u0015Olj\f\u0000\u0010O*j+\u0000\rO*a\u0000!a\u0000\"kvl+\u0000\u0015Olj\f\u0000\u0010O*a\u0000#k+\u0000\nOj\f\u0000\u0010O*a\u0000$,,%a\u0000%%k+\u0000\nO*a\u0000&k+\u0000\nO*a\u0000'k+\u0000\nO*a\u0000(k+\u0000\nO*a\u0000)k+\u0000\nO*a\u0000*k+\u0000\n\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2e4d7eab4b0477f851a505aec53411b8ad5067fb","subject":"fixed typo in comments","message":"fixed typo in comments\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"70ef4fe62b06ca79438400ea702b324ba94c1b71","subject":"Update script for open current document","message":"Update script for open current document\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myRemoveSubString(oldString, subString)\nset myString to NSString's stringWithString:oldString\nset newString to myString's stringByReplacingOccurrencesOfString:subString withString:\"\"\nnewString as text\nend myRemoveSubString\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\"\\t\"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\non myCurrentFilePath()\ntell application \"Xcode\"\nset activeDocument to document 1 whose name ends with (word -1 of (get name of window 1))\npath of activeDocument\nend tell\nend myCurrentFilePath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myGitHubURL()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nset myUrlWithOutDotGit to myRemoveSubString(myUrl, \".git\")\nend myGitHubURL\n\non myOpenGitHub()\nset myUrl to myGitHubUrlOnMaster()\nopen location myUrl\nend myOpenGitHub\n\non myGitHubUrlOnMaster()\nset gitHubPath to myGitHubURL()\nset myUrl to gitHubPath & \"\/blob\/master\"\nend myGitHubUrlOnMaster\n\non myOpenFileInGitHub()\nset currentFilePath to myCurrentFilePath()\nset projectPath to myProjectPath()\nset gitHubPath to myGitHubUrlOnMaster()\nset relativePath to myRemoveSubString(currentFilePath, projectPath)\nset fullUrl to gitHubPath & relativePath\nopen location fullUrl\nend myOpenFileInGitHub\n\non myOpenDocument()\nset command1 to \"cd ~\/Library\/Developer\/CoreSimulator\/Devices\/;\"\nset command2 to \"cd `ls -t | head -n 1`\/data\/Containers\/Data\/Application;\"\nset command3 to \"cd `ls -t | head -n 1`\/Documents;\"\nset command4 to \"open .\"\ndo shell script command1 & command2 & command3 & command4\nend myOpenDocument\n\non myOpenAbout()\nopen location \"https:\/\/github.com\/onmyway133\/XcodeWay\"\nend myOpenAbout\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\non myGetRemote(myText)\nset myString to NSString's stringWithString:myText\nset myParts to myString's componentsSeparatedByString:\"\\t\"\nset myFirstParts to item 1 of myParts\nmyFirstParts as text\nend myGetRemote\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myConsoleOutput to (do shell script \"cd \" & quoted form of myPath & \"; git remote -v\")\nset myRemote to myGetRemote(myConsoleOutput)\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.\" & quoted form of myRemote & \".url\")\nopen location myUrl\nend myOpenGitHub\n\non myOpenDocument()\nset command1 to \"cd ~\/Library\/Developer\/CoreSimulator\/Devices\/;\"\nset command2 to \"cd `ls -t | head -n 1`\/data\/Containers\/Data\/Application;\"\nset command3 to \"cd `ls -t | head -n 1`\/Documents;\"\nset command4 to \"open .\"\ndo shell script command1 & command2 & command3 & command4\nend myOpenDocument\n\non myOpenAbout()\nopen location \"https:\/\/github.com\/onmyway133\/XcodeWay\"\nend myOpenAbout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"958d2c98de9dde997d5698ecedae6f8a37ba42e4","subject":"Should not fail on Spotify updates anymore","message":"Should not fail on Spotify updates anymore\n\nFixes #5\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"property debug : false\nproperty currentVolume : null\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\nrepeat\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n end try\n repeat\n delay 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n delay 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n delay 0.3\nend repeat\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","old_contents":"property debug : false\nproperty currentVolume : null\n\nif (my isTheFirstRun() = true and my isInLoginItems() = false) then\n\tset userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \n\t\treturn & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \n\t\t& \"BTW, do you want it to run automatically on startup?\" with title \n\t\t\"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n\tif (userAnswer = \"OK\") then\n\t\ttry\n\t\t\tmy addToLoginItems()\n\t\tend try\n\tend if\n\ttry\n\t\t-- Save in the preferences that Spotifree has already ran.\n\t\tdo shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n\tend try\nend if\n\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying() and isAnAd()) then\n\t\t\ttry\n\t\t\t\tmute()\n\t\t\tend try\n\t\t\trepeat\n\t\t\t\ttry\n\t\t\t\t\tif (isAnAd() = false) then\n\t\t\t\t\t\t-- Have to delay a little bit, because Spotify may tell us about the next track too early,\n\t\t\t\t\t\t-- and a user has to hear the last half-second of an ad.\n\t\t\t\t\t\tdelay 0.8\n\t\t\t\t\t\tunmute()\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\tdelay 0.3\n\t\t\tend repeat\n\t\telse\n\t\t\t-- Delaying, to get less of the crashing \"connection is invalid\" errors.\n\t\t\tdelay 1\n\t\tend if\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"some unhandled error in the outer loop.\")\n\tend try\n\t-- This is how fast we are polling Spotify.\n\t-- The only speed at which you will hear almost no sounds passing through.\n\t-- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\tset currentVolume to sound volume\n\t\t\t-- This is the only way possible to mute Spotify during an advertisement.\n\t\t\t-- Otherwise it pauses when you mute the sound.\n\t\t\tpause\n\t\t\tset sound volume to 0\n\t\t\tplay\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to mute Spotify.\")\n\tend try\n\treturn\nend mute\n\non unmute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to restore Spotify's volume.\")\n\tend try\n\treturn\nend unmute\n\non isAnAd()\n\tlocal currentTrackPopularity, currentTrackDuration\n\tset currentTrackPopularity to null\n\tset currentTrackDuration to null\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\tset currentTrackDuration to duration of current track\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"trying to get popularity and duration of the current track.\")\n\t\treturn false\n\tend try\n\tif ((currentTrackPopularity null and currentTrackDuration null) and (currentTrackPopularity = 0 and currentTrackDuration 40)) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\tset playerState to null\n\t-- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n\twith timeout of (5) seconds\n\t\ttry\n\t\t\ttell application \"Spotify\"\n\t\t\t\tset playerState to player state\n\t\t\tend tell\n\t\ton error errorMessage number errorNumber\n\t\t\tmy log_error(errorNumber, errorMessage, \"counting Spotify processes.\")\n\t\t\treturn false\n\t\tend try\n\tend timeout\n\tif (playerState null and playerState = constant ****kPSP) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\t-- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n\twith timeout of (5) seconds\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\tset spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n\t\t\tend tell\n\t\ton error errorMessage number errorNumber\n\t\t\tmy log_error(errorNumber, errorMessage, \"counting Spotify processes.\")\n\t\t\treturn false\n\t\tend try\n\tend timeout\n\tif spotifyProcesses = 1 then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isRunning\n\non addToLoginItems()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Add Spotifree to the Login Items.\n\t\t\tmake login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"adding Spotifree to the Login Items\")\n\t\treturn\n\tend try\nend addToLoginItems\n\non isTheFirstRun()\n\ttry\n\t\t-- Get the value of the key 'hasRanBefore' in the file \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n\t\tset hasRanBefore to do shell script \"defaults read com.ArtemGordinsky.Spotifree 'hasRanBefore'\"\n\ton error errorMessage number errorNumber\n\t\t-- If the file not there yet, an error is going to be thrown. So it's the first run, probably.\n\t\t-- We are going to return 'true' even if it was some other error. Not a big deal, after all.\n\t\tmy log_error(errorNumber, errorMessage, \"checking is Spotify being run the first time.\")\n\t\treturn true\n\tend try\n\t\n\tif (hasRanBefore = \"true\") then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isTheFirstRun\n\non isInLoginItems()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif login item \"Spotifree\" exists then\n\t\t\t\treturn true\n\t\t\telse\n\t\t\t\treturn false\n\t\t\tend if\n\t\tend tell\n\ton error errorMessage number errorNumber\n\t\tmy log_error(errorNumber, errorMessage, \"checking if Spotify is in Login Items\")\n\t\treturn false\n\tend try\nend isInLoginItems\n\non log_message(message)\n\tlocal content\n\tset content to (return & \n\t\t\"-----------------------------------------------------------\" & \n\t\treturn & my dateAndTime() & return & message & return \n\t\t& \"-----------------------------------------------------------\" & return)\n\tset log_file to (((path to desktop folder) as text) & \"Spotifree_log.txt\")\n\tmy write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, diag_message)\n\tlocal content\n\tif (debug = true) then\n\t\tset content to (return & \"-----------------------------------------------------------\" & \n\t\t\treturn & my dateAndTime() & return & \"Error number: \" & error_number \n\t\t\t& return & \"Error message: \" & error_message & return & \n\t\t\t\"Diagnostic message: \" & diag_message & return \n\t\t\t& \"-----------------------------------------------------------\" & return)\n\t\tset log_file to (((path to desktop folder) as text) & \"Spotifree_log.txt\")\n\t\tmy write_to_file(content, log_file, true)\n\tend if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n\ttry\n\t\tset the target_file to the target_file as text\n\t\tset the open_target_file to \n\t\t\topen for access file target_file with write permission\n\t\tif append_data is false then \n\t\t\tset eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\tend try\nend write_to_file\n\non dateAndTime()\n\tset currentDateAndTime to (current date) as string\n\treturn currentDateAndTime\nend dateAndTime","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d47dca835ccb7345b9af35a2e38a5242d910f663","subject":"Fix typo in script","message":"Fix typo in script\n","repos":"alexwlchan\/safari.rs,alexwlchan\/safari.rs","old_file":"src\/scripts\/clean-tabs.scpt","new_file":"src\/scripts\/clean-tabs.scpt","new_contents":"tell application \"Safari\"\n repeat with t in tabs of windows\n tell t\n -- If you open lots of windows in Safari, some of this book-\n -- keeping goes wrong. It will try to look up tab N, except\n -- tab N was already closed -- error!\n --\n -- For safety, we just catch and discard all errors.\n {% for condition in conditions %}\n try\n tell t\n if (URL {{ condition}}) then close\n end tell\n end try\n {% endfor %}\n end tell\n end repeat\nend tell\n","old_contents":"tell application \"Safari\"\n repeat with t in tabs of windows\n tell t\n -- If you open lots of windows in Safari, some of this book-\n -- keeping goes wrong. It will try to look up tab N, except\n -- tab N was already closed -- error!\n --\n -- For safety, we just catch and discard all errors.\n {% for condition in conditionss %}\n try\n tell t\n if (URL {{ condition}}) then close\n end tell\n end try\n {% endfor %}\n end tell\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ea5845e62b1a99d60849a6c66ff1e2770ddbe1d1","subject":"uninstaller script has to shut down running agent as well","message":"uninstaller script has to shut down running agent as well\n","repos":"nntoan\/totalfinder-i18n,nntoan\/totalfinder-i18n,nntoan\/totalfinder-i18n","old_file":"uninstaller\/uninstall.applescript","new_file":"uninstaller\/uninstall.applescript","new_contents":"on run\n\tset newline to ASCII character 10\n\tset stdout to \"\"\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher was not running\" & newline\n\tend try\n\tset stdout to stdout & \" shutdown TotalFinder agent ...\" & newline\n\ttry\n\t\tdo shell script \"killall TotalFinder\" with administrator privileges\n on error\n\t\tset stdout to stdout & \" TotalFinder agent was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- we created unnamed login item up to version 1.4.18 (TotalFinder.app is filename)\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\t\t-- since 1.4.19 we are creating named login item \"TotalFinder\"\n\t\t\tif login item \"TotalFinder\" exists then\n\t\t\t\tdelete login item \"TotalFinder\"\n\t\t\tend if\n\t\tend tell\t\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalFinder uninstallation done\"\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"on run\n\tset newline to ASCII character 10\n\tset stdout to \"\"\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- we created unnamed login item up to version 1.4.18 (TotalFinder.app is filename)\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\t\t-- since 1.4.19 we are creating named login item \"TotalFinder\"\n\t\t\tif login item \"TotalFinder\" exists then\n\t\t\t\tdelete login item \"TotalFinder\"\n\t\t\tend if\n\t\tend tell\t\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalFinder uninstallation done\"\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"28b72d57bea12f459613959eb03cecd5dd32f30c","subject":"chore(scpt): update editorconfig.scpt","message":"chore(scpt): update editorconfig.scpt\n","repos":"umireon\/editorconfig-jxa,umireon\/editorconfig-jxa","old_file":"dist\/editorconfig.scpt","new_file":"dist\/editorconfig.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u0011=\/*! editorconfig-jxa v0.0.0-development *\/\n'use strict';\n\n!function(exports){\nObject.defineProperty(exports, '__esModule', { value: true });\n\nfunction readFileSync (file, encoding) {\n const error = $();\n const nsstr = $.NSString.stringWithContentsOfFileEncodingError(file, encoding, error);\n if (!error.isNil()) throw new Error(error.description.js)\n return nsstr.js\n}\n\n\nvar jxaFs = Object.freeze({\n\treadFileSync: readFileSync\n});\n\nfunction resolve (path) {\n return $(path).stringByStandardizingPath.js\n}\n\nfunction dirname (path) {\n return $(path).stringByDeletingLastPathComponent.js\n}\n\nfunction join (path) {\n return $.NSString.pathWithComponents(Array.from(arguments)).js\n}\n\nvar sep = '\/';\n\n\nvar jxaPath = Object.freeze({\n\tresolve: resolve,\n\tdirname: dirname,\n\tjoin: join,\n\tsep: sep\n});\n\nvar index$2 = function (xs, fn) {\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n var x = fn(xs[i], i);\n if (isArray(x)) res.push.apply(res, x);\n else res.push(x);\n }\n return res;\n};\n\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\n\nvar index$4 = balanced$1;\nfunction balanced$1(a, b, str) {\n if (a instanceof RegExp) a = maybeMatch(a, str);\n if (b instanceof RegExp) b = maybeMatch(b, str);\n\n var r = range(a, b, str);\n\n return r && {\n start: r[0],\n end: r[1],\n pre: str.slice(0, r[0]),\n body: str.slice(r[0] + a.length, r[1]),\n post: str.slice(r[1] + b.length)\n };\n}\n\nfunction maybeMatch(reg, str) {\n var m = str.match(reg);\n return m ? m[0] : null;\n}\n\nbalanced$1.range = range;\nfunction range(a, b, str) {\n var begs, beg, left, right, result;\n var ai = str.indexOf(a);\n var bi = str.indexOf(b, ai + 1);\n var i = ai;\n\n if (ai >= 0 && bi > 0) {\n begs = [];\n left = str.length;\n\n while (i >= 0 && !result) {\n if (i == ai) {\n begs.push(i);\n ai = str.indexOf(a, i + 1);\n } else if (begs.length == 1) {\n result = [ begs.pop(), bi ];\n } else {\n beg = begs.pop();\n if (beg < left) {\n left = beg;\n right = bi;\n }\n\n bi = str.indexOf(b, i + 1);\n }\n\n i = ai < bi && ai >= 0 ? ai : bi;\n }\n\n if (begs.length) {\n result = [ left, right ];\n }\n }\n\n return result;\n}\n\nvar concatMap = index$2;\nvar balanced = index$4;\n\nvar index = expandTop;\n\nvar escSlash = '\\0SLASH'+Math.random()+'\\0';\nvar escOpen = '\\0OPEN'+Math.random()+'\\0';\nvar escClose = '\\0CLOSE'+Math.random()+'\\0';\nvar escComma = '\\0COMMA'+Math.random()+'\\0';\nvar escPeriod = '\\0PERIOD'+Math.random()+'\\0';\n\nfunction numeric(str) {\n return parseInt(str, 10) == str\n ? parseInt(str, 10)\n : str.charCodeAt(0);\n}\n\nfunction escapeBraces(str) {\n return str.split('\\\\\\\\').join(escSlash)\n .split('\\\\{').join(escOpen)\n .split('\\\\}').join(escClose)\n .split('\\\\,').join(escComma)\n .split('\\\\.').join(escPeriod);\n}\n\nfunction unescapeBraces(str) {\n return str.split(escSlash).join('\\\\')\n .split(escOpen).join('{')\n .split(escClose).join('}')\n .split(escComma).join(',')\n .split(escPeriod).join('.');\n}\n\n\n\/\/ Basically just str.split(\",\"), but handling cases\n\/\/ where we have nested braced sections, which should be\n\/\/ treated as individual members, like {a,{b,c},d}\nfunction parseCommaParts(str) {\n if (!str)\n return [''];\n\n var parts = [];\n var m = balanced('{', '}', str);\n\n if (!m)\n return str.split(',');\n\n var pre = m.pre;\n var body = m.body;\n var post = m.post;\n var p = pre.split(',');\n\n p[p.length-1] += '{' + body + '}';\n var postParts = parseCommaParts(post);\n if (post.length) {\n p[p.length-1] += postParts.shift();\n p.push.apply(p, postParts);\n }\n\n parts.push.apply(parts, p);\n\n return parts;\n}\n\nfunction expandTop(str) {\n if (!str)\n return [];\n\n \/\/ I don't know why Bash 4.3 does this, but it does.\n \/\/ Anything starting with {} will have the first two bytes preserved\n \/\/ but *only* at the top level, so {},a}b will not expand to anything,\n \/\/ but a{},b}c will be expanded to [a}c,abc].\n \/\/ One could argue that this is a bug in Bash, but since the goal of\n \/\/ this module is to match Bash's rules, we escape a leading {}\n if (str.substr(0, 2) === '{}') {\n str = '\\\\{\\\\}' + str.substr(2);\n }\n\n return expand$1(escapeBraces(str), true).map(unescapeBraces);\n}\n\nfunction embrace(str) {\n return '{' + str + '}';\n}\nfunction isPadded(el) {\n return \/^-?0\\d\/.test(el);\n}\n\nfunction lte(i, y) {\n return i <= y;\n}\nfunction gte(i, y) {\n return i >= y;\n}\n\nfunction expand$1(str, isTop) {\n var expansions = [];\n\n var m = balanced('{', '}', str);\n if (!m || \/\\$$\/.test(m.pre)) return [str];\n\n var isNumericSequence = \/^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$\/.test(m.body);\n var isAlphaSequence = \/^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$\/.test(m.body);\n var isSequence = isNumericSequence || isAlphaSequence;\n var isOptions = \/^(.*,)+(.+)?$\/.test(m.body);\n if (!isSequence && !isOptions) {\n \/\/ {a},b}\n if (m.post.match(\/,.*\\}\/)) {\n str = m.pre + '{' + m.body + escClose + m.post;\n return expand$1(str);\n }\n return [str];\n }\n\n var n;\n if (isSequence) {\n n = m.body.split(\/\\.\\.\/);\n } else {\n n = parseCommaParts(m.body);\n if (n.length === 1) {\n \/\/ x{{a,b}}y ==> x{a}y x{b}y\n n = expand$1(n[0], false).map(embrace);\n if (n.length === 1) {\n var post = m.post.length\n ? expand$1(m.post, false)\n : [''];\n return post.map(function(p) {\n return m.pre + n[0] + p;\n });\n }\n }\n }\n\n \/\/ at this point, n is the parts, and we know it's not a comma set\n \/\/ with a single entry.\n\n \/\/ no need to expand pre, since it is guaranteed to be free of brace-sets\n var pre = m.pre;\n var post = m.post.length\n ? expand$1(m.post, false)\n : [''];\n\n var N;\n\n if (isSequence) {\n var x = numeric(n[0]);\n var y = numeric(n[1]);\n var width = Math.max(n[0].length, n[1].length);\n var incr = n.length == 3\n ? Math.abs(numeric(n[2]))\n : 1;\n var test = lte;\n var reverse = y < x;\n if (reverse) {\n incr *= -1;\n test = gte;\n }\n var pad = n.some(isPadded);\n\n N = [];\n\n for (var i = x; test(i, y); i += incr) {\n var c;\n if (isAlphaSequence) {\n c = String.fromCharCode(i);\n if (c === '\\\\')\n c = '';\n } else {\n c = String(i);\n if (pad) {\n var need = width - c.length;\n if (need > 0) {\n var z = new Array(need + 1).join('0');\n if (i < 0)\n c = '-' + z + c.slice(1);\n else\n c = z + c;\n }\n }\n }\n N.push(c);\n }\n } else {\n N = concatMap(n, function(el) { return expand$1(el, false) });\n }\n\n for (var j = 0; j < N.length; j++) {\n for (var k = 0; k < post.length; k++) {\n var expansion = pre + N[j] + post[k];\n if (!isTop || isSequence || expansion)\n expansions.push(expansion);\n }\n }\n\n return expansions;\n}\n\nvar require$$1$1 = ( jxaPath && jxaPath['default'] ) || jxaPath;\n\nvar minimatch_1 = minimatch;\nminimatch.Minimatch = Minimatch;\n\nvar path = { sep: '\/' };\ntry {\n path = require$$1$1;\n} catch (er) {}\n\nvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};\nvar expand = index;\n\nvar plTypes = {\n '!': { open: '(?:(?!(?:', close: '))[^\/]*?)'},\n '?': { open: '(?:', close: ')?' },\n '+': { open: '(?:', close: ')+' },\n '*': { open: '(?:', close: ')*' },\n '@': { open: '(?:', close: ')' }\n};\n\n\/\/ any single thing other than \/\n\/\/ don't need to escape \/ when using new RegExp()\nvar qmark = '[^\/]';\n\n\/\/ * => any number of characters\nvar star = qmark + '*?';\n\n\/\/ ** when dots are allowed. Anything goes, except .. and .\n\/\/ not (^ or \/ followed by one or two dots followed by $ or \/),\n\/\/ followed by anything, any number of times.\nvar twoStarDot = '(?:(?!(?:\\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\\/)).)*?';\n\n\/\/ not a ^ or \/ followed by a dot,\n\/\/ followed by anything, any number of times.\nvar twoStarNoDot = '(?:(?!(?:\\\\\\\/|^)\\\\.).)*?';\n\n\/\/ characters that need to be escaped in RegExp.\nvar reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\/\/ \"abc\" -> { a:true, b:true, c:true }\nfunction charSet (s) {\n return s.split('').reduce(function (set, c) {\n set[c] = true;\n return set\n }, {})\n}\n\n\/\/ normalizes slashes.\nvar slashSplit = \/\\\/+\/;\n\nminimatch.filter = filter;\nfunction filter (pattern, options) {\n options = options || {};\n return function (p, i, list) {\n return minimatch(p, pattern, options)\n }\n}\n\nfunction ext (a, b) {\n a = a || {};\n b = b || {};\n var t = {};\n Object.keys(b).forEach(function (k) {\n t[k] = b[k];\n });\n Object.keys(a).forEach(function (k) {\n t[k] = a[k];\n });\n return t\n}\n\nminimatch.defaults = function (def) {\n if (!def || !Object.keys(def).length) return minimatch\n\n var orig = minimatch;\n\n var m = function minimatch (p, pattern, options) {\n return orig.minimatch(p, pattern, ext(def, options))\n };\n\n m.Minimatch = function Minimatch (pattern, options) {\n return new orig.Minimatch(pattern, ext(def, options))\n };\n\n return m\n};\n\nMinimatch.defaults = function (def) {\n if (!def || !Object.keys(def).length) return Minimatch\n return minimatch.defaults(def).Minimatch\n};\n\nfunction minimatch (p, pattern, options) {\n if (typeof pattern !== 'string') {\n throw new TypeError('glob pattern string required')\n }\n\n if (!options) options = {};\n\n \/\/ shortcut: comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n return false\n }\n\n \/\/ \"\" only matches \"\"\n if (pattern.trim() === '') return p === ''\n\n return new Minimatch(pattern, options).match(p)\n}\n\nfunction Minimatch (pattern, options) {\n if (!(this instanceof Minimatch)) {\n return new Minimatch(pattern, options)\n }\n\n if (typeof pattern !== 'string') {\n throw new TypeError('glob pattern string required')\n }\n\n if (!options) options = {};\n pattern = pattern.trim();\n\n \/\/ windows support: need to use \/, not \\\n if (path.sep !== '\/') {\n pattern = pattern.split(path.sep).join('\/');\n }\n\n this.options = options;\n this.set = [];\n this.pattern = pattern;\n this.regexp = null;\n this.negate = false;\n this.comment = false;\n this.empty = false;\n\n \/\/ make the set of regexps etc.\n this.make();\n}\n\nMinimatch.prototype.debug = function () {};\n\nMinimatch.prototype.make = make;\nfunction make () {\n \/\/ don't do it more than once.\n if (this._made) return\n\n var pattern = this.pattern;\n var options = this.options;\n\n \/\/ empty patterns and comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n this.comment = true;\n return\n }\n if (!pattern) {\n this.empty = true;\n return\n }\n\n \/\/ step 1: figure out negation, etc.\n this.parseNegate();\n\n \/\/ step 2: expand braces\n var set = this.globSet = this.braceExpand();\n\n if (options.debug) this.debug = console.error;\n\n this.debug(this.pattern, set);\n\n \/\/ step 3: now we have a set, so turn each one into a series of path-portion\n \/\/ matching patterns.\n \/\/ These will be regexps, except in the case of \"**\", which is\n \/\/ set to the GLOBSTAR object for globstar behavior,\n \/\/ and will not contain any \/ characters\n set = this.globParts = set.map(function (s) {\n return s.split(slashSplit)\n });\n\n this.debug(this.pattern, set);\n\n \/\/ glob --> regexps\n set = set.map(function (s, si, set) {\n return s.map(this.parse, this)\n }, this);\n\n this.debug(this.pattern, set);\n\n \/\/ filter out everything that didn't compile properly.\n set = set.filter(function (s) {\n return s.indexOf(false) === -1\n });\n\n this.debug(this.pattern, set);\n\n this.set = set;\n}\n\nMinimatch.prototype.parseNegate = parseNegate;\nfunction parseNegate () {\n var pattern = this.pattern;\n var negate = false;\n var options = this.options;\n var negateOffset = 0;\n\n if (options.nonegate) return\n\n for (var i = 0, l = pattern.length\n ; i < l && pattern.charAt(i) === '!'\n ; i++) {\n negate = !negate;\n negateOffset++;\n }\n\n if (negateOffset) this.pattern = pattern.substr(negateOffset);\n this.negate = negate;\n}\n\n\/\/ Brace expansion:\n\/\/ a{b,c}d -> abd acd\n\/\/ a{b,}c -> abc ac\n\/\/ a{0..3}d -> a0d a1d a2d a3d\n\/\/ a{b,c{d,e}f}g -> abg acdfg acefg\n\/\/ a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\/\/\n\/\/ Invalid sets are not expanded.\n\/\/ a{2..}b -> a{2..}b\n\/\/ a{b}c -> a{b}c\nminimatch.braceExpand = function (pattern, options) {\n return braceExpand(pattern, options)\n};\n\nMinimatch.prototype.braceExpand = braceExpand;\n\nfunction braceExpand (pattern, options) {\n if (!options) {\n if (this instanceof Minimatch) {\n options = this.options;\n } else {\n options = {};\n }\n }\n\n pattern = typeof pattern === 'undefined'\n ? this.pattern : pattern;\n\n if (typeof pattern === 'undefined') {\n throw new TypeError('undefined pattern')\n }\n\n if (options.nobrace ||\n !pattern.match(\/\\{.*\\}\/)) {\n \/\/ shortcut. no need to expand.\n return [pattern]\n }\n\n return expand(pattern)\n}\n\n\/\/ parse a component of the expanded set.\n\/\/ At this point, no pattern may contain \"\/\" in it\n\/\/ so we're going to return a 2d array, where each entry is the full\n\/\/ pattern, split on '\/', and then turned into a regular expression.\n\/\/ A regexp is made at the end which joins each array with an\n\/\/ escaped \/, and another full one which joins each regexp with |.\n\/\/\n\/\/ Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\/\/ when it is the *only* thing in a path portion. Otherwise, any series\n\/\/ of * is equivalent to a single *. Globstar behavior is enabled by\n\/\/ default, and can be disabled by setting options.noglobstar.\nMinimatch.prototype.parse = parse$1;\nvar SUBPARSE = {};\nfunction parse$1 (pattern, isSub) {\n if (pattern.length > 1024 * 64) {\n throw new TypeError('pattern is too long')\n }\n\n var options = this.options;\n\n \/\/ shortcuts\n if (!options.noglobstar && pattern === '**') return GLOBSTAR\n if (pattern === '') return ''\n\n var re = '';\n var hasMagic = !!options.nocase;\n var escaping = false;\n \/\/ ? => one single character\n var patternListStack = [];\n var negativeLists = [];\n var stateChar;\n var inClass = false;\n var reClassStart = -1;\n var classStart = -1;\n \/\/ . and .. never match anything that doesn't start with .,\n \/\/ even when options.dot is set.\n var patternStart = pattern.charAt(0) === '.' ? '' \/\/ anything\n \/\/ not (start or \/ followed by . or .. followed by \/ or end)\n : options.dot ? '(?!(?:^|\\\\\\\/)\\\\.{1,2}(?:$|\\\\\\\/))'\n : '(?!\\\\.)';\n var self = this;\n\n function clearStateChar () {\n if (stateChar) {\n \/\/ we had some state-tracking character\n \/\/ that wasn't consumed by this pass.\n switch (stateChar) {\n case '*':\n re += star;\n hasMagic = true;\n break\n case '?':\n re += qmark;\n hasMagic = true;\n break\n default:\n re += '\\\\' + stateChar;\n break\n }\n self.debug('clearStateChar %j %j', stateChar, re);\n stateChar = false;\n }\n }\n\n for (var i = 0, len = pattern.length, c\n ; (i < len) && (c = pattern.charAt(i))\n ; i++) {\n this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n \/\/ skip over any that are escaped.\n if (escaping && reSpecials[c]) {\n re += '\\\\' + c;\n escaping = false;\n continue\n }\n\n switch (c) {\n case '\/':\n \/\/ completely not allowed, even escaped.\n \/\/ Should already be path-split by now.\n return false\n\n case '\\\\':\n clearStateChar();\n escaping = true;\n continue\n\n \/\/ the various stateChar values\n \/\/ for the \"extglob\" stuff.\n case '?':\n case '*':\n case '+':\n case '@':\n case '!':\n this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n \/\/ all of those are literals inside a class, except that\n \/\/ the glob [!a] means [^a] in regexp\n if (inClass) {\n this.debug(' in class');\n if (c === '!' && i === classStart + 1) c = '^';\n re += c;\n continue\n }\n\n \/\/ if we already have a stateChar, then it means\n \/\/ that there was something like ** or +? in there.\n \/\/ Handle the stateChar, then proceed with this one.\n self.debug('call clearStateChar %j', stateChar);\n clearStateChar();\n stateChar = c;\n \/\/ if extglob is disabled, then +(asdf|foo) isn't a thing.\n \/\/ just clear the statechar *now*, rather than even diving into\n \/\/ the patternList stuff.\n if (options.noext) clearStateChar();\n continue\n\n case '(':\n if (inClass) {\n re += '(';\n continue\n }\n\n if (!stateChar) {\n re += '\\\\(';\n continue\n }\n\n patternListStack.push({\n type: stateChar,\n start: i - 1,\n reStart: re.length,\n open: plTypes[stateChar].open,\n close: plTypes[stateChar].close\n });\n \/\/ negation is (?:(?!js)[^\/]*)\n re += stateChar === '!' ? '(?:(?!(?:' : '(?:';\n this.debug('plType %j %j', stateChar, re);\n stateChar = false;\n continue\n\n case ')':\n if (inClass || !patternListStack.length) {\n re += '\\\\)';\n continue\n }\n\n clearStateChar();\n hasMagic = true;\n var pl = patternListStack.pop();\n \/\/ negation is (?:(?!js)[^\/]*)\n \/\/ The others are (?:<pattern>)<type>\n re += pl.close;\n if (pl.type === '!') {\n negativeLists.push(pl);\n }\n pl.reEnd = re.length;\n continue\n\n case '|':\n if (inClass || !patternListStack.length || escaping) {\n re += '\\\\|';\n escaping = false;\n continue\n }\n\n clearStateChar();\n re += '|';\n continue\n\n \/\/ these are mostly the same in regexp and glob\n case '[':\n \/\/ swallow any state-tracking char before the [\n clearStateChar();\n\n if (inClass) {\n re += '\\\\' + c;\n continue\n }\n\n inClass = true;\n classStart = i;\n reClassStart = re.length;\n re += c;\n continue\n\n case ']':\n \/\/ a right bracket shall lose its special\n \/\/ meaning and represent itself in\n \/\/ a bracket expression if it occurs\n \/\/ first in the list. -- POSIX.2 2.8.3.2\n if (i === classStart + 1 || !inClass) {\n re += '\\\\' + c;\n escaping = false;\n continue\n }\n\n \/\/ handle the case where we left a class open.\n \/\/ \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n if (inClass) {\n \/\/ split where the last [ was, make sure we don't have\n \/\/ an invalid re. if so, re-walk the contents of the\n \/\/ would-be class to re-translate any characters that\n \/\/ were passed through as-is\n \/\/ TODO: It would probably be faster to determine this\n \/\/ without a try\/catch and a new RegExp, but it's tricky\n \/\/ to do safely. For now, this is safe and works.\n var cs = pattern.substring(classStart + 1, i);\n try {\n RegExp('[' + cs + ']');\n } catch (er) {\n \/\/ not a valid class!\n var sp = this.parse(cs, SUBPARSE);\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]';\n hasMagic = hasMagic || sp[1];\n inClass = false;\n continue\n }\n }\n\n \/\/ finish up the class.\n hasMagic = true;\n inClass = false;\n re += c;\n continue\n\n default:\n \/\/ swallow any state char that wasn't consumed\n clearStateChar();\n\n if (escaping) {\n \/\/ no need\n escaping = false;\n } else if (reSpecials[c]\n && !(c === '^' && inClass)) {\n re += '\\\\';\n }\n\n re += c;\n\n } \/\/ switch\n } \/\/ for\n\n \/\/ handle the case where we left a class open.\n \/\/ \"[abc\" is valid, equivalent to \"\\[abc\"\n if (inClass) {\n \/\/ split where the last [ was, and escape it\n \/\/ this is a huge pita. We now have to re-walk\n \/\/ the contents of the would-be class to re-translate\n \/\/ any characters that were passed through as-is\n cs = pattern.substr(classStart + 1);\n sp = this.parse(cs, SUBPARSE);\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0];\n hasMagic = hasMagic || sp[1];\n }\n\n \/\/ handle the case where we had a +( thing at the *end*\n \/\/ of the pattern.\n \/\/ each pattern list stack adds 3 chars, and we need to go through\n \/\/ and escape any | chars that were passed through as-is for the regexp.\n \/\/ Go through and escape them, taking care not to double-escape any\n \/\/ | chars that were already escaped.\n for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n var tail = re.slice(pl.reStart + pl.open.length);\n this.debug('setting tail', re, pl);\n \/\/ maybe some even number of \\, then maybe 1 \\, followed by a |\n tail = tail.replace(\/((?:\\\\{2}){0,64})(\\\\?)\\|\/g, function (_, $1, $2) {\n if (!$2) {\n \/\/ the | isn't already escaped, so escape it.\n $2 = '\\\\';\n }\n\n \/\/ need to escape all those slashes *again*, without escaping the\n \/\/ one that we need for escaping the | character. As it works out,\n \/\/ escaping an even number of slashes can be done by simply repeating\n \/\/ it exactly after itself. That's why this trick works.\n \/\/\n \/\/ I am sorry that you have to see this.\n return $1 + $1 + $2 + '|'\n });\n\n this.debug('tail=%j\\n %s', tail, tail, pl, re);\n var t = pl.type === '*' ? star\n : pl.type === '?' ? qmark\n : '\\\\' + pl.type;\n\n hasMagic = true;\n re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n }\n\n \/\/ handle trailing things that only matter at the very end.\n clearStateChar();\n if (escaping) {\n \/\/ trailing \\\\\n re += '\\\\\\\\';\n }\n\n \/\/ only need to apply the nodot start if the re starts with\n \/\/ something that could conceivably capture a dot\n var addPatternStart = false;\n switch (re.charAt(0)) {\n case '.':\n case '[':\n case '(': addPatternStart = true;\n }\n\n \/\/ Hack to work around lack of negative lookbehind in JS\n \/\/ A pattern like: *.!(x).!(y|z) needs to ensure that a name\n \/\/ like 'a.xyz.yz' doesn't match. So, the first negative\n \/\/ lookahead, has to look ALL the way ahead, to the end of\n \/\/ the pattern.\n for (var n = negativeLists.length - 1; n > -1; n--) {\n var nl = negativeLists[n];\n\n var nlBefore = re.slice(0, nl.reStart);\n var nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n var nlLast = re.slice(nl.reEnd - 8, nl.reEnd);\n var nlAfter = re.slice(nl.reEnd);\n\n nlLast += nlAfter;\n\n \/\/ Handle nested stuff like *(*.js|!(*.json)), where open parens\n \/\/ mean that we should *not* include the ) in the bit that is considered\n \/\/ \"after\" the negated section.\n var openParensBefore = nlBefore.split('(').length - 1;\n var cleanAfter = nlAfter;\n for (i = 0; i < openParensBefore; i++) {\n cleanAfter = cleanAfter.replace(\/\\)[+*?]?\/, '');\n }\n nlAfter = cleanAfter;\n\n var dollar = '';\n if (nlAfter === '' && isSub !== SUBPARSE) {\n dollar = '$';\n }\n var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n re = newRe;\n }\n\n \/\/ if the re is not \"\" at this point, then we need to make sure\n \/\/ it doesn't match against an empty path part.\n \/\/ Otherwise a\/* will match a\/, which it should not.\n if (re !== '' && hasMagic) {\n re = '(?=.)' + re;\n }\n\n if (addPatternStart) {\n re = patternStart + re;\n }\n\n \/\/ parsing just a piece of a larger pattern.\n if (isSub === SUBPARSE) {\n return [re, hasMagic]\n }\n\n \/\/ skip the regexp for non-magical patterns\n \/\/ unescape anything in it, though, so that it'll be\n \/\/ an exact match against a file etc.\n if (!hasMagic) {\n return globUnescape(pattern)\n }\n\n var flags = options.nocase ? 'i' : '';\n try {\n var regExp = new RegExp('^' + re + '$', flags);\n } catch (er) {\n \/\/ If it was an invalid regular expression, then it can't match\n \/\/ anything. This trick looks for a character after the end of\n \/\/ the string, which is of course impossible, except in multi-line\n \/\/ mode, but it's not a \/m regex.\n return new RegExp('$.')\n }\n\n regExp._glob = pattern;\n regExp._src = re;\n\n return regExp\n}\n\nminimatch.makeRe = function (pattern, options) {\n return new Minimatch(pattern, options || {}).makeRe()\n};\n\nMinimatch.prototype.makeRe = makeRe;\nfunction makeRe () {\n if (this.regexp || this.regexp === false) return this.regexp\n\n \/\/ at this point, this.set is a 2d array of partial\n \/\/ pattern strings, or \"**\".\n \/\/\n \/\/ It's better to use .match(). This function shouldn't\n \/\/ be used, really, but it's pretty convenient sometimes,\n \/\/ when you just want to work with a regex.\n var set = this.set;\n\n if (!set.length) {\n this.regexp = false;\n return this.regexp\n }\n var options = this.options;\n\n var twoStar = options.noglobstar ? star\n : options.dot ? twoStarDot\n : twoStarNoDot;\n var flags = options.nocase ? 'i' : '';\n\n var re = set.map(function (pattern) {\n return pattern.map(function (p) {\n return (p === GLOBSTAR) ? twoStar\n : (typeof p === 'string') ? regExpEscape(p)\n : p._src\n }).join('\\\\\\\/')\n }).join('|');\n\n \/\/ must match entire pattern\n \/\/ ending in a * or ** will make it less strict.\n re = '^(?:' + re + ')$';\n\n \/\/ can match anything, as long as it's not this.\n if (this.negate) re = '^(?!' + re + ').*$';\n\n try {\n this.regexp = new RegExp(re, flags);\n } catch (ex) {\n this.regexp = false;\n }\n return this.regexp\n}\n\nminimatch.match = function (list, pattern, options) {\n options = options || {};\n var mm = new Minimatch(pattern, options);\n list = list.filter(function (f) {\n return mm.match(f)\n });\n if (mm.options.nonull && !list.length) {\n list.push(pattern);\n }\n return list\n};\n\nMinimatch.prototype.match = match;\nfunction match (f, partial) {\n this.debug('match', f, this.pattern);\n \/\/ short-circuit in the case of busted things.\n \/\/ comments, etc.\n if (this.comment) return false\n if (this.empty) return f === ''\n\n if (f === '\/' && partial) return true\n\n var options = this.options;\n\n \/\/ windows: need to use \/, not \\\n if (path.sep !== '\/') {\n f = f.split(path.sep).join('\/');\n }\n\n \/\/ treat the test path as a set of pathparts.\n f = f.split(slashSplit);\n this.debug(this.pattern, 'split', f);\n\n \/\/ just ONE of the pattern sets in this.set needs to match\n \/\/ in order for it to be valid. If negating, then just one\n \/\/ match means that we have failed.\n \/\/ Either way, return on the first hit.\n\n var set = this.set;\n this.debug(this.pattern, 'set', set);\n\n \/\/ Find the basename of the path by looking for the last non-empty segment\n var filename;\n var i;\n for (i = f.length - 1; i >= 0; i--) {\n filename = f[i];\n if (filename) break\n }\n\n for (i = 0; i < set.length; i++) {\n var pattern = set[i];\n var file = f;\n if (options.matchBase && pattern.length === 1) {\n file = [filename];\n }\n var hit = this.matchOne(file, pattern, partial);\n if (hit) {\n if (options.flipNegate) return true\n return !this.negate\n }\n }\n\n \/\/ didn't get any hits. this is success if it's a negative\n \/\/ pattern, failure otherwise.\n if (options.flipNegate) return false\n return this.negate\n}\n\n\/\/ set partial to true to test if, for example,\n\/\/ \"\/a\/b\" matches the start of \"\/*\/b\/*\/d\"\n\/\/ Partial means, if you run out of file before you run\n\/\/ out of pattern, then that's fine, as long as all\n\/\/ the parts match.\nMinimatch.prototype.matchOne = function (file, pattern, partial) {\n var options = this.options;\n\n this.debug('matchOne',\n { 'this': this, file: file, pattern: pattern });\n\n this.debug('matchOne', file.length, pattern.length);\n\n for (var fi = 0,\n pi = 0,\n fl = file.length,\n pl = pattern.length\n ; (fi < fl) && (pi < pl)\n ; fi++, pi++) {\n this.debug('matchOne loop');\n var p = pattern[pi];\n var f = file[fi];\n\n this.debug(pattern, p, f);\n\n \/\/ should be impossible.\n \/\/ some invalid regexp stuff in the set.\n if (p === false) return false\n\n if (p === GLOBSTAR) {\n this.debug('GLOBSTAR', [pattern, p, f]);\n\n \/\/ \"**\"\n \/\/ a\/**\/b\/**\/c would match the following:\n \/\/ a\/b\/x\/y\/z\/c\n \/\/ a\/x\/y\/z\/b\/c\n \/\/ a\/b\/x\/b\/x\/c\n \/\/ a\/b\/c\n \/\/ To do this, take the rest of the pattern after\n \/\/ the **, and see if it would match the file remainder.\n \/\/ If so, return success.\n \/\/ If not, the ** \"swallows\" a segment, and try again.\n \/\/ This is recursively awful.\n \/\/\n \/\/ a\/**\/b\/**\/c matching a\/b\/x\/y\/z\/c\n \/\/ - a matches a\n \/\/ - doublestar\n \/\/ - matchOne(b\/x\/y\/z\/c, b\/**\/c)\n \/\/ - b matches b\n \/\/ - doublestar\n \/\/ - matchOne(x\/y\/z\/c, c) -> no\n \/\/ - matchOne(y\/z\/c, c) -> no\n \/\/ - matchOne(z\/c, c) -> no\n \/\/ - matchOne(c, c) yes, hit\n var fr = fi;\n var pr = pi + 1;\n if (pr === pl) {\n this.debug('** at the end');\n \/\/ a ** at the end will just swallow the rest.\n \/\/ We have found a match.\n \/\/ however, it will not swallow \/.x, unless\n \/\/ options.dot is set.\n \/\/ . and .. are *never* matched by **, for explosively\n \/\/ exponential reasons.\n for (; fi < fl; fi++) {\n if (file[fi] === '.' || file[fi] === '..' ||\n (!options.dot && file[fi].charAt(0) === '.')) return false\n }\n return true\n }\n\n \/\/ ok, let's see if we can swallow whatever we can.\n while (fr < fl) {\n var swallowee = file[fr];\n\n this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n \/\/ XXX remove this slice. Just pass the start index.\n if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n this.debug('globstar found match!', fr, fl, swallowee);\n \/\/ found a match.\n return true\n } else {\n \/\/ can't swallow \".\" or \"..\" ever.\n \/\/ can only swallow \".foo\" when explicitly asked.\n if (swallowee === '.' || swallowee === '..' ||\n (!options.dot && swallowee.charAt(0) === '.')) {\n this.debug('dot detected!', file, fr, pattern, pr);\n break\n }\n\n \/\/ ** swallows a segment, and continue.\n this.debug('globstar swallow a segment, and continue');\n fr++;\n }\n }\n\n \/\/ no match was found.\n \/\/ However, in partial mode, we can't say this is necessarily over.\n \/\/ If there's more *pattern* left, then\n if (partial) {\n \/\/ ran out of file\n this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n if (fr === fl) return true\n }\n return false\n }\n\n \/\/ something other than **\n \/\/ non-magic patterns just have to match exactly\n \/\/ patterns with magic have been turned into regexps.\n var hit;\n if (typeof p === 'string') {\n if (options.nocase) {\n hit = f.toLowerCase() === p.toLowerCase();\n } else {\n hit = f === p;\n }\n this.debug('string match', p, f, hit);\n } else {\n hit = f.match(p);\n this.debug('pattern match', p, f, hit);\n }\n\n if (!hit) return false\n }\n\n \/\/ Note: ending in \/ means that we'll get a final \"\"\n \/\/ at the end of the pattern. This can only match a\n \/\/ corresponding \"\" at the end of the file.\n \/\/ If the file ends in \/, then it can only match a\n \/\/ a pattern that ends in \/, unless the pattern just\n \/\/ doesn't have any more for it. But, a\/b\/ should *not*\n \/\/ match \"a\/b\/*\", even though \"\" matches against the\n \/\/ [^\/]*? pattern, except in partial mode, where it might\n \/\/ simply not be reached yet.\n \/\/ However, a\/b\/ should still satisfy a\/*\n\n \/\/ now either we fell off the end of the pattern, or we're done.\n if (fi === fl && pi === pl) {\n \/\/ ran out of pattern and filename at the same time.\n \/\/ an exact hit!\n return true\n } else if (fi === fl) {\n \/\/ ran out of file, but still had pattern left.\n \/\/ this is ok if we're doing the match as part of\n \/\/ a glob fs traversal.\n return partial\n } else if (pi === pl) {\n \/\/ ran out of pattern, still have file left.\n \/\/ this is only acceptable if we're on the very last\n \/\/ empty segment of a file with a trailing slash.\n \/\/ a\/* should match a\/b\/\n var emptyFileEnd = (fi === fl - 1) && (file[fi] === '');\n return emptyFileEnd\n }\n\n \/\/ should be unreachable.\n throw new Error('wtf?')\n};\n\n\/\/ replace stuff like \\* with *\nfunction globUnescape (s) {\n return s.replace(\/\\\\(.)\/g, '$1')\n}\n\nfunction regExpEscape (s) {\n return s.replace(\/[-[\\]{}()*+?.,\\\\^$|#\\s]\/g, '\\\\$&')\n}\n\nvar require$$0$2 = ( jxaFs && jxaFs['default'] ) || jxaFs;\n\n\/\/ Based on iniparser by shockie <https:\/\/npmjs.org\/package\/iniparser>\n\n\/*\n * get the file handler\n *\/\nvar fs = require$$0$2;\n\n\/*\n * define the possible values:\n * section: [section]\n * param: key=value\n * comment: ;this is a comment\n *\/\nvar regex = {\n section: \/^\\s*\\[(([^#;]|\\\\#|\\\\;)+)\\]\\s*([#;].*)?$\/,\n param: \/^\\s*([\\w\\.\\-\\_]+)\\s*[=:]\\s*(.*?)\\s*([#;].*)?$\/,\n comment: \/^\\s*[#;].*$\/\n};\n\n\/*\n * parses a .ini file\n * @param: {String} file, the location of the .ini file\n * @param: {Function} callback, the function that will be called when parsing is done\n * @return: none\n *\/\nvar parse_1 = function (file, callback) {\n if (!callback) {\n return;\n }\n fs.readFile(file, 'utf8', function (err, data) {\n if (err) {\n callback(err);\n } else {\n callback(null, parse$2(data));\n }\n });\n};\n\nvar parseSync$1 = function (file) {\n return parse$2(fs.readFileSync(file, 'utf8'));\n};\n\nfunction parse$2 (data) {\n var sectionBody = {};\n var sectionName = null;\n var value = [[sectionName, sectionBody]];\n var lines = data.split(\/\\r\\n|\\r|\\n\/);\n lines.forEach(function (line) {\n var match;\n if (regex.comment.test(line)) {\n return;\n } else if (regex.param.test(line)) {\n match = line.match(regex.param);\n sectionBody[match[1]] = match[2];\n } else if (regex.section.test(line)) {\n match = line.match(regex.section);\n sectionName = match[1];\n sectionBody = {};\n value.push([sectionName, sectionBody]);\n }\n });\n return value;\n}\n\nvar parseString = parse$2;\n\nvar ini = {\n\tparse: parse_1,\n\tparseSync: parseSync$1,\n\tparseString: parseString\n};\n\nfunction Version(version) {\n var args = arguments;\n this.components = typeof version === \"string\" ?\n version.split(\".\").map(function(x){return parseInt(x, 10);}) :\n Object.keys(arguments).map(function(k){return args[k];});\n\n var len = this.components.length;\n this.major = len ? this.components[0] : 0;\n this.minor = len > 1 ? this.components[1] : 0;\n this.build = len > 2 ? this.components[2] : 0;\n this.revision = len > 3 ? this.components[3] : 0;\n\n if (typeof version !== \"string\") {\n return;\n }\n\n var ext = version.split(\"-\");\n if (ext.length === 2) {\n this.configuration = ext[1];\n }\n}\n\nVersion.prototype = {\n toString: function() {\n var version = this.components.join(\".\");\n if (typeof this.configuration !== \"undefined\") {\n version += \"-\" + this.configuration;\n }\n return version;\n },\n gte: function(other){\n if (this.major < other.major) {\n return false;\n }\n if (this.minor < other.minor) {\n return false;\n }\n if (this.build < other.build) {\n return false;\n }\n if (this.revision < other.revision) {\n return false;\n }\n return true;\n }\n};\n\nvar version = Version;\n\nvar version$1 = \"0.13.2\";\n\nvar knownProps = {\n end_of_line: true,\n indent_style: true,\n indent_size: true,\n insert_final_newline: true,\n trim_trailing_whitespace: true,\n charset: true\n};\n\nfunction fnmatch (filepath, glob) {\n var matchOptions = {matchBase: true, dot: true, noext: true};\n glob = glob.replace(\/\\*\\*\/g, '{*,**\/**\/**}');\n return minimatch_1(filepath, glob, matchOptions)\n}\n\nfunction getConfigFileNames (filepath, options) {\n var paths = [];\n do {\n filepath = dirname(filepath);\n paths.push(join(filepath, options.config));\n } while (filepath.length >= options.root.length && filepath !== options.root)\n return paths\n}\n\nfunction processMatches (matches, version$$1) {\n \/\/ Set indent_size to \"tab\" if indent_size is unspecified and\n \/\/ indent_style is set to \"tab\".\n if ('indent_style' in matches && matches.indent_style === 'tab' &&\n !('indent_size' in matches) && version$$1.gte(new version(0, 10))) {\n matches.indent_size = 'tab';\n }\n\n \/\/ Set tab_width to indent_size if indent_size is specified and\n \/\/ tab_width is unspecified\n if ('indent_size' in matches && !('tab_width' in matches) &&\n matches.indent_size !== 'tab') {\n matches.tab_width = matches.indent_size;\n }\n\n \/\/ Set indent_size to tab_width if indent_size is \"tab\"\n if ('indent_size' in matches && 'tab_width' in matches &&\n matches.indent_size === 'tab') {\n matches.indent_size = matches.tab_width;\n }\n\n return matches\n}\n\nfunction processOptions (options, filepath) {\n \/* global pkg *\/\n options = options || {};\n return {\n config: options.config || '.editorconfig',\n version: new version(options.version || version$1),\n root: resolve(options.root || '\/')\n }\n}\n\nfunction buildFullGlob (pathPrefix, glob) {\n switch (glob.indexOf('\/')) {\n case -1: glob = '**\/' + glob; break\n case 0: glob = glob.substring(1); break\n }\n return join(pathPrefix, glob)\n}\n\nfunction extendProps (props, options) {\n for (var key in options) {\n var value = options[key];\n key = key.toLowerCase();\n if (knownProps[key]) {\n value = value.toLowerCase();\n }\n try {\n value = JSON.parse(value);\n } catch (e) {}\n if (typeof value === 'undefined' || value === null) {\n \/\/ null and undefined are values specific to JSON (no special meaning\n \/\/ in editorconfig) & should just be returned as regular strings.\n value = String(value);\n }\n props[key] = value;\n }\n return props\n}\n\nfunction parseFromFilesSyncImpl (filepath, files, options) {\n var configs = getConfigsForFilesSync(files);\n configs.reverse();\n var matches = {};\n configs.forEach(function (config) {\n var pathPrefix = dirname(config.name);\n config.contents.forEach(function (section) {\n var glob = section[0];\n var options = section[1];\n if (!glob) return\n var fullGlob = buildFullGlob(pathPrefix, glob);\n if (!fnmatch(filepath, fullGlob)) return\n matches = extendProps(matches, options);\n });\n });\n return processMatches(matches, options.version)\n}\n\nfunction getConfigsForFilesSync (files) {\n var configs = [];\n for (var i in files) {\n var file = files[i];\n var contents = ini.parseString(file.contents);\n configs.push({\n name: file.name,\n contents: contents\n });\n if ((contents[0][1].root || '').toLowerCase() === 'true') {\n break\n }\n }\n return configs\n}\n\nfunction readConfigFilesSync (filepaths) {\n var files = [];\n var file;\n filepaths.forEach(function (filepath) {\n try {\n file = readFileSync(filepath, 'utf8');\n } catch (e) {\n file = '';\n }\n files.push({name: filepath, contents: file});\n });\n return files\n}\n\nfunction parseFromFilesSync (filepath, files, options) {\n filepath = resolve(filepath);\n options = processOptions(options, filepath);\n return parseFromFilesSyncImpl(filepath, files, options)\n}\n\nfunction parseSync$$1 (filepath, options) {\n filepath = resolve(filepath);\n options = processOptions(options, filepath);\n var filepaths = getConfigFileNames(filepath, options);\n var files = readConfigFilesSync(filepaths);\n return parseFromFilesSyncImpl(filepath, files, options)\n}\n\nfunction parseFromFiles (filepath, files, options) {\n return Promise.resolve(parseFromFilesSync(filepath, files, options))\n}\n\nfunction parse$$1 (filepath, options) {\n return Promise.resolve(parseSync$$1(filepath, options))\n}\n\nexports.parseFromFilesSync = parseFromFilesSync;\nexports.parseSync = parseSync$$1;\nexports.parseFromFiles = parseFromFiles;\nexports.parse = parse$$1;\n}(this)\n\/*!\n * Copyright (c) 2016 Kaito Udagawa <umireon@gmail.com>\n * Released under the MIT license\n *\n * editorconfig-core-js 0.13.2: EditorConfig Team (MIT)\n * minimatch 3.0.3: Isaac Z. Schlueter <i@izs.me> (http:\/\/blog.izs.me) (ISC)\n *\/\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000S\u0000jscr\u0000\u0001\u0000\r\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u00111\/*! editorconfig-jxa v0.2.2 *\/\n'use strict';\n\n!function(exports){\nObject.defineProperty(exports, '__esModule', { value: true });\n\nfunction readFileSync (file, encoding) {\n const error = $();\n const nsstr = $.NSString.stringWithContentsOfFileEncodingError(file, encoding, error);\n if (!error.isNil()) throw new Error(error.description.js)\n return nsstr.js\n}\n\n\nvar jxaFs = Object.freeze({\n\treadFileSync: readFileSync\n});\n\nfunction resolve (path) {\n return $(path).stringByStandardizingPath.js\n}\n\nfunction dirname (path) {\n return $(path).stringByDeletingLastPathComponent.js\n}\n\nfunction join (path) {\n return $.NSString.pathWithComponents(Array.from(arguments)).js\n}\n\nvar sep = '\/';\n\n\nvar jxaPath = Object.freeze({\n\tresolve: resolve,\n\tdirname: dirname,\n\tjoin: join,\n\tsep: sep\n});\n\nvar index$2 = function (xs, fn) {\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n var x = fn(xs[i], i);\n if (isArray(x)) res.push.apply(res, x);\n else res.push(x);\n }\n return res;\n};\n\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\n\nvar index$4 = balanced$1;\nfunction balanced$1(a, b, str) {\n if (a instanceof RegExp) a = maybeMatch(a, str);\n if (b instanceof RegExp) b = maybeMatch(b, str);\n\n var r = range(a, b, str);\n\n return r && {\n start: r[0],\n end: r[1],\n pre: str.slice(0, r[0]),\n body: str.slice(r[0] + a.length, r[1]),\n post: str.slice(r[1] + b.length)\n };\n}\n\nfunction maybeMatch(reg, str) {\n var m = str.match(reg);\n return m ? m[0] : null;\n}\n\nbalanced$1.range = range;\nfunction range(a, b, str) {\n var begs, beg, left, right, result;\n var ai = str.indexOf(a);\n var bi = str.indexOf(b, ai + 1);\n var i = ai;\n\n if (ai >= 0 && bi > 0) {\n begs = [];\n left = str.length;\n\n while (i >= 0 && !result) {\n if (i == ai) {\n begs.push(i);\n ai = str.indexOf(a, i + 1);\n } else if (begs.length == 1) {\n result = [ begs.pop(), bi ];\n } else {\n beg = begs.pop();\n if (beg < left) {\n left = beg;\n right = bi;\n }\n\n bi = str.indexOf(b, i + 1);\n }\n\n i = ai < bi && ai >= 0 ? ai : bi;\n }\n\n if (begs.length) {\n result = [ left, right ];\n }\n }\n\n return result;\n}\n\nvar concatMap = index$2;\nvar balanced = index$4;\n\nvar index = expandTop;\n\nvar escSlash = '\\0SLASH'+Math.random()+'\\0';\nvar escOpen = '\\0OPEN'+Math.random()+'\\0';\nvar escClose = '\\0CLOSE'+Math.random()+'\\0';\nvar escComma = '\\0COMMA'+Math.random()+'\\0';\nvar escPeriod = '\\0PERIOD'+Math.random()+'\\0';\n\nfunction numeric(str) {\n return parseInt(str, 10) == str\n ? parseInt(str, 10)\n : str.charCodeAt(0);\n}\n\nfunction escapeBraces(str) {\n return str.split('\\\\\\\\').join(escSlash)\n .split('\\\\{').join(escOpen)\n .split('\\\\}').join(escClose)\n .split('\\\\,').join(escComma)\n .split('\\\\.').join(escPeriod);\n}\n\nfunction unescapeBraces(str) {\n return str.split(escSlash).join('\\\\')\n .split(escOpen).join('{')\n .split(escClose).join('}')\n .split(escComma).join(',')\n .split(escPeriod).join('.');\n}\n\n\n\/\/ Basically just str.split(\",\"), but handling cases\n\/\/ where we have nested braced sections, which should be\n\/\/ treated as individual members, like {a,{b,c},d}\nfunction parseCommaParts(str) {\n if (!str)\n return [''];\n\n var parts = [];\n var m = balanced('{', '}', str);\n\n if (!m)\n return str.split(',');\n\n var pre = m.pre;\n var body = m.body;\n var post = m.post;\n var p = pre.split(',');\n\n p[p.length-1] += '{' + body + '}';\n var postParts = parseCommaParts(post);\n if (post.length) {\n p[p.length-1] += postParts.shift();\n p.push.apply(p, postParts);\n }\n\n parts.push.apply(parts, p);\n\n return parts;\n}\n\nfunction expandTop(str) {\n if (!str)\n return [];\n\n \/\/ I don't know why Bash 4.3 does this, but it does.\n \/\/ Anything starting with {} will have the first two bytes preserved\n \/\/ but *only* at the top level, so {},a}b will not expand to anything,\n \/\/ but a{},b}c will be expanded to [a}c,abc].\n \/\/ One could argue that this is a bug in Bash, but since the goal of\n \/\/ this module is to match Bash's rules, we escape a leading {}\n if (str.substr(0, 2) === '{}') {\n str = '\\\\{\\\\}' + str.substr(2);\n }\n\n return expand$1(escapeBraces(str), true).map(unescapeBraces);\n}\n\nfunction embrace(str) {\n return '{' + str + '}';\n}\nfunction isPadded(el) {\n return \/^-?0\\d\/.test(el);\n}\n\nfunction lte(i, y) {\n return i <= y;\n}\nfunction gte(i, y) {\n return i >= y;\n}\n\nfunction expand$1(str, isTop) {\n var expansions = [];\n\n var m = balanced('{', '}', str);\n if (!m || \/\\$$\/.test(m.pre)) return [str];\n\n var isNumericSequence = \/^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$\/.test(m.body);\n var isAlphaSequence = \/^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$\/.test(m.body);\n var isSequence = isNumericSequence || isAlphaSequence;\n var isOptions = \/^(.*,)+(.+)?$\/.test(m.body);\n if (!isSequence && !isOptions) {\n \/\/ {a},b}\n if (m.post.match(\/,.*\\}\/)) {\n str = m.pre + '{' + m.body + escClose + m.post;\n return expand$1(str);\n }\n return [str];\n }\n\n var n;\n if (isSequence) {\n n = m.body.split(\/\\.\\.\/);\n } else {\n n = parseCommaParts(m.body);\n if (n.length === 1) {\n \/\/ x{{a,b}}y ==> x{a}y x{b}y\n n = expand$1(n[0], false).map(embrace);\n if (n.length === 1) {\n var post = m.post.length\n ? expand$1(m.post, false)\n : [''];\n return post.map(function(p) {\n return m.pre + n[0] + p;\n });\n }\n }\n }\n\n \/\/ at this point, n is the parts, and we know it's not a comma set\n \/\/ with a single entry.\n\n \/\/ no need to expand pre, since it is guaranteed to be free of brace-sets\n var pre = m.pre;\n var post = m.post.length\n ? expand$1(m.post, false)\n : [''];\n\n var N;\n\n if (isSequence) {\n var x = numeric(n[0]);\n var y = numeric(n[1]);\n var width = Math.max(n[0].length, n[1].length);\n var incr = n.length == 3\n ? Math.abs(numeric(n[2]))\n : 1;\n var test = lte;\n var reverse = y < x;\n if (reverse) {\n incr *= -1;\n test = gte;\n }\n var pad = n.some(isPadded);\n\n N = [];\n\n for (var i = x; test(i, y); i += incr) {\n var c;\n if (isAlphaSequence) {\n c = String.fromCharCode(i);\n if (c === '\\\\')\n c = '';\n } else {\n c = String(i);\n if (pad) {\n var need = width - c.length;\n if (need > 0) {\n var z = new Array(need + 1).join('0');\n if (i < 0)\n c = '-' + z + c.slice(1);\n else\n c = z + c;\n }\n }\n }\n N.push(c);\n }\n } else {\n N = concatMap(n, function(el) { return expand$1(el, false) });\n }\n\n for (var j = 0; j < N.length; j++) {\n for (var k = 0; k < post.length; k++) {\n var expansion = pre + N[j] + post[k];\n if (!isTop || isSequence || expansion)\n expansions.push(expansion);\n }\n }\n\n return expansions;\n}\n\nvar require$$1$1 = ( jxaPath && jxaPath['default'] ) || jxaPath;\n\nvar minimatch_1 = minimatch;\nminimatch.Minimatch = Minimatch;\n\nvar path = { sep: '\/' };\ntry {\n path = require$$1$1;\n} catch (er) {}\n\nvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};\nvar expand = index;\n\nvar plTypes = {\n '!': { open: '(?:(?!(?:', close: '))[^\/]*?)'},\n '?': { open: '(?:', close: ')?' },\n '+': { open: '(?:', close: ')+' },\n '*': { open: '(?:', close: ')*' },\n '@': { open: '(?:', close: ')' }\n};\n\n\/\/ any single thing other than \/\n\/\/ don't need to escape \/ when using new RegExp()\nvar qmark = '[^\/]';\n\n\/\/ * => any number of characters\nvar star = qmark + '*?';\n\n\/\/ ** when dots are allowed. Anything goes, except .. and .\n\/\/ not (^ or \/ followed by one or two dots followed by $ or \/),\n\/\/ followed by anything, any number of times.\nvar twoStarDot = '(?:(?!(?:\\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\\/)).)*?';\n\n\/\/ not a ^ or \/ followed by a dot,\n\/\/ followed by anything, any number of times.\nvar twoStarNoDot = '(?:(?!(?:\\\\\\\/|^)\\\\.).)*?';\n\n\/\/ characters that need to be escaped in RegExp.\nvar reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\/\/ \"abc\" -> { a:true, b:true, c:true }\nfunction charSet (s) {\n return s.split('').reduce(function (set, c) {\n set[c] = true;\n return set\n }, {})\n}\n\n\/\/ normalizes slashes.\nvar slashSplit = \/\\\/+\/;\n\nminimatch.filter = filter;\nfunction filter (pattern, options) {\n options = options || {};\n return function (p, i, list) {\n return minimatch(p, pattern, options)\n }\n}\n\nfunction ext (a, b) {\n a = a || {};\n b = b || {};\n var t = {};\n Object.keys(b).forEach(function (k) {\n t[k] = b[k];\n });\n Object.keys(a).forEach(function (k) {\n t[k] = a[k];\n });\n return t\n}\n\nminimatch.defaults = function (def) {\n if (!def || !Object.keys(def).length) return minimatch\n\n var orig = minimatch;\n\n var m = function minimatch (p, pattern, options) {\n return orig.minimatch(p, pattern, ext(def, options))\n };\n\n m.Minimatch = function Minimatch (pattern, options) {\n return new orig.Minimatch(pattern, ext(def, options))\n };\n\n return m\n};\n\nMinimatch.defaults = function (def) {\n if (!def || !Object.keys(def).length) return Minimatch\n return minimatch.defaults(def).Minimatch\n};\n\nfunction minimatch (p, pattern, options) {\n if (typeof pattern !== 'string') {\n throw new TypeError('glob pattern string required')\n }\n\n if (!options) options = {};\n\n \/\/ shortcut: comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n return false\n }\n\n \/\/ \"\" only matches \"\"\n if (pattern.trim() === '') return p === ''\n\n return new Minimatch(pattern, options).match(p)\n}\n\nfunction Minimatch (pattern, options) {\n if (!(this instanceof Minimatch)) {\n return new Minimatch(pattern, options)\n }\n\n if (typeof pattern !== 'string') {\n throw new TypeError('glob pattern string required')\n }\n\n if (!options) options = {};\n pattern = pattern.trim();\n\n \/\/ windows support: need to use \/, not \\\n if (path.sep !== '\/') {\n pattern = pattern.split(path.sep).join('\/');\n }\n\n this.options = options;\n this.set = [];\n this.pattern = pattern;\n this.regexp = null;\n this.negate = false;\n this.comment = false;\n this.empty = false;\n\n \/\/ make the set of regexps etc.\n this.make();\n}\n\nMinimatch.prototype.debug = function () {};\n\nMinimatch.prototype.make = make;\nfunction make () {\n \/\/ don't do it more than once.\n if (this._made) return\n\n var pattern = this.pattern;\n var options = this.options;\n\n \/\/ empty patterns and comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n this.comment = true;\n return\n }\n if (!pattern) {\n this.empty = true;\n return\n }\n\n \/\/ step 1: figure out negation, etc.\n this.parseNegate();\n\n \/\/ step 2: expand braces\n var set = this.globSet = this.braceExpand();\n\n if (options.debug) this.debug = console.error;\n\n this.debug(this.pattern, set);\n\n \/\/ step 3: now we have a set, so turn each one into a series of path-portion\n \/\/ matching patterns.\n \/\/ These will be regexps, except in the case of \"**\", which is\n \/\/ set to the GLOBSTAR object for globstar behavior,\n \/\/ and will not contain any \/ characters\n set = this.globParts = set.map(function (s) {\n return s.split(slashSplit)\n });\n\n this.debug(this.pattern, set);\n\n \/\/ glob --> regexps\n set = set.map(function (s, si, set) {\n return s.map(this.parse, this)\n }, this);\n\n this.debug(this.pattern, set);\n\n \/\/ filter out everything that didn't compile properly.\n set = set.filter(function (s) {\n return s.indexOf(false) === -1\n });\n\n this.debug(this.pattern, set);\n\n this.set = set;\n}\n\nMinimatch.prototype.parseNegate = parseNegate;\nfunction parseNegate () {\n var pattern = this.pattern;\n var negate = false;\n var options = this.options;\n var negateOffset = 0;\n\n if (options.nonegate) return\n\n for (var i = 0, l = pattern.length\n ; i < l && pattern.charAt(i) === '!'\n ; i++) {\n negate = !negate;\n negateOffset++;\n }\n\n if (negateOffset) this.pattern = pattern.substr(negateOffset);\n this.negate = negate;\n}\n\n\/\/ Brace expansion:\n\/\/ a{b,c}d -> abd acd\n\/\/ a{b,}c -> abc ac\n\/\/ a{0..3}d -> a0d a1d a2d a3d\n\/\/ a{b,c{d,e}f}g -> abg acdfg acefg\n\/\/ a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\/\/\n\/\/ Invalid sets are not expanded.\n\/\/ a{2..}b -> a{2..}b\n\/\/ a{b}c -> a{b}c\nminimatch.braceExpand = function (pattern, options) {\n return braceExpand(pattern, options)\n};\n\nMinimatch.prototype.braceExpand = braceExpand;\n\nfunction braceExpand (pattern, options) {\n if (!options) {\n if (this instanceof Minimatch) {\n options = this.options;\n } else {\n options = {};\n }\n }\n\n pattern = typeof pattern === 'undefined'\n ? this.pattern : pattern;\n\n if (typeof pattern === 'undefined') {\n throw new TypeError('undefined pattern')\n }\n\n if (options.nobrace ||\n !pattern.match(\/\\{.*\\}\/)) {\n \/\/ shortcut. no need to expand.\n return [pattern]\n }\n\n return expand(pattern)\n}\n\n\/\/ parse a component of the expanded set.\n\/\/ At this point, no pattern may contain \"\/\" in it\n\/\/ so we're going to return a 2d array, where each entry is the full\n\/\/ pattern, split on '\/', and then turned into a regular expression.\n\/\/ A regexp is made at the end which joins each array with an\n\/\/ escaped \/, and another full one which joins each regexp with |.\n\/\/\n\/\/ Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\/\/ when it is the *only* thing in a path portion. Otherwise, any series\n\/\/ of * is equivalent to a single *. Globstar behavior is enabled by\n\/\/ default, and can be disabled by setting options.noglobstar.\nMinimatch.prototype.parse = parse$1;\nvar SUBPARSE = {};\nfunction parse$1 (pattern, isSub) {\n if (pattern.length > 1024 * 64) {\n throw new TypeError('pattern is too long')\n }\n\n var options = this.options;\n\n \/\/ shortcuts\n if (!options.noglobstar && pattern === '**') return GLOBSTAR\n if (pattern === '') return ''\n\n var re = '';\n var hasMagic = !!options.nocase;\n var escaping = false;\n \/\/ ? => one single character\n var patternListStack = [];\n var negativeLists = [];\n var stateChar;\n var inClass = false;\n var reClassStart = -1;\n var classStart = -1;\n \/\/ . and .. never match anything that doesn't start with .,\n \/\/ even when options.dot is set.\n var patternStart = pattern.charAt(0) === '.' ? '' \/\/ anything\n \/\/ not (start or \/ followed by . or .. followed by \/ or end)\n : options.dot ? '(?!(?:^|\\\\\\\/)\\\\.{1,2}(?:$|\\\\\\\/))'\n : '(?!\\\\.)';\n var self = this;\n\n function clearStateChar () {\n if (stateChar) {\n \/\/ we had some state-tracking character\n \/\/ that wasn't consumed by this pass.\n switch (stateChar) {\n case '*':\n re += star;\n hasMagic = true;\n break\n case '?':\n re += qmark;\n hasMagic = true;\n break\n default:\n re += '\\\\' + stateChar;\n break\n }\n self.debug('clearStateChar %j %j', stateChar, re);\n stateChar = false;\n }\n }\n\n for (var i = 0, len = pattern.length, c\n ; (i < len) && (c = pattern.charAt(i))\n ; i++) {\n this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n \/\/ skip over any that are escaped.\n if (escaping && reSpecials[c]) {\n re += '\\\\' + c;\n escaping = false;\n continue\n }\n\n switch (c) {\n case '\/':\n \/\/ completely not allowed, even escaped.\n \/\/ Should already be path-split by now.\n return false\n\n case '\\\\':\n clearStateChar();\n escaping = true;\n continue\n\n \/\/ the various stateChar values\n \/\/ for the \"extglob\" stuff.\n case '?':\n case '*':\n case '+':\n case '@':\n case '!':\n this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n \/\/ all of those are literals inside a class, except that\n \/\/ the glob [!a] means [^a] in regexp\n if (inClass) {\n this.debug(' in class');\n if (c === '!' && i === classStart + 1) c = '^';\n re += c;\n continue\n }\n\n \/\/ if we already have a stateChar, then it means\n \/\/ that there was something like ** or +? in there.\n \/\/ Handle the stateChar, then proceed with this one.\n self.debug('call clearStateChar %j', stateChar);\n clearStateChar();\n stateChar = c;\n \/\/ if extglob is disabled, then +(asdf|foo) isn't a thing.\n \/\/ just clear the statechar *now*, rather than even diving into\n \/\/ the patternList stuff.\n if (options.noext) clearStateChar();\n continue\n\n case '(':\n if (inClass) {\n re += '(';\n continue\n }\n\n if (!stateChar) {\n re += '\\\\(';\n continue\n }\n\n patternListStack.push({\n type: stateChar,\n start: i - 1,\n reStart: re.length,\n open: plTypes[stateChar].open,\n close: plTypes[stateChar].close\n });\n \/\/ negation is (?:(?!js)[^\/]*)\n re += stateChar === '!' ? '(?:(?!(?:' : '(?:';\n this.debug('plType %j %j', stateChar, re);\n stateChar = false;\n continue\n\n case ')':\n if (inClass || !patternListStack.length) {\n re += '\\\\)';\n continue\n }\n\n clearStateChar();\n hasMagic = true;\n var pl = patternListStack.pop();\n \/\/ negation is (?:(?!js)[^\/]*)\n \/\/ The others are (?:<pattern>)<type>\n re += pl.close;\n if (pl.type === '!') {\n negativeLists.push(pl);\n }\n pl.reEnd = re.length;\n continue\n\n case '|':\n if (inClass || !patternListStack.length || escaping) {\n re += '\\\\|';\n escaping = false;\n continue\n }\n\n clearStateChar();\n re += '|';\n continue\n\n \/\/ these are mostly the same in regexp and glob\n case '[':\n \/\/ swallow any state-tracking char before the [\n clearStateChar();\n\n if (inClass) {\n re += '\\\\' + c;\n continue\n }\n\n inClass = true;\n classStart = i;\n reClassStart = re.length;\n re += c;\n continue\n\n case ']':\n \/\/ a right bracket shall lose its special\n \/\/ meaning and represent itself in\n \/\/ a bracket expression if it occurs\n \/\/ first in the list. -- POSIX.2 2.8.3.2\n if (i === classStart + 1 || !inClass) {\n re += '\\\\' + c;\n escaping = false;\n continue\n }\n\n \/\/ handle the case where we left a class open.\n \/\/ \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n if (inClass) {\n \/\/ split where the last [ was, make sure we don't have\n \/\/ an invalid re. if so, re-walk the contents of the\n \/\/ would-be class to re-translate any characters that\n \/\/ were passed through as-is\n \/\/ TODO: It would probably be faster to determine this\n \/\/ without a try\/catch and a new RegExp, but it's tricky\n \/\/ to do safely. For now, this is safe and works.\n var cs = pattern.substring(classStart + 1, i);\n try {\n RegExp('[' + cs + ']');\n } catch (er) {\n \/\/ not a valid class!\n var sp = this.parse(cs, SUBPARSE);\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]';\n hasMagic = hasMagic || sp[1];\n inClass = false;\n continue\n }\n }\n\n \/\/ finish up the class.\n hasMagic = true;\n inClass = false;\n re += c;\n continue\n\n default:\n \/\/ swallow any state char that wasn't consumed\n clearStateChar();\n\n if (escaping) {\n \/\/ no need\n escaping = false;\n } else if (reSpecials[c]\n && !(c === '^' && inClass)) {\n re += '\\\\';\n }\n\n re += c;\n\n } \/\/ switch\n } \/\/ for\n\n \/\/ handle the case where we left a class open.\n \/\/ \"[abc\" is valid, equivalent to \"\\[abc\"\n if (inClass) {\n \/\/ split where the last [ was, and escape it\n \/\/ this is a huge pita. We now have to re-walk\n \/\/ the contents of the would-be class to re-translate\n \/\/ any characters that were passed through as-is\n cs = pattern.substr(classStart + 1);\n sp = this.parse(cs, SUBPARSE);\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0];\n hasMagic = hasMagic || sp[1];\n }\n\n \/\/ handle the case where we had a +( thing at the *end*\n \/\/ of the pattern.\n \/\/ each pattern list stack adds 3 chars, and we need to go through\n \/\/ and escape any | chars that were passed through as-is for the regexp.\n \/\/ Go through and escape them, taking care not to double-escape any\n \/\/ | chars that were already escaped.\n for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n var tail = re.slice(pl.reStart + pl.open.length);\n this.debug('setting tail', re, pl);\n \/\/ maybe some even number of \\, then maybe 1 \\, followed by a |\n tail = tail.replace(\/((?:\\\\{2}){0,64})(\\\\?)\\|\/g, function (_, $1, $2) {\n if (!$2) {\n \/\/ the | isn't already escaped, so escape it.\n $2 = '\\\\';\n }\n\n \/\/ need to escape all those slashes *again*, without escaping the\n \/\/ one that we need for escaping the | character. As it works out,\n \/\/ escaping an even number of slashes can be done by simply repeating\n \/\/ it exactly after itself. That's why this trick works.\n \/\/\n \/\/ I am sorry that you have to see this.\n return $1 + $1 + $2 + '|'\n });\n\n this.debug('tail=%j\\n %s', tail, tail, pl, re);\n var t = pl.type === '*' ? star\n : pl.type === '?' ? qmark\n : '\\\\' + pl.type;\n\n hasMagic = true;\n re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n }\n\n \/\/ handle trailing things that only matter at the very end.\n clearStateChar();\n if (escaping) {\n \/\/ trailing \\\\\n re += '\\\\\\\\';\n }\n\n \/\/ only need to apply the nodot start if the re starts with\n \/\/ something that could conceivably capture a dot\n var addPatternStart = false;\n switch (re.charAt(0)) {\n case '.':\n case '[':\n case '(': addPatternStart = true;\n }\n\n \/\/ Hack to work around lack of negative lookbehind in JS\n \/\/ A pattern like: *.!(x).!(y|z) needs to ensure that a name\n \/\/ like 'a.xyz.yz' doesn't match. So, the first negative\n \/\/ lookahead, has to look ALL the way ahead, to the end of\n \/\/ the pattern.\n for (var n = negativeLists.length - 1; n > -1; n--) {\n var nl = negativeLists[n];\n\n var nlBefore = re.slice(0, nl.reStart);\n var nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n var nlLast = re.slice(nl.reEnd - 8, nl.reEnd);\n var nlAfter = re.slice(nl.reEnd);\n\n nlLast += nlAfter;\n\n \/\/ Handle nested stuff like *(*.js|!(*.json)), where open parens\n \/\/ mean that we should *not* include the ) in the bit that is considered\n \/\/ \"after\" the negated section.\n var openParensBefore = nlBefore.split('(').length - 1;\n var cleanAfter = nlAfter;\n for (i = 0; i < openParensBefore; i++) {\n cleanAfter = cleanAfter.replace(\/\\)[+*?]?\/, '');\n }\n nlAfter = cleanAfter;\n\n var dollar = '';\n if (nlAfter === '' && isSub !== SUBPARSE) {\n dollar = '$';\n }\n var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n re = newRe;\n }\n\n \/\/ if the re is not \"\" at this point, then we need to make sure\n \/\/ it doesn't match against an empty path part.\n \/\/ Otherwise a\/* will match a\/, which it should not.\n if (re !== '' && hasMagic) {\n re = '(?=.)' + re;\n }\n\n if (addPatternStart) {\n re = patternStart + re;\n }\n\n \/\/ parsing just a piece of a larger pattern.\n if (isSub === SUBPARSE) {\n return [re, hasMagic]\n }\n\n \/\/ skip the regexp for non-magical patterns\n \/\/ unescape anything in it, though, so that it'll be\n \/\/ an exact match against a file etc.\n if (!hasMagic) {\n return globUnescape(pattern)\n }\n\n var flags = options.nocase ? 'i' : '';\n try {\n var regExp = new RegExp('^' + re + '$', flags);\n } catch (er) {\n \/\/ If it was an invalid regular expression, then it can't match\n \/\/ anything. This trick looks for a character after the end of\n \/\/ the string, which is of course impossible, except in multi-line\n \/\/ mode, but it's not a \/m regex.\n return new RegExp('$.')\n }\n\n regExp._glob = pattern;\n regExp._src = re;\n\n return regExp\n}\n\nminimatch.makeRe = function (pattern, options) {\n return new Minimatch(pattern, options || {}).makeRe()\n};\n\nMinimatch.prototype.makeRe = makeRe;\nfunction makeRe () {\n if (this.regexp || this.regexp === false) return this.regexp\n\n \/\/ at this point, this.set is a 2d array of partial\n \/\/ pattern strings, or \"**\".\n \/\/\n \/\/ It's better to use .match(). This function shouldn't\n \/\/ be used, really, but it's pretty convenient sometimes,\n \/\/ when you just want to work with a regex.\n var set = this.set;\n\n if (!set.length) {\n this.regexp = false;\n return this.regexp\n }\n var options = this.options;\n\n var twoStar = options.noglobstar ? star\n : options.dot ? twoStarDot\n : twoStarNoDot;\n var flags = options.nocase ? 'i' : '';\n\n var re = set.map(function (pattern) {\n return pattern.map(function (p) {\n return (p === GLOBSTAR) ? twoStar\n : (typeof p === 'string') ? regExpEscape(p)\n : p._src\n }).join('\\\\\\\/')\n }).join('|');\n\n \/\/ must match entire pattern\n \/\/ ending in a * or ** will make it less strict.\n re = '^(?:' + re + ')$';\n\n \/\/ can match anything, as long as it's not this.\n if (this.negate) re = '^(?!' + re + ').*$';\n\n try {\n this.regexp = new RegExp(re, flags);\n } catch (ex) {\n this.regexp = false;\n }\n return this.regexp\n}\n\nminimatch.match = function (list, pattern, options) {\n options = options || {};\n var mm = new Minimatch(pattern, options);\n list = list.filter(function (f) {\n return mm.match(f)\n });\n if (mm.options.nonull && !list.length) {\n list.push(pattern);\n }\n return list\n};\n\nMinimatch.prototype.match = match;\nfunction match (f, partial) {\n this.debug('match', f, this.pattern);\n \/\/ short-circuit in the case of busted things.\n \/\/ comments, etc.\n if (this.comment) return false\n if (this.empty) return f === ''\n\n if (f === '\/' && partial) return true\n\n var options = this.options;\n\n \/\/ windows: need to use \/, not \\\n if (path.sep !== '\/') {\n f = f.split(path.sep).join('\/');\n }\n\n \/\/ treat the test path as a set of pathparts.\n f = f.split(slashSplit);\n this.debug(this.pattern, 'split', f);\n\n \/\/ just ONE of the pattern sets in this.set needs to match\n \/\/ in order for it to be valid. If negating, then just one\n \/\/ match means that we have failed.\n \/\/ Either way, return on the first hit.\n\n var set = this.set;\n this.debug(this.pattern, 'set', set);\n\n \/\/ Find the basename of the path by looking for the last non-empty segment\n var filename;\n var i;\n for (i = f.length - 1; i >= 0; i--) {\n filename = f[i];\n if (filename) break\n }\n\n for (i = 0; i < set.length; i++) {\n var pattern = set[i];\n var file = f;\n if (options.matchBase && pattern.length === 1) {\n file = [filename];\n }\n var hit = this.matchOne(file, pattern, partial);\n if (hit) {\n if (options.flipNegate) return true\n return !this.negate\n }\n }\n\n \/\/ didn't get any hits. this is success if it's a negative\n \/\/ pattern, failure otherwise.\n if (options.flipNegate) return false\n return this.negate\n}\n\n\/\/ set partial to true to test if, for example,\n\/\/ \"\/a\/b\" matches the start of \"\/*\/b\/*\/d\"\n\/\/ Partial means, if you run out of file before you run\n\/\/ out of pattern, then that's fine, as long as all\n\/\/ the parts match.\nMinimatch.prototype.matchOne = function (file, pattern, partial) {\n var options = this.options;\n\n this.debug('matchOne',\n { 'this': this, file: file, pattern: pattern });\n\n this.debug('matchOne', file.length, pattern.length);\n\n for (var fi = 0,\n pi = 0,\n fl = file.length,\n pl = pattern.length\n ; (fi < fl) && (pi < pl)\n ; fi++, pi++) {\n this.debug('matchOne loop');\n var p = pattern[pi];\n var f = file[fi];\n\n this.debug(pattern, p, f);\n\n \/\/ should be impossible.\n \/\/ some invalid regexp stuff in the set.\n if (p === false) return false\n\n if (p === GLOBSTAR) {\n this.debug('GLOBSTAR', [pattern, p, f]);\n\n \/\/ \"**\"\n \/\/ a\/**\/b\/**\/c would match the following:\n \/\/ a\/b\/x\/y\/z\/c\n \/\/ a\/x\/y\/z\/b\/c\n \/\/ a\/b\/x\/b\/x\/c\n \/\/ a\/b\/c\n \/\/ To do this, take the rest of the pattern after\n \/\/ the **, and see if it would match the file remainder.\n \/\/ If so, return success.\n \/\/ If not, the ** \"swallows\" a segment, and try again.\n \/\/ This is recursively awful.\n \/\/\n \/\/ a\/**\/b\/**\/c matching a\/b\/x\/y\/z\/c\n \/\/ - a matches a\n \/\/ - doublestar\n \/\/ - matchOne(b\/x\/y\/z\/c, b\/**\/c)\n \/\/ - b matches b\n \/\/ - doublestar\n \/\/ - matchOne(x\/y\/z\/c, c) -> no\n \/\/ - matchOne(y\/z\/c, c) -> no\n \/\/ - matchOne(z\/c, c) -> no\n \/\/ - matchOne(c, c) yes, hit\n var fr = fi;\n var pr = pi + 1;\n if (pr === pl) {\n this.debug('** at the end');\n \/\/ a ** at the end will just swallow the rest.\n \/\/ We have found a match.\n \/\/ however, it will not swallow \/.x, unless\n \/\/ options.dot is set.\n \/\/ . and .. are *never* matched by **, for explosively\n \/\/ exponential reasons.\n for (; fi < fl; fi++) {\n if (file[fi] === '.' || file[fi] === '..' ||\n (!options.dot && file[fi].charAt(0) === '.')) return false\n }\n return true\n }\n\n \/\/ ok, let's see if we can swallow whatever we can.\n while (fr < fl) {\n var swallowee = file[fr];\n\n this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n \/\/ XXX remove this slice. Just pass the start index.\n if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n this.debug('globstar found match!', fr, fl, swallowee);\n \/\/ found a match.\n return true\n } else {\n \/\/ can't swallow \".\" or \"..\" ever.\n \/\/ can only swallow \".foo\" when explicitly asked.\n if (swallowee === '.' || swallowee === '..' ||\n (!options.dot && swallowee.charAt(0) === '.')) {\n this.debug('dot detected!', file, fr, pattern, pr);\n break\n }\n\n \/\/ ** swallows a segment, and continue.\n this.debug('globstar swallow a segment, and continue');\n fr++;\n }\n }\n\n \/\/ no match was found.\n \/\/ However, in partial mode, we can't say this is necessarily over.\n \/\/ If there's more *pattern* left, then\n if (partial) {\n \/\/ ran out of file\n this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n if (fr === fl) return true\n }\n return false\n }\n\n \/\/ something other than **\n \/\/ non-magic patterns just have to match exactly\n \/\/ patterns with magic have been turned into regexps.\n var hit;\n if (typeof p === 'string') {\n if (options.nocase) {\n hit = f.toLowerCase() === p.toLowerCase();\n } else {\n hit = f === p;\n }\n this.debug('string match', p, f, hit);\n } else {\n hit = f.match(p);\n this.debug('pattern match', p, f, hit);\n }\n\n if (!hit) return false\n }\n\n \/\/ Note: ending in \/ means that we'll get a final \"\"\n \/\/ at the end of the pattern. This can only match a\n \/\/ corresponding \"\" at the end of the file.\n \/\/ If the file ends in \/, then it can only match a\n \/\/ a pattern that ends in \/, unless the pattern just\n \/\/ doesn't have any more for it. But, a\/b\/ should *not*\n \/\/ match \"a\/b\/*\", even though \"\" matches against the\n \/\/ [^\/]*? pattern, except in partial mode, where it might\n \/\/ simply not be reached yet.\n \/\/ However, a\/b\/ should still satisfy a\/*\n\n \/\/ now either we fell off the end of the pattern, or we're done.\n if (fi === fl && pi === pl) {\n \/\/ ran out of pattern and filename at the same time.\n \/\/ an exact hit!\n return true\n } else if (fi === fl) {\n \/\/ ran out of file, but still had pattern left.\n \/\/ this is ok if we're doing the match as part of\n \/\/ a glob fs traversal.\n return partial\n } else if (pi === pl) {\n \/\/ ran out of pattern, still have file left.\n \/\/ this is only acceptable if we're on the very last\n \/\/ empty segment of a file with a trailing slash.\n \/\/ a\/* should match a\/b\/\n var emptyFileEnd = (fi === fl - 1) && (file[fi] === '');\n return emptyFileEnd\n }\n\n \/\/ should be unreachable.\n throw new Error('wtf?')\n};\n\n\/\/ replace stuff like \\* with *\nfunction globUnescape (s) {\n return s.replace(\/\\\\(.)\/g, '$1')\n}\n\nfunction regExpEscape (s) {\n return s.replace(\/[-[\\]{}()*+?.,\\\\^$|#\\s]\/g, '\\\\$&')\n}\n\nvar require$$0$2 = ( jxaFs && jxaFs['default'] ) || jxaFs;\n\n\/\/ Based on iniparser by shockie <https:\/\/npmjs.org\/package\/iniparser>\n\n\/*\n * get the file handler\n *\/\nvar fs = require$$0$2;\n\n\/*\n * define the possible values:\n * section: [section]\n * param: key=value\n * comment: ;this is a comment\n *\/\nvar regex = {\n section: \/^\\s*\\[(([^#;]|\\\\#|\\\\;)+)\\]\\s*([#;].*)?$\/,\n param: \/^\\s*([\\w\\.\\-\\_]+)\\s*[=:]\\s*(.*?)\\s*([#;].*)?$\/,\n comment: \/^\\s*[#;].*$\/\n};\n\n\/*\n * parses a .ini file\n * @param: {String} file, the location of the .ini file\n * @param: {Function} callback, the function that will be called when parsing is done\n * @return: none\n *\/\nvar parse_1 = function (file, callback) {\n if (!callback) {\n return;\n }\n fs.readFile(file, 'utf8', function (err, data) {\n if (err) {\n callback(err);\n } else {\n callback(null, parse$2(data));\n }\n });\n};\n\nvar parseSync$1 = function (file) {\n return parse$2(fs.readFileSync(file, 'utf8'));\n};\n\nfunction parse$2 (data) {\n var sectionBody = {};\n var sectionName = null;\n var value = [[sectionName, sectionBody]];\n var lines = data.split(\/\\r\\n|\\r|\\n\/);\n lines.forEach(function (line) {\n var match;\n if (regex.comment.test(line)) {\n return;\n } else if (regex.param.test(line)) {\n match = line.match(regex.param);\n sectionBody[match[1]] = match[2];\n } else if (regex.section.test(line)) {\n match = line.match(regex.section);\n sectionName = match[1];\n sectionBody = {};\n value.push([sectionName, sectionBody]);\n }\n });\n return value;\n}\n\nvar parseString = parse$2;\n\nvar ini = {\n\tparse: parse_1,\n\tparseSync: parseSync$1,\n\tparseString: parseString\n};\n\nfunction Version(version) {\n var args = arguments;\n this.components = typeof version === \"string\" ?\n version.split(\".\").map(function(x){return parseInt(x, 10);}) :\n Object.keys(arguments).map(function(k){return args[k];});\n\n var len = this.components.length;\n this.major = len ? this.components[0] : 0;\n this.minor = len > 1 ? this.components[1] : 0;\n this.build = len > 2 ? this.components[2] : 0;\n this.revision = len > 3 ? this.components[3] : 0;\n\n if (typeof version !== \"string\") {\n return;\n }\n\n var ext = version.split(\"-\");\n if (ext.length === 2) {\n this.configuration = ext[1];\n }\n}\n\nVersion.prototype = {\n toString: function() {\n var version = this.components.join(\".\");\n if (typeof this.configuration !== \"undefined\") {\n version += \"-\" + this.configuration;\n }\n return version;\n },\n gte: function(other){\n if (this.major < other.major) {\n return false;\n }\n if (this.minor < other.minor) {\n return false;\n }\n if (this.build < other.build) {\n return false;\n }\n if (this.revision < other.revision) {\n return false;\n }\n return true;\n }\n};\n\nvar version = Version;\n\nvar version$1 = \"0.13.2\";\n\nvar knownProps = {\n end_of_line: true,\n indent_style: true,\n indent_size: true,\n insert_final_newline: true,\n trim_trailing_whitespace: true,\n charset: true\n};\n\nfunction fnmatch (filepath, glob) {\n var matchOptions = {matchBase: true, dot: true, noext: true};\n glob = glob.replace(\/\\*\\*\/g, '{*,**\/**\/**}');\n return minimatch_1(filepath, glob, matchOptions)\n}\n\nfunction getConfigFileNames (filepath, options) {\n var paths = [];\n do {\n filepath = dirname(filepath);\n paths.push(join(filepath, options.config));\n } while (filepath.length >= options.root.length && filepath !== options.root)\n return paths\n}\n\nfunction processMatches (matches, version$$1) {\n \/\/ Set indent_size to \"tab\" if indent_size is unspecified and\n \/\/ indent_style is set to \"tab\".\n if ('indent_style' in matches && matches.indent_style === 'tab' &&\n !('indent_size' in matches) && version$$1.gte(new version(0, 10))) {\n matches.indent_size = 'tab';\n }\n\n \/\/ Set tab_width to indent_size if indent_size is specified and\n \/\/ tab_width is unspecified\n if ('indent_size' in matches && !('tab_width' in matches) &&\n matches.indent_size !== 'tab') {\n matches.tab_width = matches.indent_size;\n }\n\n \/\/ Set indent_size to tab_width if indent_size is \"tab\"\n if ('indent_size' in matches && 'tab_width' in matches &&\n matches.indent_size === 'tab') {\n matches.indent_size = matches.tab_width;\n }\n\n return matches\n}\n\nfunction processOptions (options, filepath) {\n \/* global pkg *\/\n options = options || {};\n return {\n config: options.config || '.editorconfig',\n version: new version(options.version || version$1),\n root: resolve(options.root || '\/')\n }\n}\n\nfunction buildFullGlob (pathPrefix, glob) {\n switch (glob.indexOf('\/')) {\n case -1: glob = '**\/' + glob; break\n case 0: glob = glob.substring(1); break\n }\n return join(pathPrefix, glob)\n}\n\nfunction extendProps (props, options) {\n for (var key in options) {\n var value = options[key];\n key = key.toLowerCase();\n if (knownProps[key]) {\n value = value.toLowerCase();\n }\n try {\n value = JSON.parse(value);\n } catch (e) {}\n if (typeof value === 'undefined' || value === null) {\n \/\/ null and undefined are values specific to JSON (no special meaning\n \/\/ in editorconfig) & should just be returned as regular strings.\n value = String(value);\n }\n props[key] = value;\n }\n return props\n}\n\nfunction parseFromFilesSyncImpl (filepath, files, options) {\n var configs = getConfigsForFilesSync(files);\n configs.reverse();\n var matches = {};\n configs.forEach(function (config) {\n var pathPrefix = dirname(config.name);\n config.contents.forEach(function (section) {\n var glob = section[0];\n var options = section[1];\n if (!glob) return\n var fullGlob = buildFullGlob(pathPrefix, glob);\n if (!fnmatch(filepath, fullGlob)) return\n matches = extendProps(matches, options);\n });\n });\n return processMatches(matches, options.version)\n}\n\nfunction getConfigsForFilesSync (files) {\n var configs = [];\n for (var i in files) {\n var file = files[i];\n var contents = ini.parseString(file.contents);\n configs.push({\n name: file.name,\n contents: contents\n });\n if ((contents[0][1].root || '').toLowerCase() === 'true') {\n break\n }\n }\n return configs\n}\n\nfunction readConfigFilesSync (filepaths) {\n var files = [];\n var file;\n filepaths.forEach(function (filepath) {\n try {\n file = readFileSync(filepath, 'utf8');\n } catch (e) {\n file = '';\n }\n files.push({name: filepath, contents: file});\n });\n return files\n}\n\nfunction parseFromFilesSync (filepath, files, options) {\n filepath = resolve(filepath);\n options = processOptions(options, filepath);\n return parseFromFilesSyncImpl(filepath, files, options)\n}\n\nfunction parseSync$$1 (filepath, options) {\n filepath = resolve(filepath);\n options = processOptions(options, filepath);\n var filepaths = getConfigFileNames(filepath, options);\n var files = readConfigFilesSync(filepaths);\n return parseFromFilesSyncImpl(filepath, files, options)\n}\n\nfunction parseFromFiles (filepath, files, options) {\n return Promise.resolve(parseFromFilesSync(filepath, files, options))\n}\n\nfunction parse$$1 (filepath, options) {\n return Promise.resolve(parseSync$$1(filepath, options))\n}\n\nexports.parseFromFilesSync = parseFromFilesSync;\nexports.parseSync = parseSync$$1;\nexports.parseFromFiles = parseFromFiles;\nexports.parse = parse$$1;\n}(this)\n\/*!\n * Copyright (c) 2016 Kaito Udagawa <umireon@gmail.com>\n * Released under the MIT license\n *\n * editorconfig-core-js 0.13.2: EditorConfig Team (MIT)\n * minimatch 3.0.3: Isaac Z. Schlueter <i@izs.me> (http:\/\/blog.izs.me) (ISC)\n *\/\n\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000G\u0000jscr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c5fadb0fd46368c79c4fbd79f71846e3097b08e1","subject":"newline and tab character data cleansing on transfer write","message":"newline and tab character data cleansing on transfer write\n","repos":"theriex\/itsip","old_file":"src\/itsipTransfer.applescript","new_file":"src\/itsipTransfer.applescript","new_contents":"property wdtitle : \"itsipTransfer\"\nproperty datfilename : \"\"\nproperty tabchar : \"\t\"\nproperty newline : \"\n\"\n\non initDatfileName()\n\ttell application \"Finder\"\n\t\tset datfilename to (container of (path to me) as text) & \"itsipTransfer.dat\"\n\tend tell\nend initDatfileName\n\n\non splitString(txt, delim)\n\tset orgdelim to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delim\n\tset txtelems to every text item of txt\n\tset AppleScript's text item delimiters to orgdelim\n\treturn txtelems\nend splitString\n\n\non joinArray(elems, delim)\n\tset orgdelim to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delim\n\tset val to elems as string\n\tset AppleScript's text item delimiters to orgdelim\n\treturn val\nend joinArray\n\n\non oneLineText(txtval)\n\tset retval to txtval\n\tif txtval contains newline then\n\t\tset va to splitString(txtval, newline)\n\t\tset retval to joinArray(va, \"|\")\n\tend if\n\treturn retval\nend oneLineText\n\n\non dumpTrackData()\n\ttry\n\t\tset wf to open for access datfilename with write permission\n\t\tset eof wf to 0\n\t\ttell application \"iTunes\"\n\t\t\trepeat with ctrk in every track\n\t\t\t\tset tnme to ((name of ctrk) as class utf8)\n\t\t\t\tset tart to ((artist of ctrk) as class utf8)\n\t\t\t\tset talb to ((album of ctrk) as class utf8)\n\t\t\t\tset tcmt to ((comment of ctrk) as class utf8)\n\t\t\t\tif tnme contains tabchar then\n\t\t\t\t\tset ptxt to \"Remove bad tab character from track name:\"\n\t\t\t\t\tset dlgresult to display dialog ptxt default answer tnme\n\t\t\t\t\tset name of ctrk to ((text returned of dlgresult) as class utf8)\n\t\t\t\t\tset tnme to ((name of ctrk) as class utf8)\n\t\t\t\tend if\n\t\t\t\tif tart contains tabchar then\n\t\t\t\t\tset ptxt to \"Remove bad tab character from track artist:\"\n\t\t\t\t\tset dlgresult to display dialog ptxt default answer tart\n\t\t\t\t\tset artist of ctrk to ((text returned of dlgresult) as class utf8)\n\t\t\t\t\tset tart to ((artist of ctrk) as class utf8)\n\t\t\t\tend if\n\t\t\t\tif talb contains tabchar then\n\t\t\t\t\tset ptxt to \"Remove bad tab character from track album:\"\n\t\t\t\t\tset dlgresult to display dialog ptxt default answer talb\n\t\t\t\t\tset album of ctrk to ((text returned of dlgresult) as class utf8)\n\t\t\t\t\tset talb to ((album of ctrk) as class utf8)\n\t\t\t\tend if\n\t\t\t\tif tcmt contains tabchar then\n\t\t\t\t\tset ptxt to \"Remove bad tab character from track comment:\"\n\t\t\t\t\tset dlgresult to display dialog ptxt default answer tcmt\n\t\t\t\t\tset comment of ctrk to ((text returned of dlgresult) as class utf8)\n\t\t\t\t\tset tcmt to ((comment of ctrk) as class utf8)\n\t\t\t\tend if\n\t\t\t\tset tcmt to ((my oneLineText(tcmt)) as class utf8)\n\t\t\t\tset datline to tnme & tabchar & tart & tabchar & talb & tabchar & (year of ctrk) & tabchar & (rating of ctrk) & tabchar & (volume adjustment of ctrk) & tabchar & tcmt & newline\n\t\t\t\twrite datline as class utf8 to wf\n\t\t\tend repeat\n\t\tend tell\n\t\tclose access wf\n\ton error errStr number errorNumber\n\t\ttry\n\t\t\tclose access wf\n\t\tend try\n\t\terror errStr number errorNumber\n\t\treturn false\n\tend try\nend dumpTrackData\n\n\non identFieldsMatch(tinfo, artist, album, year)\n\tif (length of (srcartist of tinfo)) > 0 then\n\t\tset fval to (srcartist of tinfo) as class utf8\n\t\tset tval to artist as class utf8\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcalbum of tinfo)) > 0 then\n\t\tset fval to ((srcalbum of tinfo) as class utf8)\n\t\tset tval to (album as class utf8)\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcyear of tinfo) > 0) and (year > 0) and ((srcyear of tinfo) as integer) is not equal to year then\n\t\treturn false\n\tend if\n\treturn true\nend identFieldsMatch\n\n\non updateTrackInfo(tinfo, overwrite)\n\ttell application \"iTunes\"\n\t\ttry\n\t\t\tset srchres to (search playlist \"Music\" for (srcname of tinfo) only songs)\n\t\t\trepeat with trk in srchres\n\t\t\t\t-- display dialog \"testing \" & (name of trk)\n\t\t\t\tif my identFieldsMatch(tinfo, (artist of trk), (album of trk), (year of trk)) then\n\t\t\t\t\tset statmsg to \"found \" & (name of trk) & \" - \" & (artist of trk)\n\t\t\t\t\tif overwrite or ((rating of trk) is equal to 0) then\n\t\t\t\t\t\tset updrat to ((srcrating of tinfo) as integer)\n\t\t\t\t\t\tset statmsg to statmsg & newline & \"rating set to \" & updrat\n\t\t\t\t\t\tset (rating of trk) to updrat\n\t\t\t\t\tend if\n\t\t\t\t\tif overwrite or ((volume adjustment of trk) is equal to 0) then\n\t\t\t\t\t\tset updva to ((srcvoladj of tinfo) as integer)\n\t\t\t\t\t\tset statmsg to statmsg & newline & \"volume adjust set to \" & updva\n\t\t\t\t\t\tset (volume adjustment of trk) to updva\n\t\t\t\t\tend if\n\t\t\t\t\tif overwrite or (((comment of trk) as class utf8) is equal to \"\") then\n\t\t\t\t\t\tset statmsg to statmsg & newline & (srccomment of tinfo)\n\t\t\t\t\t\tset (comment of trk) to (srccomment of tinfo)\n\t\t\t\t\tend if\n\t\t\t\t\t-- display dialog statmsg\n\t\t\t\tend if\n\t\t\tend repeat\n\t\ton error errStr number errorNumber\n\t\t\terror errStr & \" tinfo: \" & joinArray(tinfo, \"\t\")\n\t\tend try\n\tend tell\nend updateTrackInfo\n\n\non loadTrackData(overwrite)\n\tset fh to (open for access file datfilename)\n\tset fc to (read fh for (get eof fh) as class utf8)\n\tclose access fh\n\tset datlines to splitString(fc, newline)\n\tset linum to 0\n\trepeat with datline in datlines\n\t\ttry\n\t\t\tif length of datline 1 then\n\t\t\t\tset linum to linum + 1\n\t\t\t\tset trkfields to splitString(datline, tabchar)\n\t\t\t\tupdateTrackInfo({srcname:item 1 of trkfields, srcartist:item 2 of trkfields, srcalbum:item 3 of trkfields, srcyear:item 4 of trkfields, srcrating:item 5 of trkfields, srcvoladj:item 6 of trkfields, srccomment:item 7 of trkfields}, overwrite)\n\t\t\tend if\n\t\ton error errStr number errorNumber\n\t\t\terror errStr & \" datline: \" & datline\n\t\tend try\n\tend repeat\nend loadTrackData\n\n\non dumpOrLoad()\n\tinitDatfileName()\n\tset ptxt to \"Write or read itsipTransfer.dat. This can take a while (~2000 tracks\/minute write, ~500 tracks\/minute read). There will be a completion message when the script is done running. Select what you want to do:\" & newline\n\tset acts to {\"Write track data\", \"Read default track data\", \"Read and overwrite\"}\n\tset listchoice to choose from list acts with prompt ptxt with title wdtitle\n\tif listchoice is false then\n\t\treturn false\n\telse if (listchoice as text) is equal to ((item 1 of acts) as text) then\n\t\tdumpTrackData()\n\t\tdisplay dialog \"Tracks written to ~\/Library\/iTunes\/Scripts\/itsipTransfer.dat\"\n\telse if (listchoice as text) is equal to ((item 2 of acts) as text) then\n\t\tloadTrackData(false)\n\t\tdisplay dialog \"Default track categorization data loaded.\"\n\telse if (listchoice as text) is equal to ((item 3 of acts) as text) then\n\t\tloadTrackData(true)\n\t\tdisplay dialog \"Track categorizations read completed.\"\n\tend if\nend dumpOrLoad\n\n-- Main script\ndumpOrLoad()\n\n","old_contents":"property wdtitle : \"itsipTransfer\"\nproperty datfilename : \"\"\nproperty tabchar : \"\t\"\nproperty newline : \"\n\"\n\non initDatfileName()\n\ttell application \"Finder\"\n\t\tset datfilename to (container of (path to me) as text) & \"itsipTransfer.dat\"\n\tend tell\nend initDatfileName\n\n\non splitString(txt, delim)\n\tset orgdelim to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to delim\n\tset txtelems to every text item of txt\n\tset AppleScript's text item delimiters to orgdelim\n\treturn txtelems\nend splitString\n\n\non dumpTrackData()\n\ttry\n\t\tset wf to open for access datfilename with write permission\n\t\tset eof wf to 0\n\t\ttell application \"iTunes\"\n\t\t\trepeat with ctrk in every track\n\t\t\t\tset datline to ((name of ctrk) as class utf8) & tabchar & ((artist of ctrk) as class utf8) & tabchar & ((album of ctrk) as class utf8) & tabchar & (year of ctrk) & tabchar & (rating of ctrk) & tabchar & (volume adjustment of ctrk) & tabchar & ((comment of ctrk) as class utf8) & newline\n\t\t\t\twrite datline as class utf8 to wf\n\t\t\tend repeat\n\t\tend tell\n\t\tclose access wf\n\ton error errStr number errorNumber\n\t\ttry\n\t\t\tclose access wf\n\t\tend try\n\t\terror errStr number errorNumber\n\t\treturn false\n\tend try\nend dumpTrackData\n\n\non identFieldsMatch(tinfo, artist, album, year)\n\tif (length of (srcartist of tinfo)) > 0 then\n\t\tset fval to (srcartist of tinfo) as class utf8\n\t\tset tval to artist as class utf8\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcalbum of tinfo)) > 0 then\n\t\tset fval to ((srcalbum of tinfo) as class utf8)\n\t\tset tval to (album as class utf8)\n\t\tif fval is not equal to tval then\n\t\t\treturn false\n\t\tend if\n\tend if\n\tif (length of (srcyear of tinfo) > 0) and (year > 0) and ((srcyear of tinfo) as integer) is not equal to year then\n\t\treturn false\n\tend if\n\treturn true\nend identFieldsMatch\n\n\non updateTrackInfo(tinfo, overwrite)\n\ttell application \"iTunes\"\n\t\tset srchres to (search playlist \"Music\" for (srcname of tinfo) only songs)\n\t\trepeat with trk in srchres\n\t\t\t-- display dialog \"testing \" & (name of trk)\n\t\t\tif my identFieldsMatch(tinfo, (artist of trk), (album of trk), (year of trk)) then\n\t\t\t\tset statmsg to \"found \" & (name of trk) & \" - \" & (artist of trk)\n\t\t\t\tif overwrite or ((rating of trk) is equal to 0) then\n\t\t\t\t\tset updrat to ((srcrating of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"rating set to \" & updrat\n\t\t\t\t\tset (rating of trk) to updrat\n\t\t\t\tend if\n\t\t\t\tif overwrite or ((volume adjustment of trk) is equal to 0) then\n\t\t\t\t\tset updva to ((srcvoladj of tinfo) as integer)\n\t\t\t\t\tset statmsg to statmsg & newline & \"volume adjust set to \" & updva\n\t\t\t\t\tset (volume adjustment of trk) to updva\n\t\t\t\tend if\n\t\t\t\tif overwrite or (((comment of trk) as class utf8) is equal to \"\") then\n\t\t\t\t\tset statmsg to statmsg & newline & (srccomment of tinfo)\n\t\t\t\t\tset (comment of trk) to (srccomment of tinfo)\n\t\t\t\tend if\n\t\t\t\t-- display dialog statmsg\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateTrackInfo\n\n\non loadTrackData(overwrite)\n\tset fh to (open for access file datfilename)\n\tset fc to (read fh for (get eof fh) as class utf8)\n\tclose access fh\n\tset datlines to splitString(fc, newline)\n\tset linum to 0\n\trepeat with datline in datlines\n\t\tset linum to linum + 1\n\t\tset trkfields to splitString(datline, tabchar)\n\t\tupdateTrackInfo({srcname:item 1 of trkfields, srcartist:item 2 of trkfields, srcalbum:item 3 of trkfields, srcyear:item 4 of trkfields, srcrating:item 5 of trkfields, srcvoladj:item 6 of trkfields, srccomment:item 7 of trkfields}, overwrite)\n\tend repeat\nend loadTrackData\n\n\non dumpOrLoad()\n\tinitDatfileName()\n\tset ptxt to \"Write or read itsipTransfer.dat. This can take a while (~2000 tracks\/minute write, ~500 tracks\/minute read). There will be a completion message when the script is done running. Select what you want to do:\" & newline\n\tset acts to {\"Write track data\", \"Read default track data\", \"Read and overwrite\"}\n\tset listchoice to choose from list acts with prompt ptxt with title wdtitle\n\tif listchoice is false then\n\t\treturn false\n\telse if (listchoice as text) is equal to ((item 1 of acts) as text) then\n\t\tdumpTrackData()\n\t\tdisplay dialog \"Tracks written to ~\/Library\/iTunes\/Scripts\/itsipTransfer.dat\"\n\telse if (listchoice as text) is equal to ((item 2 of acts) as text) then\n\t\tloadTrackData(false)\n\t\tdisplay dialog \"Default track categorization data loaded.\"\n\telse if (listchoice as text) is equal to ((item 3 of acts) as text) then\n\t\tloadTrackData(true)\n\t\tdisplay dialog \"Track categorizations read completed.\"\n\tend if\nend dumpOrLoad\n\n-- Main script\ndumpOrLoad()\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"89ecb75222ab8303e90945eb04c4688e54008d45","subject":"Change first run view from dialog to alert","message":"Change first run view from dialog to alert\n\nThis makes it more like the help view which has similar text.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a Text Editor...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a Text Editor...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b25a8bb5e16bfc0d97e47de36b7fc1c60b8fc6d7","subject":"Add preferences interface and plist read\/write","message":"Add preferences interface and plist read\/write\n\nInitial integration of preferences\/plist code. The first-run interface\nwill trigger if there is no existing plist file. It will allow modifying\nthe URL log file location and the text editing application. A\npreferences option still needs to be added to each list dialog, but that\nwill just trigger the same interface that the first-run dialog uses to\nmodify the preferences.\n\nThe experimental environment variable configuration is removed. It was\nnever really meant for public release.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainLabel\", \"lastFullLabel\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (_IO's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: Change the following local-only config before any public release.\n\tThe log file should be: $GTD_IN\/logs\/urls\/urls.YYYY.txt\n\tOr just: $GTD_IN\/logs\/urls.txt\n\n\tTODO: The edit_log() function is currently incomplete. It will only launch\n\tan editor from the shell and only if that editor is a GUI editor (in this\n\tcase, MacVim). If I release this script publicly, I will still need to\n\timplement funtionality to launch a GUI editor normally (with the 'open'\n\tAppleScript commmand) as well as a command-line editor run in the Terminal.\n*)\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n-- Unicode characters for list dialogs\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- (I wish there was a smaller black left-pointing triangle, or a slightly more angled heavy left-pointing angle quotation mark ornament. The leftwards black arrow just doesn't seem Mac-like.)\n\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\n\n-- Format for dialogs\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\n\n\n---------- USER CONFIGURATION ----------------------------------------\n-- Default log directory to use if one is not read from config file:\n--set log_dir to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/\"\nset log_dir to POSIX path of (path to desktop folder) & \"Log Page\/\" -- :DEBUG:\n\n-- Log file name:\nset log_name to \"urls.txt\"\n\n-- Default categories\/labels if none are found in (or there is no)\n-- URL file. Modify as desired:\nset default_cats to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n-- Text editor to use if manually editing the log file.\n--\n-- This example:\n--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n--\t2. Switches the local working directory for just that buffer to the\n--\t directory containing the file ('lcd')\n--\t3. Gives the MacVim window a name ('--servername').\n--\nset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd %:p:h\\\" --servername LOG_PAGE\"\n\n-- Should the specified editor be launched from the unix shell?\nset should_use_shell to true\n---------- END User Configuration ----------------------------------------\n\n\n---------- ADVANCED (EXPERIMENTAL) ---------------------------------------------\n-- For advanced users familiar with the command-line, override the default log\n-- directory path. This probably won't be in a public release.\n--\n-- Grab an exported shell environment variable from a config file to use as the\n-- log directory path. For this example, I have a \"~\/.gtdrc\" config file that I\n-- source from my \"~\/.bash_profile\" file so that it exportss environment\n-- variables relating to my GTD system. That makes those variables available to\n-- any of the shell scripts and tools that I use. For instance, when I'm\n-- editing files in Vim, I can write paths to other files using one of the\n-- environment variables rather than a full or relative path and the 'gf'\n-- command will work for jumping to that file. The config file looks like this:\n--\n-- # ~\/.gtdrc\n-- #\n-- # File locations for GTD documents\n-- #\n-- export GTD_DIR=$HOME\/Documents\/org # GTD root directory\n-- export GTD_IN=$GTD_DIR\/content # source\/input files\n-- export GTD_OUT=$GTD_DIR\/html # generated HTML output files\n-- export GTD_LIB=$GTD_DIR\/lib # code library files\n-- export GTD_BIN=$GTD_LIB\/script # scripts\n--\n-- Remove (or comment out) the \"(*\" and \"*)\" comment markers below to use this\n-- section. Make sure you also configure the two variables for your system.\n--(*\n--------------- USER CONFIGURATION ----------\n-- Path to your config file:\nset cfg_file to POSIX path of (path to home folder) & \".gtdrc\"\n-- The environment variable you're interested in:\nset env_var to \"GTD_IN\"\n--------------- END User Configuration ---------\n\n-- Check for environment variable in config file:\nset s to \"egrep '\\\\<\" & env_var & \"=' \" & quoted form of cfg_file & \n\t\" > \/dev\/null 2>&1; echo $?\"\nset shell_status to (do shell script s) as integer\n-- Source the config file and echo the desired variable:\nif shell_status is 0 then -- (means that grep found a match)\n\tset s to \". \" & quoted form of cfg_file & \" && echo $\" & env_var\n\tset gtd_in_dir to do shell script s\n\tset log_dir to gtd_in_dir & \"\/logs\/\"\n\t\n\t--------------------\n\t-- OPTIONAL: Override the Text editor to integrate with my GTD system.\n\t--\n\t-- This example:\n\t--\t1. Opens the file using MacVim ('mvim' as installed by MacPorts)\n\t--\t2. Switches the local working directory ('lcd') for just that buffer to\n\t--\t my GTD content directory ($GTD_IN after escaping potential spaces)\n\t--\t3. Gives the MacVim window a name ('--servername').\n\t\n\t----- First, escape any potential spaces in the directory path:\n\t--\n\t--set gtd_in_dir to gtd_in_dir & \" foo bar\" -- :DEBUG: spaces in path\n\t--\n\tset s to \"echo \" & quoted form of gtd_in_dir & \" | sed 's\/ \\\\{1,\\\\}\/\\\\\\\\ \/g'\" -- escape spaces\n\tset gtd_in_dir to do shell script s\n\t--\n\t--log gtd_in_dir -- :DEBUG: need to use 'log' to see the value w\/o AppleScript escapes\n\t\n\t----- Finally, set the editor with all of the options:\n\t--\n\tset text_editor to \"\/opt\/local\/bin\/mvim \\\"+lcd \" & gtd_in_dir & \"\\\" --servername GTD --remote-silent\"\n\t--\n\t--log text_editor -- :DEBUG:\n\t--return text_editor -- :DEBUG:\n\t--------------------\nend if\n---------- END Advanced --------------------------------------------------------\n--*)\n\n--return log_dir -- :DEBUG:\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\t--activate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\ton error\n\t\treturn false\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80\nset field_width to 7\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, field_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - field_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n-- Log file name\n--set log_name to \"urls.\" & y & \".txt\"\n\n--\n-- Create log directory if it doesn't already exist. (Go ahead and use a shell\n-- command since it's easy to create intermediate directories all in one step.):\n--\ntry\n\tset s to \"mkdir -pm700 \" & quoted form of log_dir\n\tdo shell script s\non error err_msg number err_num\n\terror \"Can't create log directory: \" & err_msg number err_num\n\treturn \"Fatal Error: Can't create log directory\"\nend try\n\nset log_file_posix to \"\" & log_dir & log_name\nset log_file to POSIX file log_file_posix\n\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file)) or (_IO's read_file(log_file) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell _IO to write_file(log_file, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_IO's read_file(log_file), head_sep))\nend if\n\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n-- Sort those along with the manually entered categories\/labels:\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n-- Get top-level categories:\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n-- Coerce the lines into a list:\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n-- Accept or modify URL title\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n-- Select a category\nset chosen_category to choose_category(g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n-- Get the info so far:\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n-- Modify selected category or enter a new category\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tdisplay alert \"Category required\" message \"Please supply a category for the URL.\" as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n-- Update the info:\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n-- Optionally add note\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\t_IO's append_file(log_file, final_text)\nelse\n\tif should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)\nend if\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(************************************************************\n *\tSubroutines\n ************************************************************)\n\n-- ===== Main Functions =====\n\n----- Dialog Views\n\non choose_category(cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & joinList(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiplyTxt(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiplyTxt(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiplyTxt(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\tif should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse\n\t\tset t to script_name\n\t\tset m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\t\tset b to {\"Cancel\"}\n\t\tdisplay alert t message m buttons b cancel button 1 as critical\n\t\treturn false\n\tend if\nend edit_log\n\n-- ===== Utility Functions =====\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to tocode, transliteration is\n\t-- activated. This means that when a character cannot be represented in\n\t-- the target character set, it can be approximated through one or several\n\t-- characters that look similar to the original character.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(************************************************************\n *\tScript Objects\n ************************************************************)\n\nscript _IO\n\t\n\t(* == PUBLIC == *)\n\t\n\ton write_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\tend write_file\n\t\n\ton append_file(file_path, this_data)\n\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\tend append_file\n\t\n\ton read_file(file_path)\n\t\t_read_file(file_path, string)\n\tend read_file\n\t\n\t(* == PRIVATE == *)\n\t\n\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tset file_handle to \n\t\t\t\topen for access file file_path with write permission\n\t\t\tif not should_append_data then \n\t\t\t\tset eof of the file_handle to 0\n\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\tclose access file_handle\n\t\t\treturn true\n\t\ton error err_msg number err_num\n\t\t\ttry\n\t\t\t\tclose access file file_path\n\t\t\tend try\n\t\t\terror err_msg number err_num\n\t\t\treturn false\n\t\tend try\n\tend _write_file\n\t\n\ton _read_file(file_path, data_class)\n\t\ttry\n\t\t\tset file_path to file_path as text\n\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\tset file_contents to \"\"\n\t\t\telse\n\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\tend if\n\t\t\treturn file_contents\n\t\ton error\n\t\t\treturn 0\n\t\tend try\n\tend _read_file\nend script\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"af7d153f7985585bcfd17a3c78cf15e43bc6189a","subject":"update","message":"update\n","repos":"hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src,hobinyoon\/apache-cassandra-2.2.3-src","old_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_file":"mtdb\/ec2-tools\/mutants-automation.applescript","new_contents":"-- 2 machines per experiment\nglobal num_experiments\nset num_experiments to 7\n\n-- TODO: create a named window, if not exist. open the named window and work on it.\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_experiments * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\t\t\n\t\t-- Move to the next (first) tab\t\t\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\n-- This can not be scripted inside the server machine, since it doesn't have Mutants source yet.\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n-- This can not be scripted, since the mutants source is not there yet.\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && (git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git || true) && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-format-xvdd-mount-ebs-mag-cold-to-ebs-mag.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag\n\n\non server_mount_local_ssd_cold_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-mount-local-ssd-cold-to-ebs-ssd.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_local_ssd_cold_to_ebs_ssd\n\n\non server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-format-xvdc-mount-2-local-ssds-cold-to-2nd-local-ssd.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Kill the foreground process just in case\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-get-client-logs-and-process.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm -rf data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\n-- One-time use.\non server_ctrl_c()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_ctrl_c\n\n\n-- One-time use.\non ctrl_c()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend ctrl_c\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\t\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t------------------------------------\n\t-- These are VM-specific commands. Consider automating.\n\t-- Run either of these, depending on what dev you have. TODO: let it follow a global configuration file, based on its hostname?\n\t-- my server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd()\n\tmy server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\tmy server_mount_local_ssd_cold_to_ebs_ssd()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Only when you want Mutants to migrate tablets\n\tmy server_edit_cassandra_yaml()\n\t\n\tmy client_edit_cassandra_yaml()\n\t-------------------------------------\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\n\tmy save_screen_layout()\n\tmy screen_detach()\n\n\n\n\n\n","old_contents":"-- 2 machines per experiment\nglobal num_experiments\nset num_experiments to 7\n\n-- TODO: create a named window, if not exist. open the named window and work on it.\non open_window_tabs()\n\ttell application \"Terminal\"\n\t\tactivate\n\t\t-- Open a new window\n\t\t-- http:\/\/superuser.com\/questions\/195633\/applescript-to-open-a-new-terminal-window-in-current-space\n\t\tdo script \"clear\"\n\t\t-- set currentWindow to front window\n\t\t\n\t\t-- Open new tabs\n\t\trepeat (num_experiments * 2 - 1) times\n\t\t\ttell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down\n\t\tend repeat\n\t\t\n\t\t-- Move to the next (first) tab\t\t\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend tell\nend open_window_tabs\n\n\non ssh()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.5\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshs\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sshc\" & s_id\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend ssh\n\n\non screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \" \"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend screen\n\n\n-- This can not be scripted inside the server machine, since it doesn't have Mutants source yet.\non install_pkgs_0()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"sudo add-apt-repository -y ppa:webupd8team\/java\"\n\t\t\tset cmd to cmd & \" && sudo apt-get update\"\n\t\t\tset cmd to cmd & \" && sudo apt-get install oracle-java8-installer git ctags ant htop tree maven gnuplot-nox ntp ioping realpath make gcc cmake g++ libboost-dev libboost-system-dev libboost-timer-dev collectl -y\"\n\t\t\tset cmd to cmd & \" && sudo apt-get autoremove -y vim-tiny\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone https:\/\/github.com\/hoytech\/vmtouch.git\"\n\t\t\tset cmd to cmd & \" && cd vmtouch\"\n\t\t\tset cmd to cmd & \" && make -j\"\n\t\t\tset cmd to cmd & \" && sudo make install\"\n\t\t\tset cmd to cmd & \" && sudo service ntp stop\"\n\t\t\tset cmd to cmd & \" && sudo ntpdate -bv 0.ubuntu.pool.ntp.org\"\n\t\t\tset cmd to cmd & \" && sudo service ntp start\"\n\t\t\tset cmd to cmd & \" && cd ~\/work\"\n\t\t\tset cmd to cmd & \" && git clone git@github.com:hobinyoon\/linux-home.git\"\n\t\t\tset cmd to cmd & \" && cd linux-home\"\n\t\t\tset cmd to cmd & \" && .\/setup-linux.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend install_pkgs_0\n\n\non install_pkgs_1()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\tdelay 0.2\n\t\ttell application \"System Events\" to key code 123 -- left\n\t\ttell application \"System Events\" to key code 36 -- enter\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down} -- move to the next tab\n\t\tdelay 0.1\n\tend repeat\nend install_pkgs_1\n\n\n-- Sometimes the previous step takes forever. Need to make sure.\non install_pkgs_2()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"yes\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay 0.1\n\t\tend repeat\n\tend tell\nend install_pkgs_2\n\n\non killall_screen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"killall screen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend killall_screen\n\n\non exit_screen()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"X\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\t\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\" using {control down}\n\t\tdelay 0.1\n\t\t\n\t\t-- Move to the right\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend exit_screen\n\n\non server_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"watch -n 0.5 \\\"free -mt\\\"\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_screen_split_htop\n\n\non client_screen_split_htop()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\t-- Start from the 2nd tab, which is the first client tab\n\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"S\"\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"c\"\n\t\ttell application \"System Events\" to keystroke \"htop\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t\n\t\t-- Move 2 to the right, since S and C take turns.\n\t\t-- 124: right arrow\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\t-- Set the current tab to the 1st one\n\ttell application \"System Events\" to key code 123 using {shift down, command down}\n\t\nend client_screen_split_htop\n\n-- This can not be scripted, since the mutants source is not there yet.\non build_cass_pressuremem_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\t\n\t\t-- Without the delay, some connections are not made.\n\t\tset delay_after_ssh to 0.2\n\t\t\n\t\tset tab_id to 0\n\t\tset s_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && (git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git || true) && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory && mkdir -p .build && cd .build && cmake .. && make -j && cdcass && time ant\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cd ~\/work && git clone git@github.com:hobinyoon\/apache-cassandra-2.2.3-src.git && ln -s ~\/work\/apache-cassandra-2.2.3-src ~\/work\/cassandra && cd ~\/work\/cassandra\/mtdb\/loadgen && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tdelay delay_after_ssh\n\t\t\t\n\t\t\tset s_id to s_id + 1\n\t\tend repeat\n\tend tell\nend build_cass_pressuremem_loadgen\n\n\non git_pull()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 0\n\t\trepeat until tab_id is (num_experiments * 2)\n\t\t\tset tab_id to tab_id + 1\n\t\t\tset cmd to \"cdcass && git pull\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\tend repeat\n\tend tell\nend git_pull\n\n\non server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-format-xvdd-mount-ebs-mag-cold-to-ebs-mag.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag\n\n\non server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-format-xvdc-mount-2-local-ssds-cold-to-2nd-local-ssd.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-ssd-gp2\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_ebs_ssd\n\n\non server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo cp ~\/work\/cassandra\/mtdb\/ec2-tools\/etc-fstab \/etc\/fstab\"\n\t\t\tset cmd to cmd & \" && sudo umount \/mnt\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo mount \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/local-ssd\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/local-ssd\/cass-data\"\n\t\t\tset cmd to cmd & \" && mkdir ~\/cass-data-vol\"\n\t\t\tset cmd to cmd & \" && sudo ln -s ~\/cass-data-vol \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && mkdir \/mnt\/ebs-ssd-gp2\/cass-data\"\n\t\t\tset cmd to cmd & \" && sudo mkdir -p \/mnt\/ebs-ssd-gp2\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && sudo ln -s \/mnt\/ebs-ssd-gp2 \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/ebs-ssd-gp2\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\"\n\t\t\tset cmd to cmd & \" && sudo chown -R ubuntu \/mnt\/cold-storage\/mtdb-cold\"\n\t\t\tset cmd to cmd & \" && mkdir -p ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data ~\/work\/cassandra\/data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_data_to_ebs_ssd\n\n\non server_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ migrate_to_cold_storage:.+\/ migrate_to_cold_storage: true\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"sed -i -r 's\/^ tablet_coldness_threshold:.+\/ tablet_coldness_threshold: 75\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep migrate_to_cold_storage: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep tablet_coldness_threshold: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_edit_cassandra_yaml\n\n\non client_edit_cassandra_yaml()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sed -i -r 's\/^ num_writes_per_simulation_time_mins:.+\/ num_writes_per_simulation_time_mins: \" & (tab_id * 5000) & \"\/' ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\tset cmd to \"grep num_writes_per_simulation_time_mins: ~\/work\/cassandra\/conf\/cassandra.yaml\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_edit_cassandra_yaml\n\n\non save_screen_layout()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\t\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \":layout save default\"\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend save_screen_layout\n\n\n-- One-time fix. Won't need again\non mkdir_collectl()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"mkdir ~\/work\/cassandra\/mtdb\/logs\/collectl\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend mkdir_collectl\n\n\non run_server()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"sudo -- sh -c 'echo 1 > \/proc\/sys\/vm\/drop_caches' && cdcass && time ant && rm -rf ~\/work\/cassandra\/data\/* && rm -rf \/mnt\/cold-storage\/mtdb-cold\/* && (killall mon-num-cass-threads.sh >\/dev\/null 2>&1 || true) && (~\/work\/cassandra\/mtdb\/tools\/mon-num-cass-threads.sh &) && (killall collectl >\/dev\/null 2>&1 || true) && ((collectl -i 1 -sCDN -oTm > ~\/work\/cassandra\/mtdb\/logs\/collectl\/collectl-`date +'%y%m%d-%H%M%S'` 2>\/dev\/null) &) && bin\/cassandra -f | grep --color -E '^|MTDB:'\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Give enough delay to make sure the logs have different datetimes.\n\t\t\tdelay 3\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend run_server\n\n\non server_pressure_memory()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/tools\/pressure-memory\/.build\"\n\t\t\tset cmd to cmd & \" && (.\/pressure-memory &)\"\n\t\t\tset cmd to cmd & \" && watchsstables\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_pressure_memory\n\n\non client_run_loadgen()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 2\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cd ~\/work\/cassandra\/mtdb\/loadgen && .\/create-db.sh && .\/loadgen\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Make sure we get different exp datetime\n\t\t\tdelay 2\n\t\t\t-- Go to the next client tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend client_run_loadgen\n\n\non screen_detach()\n\ttell application \"Terminal\" to activate\n\tset tab_id to 0\n\trepeat until tab_id is (num_experiments * 2)\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke \"d\"\n\t\tdelay 0.1\n\t\t-- Move to the next tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\tend repeat\nend screen_detach\n\n\non screen_reattach()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"screen -r\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next tab\n\t\t\tset tab_id to tab_id + 1\n\t\tend repeat\n\tend tell\nend screen_reattach\n\n\non server_get_client_logs_and_process()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"~\/work\/cassandra\/mtdb\/ec2-tools\/server-get-client-logs-and-process.sh\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_get_client_logs_and_process\n\n\n-- One-time fix. Won't need again\non server_rename_client_log()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\n\t\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\t-- I don't like the float division. oh well.\n\t\t\tset cmd to \"mv ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/loadgen\/160302-023811-\" & ((tab_id - 1) \/ 2) & \" && mv ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811 ~\/work\/cassandra\/mtdb\/logs\/cassandra\/160302-023811-\" & ((tab_id - 1) \/ 2)\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"a\" using {control down}\n\t\ttell application \"System Events\" to keystroke tab\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_rename_client_log\n\n\n-- One-time use.\non server_kill_monitor_processes()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"(killall pressure-memory > \/dev\/null 2>&1 || true) && (sudo killall collectl > \/dev\/null 2>&1 || true) && (sudo killall mon-num-cass-threads.sh > \/dev\/null 2>&1 || true)\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_kill_monitor_processes\n\n\non server_switch_data_dir_to_ebs_mag()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/ebs-mag\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_ebs_mag\n\n\non server_switch_data_dir_to_local_ssd()\n\ttell application \"Terminal\"\n\t\tset currentWindow to front window\n\t\tset tab_id to 1\n\t\trepeat until tab_id > (num_experiments * 2)\n\t\t\tset cmd to \"cdcass\"\n\t\t\tset cmd to cmd & \" && \\\\rm data\"\n\t\t\tset cmd to cmd & \" && ln -s \/mnt\/local-ssd\/cass-data data\"\n\t\t\tdo script (cmd) in tab tab_id of currentWindow\n\t\t\t-- Go to the next server tab\n\t\t\tset tab_id to tab_id + 2\n\t\tend repeat\n\tend tell\nend server_switch_data_dir_to_local_ssd\n\n\non open_window_tabs_ssh_screen()\n\tmy open_window_tabs()\n\tmy ssh()\n\tmy screen()\nend open_window_tabs_ssh_screen\n\n\n-- One-time use.\non server_ctrl_c()\n\ttell application \"Terminal\" to activate\n\t\n\tset tab_id to 0\n\trepeat until tab_id is num_experiments\n\t\tset tab_id to tab_id + 1\n\t\ttell application \"System Events\" to keystroke \"c\" using {control down}\n\t\t-- Move to the next server tab\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\ttell application \"System Events\" to key code 124 using {shift down, command down}\n\t\tdelay 0.1\n\tend repeat\nend server_ctrl_c\n\n\non run_all()\n\tmy open_window_tabs_ssh_screen()\n\t\n\tmy install_pkgs_0()\n\tmy install_pkgs_1()\n\tmy install_pkgs_2()\n\t\n\t-- Not a normal process. In case something goes wrong.\n\t-- my exit_screen()\n\t\n\t-- Need to logout and login again to make the new .bashrc in effect\n\t-- Hit ^D until all tabs are closed\n\tmy open_window_tabs_ssh_screen()\n\t\n\t-- These can be grouped\n\tmy server_screen_split_htop()\n\tmy client_screen_split_htop()\n\t\n\tmy build_cass_pressuremem_loadgen()\n\t\n\tmy save_screen_layout()\n\tmy screen_detach()\n\tmy screen_reattach()\n\t\n\t------------------------------------\n\t-- These are VM-specific commands. Consider automating.\n\t-- Run either of these, depending on what dev you have. TODO: let it follow a global configuration file, based on its hostname?\n\t-- my server_format_xvdc_mount_2_local_ssds_cold_to_2nd_local_ssd()\n\tmy server_format_ebs_mag_mount_dev_prepare_dirs_cass_data_to_local_ssd_cold_to_ebs_mag()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\n\t\n\t-- Make sure which experiment you want, by editing migrate_to_cold_storage\n\tmy server_edit_cassandra_yaml()\n\tmy client_edit_cassandra_yaml()\n\t-------------------------------------\n\t\n\t-- This takes some time to make sure each server has different exp datetime\n\tmy run_server()\n\t\n\t-- Wait till all servers are ready before pressuring memory\n\tmy server_pressure_memory()\n\t\n\t-- This takes some time too.\n\tmy client_run_loadgen()\n\t\n\t-- Detach screen to save network traffic while running experiments\n\tmy save_screen_layout()\n\tmy screen_detach()\n\t\n\t-- May want to check the last tabs to see if the system saturates or cold sstables are created\n\t\n\t-- When done, reattach the screen and process the logs\n\tmy screen_reattach()\n\tmy server_get_client_logs_and_process()\n\t\n\t-- Switch data directory to ebs mag\n\t-- my server_switch_data_dir_to_ebs_mag()\nend run_all\n\nmy screen_detach()\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"90b8fdfbbf3c17b18e8a5b056f0595b9c41d6503","subject":"Delete Restart.applescript","message":"Delete Restart.applescript","repos":"chrisiona\/OSX-Actions","old_file":"Restart.applescript","new_file":"Restart.applescript","new_contents":"","old_contents":"tell application \"Finder\"\n restart\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"08057050e037d4743f6b8160f45862ea1e77caf6","subject":"updated some comments (script name)","message":"updated some comments (script name)\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"446f65b86086008176759e672d4e812ff0094e8f","subject":"Minor comment style change","message":"Minor comment style change\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(* ==== Init ==== *)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(* ==== Read preferences ==== *)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(* ==== Get web page info ==== *)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(* ==== Parse existing data (model-ish) ==== *)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(* ==== Main view(-ish) ==== *)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(* ==== Main Functions ==== *)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(* ==== Settings Functions ==== *)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(* ==== Utility Functions ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(* ==== Main Classes ==== *)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(* ==== Utility Objects ==== *)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"566f1b7b22da3a015ae12141c76d42c2424442d3","subject":"Update recall script so it works with nvim","message":"Update recall script so it works with nvim\n","repos":"mk12\/scripts,mk12\/scripts,mk12\/scripts,mk12\/scripts","old_file":"recall.applescript","new_file":"recall.applescript","new_contents":"#!\/usr\/bin\/env osascript\n\nset journal to \"~\/ia\/Journal\/Journal.txt\"\ntell application \"Terminal\"\n\tset lineCount to (do shell script \"wc -l < \" & journal) as integer\n\tset randomLine to (random number from 1 to lineCount) as integer\n\tactivate\n\tdo script \"vim -c ':Goyo | set bg=light | \" & randomLine & \"' \" & journal\n\tset current settings of first window to settings set \"Solarized Light\"\n\ttell application \"System Events\" to keystroke \"f\" using {command down, control down}\nend tell\n","old_contents":"#!\/usr\/bin\/env osascript\n\nset journal to \"~\/ia\/Journal\/Journal.txt\"\ntell application \"Terminal\"\n\tset lineCount to (do shell script \"wc -l < \" & journal) as integer\n\tset randomLine to (random number from 1 to lineCount) as integer\n\tactivate\n\tdo script \"vim -c ':Goyo' -c ':set bg=light' \" & journal & \":\" & randomLine\n\tset current settings of first window to settings set \"Solarized Light\"\n\ttell application \"System Events\" to keystroke \"f\" using {command down, control down}\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"50a4a08b5c294abed940c8c6eb5ca4a791e38f40","subject":"Delete alwaysListening.applescript","message":"Delete alwaysListening.applescript","repos":"gskielian\/Jarvis","old_file":"alwaysListening.applescript","new_file":"alwaysListening.applescript","new_contents":"","old_contents":"(*Instead of using the spotlight app, this opens a new terminal directly*)\n\ntell application \"Terminal\"\n\t\n\t(*names currentTab need to find a more elegant method*)\n\t\n\trepeat\n\t\tset currentTab to do script \"~\/jarvis.sh\"\n\t\t\n\t\tactivate currentTab\n\t\tset mainID to id of front window\n\t\t(*opens up speech-to-text*)\n\t\ttell application \"System Events\" to key code 63\n\t\ttell application \"System Events\" to key code 63\n\t\tdelay 4\n\t\t\n\t\t(*presses \"enter\" on DictationIM*)\n\t\ttell application \"System Events\" to tell process \"DictationIM\"\n\t\t\tclick button 1\n\t\tend tell\n\t\tdelay 1.2\n\t\t\n\t\t\n\t\t(*presses \"enter\" in the terminal*)\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t\n\t\t(*closes the terminal when process is completed*)\n\t\tset toggle to 1\n\t\tdelay 0.1\n\t\tset thetimeout to 1000\n\t\t\n\t\trepeat until toggle \u2265 thetimeout\n\t\t\tif busy of currentTab is false then\n\t\t\t\tclose (every window whose id = mainID)\n\t\t\t\tset toggle to thetimeout\n\t\t\tend if\n\t\t\tset toggle to (toggle + 1)\n\t\t\tdelay 0.1\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"74d289ffc4a449e3d4d24d8dd925eff3d56f08bb","subject":"Select placeholder for images","message":"Select placeholder for images\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non deleteAllSlides(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, n, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image n\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn name of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docname, posixPath)\n\ttell application \"Keynote\"\n\t\tsave document named docname in POSIX file posixPath\n\tend tell\nend savePresentation\t\n\non createSlide(docname, masterSlideName)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\tend tell\n\t return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non deleteAllSlides(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docname)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell document named docname\n\t\ttell the current slide\n\t\t\t\n\t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\t\tset thisPlaceholderImageItem to image 1\n\t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t\tset macPath to POSIX file filepath as Unicode text\n\t\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\t\talias macPath\n\t\t\t\n\t\tend tell\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docname, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif title showing is true then\n\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docname, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n\t\ttell document named docname\n\t\t\ttell the current slide\n\t\t\t\tif body showing is true then\n\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend addTitle\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"daf26fefb5a9b0814867ddfc5ad4eee7a191cd72","subject":"launch instead of activate Excel","message":"launch instead of activate Excel\n","repos":"jpmckinney\/copy_paste_pdf","old_file":"bin\/copy-paste-pdf.applescript","new_file":"bin\/copy-paste-pdf.applescript","new_contents":"#!\/usr\/bin\/osascript\n-- @see http:\/\/appscript.sourceforge.net\/osascript.html\n\non run argv\n set start to current date\n\n -- Default arguments.\n set close_applications to true\n\n -- Parse command-line arguments and translate paths from `\/path\/to\/file.ext`\n -- to `Macintosh HD:path:to:file.ext`.\n set input to POSIX file (item 1 of argv) as alias\n set output to POSIX file (item 2 of argv) as string\n if count of argv is 2 then set close_applications to false\n\n tell application \"Preview\"\n -- It seems Preview won't work if we `run` or `launch` it.\n activate\n open input\n end\n\n -- Preview is not fully scriptable.\n set the clipboard to \"\"\n tell application \"System Events\" to tell process \"Preview\"\n click menu item \"Select All\" of menu 1 of menu bar item \"Edit\" of menu bar 1\n click menu item \"Copy\" of menu 1 of menu bar item \"Edit\" of menu bar 1\n end tell\n if close_applications then tell application \"Preview\" to quit\n\n -- Yes, this is how to make AppleScript block.\n repeat\n try\n if (the clipboard) is not \"\" then\n -- One idea is to set a variable to the clipboard, in order to allow use\n -- of the clipboard by the user past this point. However, the clipboard\n -- to be complex based on the output of `return clipboard info`.\n exit repeat\n end if\n -- Calling `the clipboard` can sometimes cause an exception to be thrown,\n -- either due to race condition or software error. Not sure how to recover.\n -- Observed error codes are: -25130, -25132, -25133.\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardSyncErr\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardItemErr\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardFlavorErr\n on error error_message number error_number\n if {-25130, -25132, -25133} contains error_number\n error \"Known error \" & error_number & \" occurred\" number error_number\n else\n error error_message number error_number\n end if\n end try\n end repeat\n\n tell application \"Microsoft Excel\"\n launch\n make new workbook\n paste worksheet active sheet\n save workbook as active workbook filename output file format CSV file format overwrite yes\n close active workbook saving no\n if close_applications then quit\n end tell\n\n log \"\" & (current date - start) & \" seconds\"\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n-- @see http:\/\/appscript.sourceforge.net\/osascript.html\n\non run argv\n set start to current date\n\n -- Default arguments.\n set close_applications to true\n\n -- Parse command-line arguments and translate paths from `\/path\/to\/file.ext`\n -- to `Macintosh HD:path:to:file.ext`.\n set input to POSIX file (item 1 of argv) as alias\n set output to POSIX file (item 2 of argv) as string\n if count of argv is 2 then set close_applications to false\n\n tell application \"Preview\"\n activate\n open input\n end\n\n -- Preview is not fully scriptable.\n set the clipboard to \"\"\n tell application \"System Events\" to tell process \"Preview\"\n click menu item \"Select All\" of menu 1 of menu bar item \"Edit\" of menu bar 1\n click menu item \"Copy\" of menu 1 of menu bar item \"Edit\" of menu bar 1\n end tell\n if close_applications then tell application \"Preview\" to quit\n\n -- Yes, this is how to make AppleScript block.\n repeat\n try\n if (the clipboard) is not \"\" then\n -- One idea is to set a variable to the clipboard, in order to allow use\n -- of the clipboard by the user past this point. However, the clipboard\n -- to be complex based on the output of `return clipboard info`.\n exit repeat\n end if\n -- Calling `the clipboard` can sometimes cause an exception to be thrown,\n -- either due to race condition or software error. Not sure how to recover.\n -- Observed error codes are: -25130, -25132, -25133.\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardSyncErr\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardItemErr\n -- @see http:\/\/search.cpan.org\/~wyant\/Mac-Pasteboard-0.002\/lib\/Mac\/Pasteboard.pm#badPasteboardFlavorErr\n on error error_message number error_number\n if {-25130, -25132, -25133} contains error_number\n error \"Known error \" & error_number & \" occurred\" number error_number\n else\n error error_message number error_number\n end if\n end try\n end repeat\n\n tell application \"Microsoft Excel\"\n activate\n make new workbook\n paste worksheet active sheet\n save workbook as active workbook filename output file format CSV file format overwrite yes\n close active workbook saving no\n if close_applications then quit\n end tell\n\n log \"\" & (current date - start) & \" seconds\"\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c3da3f566d987f59b4d444c27a83ba7b9108602c","subject":"execute js with no side effect on Google Play Music page","message":"execute js with no side effect on Google Play Music page\n","repos":"atsuya\/google-music-control","old_file":"macos\/chrome\/lib\/controller.scpt","new_file":"macos\/chrome\/lib\/controller.scpt","new_contents":"on control(keyCode)\n set code to \"(function (keyCode) {\n const event = new KeyboardEvent('keydown', { keyCode })\n document.dispatchEvent(event)\n })(\" & keyCode & \")\n \"\n\n set targetTab to activeTab() of me\n if targetTab is not null then\n executeJavaScript(targetTab, code) of me\n end if\nend control\n\non getPlayState()\n set targetTab to activeTab() of me\n\n if targetTab is not null then\n set stateCode to \"document.querySelector('#player-bar-play-pause').getAttribute('aria-label')\"\n set oppositeState to executeJavaScript(targetTab, stateCode) of me\n\n if oppositeState is \"Play\" then\n return \"Paused\"\n else\n return \"Playing\"\n end if\n end if\nend getPlayState\n\non getCurrentSong()\n set targetTab to activeTab() of me\n\n if targetTab is not null then\n set songCode to \"document.querySelector('#currently-playing-title').innerHTML\"\n set song to executeJavaScript(targetTab, songCode) of me\n\n set artistCode to \"document.querySelector('.currently-playing-details').innerText\"\n set artist to executeJavaScript(targetTab, artistCode) of me\n\n return {song, artist}\n end if\nend getCurrentSong\n\non notifyCurrentSong()\n set songDetails to getCurrentSong() of me\n\n notify(item 1 of songDetails, item 2 of songDetails) of me\nend notifyCurrentSong\n\non notify(name, message)\n display notification message with title name\nend notify\n\non activeTab()\n set targetTab to null\n\n tell application \"Google Chrome\"\n repeat with theWindow in every window\n repeat with theTab in every tab of theWindow\n if theTab's title ends with \"- Google Play Music\" then\n set targetTab to theTab\n exit repeat\n end if\n end repeat\n end repeat\n end tell\n\n return targetTab\nend activeTab\n\non executeJavaScript(activeTab, code)\n tell application \"Google Chrome\"\n return execute activeTab javascript code\n end tell\nend executeJavaScript\n","old_contents":"on control(keyCode)\n set code to \"var event = new KeyboardEvent('keydown', { keyCode: \" & keyCode & \" });\n document.dispatchEvent(event);\n \"\n\n set targetTab to activeTab() of me\n if targetTab is not null then\n executeJavaScript(targetTab, code) of me\n end if\nend control\n\non getPlayState()\n set targetTab to activeTab() of me\n\n if targetTab is not null then\n set stateCode to \"document.querySelector('#player-bar-play-pause').getAttribute('aria-label')\"\n set oppositeState to executeJavaScript(targetTab, stateCode) of me\n\n if oppositeState is \"Play\" then\n return \"Paused\"\n else\n return \"Playing\"\n end if\n end if\nend getPlayState\n\non getCurrentSong()\n set targetTab to activeTab() of me\n\n if targetTab is not null then\n set songCode to \"document.querySelector('#currently-playing-title').innerHTML\"\n set song to executeJavaScript(targetTab, songCode) of me\n\n set artistCode to \"document.querySelector('.currently-playing-details').innerText\"\n set artist to executeJavaScript(targetTab, artistCode) of me\n\n return {song, artist}\n end if\nend getCurrentSong\n\non notifyCurrentSong()\n set songDetails to getCurrentSong() of me\n\n notify(item 1 of songDetails, item 2 of songDetails) of me\nend notifyCurrentSong\n\non notify(name, message)\n display notification message with title name\nend notify\n\non activeTab()\n set targetTab to null\n\n tell application \"Google Chrome\"\n repeat with theWindow in every window\n repeat with theTab in every tab of theWindow\n if theTab's title ends with \"- Google Play Music\" then\n set targetTab to theTab\n exit repeat\n end if\n end repeat\n end repeat\n end tell\n\n return targetTab\nend activeTab\n\non executeJavaScript(activeTab, code)\n tell application \"Google Chrome\"\n return execute activeTab javascript code\n end tell\nend executeJavaScript\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c56d6ee7a757eb81485dda382c7d6971c291ec89","subject":"4.0.1 - made change recommended by jwillinghalpern to work with less-specific source XML","message":"4.0.1 - made change recommended by jwillinghalpern to work with less-specific source XML\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Wrap Set Field with If-Not-Same.applescript","new_file":"Scripts\/fmClip - Wrap Set Field with If-Not-Same.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"7ddc8cc2d6f71083347094f55ccd0d77c37728cf","subject":"actions don't have to have params","message":"actions don't have to have params\n","repos":"nuclearcoconut42\/niji","old_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"uri_handlers\/osx\/niji.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u000e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\"\u0000\u000e\r\u0000\u000e\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\"\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\n\u0000\u001d\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\u0000\u0015\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000<\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000.\u0006\u0000\u0015\u0000\u0003\u0000\u0018\n\u0000\u0004\ndtxt\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000 \n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\r\u0000#\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000&\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000*\u0000\/\u00000\u00001\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u00004\u00005\r\u00004\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u00006\u00007\n\u0000\u0004\nctxt\r\u00006\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u00008\r\u00008\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000<\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000<\u0000\u0003\u0000=\u0000>\n\u0000\u0004\npsof\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\npsin\r\u0000A\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u00007\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u00000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000\"\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000E\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000E\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000H\r\u0000H\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000+\u00004\u0000M\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000M\u0000\u0003\u0000N\u0000O\n\u0000\u0004\npsof\r\u0000N\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000?\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\npsin\r\u0000R\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000J\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u00007\u0001\u001e\u0000U\u0000V\u0000W\u0000X\r\u0000U\u0000\u0002=\u0000\u0003\u00007\u0000:\u0000Y\u0000Z\r\u0000Y\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000Z\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0000\r\u0000V\u0000\u0002r\u0000\u0000\u0000=\u0000@\u0000[\u0000\\\r\u0000[\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000W\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0002=\u0000\u0003\u0000C\u0000F\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0002\u0000^\u0000\u0002\u0000a\r\u0000a\u0000\u0001k\u0000\u0000\u0000I\u0000Q\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003I\u0000\u0002\u0000I\u0000N\u0000e\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000e\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000d\u0000\u0002\u0000h\r\u0000h\u0000\u0001L\u0000\u0000\u0000O\u0000Q\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0001k\u0000\u0000\u0000T\u0001\u001e\u0000i\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002r\u0000\u0000\u0000T\u0000c\u0000l\u0000m\r\u0000l\u0000\u0002n\u0000\u0000\u0000T\u0000a\u0000n\u0000o\r\u0000n\u0000\u00037\u0001\u0000\u0000U\u0000a\u0000p\u0000q\n\u0000\u0004\nctxt\r\u0000p\u0000\u0001m\u0000\u0000\u0000Y\u0000[\u0003\u0000\u0001\r\u0000q\u0000\u0003l\u0000\u0005\u0000\\\u0000`\u0000r\r\u0000r\u0000\u0002\\\u0000\u0000\u0000\\\u0000`\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000o\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003Q\u0000\u0000\u0000d\u0000\u0000w\u0000x\u0000y\r\u0000w\u0000\u0002r\u0000\u0000\u0000g\u0000v\u0000z\u0000{\r\u0000z\u0000\u0002n\u0000\u0000\u0000g\u0000t\u0000|\u0000}\r\u0000|\u0000\u00037\u0001\u0000\u0000h\u0000t\u0000~\u0000\n\u0000\u0004\nctxt\r\u0000~\u0000\u0003l\u0000\u0005\u0000l\u0000p\u0000\r\u0000\u0000\u0002[\u0000\u0000\u0000l\u0000p\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000s\u0003\r\u0000}\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000x\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000y\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000&\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000=\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\u0016\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0011\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0011\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u000f\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0001\u000e\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u000e\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\n\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0000\u0001\u0003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000~\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002~\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0017\u0001\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u001b\u0001\u001d{\n{\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001bz\nz\u0000\u0004\nascr\u0002|\u0000\u0000\u0002\u0000T\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u001f\u0001\u001fyxw\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001f\u0001\u001fv\u0000\u0000\u0001v\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u001f\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u001f\u0001$\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u001f\u0001 t\u000bt\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001 \u0001#\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001'\u0001\u0001\u0002\u0002\u0001\u0002\u0000\u0002\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003l\u0000\u0001\u0001'\u0001's\u0001\u0005\u0001\u0006\u0001s\u0000\u0000\f\u0001\u0005\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0004\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0003Q\u0000\u0000\u0001'\u0001Y\u0001\n\u0001\u000b\u0001\f\r\u0001\n\u0000\u0001k\u0000\u0000\u0001*\u0001A\u0001\r\u0002\u0001\r\u0000\u0002\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002r\u0000\u0000\u0001*\u00011\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002n\u0000\u0000\u0001*\u0001\/\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0001+\u0001\/r\u000br\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0001*\u0001+q\u000bq\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u000f\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002r\u0000\u0000\u00012\u00019\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002n\u0000\u0000\u00012\u00017\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001o\u0000\u0000\u00013\u00017o\u000bo\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0019\u0000\u0001o\u0000\u0000\u00012\u00013n\u000bn\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001al\r\u0001\u001a\u0000\u0002r\u0000\u0000\u0001:\u0001A\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002n\u0000\u0000\u0001:\u0001?\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0001o\u0000\u0000\u0001;\u0001?k\u000bk\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0001:\u0001;j\u000bj\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002l\u0000\u0000\r\u0001\u000b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000h\u0001\u001fg\nh\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002g\u0000\u0000\r\u0001\f\u0000\u0001k\u0000\u0000\u0001I\u0001Y\u0001 \u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003I\u0000\u0002\u0001I\u0001Ve\u0001#d\ne\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001#\u0000\u0002b\u0000\u0000\u0001I\u0001R\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0001I\u0001N\u0001&\u0001'\r\u0001&\u0000\u0001m\u0000\u0000\u0001I\u0001L\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001'\u0000\u0001o\u0000\u0000\u0001L\u0001Mc\u000bc\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001%\u0000\u0001m\u0000\u0000\u0001N\u0001Q\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000)\u0002d\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,b\r\u0001,\u0000\u0001L\u0000\u0000\u0001W\u0001Ya\u0001a\u0000\u0000\u0002b\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0003l\u0000\u0002\u0001Z\u0001Z`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0001.\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0003l\u0000\u0001\u0001Z\u0001Z]\u00011\u00012\u0001]\u0000\u0000\f\u00011\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u00010\u0000\u0002\u00014\u00015\r\u00014\u0000\u0003Q\u0000\u0000\u0001Z\u0001\u00016\u00017\u00018\r\u00016\u0000\u0001k\u0000\u0000\u0001]\u0001\u00019\u0002\u00019\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0001]\u0001r\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0001]\u0001n\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0005\u0001]\u0001j\u0001@\\[\r\u0001@\u0000\u0003I\u0000\u0002\u0001]\u0001jZ\u0001A\u0001B\nZ\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0001A\u0000\u0001m\u0000\u0000\u0001]\u0001`Y\nY\u0000\b\u000bafdrtemp\u0006\u0001B\u0000\u0003X\u0001CW\nX\u0000\u0004\nrtyp\r\u0001C\u0000\u0001m\u0000\u0000\u0001c\u0001fV\nV\u0000\u0004\nTEXT\u0006W\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\r\u0001?\u0000\u0001m\u0000\u0000\u0001j\u0001m\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001;\u0000\u0002\u0001FT\r\u0001F\u0000\u0003I\u0000\u0002\u0001s\u0001S\u0001GR\nS\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001G\u0000\u0002b\u0000\u0000\u0001s\u0001\u0001H\u0001I\r\u0001H\u0000\u0002b\u0000\u0000\u0001s\u0001\u0001J\u0001K\r\u0001J\u0000\u0002b\u0000\u0000\u0001s\u0001|\u0001L\u0001M\r\u0001L\u0000\u0001m\u0000\u0000\u0001s\u0001v\u0001N\u000e\u0001N\u0000\u0001\u0001O\u0011\u0001O\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001M\u0000\u0003l\u0000\u0005\u0001v\u0001{\u0001PQP\r\u0001P\u0000\u0002n\u0000\u0000\u0001v\u0001{\u0001Q\u0001R\r\u0001Q\u0000\u00011\u0000\u0000\u0001w\u0001{O\nO\u0000\u0004\nstrq\r\u0001R\u0000\u0001o\u0000\u0000\u0001v\u0001wN\u000bN\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001Q\u0000\u0000\u0001P\u0000\u0000\r\u0001K\u0000\u0001m\u0000\u0000\u0001|\u0001\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000\u0006\u0000 \u0000>\u0000 \r\u0001I\u0000\u0002n\u0000\u0000\u0001\u0001\u0001U\u0001V\r\u0001U\u0000\u00011\u0000\u0000\u0001\u0001M\nM\u0000\u0004\npsxp\r\u0001V\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002R\u0000\u0000\u0002T\u0000\u0000\r\u00017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000K\u0001WJ\nK\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000I\u000bI\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002J\u0000\u0000\r\u00018\u0000\u0001k\u0000\u0000\u0001\u0001\u0001X\u0002\u0001X\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0003I\u0000\u0002\u0001\u0001H\u0001[G\nH\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001[\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\\\u0001]\r\u0001\\\u0000\u0002b\u0000\u0000\u0001\u0001\u0001^\u0001_\r\u0001^\u0000\u0001m\u0000\u0000\u0001\u0001\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001_\u0000\u0001o\u0000\u0000\u0001\u0001F\u000bF\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001]\u0000\u0001m\u0000\u0000\u0001\u0001\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0002\u0000)\u0002G\u0000\u0000\u0002\u0001Z\u0000\u0002\u0001dE\r\u0001d\u0000\u0001L\u0000\u0000\u0001\u0001D\u0001D\u0000\u0000\u0002E\u0000\u0000\u0002\u00015\u0000\u0002\u0001e\u0001f\r\u0001e\u0000\u0003l\u0000\u0002\u0001\u0001CBA\u0001C\u0000\u0000\u0001B\u0000\u0000\u0001A\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003l\u0000\u0001\u0001\u0001@\u0001i\u0001j\u0001@\u0000\u0000\f\u0001i\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001j\u0000\u0001\u0001k\u0011\u0001k\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001h\u0000\u0002\u0001l?\r\u0001l\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001m\u0001n\u0001o\r\u0001m\u0000\u0001k\u0000\u0000\u0001\u0001\u0001p\u0002\u0001p\u0000\u0002\u0001q\u0001r\r\u0001q\u0000\u0003I\u0000\u0002\u0001\u0001>\u0001s=\n>\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001s\u0000\u0002b\u0000\u0000\u0001\u0001\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0001\u0001\u0001v\u0001w\r\u0001v\u0000\u0002b\u0000\u0000\u0001\u0001\u0001x\u0001y\r\u0001x\u0000\u0002b\u0000\u0000\u0001\u0001\u0001z\u0001{\r\u0001z\u0000\u0001m\u0000\u0000\u0001\u0001\u0001|\u000e\u0001|\u0000\u0001\u0001}\u0011\u0001}\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001{\u0000\u0001o\u0000\u0000\u0001\u0001<\u000b<\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001y\u0000\u0001m\u0000\u0000\u0001\u0001\u0001~\u000e\u0001~\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000 \r\u0001w\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0001\u0001;\n;\u0000\u0004\npsxp\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001:\u000b:\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001u\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\"\u0002=\u0000\u0000\u0002\u0001r\u0000\u0002\u00019\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00018\u00017\n8\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u00027\u0000\u0000\u00029\u0000\u0000\r\u0001n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00005\u00014\n5\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00003\u000b3\u0000\u00070\u0000\u0003msg\u0000\u0000\u00024\u0000\u0000\r\u0001o\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00012\u00011\n2\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00010\u000b0\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00021\u0000\u0000\u0002\u0001\u0000\u0002\u0001.\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0001-\u0001-\u0000\u0000\u0002.\u0000\u0000\u0002?\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001\u0000\u0002\u0001+\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u0001*\u0001\u0001\u0001*\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002,\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0014\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0002\u0004\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0002\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0002\u0000)\u000b)\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001(\u000b(\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0005\u0002\f\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0005\u0002\n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0006\u0002\n&\u000b&\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0005\u0002\u0006%\u000b%\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001#\r\u0001\u0000\u0002r\u0000\u0000\u0002\r\u0002\u0014\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\r\u0002\u0012\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u000e\u0002\u0012\"\u000b\"\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\r\u0002\u000e!\u000b!\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000 \u000b \u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002#\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u0001\u001e\n\u001f\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u001e\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u001c\u0002,\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u001c\u0002)\u001c\u0001\u001b\n\u001c\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u001c\u0002%\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u001c\u0002!\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u001c\u0002\u001f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u001f\u0002 \u001a\u000b\u001a\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002!\u0002$\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002\u001b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0019\r\u0001\u0000\u0001L\u0000\u0000\u0002*\u0002,\u0018\u0001\u0018\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002-\u0002-\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002-\u0002-\u0014\u0001\u0001\u0001\u0014\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002-\u0002>\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002-\u0002:\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002-\u00026\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002-\u00024\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002-\u00020\u0013\u000b\u0013\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00020\u00023\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u00024\u00025\u0012\u000b\u0012\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00026\u00029\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u000b\u0011\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0010\r\u0001\u0000\u0003Q\u0000\u0000\u0002?\u0002\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0002B\u0002g\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002B\u0002W\u000f\u0001\u000e\n\u000f\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002B\u0002S\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002B\u0002O\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002B\u0002K\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002B\u0002E\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0002E\u0002J\u0001\r\f\r\u0001\u0000\u0002n\u0000\u0000\u0002E\u0002J\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0002F\u0002J\u000b\n\u000b\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u0002E\u0002F\n\u000b\n\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002O\u0002R\t\u000b\t\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0003I\u0000\u0002\u0002X\u0002g\u0007\u0001\u0006\n\u0007\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002X\u0002c\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0002b\u0000\u0000\u0002X\u0002_\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0001m\u0000\u0000\u0002X\u0002[\u0002\u0004\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0002[\u0002^\u0005\u000b\u0005\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0002_\u0002b\u0002\u0006\u000e\u0002\u0006\u0000\u0001\u0002\u0007\u0011\u0002\u0007\u0000\u0004\u0000\"\u0000.\u0002\u0006\u0000\u0000\u0002\b\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\b\u0003\n\u0004\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0002\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0003\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002o\u0002\u0002\t\u0002\u0002\t\u0000\u0002\u0002\n\u0002\u000b\r\u0002\n\u0000\u0003I\u0000\u0002\u0002o\u0002\u0001\u0002\f\u0000\n\u0001\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\f\u0000\u0002b\u0000\u0000\u0002o\u0002\u0002\r\u0002\u000e\r\u0002\r\u0000\u0002b\u0000\u0000\u0002o\u0002|\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0002b\u0000\u0000\u0002o\u0002z\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0002b\u0000\u0000\u0002o\u0002v\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0001m\u0000\u0000\u0002o\u0002r\u0002\u0015\u000e\u0002\u0015\u0000\u0001\u0002\u0016\u0011\u0002\u0016\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\u0014\u0000\u0001o\u0000\u0000\u0002r\u0002u\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0012\u0000\u0001m\u0000\u0000\u0002v\u0002y\u0002\u0017\u000e\u0002\u0017\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0002\u0010\u0000\u0001o\u0000\u0000\u0002z\u0002{\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0002\u000e\u0000\u0001m\u0000\u0000\u0002|\u0002\u0002\u0019\u000e\u0002\u0019\u0000\u0001\u0002\u001a\u0011\u0002\u001a\u0000\u0002\u0000)\u0002\u0000\u0000\u0000\u0002\u0002\u000b\u0000\u0002\u0002\u001b\r\u0002\u001b\u0000\u0001L\u0000\u0000\u0002\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0010\u0000\u0000\u0002+\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002\u0002\u0002\u001c\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u001c\u0000\u0002b\u0000\u0000\u0002\u0002\u0002\u001d\u0002\u001e\r\u0002\u001d\u0000\u0002b\u0000\u0000\u0002\u0002\u0002\u001f\u0002 \r\u0002\u001f\u0000\u0001m\u0000\u0000\u0002\u0002\u0002!\u000e\u0002!\u0000\u0001\u0002\"\u0011\u0002\"\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0002 \u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0002\u001e\u0000\u0001m\u0000\u0000\u0002\u0002\u0002#\u000e\u0002#\u0000\u0001\u0002$\u0011\u0002$\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002u\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0002%\u0002&\u0002'\u0002(\u0001\u0000\u0000\u0010\u0002%\u0000\u0004\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u000e\u0002&\u0000\u0007\u0010\u0000%\u0002)\u0002*\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0010\u0002)\u0000\u0013\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002*\u0000G\u0000?\u0000F\u0000P\u0000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0001(\u0001*\u0001D\u0001N\u0001S\u0001`\u0001b\u0001|\u0001~\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0004\u0002\u0006\u0002\u0015\u0002\u0017\u0002\u0019\u0002!\u0002#\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\u000fX\u0000\u0006\u0000\u0007j\f\u0000\tOh\u000fO*\f\u0000\u0005EOj\u0000\u001d\u0000\bEY\u0000\u0762k\u0000\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0321[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000xkj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0017X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOh\u000fOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002'\u0000\u0007\u0010\u0002+\u0002,\u0002-\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"\u0002.\u0002\u0002.\u0000\u0002\u0000\u0005\u0002\/\u0002\u0002\/\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002,\u0000\u0000\u0010\u0002-\u0000\b\u0000\n\u0000\u0016\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u0011\u0000#EO\u0017\u0000\u001dhe\u0019l\f\u0000\u0004O,EOj\f\u0000\u0007[OY\u000f\u000e\u0002(\u0000\u0001\u00020\u0011\u00020\u0000\u001e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000a\u0000p\u0000p\u0000l\u0000y\u0000?\u0000=\u00001\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0003\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0003\u0000\b\u0000\t\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\n\u000e\u0000\n\u0000\u0001\u0000\u000b\u0011\u0000\u000b\u0000\u000e\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0002\u0000\u0004\u0000\"\u0000\u000e\r\u0000\u000e\u0000\u0002V\u0000\u0000\u0000\u0004\u0000\"\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\n\u0000\u001d\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\u0000\u0015\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000<\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000\"\u0000n\u0000i\u0000j\u0000i\u0000:\u0000\/\u0000\/\u0000\"\u0000 \u0000U\u0000R\u0000I\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000.\u0006\u0000\u0015\u0000\u0003\u0000\u0018\n\u0000\u0004\ndtxt\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001f\r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000 \n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\r\u0000#\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000&\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0000'\u0002\u0000'\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u0000\u0011\u0000\u000b Decode URI\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u0016\u0000 \u0000D\u0000e\u0000c\u0000o\u0000d\u0000e\u0000 \u0000U\u0000R\u0000I\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000*\u0000\/\u00000\u00001\r\u0000\/\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\u001a\u00002\u00003\r\u00002\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0018\u00004\u00005\r\u00004\u0000\u00037\u0001\u0000\u0000\u0004\u0000\u0018\u00006\u00007\n\u0000\u0004\nctxt\r\u00006\u0000\u0003l\u0000\u0005\u0000\b\u0000\u0014\u00008\r\u00008\u0000\u0002[\u0000\u0000\u0000\b\u0000\u0014\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0005\u0000\t\u0000\u0012\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\t\u0000\u0012\u0000<\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000<\u0000\u0003\u0000=\u0000>\n\u0000\u0004\npsof\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\u0006\u0000:\u0000\/\u0000\/\u0006\u0000>\u0000\u0003\u0000A\n\u0000\u0004\npsin\r\u0000A\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000e\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u00007\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0017\u0003\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u00000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u0001k\u0000\u0000\u0000\"\u0000*\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000E\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000E\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000*\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000E\u0000m\u0000p\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000H\r\u0000H\u0000\u0001L\u0000\u0000\u0000(\u0000*\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000.\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000+\u00006\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000+\u00004\u0000M\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0000M\u0000\u0003\u0000N\u0000O\n\u0000\u0004\npsof\r\u0000N\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0000P\u000e\u0000P\u0000\u0001\u0000Q\u0011\u0000Q\u0000\u0002\u0000?\u0006\u0000O\u0000\u0003\u0000R\n\u0000\u0004\npsin\r\u0000R\u0000\u0001o\u0000\u0000\u0000\/\u00000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u0006\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u0002\u0000J\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0004Z\u0000\u0000\u00007\u0000I\u0000U\u0000V\r\u0000U\u0000\u0002A\u0000\u0001\u00007\u0000:\u0000W\u0000X\r\u0000W\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000X\u0000\u0001m\u0000\u0000\u00008\u00009\u0003\u0000\u0002\r\u0000V\u0000\u0001k\u0000\u0000\u0000=\u0000E\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003I\u0000\u0002\u0000=\u0000B\u0000\\\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\\\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u00002\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000:\u0000 \u0000N\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000.\u0002\u0000\u0000\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0001L\u0000\u0000\u0000C\u0000E\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000T\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000J\u0000Y\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000J\u0000W\u0000d\u0000e\r\u0000d\u0000\u00037\u0001\u0000\u0000K\u0000W\u0000f\u0000g\n\u0000\u0004\nctxt\r\u0000f\u0000\u0001m\u0000\u0000\u0000O\u0000Q\u0003\u0000\u0001\r\u0000g\u0000\u0003l\u0000\u0005\u0000R\u0000V\u0000h\r\u0000h\u0000\u0002\\\u0000\u0000\u0000R\u0000V\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000e\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u0002\u0000a\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000Z\u0000w\u0000m\u0000n\u0000o\r\u0000m\u0000\u0002r\u0000\u0000\u0000]\u0000l\u0000p\u0000q\r\u0000p\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000r\u0000s\r\u0000r\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000t\u0000u\n\u0000\u0004\nctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000b\u0000f\u0000v\r\u0000v\u0000\u0002[\u0000\u0000\u0000b\u0000f\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\r\u0000x\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000u\u0000\u0001m\u0000\u0000\u0000g\u0000i\u0003\r\u0000s\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\f0\u0000\bresource\u0000\u0000\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0002r\u0000\u0000\u0000t\u0000w\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u0000\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u0002\u0000l\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0002r\u0000\u0000\u0000x\u0000}\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000&\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000z\u0000|\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000y\u0000z\n\u0000\u0004\nascr\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000~\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000=\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0005Y\u0000\u0000\u0000\u0001\t\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0004\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002s\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000M\u0000a\u0000l\u0000f\u0000o\u0000r\u0000m\u0000e\u0000d\u0000 \u0000U\u0000R\u0000I\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000)\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000p\u0000h\u0000p\u0000 \u0000-\u0000r\u0000 \u0000'\u0000e\u0000c\u0000h\u0000o\u0000 \u0000u\u0000r\u0000l\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000(\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000\"\u0000)\u0000;\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0001\u0001\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0001\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000{\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000|\u0000:\u0000\"\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000\"\u0000}\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\n\u0001\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000e\u0001\u0010\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0001\r\u0001\u000e\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0012\u0001\u0012~}\u0001\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0012\u0001\u0012|\u0000\u0000\u0001|\u0000\u0000\f\u0000\u0000\u0014\u0000\u000e Select action\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000{\r\u0000\u0000\u0004Z\u0000\u0000\u0001\u0012\u0002\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0001\u0012\u0001\u0017\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013z\u000bz\u0000\n0\u0000\u0006action\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000a\u0000p\u0000p\u0000l\u0000y\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001a\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u001a\u0001\u001ay\u0000\u0000\u0001y\u0000\u0000\f\u0000\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u001a\u0001L\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001d\u00014\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002r\u0000\u0000\u0001\u001d\u0001$\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0002n\u0000\u0000\u0001\u001d\u0001\"\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001o\u0000\u0000\u0001\u001e\u0001\"x\u000bx\u0000\u00070\u0000\u0003cmd\u0000\u0000\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001ew\u000bw\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000v\u000bv\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002r\u0000\u0000\u0001%\u0001,\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0000\u0001%\u0001*\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0001&\u0001*u\u000bu\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\f\u0000\u0001o\u0000\u0000\u0001%\u0001&t\u000bt\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\rr\r\u0001\r\u0000\u0002r\u0000\u0000\u0001-\u00014\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0001-\u00012\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0001.\u00012q\u000bq\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0001-\u0001.p\u000bp\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000n\u0001\u0012m\nn\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000l\u000bl\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002m\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001<\u0001L\u0001\u0013\u0002\u0001\u0013\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0003I\u0000\u0002\u0001<\u0001Ik\u0001\u0016j\nk\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0001<\u0001E\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0002b\u0000\u0000\u0001<\u0001A\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u001b\u000e\u0001\u001b\u0000\u0001\u0001\u001c\u0011\u0001\u001c\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0001?\u0001@i\u000bi\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0018\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u001d\u000e\u0001\u001d\u0000\u0001\u0001\u001e\u0011\u0001\u001e\u0000\u0002\u0000)\u0002j\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u001fh\r\u0001\u001f\u0000\u0001L\u0000\u0000\u0001J\u0001Lg\u0001g\u0000\u0000\u0002h\u0000\u0000\u0002\u0000\u0000\u0002\u0001 \u0001!\r\u0001 \u0000\u0003l\u0000\u0002\u0001M\u0001Mfed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0001!\u0000\u0002\u0001\"\u0001#\r\u0001\"\u0000\u0003l\u0000\u0001\u0001M\u0001Mc\u0001$\u0001%\u0001c\u0000\u0000\f\u0001$\u0000#\u0000\u001d Write yaml to temporary file\u0000\u0002\u0000\u0000\u000e\u0001%\u0000\u0001\u0001&\u0011\u0001&\u0000:\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001#\u0000\u0002\u0001'\u0001(\r\u0001'\u0000\u0003Q\u0000\u0000\u0001M\u0001\u0001)\u0001*\u0001+\r\u0001)\u0000\u0001k\u0000\u0000\u0001P\u0001\u0001,\u0002\u0001,\u0000\u0002\u0001-\u0001.\r\u0001-\u0000\u0002r\u0000\u0000\u0001P\u0001e\u0001\/\u00010\r\u0001\/\u0000\u0002b\u0000\u0000\u0001P\u0001a\u00011\u00012\r\u00011\u0000\u0003l\u0000\u0005\u0001P\u0001]\u00013ba\r\u00013\u0000\u0003I\u0000\u0002\u0001P\u0001]`\u00014\u00015\n`\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00014\u0000\u0001m\u0000\u0000\u0001P\u0001S_\n_\u0000\b\u000bafdrtemp\u0006\u00015\u0000\u0003^\u00016]\n^\u0000\u0004\nrtyp\r\u00016\u0000\u0001m\u0000\u0000\u0001V\u0001Y\\\n\\\u0000\u0004\nTEXT\u0006]\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u00012\u0000\u0001m\u0000\u0000\u0001]\u0001`\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u0000\u0012\u0000n\u0000i\u0000j\u0000i\u0000.\u0000y\u0000a\u0000m\u0000l\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002\u0001.\u0000\u0002\u00019Z\r\u00019\u0000\u0003I\u0000\u0002\u0001f\u0001Y\u0001:X\nY\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001:\u0000\u0002b\u0000\u0000\u0001f\u0001{\u0001;\u0001<\r\u0001;\u0000\u0002b\u0000\u0000\u0001f\u0001s\u0001=\u0001>\r\u0001=\u0000\u0002b\u0000\u0000\u0001f\u0001o\u0001?\u0001@\r\u0001?\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0001A\u000e\u0001A\u0000\u0001\u0001B\u0011\u0001B\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001@\u0000\u0003l\u0000\u0005\u0001i\u0001n\u0001CWV\r\u0001C\u0000\u0002n\u0000\u0000\u0001i\u0001n\u0001D\u0001E\r\u0001D\u0000\u00011\u0000\u0000\u0001j\u0001nU\nU\u0000\u0004\nstrq\r\u0001E\u0000\u0001o\u0000\u0000\u0001i\u0001jT\u000bT\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001W\u0000\u0000\u0001V\u0000\u0000\r\u0001>\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0006\u0000 \u0000>\u0000 \r\u0001<\u0000\u0002n\u0000\u0000\u0001s\u0001z\u0001H\u0001I\r\u0001H\u0000\u00011\u0000\u0000\u0001v\u0001zS\nS\u0000\u0004\npsxp\r\u0001I\u0000\u0001o\u0000\u0000\u0001s\u0001vR\u000bR\u0000\u00070\u0000\u0003tmp\u0000\u0000\u0002X\u0000\u0000\u0002Z\u0000\u0000\r\u0001*\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000Q\u0001JP\nQ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002P\u0000\u0000\r\u0001+\u0000\u0001k\u0000\u0000\u0001\u0001\u0001K\u0002\u0001K\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0001\u0001N\u0001NM\nN\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001N\u0000\u0002b\u0000\u0000\u0001\u0001\u0001O\u0001P\r\u0001O\u0000\u0002b\u0000\u0000\u0001\u0001\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0001\u0001\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000R\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0001R\u0000\u0001o\u0000\u0000\u0001\u0001L\u000bL\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001P\u0000\u0001m\u0000\u0000\u0001\u0001\u0001U\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0002\u0000)\u0002M\u0000\u0000\u0002\u0001M\u0000\u0002\u0001WK\r\u0001W\u0000\u0001L\u0000\u0000\u0001\u0001J\u0001J\u0000\u0000\u0002K\u0000\u0000\u0002\u0001(\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\u0001IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001Z\u0001[\r\u0001Z\u0000\u0003l\u0000\u0001\u0001\u0001F\u0001\\\u0001]\u0001F\u0000\u0000\f\u0001\\\u0000\u0010\u0000\n Run zenbu\u0000\u0002\u0000\u0000\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\u0014\u0000 \u0000R\u0000u\u0000n\u0000 \u0000z\u0000e\u0000n\u0000b\u0000u\u0002\u0001[\u0000\u0002\u0001_E\r\u0001_\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001`\u0001a\u0001b\r\u0001`\u0000\u0001k\u0000\u0000\u0001\u0001\u0001c\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0001\u0001D\u0001fC\nD\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001g\u0001h\r\u0001g\u0000\u0002b\u0000\u0000\u0001\u0001\u0001i\u0001j\r\u0001i\u0000\u0002b\u0000\u0000\u0001\u0001\u0001k\u0001l\r\u0001k\u0000\u0002b\u0000\u0000\u0001\u0001\u0001m\u0001n\r\u0001m\u0000\u0001m\u0000\u0000\u0001\u0001\u0001o\u000e\u0001o\u0000\u0001\u0001p\u0011\u0001p\u0000\u0014\u0000b\u0000a\u0000s\u0000h\u0000 \u0000-\u0000l\u0000c\u0000 \u0000\"\r\u0001n\u0000\u0001o\u0000\u0000\u0001\u0001B\u000bB\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0001\u0001q\u000e\u0001q\u0000\u0001\u0001r\u0011\u0001r\u0000\u0002\u0000 \r\u0001j\u0000\u0002n\u0000\u0000\u0001\u0001\u0001s\u0001t\r\u0001s\u0000\u00011\u0000\u0000\u0001\u0001A\nA\u0000\u0004\npsxp\r\u0001t\u0000\u0001o\u0000\u0000\u0001\u0001@\u000b@\u0000\u00070\u0000\u0003tmp\u0000\u0000\r\u0001h\u0000\u0001m\u0000\u0000\u0001\u0001\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0002\u0000\"\u0002C\u0000\u0000\u0002\u0001e\u0000\u0002\u0001w?\r\u0001w\u0000\u0003I\u0000\u0002\u0001\u0001>\u0001x=\n>\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001x\u0000\u0002b\u0000\u0000\u0001\u0001\u0001y\u0001z\r\u0001y\u0000\u0002b\u0000\u0000\u0001\u0001\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001\u0001\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000\u0012\u0000A\u0000p\u0000p\u0000l\u0000i\u0000e\u0000d\u0000 \u0000\"\r\u0001|\u0000\u0001o\u0000\u0000\u0001\u0001<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001z\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002=\u0000\u0000\u0002?\u0000\u0000\r\u0001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000;\u0001:\n;\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002:\u0000\u0000\r\u0001b\u0000\u0001k\u0000\u0000\u0001\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001\u00018\u00017\n8\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0018\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000r\u0000u\u0000n\u0000 \u0000`\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00016\u000b6\u0000\b0\u0000\u0004_cmd\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000`\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00015\u000b5\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u00027\u0000\u0000\u0002\u0001\u0000\u0002\u00014\r\u0001\u0000\u0001L\u0000\u0000\u0001\u00013\u00013\u0000\u0000\u00024\u0000\u0000\u0002E\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0003\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u00012\u000b2\u0000\n0\u0000\u0006action\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000s\u0000a\u0000v\u0000e\u0002\u0001\u0000\u0002\u00011\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001\u00010\u0001\u0001\u00010\u0000\u0000\f\u0001\u0000 \u0000\u001a Check for required params\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0001\u0002\u001f\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001\/\u000b\/\u0000\b0\u0000\u0004root\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001.\u000b.\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\t0\u0000\u0005_root\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001,\u000b,\u0000\b0\u0000\u0004name\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0001+\u000b+\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000*\u000b*\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001\u0000\u0002\u0001)\r\u0001\u0000\u0002r\u0000\u0000\u0002\u0000\u0002\u0007\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0002\u0000\u0002\u0005\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0001\u0002\u0005(\u000b(\u0000\b0\u0000\u0004yaml\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0000\u0002\u0001'\u000b'\u0000\b0\u0000\u0004opts\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000&\u000b&\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0002)\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000%\u0001$\n%\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000#\u000b#\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002$\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002\u000f\u0002\u001f\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002\u000f\u0002\u001c\"\u0001!\n\"\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0018\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002\u000f\u0002\u0014\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002\u000f\u0002\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000>\u0000M\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000r\u0000e\u0000q\u0000u\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000.\u0000 \u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0002\u0012\u0002\u0013 \u000b \u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002\u0014\u0002\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000)\u0002!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0001L\u0000\u0000\u0002\u001d\u0002\u001f\u001e\u0001\u001e\u0000\u0000\u0002\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0002 \u0002 \u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0002 \u0002 \u001a\u0001\u0001\u0001\u001a\u0000\u0000\f\u0001\u0000 \u0000\u001a Write yaml to destination\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00004\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000y\u0000a\u0000m\u0000l\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000s\u0000t\u0000i\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0002 \u00021\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002-\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002)\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002 \u0002'\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0002 \u0002#\u0019\u000b\u0019\u0000\t0\u0000\u0005_root\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002#\u0002&\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0002'\u0002(\u0018\u000b\u0018\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002)\u0002,\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000.\u0000y\u0000a\u0000m\u0000l\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0017\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0016\r\u0001\u0000\u0003Q\u0000\u0000\u00022\u0002z\u0001\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u00025\u0002Z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00025\u0002J\u0015\u0001\u0014\n\u0015\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002F\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002B\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u00025\u0002>\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00025\u00028\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u00028\u0002=\u0001\u0013\u0012\r\u0001\u0000\u0002n\u0000\u0000\u00028\u0002=\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00029\u0002=\u0011\n\u0011\u0000\u0004\nstrq\r\u0001\u0000\u0001o\u0000\u0000\u00028\u00029\u0010\u000b\u0010\u0000\t0\u0000\u0005_yaml\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002>\u0002A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000 \u0000>\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0002B\u0002E\u000f\u000b\u000f\u0000\b0\u0000\u0004dest\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000e\r\u0001\u0000\u0003I\u0000\u0002\u0002K\u0002Z\r\u0001\f\n\r\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002V\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0002K\u0002R\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0002K\u0002N\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000S\u0000a\u0000v\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0002N\u0002Q\u000b\u000b\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0002R\u0002U\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004\u0000\"\u0000.\u0002\f\u0000\u0000\u0002\u000e\u0000\u0000\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0001\t\n\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\t\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0002b\u0002z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0002b\u0002w\u0007\u0001\u0006\n\u0007\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u0002b\u0002s\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0002b\u0000\u0000\u0002b\u0002o\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0002b\u0002m\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0002b\u0002i\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0001m\u0000\u0000\u0002b\u0002e\u0002\b\u000e\u0002\b\u0000\u0001\u0002\t\u0011\u0002\t\u00002\u0000F\u0000a\u0000i\u0000l\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000Y\u0000A\u0000M\u0000L\u0000 \u0000t\u0000o\u0000 \u0000\"\r\u0002\u0007\u0000\u0001o\u0000\u0000\u0002e\u0002h\u0005\u000b\u0005\u0000\b0\u0000\u0004dest\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0002i\u0002l\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0012\u0000\"\u0000 \u0000f\u0000i\u0000l\u0000e\u0000.\u0000 \u0000(\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0002m\u0002n\u0004\u000b\u0004\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0002o\u0002r\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000)\u0002\u0006\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u000e\u0003\r\u0002\u000e\u0000\u0001L\u0000\u0000\u0002x\u0002z\u0002\u0001\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0016\u0000\u0000\u00021\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0002}\u0002\u0001\u0002\u000f\u0000\n\u0001\u0000\u0018.sysonotfnull\u0000\u0000TEXT\r\u0002\u000f\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0010\u0002\u0011\r\u0002\u0010\u0000\u0002b\u0000\u0000\u0002}\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0001m\u0000\u0000\u0002}\u0002\u0002\u0014\u000e\u0002\u0014\u0000\u0001\u0002\u0015\u0011\u0002\u0015\u0000\u0010\u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\r\u0002\u0013\u0000\u0001o\u0000\u0000\u0002\u0002\u000b\u0000\n0\u0000\u0006action\u0000\u0000\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0002\u0002\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000&\u0000\"\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000s\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0000\u0002{\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0002\u0018\u0002\u0019\u0002\u001a\u0001\u0000\u0000\u0010\u0002\u0018\u0000\u0002\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002\u0019\u0000\u0007\u0010\u0000%\u0002\u001b\u0002\u001c\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001b\u0000\u0013\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\u000b\u0000\f0\u0000\bresource\u0000\u0000\u000b\u0000\u00050\u0000\u0001q\u0000\u0000\u000b\u0000\n0\u0000\u0006action\u0000\u0000\u000b\u0000\n0\u0000\u0006params\u0000\u0000\u000b\u0000\u000b0\u0000\u0007keyvals\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00060\u0000\u0002kv\u0000\u0000\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001v\u0000\u0000\u000b\u0000\u000b0\u0000\u0007decoded\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u000b\u0000\u00070\u0000\u0003tmp\u0000\u0000\u000b\u0000\t0\u0000\u0005_root\u0000\u0000\u000b\u0000\b0\u0000\u0004dest\u0000\u0000\u0010\u0002\u001c\u0000G\u0000?\u0000F\u0000P\u0000]\u0000{\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001b\u0001\u001d\u00017\u0001A\u0001F\u0001S\u0001U\u0001o\u0001q\u0001u\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\b\u0002\n\u0002\f\u0002\u0014\u0002\u0016\n\u0000\u0004\nctxt\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysonotfnull\u0000\u0000TEXT\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncitm\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ncobj\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\u00070\u0000\u0003cmd\u0000\u0000\u000b\u0000\b0\u0000\u0004name\u0000\u0000\u000b\u0000\b0\u0000\u0004yaml\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\b\u000bafdrtemp\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nstrq\n\u0000\u0004\npsxp\u000b\u0000\b0\u0000\u0004root\u0000\u0000\u0011\u0002\u0014\u0000\u001c[\\[Z*\f\u0000\u0005m\u001e\\Zi2EW\u0000\u000fX\u0000\u0006\u0000\u0007j\f\u0000\tOh\u000fO*\f\u0000\u0005EOl\u0004\u001d\u0000\rj\f\u0000\tOh\u000fY\u0000\u0003hO[\\[Zk\\Zk\u001f2EO\u0014\u0000\u0014[\\[Zk\u001e\\Zi2EW\u0000\nX\u0000\u0006\u0000\u0007EO,FOa\u0000\u0010-EOa\u0000\u0011,FOjvEO\u0017\u0000ukj\f\u0000\u0012kh\u001c\u0000\u0007a\u0000\u0013\/EO\u0014\u0000\u001fa\u0000\u0010-E[a\u0000\u0013k\/EQZ[a\u0000\u0013l\/EQZW\u0000\u0014X\u0000\u0006\u0000\u0007a\u0000\u0014%a\u0000\u0015%j\f\u0000\tOa\u0000\u0016%a\u0000\u0017%j\f\u0000\u0018EOa\u0000\u0019%a\u0000\u001a%%a\u0000\u001b%j\f\u0000\u001c%E[OYOa\u0000\u001d,FOa\u0000\u001e\u0000\u001d\u0000\u0014\u0000\u001ca\u0000\u001f,EOa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000#%a\u0000$%j\f\u0000\tOh\u000fO\u0014\u00004a\u0000%a\u0000&a\u0000'l\f\u0000(a\u0000)%E^\u0000\u0010Oa\u0000*a\u0000+,%a\u0000,%]\u0000\u0010a\u0000-,%j\f\u0000\u0018W\u0000\u0017X\u0000\"\u0000\u0007a\u0000.%a\u0000\/%j\f\u0000\tOh\u000fO\u0014\u0000,a\u00000%a\u00001%]\u0000\u0010a\u0000-,%a\u00002%j\f\u0000\u0018Oa\u00003%a\u00004%j\f\u0000\tW\u0000\u001dX\u0000\"\u0000\u0007a\u00005%a\u00006%%a\u00007%j\f\u0000\tOh\u000fY\u0000a\u00008\u0000\u001d\u0000\u0014\u0000\u001ea\u00009,E^\u0000\u0011Oa\u0000 ,EOa\u0000!,EW\u0000\u0017X\u0000\"\u0000\u0007a\u0000:%a\u0000;%j\f\u0000\tOh\u000fO]\u0000\u0011a\u0000<%%a\u0000=%E^\u0000\u0012O\u0014\u0000*a\u0000>a\u0000+,%a\u0000?%]\u0000\u0012%j\f\u0000\u0018Oa\u0000@]\u0000\u0012%a\u0000A%j\f\u0000\tW\u0000\u001fX\u0000\"\u0000\u0007a\u0000B]\u0000\u0012%a\u0000C%%a\u0000D%j\f\u0000\tOh\u000fY\u0000\u000fa\u0000E%a\u0000F%j\f\u0000\t\u000f\u000e\u0002\u001a\u0000\u0007\u0010\u0002\u001d\u0002\u001e\u0002\u001f\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\"\u0002 \u0002\u0002 \u0000\u0002\u0000\u0005\u0002!\u0002\u0002!\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u001e\u0000\u0000\u0010\u0002\u001f\u0000\b\u0000\n\u0000\u0016\u000b\u0000\u00070\u0000\u0003uri\u0000\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u0011\u0000#EO\u0017\u0000\u001dhe\u0019l\f\u0000\u0004O,EOj\f\u0000\u0007[OY\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"dba60896f3fee5e8f1c76eb8d7187a8fcc3e129c","subject":"Chop trailing colons from category","message":"Chop trailing colons from category\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-01\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-01\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c6bbb76e802f735f2733d1bec94c7ae985c03062","subject":"fixed makeEscapedMoreLegible for Escape text for use as FM Calc","message":"fixed makeEscapedMoreLegible for Escape text for use as FM Calc\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Escape text for use as FM Calc.applescript","new_file":"Scripts\/fmClip - Escape text for use as FM Calc.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"28c47dbd3767b69bb161bc8b014d2d4c2fd37fcf","subject":"update","message":"update\n","repos":"LinusLing\/LNCodeSet,LinusLing\/LNCodeSet","old_file":"CleanDerivedData.scpt","new_file":"CleanDerivedData.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000+\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000+\u0000\f\u0000\r\r\u0000\f\u0000\u0001k\u0000\u0000\u0000\u0004\u0000*\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0004\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0012\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00024\u0000\u0000\u0000\n\u0000\u0010\u0000\u001f\n\u0000\u0004\ncwin\r\u0000\u001f\u0000\u0001v\u0000\u0000\u0000\f\u0000\u000f\u0000 \u0002\u0000 \u0000\u0002\u0000!\r\u0000!\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000$\u0000%\u0001\u0000\u0000\f\u0000$\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000#\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0016\u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\n\u0000\u0004\ntcnt\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000(\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\u0000\/\u00000\u0001\u0000\u0000\f\u0000\/\u0000&\u0000 \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000&\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\u0002\u0000.\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u00004\u00005\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u00008\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000\/\u0000X\u0000c\u0000o\u0000d\u0000e\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\nkfil\r\u00008\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0001\u0000!\u0000!\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000\u0019\u0000\u0013 \u05b4\u0132\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000\u0014\u0000 bgLn\u0005d\u0013[XvdO\\\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003I\u0000\u0002\u0000!\u0000(\u0000@\u0000A\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000@\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000D\u0000e\u0000r\u0000i\u0000v\u0000e\u0000d\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000 \u0006\u0000A\u0000\u0003\u0000D\n\u0000\u0004\nkfil\r\u0000D\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000?\u0000\u0002\u0000E\r\u0000E\u0000\u0003l\u0000\u0002\u0000)\u0000)\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000F\u000f\u0000F\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001X\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001]PS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\b\u0001X\u0001Z\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000G\u0000H\u0001\u0000\u0000\u0010\u0000G\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000H\u0000\u0007\u0010\u0000I\u0000J\u0000K\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000I\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000L\u0002\u0000L\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000J\u0000\u0000\u0010\u0000K\u0000\n\u0000F\u00006\u0000B\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ncwin\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\n\u0000\u0004\ntcnt\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\n\u0000\u0004\nkfil\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0011\u0000,\u0012\u0000(*j\f\u0000\u0001O*jk\r\/EO,EOl\f\u0000\bOl\f\u0000\bOPU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000+\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000+\u0000\f\u0000\r\r\u0000\f\u0000\u0001k\u0000\u0000\u0000\u0004\u0000*\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0004\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0012\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00024\u0000\u0000\u0000\n\u0000\u0010\u0000\u001f\n\u0000\u0004\ncwin\r\u0000\u001f\u0000\u0001v\u0000\u0000\u0000\f\u0000\u000f\u0000 \u0002\u0000 \u0000\u0002\u0000!\r\u0000!\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000$\u0000%\u0001\u0000\u0000\f\u0000$\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000#\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0016\u0000+\u0000,\r\u0000+\u0000\u00011\u0000\u0000\u0000\u0014\u0000\u0016\n\u0000\u0004\ntcnt\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000(\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0001\u0000\u0019\u0000\u0019\u0000\/\u00000\u0001\u0000\u0000\f\u0000\/\u0000F\u0000@ \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u07b8\u0135\u053c Hexo \u00b7\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000L\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\b\u0000Oe9R0]v\u0000 \u0000H\u0000e\u0000x\u0000o\u0000 b@W(_\t\u0002\u0000.\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000\u0019\u0000 \u00004\u00005\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u00008\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000\/\u0000X\u0000c\u0000o\u0000d\u0000e\u0006\u00005\u0000\u0003\u00008\n\u0000\u0004\nkfil\r\u00008\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u00003\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0001\u0000!\u0000!\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000\u0019\u0000\u0013 \u05b4\u0132\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0000\u0014\u0000 bgLn\u0005d\u0013[XvdO\\\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003I\u0000\u0002\u0000!\u0000(\u0000@\u0000A\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000@\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000(\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000D\u0000e\u0000r\u0000i\u0000v\u0000e\u0000d\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000 \u0006\u0000A\u0000\u0003\u0000D\n\u0000\u0004\nkfil\r\u0000D\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000?\u0000\u0002\u0000E\r\u0000E\u0000\u0003l\u0000\u0002\u0000)\u0000)\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000F\u000f\u0000F\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001X\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001]PS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\b\u0001X\u0001Z\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000G\u0000H\u0001\u0000\u0000\u0010\u0000G\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000H\u0000\u0007\u0010\u0000I\u0000J\u0000K\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000I\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000L\u0002\u0000L\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000J\u0000\u0000\u0010\u0000K\u0000\n\u0000F\u00006\u0000B\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ncwin\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\n\u0000\u0004\ntcnt\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\n\u0000\u0004\nkfil\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\u0011\u0000,\u0012\u0000(*j\f\u0000\u0001O*jk\r\/EO,EOl\f\u0000\bOl\f\u0000\bOPU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7b92e27d1f01f22ded69d30d1f5438fd033005da","subject":"simplify the process check","message":"simplify the process check\n","repos":"rse\/slideshow,rse\/slideshow","old_file":"connector-osx-ppt.scpt","new_file":"connector-osx-ppt.scpt","new_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-ppt.js\n-- Purpose: connector engine for Microsoft PowerPoint under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non pptGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Microsoft PowerPoint\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Microsoft PowerPoint\"\n set theState to (slide state of slide show view of slide show window of active presentation)\n if theState is (slide show state running) or theState is (slide show state paused) then\n set state to \"viewing\"\n else if (exists active presentation) then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend pptGetState\n\n-- get current slide\non pptGetCurSlide()\n try\n tell application \"Microsoft PowerPoint\"\n if slide state of slide show view of slide show window of active presentation is slide show state running then\n -- currently in running slide show mode (for production)\n set curSlide to (slide number of slide of slide show view of slide show window of active presentation)\n else\n -- currently in editing mode (for testing)\n set curSlide to (slide number of slide range of selection of document window 1)\n end if\n return curSlide\n end tell\n on error errMsg\n return 0\n end try\nend pptGetCurSlide\n\n-- get maximum slide\non pptGetMaxSlide()\n try\n tell application \"Microsoft PowerPoint\"\n set maxSlide to (get count of slides of presentation of document window 1)\n return maxSlide\n end tell\n on error errMsg\n return 0\n end try\nend pptGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to pptGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to pptGetCurSlide()\n set slides to pptGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if pptGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Microsoft PowerPoint\"\n set thePresentation to presentation of document window 1\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to \"\"\n repeat with t_shape in (get shapes of theSlide)\n set aType to (placeholder type of t_shape)\n if (aType is placeholder type center title placeholder) or (aType is placeholder type title placeholder) then\n tell t_shape to if has text frame then tell its text frame to if has text then\n set theText to (content of its text range as string) as string\n set theText to (my filterText(theText, my asciiCharset()))\n if theTitle is not \"\" then\n set theTitle to (theTitle & \" \")\n end if\n set theTitle to (theTitle & theText)\n end if\n end if\n end repeat\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to \"\"\n repeat with t_shape in (get shapes of notes page of theSlide)\n set aType to (placeholder type of t_shape)\n if (aType is placeholder type body placeholder) then\n tell t_shape to if has text frame then tell its text frame to if has text then\n set theText to (content of its text range as string) as string\n set theText to (my filterText(theText, my asciiCharset()))\n if theNote is not \"\" then\n set theNote to (theNote & \" \")\n end if\n set theNote to (theNote & theText)\n end if\n end if\n end repeat\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to pptGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Microsoft PowerPoint\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Microsoft PowerPoint\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Microsoft PowerPoint\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Microsoft PowerPoint\"\n close active presentation\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Microsoft PowerPoint\"\n set slideShowSettings to slide show settings of active presentation\n set slideShowSettings's starting slide to 1\n set slideShowSettings's ending slide to 1\n set slideShowSettings's range type to slide show range\n set slideShowSettings's show type to slide show type speaker\n set slideShowSettings's advance mode to slide show advance manual advance\n run slide show slideShowSettings -- BUGGY: starts blank\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n exit slide show (slideshow view of slide show window 1)\n end tell\n else if command is \"BLACK\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n set slide state of (slideshow view of slide show window 1) to (slide show state black screen)\n end tell\n else if command is \"NORMAL\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n -- set slide state of (slideshow view of slide show window 1) to (slide show state paused)\n go to slide (view of document window 1) number \u00ac\n (slide number of slide of slide show view of slide show window of active presentation)\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to first slide (slideshow view of slide show window 1)\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to last slide (slideshow view of slide show window 1)\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to slide (view of document window 1) number (arg as integer) -- BUGGY: does not do anything\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to previous slide (slideshow view of slide show window 1)\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to next slide (slideshow view of slide show window 1)\n end tell\n end if\n return \"{ \\\"result\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"BLACK\" \u00ac\n or cmd is \"NORMAL\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","old_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-ppt.js\n-- Purpose: connector engine for Microsoft PowerPoint under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non is_running(appName)\n tell application \"System Events\" to (name of processes) contains appName\nend is_running\non pptGetState()\n set state to \"closed\"\n if is_running(\"Microsoft PowerPoint\") then\n try\n set state to \"running\"\n tell application \"Microsoft PowerPoint\"\n set theState to (slide state of slide show view of slide show window of active presentation)\n if theState is (slide show state running) or theState is (slide show state paused) then\n set state to \"viewing\"\n else if (exists active presentation) then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend pptGetState\n\n-- get current slide\non pptGetCurSlide()\n try\n tell application \"Microsoft PowerPoint\"\n if slide state of slide show view of slide show window of active presentation is slide show state running then\n -- currently in running slide show mode (for production)\n set curSlide to (slide number of slide of slide show view of slide show window of active presentation)\n else\n -- currently in editing mode (for testing)\n set curSlide to (slide number of slide range of selection of document window 1)\n end if\n return curSlide\n end tell\n on error errMsg\n return 0\n end try\nend pptGetCurSlide\n\n-- get maximum slide\non pptGetMaxSlide()\n try\n tell application \"Microsoft PowerPoint\"\n set maxSlide to (get count of slides of presentation of document window 1)\n return maxSlide\n end tell\n on error errMsg\n return 0\n end try\nend pptGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to pptGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to pptGetCurSlide()\n set slides to pptGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if pptGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Microsoft PowerPoint\"\n set thePresentation to presentation of document window 1\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to \"\"\n repeat with t_shape in (get shapes of theSlide)\n set aType to (placeholder type of t_shape)\n if (aType is placeholder type center title placeholder) or (aType is placeholder type title placeholder) then\n tell t_shape to if has text frame then tell its text frame to if has text then\n set theText to (content of its text range as string) as string\n set theText to (my filterText(theText, my asciiCharset()))\n if theTitle is not \"\" then\n set theTitle to (theTitle & \" \")\n end if\n set theTitle to (theTitle & theText)\n end if\n end if\n end repeat\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to \"\"\n repeat with t_shape in (get shapes of notes page of theSlide)\n set aType to (placeholder type of t_shape)\n if (aType is placeholder type body placeholder) then\n tell t_shape to if has text frame then tell its text frame to if has text then\n set theText to (content of its text range as string) as string\n set theText to (my filterText(theText, my asciiCharset()))\n if theNote is not \"\" then\n set theNote to (theNote & \" \")\n end if\n set theNote to (theNote & theText)\n end if\n end if\n end repeat\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to pptGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Microsoft PowerPoint\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Microsoft PowerPoint\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Microsoft PowerPoint\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Microsoft PowerPoint\"\n close active presentation\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Microsoft PowerPoint\"\n set slideShowSettings to slide show settings of active presentation\n set slideShowSettings's starting slide to 1\n set slideShowSettings's ending slide to 1\n set slideShowSettings's range type to slide show range\n set slideShowSettings's show type to slide show type speaker\n set slideShowSettings's advance mode to slide show advance manual advance\n run slide show slideShowSettings -- BUGGY: starts blank\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n exit slide show (slideshow view of slide show window 1)\n end tell\n else if command is \"BLACK\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n set slide state of (slideshow view of slide show window 1) to (slide show state black screen)\n end tell\n else if command is \"NORMAL\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n -- set slide state of (slideshow view of slide show window 1) to (slide show state paused)\n go to slide (view of document window 1) number \u00ac\n (slide number of slide of slide show view of slide show window of active presentation)\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to first slide (slideshow view of slide show window 1)\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to last slide (slideshow view of slide show window 1)\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to slide (view of document window 1) number (arg as integer) -- BUGGY: does not do anything\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to previous slide (slideshow view of slide show window 1)\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Microsoft PowerPoint\"\n go to next slide (slideshow view of slide show window 1)\n end tell\n end if\n return \"{ \\\"result\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"BLACK\" \u00ac\n or cmd is \"NORMAL\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"f3db87b62f689898e38af87842d4127ae3230e9d","subject":"Updating chapter list","message":"Updating chapter list\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\ngetting-production-ready\ninitialize-the-backend-repo\norganize-the-backend-repo\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\nuse-environment-variables-in-lambda-functions\ndeploy-your-serverless-infrastructure\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env-yml\ntest-the-billing-api\nunit-tests-in-serverless\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nmonitoring-deployments-in-seed\ninitialize-the-frontend-repo\nmanage-environments-in-create-react-app\nsignup-with-email-as-alias\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nautomating-react-deployments\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\nwrapping-up\ngiving-back\nchangelog\nstaying-up-to-date\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n#################\n# Download PDFs #\n#################\nrepeat with theCurrentChapter in theChapters\n downloadPdf(theCurrentChapter)\nend repeat\n\n##############\n# Merge PDFs #\n##############\nset outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\nset pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\nrepeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\nend repeat\n\ndo shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\n\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"index\nwho-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ndeploy-the-frontend\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nupdate-the-app\ndeploy-again\nwrapping-up\ngiving-back\nchangelog\nstaying-up-to-date\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n#################\n# Download PDFs #\n#################\nrepeat with theCurrentChapter in theChapters\n downloadPdf(theCurrentChapter)\nend repeat\n\n##############\n# Merge PDFs #\n##############\nset outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\nset pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\nrepeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\nend repeat\n\ndo shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\n\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c0f021cca26be375c523d893019abb928ec0841b","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6440c82cc72c2aadfca1f4a09d68d55dd1308102","subject":"We're going to use this applescript, after I rename it.","message":"We're going to use this applescript, after I rename it.\n\n","repos":"xhan\/MacCodes,xhan\/MacCodes,xhan\/MacCodes,xhan\/MacCodes,xhan\/MacCodes,xhan\/MacCodes,xhan\/MacCodes","old_file":"Release\/dmg_sdk.applescript","new_file":"Release\/dmg_sdk.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"MacCode\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tclose\n\t\tset opts to icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 60\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:maccodeDMGBackground.png\"\n\t\t--set position of item \"Bindings\" to {263, 76}\n\t\tset position of item \"Source\" to {370, 76}\n\t\tset position of item \"MacCode.webloc\" to {263, 196}\n\t\t-- set position of item \"Growl version history for developers.webloc\" to {370, 183}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 490, 360}\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl-SDK\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tclose\n\t\tset opts to icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 60\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlSDK.png\"\n\t\tset position of item \"Bindings\" to {263, 76}\n\t\tset position of item \"Frameworks\" to {370, 76}\n\t\tset position of item \"Growl Developer Documentation.webloc\" to {263, 196}\n\t\tset position of item \"Growl version history for developers.webloc\" to {370, 183}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 490, 360}\n\t\t\tset the bounds to {30, 50, 490, 360}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ec6c38816b38216e5e422977151e09dff28bbf35","subject":"Mod=0, since we want refresh 1 out of 20, not 19 out of 20","message":"Mod=0, since we want refresh 1 out of 20, not 19 out of 20\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_file":"Scripts\/fmClip - Loop Script Steps.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"726770119ca5ce84dd306a4141627040ecb5a70e","subject":"more bug-fixes","message":"more bug-fixes\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until the window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.1\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro Advanced\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_ObjectClick_SignInButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_SignInButton(prefs)\nend fmGUI_ObjectClick_SignInButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until the window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.1\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro Advanced\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e6fd026f91307fc75f35c93c7298b45fa3dad5a9","subject":"Upgrade apple script","message":"Upgrade apple script\n","repos":"wellyshen\/react-cool-starter,wellyshen\/react-cool-starter,zolcman\/calendartest,wellyshen\/react-cool-starter","old_file":"tools\/openBrowser\/openChrome.applescript","new_file":"tools\/openBrowser\/openChrome.applescript","new_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\n\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\nproperty targetTab: null\nproperty targetTabIndex: -1\nproperty targetWindow: null\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- 1: Looking for tab running debugger\n -- then, Reload debugging tab if found\n -- then return\n set found to my lookupTabWithUrl(theURL)\n if found then\n set targetWindow's active tab index to targetTabIndex\n tell targetTab to reload\n tell targetWindow to activate\n set index of targetWindow to 1\n return\n end if\n\n -- 2: Looking for Empty tab\n -- In case debugging tab was not found\n -- We try to find an empty tab instead\n set found to my lookupTabWithUrl(\"chrome:\/\/newtab\/\")\n if found then\n set targetWindow's active tab index to targetTabIndex\n set URL of targetTab to theURL\n tell targetWindow to activate\n return\n end if\n\n -- 3: Create new tab\n -- both debugging and empty tab were not found\n -- make a new tab with url\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end tell\nend run\n\n-- Function:\n-- Lookup tab with given url\n-- if found, store tab, index, and window in properties\n-- (properties were declared on top of file)\non lookupTabWithUrl(lookupUrl)\n tell application \"Chrome\"\n -- Find a tab with the given url\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if (theTab's URL as string) contains lookupUrl then\n -- assign tab, tab index, and window to properties\n set targetTab to theTab\n set targetTabIndex to theTabIndex\n set targetWindow to theWindow\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n end tell\n return found\nend lookupTabWithUrl\n","old_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\n\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"785bf5b67de2b7a7721ca051105831d09f9b80a0","subject":"error handling","message":"error handling\n","repos":"rjacoby\/pebblepoint_server,rjacoby\/pebblepoint_server","old_file":"routes\/working_applescript.scpt","new_file":"routes\/working_applescript.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000L\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000L\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003Q\u0000\u0000\u0000\u0004\u0000K\u0000\u0007\u0000\b\u0000\t\r\u0000\u0007\u0000\u0001k\u0000\u0000\u0000\u0007\u0000@\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u000f\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\r\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\r\u0000\u0011\n\u0000\u0004\npSSw\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\u0001\r\u0000\u0010\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\nAAPr\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bslidewindow\u0000\u000bslideWindow\u0002\u0000\f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\u0010\u0000 \u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u0016\u0000\u001f\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001d\u0000\u0018\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0018\u0000\u00012\u0000\u0001\u0000\u0016\u0000\u0019\n\u0000\u0004\npSLD\u0002\u0000\u0000\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u0010\u0000\u0013\n\u0000\u0004\nAAPr\u0002\u0000\u0013\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000!\u0000\/\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002n\u0000\u0000\u0000!\u0000-\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u00011\u0000\u0000\u0000+\u0000-\n\u0000\u0004\nSIdX\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000!\u0000+\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000)\u0000+\n\u0000\u0004\npSLD\r\u0000 \u0000\u0003l\u0000\u0005\u0000!\u0000)\u0000!\r\u0000!\u0000\u0002n\u0000\u0000\u0000!\u0000)\u0000\"\u0000#\r\u0000\"\u0000\u0001m\u0000\u0000\u0000'\u0000)\n\u0000\u0004\nPSSv\r\u0000#\u0000\u0002n\u0000\u0000\u0000!\u0000'\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000$\u0000'\u0000&\n\u0000\u0004\npSSw\r\u0000&\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0003\u0000\u0001\r\u0000%\u0000\u00011\u0000\u0000\u0000!\u0000$\n\u0000\u0004\nAAPr\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\u0002\u0000\u001a\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0002\u00000\u0000:\u0000)\n\u0000\u0018.sPPTSnxSnull\u0000\u0000\u00007\u0000PSSv\r\u0000)\u0000\u0003l\u0000\u0005\u00000\u00006\u0000*\r\u0000*\u0000\u0002n\u0000\u0000\u00000\u00006\u0000+\u0000,\r\u0000+\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nPSSv\r\u0000,\u0000\u00024\u0000\u0000\u00000\u00004\u0000-\n\u0000\u0004\npSSw\r\u0000-\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000(\u0000\u0002\u0000.\r\u0000.\u0000\u0001J\u0000\u0000\u0000;\u0000@\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u00002\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000\u000e\u0000s\u0000u\u0000c\u0000c\u0000e\u0000s\u0000s\u0002\u00001\u0000\u0002\u00004\u00005\r\u00004\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\u0002\u00005\u0000\u0002\u00006\r\u00006\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001J\u0000\u0000\u0000H\u0000K\u00007\u0002\u00007\u0000\u0002\u00008\r\u00008\u0000\u0001m\u0000\u0000\u0000H\u0000I\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\u0018\u0000n\u0000o\u0000 \u0000s\u0000l\u0000i\u0000d\u0000e\u0000s\u0000h\u0000o\u0000w\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000;\u000f\u0000;\u0002\u001e\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000PPT3\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000lH+\u0000\u0000\u0000\u0006M\u0018Microsoft PowerPoint.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u033c \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015Microsoft Office 2011\u0000\u0000\u0010\u0000\b\u0000\u0000lL\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u033d\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u0006M\u0000\u0000\u0002\u0000JMacintosh HD:Applications:\u0000Microsoft Office 2011:\u0000Microsoft PowerPoint.app\u0000\u000e\u00002\u0000\u0018\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000P\u0000o\u0000w\u0000e\u0000r\u0000P\u0000o\u0000i\u0000n\u0000t\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000;Applications\/Microsoft Office 2011\/Microsoft PowerPoint.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000<\u0000=\u0000>\u0001\u0000\u0000\u0010\u0000<\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bslidewindow\u0000\u000bslideWindow\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\u000e\u0000=\u0000\u0007\u0010\u0000?\u0000@\u0000A\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000L\u0000B\u0002\u0000B\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000@\u0000\u0000\u0010\u0000A\u0000\u000f\u0000;\u00002\u00009\n\u0000\u0004\nAAPr\n\u0000\u0004\npSSw\u000b\u0000\u001a0\u0000\u000bslidewindow\u0000\u000bslideWindow\n\u0000\u0004\npSLD\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\n\u0000\u0004\nPSSv\n\u0000\u0004\nSIdX\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\n\u0000\u0018.sPPTSnxSnull\u0000\u0000\u00007\u0000PSSv\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000M\u0012\u0000I\u0014\u0000>*,k\/EO*,\u0012\u0000\u000b*-j\f\u0000\u0005EUO*,k\/,,,EO*k\/,j\f\u0000\nOmvW\u0000\nX\u0000\f\u0000\rkvU\u000f\u000e\u0000>\u0000\u0001\u0014\u0000C\u000e\u0000C\u0000\u0003\u0018\u0000;\n\u0000\u0004\npSSw\u0003\u0000\u0001\u0003\u0000&\u0003\u0000\u0004ascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000A\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0000A\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0000@\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u0014\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\f\u0000\r\r\u0000\f\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u000e\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u000e\u0000\u00012\u0000\u0001\u0000\n\u0000\r\n\u0000\u0004\npSLD\u0002\u0000\u0000\r\u0000\r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\r\u0000\u000b\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\nAAPr\u0002\u0000\t\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002r\u0000\u0000\u0000\u0015\u0000#\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0015\u0000!\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u001f\u0000!\n\u0000\u0004\nSIdX\r\u0000\u0014\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001f\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npSLD\r\u0000\u0016\u0000\u0003l\u0000\u0005\u0000\u0015\u0000\u001d\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001d\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nPSSv\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0015\u0000\u001b\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001b\u0000\u001c\n\u0000\u0004\npSSw\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\r\u0000\u001b\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0018\n\u0000\u0004\nAAPr\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\u0002\u0000\u0010\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000$\u0000.\u0000\u001f\n\u0000\u0018.sPPTSnxSnull\u0000\u0000\u00007\u0000PSSv\r\u0000\u001f\u0000\u0003l\u0000\u0005\u0000$\u0000*\u0000 \r\u0000 \u0000\u0002n\u0000\u0000\u0000$\u0000*\u0000!\u0000\"\r\u0000!\u0000\u0001m\u0000\u0000\u0000(\u0000*\n\u0000\u0004\nPSSv\r\u0000\"\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000#\n\u0000\u0004\npSSw\r\u0000#\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\/\u0000:\u0000&\u0000'\r\u0000&\u0000\u0002n\u0000\u0000\u0000\/\u00008\u0000(\u0000)\r\u0000(\u0000\u00011\u0000\u0000\u00006\u00008\n\u0000\u0004\nSsTe\r\u0000)\u0000\u0002n\u0000\u0000\u0000\/\u00006\u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u00004\u00006\n\u0000\u0004\nPSSv\r\u0000+\u0000\u0002n\u0000\u0000\u0000\/\u00004\u0000,\u0000-\r\u0000,\u0000\u0001m\u0000\u0000\u00002\u00004\n\u0000\u0004\npSSw\r\u0000-\u0000\u00011\u0000\u0000\u0000\/\u00002\n\u0000\u0004\nAAPr\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fcurrentstate\u0000\fcurrentState\u0002\u0000%\u0000\u0002\u0000.\r\u0000.\u0000\u0002b\u0000\u0000\u0000;\u0000@\u0000\/\u00000\r\u0000\/\u0000\u0002b\u0000\u0000\u0000;\u0000>\u00001\u00002\r\u00001\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\r\u00002\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\r\u00000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u001c0\u0000\fcurrentstate\u0000\fcurrentState\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00003\u000f\u00003\u0002\u001e\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000PPT3\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000lH+\u0000\u0000\u0000\u0006M\u0018Microsoft PowerPoint.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u033c \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015Microsoft Office 2011\u0000\u0000\u0010\u0000\b\u0000\u0000lL\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u033d\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u0006M\u0000\u0000\u0002\u0000JMacintosh HD:Applications:\u0000Microsoft Office 2011:\u0000Microsoft PowerPoint.app\u0000\u000e\u00002\u0000\u0018\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000P\u0000o\u0000w\u0000e\u0000r\u0000P\u0000o\u0000i\u0000n\u0000t\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000;Applications\/Microsoft Office 2011\/Microsoft PowerPoint.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u00004\u00005\u0001\u0000\u0000\u0010\u00004\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\u000e\u00005\u0000\u0007\u0010\u00006\u00007\u00008\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00006\u0000\u0001k\u0000\u0000\u0000\u0000\u0000A\u00009\u0002\u00009\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u00007\u0000\u0000\u0010\u00008\u0000\f\u00003\n\u0000\u0004\nAAPr\n\u0000\u0004\npSLD\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\u001e0\u0000\rtheslidecount\u0000\rtheSlideCount\n\u0000\u0004\npSSw\n\u0000\u0004\nPSSv\n\u0000\u0004\nSIdX\u000b\u0000(0\u0000\u0012currentslidenumber\u0000\u0012currentSlideNumber\n\u0000\u0018.sPPTSnxSnull\u0000\u0000\u00007\u0000PSSv\n\u0000\u0004\nSsTe\u000b\u0000\u001c0\u0000\fcurrentstate\u0000\fcurrentState\u0011\u0000B\u0012\u0000>*,\u0012\u0000\u000b*-j\f\u0000\u0003EUO*,k\/,,,EO*k\/,j\f\u0000\tO*,,,,EO%%U\u000f\u0003\u0000&ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fc2445fb6ed02ff4e13566d6d7b061b0647814e2","subject":"fixed sender address handling","message":"fixed sender address handling\n\nnow responses for calendar events are handled gracefully\n\nChange-Id: I2182a5c5d317fc60841ae1088c260a6db519a45d\nSigned-off-by: Falko Zurell <553d907fcdd96929d5363dc3b6e443669c7e54a8@zurell.de>\n","repos":"maxheadroom\/helpers,maxheadroom\/helpers,maxheadroom\/helpers","old_file":"AppleScript\/LogOutlookMetaData.applescript","new_file":"AppleScript\/LogOutlookMetaData.applescript","new_contents":"\n\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n-- This code is triggered if you manually run the script in AppleScript Editor. It retreives any selected messages and then processes them. This is good for testing.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t--(plain text content of (item 1 of theMessages))\n\t--return paragraphs of result\nend tell\n\n-- Count the messages received from Outlook.\nset theMessageCount to count theMessages\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\ttry\n\t\t\t\t\tset theSenderName to address of theSender\n\t\t\t\ton error\n\t\t\t\t\tset theSenderName to \"unresolved Sender Name\"\n\t\t\t\tend try\n\t\t\tend try\n\t\t\ttry\n\t\t\t\tset theSenderAddress to address of theSender\n\t\t\ton error\n\t\t\t\tset theSenderAddress to \"unresolved\"\n\t\t\tend try\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\t\n\t\t\t-- extract CC recipients\n\t\t\tset theCC to cc recipients\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset CCList to CCList & address of recipientEMail as text\n\t\t\t\tset CCList to CCList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- extract the TO recipients\n\t\t\tset theTO to to recipients\n\t\t\tset TOList to \"\"\n\t\t\trepeat with rcp in theTO\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset TOList to TOList & address of recipientEMail as text\n\t\t\t\tset TOList to TOList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & TOList & \"|\" & CCList & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","old_contents":"\n\nset this_file to (((path to home folder) as string) & \"MailLog.log\")\n\n\non write_to_file(this_data, target_file, append_data)\n\ttry\n\t\tset the target_file to the target_file as string\n\t\tset the open_target_file to open for access file target_file with write permission\n\t\tif append_data is false then set eof of the open_target_file to 0\n\t\twrite this_data to the open_target_file starting at eof\n\t\tclose access the open_target_file\n\t\treturn true\n\ton error\n\t\ttry\n\t\t\tclose access file target_file\n\t\tend try\n\t\treturn false\n\tend try\nend write_to_file\n\non replace_chars(this_text, search_string, replacement_string)\n\tset AppleScript's text item delimiters to the search_string\n\tset the item_list to every text item of this_text\n\tset AppleScript's text item delimiters to the replacement_string\n\tset this_text to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn this_text\nend replace_chars\n\n-- This code is triggered if you manually run the script in AppleScript Editor. It retreives any selected messages and then processes them. This is good for testing.\ntell application \"Microsoft Outlook\"\n\tset theMessages to current messages\n\t--(plain text content of (item 1 of theMessages))\n\t--return paragraphs of result\nend tell\n\n-- Count the messages received from Outlook.\nset theMessageCount to count theMessages\n\n\n-- Loop through the messages received from Outlook.\ntell application \"Microsoft Outlook\"\n\trepeat with a from 1 to theMessageCount\n\t\t-- Target the current message in the loop.\n\t\ttell item a of theMessages\n\t\t\t-- Retrieve the name of the current message's sender.\n\t\t\tset theSender to sender\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset theSenderName to name of theSender\n\t\t\t\t\n\t\t\ton error\n\t\t\t\tset theSenderName to address of theSender\n\t\t\tend try\n\t\t\tset theSenderAddress to address of theSender\n\t\t\t-- Retrieve the current message's subject.\n\t\t\tset theSubject to subject\n\t\t\tset timeReceived to time received\n\t\t\tset timeSent to time sent\n\t\t\tset thePriority to priority\n\t\t\tset theSource to source as text\n\t\t\tset theSize to length of theSource\n\t\t\t\n\t\t\t-- extract CC recipients\n\t\t\tset theCC to cc recipients\n\t\t\tset CCList to \"\"\n\t\t\trepeat with rcp in theCC\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset CCList to CCList & address of recipientEMail as text\n\t\t\t\tset CCList to CCList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- extract the TO recipients\n\t\t\tset theTO to to recipients\n\t\t\tset TOList to \"\"\n\t\t\trepeat with rcp in theTO\n\t\t\t\tset recipientEMail to email address of rcp\n\t\t\t\tset TOList to TOList & address of recipientEMail as text\n\t\t\t\tset TOList to TOList & \",\"\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\tif thePriority = priority normal then\n\t\t\t\tset mailPriority to \"normal\"\n\t\t\telse if thePriority = priority high then\n\t\t\t\tset mailPriority to \"high\"\n\t\t\telse if thePriority = priority low then\n\t\t\t\tset mailPriority to \"low\"\n\t\t\telse\n\t\t\t\tset mailPriority to \"none\"\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset isMeeting to is meeting\n\t\tend tell\n\t\t\n\t\tset theSubject to my replace_chars(theSubject, \"|\", \"--\")\n\t\tset output to timeReceived & \"|\" & timeSent & \"|\" & theSenderAddress & \"|\" & TOList & \"|\" & CCList & \"|\" & theSubject & \"|\" & mailPriority & \"|\" & isMeeting & \"|\" & theSize & return\n\t\t\n\t\tmy write_to_file(output as string, this_file, true)\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"dd9a51a9f691b4adf1334efc2334e1930ef6877d","subject":"Fix myOpenGitHub","message":"Fix myOpenGitHub\n","repos":"onmyway133\/XcodeWay,onmyway133\/XcodeWay","old_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_file":"XcodeWayExtensions\/Script\/XcodeWayScript.scpt","new_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myPath to myProjectPath()\nset myUrl to (do shell script \"cd \" & quoted form of myPath & \"; git config --get remote.origin.url\")\nopen location myUrl\nend myOpenGitHub\n","old_contents":"use scripting additions\nuse framework \"Foundation\"\nproperty NSString : a reference to current application's NSString\n\n-- Helper\n\non myRemoveLastPath(myPath)\nset myString to NSString's stringWithString:myPath\nset removedLastPathString to myString's stringByDeletingLastPathComponent\nremovedLastPathString as text\nend myRemoveLastPath\n\non myFolderExists(myFolder) -- (String) as Boolean\ntell application \"System Events\"\nif exists folder myFolder then\nreturn true\nelse\nreturn false\nend if\nend tell\nend myFolderExists\n\n-- Path\n\non myHomePath()\ntell application \"System Events\"\n\"\/Users\/\" & (name of current user)\nend tell\nend myHomePath\n\non myLibraryPath()\nmyHomePath() & \"\/Library\"\nend myLibraryPath\n\non myXcodePath()\nmyLibraryPath() & \"\/Developer\/Xcode\"\nend myXcodePath\n\non myUserDataPath()\nmyXcodePath() & \"\/UserData\"\nend myUserDataPath\n\non myProjectPath()\ntell application \"Xcode\"\ntell active workspace document\nset myPath to path\nend tell\nend tell\nmyRemoveLastPath(myPath)\nend myProjectPath\n\n-- Generic Open\n\non myOpenFolder(myPath)\ntell application \"Finder\"\nactivate\nopen myPath as POSIX file\nend tell\nend myOpenFolder\n\non myOpeniTerm(myPath)\ntell application \"Finder\"\ndo shell script \"open -a iTerm \" & quoted form of myPath\nend tell\nend myOpeniTerm\n\n-- Open\n\non myOpenThemesFolder()\nset myPath to myUserDataPath() & \"\/FontAndColorThemes\/\"\nmyOpenFolder(myPath)\nend myOpenThemesFolder\n\non myOpenCodeSnippetsFolder()\nset myPath to myUserDataPath() & \"\/CodeSnippets\/\"\nmyOpenFolder(myPath)\nend myOpenCodeSnippetsFolder\n\non myOpenDeviceSupportFolder()\nset myPath to \"\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/DeviceSupport\"\nmyOpenFolder(myPath)\nend myOpenDeviceSupportFolder\n\non myOpenArchivesFolder()\nset myPath to myXcodePath() & \"\/Archives\/\"\nmyOpenFolder(myPath)\nend myOpenArchivesFolder\n\non myOpenProvisioningProfileFolder()\nset myPath to myLibraryPath() & \"\/MobileDevice\/Provisioning Profiles\"\nmyOpenFolder(myPath)\nend myOpenProvisioningProfileFolder\n\non myOpenProjectFolder()\nset myPath to myProjectPath()\nmyOpenFolder(myPath)\nend myOpenProjectFolder\n\non myOpeniTermForCurrentProject()\nset myPath to myProjectPath()\nmyOpeniTerm(myPath)\nend myOpeniTermForCurrentProject\n\non myOpenDerivedDataFolder()\nset myRelativePath to myProjectPath() & \"\/DerivedData\/\"\nif myFolderExists(myRelativePath) then\nmyOpenFolder(myRelativePath)\nelse\nmyOpenFolder(myXcodePath() & \"\/DerivedData\/\")\nend if\nend myOpenDerivedDataFolder\n\non myOpenGitHub()\nset myUrl to (do shell script \"cd \/Users\/khoa\/XcodeProject2\/XcodeWay; git config --get remote.origin.url\")\nend myOpenGitHub\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5fffed4f40de82d1f1a07ad11b3ba3312a82191a","subject":"Align indentation in AppleScript example file","message":"Align indentation in AppleScript example file\n","repos":"brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen","old_file":"AppleScript\/Safari-OpenAllStarredArticles.applescript","new_file":"AppleScript\/Safari-OpenAllStarredArticles.applescript","new_contents":"-- This script creates a new Safari window with all the starred articles in a NetNewsWire instance, each in its own tab\n\n-- declare the safariWindow property here so we can use is throughout the whole script\n\nproperty safariWindow : missing value\n\n-- the openTabInSafari() function opens a new tab in the appropriate window\n\nto openTabInSafari(theUrl)\n\ttell application \"Safari\"\n\t\t-- test if this is the first call to openTabInSafari()\n\t\tif (my safariWindow is missing value) then\n\t\t\t-- first time through, make a new window with the given url in the only tab\n\t\t\tset newdoc to make new document at front with properties {URL:theUrl}\n\t\t\t-- because we created the doucument \"at front\", we know it is window 1\n\t\t\tset safariWindow to window 1\n\t\telse\n\t\t\t-- after the first time, make a new tab in the wndow we created the first tim\n\t\t\ttell safariWindow\n\t\t\t\tmake new tab with properties {URL:theUrl}\n\t\t\tend tell\n\t\tend if\n\tend tell\nend openTabInSafari\n\n\n-- the script starts here\n-- First, initialize safariWindow to be missing value, so that the first time through \n-- openTabInSafari() we'll make a new window to hold all our articles\n\nset safariWindow to missing value\n\n\n-- Then we loop though all the feeds of all the accounts\n-- for each feed, we find all the starred articles\n--for each one of those, open a new tab in Safari\n\ntell application \"NetNewsWire\"\n\tset allAccounts to every account\n\trepeat with nthAccount in allAccounts\n\t\tset userFeeds to allFeeds of nthAccount\n\t\trepeat with nthFeed in userFeeds\n\t\t\tset starredArticles to (get every article of nthFeed where starred is true)\n\t\t\trepeat with nthArticle in starredArticles\n\t\t\t\tmy openTabInSafari(url of nthArticle)\n\t\t\tend repeat\n\t\tend repeat\n\tend repeat\nend tell\n","old_contents":"-- This script creates a new Safari window with all the starred articles in a NetNewsWire instance, each in its own tab\n\n-- declare the safariWindow property here so we can use is throughout the whole script\n\nproperty safariWindow : missing value\n\n-- the openTabInSafari() function opens a new tab in the appropriate window\n\nto openTabInSafari(theUrl)\n\ttell application \"Safari\"\n\t\t-- test if this is the first call to openTabInSafari()\n\t\tif (my safariWindow is missing value) then\n\t\t\t-- first time through, make a new window with the given url in the only tab\n\t\t\tset newdoc to make new document at front with properties {URL:theUrl}\n\t\t\t-- because we created the doucument \"at front\", we know it is window 1\n\t\t\tset safariWindow to window 1\n\t\telse\n\t\t\t-- after the first time, make a new tab in the wndow we created the first tim\n\t\t\ttell safariWindow\n\t\t\t\tmake new tab with properties {URL:theUrl}\n\t\t\tend tell\n\t\tend if\n\tend tell\nend openTabInSafari\n\n\n-- the script starts here\n-- First, initialize safariWindow to be missing value, so that the first time through \n-- openTabInSafari() we'll make a new window to hold all our articles\n\nset safariWindow to missing value\n\n\n-- Then we loop though all the feeds of all the accounts\n-- for each feed, we find all the starred articles\n--for each one of those, open a new tab in Safari\n\ntell application \"NetNewsWire\"\n\tset allAccounts to every account\n\trepeat with nthAccount in allAccounts\n set userFeeds to allFeeds of nthAccount\n\t\trepeat with nthFeed in userFeeds\n\t\t\tset starredArticles to (get every article of nthFeed where starred is true)\n\t\t\trepeat with nthArticle in starredArticles\n\t\t\t\tmy openTabInSafari(url of nthArticle)\n\t\t\tend repeat\n\t\tend repeat\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fdf465938f7776bb95d2a33e54032dd7a80c4bbb","subject":"update dev autostart script","message":"update dev autostart script\n","repos":"monotek\/zammad,zammad\/zammad,monotek\/zammad,zammad\/zammad,monotek\/zammad,monotek\/zammad,zammad\/zammad,zammad\/zammad,zammad\/zammad,zammad\/zammad,monotek\/zammad,monotek\/zammad","old_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"contrib\/mac_developer_scripts.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\b\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\t\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\t\u0000\u001e\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001d\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001d\u0000%\u0000&\r\u0000%\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u001b\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0019\u0000)\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0019\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nfvtg\r\u0000+\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000,\n\u0000\u0004\nbrow\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000 \u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000-\u000f\u0000-\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000k\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u000f\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000er\u0000\u0000\u0000\u0001\u0000\f\u0000k\u0000j\u0000i\u0000\u0002\u00005Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\u001f\u0000$\u00002\r\u00002\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u00003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00003\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\r\u00006\u0000\u0003l\u0000\u0002\u0000%\u0000\u00007\r\u00007\u0000\u0002O\u0000\u0000\u0000%\u0000\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000)\u0000\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000)\u0000.\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0000?\u0000@\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000?\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000A\u0000B\r\u0000A\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000C\u0000D\r\u0000C\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0006\u0000c\u0000d\u0000 \r\u0000D\u0000\u0003l\u0000\u0005\u00000\u00003\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00000\u00003\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npsxp\r\u0000I\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001m\u0000\u0000\u00004\u00007\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0004\u0000.\u0000.\u0006\u0000@\u0000\u0003\u0000L\n\u0000\u0004\nkfil\r\u0000L\u0000\u0002n\u0000\u0000\u0000;\u0000E\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\ntcnt\r\u0000N\u0000\u0003l\u0001\u0000\u0000;\u0000A\u0000O\r\u0000O\u0000\u00024\u0001\u0000\u0000;\u0000A\u0000P\n\u0000\u0004\ncwin\r\u0000P\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000>\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000J\u0000J\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000J\u0000O\u0000U\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000U\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000P\u0000P\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\r\u0000X\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000Y\u0000Z\u0000[\r\u0000Y\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000_\u0000`\r\u0000_\u0000\u0002?\u0000\u0001\u0000^\u0000a\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000b\u0000\u0001m\u0000\u0000\u0000_\u0000`\u0003\u0000\u0001\r\u0000`\u0000\u0001k\u0000\u0000\u0000d\u0000\u0000c\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000d\u0000i\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000g\r\u0000g\u0000\u0002O\u0000\u0000\u0000j\u0000\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000p\u0000\u0000j\u0000k\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000j\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000\u0002\u0000t\u0006\u0000k\u0000\u0003\u0000n\n\u0000\u0004\nfaal\r\u0000n\u0000\u0001J\u0000\u0000\u0000v\u0000{\u0000o\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0001m\u0000\u0000\u0000v\u0000y\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000i\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000q\u000f\u0000q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000k\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000k\u0000j\u0000i\u0000\u0002\u0000<Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000t\u0000u\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000\u0000\u0000v\r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00024\u0000\u0000\u0000\u0000\u0000y\n\u0000\u0004\ncobj\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000u\u0000\u0003\u0000z\n\u0000\u0004\nkfil\r\u0000z\u0000\u0002n\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000|\u0000\u0003l\u0001\u0000\u0000\u0000\u0000}\r\u0000}\u0000\u00024\u0001\u0000\u0000\u0000\u0000~\n\u0000\u0004\ncwin\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000s\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000Z\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000[\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001j\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000B\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000\u0002\u00001Solid Stone:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00006\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001c\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u0000-\u0000\u0000E\u0000J\u0000q\u0000l\u0003\u0000\u0004\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\u0007O*k\/,&EUOkj\f\u0000\fO\u0012\u0000*j\f\u0000\u0007O,%a\u0000\u0010%a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\fO\u0017\u0000Vkj\f\u0000\u0015kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\fOa\u0000\u0016\u0012\u0000\u0011a\u0000\u0017a\u0000\u0018a\u0000\u0019kvl\f\u0000\u001aUY\u0000\u0003hOa\u0000\u001b\/a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\f[OYU\u000f\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000j\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000m\u0000r\u0000f\u0000l\u0000i\u0000x\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000g\u0000i\u0000t\u0000:\u0000z\u0000a\u0000m\u0000m\u0000a\u0000d\u0000:\u0000c\u0000o\u0000n\u0000t\u0000r\u0000i\u0000b\u0000:\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\b\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0000\b\u0000\t\r\u0000\b\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\u0018\u0000p\u0000u\u0000m\u0000a\u0000 \u0000-\u0000p\u0000 \u00003\u00000\u00000\u00000\u0002\u0000\f\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0011\u000e\u0000\u0011\u0000\u0001\u0000\u0012\u0011\u0000\u0012\u0000J\u0000r\u0000u\u0000b\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000o\u0000c\u0000k\u0000e\u0000t\u0000-\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000r\u0000b\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000&\u0000g\u0000u\u0000a\u0000r\u0000d\u0000 \u0000-\u0000P\u0000 \u0000l\u0000i\u0000v\u0000e\u0000r\u0000e\u0000l\u0000o\u0000a\u0000d\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0018\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\b\u0000g\u0000u\u0000l\u0000p\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\t\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\t\u0000\u001e\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001k\u0000\u0000\u0000\r\u0000\u001d\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000$\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001d\u0000%\u0000&\r\u0000%\u0000\u0002c\u0000\u0000\u0000\u0013\u0000\u001b\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0019\u0000)\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0019\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\nfvtg\r\u0000+\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000,\n\u0000\u0004\nbrow\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nctxt\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0002\u0000\u0000\r\u0000 \u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000-\u000f\u0000-\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000\u00008\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0016(\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u00005Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0002\u0000\u001f\u0000$\u00002\r\u00002\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u00003\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00003\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00001\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\r\u00006\u0000\u0003l\u0000\u0002\u0000%\u0000\u00007\r\u00007\u0000\u0002O\u0000\u0000\u0000%\u0000\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000)\u0000\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000)\u0000.\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003I\u0000\u0002\u0000\/\u0000I\u0000?\u0000@\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000?\u0000\u0002b\u0000\u0000\u0000\/\u00008\u0000A\u0000B\r\u0000A\u0000\u0002b\u0000\u0000\u0000\/\u00004\u0000C\u0000D\r\u0000C\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000\u0006\u0000c\u0000d\u0000 \r\u0000D\u0000\u0003l\u0000\u0005\u00000\u00003\u0000G\r\u0000G\u0000\u0002n\u0000\u0000\u00000\u00003\u0000H\u0000I\r\u0000H\u0000\u00011\u0000\u0000\u00001\u00003\n\u0000\u0004\npsxp\r\u0000I\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000B\u0000\u0001m\u0000\u0000\u00004\u00007\u0000J\u000e\u0000J\u0000\u0001\u0000K\u0011\u0000K\u0000\u0004\u0000.\u0000.\u0006\u0000@\u0000\u0003\u0000L\n\u0000\u0004\nkfil\r\u0000L\u0000\u0002n\u0000\u0000\u0000;\u0000E\u0000M\u0000N\r\u0000M\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\ntcnt\r\u0000N\u0000\u0003l\u0001\u0000\u0000;\u0000A\u0000O\r\u0000O\u0000\u00024\u0001\u0000\u0000;\u0000A\u0000P\n\u0000\u0004\ncwin\r\u0000P\u0000\u0001m\u0000\u0000\u0000?\u0000@\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000>\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000J\u0000J\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003I\u0000\u0002\u0000J\u0000O\u0000U\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000U\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000P\u0000P\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\r\u0000X\u0000\u0005Y\u0000\u0000\u0000P\u0000\u0000Y\u0000Z\u0000[\r\u0000Y\u0000\u0001k\u0000\u0000\u0000^\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000_\u0000`\r\u0000_\u0000\u0002?\u0000\u0001\u0000^\u0000a\u0000a\u0000b\r\u0000a\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000b\u0000\u0001m\u0000\u0000\u0000_\u0000`\u0003\u0000\u0001\r\u0000`\u0000\u0001k\u0000\u0000\u0000d\u0000\u0000c\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000d\u0000i\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000d\u0000e\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000g\r\u0000g\u0000\u0002O\u0000\u0000\u0000j\u0000\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000p\u0000\u0000j\u0000k\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000j\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000\u0002\u0000t\u0006\u0000k\u0000\u0003\u0000n\n\u0000\u0004\nfaal\r\u0000n\u0000\u0001J\u0000\u0000\u0000v\u0000{\u0000o\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0001m\u0000\u0000\u0000v\u0000y\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\r\u0000i\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000q\u000f\u0000q\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000\u00008\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0012l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00008\u0000\u0000\u00007\u0000\u0000\u00006\u0000\u0002\u0000<Solid Stone:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003I\u0000\u0002\u0000\u0000\u0000t\u0000u\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000t\u0000\u0003l\u0000\u0005\u0000\u0000\u0000v\r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0000\u0000w\u0000x\r\u0000w\u0000\u00024\u0000\u0000\u0000\u0000\u0000y\n\u0000\u0004\ncobj\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000u\u0000\u0003\u0000z\n\u0000\u0004\nkfil\r\u0000z\u0000\u0002n\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntcnt\r\u0000|\u0000\u0003l\u0001\u0000\u0000\u0000\u0000}\r\u0000}\u0000\u00024\u0001\u0000\u0000\u0000\u0000~\n\u0000\u0004\ncwin\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000s\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\r\u0000Z\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\r\u0000[\u0000\u0003I\u0000\u0001\u0000T\u0000Y\u0000\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001j\u0000\u0002\u0000\u0001\u000bSolid Stone\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003H+\u0000\u0000\u0000\u0000I\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000B\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u00003d\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\"\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000I\u0000\u0000\u0000W\u0000\u0002\u00001Solid Stone:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0018\u0000\u000b\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u0000\u0000\u0002\u00006\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00050\u0000\u0001n\u0000\u0000\u0010\u0000\u0000\u001c\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u0000-\u0000\u0000E\u0000J\u0000q\u0000l\u0003\u0000\u0004\u000b\u0000\u001a0\u0000\u000bcommandlist\u0000\u000bcommandList\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\nbrow\n\u0000\u0004\nfvtg\n\u0000\u0004\nctxt\u000b\u0000\u00180\u0000\ncurrentdir\u0000\ncurrentDir\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\npsxp\n\u0000\u0004\nkfil\n\u0000\u0004\ncwin\n\u0000\u0004\ntcnt\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\ncobj\u0011\u0000vEO\u0012\u0000\u0012*j\f\u0000\u0007O*k\/,&EUOkj\f\u0000\fO\u0012\u0000*j\f\u0000\u0007O,%a\u0000\u0010%a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\fO\u0017\u0000Vkj\f\u0000\u0015kh\u001c\u0000\u0000k\u0002\u001d\u0000!kj\f\u0000\fOa\u0000\u0016\u0012\u0000\u0011a\u0000\u0017a\u0000\u0018a\u0000\u0019kvl\f\u0000\u001aUY\u0000\u0003hOa\u0000\u001b\/a\u0000\u0011*a\u0000\u0012k\/a\u0000\u0013,l\f\u0000\u0014Okj\f\u0000\f[OYU\u000f\u000e\u0000\u0000\u0002\u0004\u0000\u0003\u0000\u0004\u000e\u0000\u0000\u0004\u0000\u0000\r\u0000\u0011\u0000\u0015\u0000\u0018\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000j\u0000S\u0000o\u0000l\u0000i\u0000d\u0000 \u0000S\u0000t\u0000o\u0000n\u0000e\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000m\u0000r\u0000f\u0000l\u0000i\u0000x\u0000:\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000:\u0000g\u0000i\u0000t\u0000:\u0000z\u0000a\u0000m\u0000m\u0000a\u0000d\u0000:\u0000c\u0000o\u0000n\u0000t\u0000r\u0000i\u0000b\u0000:\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"b4d0356adc9eccfb36450c33d04b3c3d54ee037c","subject":"update binary file","message":"update binary file\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/alfred.bundler.scpt","new_file":"tests\/applescript\/alfred.bundler.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u0000=\u0001\u0000\u0000\f\u0000<\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000;\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000H\u0000I\u0001\u0000\u0000\f\u0000H\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000R\u0000S\r\u0000R\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000V\r\u0000V\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000Y\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000U\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000S\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000[\u0002\u0000[\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000^\u0000_\u0001\u0000\u0000\f\u0000^\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000]\u0000\u0002\u0000a\r\u0000a\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000g\b\u0000g\u0000\b?\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000i\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000o\u0000p\r\u0000o\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000q\r\u0000q\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000s\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000n\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000x\u0000y\u0001\u0000\u0000\f\u0000x\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000w\u0000\u0002\u0000{\r\u0000{\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000|\r\u0000|\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000}\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000}\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000B\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0000\u0001\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0000\u0000\u0003\u0001\u0003\n\u0000\u0004\nerrn\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0006\u0001\u0007\u0001\u0000\u0000\f\u0001\u0006\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\u0005\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\r\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u000e\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0011\u0001\u0012\u0001\u0000\u0000\f\u0001\u0011\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0010\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u0000\u0006\u0000c\u0000d\u0000 \r\u0001\u001d\u0000\u0003l\u0000\u0005\u0000\u0000\u0001 \r\u0001 \u0000\u0002n\u0000\u0000\u0000\u0000\u0001!\u0001\"\r\u0001!\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u0019\u0000\u0003l\u0000\u0005\u0000\u0000\u0001%\r\u0001%\u0000\u0002n\u0000\u0000\u0000\u0000\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0000\u0000~\u0001*}\n~\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002}\u0000\u0000\u0002\u0001)\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0001\u0000\u0000{\u0001-\u0001.\u0001{\u0000\u0000\f\u0001-\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001,\u0000\u0002\u00010\u00011\r\u00010\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0005\u0000\u0000\u00014zy\r\u00014\u0000\u0002b\u0000\u0000\u0000\u0000\u00015\u00016\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00016\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00011\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0002V\u0000\u0000\u0000\u0000\u0001;\u0001<\r\u0001;\u0000\u0003I\u0000\u0002\u0000\u0000v\u0001=u\nv\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001>\b\u0001>\u0000\b?\u0259\u0002u\u0000\u0000\r\u0001<\u0000\u0001H\u0000\u0000\u0000\u0000\u0001?\r\u0001?\u0000\u0003l\u0000\u0005\u0000\u0000\u0001@ts\r\u0001@\u0000\u0002n\u0000\u0001\u0000\u0000\u0001A\u0001B\r\u0001A\u0000\u0003I\u0000\u0000\u0000\u0000r\u0001Cq\u000br\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001C\u0000\u0002\u0001Dp\r\u0001D\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002p\u0000\u0000\u0002q\u0000\u0000\r\u0001B\u0000\u0000f\u0000\u0000\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0001:\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0003l\u0000\u0001\u0000\u0000n\u0001G\u0001H\u0001n\u0000\u0000\f\u0001G\u0000,\u0000&#TODO: remove bundler files from cache\u0000\u0002\u0000\u0000\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000L\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000c\u0000a\u0000c\u0000h\u0000e\u0002\u0001F\u0000\u0002\u0001Jm\r\u0001J\u0000\u0001L\u0000\u0000\u0000\u0000l\u0001l\u0000\u0000\u0002m\u0000\u0000\u0002\u0000\u0000\u0002\u0001K\u0001L\r\u0001K\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000kji\u0001k\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000h\u0001O\u0001P\u0001h\u0000\u0000\f\u0001O\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001P\u0000\u0001\u0001Q\u0011\u0001Q\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001N\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001T\u0001U\r\u0001T\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000gfe\u000bg\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002f\u0000\u0000\u0002e\u0000\u0000\r\u0001U\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001V\u0002\u0001V\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000d\u0001Y\u0001Z\u0001d\u0000\u0000\f\u0001Y\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001X\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000c\u0001^\u0001_\u0001c\u0000\u0000\f\u0001^\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001_\u0000\u0001\u0001`\u0011\u0001`\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001]\u0000\u0002\u0001a\u0001b\r\u0001a\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001c\u0001d\r\u0001c\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001e\u0001f\r\u0001e\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001g\u0001h\r\u0001g\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005ba`\u000bb\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002a\u0000\u0000\u0002`\u0000\u0000\r\u0001h\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000_\u000b_\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001b\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0003l\u0000\u0001\u0000\n\u0000\n^\u0001m\u0001n\u0001^\u0000\u0000\f\u0001m\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001r\u0001s\r\u0001r\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001t\u0001u\r\u0001t\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001v\u0001w\r\u0001v\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001x\u000e\u0001x\u0000\u0001\u0001y\u0011\u0001y\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f]\u000b]\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001u\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001z\u000e\u0001z\u0000\u0001\u0001{\u0011\u0001{\u0000\u0002\u0000'\r\u0001s\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001q\u0000\u0002\u0001|\u0001}\r\u0001|\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001~\u0001\r\u0001~\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017[\u0001Z\n[\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013Y\u000bY\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002Z\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000X\u000bX\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001}\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aW\u0001\u0001\u0001W\u0000\u0000\f\u0001\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fVUT\u000bV\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002U\u0000\u0000\u0002T\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000S\u000bS\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*R\u0001Q\u000bR\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001P\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&O\u000bO\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002P\u0000\u0000\u0002Q\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000N\u000bN\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-M\u0001\u0001\u0001M\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.L\u000bL\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001K\u000bK\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000J\u000bJ\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007IHG\u0001I\u0000\u0000\u0001H\u0000\u0000\u0001G\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000WF\nF\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001ED\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000SC\u0001\u0001\nC\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u00008B\u000bB\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u0003A\u0001\u0001\nA\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u0001@\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u0002@\u0000\u0000\u0006\u0001\u0000\u0003?\u0001\u0001\n?\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@>\u0003>\u0000\u0003\u0006\u0001\u0000\u0003=\u0001\u0001\n=\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C<\u000b<\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u0003;\u0001:\n;\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M9\u0001\n9\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L8\u000b8\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006:\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z6\u0001\u0001\u00016\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u000154\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[3\u000b3\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c2\n2\u0000\b\u000bboovtrue\u00025\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i1\u0001\u0001\u00011\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u00010\/\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j.\u000b.\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~-\u0001,\n-\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002,\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001+\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000*\u0001\u0001\n*\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003)\u0001(\n)\u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000'\u0003'\u0000\u0017\u0006(\u0000\u0000\u0002+\u0000\u0000\u00020\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000&\u0001\u0001\u0001&\u0000\u0000\f\u0001\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001%\r\u0001\u0000\u0004Z\u0000\u0001\u0000\u0000\u0001\u0001$#\r\u0001\u0000\u0002=\u0000\u0001\u0000\u0000\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\"\u000b\"\u0000\r0\u0000\t_response\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0002\u000e\u0002\u0002\u0000\u0001\u0002\u0003\u0011\u0002\u0003\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000!\u0002\u0004\u0002\u0005\n!\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0006\u000e\u0002\u0006\u0000\u0001\u0002\u0007\u0011\u0002\u0007\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\u0005\u0000\u0003 \u0002\b\u001f\n \u0000\u0004\nerrn\r\u0002\b\u0000\u0001m\u0000\u0000\u0000\u0000\u001e\u0003\u001e\u0000\u0017\u0006\u001f\u0000\u0000\u0002$\u0000\u0000\u0001#\u0000\u0000\u0002%\u0000\u0000\u0002\u0001S\u0000\u0002\u0002\t\u0002\n\r\u0002\t\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001d\u001c\u001b\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0001\u001b\u0000\u0000\u0002\u0002\n\u0000\u0002\u0002\u000b\u0002\f\r\u0002\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001a\u0019\u0018\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0002\f\u0000\u0002\u0002\r\u0002\u000e\r\u0002\r\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u000f\u0002\u0010\u0001\u0017\u0000\u0000\f\u0002\u000f\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\u0010\u0000\u0001\u0002\u0011\u0011\u0002\u0011\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\u000e\u0000\u0002\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0016\u0015\u0014\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0002\u0013\u0000\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u0016\u0002\u0017\r\u0002\u0016\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u0012\u0011\u000b\u0013\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0012\u0000\u0000\u0002\u0011\u0000\u0000\r\u0002\u0017\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002\u0018\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0002\u001b\u0002\u001c\u0001\u0010\u0000\u0000\f\u0002\u001b\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u001c\u0000\u0001\u0002\u001d\u0011\u0002\u001d\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u001a\u0000\u0002\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u000f\u0002 \u0002!\u0001\u000f\u0000\u0000\f\u0002 \u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002!\u0000\u0001\u0002\"\u0011\u0002\"\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002\u001f\u0000\u0002\u0002#\u0002$\r\u0002#\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002%\u0002&\r\u0002%\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002'\u0002\u0002'\u0000\u0002\u0002(\u0002)\r\u0002(\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u0002*\u0002+\r\u0002*\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u000e\n\u000e\u0000\u0004\ntxdl\r\u0002+\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\r\n\r\u0000\u0004\nascr\u0002\u0002)\u0000\u0002\u0002,\f\r\u0002,\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0002-\u000e\u0002-\u0000\u0001\u0002.\u0011\u0002.\u0000\u0002\u0000\/\u0002\f\u0000\u0000\r\u0002&\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0002\/\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000b\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u00021\u0000\u0002\u00022\n\r\u00022\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u00023\u00024\r\u00023\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\t\n\t\u0000\u0004\ntxdl\r\u00024\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\b\n\b\u0000\u0004\nascr\u0002\n\u0000\u0000\u0002\u0002$\u0000\u0002\u00025\u00026\r\u00025\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\u0007\u00027\u00028\u0001\u0007\u0000\u0000\f\u00027\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u00028\u0000\u0001\u00029\u0011\u00029\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u00026\u0000\u0002\u0002:\u0002;\r\u0002:\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u0002<\u0002=\r\u0002<\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u0002>\u0002?\r\u0002>\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002@\u0006\u0005\r\u0002@\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002A\u0002B\r\u0002A\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002C\u0002D\r\u0002C\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0004\u0002E\u0002F\n\u0004\u0000\u0004\ncitm\r\u0002E\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0003\u0003\u0003\u0000\u0001\r\u0002F\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0002\u0003\u0002\r\u0002D\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002G\u0001\u0000\r\u0002G\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002H\u0002I\r\u0002H\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npsxp\r\u0002I\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002J\r\u0002J\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002K\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002K\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\r\u0002B\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\r\u0002?\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002L\u000e\u0002L\u0000\u0001\u0002M\u0011\u0002M\u0000\u0002\u0000\/\r\u0002=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0002;\u0000\u0002\u0002N\u0002O\r\u0002N\u0000\u0003l\u0000\u0001\u00000\u00000\u0002P\u0002Q\u0001\u0000\u0000\f\u0002P\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002Q\u0000\u0001\u0002R\u0011\u0002R\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002O\u0000\u0002\u0002S\u0002T\r\u0002S\u0000\u0002r\u0000\u0000\u00000\u00005\u0002U\u0002V\r\u0002U\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002V\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002W\u0002X\r\u0002W\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002X\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002T\u0000\u0002\u0002Y\r\u0002Y\u0000\u0001L\u0000\u0000\u00006\u00008\u0002Z\r\u0002Z\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0015\u0000\u0002\u0002[\u0002\\\r\u0002[\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\\\u0000\u0002\u0002]\u0002^\r\u0002]\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002_\u0002`\r\u0002_\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002a\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002a\u0000\u0002\u0002b\r\u0002b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002`\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002c\u0002\u0002c\u0000\u0002\u0002d\u0002e\r\u0002d\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002f\u0002g\u0001\u0000\u0000\f\u0002f\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002g\u0000\u0001\u0002h\u0011\u0002h\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002e\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002k\u0002l\u0001\u0000\u0000\f\u0002k\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002l\u0000\u0001\u0002m\u0011\u0002m\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002j\u0000\u0002\u0002n\u0002o\r\u0002n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002p\u0002q\r\u0002p\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002r\u0002s\r\u0002r\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002s\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002t\r\u0002t\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002u\u0002v\r\u0002u\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002v\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002o\u0000\u0002\u0002w\u0002x\r\u0002w\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002y\u0002z\u0001\u0000\u0000\f\u0002y\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002z\u0000\u0001\u0002{\u0011\u0002{\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002x\u0000\u0002\u0002|\u0002}\r\u0002|\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002~\u0002\u0001\u0000\u0000\f\u0002~\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002}\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002^\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0002\n\u0000\u0004\nditm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002\u000f\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0003\u0000\r\u0002\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0003\u0001\u0003\u0002\r\u0003\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0003\u0003\u0000\u0002\u0003\u0004\r\u0003\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\u0005\u0002\u0003\u0005\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\b\u0003\t\u0001\u0000\u0000\f\u0003\b\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\t\u0000\u0001\u0003\n\u0011\u0003\n\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u0007\u0000\u0002\u0003\u000b\u0003\f\r\u0003\u000b\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\r\u0003\u000e\r\u0003\r\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\u000f\u0003\u0010\r\u0003\u000f\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\u0011\u0003\u0012\r\u0003\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u0012\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\u0010\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u0013\u0003\u0014\r\u0003\u0013\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u0015\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u0015\u0000\u0002\u0003\u0016\r\u0003\u0016\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u0014\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\u000e\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u0017\r\u0003\u0017\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\f\u0000\u0002\u0003\u0018\r\u0003\u0018\u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003\u0019\u0003\u001a\u0003\u001b\r\u0003\u0019\u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003\u001c\u0002\u0003\u001c\u0000\u0002\u0003\u001d\u0003\u001e\r\u0003\u001d\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003\u001f\u0003 \r\u0003\u001f\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003!\u0003\"\r\u0003!\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003#\u0003$\r\u0003#\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcls\r\u0003$\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\"\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nalis\r\u0003 \u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003%\r\u0003%\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u001e\u0000\u0002\u0003&\r\u0003&\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003'\u0003(\u0003)\u0003*\r\u0003'\u0000\u0002E\u0000\u0000\u0000*\u0000-\u0003+\u0003,\r\u0003+\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003,\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003-\u000e\u0003-\u0000\u0001\u0003.\u0011\u0003.\u0000\u0002\u0000:\r\u0003(\u0000\u0001k\u0000\u0000\u00000\u00008\u0003\/\u0002\u0003\/\u0000\u0002\u00030\u00031\r\u00030\u0000\u00024\u0000\u0000\u00000\u00005~\u00032\n~\u0000\u0004\nalis\r\u00032\u0000\u0001o\u0000\u0000\u00002\u00003}\u000b}\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00031\u0000\u0002\u00033|\r\u00033\u0000\u0001L\u0000\u0000\u00006\u00008\u00034\r\u00034\u0000\u0001m\u0000\u0000\u00006\u00007{\n{\u0000\b\u000bboovtrue\u0002|\u0000\u0000\u0002\u0003)\u0000\u0002\u00035\u00036\r\u00035\u0000\u0002E\u0000\u0000\u0000;\u0000>\u00037\u00038\r\u00037\u0000\u0001o\u0000\u0000\u0000;\u0000<z\u000bz\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00038\u0000\u0001m\u0000\u0000\u0000<\u0000=\u00039\u000e\u00039\u0000\u0001\u0003:\u0011\u0003:\u0000\u0002\u0000\/\u0002\u00036\u0000\u0002\u0003;y\r\u0003;\u0000\u0001k\u0000\u0000\u0000A\u0000J\u0003<\u0002\u0003<\u0000\u0002\u0003=\u0003>\r\u0003=\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003?\u0003@\r\u0003?\u0000\u00024\u0000\u0000\u0000A\u0000Ex\u0003A\nx\u0000\u0004\npsxf\r\u0003A\u0000\u0001o\u0000\u0000\u0000C\u0000Dw\u000bw\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003@\u0000\u0001m\u0000\u0000\u0000E\u0000Fv\nv\u0000\u0004\nalis\u0002\u0003>\u0000\u0002\u0003Bu\r\u0003B\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003C\r\u0003C\u0000\u0001m\u0000\u0000\u0000H\u0000It\nt\u0000\b\u000bboovtrue\u0002u\u0000\u0000\u0002y\u0000\u0000\r\u0003*\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003D\r\u0003D\u0000\u0001m\u0000\u0000\u0000M\u0000Ns\ns\u0000\b\u000bboovfals\u0002\u0000\u0000\r\u0003\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000r\u0003Eq\nr\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000p\u000bp\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002q\u0000\u0000\r\u0003\u001b\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003F\r\u0003F\u0000\u0001m\u0000\u0000\u0000W\u0000Xo\no\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0003\u0000\u0000\u0002\u0003G\u0003H\r\u0003G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000nml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0003H\u0000\u0002\u0003I\u0003J\r\u0003I\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003K\u0003L\r\u0003K\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000k\u0003Mj\u000bk\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003M\u0000\u0002\u0003Ni\r\u0003N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002i\u0000\u0000\u0002j\u0000\u0000\r\u0003L\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003O\u0002\u0003O\u0000\u0002\u0003P\u0003Q\r\u0003P\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000g\u0003R\u0003S\u0001g\u0000\u0000\f\u0003R\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003S\u0000\u0001\u0003T\u0011\u0003T\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003Q\u0000\u0002\u0003U\u0003V\r\u0003U\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000f\u0003W\u0003X\u0001f\u0000\u0000\f\u0003W\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003X\u0000\u0001\u0003Y\u0011\u0003Y\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003V\u0000\u0002\u0003Z\u0003[\r\u0003Z\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003\\\u0003]ed\r\u0003\\\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003^\u0003_\r\u0003^\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003`\u0002\u0003`\u0000\u0002\u0003a\u0003b\r\u0003a\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001c\nc\u0000\b\u000bboovtrue\u0002\u0003b\u0000\u0002\u0003cb\r\u0003c\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002a\na\u0000\b\u000bboovfals\u0002b\u0000\u0000\r\u0003_\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005`\u000b`\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003]\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003d\r\u0003d\u0000\u0001m\u0000\u0000\u0000\t\u0000\n_\n_\u0000\b\u000bboovfals\u0002e\u0000\u0000\u0001d\u0000\u0000\u0002\u0003[\u0000\u0002\u0003e\u0003f\r\u0003e\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010^\u0003g\u0003h\u0001^\u0000\u0000\f\u0003g\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003h\u0000\u0001\u0003i\u0011\u0003i\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003f\u0000\u0002\u0003j\u0003k\r\u0003j\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003l\u0003m]\\\r\u0003l\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003n\u0003o\r\u0003n\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011[\u000b[\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003o\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012Z\nZ\u0000\u0004\nmsng\r\u0003m\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003p\r\u0003p\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017Y\nY\u0000\b\u000bboovtrue\u0002]\u0000\u0000\u0001\\\u0000\u0000\u0002\u0003k\u0000\u0002\u0003q\u0003r\r\u0003q\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dX\u0003s\u0003t\u0001X\u0000\u0000\f\u0003s\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003t\u0000\u0001\u0003u\u0011\u0003u\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003r\u0000\u0002\u0003vW\r\u0003v\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003w\r\u0003w\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003x\u0003y\r\u0003x\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003z\u0003{\r\u0003z\u0000\u00011\u0000\u0000\u0000#\u0000%V\nV\u0000\u0004\nleng\r\u0003{\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003|UT\r\u0003|\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003}\u0003~\r\u0003}\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#S\u0003R\u000bS\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003Q\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fP\u000bP\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002Q\u0000\u0000\u0002R\u0000\u0000\r\u0003~\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001U\u0000\u0000\u0001T\u0000\u0000\r\u0003y\u0000\u0001m\u0000\u0000\u0000%\u0000&O\u0003O\u0000\u0000\u0002W\u0000\u0000\u0002\u0003J\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000NML\u0001N\u0000\u0000\u0001M\u0000\u0000\u0001L\u0000\u0000\u0002\u0003\u0000\u0002\u0003K\r\u0003\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000J\u0003I\u000bJ\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003H\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000G\u000bG\u0000\b0\u0000\u0004_str\u0000\u0000\u0002H\u0000\u0000\u0002I\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000F\u0003\u0003\u0001F\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003ED\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003C\nC\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001B\u000bB\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004A\nA\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000b@\n@\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t?\u000b?\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f>\n>\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013=\u000b=\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014<\n<\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b;\u000b;\u0000\b0\u0000\u0004_str\u0000\u0000\u0002E\u0000\u0000\u0001D\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u0003:9\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"8\u000b8\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(7\u000b7\u0000\b0\u0000\u0004_str\u0000\u0000\u0002:\u0000\u0000\u00019\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D6\u0003\u0003\n6\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@5\u00035\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C4\u00034\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:3\u000b3\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E2\n2\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00001\u000b1\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00000\u0003\/\n0\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\/\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003-\u000b-\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n,\u0003\u0003\n,\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j+\u0003+\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m*\u0003*\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d)\u000b)\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o(\n(\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000&%$\n&\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001%\u0000\u0000\u0002$\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]#\u000b#\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\"\r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000!\u000b!\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\"\u0000\u0000\u0002K\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0011 \u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001 \u0000\u0000\u0010\u0003\u0000\u000f\u001f\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u0011\u000b\u001f\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u001e\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u001d\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u001c\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u001b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u001a\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u0019\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u0018\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u0017\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\u0016\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\u0015\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0014\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0013\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\u0012\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\u0011\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u0010\u0000D\u000f\u000e\u0003\u0003\r\u000b\u0010\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u000f\u0000\u0000\u0002\u000e\u0000\u0000\u0010\u0003\u0000\u0001\f\u000b\f\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\u000b\n\u0000g\t\u0000t\b\u000b\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\n\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\t\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\b\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\r\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0007\u0000\u0006\u0005\u0003\u0003\u0004\u000b\u0007\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0006\u0000\u0000\u0002\u0005\u0000\u0000\u0010\u0003\u0000\u0006\u0003\u0002\u0001\u0000\u000b\u0003\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0002\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0001\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0000\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u001e\u0001#\u00017\u0001>\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0004\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001U\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001i\u0001x\u0001z\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0002\u0002\u0006\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0017\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u0002-\u0002L\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002`\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0003\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0002\u0003\u0004\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0001\u0003\u0000\u0001\u000e\u0004\u0001\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0000\u0000\n\u0003-\u00039\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003L\u0004\u0002\u0004\u0003\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0004\u0003\u0000\u0001\u000e\u0004\u0004\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0002\u0000\u0001\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0004\u0003\u0000\u0003\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\n\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0004\u0005\u0004\u0006\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0007\u0003\u0000\u0001\u000e\u0004\u0007\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0005\u0000\u0002~\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u000b~\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0006\u0000\u000f}|{zy\u0003\u0003xwv\u0003\u0003ut\u0003\n}\u0000\u0004\npcls\n|\u0000\u0004\nctxt\n{\u0000\u0004\nTEXT\nz\u0000\u0004\nbool\ny\u0000\u0004\nmsng\nx\u0000\u0004\ncobj\u000bw\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002v\u0000\u0000\u0003u\u0001t\u0000\u0000\u0011\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000&\u0000 # Current Alfred-Bundler version\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000@\u0000#\u0000 \u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000\f\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\r\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000\n\u0000d\u0000e\u0000v\u0000e\u0000l\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000%\u0000\u001f# Path to user's home directory\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000>\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000h\u0000o\u0000m\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u000e\u0000\u0016\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\r\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\n\u0000\f\n\u0000\u0004\npsxp\r\u0000\u0018\u0000\u0003l\u0000\u0005\u0000\u0003\u0000\n\u0000\u0019\r\u0000\u0019\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\n\u0000\u001a\u0000\u001b\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u001c\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000\b\u0000c\u0000u\u0000s\u0000r\u0006\u0000\u001b\u0000\u0003\u0000\u001e\n\u0000\u0004\nrtyp\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\u0004\nctxt\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\/\u0000)# Path to Alfred-Bundler's root directory\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000R\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002j\u0000\u0000\u0000\u000f\u0000\u0015\u0000&\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0014\u0000'\u0000(\r\u0000'\u0000\u0002b\u0000\u0000\u0000\u000f\u0000\u0012\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u000f\u0000\u0010\u0000+\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0000,\u000e\u0000,\u0000\u0001\u0000-\u0011\u0000-\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000%\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002j\u0000\u0000\u0000\u0016\u0000\u001c\u00000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\r\u00000\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001b\u00001\u00002\r\u00001\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u0019\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0016\u0000\u0017\u00005\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\t0\u0000\u0005_home\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00004\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u0002\u0000\/\u0000\u0002\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u0000=\u0001\u0000\u0000\f\u0000<\u0000\u0019\u0000\u0013 MAIN API FUNCTION \u0000\u0002\u0000\u0000\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000&\u0000 \u0000M\u0000A\u0000I\u0000N\u0000 \u0000A\u0000P\u0000I\u0000 \u0000F\u0000U\u0000N\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0002\u0000;\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002i\u0000\u0000\u0000\u001d\u0000 \u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000H\u0000I\u0001\u0000\u0000\f\u0000H\u0000\u0000 Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0001\u0000 \u0000L\u0000o\u0000a\u0000d\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000s\u0000 \u0000a\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000.\u0000 \u0000\n\u0000\t\u0000I\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000d\u0000o\u0000e\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000,\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000(\u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000_\u0000b\u0000o\u0000o\u0000t\u0000s\u0000t\u0000r\u0000a\u0000p\u0000(\u0000)\u0000`\u0000)\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000o\u0000f\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000G\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000,\u0000&# Check if Alfred-Bundler is installed\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000L\u0000#\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0018\u0000R\u0000S\r\u0000R\u0000\u0002>\u0000\u0001\u0000\u0000\u0000\f\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\n\u0000V\r\u0000V\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\n\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\n\u0000Y\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0006\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000U\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\n\u0000\b\u000bboovtrue\r\u0000S\u0000\u0001k\u0000\u0000\u0000\u000f\u0000\u0014\u0000[\u0002\u0000[\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000^\u0000_\u0001\u0000\u0000\f\u0000^\u0000\u0019\u0000\u0013# install it if not\u0000\u0002\u0000\u0000\u000e\u0000_\u0000\u0001\u0000`\u0011\u0000`\u0000&\u0000#\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0002\u0000]\u0000\u0002\u0000a\r\u0000a\u0000\u0002n\u0000\u0001\u0000\u000f\u0000\u0014\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0000\u0000\u0010\u0000\u0014\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0000f\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000g\b\u0000g\u0000\b?\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u0000\u001f\u0000\u001f\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u0000?\u00009# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000r\u0000#\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0000`\u0000 \u0000i\u0000n\u0000 \u0000A\u0000l\u0000f\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0000i\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002r\u0000\u0000\u0000\u001f\u0000(\u0000o\u0000p\r\u0000o\u0000\u0003l\u0000\u0005\u0000\u001f\u0000&\u0000q\r\u0000q\u0000\u0002b\u0000\u0000\u0000\u001f\u0000&\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000$\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u0000s\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000t\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000n\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003l\u0000\u0001\u0000)\u0000)\u0000x\u0000y\u0001\u0000\u0000\f\u0000x\u0000\u001c\u0000\u0016# Return script object\u0000\u0002\u0000\u0000\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000,\u0000#\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000o\u0000b\u0000j\u0000e\u0000c\u0000t\u0002\u0000w\u0000\u0002\u0000{\r\u0000{\u0000\u0001L\u0000\u0000\u0000)\u0000\/\u0000|\r\u0000|\u0000\u0003I\u0000\u0002\u0000)\u0000.\u0000}\n\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\r\u0000}\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000B\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 AUTO-DOWNLOAD BUNDLER \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000A\u0000U\u0000T\u0000O\u0000-\u0000D\u0000O\u0000W\u0000N\u0000L\u0000O\u0000A\u0000D\u0000 \u0000B\u0000U\u0000N\u0000D\u0000L\u0000E\u0000R\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000!\u0000$\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000`\u0000Z Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000t\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000i\u0000t\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000N\u0000o\u0000n\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c# Ask to install the Bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000#\u0000 \u0000A\u0000s\u0000k\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0003\u0000\b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0004\u0000\b\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0003\u0000\u0004\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0012\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001# Cannot continue to install the bundler, so stop\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000#\u0000 \u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000,\u0000 \u0000s\u0000o\u0000 \u0000s\u0000t\u0000o\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0010\u0000\u0012\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0013\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016# Download the bundler\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000#\u0000 \u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0013\u0000'\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000h\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000a\u0000r\u0000c\u0000h\u0000i\u0000v\u0000e\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0019\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000%\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u001c\u0000#\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000b\u0000i\u0000t\u0000b\u0000u\u0000c\u0000k\u0000e\u0000t\u0000.\u0000o\u0000r\u0000g\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000g\u0000e\u0000t\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\"\u000b\u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000.\u0000z\u0000i\u0000p\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000*\u0000*\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000@\u0000:# Save Alfred-Bundler zipfile to this location temporarily\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000t\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000z\u0000i\u0000p\u0000f\u0000i\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000l\u0000o\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000m\u0000p\u0000o\u0000r\u0000a\u0000r\u0000i\u0000l\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000*\u00005\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000*\u00003\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000*\u00001\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000*\u00001\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\/\u00001\n\u0000\u0004\nstrq\r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000\/\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000\/\u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u00006\u0000h\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000F\u0000c\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000U\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000F\u0000S\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000S\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000O\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000M\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000Z\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000f\u0000s\u0000S\u0000L\u0000 \u0000-\u0000-\u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000-\u0000d\u0000i\u0000r\u0000s\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000n\u0000e\u0000c\u0000t\u0000-\u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u00005\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000 \u0000-\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\f0\u0000\b_zipfile\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000 \u0000&\u0000&\u0000 \u0000e\u0000c\u0000h\u0000o\u0000 \u0000$\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000V\u0000c\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000V\u0000[\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000W\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0000S\u0000\u0000\u0000^\u0000_\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\b0\u0000\u0004_url\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000i\u0000i\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000#\u0000\u001d# Could not download the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000#\u0000 \u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000i\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000i\u0000n\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u000b0\u0000\u0007_status\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00000\r\u0000\u0000\u0003R\u0000\u0000\u0000q\u0000}\u0000\u0001\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0001\u0001\u000e\u0001\u0001\u0000\u0001\u0001\u0002\u0011\u0001\u0002\u0000N\u0000C\u0000o\u0000u\u0000l\u0000d\u0000 \u0000n\u0000o\u0000t\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0006\u0001\u0000\u0000\u0003\u0001\u0003\n\u0000\u0004\nerrn\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0003\u0000\u0017\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0006\u0001\u0007\u0001\u0000\u0000\f\u0001\u0006\u0000L\u0000F# Ensure directory tree already exists for bundler to be moved into it\u0000\u0002\u0000\u0000\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000t\u0000r\u0000e\u0000e\u0000 \u0000a\u0000l\u0000r\u0000e\u0000a\u0000d\u0000y\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000m\u0000o\u0000v\u0000e\u0000d\u0000 \u0000i\u0000n\u0000t\u0000o\u0000 \u0000i\u0000t\u0002\u0001\u0005\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002n\u0000\u0001\u0000\u0000\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003I\u0000\u0000\u0000\u0000\u0001\r\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u000e\r\u0001\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\f\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0001\u0011\u0001\u0012\u0001\u0000\u0000\f\u0001\u0011\u0000;\u00005# Unzip the bundler and move it to its data directory\u0000\u0002\u0000\u0000\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000j\u0000#\u0000 \u0000U\u0000n\u0000z\u0000i\u0000p\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000m\u0000o\u0000v\u0000e\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000s\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u0001\u0010\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001e\u000e\u0001\u001e\u0000\u0001\u0001\u001f\u0011\u0001\u001f\u0000\u0006\u0000c\u0000d\u0000 \r\u0001\u001d\u0000\u0003l\u0000\u0005\u0000\u0000\u0001 \r\u0001 \u0000\u0002n\u0000\u0000\u0000\u0000\u0001!\u0001\"\r\u0001!\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001\"\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u001b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000l\u0000;\u0000 \u0000c\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000r\u0000;\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000 \u0000-\u0000q\u0000o\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000z\u0000i\u0000p\u0000;\u0000 \u0000m\u0000v\u0000 \u0000.\u0000\/\u0000*\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \r\u0001\u0019\u0000\u0003l\u0000\u0005\u0000\u0000\u0001%\r\u0001%\u0000\u0002n\u0000\u0000\u0000\u0000\u0001&\u0001'\r\u0001&\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nstrq\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0000\u0000~\u0001*}\n~\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002}\u0000\u0000\u0002\u0001)\u0000\u0002\u0001+\u0001,\r\u0001+\u0000\u0003l\u0000\u0001\u0000\u0000{\u0001-\u0001.\u0001{\u0000\u0000\f\u0001-\u0000Q\u0000K# Wait until bundler is fully unzipped and written to disk before finishing\u0000\u0002\u0000\u0000\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0000#\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000u\u0000n\u0000t\u0000i\u0000l\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000f\u0000u\u0000l\u0000l\u0000y\u0000 \u0000u\u0000n\u0000z\u0000i\u0000p\u0000p\u0000e\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000r\u0000i\u0000t\u0000t\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000s\u0000k\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000i\u0000n\u0000g\u0002\u0001,\u0000\u0002\u00010\u00011\r\u00010\u0000\u0002r\u0000\u0000\u0000\u0000\u00012\u00013\r\u00012\u0000\u0003l\u0000\u0005\u0000\u0000\u00014zy\r\u00014\u0000\u0002b\u0000\u0000\u0000\u0000\u00015\u00016\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000x\u000bx\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\r\u00016\u0000\u0001m\u0000\u0000\u0000\u0000\u00017\u000e\u00017\u0000\u0001\u00018\u0011\u00018\u00006\u0000\/\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000s\u0000c\u0000p\u0000t\u0001z\u0000\u0000\u0001y\u0000\u0000\r\u00013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002\u00011\u0000\u0002\u00019\u0001:\r\u00019\u0000\u0002V\u0000\u0000\u0000\u0000\u0001;\u0001<\r\u0001;\u0000\u0003I\u0000\u0002\u0000\u0000v\u0001=u\nv\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001=\u0000\u0001m\u0000\u0000\u0000\u0000\u0001>\b\u0001>\u0000\b?\u0259\u0002u\u0000\u0000\r\u0001<\u0000\u0001H\u0000\u0000\u0000\u0000\u0001?\r\u0001?\u0000\u0003l\u0000\u0005\u0000\u0000\u0001@ts\r\u0001@\u0000\u0002n\u0000\u0001\u0000\u0000\u0001A\u0001B\r\u0001A\u0000\u0003I\u0000\u0000\u0000\u0000r\u0001Cq\u000br\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0001C\u0000\u0002\u0001Dp\r\u0001D\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0002p\u0000\u0000\u0002q\u0000\u0000\r\u0001B\u0000\u0000f\u0000\u0000\u0000\u0000\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002\u0001:\u0000\u0002\u0001En\r\u0001E\u0000\u0001L\u0000\u0000\u0000\u0000m\u0001m\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000lkj\u0001l\u0000\u0000\u0001k\u0000\u0000\u0001j\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000i\u0001J\u0001K\u0001i\u0000\u0000\f\u0001J\u0000;\u00005# Function to get confirmation to install the bundler\u0000\u0002\u0000\u0000\u000e\u0001K\u0000\u0001\u0001L\u0011\u0001L\u0000j\u0000#\u0000 \u0000F\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002\u0001I\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0002i\u0000\u0000\u0000%\u0000(\u0001O\u0001P\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000hgf\u000bh\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002g\u0000\u0000\u0002f\u0000\u0000\r\u0001P\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001Q\u0002\u0001Q\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000e\u0001T\u0001U\u0001e\u0000\u0000\f\u0001T\u0000\u0000 Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t\u0000\u0002\u0000\u0000\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0001V\u0000 \u0000A\u0000s\u0000k\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000.\u0000 \u0000\n\u0000\t\u0000A\u0000l\u0000l\u0000o\u0000w\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000g\u0000o\u0000 \u0000t\u0000o\u0000 \u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000e\u0000v\u0000e\u0000n\u0000 \u0000t\u0000o\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000T\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000o\u0000r\u0000 \u0000r\u0000a\u0000i\u0000s\u0000e\u0000s\u0000 \u0000E\u0000r\u0000r\u0000o\u0000r\u0000\n\u0000\n\u0000\t\u0002\u0001S\u0000\u0002\u0001W\u0001X\r\u0001W\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000d\u0001Y\u0001Z\u0001d\u0000\u0000\f\u0001Y\u00000\u0000*# Get path to workflow's `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000T\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001X\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0001^\u0001_\r\u0001^\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0007\u0001`\u0001a\r\u0001`\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0001b\u0001c\r\u0001b\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005cba\u000bc\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002b\u0000\u0000\u0002a\u0000\u0000\r\u0001c\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0001a\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0001d\u000e\u0001d\u0000\u0001\u0001e\u0011\u0001e\u0000\u0014\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\r\u0001_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000`\u000b`\u0000\n0\u0000\u0006_plist\u0000\u0000\u0002\u0001]\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0003l\u0000\u0001\u0000\n\u0000\n_\u0001h\u0001i\u0001_\u0000\u0000\f\u0001h\u00005\u0000\/# Get name of workflow's from `info.plist` file\u0000\u0002\u0000\u0000\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000^\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000`\u0000i\u0000n\u0000f\u0000o\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0000`\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0001g\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0011\u0001m\u0001n\r\u0001m\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0001o\u0001p\r\u0001o\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0001q\u0001r\r\u0001q\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0001s\u000e\u0001s\u0000\u0001\u0001t\u0011\u0001t\u0000T\u0000\/\u0000u\u0000s\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000e\u0000x\u0000e\u0000c\u0000\/\u0000P\u0000l\u0000i\u0000s\u0000t\u0000B\u0000u\u0000d\u0000d\u0000y\u0000 \u0000-\u0000c\u0000 \u0000'\u0000P\u0000r\u0000i\u0000n\u0000t\u0000 \u0000:\u0000n\u0000a\u0000m\u0000e\u0000'\u0000 \u0000'\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f^\u000b^\u0000\n0\u0000\u0006_plist\u0000\u0000\r\u0001p\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\u0002\u0000'\r\u0001n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000]\u000b]\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0001l\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0001y\u0001z\r\u0001y\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\\\u0001{[\n\\\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001{\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013Z\u000bZ\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002[\u0000\u0000\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000Y\u000bY\u0000\t0\u0000\u0005_name\u0000\u0000\u0002\u0001x\u0000\u0002\u0001|\u0001}\r\u0001|\u0000\u0003l\u0000\u0001\u0000\u001a\u0000\u001aX\u0001~\u0001\u0001X\u0000\u0000\f\u0001~\u00006\u00000# Get workflow's icon, or default to system icon\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000i\u0000c\u0000o\u0000n\u0000,\u0000 \u0000o\u0000r\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000i\u0000c\u0000o\u0000n\u0002\u0001}\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u001a\u0000!\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000\u001a\u0000\u001f\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u001b\u0000\u001fWVU\u000bW\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002V\u0000\u0000\u0002U\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000\u001a\u0000\u001b\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000i\u0000c\u0000o\u0000n\u0000.\u0000p\u0000n\u0000g\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u0000,\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000$\u0000*\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000%\u0000*S\u0001R\u000bS\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001Q\r\u0001\u0000\u0001o\u0000\u0000\u0000%\u0000&P\u000bP\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002Q\u0000\u0000\u0002R\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000$\u0000%\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000O\u000bO\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000-\u0000-N\u0001\u0001\u0001N\u0000\u0000\f\u0001\u0000\/\u0000)# Prepare explanation text for dialog box\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000R\u0000#\u0000 \u0000P\u0000r\u0000e\u0000p\u0000a\u0000r\u0000e\u0000 \u0000e\u0000x\u0000p\u0000l\u0000a\u0000n\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000b\u0000o\u0000x\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000-\u0000.M\u000bM\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0002\u000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000 \u0000a\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000,\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000p\u0000l\u0000a\u0000c\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000 \u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000f\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000a\u0000s\u0000k\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000s\u0000o\u0000m\u0000e\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000,\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000.\u0000\n\u0000\n\u0000Y\u0000o\u0000u\u0000 \u0000c\u0000a\u0000n\u0000 \u0000d\u0000e\u0000c\u0000l\u0000i\u0000n\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u00000\u00001L\u000bL\u0000\t0\u0000\u0005_name\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00002\u00003\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000m\u0000a\u0000y\u0000 \u0000n\u0000o\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000t\u0000h\u0000e\u0000m\u0000.\u0000 \u0000T\u0000h\u0000e\u0000r\u0000e\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000a\u0000 \u0000s\u0000l\u0000i\u0000g\u0000h\u0000t\u0000 \u0000d\u0000e\u0000l\u0000a\u0000y\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000i\u0000n\u0000g\u0000.\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000K\u000bK\u0000\t0\u0000\u0005_text\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00007\u00007JIH\u0001J\u0000\u0000\u0001I\u0000\u0000\u0001H\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u00007\u0000Y\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u00007\u0000W\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000S\u0000WG\nG\u0000\u0004\nbhit\r\u0001\u0000\u0003l\u0000\u0005\u00007\u0000S\u0001FE\r\u0001\u0000\u0003I\u0000\u0002\u00007\u0000SD\u0001\u0001\nD\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0001o\u0000\u0000\u00007\u00008C\u000bC\u0000\t0\u0000\u0005_text\u0000\u0000\u0006\u0001\u0000\u0003B\u0001\u0001\nB\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u00009\u0000>\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00009\u0000:\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0001\u0000\u0002\u0001A\r\u0001\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\u0002A\u0000\u0000\u0006\u0001\u0000\u0003@\u0001\u0001\n@\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0000?\u0000@?\u0003?\u0000\u0003\u0006\u0001\u0000\u0003>\u0001\u0001\n>\u0000\u0004\nappr\r\u0001\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000S\u0000e\u0000t\u0000u\u0000p\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0000B\u0000C=\u000b=\u0000\t0\u0000\u0005_name\u0000\u0000\u0006\u0001\u0000\u0003<\u0001;\n<\u0000\u0004\ndisp\r\u0001\u0000\u00024\u0000\u0000\u0000G\u0000M:\u0001\n:\u0000\u0004\npsxf\r\u0001\u0000\u0001o\u0000\u0000\u0000K\u0000L9\u000b9\u0000\t0\u0000\u0005_icon\u0000\u0000\u0006;\u0000\u0000\u0001F\u0000\u0000\u0001E\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00008\u000b8\u0000\r0\u0000\t_response\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000Z\u0000Z7\u0001\u0001\u00017\u0000\u0000\f\u0001\u00000\u0000*# If permission granted, continue download\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000T\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000c\u0000o\u0000n\u0000t\u0000i\u0000n\u0000u\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0001\u0000Z\u0000h\u0001\u000165\r\u0001\u0000\u0002=\u0000\u0001\u0000Z\u0000_\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000Z\u0000[4\u000b4\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000^\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000P\u0000r\u0000o\u0000c\u0000e\u0000e\u0000d\r\u0001\u0000\u0001L\u0000\u0000\u0000b\u0000d\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000b\u0000c3\n3\u0000\b\u000bboovtrue\u00026\u0000\u0000\u00015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000i\u0000i2\u0001\u0001\u00012\u0000\u0000\f\u0001\u00006\u00000# If more info requested, open webpage and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000`\u0000#\u0000 \u0000I\u0000f\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000e\u0000d\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000w\u0000e\u0000b\u0000p\u0000a\u0000g\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000i\u0000\u0001\u000110\r\u0001\u0000\u0002=\u0000\u0001\u0000i\u0000n\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000i\u0000j\/\u000b\/\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0012\u0000M\u0000o\u0000r\u0000e\u0000 \u0000I\u0000n\u0000f\u0000o\r\u0001\u0000\u0001k\u0000\u0000\u0000q\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000q\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000w\u0000~.\u0001-\n.\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0001\u0000\u0001m\u0000\u0000\u0000w\u0000z\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000s\u0000h\u0000a\u0000w\u0000n\u0000r\u0000i\u0000c\u0000e\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000\/\u0000w\u0000i\u0000k\u0000i\u0000\/\u0000W\u0000h\u0000a\u0000t\u0000-\u0000i\u0000s\u0000-\u0000t\u0000h\u0000e\u0000-\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u0000B\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0002-\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001,\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000+\u0001\u0001\n+\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000U\u0000s\u0000e\u0000r\u0000 \u0000l\u0000o\u0000o\u0000k\u0000e\u0000d\u0000 \u0000s\u0000o\u0000u\u0000g\u0000h\u0000t\u0000 \u0000m\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0001\u0000\u0003*\u0001)\n*\u0000\u0004\nerrn\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u0000\u0017\u0006)\u0000\u0000\u0002,\u0000\u0000\u00021\u0000\u0000\u00010\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000'\u0001\u0001\u0001'\u0000\u0000\f\u0001\u0000,\u0000&# If permission denied, stop and error\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000#\u0000 \u0000I\u0000f\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000d\u0000e\u0000n\u0000i\u0000e\u0000d\u0000,\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0002\u0001\u0000\u0002\u0001&\r\u0001\u0000\u0004Z\u0000\u0001\u0000\u0000\u0001\u0001%$\r\u0001\u0000\u0002=\u0000\u0001\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000#\u000b#\u0000\r0\u0000\t_response\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\"\u0001\u0002\u0000\n\"\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0002\u0001\u000e\u0002\u0001\u0000\u0001\u0002\u0002\u0011\u0002\u0002\u00004\u0000U\u0000s\u0000e\u0000r\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000a\u0000t\u0000i\u0000o\u0000n\u0006\u0002\u0000\u0000\u0003!\u0002\u0003 \n!\u0000\u0004\nerrn\r\u0002\u0003\u0000\u0001m\u0000\u0000\u0000\u0000\u001f\u0003\u001f\u0000\u0017\u0006 \u0000\u0000\u0002%\u0000\u0000\u0001$\u0000\u0000\u0002&\u0000\u0000\u0002\u0001N\u0000\u0002\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0002\u0005\u0000\u0002\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u001b\u001a\u0019\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0001\u0019\u0000\u0000\u0002\u0002\u0007\u0000\u0002\u0002\b\u0002\t\r\u0002\b\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0002\n\u0002\u000b\u0001\u0018\u0000\u0000\f\u0002\n\u0000\u0017\u0000\u0011 HELPER HANDLERS \u0000\u0002\u0000\u0000\u000e\u0002\u000b\u0000\u0001\u0002\f\u0011\u0002\f\u0000\"\u0000 \u0000H\u0000E\u0000L\u0000P\u0000E\u0000R\u0000 \u0000H\u0000A\u0000N\u0000D\u0000L\u0000E\u0000R\u0000S\u0000 \u0002\u0002\t\u0000\u0002\u0002\r\u0002\u000e\r\u0002\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0017\u0016\u0015\u0001\u0017\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0002\u0002\u000e\u0000\u0002\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0002i\u0000\u0000\u0000)\u0000,\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u0013\u0012\u000b\u0014\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0013\u0000\u0000\u0002\u0012\u0000\u0000\r\u0002\u0012\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0002\u0013\u0002\u0002\u0013\u0000\u0002\u0002\u0014\u0002\u0015\r\u0002\u0014\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0011\u0002\u0016\u0002\u0017\u0001\u0011\u0000\u0000\f\u0002\u0016\u0000\u0000 Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0017\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0001J\u0000 \u0000G\u0000e\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000p\u0000r\u0000e\u0000s\u0000e\u0000n\u0000t\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\"\u0000,\u0000 \u0000i\u0000.\u0000e\u0000.\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000'\u0000s\u0000 \u0000r\u0000o\u0000o\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000p\u0000a\u0000r\u0000e\u0000n\u0000t\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0015\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0010\u0002\u001b\u0002\u001c\u0001\u0010\u0000\u0000\f\u0002\u001b\u0000=\u00007# Save default AS delimiters, and set delimiters to \"\/\"\u0000\u0002\u0000\u0000\u000e\u0002\u001c\u0000\u0001\u0002\u001d\u0011\u0002\u001d\u0000n\u0000#\u0000 \u0000S\u0000a\u0000v\u0000e\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\/\u0000\"\u0002\u0002\u001a\u0000\u0002\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0017\u0002 \u0002!\r\u0002 \u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0006\u0002\"\u0002\u0002\"\u0000\u0002\u0002#\u0002$\r\u0002#\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0003\u0002%\u0002&\r\u0002%\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\u000f\n\u000f\u0000\u0004\ntxdl\r\u0002&\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0001\u000e\n\u000e\u0000\u0004\nascr\u0002\u0002$\u0000\u0002\u0002'\r\r\u0002'\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0002(\u000e\u0002(\u0000\u0001\u0002)\u0011\u0002)\u0000\u0002\u0000\/\u0002\r\u0000\u0000\r\u0002!\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0002*\u0002\u0002*\u0000\u0002\u0002+\u0002,\r\u0002+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u0002\u0002,\u0000\u0002\u0002-\u000b\r\u0002-\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002.\u0002\/\r\u0002.\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\n\n\u0000\u0004\ntxdl\r\u0002\/\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\t\n\t\u0000\u0004\nascr\u0002\u000b\u0000\u0000\u0002\u0002\u001f\u0000\u0002\u00020\u00021\r\u00020\u0000\u0003l\u0000\u0001\u0000\u0018\u0000\u0018\b\u00022\u00023\u0001\b\u0000\u0000\f\u00022\u0000,\u0000&# Get POSIX path of script's directory\u0000\u0002\u0000\u0000\u000e\u00023\u0000\u0001\u00024\u0011\u00024\u0000L\u0000#\u0000 \u0000G\u0000e\u0000t\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000'\u0000s\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0002\u00021\u0000\u0002\u00025\u00026\r\u00025\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\/\u00027\u00028\r\u00027\u0000\u0002b\u0000\u0000\u0000\u0018\u0000-\u00029\u0002:\r\u00029\u0000\u0003l\u0000\u0005\u0000\u0018\u0000+\u0002;\u0007\u0006\r\u0002;\u0000\u0002c\u0000\u0000\u0000\u0018\u0000+\u0002<\u0002=\r\u0002<\u0000\u0002n\u0000\u0000\u0000\u0018\u0000)\u0002>\u0002?\r\u0002>\u0000\u00037\u0001\u0000\u0000\u001f\u0000)\u0005\u0002@\u0002A\n\u0005\u0000\u0004\ncitm\r\u0002@\u0000\u0001m\u0000\u0000\u0000#\u0000%\u0004\u0003\u0004\u0000\u0001\r\u0002A\u0000\u0001m\u0000\u0000\u0000&\u0000(\u0003\u0003\u0003\r\u0002?\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001f\u0002B\u0002\u0001\r\u0002B\u0000\u0002n\u0000\u0000\u0000\u0018\u0000\u001f\u0002C\u0002D\r\u0002C\u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\u0000\n\u0000\u0000\u0004\npsxp\r\u0002D\u0000\u0003l\u0000\u0005\u0000\u0018\u0000\u001d\u0002E\r\u0002E\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0002F\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0002F\u0000\u0000f\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\r\u0002=\u0000\u0001m\u0000\u0000\u0000)\u0000*\n\u0000\u0004\nTEXT\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\r\u0002:\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0002G\u000e\u0002G\u0000\u0001\u0002H\u0011\u0002H\u0000\u0002\u0000\/\r\u00028\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u00026\u0000\u0002\u0002I\u0002J\r\u0002I\u0000\u0003l\u0000\u0001\u00000\u00000\u0002K\u0002L\u0001\u0000\u0000\f\u0002K\u0000.\u0000(# Reset AS delimiters to original values\u0000\u0002\u0000\u0000\u000e\u0002L\u0000\u0001\u0002M\u0011\u0002M\u0000P\u0000#\u0000 \u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000A\u0000S\u0000 \u0000d\u0000e\u0000l\u0000i\u0000m\u0000i\u0000t\u0000e\u0000r\u0000s\u0000 \u0000t\u0000o\u0000 \u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000l\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000s\u0002\u0002J\u0000\u0002\u0002N\u0002O\r\u0002N\u0000\u0002r\u0000\u0000\u00000\u00005\u0002P\u0002Q\r\u0002P\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\r\u0002Q\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0002R\u0002S\r\u0002R\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\ntxdl\r\u0002S\u0000\u00011\u0000\u0000\u00001\u00002\n\u0000\u0004\nascr\u0002\u0002O\u0000\u0002\u0002T\r\u0002T\u0000\u0001L\u0000\u0000\u00006\u00008\u0002U\r\u0002U\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0010\u0000\u0002\u0002V\u0002W\r\u0002V\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002W\u0000\u0002\u0002X\u0002Y\r\u0002X\u0000\u0002i\u0000\u0000\u0000-\u00000\u0002Z\u0002[\r\u0002Z\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\\\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u0002\u0002\\\u0000\u0002\u0002]\r\u0002]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002[\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0018\u0002^\u0002\u0002^\u0000\u0002\u0002_\u0002`\r\u0002_\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002a\u0002b\u0001\u0000\u0000\f\u0002a\u0001,\u0001& Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0002b\u0000\u0001\u0002c\u0011\u0002c\u0002L\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000`\u0000_\u0000c\u0000m\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000w\u0000o\u0000r\u0000k\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000.\u0000\n\u0000\t\u0000F\u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000 \u0000p\u0000u\u0000r\u0000p\u0000o\u0000s\u0000e\u0000s\u0000,\u0000 \u0000i\u0000t\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000`\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000`\u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000`\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000c\u0000m\u0000d\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000S\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000s\u0000e\u0000t\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0002`\u0000\u0002\u0002d\u0002e\r\u0002d\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002f\u0002g\u0001\u0000\u0000\f\u0002f\u00009\u00003# Ensure `pwd` is properly quoted for shell command\u0000\u0002\u0000\u0000\u000e\u0002g\u0000\u0001\u0002h\u0011\u0002h\u0000f\u0000#\u0000 \u0000E\u0000n\u0000s\u0000u\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000q\u0000u\u0000o\u0000t\u0000e\u0000d\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0002\u0002e\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0002k\u0002l\r\u0002k\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0002m\u0002n\r\u0002m\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0002n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0002o\r\u0002o\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0005\u0002p\u0002q\r\u0002p\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0005\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002q\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u0002\u0002j\u0000\u0002\u0002r\u0002s\r\u0002r\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002t\u0002u\u0001\u0000\u0000\f\u0002t\u0000&\u0000 # Declare environmental variable\u0000\u0002\u0000\u0000\u000e\u0002u\u0000\u0001\u0002v\u0011\u0002v\u0000@\u0000#\u0000 \u0000D\u0000e\u0000c\u0000l\u0000a\u0000r\u0000e\u0000 \u0000e\u0000n\u0000v\u0000i\u0000r\u0000o\u0000n\u0000m\u0000e\u0000n\u0000t\u0000a\u0000l\u0000 \u0000v\u0000a\u0000r\u0000i\u0000a\u0000b\u0000l\u0000e\u0002\u0002s\u0000\u0002\u0002w\u0002x\r\u0002w\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0002y\u0002z\u0001\u0000\u0000\f\u0002y\u0000%\u0000\u001f#TODO: remove for final release\u0000\u0002\u0000\u0000\u000e\u0002z\u0000\u0001\u0002{\u0011\u0002{\u0000>\u0000#\u0000T\u0000O\u0000D\u0000O\u0000:\u0000 \u0000r\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0002\u0002x\u0000\u0002\u0002|\u0002}\r\u0002|\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0002~\u0002\r\u0002~\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000B\u0000_\u0000B\u0000R\u0000A\u0000N\u0000C\u0000H\u0000=\u0000d\u0000e\u0000v\u0000e\u0000l\u0000;\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0002\u0002}\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0002\u0002\u0001\u0000\u0000\f\u0002\u00007\u00001# return shell script where `pwd` is properly set\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000b\u0000#\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000 \u0000`\u0000p\u0000w\u0000d\u0000`\u0000 \u0000i\u0000s\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000l\u0000y\u0000 \u0000s\u0000e\u0000t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u000e\u0000\u0018\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0017\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000c\u0000d\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u000e\u0000;\u0000 \u0000b\u0000a\u0000s\u0000h\u0000 \r\u0002\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0002\u0002Y\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00001\u00004\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001\u0014\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000r\u0000e\u0000v\u0000e\u0000r\u0000t\u0000 \u0000t\u0000o\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000d\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000 \u0000i\u0000c\u0000o\u0000n\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000i\u0000c\u0000o\u0000n\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0016\u0002\u0002\u0002\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\f\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002c\u0000\u0000\u0000\u0003\u0000\t\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\u0003\u0000\u0007\u0002\n\u0000\u0004\npsxf\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0005\u0000\u0006\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\n\u0000\u0004\nalis\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000C\u0000o\u0000r\u0000e\u0000T\u0000y\u0000p\u0000e\u0000s\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000\/\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000R\u0000e\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000\/\u0000S\u0000i\u0000d\u0000e\u0000b\u0000a\u0000r\u0000D\u0000o\u0000w\u0000n\u0000l\u0000o\u0000a\u0000d\u0000s\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000.\u0000i\u0000c\u0000n\u0000s\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00005\u00008\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001a\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u00010\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000t\u0000 \u0000c\u0000r\u0000e\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000s\u0000u\u0000b\u0000-\u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000i\u0000e\u0000s\u0000.\u0000\n\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000t\u0000y\u0000p\u0000e\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001H\u0000\u0000\u0000\u0000\u0000\u0007\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0013\u0002\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0002\u0000\u0002b\u0000\u0000\u0000\n\u0000\u000f\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0012\u0000m\u0000k\u0000d\u0000i\u0000r\u0000 \u0000-\u0000p\u0000 \r\u0002\u0000\u0003l\u0000\u0005\u0000\u000b\u0000\u000e\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u000e\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\f\u0000\u000e\n\u0000\u0004\nstrq\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u0018\u0000\u001a\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0018\u0000\u0019\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u00009\u0000<\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u001e\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0001\u0000\u0000\f\u0002\u0000\u0000 Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0001>\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000F\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000o\u0000r\u0000y\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u001b\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0006\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0001\u0000\u0006\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\r\u0002\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0017\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\r\u0000\u0016\u0002\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0015\u0002\r\u0002\u0000\u0002=\u0000\u0003\u0000\r\u0000\u0015\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0013\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0013\n\u0000\u0004\npcls\r\u0002\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0011\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\r\u0000\u0011\u0002\n\u0000\u0004\nditm\r\u0002\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\ncfol\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0002\u000f\u0002\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0002\u048dK\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002U'A\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000*\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A9\u0000\u0000\u0000\u0001\u0000\f\u0002\u048dK\u0002\u048dH\u0002\u048dG\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001L\u0000\u0000\u0000\u001c\u0000\u001e\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u0000=\u0000@\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u0002\u0002\u0000\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Y\u0003\u0000\u0002\u0003\u0000\u0000\u0002\u0003\u0001\u0003\u0002\r\u0003\u0001\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\u0004\u0001\u0000\u0000\f\u0003\u0003\u0000\u0000 Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0004\u0000\u0001\u0003\u0005\u0011\u0003\u0005\u0001D\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000p\u0000a\u0000t\u0000h\u0000`\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000)\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000p\u0000a\u0000t\u0000h\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000 \u0000(\u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0002\u0003\u0002\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0017\u0003\b\u0003\t\r\u0003\b\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000e\u0003\n\u0003\u000b\r\u0003\n\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0003\u0003\f\u0003\r\r\u0003\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\r\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nmsng\r\u0003\u000b\u0000\u0002n\u0000\u0001\u0000\u0006\u0000\f\u0003\u000e\u0003\u000f\r\u0003\u000e\u0000\u0003I\u0000\u0000\u0000\u0007\u0000\f\u0003\u0010\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003\u0010\u0000\u0002\u0003\u0011\r\u0003\u0011\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0003\u000f\u0000\u0000f\u0000\u0000\u0000\u0006\u0000\u0007\r\u0003\t\u0000\u0001L\u0000\u0000\u0000\u0011\u0000\u0013\u0003\u0012\r\u0003\u0012\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\n\u0000\b\u000bboovfals\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0007\u0000\u0002\u0003\u0013\r\u0003\u0013\u0000\u0003Q\u0000\u0000\u0000\u0018\u0000Y\u0003\u0014\u0003\u0015\u0003\u0016\r\u0003\u0014\u0000\u0001k\u0000\u0000\u0000\u001b\u0000O\u0003\u0017\u0002\u0003\u0017\u0000\u0002\u0003\u0018\u0003\u0019\r\u0003\u0018\u0000\u0004Z\u0000\u0001\u0000\u001b\u0000)\u0003\u001a\u0003\u001b\r\u0003\u001a\u0000\u0002=\u0000\u0003\u0000\u001b\u0000 \u0003\u001c\u0003\u001d\r\u0003\u001c\u0000\u0002n\u0000\u0000\u0000\u001b\u0000\u001e\u0003\u001e\u0003\u001f\r\u0003\u001e\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001e\n\u0000\u0004\npcls\r\u0003\u001f\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003\u001d\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nalis\r\u0003\u001b\u0000\u0001L\u0000\u0000\u0000#\u0000%\u0003 \r\u0003 \u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0003\u0019\u0000\u0002\u0003!\r\u0003!\u0000\u0004Z\u0000\u0000\u0000*\u0000O\u0003\"\u0003#\u0003$\u0003%\r\u0003\"\u0000\u0002E\u0000\u0000\u0000*\u0000-\u0003&\u0003'\r\u0003&\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003'\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003(\u000e\u0003(\u0000\u0001\u0003)\u0011\u0003)\u0000\u0002\u0000:\r\u0003#\u0000\u0001k\u0000\u0000\u00000\u00008\u0003*\u0002\u0003*\u0000\u0002\u0003+\u0003,\r\u0003+\u0000\u00024\u0000\u0000\u00000\u00005\u0003-\n\u0000\u0004\nalis\r\u0003-\u0000\u0001o\u0000\u0000\u00002\u00003~\u000b~\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0003,\u0000\u0002\u0003.}\r\u0003.\u0000\u0001L\u0000\u0000\u00006\u00008\u0003\/\r\u0003\/\u0000\u0001m\u0000\u0000\u00006\u00007|\n|\u0000\b\u000bboovtrue\u0002}\u0000\u0000\u0002\u0003$\u0000\u0002\u00030\u00031\r\u00030\u0000\u0002E\u0000\u0000\u0000;\u0000>\u00032\u00033\r\u00032\u0000\u0001o\u0000\u0000\u0000;\u0000<{\u000b{\u0000\t0\u0000\u0005_path\u0000\u0000\r\u00033\u0000\u0001m\u0000\u0000\u0000<\u0000=\u00034\u000e\u00034\u0000\u0001\u00035\u0011\u00035\u0000\u0002\u0000\/\u0002\u00031\u0000\u0002\u00036z\r\u00036\u0000\u0001k\u0000\u0000\u0000A\u0000J\u00037\u0002\u00037\u0000\u0002\u00038\u00039\r\u00038\u0000\u0002c\u0000\u0000\u0000A\u0000G\u0003:\u0003;\r\u0003:\u0000\u00024\u0000\u0000\u0000A\u0000Ey\u0003<\ny\u0000\u0004\npsxf\r\u0003<\u0000\u0001o\u0000\u0000\u0000C\u0000Dx\u000bx\u0000\t0\u0000\u0005_path\u0000\u0000\r\u0003;\u0000\u0001m\u0000\u0000\u0000E\u0000Fw\nw\u0000\u0004\nalis\u0002\u00039\u0000\u0002\u0003=v\r\u0003=\u0000\u0001L\u0000\u0000\u0000H\u0000J\u0003>\r\u0003>\u0000\u0001m\u0000\u0000\u0000H\u0000Iu\nu\u0000\b\u000bboovtrue\u0002v\u0000\u0000\u0002z\u0000\u0000\r\u0003%\u0000\u0001L\u0000\u0000\u0000M\u0000O\u0003?\r\u0003?\u0000\u0001m\u0000\u0000\u0000M\u0000Nt\nt\u0000\b\u000bboovfals\u0002\u0000\u0000\r\u0003\u0015\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000s\u0003@r\ns\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000q\u000bq\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002r\u0000\u0000\r\u0003\u0016\u0000\u0001L\u0000\u0000\u0000W\u0000Y\u0003A\r\u0003A\u0000\u0001m\u0000\u0000\u0000W\u0000Xp\np\u0000\b\u000bboovfals\u0002\u0000\u0000\u0002\u0002\u0000\u0002\u0003B\u0003C\r\u0003B\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000onm\u0001o\u0000\u0000\u0001n\u0000\u0000\u0001m\u0000\u0000\u0002\u0003C\u0000\u0002\u0003D\u0003E\r\u0003D\u0000\u0002i\u0000\u0000\u0000A\u0000D\u0003F\u0003G\r\u0003F\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000l\u0003Hk\u000bl\u0000\r0\u0000\t_is_empty\u0000\u0000\u0002\u0003H\u0000\u0002\u0003Ij\r\u0003I\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000i\u000bi\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002j\u0000\u0000\u0002k\u0000\u0000\r\u0003G\u0000\u0001k\u0000\u0000\u0000\u0000\u0000(\u0003J\u0002\u0003J\u0000\u0002\u0003K\u0003L\r\u0003K\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000h\u0003M\u0003N\u0001h\u0000\u0000\f\u0003M\u0000\u0000 Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t\u0000\u0002\u0000\u0000\u000e\u0003N\u0000\u0001\u0003O\u0011\u0003O\u0001\u0018\u0000 \u0000R\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000`\u0000`\u0000t\u0000r\u0000u\u0000e\u0000`\u0000`\u0000 \u0000i\u0000f\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000,\u0000 \u0000e\u0000l\u0000s\u0000e\u0000 \u0000`\u0000`\u0000f\u0000a\u0000l\u0000s\u0000e\u0000`\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000A\u0000n\u0000y\u0000 \u0000A\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000o\u0000b\u0000j\u0000:\u0000 \u0000(\u0000o\u0000p\u0000t\u0000i\u0000o\u0000n\u0000a\u0000l\u0000)\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0002\u0003L\u0000\u0002\u0003P\u0003Q\r\u0003P\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000g\u0003R\u0003S\u0001g\u0000\u0000\f\u0003R\u0000!\u0000\u001b# Is `_obj ` a ``Boolean``?\u0000\u0002\u0000\u0000\u000e\u0003S\u0000\u0001\u0003T\u0011\u0003T\u00006\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000B\u0000o\u0000o\u0000l\u0000e\u0000a\u0000n\u0000`\u0000`\u0000?\u0002\u0003Q\u0000\u0002\u0003U\u0003V\r\u0003U\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u000f\u0003W\u0003Xfe\r\u0003W\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0006\u0003Y\u0003Z\r\u0003Y\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0003[\u0002\u0003[\u0000\u0002\u0003\\\u0003]\r\u0003\\\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001d\nd\u0000\b\u000bboovtrue\u0002\u0003]\u0000\u0002\u0003^c\r\u0003^\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002b\nb\u0000\b\u000bboovfals\u0002c\u0000\u0000\r\u0003Z\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005a\u000ba\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003X\u0000\u0001L\u0000\u0000\u0000\t\u0000\u000b\u0003_\r\u0003_\u0000\u0001m\u0000\u0000\u0000\t\u0000\n`\n`\u0000\b\u000bboovfals\u0002f\u0000\u0000\u0001e\u0000\u0000\u0002\u0003V\u0000\u0002\u0003`\u0003a\r\u0003`\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0010_\u0003b\u0003c\u0001_\u0000\u0000\f\u0003b\u0000'\u0000!# Is `_obj ` a ``missing value``?\u0000\u0002\u0000\u0000\u000e\u0003c\u0000\u0001\u0003d\u0011\u0003d\u0000B\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000`\u0000`\u0000m\u0000i\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000v\u0000a\u0000l\u0000u\u0000e\u0000`\u0000`\u0000?\u0002\u0003a\u0000\u0002\u0003e\u0003f\r\u0003e\u0000\u0004Z\u0000\u0001\u0000\u0010\u0000\u001c\u0003g\u0003h^]\r\u0003g\u0000\u0002=\u0000\u0003\u0000\u0010\u0000\u0013\u0003i\u0003j\r\u0003i\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\\\u000b\\\u0000\b0\u0000\u0004_obj\u0000\u0000\r\u0003j\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012[\n[\u0000\u0004\nmsng\r\u0003h\u0000\u0001L\u0000\u0000\u0000\u0016\u0000\u0018\u0003k\r\u0003k\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017Z\nZ\u0000\b\u000bboovtrue\u0002^\u0000\u0000\u0001]\u0000\u0000\u0002\u0003f\u0000\u0002\u0003l\u0003m\r\u0003l\u0000\u0003l\u0000\u0001\u0000\u001d\u0000\u001dY\u0003n\u0003o\u0001Y\u0000\u0000\f\u0003n\u0000\"\u0000\u001c# Is `_obj ` a empty string?\u0000\u0002\u0000\u0000\u000e\u0003o\u0000\u0001\u0003p\u0011\u0003p\u00008\u0000#\u0000 \u0000I\u0000s\u0000 \u0000`\u0000_\u0000o\u0000b\u0000j\u0000 \u0000`\u0000 \u0000a\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000?\u0002\u0003m\u0000\u0002\u0003qX\r\u0003q\u0000\u0001L\u0000\u0000\u0000\u001d\u0000(\u0003r\r\u0003r\u0000\u0002=\u0000\u0003\u0000\u001d\u0000'\u0003s\u0003t\r\u0003s\u0000\u0002n\u0000\u0000\u0000\u001d\u0000%\u0003u\u0003v\r\u0003u\u0000\u00011\u0000\u0000\u0000#\u0000%W\nW\u0000\u0004\nleng\r\u0003v\u0000\u0003l\u0000\u0005\u0000\u001d\u0000#\u0003wVU\r\u0003w\u0000\u0002n\u0000\u0001\u0000\u001d\u0000#\u0003x\u0003y\r\u0003x\u0000\u0003I\u0000\u0000\u0000\u001e\u0000#T\u0003zS\u000bT\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003z\u0000\u0002\u0003{R\r\u0003{\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001fQ\u000bQ\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002R\u0000\u0000\u0002S\u0000\u0000\r\u0003y\u0000\u0000f\u0000\u0000\u0000\u001d\u0000\u001e\u0001V\u0000\u0000\u0001U\u0000\u0000\r\u0003t\u0000\u0001m\u0000\u0000\u0000%\u0000&P\u0003P\u0000\u0000\u0002X\u0000\u0000\u0002\u0003E\u0000\u0002\u0003|\u0003}\r\u0003|\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000ONM\u0001O\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0003}\u0000\u0002\u0003~L\r\u0003~\u0000\u0002i\u0000\u0000\u0000E\u0000H\u0003\u0003\r\u0003\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000K\u0003J\u000bK\u0000\t0\u0000\u0005_trim\u0000\u0000\u0002\u0003\u0000\u0002\u0003I\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\b0\u0000\u0004_str\u0000\u0000\u0002I\u0000\u0000\u0002J\u0000\u0000\r\u0003\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0003\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000G\u0003\u0003\u0001G\u0000\u0000\f\u0003\u0000\u0000 Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t\u0000\u0002\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0001\f\u0000 \u0000R\u0000e\u0000m\u0000o\u0000v\u0000e\u0000 \u0000w\u0000h\u0000i\u0000t\u0000e\u0000 \u0000s\u0000p\u0000a\u0000c\u0000e\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000b\u0000e\u0000g\u0000i\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000n\u0000d\u0000 \u0000o\u0000f\u0000 \u0000`\u0000_\u0000s\u0000t\u0000r\u0000`\u0000\n\u0000\n\u0000\t\u0000:\u0000p\u0000a\u0000r\u0000a\u0000m\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000A\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\t\u0000:\u0000t\u0000y\u0000p\u0000e\u0000 \u0000_\u0000s\u0000t\u0000r\u0000:\u0000 \u0000`\u0000`\u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000`\u0000`\u0000\n\u0000\t\u0000:\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000s\u0000:\u0000 \u0000t\u0000r\u0000i\u0000m\u0000m\u0000e\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000\n\u0000\n\u0000\t\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000 \u0003\u0003FE\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0017\u0003\u0003\r\u0003\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u000f\u0003\u0003\r\u0003\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0005\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0003D\nD\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001C\u000bC\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004B\nB\u0000\u0004\nctxt\r\u0003\u0000\u0002>\u0001\u0000\u0000\b\u0000\r\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0003\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000\t\u0000\u000bA\nA\u0000\u0004\npcls\r\u0003\u0000\u0001o\u0000\u0000\u0000\b\u0000\t@\u000b@\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f?\n?\u0000\u0004\nTEXT\r\u0003\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013>\u000b>\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014=\n=\u0000\u0004\nmsng\r\u0003\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b<\u000b<\u0000\b0\u0000\u0004_str\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0004Z\u0000\u0001\u0000!\u0000-\u0003\u0003;:\r\u0003\u0000\u0002=\u0000\u0003\u0000!\u0000$\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000!\u0000\"9\u000b9\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000'\u0000)\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000'\u0000(8\u000b8\u0000\b0\u0000\u0004_str\u0000\u0000\u0002;\u0000\u0000\u0001:\u0000\u0000\u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000.\u0000W\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u00006\u0000R\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u00009\u0000H\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u00009\u0000F\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u00009\u0000D\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000:\u0000D7\u0003\u0003\n7\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000>\u0000@6\u00036\u0000\u0002\r\u0003\u0000\u0001m\u0000\u0000\u0000A\u0000C5\u00035\r\u0003\u0000\u0001o\u0000\u0000\u00009\u0000:4\u000b4\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000D\u0000E3\n3\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00002\u000b2\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u00001\u00030\n1\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\/\u000b\/\u0000\u00070\u0000\u0003msg\u0000\u0000\u00020\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000P\u0000R\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002C\u0001\u0000\u00002\u00005\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u00002\u00003.\u000b.\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003\u0003\r\u0003\u0000\u0002V\u0000\u0000\u0000X\u0000\u0003\u0003\r\u0003\u0000\u0003Q\u0000\u0000\u0000`\u0000|\u0003\u0003\u0003\r\u0003\u0000\u0002r\u0000\u0000\u0000c\u0000r\u0003\u0003\r\u0003\u0000\u0002c\u0000\u0000\u0000c\u0000p\u0003\u0003\r\u0003\u0000\u0002n\u0000\u0000\u0000c\u0000n\u0003\u0003\r\u0003\u0000\u00037\u0001\u0000\u0000d\u0000n-\u0003\u0003\n-\u0000\u0004\ncobj\r\u0003\u0000\u0001m\u0000\u0000\u0000h\u0000j,\u0003,\u0000\u0001\r\u0003\u0000\u0001m\u0000\u0000\u0000k\u0000m+\u0003+\r\u0003\u0000\u0001o\u0000\u0000\u0000c\u0000d*\u000b*\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000n\u0000o)\n)\u0000\u0004\nctxt\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000'&%\n'\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001&\u0000\u0000\u0002%\u0000\u0000\r\u0003\u0000\u0001L\u0000\u0000\u0000z\u0000|\u0003\r\u0003\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\r\u0003\u0000\u0002D\u0000\u0000\u0000\\\u0000_\u0003\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\\\u0000]$\u000b$\u0000\b0\u0000\u0004_str\u0000\u0000\r\u0003\u0000\u0001m\u0000\u0000\u0000]\u0000^\u0003\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0002\u0000 \u0002\u0003\u0000\u0002\u0003#\r\u0003\u0000\u0001L\u0000\u0000\u0000\u0000\u0003\r\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\"\u000b\"\u0000\b0\u0000\u0004_str\u0000\u0000\u0002#\u0000\u0000\u0002L\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0011!\u0003\u0000\r\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0001!\u0000\u0000\u0010\u0003\u0000\u000f \u001f\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0016\u0015\u0014\u0013\u0012\u000b \u0000\"0\u0000\u000fbundler_version\u0000\u000fBUNDLER_VERSION\u000b\u001f\u0000\t0\u0000\u0005_home\u0000\u0000\u000b\u001e\u0000\u001a0\u0000\u000bbundler_dir\u0000\u000bBUNDLER_DIR\u000b\u001d\u0000\u00160\u0000\tcache_dir\u0000\tCACHE_DIR\u000b\u001c\u0000\u00100\u0000\fload_bundler\u0000\u0000\u000b\u001b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u000b\u001a\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u000b\u0019\u0000\b0\u0000\u0004_pwd\u0000\u0000\u000b\u0018\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000b\u0017\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000b\u0016\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0015\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u0014\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000b\u0013\u0000\r0\u0000\t_is_empty\u0000\u0000\u000b\u0012\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\"\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000S\u0000u\u0000p\u0000p\u0000o\u0000r\u0000t\u0000\/\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000 \u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0001\u0003\u0011\u0003\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000s\u0000m\u0000a\u0000r\u0000g\u0000h\u0000e\u0000i\u0000m\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000C\u0000a\u0000c\u0000h\u0000e\u0000s\u0000\/\u0000c\u0000o\u0000m\u0000.\u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000w\u0000i\u0000t\u0000h\u0000c\u0000r\u0000a\u0000y\u0000o\u0000n\u0000s\u0000.\u0000A\u0000l\u0000f\u0000r\u0000e\u0000d\u0000-\u00002\u0000\/\u0000W\u0000o\u0000r\u0000k\u0000f\u0000l\u0000o\u0000w\u0000 \u0000D\u0000a\u0000t\u0000a\u0000\/\u0000a\u0000l\u0000f\u0000r\u0000e\u0000d\u0000.\u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000r\u0000-\u0000d\u0000e\u0000v\u0000e\u0000l\u000e\u0003\u0000\u0007\u0010\u0011\u0000D\u0010\u000f\u0003\u0003\u000e\u000b\u0011\u0000\u00100\u0000\fload_bundler\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u000f\u0000\u0000\u0010\u0003\u0000\u0001\r\u000b\r\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u0006\f\u000b\u0000g\n\u0000t\t\u000b\f\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000b\u000b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\n\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\t\u0000\u0018.sysoloadscpt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000file\u0011\u000e\u00000)b\u0000\u0001\u0000\u0002k+\u0000\u0000e\u0001\u001d\u0000\n)j+\u0000\u0001Y\u0000\u0003hOj\f\u0000\u0003Ob\u0000\u0001\u0000\u0002%EOj\f\u0000\u0005\u000f\u000f\u000e\u0003\u0000\u0007\u0010\b\u0000\u0007\u0006\u0003\u0003\u0005\u000b\b\u0000\u000e0\u0000\n_bootstrap\u0000\u0000\u0002\u0007\u0000\u0000\u0002\u0006\u0000\u0000\u0010\u0003\u0000\u0006\u0004\u0003\u0002\u0001\u0000\u000b\u0004\u0000\f0\u0000\u0004urls\u0000\u0004URLs\u000b\u0003\u0000\f0\u0000\b_zipfile\u0000\u0000\u000b\u0002\u0000\b0\u0000\u0004_url\u0000\u0000\u000b\u0001\u0000\u000b0\u0000\u0007_status\u0000\u0000\u000b\u0000\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u000e0\u0000\nas_bundler\u0000\u0000\u0010\u0003\u0000\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u001e\u0001#\u00017\u0001>\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0005\u0000\u0014\u0000\n)j+\u0000\u0000W\u0000\tX\u0000\u0001\u0000\u0002f\u000fOb\u0000\u0001\u0000\u0000%%b\u0000\u0001\u0000\u0000%%lvEOb\u0000\u0001\u0000\u0003,%EO\u0017\u00001[l\f\u0000\u000bkh\u001b\u0000\u0002%%%%j\f\u0000\u000fEOa\u0000\u0010\u0000\u001d\u0000\u0006\u0016Y\u0000\u0003h[OYOa\u0000\u0011\u0001\u001d\u0000\u0011)a\u0000\u0012a\u0000\u0013la\u0000\u0014\u0015Y\u0000\u0003hO)b\u0000\u0001\u0000\u0002k+\u0000\u0015Oa\u0000\u0016b\u0000\u0001\u0000\u0003,%a\u0000\u0017%b\u0000\u0001\u0000\u0002,%EOj\f\u0000\u000fOb\u0000\u0001\u0000\u0002a\u0000\u0018%EO\u0017\u0000\u0017h)k+\u0000\u0019\u000b\u0019a\u0000\u001aj\f\u0000\u001b[OYOh\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0001P\u0003\u0003\u000b\u0000\u00190\u0000\u0015_install_confirmation\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0006\u000b\u0000\n0\u0000\u0006_plist\u0000\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\t0\u0000\u0005_name\u0000\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u000b\u0000\t0\u0000\u0005_text\u0000\u0000\u000b\u0000\r0\u0000\t_response\u0000\u0000\u0010\u0003\u0000\u001f\u0001d\u0001s\u0001u\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\nappr\n\u0000\u0004\ndisp\n\u0000\u0004\npsxf\u0003\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbhit\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0004\nerrn\u0003\u0000\u0017\u0011\u0000)j+\u0000\u0000%EO%%EOj\f\u0000\u0004EO)j+\u0000\u0000%EO)k+\u0000\u0006EO%%%EOmvm%a\u0000\u0010*a\u0000\u0011\/a\u0000\u0012\f\u0000\u0013a\u0000\u0014,EOa\u0000\u0015\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hOa\u0000\u0016\u0000\u001d\u0000 a\u0000\u0017\u0012\u0000\ta\u0000\u0018j\f\u0000\u0019UO)a\u0000\u001aa\u0000\u001bla\u0000\u001c\u0015Y\u0000\u0003hOa\u0000\u001d\u0000\u001d\u0000\u0011)a\u0000\u001aa\u0000\u001bla\u0000\u001e\u0015Y\u0000\u0003h\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0012\u0003\u0003\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\u000e0\u0000\u0005astid\u0000\u0005ASTID\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0010\u0003\u0000\n\u0002(\u0002G\n\u0000\u0004\nascr\n\u0000\u0004\ntxdl\n\u0000\u0004\ncobj\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0004\ncitm\u0003\n\u0000\u0004\nTEXT\u0011\u00009,lvE[k\/EZ[l\/,FZO)j\f\u0000\u0004,[\\[Zk\\Z2&%EO,FO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002[\u0003\u0003\u000b\u0000\u00100\u0000\f_prepare_cmd\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0003\u000b\u0000\b0\u0000\u0004_cmd\u0000\u0000\u000b\u0000\u00070\u0000\u0003pwd\u0000\u0000\u000b\u0000\u000f0\u0000\u000btesting_var\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u0002\u0002\u000b\u0000\b0\u0000\u0004_pwd\u0000\u0000\n\u0000\u0004\nstrq\u0011\u0000\u0019)j+\u0000\u0000,EOEO%%%%\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000f0\u0000\u000b_check_icon\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\t0\u0000\u0005_icon\u0000\u0000\u0010\u0003\u0000\u0005\u0002\n\u0000\u0004\npsxf\n\u0000\u0004\nalis\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0017\u0014\u0000\u000e*\/&O\u000fW\u0000\tX\u0000\u0002\u0000\u0003\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u000e0\u0000\n_check_dir\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0004\u0002\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\n\u0000\u0004\nstrq\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001b)k+\u0000\u0000\u000b\u001d\u0000\u000e,%j\f\u0000\u0003Y\u0000\u0003hO\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00120\u0000\u000e_folder_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\u000b0\u0000\u0007_folder\u0000\u0000\u0010\u0003\u0000\u0005\u0002\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\n\u0000\u0004\nditm\n\u0000\u0004\npcls\n\u0000\u0004\ncfol\u0011\u0000\u001f)k+\u0000\u0000\u001d\u0000\u0013\u0012\u0000\u000b*\/,\u0000\u000fUY\u0000\u0003hOf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0002\u0003\u0003\u000b\u0000\u00100\u0000\f_path_exists\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0002\u000b\u0000\t0\u0000\u0005_path\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0003\u0000\n\u0003(\u00034\n\u0000\u0004\nmsng\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\n\u0000\u0004\nbool\n\u0000\u0004\npcls\n\u0000\u0004\nalis\n\u0000\u0004\npsxf\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0000\u0011\u0000Z\u0000\n\u0000\n)k+\u0000\u0001&\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0014\u00009,\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO\b\u001d\u0000\r*\/EOe\u000fY\u0000\u0016\b\u001d\u0000\u000e*\/&Oe\u000fY\u0000\u0004f\u000fW\u0000\tX\u0000\b\u0000\tf\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003G\u0003\u0003\u000b\u0000\r0\u0000\t_is_empty\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u0003\u0000\u0001\u000e\u0003\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0000\u0001\u000b\u0000\b0\u0000\u0004_obj\u0000\u0000\u0010\u0003\u0000\u0003\n\u0000\u0004\nmsng\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\n\u0000\u0004\nleng\u0011\u0000)eflv\b\u001d\u0000\u0007f\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007e\u000fY\u0000\u0003hO)k+\u0000\u0001,j\u0000\u000f\u000f\u000e\u0003\u0000\u0007\u0010\u0003\u0004\u0000\u0004\u0001\u000b\u0000\t0\u0000\u0005_trim\u0000\u0000\u000e\u0000\u0002\u0004\u0004\u0002\u0003\u0000\u0001\u000e\u0004\u0002\u0000\u0001\u0000\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u0002\u0000\u0000\u0010\u0004\u0000\u0000\u0002\u000b\u0000\b0\u0000\u0004_str\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0010\u0004\u0001\u0000\u000f~}|{z\u0003\u0003yxw\u0003\u0003vu\u0003\n~\u0000\u0004\npcls\n}\u0000\u0004\nctxt\n|\u0000\u0004\nTEXT\n{\u0000\u0004\nbool\nz\u0000\u0004\nmsng\ny\u0000\u0004\ncobj\u000bx\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002w\u0000\u0000\u0003v\u0001u\u0000\u0000\u0011\u0000,\u0001\n\u0000\t,\u0001&\n\u0000\u0007\u0000&\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0000\u001d\u0000\u0007\u000fY\u0000\u0003hO\u0017\u0000(h\u0006\u0019\u0014\u0000\u0014[\\[Zl\\Zi2&EW\u0000\tX\u0000\b\u0000\t\u000f[OYO\u0017\u0000(h\u0007\u0019\u0014\u0000\u0014[\\[Zk\\Z2&EW\u0000\tX\u0000\r\u0000\t\u000f[OYO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"47681815dd1c1850bccb192fd566373a57a3985f","subject":"in BBEdit SQL Query updater - fix for optional space at end of SQL_Field line in whereEqualsClause regex search.","message":"in BBEdit SQL Query updater - fix for optional space at end of SQL_Field line in whereEqualsClause regex search.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.3 - 2018-09-04 ( dshockley ): fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) \n[\\\\t ]*& \\\" *= *\\\" \n[\\\\t ]*& ([^\\\\r]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"=\\\" ; \\\\3 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List ( ) for whitespace formatting of query: *)\n\t\t\t\tset stringStartQuery to \"; sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery)\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t]+)& \" using \"\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\tset character posQueryEnd to return & tab & tab & \")\" & (contents of character posQueryEnd)\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"02c3501dc64ca0bcc94bb15afdc2a8f7684a693b","subject":"applescript. oof","message":"applescript. oof\n","repos":"dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles,dicksonlabs\/dotfiles","old_file":"applescript\/MaximizeTerminalHeight.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"applescript\/MaximizeTerminalHeight.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npbnd\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\ncwin\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\ndesk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0000\n\f\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0002\u0012k\"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0012\u0352\u0000\u0000\u0000\u0001\u0000\f\u0000\n\f\u0000\n\f\u0000\n\f\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u000f\u0000O\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u000f\u0000O\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002O\u0000\u0000\u0000\u0013\u0000N\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001k\u0000\u0000\u0000\u001a\u0000M\u0000\u0019\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u001a\u0000;\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0001e\u0000\u0000\u0000\u001a\u0000\u001e\u0000\u001f\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001e\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000,\u0000-\r\u0000,\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000.\n\u0000\u0004\ncobj\r\u0000.\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0004\r\u0000-\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000)\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002r\u0000\u0000\u0000C\u0000M\u00000\u00001\r\u00000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u00011\u0000\u0000\u0000I\u0000L\n\u0000\u0004\npbnd\u0002\u0000\u0000\r\u0000\u0018\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000:\n\u0000\u0004\ncwin\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000;\u000f\u0000;\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000GpH+\u0000\u0000\u0000\n\r\u001b\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n1S\u0007g\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\b\u0000\n\r\u001b\u0000\n\r\u001a\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000<\u0000=\u0000>\u0001\u0000\u0000\u0010\u0000<\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0001\u0000\u0000\u000e\u0000=\u0000\u0007\u0010\u0000?\u0000@\u0000A\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000O\u0000B\u0002\u0000B\u0000\u0002\u0000\u0005\u0000C\u0002\u0000C\u0000\u0002\u0000\u0013\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000@\u0000\u0000\u0010\u0000A\u0000\r\u0000\u0010\u0000;\n\u0000\u0004\ndesk\n\u0000\u0004\ncwin\n\u0000\u0004\npbnd\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\n\u0000\u0004\ncobj\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0011\u0000P\u0012\u0000\u000b*,,,EUO\u0012\u0000=*k\/\u0012\u00005*,EE[k\/EZ[l\/EZ[m\/EZ[\/EZO\/EOkv*,FUU\u000f\u000e\u0000>\u0000\u0002\u0004\u0000D\u0003\u0000\u0004\u000e\u0000D\u0000\u0004\u0000\u0003\u0000\u0000\u0003\u0000\u0000\u0003\n\u0000\u0003\u0005\u0003\u0000\u0003\u0000\u0003\u0005\u0003\u0004Z\u0003\u0005\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\f\u0000\r\r\u0000\f\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npbnd\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\t\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\ncwin\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\ndesk\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u000eH+\u0000\u0000\u0000\u0000\u0000:\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000)l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000<q\u0003\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000)f\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000:\u0000\u0000\u0000-\u0000\u0000\u0000,\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\r\u0000\u0013\u0000\u0003l\u0000\u0002\u0000\u000f\u0000O\u0000\u0014\r\u0000\u0014\u0000\u0002O\u0000\u0000\u0000\u000f\u0000O\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002O\u0000\u0000\u0000\u0013\u0000N\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0001k\u0000\u0000\u0000\u001a\u0000M\u0000\u0019\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u001a\u0000;\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001e\u0000\u001e\r\u0000\u001e\u0000\u0001e\u0000\u0000\u0000\u001a\u0000\u001e\u0000\u001f\r\u0000\u001f\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001e\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000,\u0000-\r\u0000,\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000.\n\u0000\u0004\ncobj\r\u0000.\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0004\r\u0000-\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000)\u0000\u0002\u0000\/\r\u0000\/\u0000\u0002r\u0000\u0000\u0000C\u0000M\u00000\u00001\r\u00000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u00002\u0002\u00002\u0000\u0002\u00003\u00004\r\u00003\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0001m\u0000\u0000\u0000D\u0000E\u0003\u0000\u0001\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0002\u0000\u0000\r\u00001\u0000\u00011\u0000\u0000\u0000I\u0000L\n\u0000\u0004\npbnd\u0002\u0000\u0000\r\u0000\u0018\u0000\u00024\u0001\u0000\u0000\u0013\u0000\u0017\u0000:\n\u0000\u0004\ncwin\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0016\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000;\u000f\u0000;\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u000eH+\u0000\u0000\u0000\u0000\u0000Z\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \"*a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000<q\u0003\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000+X\u0000\u0000\u0000\u0001\u0000\b\u0000\u0000\u0000Z\u0000\u0000\u0000Y\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000<\u0000=\u0000>\u0001\u0000\u0000\u0010\u0000<\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0001\u0000\u0000\u000e\u0000=\u0000\u0007\u0010\u0000?\u0000@\u0000A\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000?\u0000\u0001k\u0000\u0000\u0000\u0000\u0000O\u0000B\u0002\u0000B\u0000\u0002\u0000\u0005\u0000C\u0002\u0000C\u0000\u0002\u0000\u0013\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000@\u0000\u0000\u0010\u0000A\u0000\r\u0000\u0010\u0000;\n\u0000\u0004\ndesk\n\u0000\u0004\ncwin\n\u0000\u0004\npbnd\u000b\u0000\u00060\u0000\u0002_b\u0000\u0000\n\u0000\u0004\ncobj\u000b\u0000\u00060\u0000\u0002_x\u0000\u0000\u000b\u0000\u00060\u0000\u0002_y\u0000\u0000\u000b\u0000\u00060\u0000\u0002_w\u0000\u0000\u0003\u0000\u0004\u000b\u0000\u00060\u0000\u0002_h\u0000\u0000\u000b\u0000\u00070\u0000\u0003_vz\u0000\u0000\u0011\u0000P\u0012\u0000\u000b*,,,EUO\u0012\u0000=*k\/\u0012\u00005*,EE[k\/EZ[l\/EZ[m\/EZ[\/EZO\/EOkv*,FUU\u000f\u000e\u0000>\u0000\u0002\u0004\u0000D\u0003\u0000\u0004\u000e\u0000D\u0000\u0004\u0000\u0003\u0000\u0000\u0003\u0000\u0000\u0003\n\u0000\u0003\u0005\u0003\u00040\u0003\u0000\u0016\u0003\n\u0000\u0003\u0003e\u0003\u0005\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4cab25a4396cef41b6ecf861d412ad20cd2bca58","subject":"Siftie","message":"Siftie\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000n\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000n\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000o\u0000\u0000~}\r\u0000\u0000\u0003I\u0000\u0000\u0000o\u0000|\u0000{\u000b|\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000vz\u0003z\u0000\u000f\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000wx\u0003x\u0000$\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001J\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|v\u0003v\u0002\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000}t\u0003t\u0003\u0002u\u0000\u0000\u0002w\u0000\u0000\u0002{\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001e\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000T\u0000e\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0006\"\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\tUT\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\nR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011P\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0014NM\r\u0001\u0014\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0015K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0001\u0018\u0000\u0001\u0001\u0019\u0011\u0001\u0019\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0017\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001cI\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002I\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001fGF\r\u0001\u001f\u0000\u0003I\u0000\u0000\u0000\u0000E\u0001 D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\u001c\u0000P\u0000i\u0000x\u0000e\u0000l\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000P\u0000r\u0000o\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001&\u0000\u0002\u0001'B\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002B\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u001e\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*@?\r\u0001*\u0000\u0003I\u0000\u0000\u0000\u0000>\u0001+=\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001-\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00011\u0000\u0002\u00012;\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001)\u0000\u0002\u00013\u00014\r\u00013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001598\r\u00015\u0000\u0003I\u0000\u0000\u0000\u00007\u000166\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00018\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00024\u0000\u0000\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00014\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0000\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u00000\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H-\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002-\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0000\u0001K+*\r\u0001K\u0000\u0003I\u0000\u0000\u0000\u0000)\u0001L(\u000b)\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0001m\u0000\u0000\u0000\u0000\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001N\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001R\u0000\u0002\u0001S&\r\u0001S\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002&\u0000\u0000\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001J\u0000\u0002\u0001T\u0001U\r\u0001T\u0000\u0003l\u0000\u0002\u0001\u0000\u0001\r\u0001V$#\r\u0001V\u0000\u0003I\u0000\u0000\u0001\u0000\u0001\r\"\u0001W!\u000b\"\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001W\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0004\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001Y\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005 \u000b \u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001]\u0000\u0002\u0001^\u001f\r\u0001^\u0000\u0001J\u0000\u0000\u0001\u0005\u0001\t\u0001_\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0005\u0001\u0006\u001e\u0003\u001e\u0006\"\u0002\u0001a\u0000\u0002\u0001b\u001d\r\u0001b\u0000\u0001m\u0000\u0000\u0001\u0006\u0001\u0007\u001c\u0003\u001c\u0003\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u0002!\u0000\u0000\u0001$\u0000\u0000\u0001#\u0000\u0000\u0002\u0001U\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0003l\u0000\u0002\u0001\u000e\u0001\u0018\u0001e\u001b\u001a\r\u0001e\u0000\u0003I\u0000\u0000\u0001\u000e\u0001\u0018\u0019\u0001f\u0018\u000b\u0019\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001h\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u0017\u000b\u0017\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001l\u0000\u0002\u0001m\u0016\r\u0001m\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0014\u0015\u000b\u0015\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0016\u0000\u0000\u0002\u0018\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001d\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0003l\u0000\u0002\u0001\u0019\u00011\u0001p\u0014\u0013\r\u0001p\u0000\u0003I\u0000\u0000\u0001\u0019\u00011\u0012\u0001q\u0011\u000b\u0012\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001s\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0001J\u0000\u0000\u0001\u001d\u0001%\u0001x\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0010\u0003\u0010\u0000\u000f\u0002\u0001z\u0000\u0002\u0001{\u000f\r\u0001{\u0000\u0001m\u0000\u0000\u0001 \u0001#\u000e\u0003\u000e\u0003]\u0002\u000f\u0000\u0000\u0002\u0001w\u0000\u0002\u0001|\r\r\u0001|\u0000\u0001J\u0000\u0000\u0001%\u0001-\u0001}\u0002\u0001}\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001m\u0000\u0000\u0001%\u0001(\f\u0003\f\u0003R\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u0001(\u0001+\n\u0003\n\u00024\u0002\u000b\u0000\u0000\u0002\r\u0000\u0000\u0002\u0011\u0000\u0000\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0002\u0001o\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00012\u0001F\u0001\t\b\r\u0001\u0000\u0003I\u0000\u0000\u00012\u0001F\u0007\u0001\u0006\u000b\u0007\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00013\u00016\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u00016\u0001<\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00016\u00019\u0005\u0003\u0005\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0001m\u0000\u0000\u00019\u0001:\u0003\u0003\u0003\u0000$\u0002\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\r\u0001\u0000\u0001J\u0000\u0000\u0001<\u0001B\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u0003\u0001\u0002\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001?\u0001@\u0003\u0003\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0006\u0000\u0000\u0001\t\u0000\u0000\u0001\b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001G\u0001T\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001G\u0001T\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001K\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001K\u0001L\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001L\u0001P\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001M\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001M\u0001N\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\u0002\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001T\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0012\u0001\u0002\u0001\u0000\u0002\u0001\u001d\u0001\u0002\u0001\u0000\u0002\u0001(\u0001\u0002\u0001\u0000\u0002\u00013\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001I\u0001\u0002\u0001\u0000\u0002\u0001T\u0001\u0002\u0001\u0000\u0002\u0001c\u0001\u0002\u0001\u0000\u0002\u0001n\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000*\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\r\u0001\u0018\u0001#\u0001.\u00019\u0001D\u0001O\u0001Z\u0001i\u0001t\u0001\u0001\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001UlvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"lvm+\u0000\u000bO*a\u0000#m+\u0000\u000bO*a\u0000$a\u0000\u0015a\u0000%lva\u0000&a\u0000'lvm+\u0000\u000bO*a\u0000(a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000)lvm+\u0000\u000b\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000$\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000$\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000X\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000X\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Y\u0000c\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Y\u0000c\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000Z\u0000]\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000d\u0000n\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000d\u0000n\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000h\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000h\u0000i\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000i\u0000j\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000o\u0000\u0000~}\r\u0000\u0000\u0003I\u0000\u0000\u0000o\u0000|\u0000{\u000b|\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000vz\u0003z\u0000\u000f\u0002\u0000\u0000\u0002\u0000y\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000wx\u0003x\u0000$\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001J\u0000\u0000\u0000y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000|v\u0003v\u0002\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000}t\u0003t\u0003\u0002u\u0000\u0000\u0002w\u0000\u0000\u0002{\u0000\u0000\u0001~\u0000\u0000\u0001}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000sr\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000q\u0000p\u000bq\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001e\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000T\u0000e\u0000a\u0000m\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0006\"\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002p\u0000\u0000\u0001s\u0000\u0000\u0001r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\tUT\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000S\u0001\nR\u000bS\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\r\u000e\u0001\r\u0000\u0001\u0001\u000e\u0011\u0001\u000e\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0001\f\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000\u0000Q\u000bQ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0010\u0000\u0002\u0001\u0011P\r\u0001\u0011\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002P\u0000\u0000\u0002R\u0000\u0000\u0001U\u0000\u0000\u0001T\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0014NM\r\u0001\u0014\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0015K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0018\u000e\u0001\u0018\u0000\u0001\u0001\u0019\u0011\u0001\u0019\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0017\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001b\u0000\u0002\u0001\u001cI\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002I\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u001fGF\r\u0001\u001f\u0000\u0003I\u0000\u0000\u0000\u0000E\u0001 D\u000bE\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001 \u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0001m\u0000\u0000\u0000\u0000\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\u001c\u0000P\u0000i\u0000x\u0000e\u0000l\u0000m\u0000a\u0000t\u0000o\u0000r\u0000 \u0000P\u0000r\u0000o\u0002\u0001\"\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001&\u0000\u0002\u0001'B\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002B\u0000\u0000\u0002D\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u001e\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003l\u0000\u0002\u0000\u0000\u0001*@?\r\u0001*\u0000\u0003I\u0000\u0000\u0000\u0000>\u0001+=\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001+\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0001m\u0000\u0000\u0000\u0000\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001-\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00011\u0000\u0002\u00012;\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002;\u0000\u0000\u0002=\u0000\u0000\u0001@\u0000\u0000\u0001?\u0000\u0000\u0002\u0001)\u0000\u0002\u00013\u00014\r\u00013\u0000\u0003l\u0000\u0002\u0000\u0000\u0001598\r\u00015\u0000\u0003I\u0000\u0000\u0000\u00007\u000166\u000b7\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u00016\u0000\u0002\u00017\u00018\r\u00017\u0000\u0001m\u0000\u0000\u0000\u0000\u00019\u000e\u00019\u0000\u0001\u0001:\u0011\u0001:\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00018\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u00005\u000b5\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001<\u0000\u0002\u0001=4\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00024\u0000\u0000\u00026\u0000\u0000\u00019\u0000\u0000\u00018\u0000\u0000\u0002\u00014\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u0000\u0001@21\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u00000\u0001A\/\u000b0\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001A\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0001m\u0000\u0000\u0000\u0000\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001C\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000.\u000b.\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001G\u0000\u0002\u0001H-\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002-\u0000\u0000\u0002\/\u0000\u0000\u00012\u0000\u0000\u00011\u0000\u0000\u0002\u0001?\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003l\u0000\u0002\u0000\u0001\u0002\u0001K+*\r\u0001K\u0000\u0003I\u0000\u0000\u0000\u0001\u0002)\u0001L(\u000b)\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001L\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0001m\u0000\u0000\u0000\u0000\u0001O\u000e\u0001O\u0000\u0001\u0001P\u0011\u0001P\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001N\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000'\u000b'\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001R\u0000\u0002\u0001S&\r\u0001S\u0000\u0001J\u0000\u0000\u0000\u0000\u0001T\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001m\u0000\u0000\u0000\u0000%\u0003%\u0006\"\u0002\u0001V\u0000\u0002\u0001W$\r\u0001W\u0000\u0001m\u0000\u0000\u0000\u0000#\u0003#\u0003\u0002$\u0000\u0000\u0002&\u0000\u0000\u0002(\u0000\u0000\u0001+\u0000\u0000\u0001*\u0000\u0000\u0002\u0001J\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\r\u0001Z\"!\r\u0001Z\u0000\u0003I\u0000\u0000\u0001\u0003\u0001\r \u0001[\u001f\u000b \u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001[\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0007\u0001^\u000e\u0001^\u0000\u0001\u0001_\u0011\u0001_\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0001]\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b\u001e\u000b\u001e\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001a\u0000\u0002\u0001b\u001d\r\u0001b\u0000\u0001o\u0000\u0000\u0001\b\u0001\t\u001c\u000b\u001c\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001c\u0001d\r\u0001c\u0000\u0003l\u0000\u0002\u0001\u000e\u0001&\u0001e\u001b\u001a\r\u0001e\u0000\u0003I\u0000\u0000\u0001\u000e\u0001&\u0019\u0001f\u0018\u000b\u0019\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u0001i\u000e\u0001i\u0000\u0001\u0001j\u0011\u0001j\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001h\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001J\u0000\u0000\u0001\u0012\u0001\u001a\u0001m\u0002\u0001m\u0000\u0002\u0001n\u0001o\r\u0001n\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0015\u0017\u0003\u0017\u0000\u000f\u0002\u0001o\u0000\u0002\u0001p\u0016\r\u0001p\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0018\u0015\u0003\u0015\u0003]\u0002\u0016\u0000\u0000\u0002\u0001l\u0000\u0002\u0001q\u0014\r\u0001q\u0000\u0001J\u0000\u0000\u0001\u001a\u0001\"\u0001r\u0002\u0001r\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0013\u0003\u0013\u0003R\u0002\u0001t\u0000\u0002\u0001u\u0012\r\u0001u\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0011\u0003\u0011\u00024\u0002\u0012\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0018\u0000\u0000\u0001\u001b\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001d\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0003l\u0000\u0002\u0001'\u0001;\u0001x\u0010\u000f\r\u0001x\u0000\u0003I\u0000\u0000\u0001'\u0001;\u000e\u0001y\r\u000b\u000e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0001m\u0000\u0000\u0001(\u0001+\u0001|\u000e\u0001|\u0000\u0001\u0001}\u0011\u0001}\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001{\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001J\u0000\u0000\u0001+\u00011\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001+\u0001.\f\u0003\f\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u0001.\u0001\/\n\u0003\n\u0000$\u0002\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\t\r\u0001\u0000\u0001J\u0000\u0000\u00011\u00017\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00011\u00014\b\u0003\b\u0002\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00014\u00015\u0006\u0003\u0006\u0003\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002\r\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0001w\u0000\u0002\u0001\u0005\r\u0001\u0000\u0003l\u0000\u0002\u0001<\u0001I\u0001\u0004\u0003\r\u0001\u0000\u0003I\u0000\u0000\u0001<\u0001I\u0002\u0001\u0001\u000b\u0002\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001=\u0001@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001@\u0001A\u0000\u000b\u0000\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001A\u0001E\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001A\u0001B\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001B\u0001C\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0005\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001I\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0007\u0001\u0002\u0001\u0000\u0002\u0001\u0012\u0001\u0002\u0001\u0000\u0002\u0001\u001d\u0001\u0002\u0001\u0000\u0002\u0001(\u0001\u0002\u0001\u0000\u0002\u00013\u0001\u0002\u0001\u0000\u0002\u0001>\u0001\u0002\u0001\u0000\u0002\u0001I\u0001\u0002\u0001\u0000\u0002\u0001X\u0001\u0002\u0001\u0000\u0002\u0001c\u0001\u0002\u0001\u0000\u0002\u0001v\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000)\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\r\u0001\u0018\u0001#\u0001.\u00019\u0001D\u0001O\u0001^\u0001i\u0001|\u0001\u0003\u0001\u0003\u0000$\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001JlvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010m+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!lvm+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#a\u0000\u0015a\u0000$lva\u0000%a\u0000&lvm+\u0000\u000bO*a\u0000'a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000(lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000$\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9d3e1b6adcf061c1bad297485040d85ed2d78ea1","subject":"convert","message":"convert\n","repos":"katapad\/unity-runner","old_file":"run.scpt","new_file":"run.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u0010var app = Application(\"Unity\");\napp.activate();\ndelay(0.15);\nsys = Application(\"System Events\");\nsys.keystroke(\"p\", { using: \"command down\"});\b\u000b\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000jscr\u0000\u0001\u0000\f\u07ad","old_contents":"var app = Application(\"Unity\");\napp.activate();\ndelay(0.15);\nsys = Application(\"System Events\");\nsys.keystroke(\"p\", { using: \"command down\"});\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"be12b0b2ab789f3e73d36bd459b8c662aedce8b2","subject":"Aflred checkpoint","message":"Aflred checkpoint\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0012\u0000T\u0000a\u0000b\u0000l\u0000e\u0000P\u0000l\u0000u\u0000s\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000\u0012\u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0000.\u0000.\u0000.\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"67b1c923355fd63b39b8b1d5ed2e4938a925a544","subject":"Fix bug with previous fix; duplicates are now gone","message":"Fix bug with previous fix; duplicates are now gone\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset searchSongs to {}\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\t\trepeat with searchSong in searchSongs\n\n\t\t\t\t\t\tset duplicateSong to false\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif (database ID of theSong) is (database ID of searchSong) then\n\n\t\t\t\t\t\t\t\tset duplicateSong to true\n\t\t\t\t\t\t\t\texit repeat\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\t\tif duplicateSong is false then\n\n\t\t\t\t\t\t\tcopy searchSong to end of theSongs\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset searchSongs to {}\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset searchSongs to (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\t\trepeat with searchSong in searchSongs\n\n\t\t\t\t\t\tset duplicateSong to false\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif theSong is searchSong then\n\n\t\t\t\t\t\t\t\tset duplicateSong to true\n\t\t\t\t\t\t\t\texit repeat\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\t\tif duplicateSong is false then\n\n\t\t\t\t\t\t\tcopy searchSong to end of theSongs\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cf4bbf60bf0a4255281e5eb6af31aea430334067","subject":"Force sqlite output to always be list (without headers)","message":"Force sqlite output to always be list (without headers)\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork files and folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkDbPath : \"\/usr\/bin\/sqlite3 -list -noheader \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite\"\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (artworkDbPath & \" '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork files and folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkDbPath : \"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite\"\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork (without extension)\n\t\t\tset artworkName to (do shell script (artworkDbPath & \" '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn selectFirstArtworkThatExists({ \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".jpeg\"), \u00ac\n\t\t\t(artworkImageFolder & artworkName & \".png\")}) of me\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getSongArtworkPath\n\n-- select the first path (in the given set of artwork paths) that exists on the\n-- user's local system\non selectFirstArtworkThatExists(artworkPaths)\n\n\ttell application \"Finder\"\n\t\trepeat with artworkPath in artworkPaths\n\t\t\tif artworkPath exists then\n\t\t\t\treturn artworkPath as text\n\t\t\tend if\n\t\tend repeat\n\tend tell\n\n\treturn defaultIconName\n\nend selectFirstArtworkThatExists\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9f7c7295d9a60ee104b099a4bd22dfbb0752e7d9","subject":"fix prettify","message":"fix prettify\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.7, Daniel A. Shockley\n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\tset otherTidyOptions to \" --literal-attributes yes --preserve-entities yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | tidy -xml -m -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d0d5e39820d731938e60766c80c1233abf211bf7","subject":"fix apple script to select device","message":"fix apple script to select device\n","repos":"blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant","old_file":"Scripts\/select-simulator-device.applescript","new_file":"Scripts\/select-simulator-device.applescript","new_contents":"on run argv\n\tset simulatedDevice to (item 1 of argv)\n\ttell application \"iPhone Simulator\"\n\t\tactivate\n\tend tell\n\t\n\ttell application \"System Events\"\n\t\ttell process \"iPhone Simulator\"\n\t\t\ttell menu bar 1\n\t\t\t\ttell menu bar item \"Hardware\"\n\t\t\t\t\ttell menu \"Hardware\"\n\t\t\t\t\t\ttell menu item \"Device\"\n\t\t\t\t\t\t\ttell menu \"Device\"\n\t\t\t\t\t\t\t\tclick menu item simulatedDevice\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend run\n\n","old_contents":"set simulatedDevice to (item 1 of argv)\n\ntell application \"iPhone Simulator\"\n\tactivate\nend tell\n\ntell application \"System Events\"\n\ttell process \"iPhone Simulator\"\n\t\ttell menu bar 1\n\t\t\ttell menu bar item \"Hardware\"\n\t\t\t\ttell menu \"Hardware\"\n\t\t\t\t\ttell menu item \"Device\"\n\t\t\t\t\t\ttell menu \"Device\"\n\t\t\t\t\t\t\tclick menu item simulatedDevice\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend tell\n\tend tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ace0e0550380fb8170e926657176ebe647ab519a","subject":"updated version comment in fmObjectTranslator","message":"updated version comment in fmObjectTranslator\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.5, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.4, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : { \u00ac\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \u00ac\n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \u00ac\n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \u00ac\n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \u00ac\n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \u00ac\n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as \u00abclass utf8\u00bb\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"\u00abclass \" & objCode & \"\u00bb\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as \u00abclass utf8\u00bb\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{\u00abclass usrf\u00bb:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"58df184ef96f4e53ae66dab4cb18a9742f8b038e","subject":"Fix braindead bug, ID number was hardcoded.","message":"Fix braindead bug, ID number was hardcoded.\n\n\ngit-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@56789 91177308-0d34-0410-b5e6-96231b3b80d8\n","repos":"apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang","old_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\u0007\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000K\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000G\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000G\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0004Z\u0000\u0000\u0000L\u0000l\u0000S\u0000T\u0000U\r\u0000S\u0000\u0002?\u0000\u0000\u0000L\u0000O\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000W\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0003\u0000\u0007\r\u0000T\u0000\u0002r\u0000\u0000\u0000R\u0000c\u0000X\u0000Y\r\u0000X\u0000\u0002n\u0000\u0000\u0000R\u0000_\u0000Z\u0000[\r\u0000Z\u0000\u00037\u0001\u0000\u0000S\u0000_\u0000\\\u0000]\n\u0000\u0004\ncobj\r\u0000\\\u0000\u0001m\u0000\u0000\u0000W\u0000[\u0003\u0000\b\r\u0000]\u0000\u0001o\u0000\u0000\u0000\\\u0000^\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000[\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000U\u0000\u0002r\u0000\u0000\u0000f\u0000l\u0000^\u0000_\r\u0000^\u0000\u0001J\u0000\u0000\u0000f\u0000h\u0002\u0000\u0000\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000R\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000m\u0000\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0000\u0000m\u0000\u0000d\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0001o\u0000\u0000\u0000n\u0000o\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000p\u0000q\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000r\u0000s\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000r\u0000\u0002\u0000s\r\u0000s\u0000\u0001o\u0000\u0000\u0000w\u0000z\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000a\u0000\u0002\u0000t\r\u0000t\u0000\u0001L\u0000\u0000\u0000\u0000\u0000u\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000|\u0000}\r\u0000|\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000~\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000}\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0007Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u011auH+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00001V%\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u011a\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000_\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001eLeopard:Applications:Radar.app\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0004\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\f\u0000\u0000\u0000{ 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0003\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u001a\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000'\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000'\u00000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000.\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000*\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00001\u0000:\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00008\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00004\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000;\u0000D\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000B\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000>\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002r\u0000\u0000\u0000E\u0000J\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002b\u0000\u0000\u0000E\u0000H\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0001\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000K\u0000R\u0001\f\u0001\r\r\u0001\f\u0000\u0002b\u0000\u0000\u0000K\u0000P\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\r\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0001\u0014\u000e\u0001\u0014\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u0000\u0002\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000U\u0000\\\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000U\u0000Z\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002b\u0000\u0000\u0000U\u0000X\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u001f\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001 \u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001\u001d\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001\u001b\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000\u0002\u0000\n\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002r\u0000\u0000\u0000_\u0000j\u0001&\u0001'\r\u0001&\u0000\u0002b\u0000\u0000\u0000_\u0000h\u0001(\u0001)\r\u0001(\u0000\u0002b\u0000\u0000\u0000_\u0000d\u0001*\u0001+\r\u0001*\u0000\u0002b\u0000\u0000\u0000_\u0000b\u0001,\u0001-\r\u0001,\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001-\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u0001+\u0000\u0001o\u0000\u0000\u0000b\u0000c~\u000b~\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u0001)\u0000\u0001m\u0000\u0000\u0000d\u0000g\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0002\u0000\n\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001%\u0000\u0002\u00012\u00013\r\u00012\u0000\u0002r\u0000\u0000\u0000k\u0000x\u00014\u00015\r\u00014\u0000\u0002b\u0000\u0000\u0000k\u0000v\u00016\u00017\r\u00016\u0000\u0002b\u0000\u0000\u0000k\u0000r\u00018\u00019\r\u00018\u0000\u0002b\u0000\u0000\u0000k\u0000p\u0001:\u0001;\r\u0001:\u0000\u0001o\u0000\u0000\u0000k\u0000l|\u000b|\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001;\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001<\u000e\u0001<\u0000\u0001\u0001=\u0011\u0001=\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u00019\u0000\u0001o\u0000\u0000\u0000p\u0000q{\u000b{\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u00017\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0001>\u000e\u0001>\u0000\u0001\u0001?\u0011\u0001?\u0000\u0002\u0000\n\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u00013\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0002r\u0000\u0000\u0000y\u0000\u0001B\u0001C\r\u0001B\u0000\u0002b\u0000\u0000\u0000y\u0000\u0001D\u0001E\r\u0001D\u0000\u0002b\u0000\u0000\u0000y\u0000\u0001F\u0001G\r\u0001F\u0000\u0002b\u0000\u0000\u0000y\u0000~\u0001H\u0001I\r\u0001H\u0000\u0001o\u0000\u0000\u0000y\u0000zy\u000by\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001I\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0001J\u000e\u0001J\u0000\u0001\u0001K\u0011\u0001K\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001G\u0000\u0001o\u0000\u0000\u0000~\u0000x\u000bx\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001L\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000\u0002\u0000\n\r\u0001C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001A\u0000\u0002\u0001N\u0001O\r\u0001N\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0002b\u0000\u0000\u0000\u0000\u0001R\u0001S\r\u0001R\u0000\u0002b\u0000\u0000\u0000\u0000\u0001T\u0001U\r\u0001T\u0000\u0002b\u0000\u0000\u0000\u0000\u0001V\u0001W\r\u0001V\u0000\u0001o\u0000\u0000\u0000\u0000v\u000bv\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001W\u0000\u0001m\u0000\u0000\u0000\u0000\u0001X\u000e\u0001X\u0000\u0001\u0001Y\u0011\u0001Y\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u0000\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\u0002\u0000\n\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001O\u0000\u0002\u0001\\s\r\u0001\\\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001]r\u0001^\u0001_q\r\u0001]\u0000\u0002r\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u0000\u0000\u0001b\u0001c\r\u0001b\u0000\u0002b\u0000\u0000\u0000\u0000\u0001d\u0001e\r\u0001d\u0000\u0002b\u0000\u0000\u0000\u0000\u0001f\u0001g\r\u0001f\u0000\u0002b\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001l\u000e\u0001l\u0000\u0001\u0001m\u0011\u0001m\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001g\u0000\u0001m\u0000\u0000\u0000\u0000\u0001n\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000\u0004\u0000:\u0000 \r\u0001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u00024\u0000\u0000\u0000\u0000n\u0001r\nn\u0000\u0004\ncobj\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001s\u000e\u0001s\u0000\u0001\u0001t\u0011\u0001t\u0000\u0002\u0000\n\r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\u000br\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001^\u0000\u0001m\u0000\u0000\u0000\u0000j\u0003j\u0000\u0001\r\u0001_\u0000\u0003l\u0000\u0005\u0000\u0000\u0001uih\r\u0001u\u0000\u0002n\u0000\u0000\u0000\u0000\u0001v\u0001w\r\u0001v\u0000\u00011\u0000\u0000\u0000\u0000g\ng\u0000\u0004\nleng\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001q\u0000\u0000\u0002s\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001x\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0002r\u0000\u0000\u0000\u0000\u0001{\u0001|\r\u0001{\u0000\u0003I\u0000\u0002\u0000\u0000ed\u0001}\ne\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001d\u0000\u0000\u0006\u0001}\u0000\u0003c\u0001~\u0001\nc\u0000\u0004\ndesc\r\u0001~\u0000\u0003l\u0000\n\u0000\u0000\u0001ba\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000`\u000b`\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0001b\u0000\u0000\u0001a\u0000\u0000\u0006\u0001\u0000\u0003_\u0001\u0001\n_\u0000\u0004\ndiag\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001^]\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\\\u000b\\\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0001^\u0000\u0000\u0001]\u0000\u0000\u0006\u0001\u0000\u0003[\u0001\u0001\n[\u0000\u0004\ncmvr\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ZY\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0006\u0001\u0000\u0003W\u0001\u0001\nW\u0000\u0004\ncmnm\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001VU\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0001V\u0000\u0000\u0001U\u0000\u0000\u0006\u0001\u0000\u0003S\u0001\u0001\nS\u0000\u0004\nrcod\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001RQ\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000P\u000bP\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0006\u0001\u0000\u0003O\u0001\u0001\nO\u0000\u0004\norig\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001NM\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000L\u000bL\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0001N\u0000\u0000\u0001M\u0000\u0000\u0006\u0001\u0000\u0003K\u0001\u0001\nK\u0000\u0004\npbti\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001JI\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0001J\u0000\u0000\u0001I\u0000\u0000\u0006\u0001\u0000\u0003G\u0001\u0001\nG\u0000\u0004\nconf\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001FE\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000D\u000bD\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0001F\u0000\u0000\u0001E\u0000\u0000\u0006\u0001\u0000\u0003C\u0001\u0001\nC\u0000\u0004\nclcd\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001BA\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000@\u000b@\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0001B\u0000\u0000\u0001A\u0000\u0000\u0006\u0001\u0000\u0003?\u0001>\n?\u0000\u0004\ndsav\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000=\u000b=\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u0006>\u0000\u0000\r\u0001|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u00008\u0001\u0001\u00018\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0001(\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0001\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00007\u000b7\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u00006\n6\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00005\u000b5\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000432\n4\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u00013\u0000\u0000\u00022\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\b\u0001(\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\b\u0001\u0017\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\b\u0001\u0015\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0001\t\u0001\u00151\u0001\u0001\n1\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u00110\u00030\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0014\/\u0003\/\r\u0001\u0000\u0001o\u0000\u0000\u0001\b\u0001\t.\u000b.\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000-\u000b-\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001,\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0018\u0001(\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0018\u0001'\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0018\u0001#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0018\u0001!\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0018\u0001\u001d\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0018\u0001\u001b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001c+\u000b+\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001!\u0001\"*\u000b*\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0001#\u0001&\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002,\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001)\u0001))('\u0001)\u0000\u0000\u0001(\u0000\u0000\u0001'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001)\u00016\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001)\u00014\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001)\u00010\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001)\u0001.\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001)\u0001*&\u000b&\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001*\u0001-\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001.\u0001\/%\u000b%\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000$\u000b$\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00017\u00017#\"!\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u00017\u0001\u0001 \u0001\u0001\u001f\r\u0001\u0000\u0001k\u0000\u0000\u0001F\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001F\u0001X\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001F\u0001V\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001F\u0001R\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001F\u0001K\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001F\u0001G\u001e\u000b\u001e\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001J\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001K\u0001Q\u0001\u001d\u001c\r\u0001\u0000\u0002n\u0000\u0000\u0001K\u0001Q\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001L\u0001Q\u001b\u0001\n\u001b\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001O\u0001P\u001a\u000b\u001a\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001K\u0001L\u0019\u000b\u0019\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001R\u0001U\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u000b\u0018\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001Y\u0001o\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001Y\u0001k\u0017\u0016\u0001\n\u0017\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0016\u0000\u0000\u0006\u0001\u0000\u0003\u0015\u0001\u0001\n\u0015\u0000\u0004\nmr11\r\u0001\u0000\u0003l\u0000\u0005\u0001]\u0001c\u0001\u0014\u0013\r\u0001\u0000\u0002n\u0000\u0000\u0001]\u0001c\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001^\u0001c\u0012\u0001\n\u0012\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001a\u0001b\u0011\u000b\u0011\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001]\u0001^\u0010\u000b\u0010\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0006\u0001\u0000\u0003\u000f\u0001\u000e\n\u000f\u0000\u0004\npbid\r\u0001\u0000\u0001o\u0000\u0000\u0001f\u0001g\r\u000b\r\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u000e\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\f\u000b\f\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0002r\u0000\u0000\u0001p\u0001\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001p\u0001}\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001p\u0001y\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001p\u0001u\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001p\u0001q\n\u000b\n\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u0001\u0000\u0001m\u0000\u0000\u0001q\u0001t\u0002\u0002\u000e\u0002\u0002\u0000\u0001\u0002\u0003\u0011\u0002\u0003\u0000\u0014\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001u\u0001x\t\u000b\t\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001y\u0001|\u0002\u0004\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\b\u000b\b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u000b\u0000\u0000\u000b \u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001:\u0001;\u0007\u0003\u0007\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0001;\u0001A\u0002\u0006\u0006\u0005\r\u0002\u0006\u0000\u0002n\u0000\u0000\u0001;\u0001A\u0002\u0007\u0002\b\r\u0002\u0007\u0000\u00011\u0000\u0000\u0001<\u0001@\u0004\n\u0004\u0000\u0004\nleng\r\u0002\b\u0000\u0001o\u0000\u0000\u0001;\u0001<\u0003\u000b\u0003\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001\u0000\u0002\u0002\t\u0002\n\r\u0002\t\u0000\u0003l\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0002\u0002\n\u0000\u0002\u0002\u000b\u0002\f\r\u0002\u000b\u0000\u0002r\u0000\u0000\u0001\u0001\u0002\r\u0002\u000e\r\u0002\r\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u0012\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u0013\u000e\u0002\u0013\u0000\u0001\u0002\u0014\u0011\u0002\u0014\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002\u0010\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u0015\u000e\u0002\u0015\u0000\u0001\u0002\u0016\u0011\u0002\u0016\u0000\u0002\u0000\n\r\u0002\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002\f\u0000\u0002\u0002\u0017\r\u0002\u0017\u0000\u0003I\u0000\u0002\u0001\u0001\u0002\u0018\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0002\u0018\u0000\u0003\u0002\u0019\u0002\u001a\n\u0000\u0004\npbid\r\u0002\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u0002\u001a\u0000\u0003\u0002\u001b\n\u0000\u0004\nkeyi\r\u0002\u001b\u0000\u0001m\u0000\u0000\u0001\u0001\u0007\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u001c\u0002\u001d\r\u0002\u001c\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u001d\u0000\u0002\u0002\u001e\r\u0002\u001e\u0000\u0001L\u0000\u0000\u0001\u0001\u0002\u001f\r\u0002\u001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0002 \u0002!\r\u0002 \u0000\u0002b\u0000\u0000\u0001\u0001\u0002\"\u0002#\r\u0002\"\u0000\u0002b\u0000\u0000\u0001\u0001\u0002$\u0002%\r\u0002$\u0000\u0002b\u0000\u0000\u0001\u0001\u0002&\u0002'\r\u0002&\u0000\u0001m\u0000\u0000\u0001\u0001\u0002(\u000e\u0002(\u0000\u0001\u0002)\u0011\u0002)\u0000\u0002\u0000(\r\u0002'\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002%\u0000\u0001m\u0000\u0000\u0001\u0001\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002#\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002!\u0000\u0001m\u0000\u0000\u0001\u0001\u0002,\u000e\u0002,\u0000\u0001\u0002-\u0011\u0002-\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002.\u000f\u0002.\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0007Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u011auH+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00001V%\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u011a\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000_\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000\u001eLeopard:Applications:Radar.app\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0002\/\r\u0002\/\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u00020\u00021\u00022\u0001\u0000\u0000\u0010\u00020\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u00021\u0000\u0007\u0010\u0000\b\u00023\u00024\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00023\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00024\u0000\u0014\u0000\u0015\u0000\u001e\n\u0000\u0004\nleng\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\u0007\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0004\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0005\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0006\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EO\/E`\u0000\u0010O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0011\\Z2E`\u0000\u0012Y\u0000\bjvE`\u0000\u0012O*_\u0000\u0010_\u0000\u0012a\u0000\u0011+\u0000\u0013EO\u000f\u000f\u000e\u00022\u0000\u0007\u0010\u0000}\u00025\u00026\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u00027\u0003\u0000\b\u000e\u00027\u0000\b\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u00025\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u00026\u0000@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0012\u0001\u0014\u0001 \u0001\"\u0001.\u00010\u0001<\u0001>\u0001J\u0001L\u0001X\u0001Z\u0001l\u0001n\u0001s\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0002\u0002\u0004\u0002\u0013\u0002\u0015\u0002(\u0002*\u0002,\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0004\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\ndesc\n\u0000\u0004\ndiag\n\u0000\u0004\ncmvr\n\u0000\u0004\ncmnm\n\u0000\u0004\nrcod\n\u0000\u0004\norig\n\u0000\u0004\npbti\n\u0000\u0004\nconf\n\u0000\u0004\nclcd\n\u0000\u0004\ndsav\u0003\u0000\u0014\n\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001EOkEOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%a\u0000\u0010%EOa\u0000\u0011%%a\u0000\u0012%EOa\u0000\u0013%%a\u0000\u0014%EOa\u0000\u0015%%a\u0000\u0016%EO\u0017\u0000+ka\u0000\u0017,Ekh\u001c\u0000\ra\u0000\u0018%%a\u0000\u0019%a\u0000\u001a\/%a\u0000\u001b%E[OYY\u0000*a\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&\f\u0000'EO\u0014\u0000\fa\u0000(&EW\u0000'X\u0000)\u0000*[a\u0000+\\[Zm\\Zi2EOa\u0000,%a\u0000-%%a\u0000.%\u000fOa\u0000\/%%a\u00000%EO\u0017\u0000Lka\u0000\u0017,Ekh\u001c\u0000\ra\u00001%a\u0000\u001a\/%a\u00002%EO*a\u00003a\u0000\u001a\/a\u00004\f\u00005E^\u0000\u0010Oa\u00006%]\u0000\u0010%a\u00007%E[OYOa\u00008%a\u00009%EO*a\u00004a\u0000:a\u0000;\f\u0000<Oa\u0000=%a\u0000>%%a\u0000?%\u000fU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\u0007\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000K\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000G\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000G\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0004Z\u0000\u0000\u0000L\u0000l\u0000S\u0000T\u0000U\r\u0000S\u0000\u0002?\u0000\u0000\u0000L\u0000O\u0000V\u0000W\r\u0000V\u0000\u0001o\u0000\u0000\u0000L\u0000M\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000W\u0000\u0001m\u0000\u0000\u0000M\u0000N\u0003\u0000\u0007\r\u0000T\u0000\u0002r\u0000\u0000\u0000R\u0000c\u0000X\u0000Y\r\u0000X\u0000\u0002n\u0000\u0000\u0000R\u0000_\u0000Z\u0000[\r\u0000Z\u0000\u00037\u0001\u0000\u0000S\u0000_\u0000\\\u0000]\n\u0000\u0004\ncobj\r\u0000\\\u0000\u0001m\u0000\u0000\u0000W\u0000[\u0003\u0000\b\r\u0000]\u0000\u0001o\u0000\u0000\u0000\\\u0000^\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000[\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000U\u0000\u0002r\u0000\u0000\u0000f\u0000l\u0000^\u0000_\r\u0000^\u0000\u0001J\u0000\u0000\u0000f\u0000h\u0002\u0000\u0000\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000R\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000m\u0000\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0000\u0000m\u0000\u0000d\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0001o\u0000\u0000\u0000n\u0000o\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000p\u0000q\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000q\u0000r\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000r\u0000s\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000t\u0000w\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000r\u0000\u0002\u0000s\r\u0000s\u0000\u0001o\u0000\u0000\u0000w\u0000z\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000a\u0000\u0002\u0000t\r\u0000t\u0000\u0001L\u0000\u0000\u0000\u0000\u0000u\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000|\u0000}\r\u0000|\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000~\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000}\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001^\u0000\u0002\u0000\u0001\tFuture OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u011awH+\u0000\u0000\u0000\u0006\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006'\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u011a\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u0000\u0006\u0000\u0006N\u0000\u0002\u0000.Future OS:AppleInternal:Applications:Radar.app\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000F\u0000u\u0000t\u0000u\u0000r\u0000e\u0000 \u0000O\u0000S\u0000\u0012\u0000$AppleInternal\/Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u0012\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0004\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\f\u0000\u0000\u0000{ 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0003\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u001a\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u001b\u0000\u001b\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u001b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000#\u0001t\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000'\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000'\u00000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000.\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000'\u0000*\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00001\u0000:\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00008\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00004\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00006\u00007\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000;\u0000D\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000B\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000;\u0000>\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000;\u0000<\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002r\u0000\u0000\u0000E\u0000J\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0002b\u0000\u0000\u0000E\u0000H\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0001\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000K\u0000R\u0001\f\u0001\r\r\u0001\f\u0000\u0002b\u0000\u0000\u0000K\u0000P\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u0012\u000e\u0001\u0012\u0000\u0001\u0001\u0013\u0011\u0001\u0013\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u000f\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\r\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0001\u0014\u000e\u0001\u0014\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u0000\u0002\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0002b\u0000\u0000\u0000U\u0000\\\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0002b\u0000\u0000\u0000U\u0000Z\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002b\u0000\u0000\u0000U\u0000X\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u001f\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001 \u000e\u0001 \u0000\u0001\u0001!\u0011\u0001!\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001\u001d\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001\u001b\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0001\"\u000e\u0001\"\u0000\u0001\u0001#\u0011\u0001#\u0000\u0002\u0000\n\r\u0001\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002r\u0000\u0000\u0000_\u0000j\u0001&\u0001'\r\u0001&\u0000\u0002b\u0000\u0000\u0000_\u0000h\u0001(\u0001)\r\u0001(\u0000\u0002b\u0000\u0000\u0000_\u0000d\u0001*\u0001+\r\u0001*\u0000\u0002b\u0000\u0000\u0000_\u0000b\u0001,\u0001-\r\u0001,\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001-\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0001.\u000e\u0001.\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u0001+\u0000\u0001o\u0000\u0000\u0000b\u0000c~\u000b~\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u0001)\u0000\u0001m\u0000\u0000\u0000d\u0000g\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0002\u0000\n\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001%\u0000\u0002\u00012\u00013\r\u00012\u0000\u0002r\u0000\u0000\u0000k\u0000x\u00014\u00015\r\u00014\u0000\u0002b\u0000\u0000\u0000k\u0000v\u00016\u00017\r\u00016\u0000\u0002b\u0000\u0000\u0000k\u0000r\u00018\u00019\r\u00018\u0000\u0002b\u0000\u0000\u0000k\u0000p\u0001:\u0001;\r\u0001:\u0000\u0001o\u0000\u0000\u0000k\u0000l|\u000b|\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001;\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001<\u000e\u0001<\u0000\u0001\u0001=\u0011\u0001=\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u00019\u0000\u0001o\u0000\u0000\u0000p\u0000q{\u000b{\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u00017\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0001>\u000e\u0001>\u0000\u0001\u0001?\u0011\u0001?\u0000\u0002\u0000\n\r\u00015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u00013\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0002r\u0000\u0000\u0000y\u0000\u0001B\u0001C\r\u0001B\u0000\u0002b\u0000\u0000\u0000y\u0000\u0001D\u0001E\r\u0001D\u0000\u0002b\u0000\u0000\u0000y\u0000\u0001F\u0001G\r\u0001F\u0000\u0002b\u0000\u0000\u0000y\u0000~\u0001H\u0001I\r\u0001H\u0000\u0001o\u0000\u0000\u0000y\u0000zy\u000by\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001I\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0001J\u000e\u0001J\u0000\u0001\u0001K\u0011\u0001K\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001G\u0000\u0001o\u0000\u0000\u0000~\u0000x\u000bx\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001L\u000e\u0001L\u0000\u0001\u0001M\u0011\u0001M\u0000\u0002\u0000\n\r\u0001C\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000w\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001A\u0000\u0002\u0001N\u0001O\r\u0001N\u0000\u0002r\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0002b\u0000\u0000\u0000\u0000\u0001R\u0001S\r\u0001R\u0000\u0002b\u0000\u0000\u0000\u0000\u0001T\u0001U\r\u0001T\u0000\u0002b\u0000\u0000\u0000\u0000\u0001V\u0001W\r\u0001V\u0000\u0001o\u0000\u0000\u0000\u0000v\u000bv\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001W\u0000\u0001m\u0000\u0000\u0000\u0000\u0001X\u000e\u0001X\u0000\u0001\u0001Y\u0011\u0001Y\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000u\u000bu\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u0000\u0001Z\u000e\u0001Z\u0000\u0001\u0001[\u0011\u0001[\u0000\u0002\u0000\n\r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000t\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001O\u0000\u0002\u0001\\s\r\u0001\\\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001]r\u0001^\u0001_q\r\u0001]\u0000\u0002r\u0000\u0000\u0000\u0000\u0001`\u0001a\r\u0001`\u0000\u0002b\u0000\u0000\u0000\u0000\u0001b\u0001c\r\u0001b\u0000\u0002b\u0000\u0000\u0000\u0000\u0001d\u0001e\r\u0001d\u0000\u0002b\u0000\u0000\u0000\u0000\u0001f\u0001g\r\u0001f\u0000\u0002b\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001l\u000e\u0001l\u0000\u0001\u0001m\u0011\u0001m\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000o\u000bo\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001g\u0000\u0001m\u0000\u0000\u0000\u0000\u0001n\u000e\u0001n\u0000\u0001\u0001o\u0011\u0001o\u0000\u0004\u0000:\u0000 \r\u0001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u00024\u0000\u0000\u0000\u0000n\u0001r\nn\u0000\u0004\ncobj\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000l\u000bl\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001c\u0000\u0001m\u0000\u0000\u0000\u0000\u0001s\u000e\u0001s\u0000\u0001\u0001t\u0011\u0001t\u0000\u0002\u0000\n\r\u0001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\u000br\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001^\u0000\u0001m\u0000\u0000\u0000\u0000j\u0003j\u0000\u0001\r\u0001_\u0000\u0003l\u0000\u0005\u0000\u0000\u0001uih\r\u0001u\u0000\u0002n\u0000\u0000\u0000\u0000\u0001v\u0001w\r\u0001v\u0000\u00011\u0000\u0000\u0000\u0000g\ng\u0000\u0004\nleng\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001i\u0000\u0000\u0001h\u0000\u0000\u0001q\u0000\u0000\u0002s\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001t\u0001x\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0002r\u0000\u0000\u0000\u0000\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0000\u0000\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000\u000e\u00006\u00002\u00004\u00006\u00009\u00004\u00007\r\u0001|\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000e\u000be\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001z\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000d\u0001\u0001\u0001d\u0000\u0000\f\u0001\u0000,\u0000&NewProblem description myDescription \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000N\u0000e\u0000w\u0000P\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000m\u0000y\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000c\u0001\u0001\u0001c\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013\tdiagnosis myDiag \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000\t\u0000d\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000 \u0000m\u0000y\u0000D\u0000i\u0000a\u0000g\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000b\u0001\u0001\u0001b\u0000\u0000\f\u0001\u0000,\u0000&\tcomponentVersion myComponentVersion \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000L\u0000\t\u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000m\u0000y\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000a\u0001\u0001\u0001a\u0000\u0000\f\u0001\u0000&\u0000 \tcomponentName myComponentName \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000@\u0000\t\u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000m\u0000y\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000`\u0001\u0001\u0001`\u0000\u0000\f\u0001\u00002\u0000,\treproducibilityCode myReproducibilityCode \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000X\u0000\t\u0000r\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000m\u0000y\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000_\u0001\u0001\u0001_\u0000\u0000\f\u0001\u0000\u001e\u0000\u0018\toriginator myPersonID \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00000\u0000\t\u0000o\u0000r\u0000i\u0000g\u0000i\u0000n\u0000a\u0000t\u0000o\u0000r\u0000 \u0000m\u0000y\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000^\u0001\u0001\u0001^\u0000\u0000\f\u0001\u0000$\u0000\u001e\tproblemTitle myProblemTitle \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000<\u0000\t\u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000m\u0000y\u0000P\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000]\u0001\u0001\u0001]\u0000\u0000\f\u0001\u0000\u0018\u0000\u0012\tconfig myConfig \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000$\u0000\t\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000m\u0000y\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\\\u0001\u0001\u0001\\\u0000\u0000\f\u0001\u0000'\u0000!\tclassCode myClassificationCode \u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000B\u0000\t\u0000c\u0000l\u0000a\u0000s\u0000s\u0000C\u0000o\u0000d\u0000e\u0000 \u0000m\u0000y\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000o\u0000d\u0000e\u0000 \u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000[\u0001\u0001\u0001[\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013\tdoSave saveNewProb\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000\t\u0000d\u0000o\u0000S\u0000a\u0000v\u0000e\u0000 \u0000s\u0000a\u0000v\u0000e\u0000N\u0000e\u0000w\u0000P\u0000r\u0000o\u0000b\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000ZYX\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000W\u0001\u0001\u0001W\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0000\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000U\nU\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000T\u000bT\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000SRQ\nS\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001R\u0000\u0000\u0002Q\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0000\u0000P\u0001\u0001\nP\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000O\u0003O\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000N\u0003N\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001K\r\u0001\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000I\u000bI\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002K\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000HGF\u0001H\u0000\u0000\u0001G\u0000\u0000\u0001F\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0001\n\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0001\b\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0001\u0004\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0000\u0001\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000E\u000bE\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0001\u0001\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003D\u000bD\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0007\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001\u000b\u0001\u000bBA@\u0001B\u0000\u0000\u0001A\u0000\u0000\u0001@\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u0001\u000b\u0001X\u0001?\u0001\u0001>\r\u0001\u0000\u0001k\u0000\u0000\u0001\u001a\u0001S\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u001a\u0001,\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u001a\u0001*\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u001a\u0001&\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u001a\u0001\u001f\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001a\u0001\u001b=\u000b=\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001b\u0001\u001e\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001\u001f\u0001%\u0001<;\r\u0001\u0000\u0002n\u0000\u0000\u0001\u001f\u0001%\u0001\u0002\u0000\r\u0001\u0000\u00024\u0000\u0000\u0001 \u0001%:\u0002\u0001\n:\u0000\u0004\ncobj\r\u0002\u0001\u0000\u0001o\u0000\u0000\u0001#\u0001$9\u000b9\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001\u001f\u0001 8\u000b8\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001<\u0000\u0000\u0001;\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001&\u0001)\u0002\u0002\u000e\u0002\u0002\u0000\u0001\u0002\u0003\u0011\u0002\u0003\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002r\u0000\u0000\u0001-\u0001C\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0003I\u0000\u0002\u0001-\u0001?65\u0002\b\n6\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u00015\u0000\u0000\u0006\u0002\b\u0000\u00034\u0002\t\u0002\n\n4\u0000\u0004\nmr11\r\u0002\t\u0000\u0003l\u0000\u0005\u00011\u00017\u0002\u000b32\r\u0002\u000b\u0000\u0002n\u0000\u0000\u00011\u00017\u0002\f\u0002\r\r\u0002\f\u0000\u00024\u0000\u0000\u00012\u000171\u0002\u000e\n1\u0000\u0004\ncobj\r\u0002\u000e\u0000\u0001o\u0000\u0000\u00015\u000160\u000b0\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002\r\u0000\u0001o\u0000\u0000\u00011\u00012\/\u000b\/\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u00013\u0000\u0000\u00012\u0000\u0000\u0006\u0002\n\u0000\u0003.\u0002\u000f-\n.\u0000\u0004\npbid\r\u0002\u000f\u0000\u0001o\u0000\u0000\u0001:\u0001;,\u000b,\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006-\u0000\u0000\r\u0002\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000+\u000b+\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0002\u0005\u0000\u0002\u0002\u0010*\r\u0002\u0010\u0000\u0002r\u0000\u0000\u0001D\u0001S\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0002b\u0000\u0000\u0001D\u0001Q\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0002b\u0000\u0000\u0001D\u0001M\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0002b\u0000\u0000\u0001D\u0001I\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0001o\u0000\u0000\u0001D\u0001E)\u000b)\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u0018\u0000\u0001m\u0000\u0000\u0001E\u0001H\u0002\u0019\u000e\u0002\u0019\u0000\u0001\u0002\u001a\u0011\u0002\u001a\u0000\u0014\u0000a\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0002\u0016\u0000\u0001o\u0000\u0000\u0001I\u0001L(\u000b(\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0001M\u0001P\u0002\u001b\u000e\u0002\u001b\u0000\u0001\u0002\u001c\u0011\u0002\u001c\u0000\u0002\u0000\n\r\u0002\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000'\u000b'\u0000\u00070\u0000\u0003res\u0000\u0000\u0002*\u0000\u0000\u000b?\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u000f&\u0003&\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0001\u000f\u0001\u0015\u0002\u001d%$\r\u0002\u001d\u0000\u0002n\u0000\u0000\u0001\u000f\u0001\u0015\u0002\u001e\u0002\u001f\r\u0002\u001e\u0000\u00011\u0000\u0000\u0001\u0010\u0001\u0014#\n#\u0000\u0004\nleng\r\u0002\u001f\u0000\u0001o\u0000\u0000\u0001\u000f\u0001\u0010\"\u000b\"\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001%\u0000\u0000\u0001$\u0000\u0000\u0001>\u0000\u0000\u0002\u0001\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0003l\u0000\u0002\u0001Y\u0001Y! \u001f\u0001!\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0002!\u0000\u0002\u0002\"\u0002#\r\u0002\"\u0000\u0002r\u0000\u0000\u0001Y\u0001d\u0002$\u0002%\r\u0002$\u0000\u0002b\u0000\u0000\u0001Y\u0001b\u0002&\u0002'\r\u0002&\u0000\u0002b\u0000\u0000\u0001Y\u0001^\u0002(\u0002)\r\u0002(\u0000\u0001o\u0000\u0000\u0001Y\u0001Z\u001e\u000b\u001e\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002)\u0000\u0001m\u0000\u0000\u0001Z\u0001]\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002'\u0000\u0001m\u0000\u0000\u0001^\u0001a\u0002,\u000e\u0002,\u0000\u0001\u0002-\u0011\u0002-\u0000\u0002\u0000\n\r\u0002%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u000b\u001d\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002#\u0000\u0002\u0002.\u001c\r\u0002.\u0000\u0003I\u0000\u0002\u0001e\u0001t\u001b\u001a\u0002\/\n\u001b\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u001a\u0000\u0000\u0006\u0002\/\u0000\u0003\u0019\u00020\u00021\n\u0019\u0000\u0004\npbid\r\u00020\u0000\u0001o\u0000\u0000\u0001i\u0001j\u0018\u000b\u0018\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u00021\u0000\u0003\u0017\u00022\u0016\n\u0017\u0000\u0004\nkeyi\r\u00022\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0015\u0007\u0015\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0016\u0000\u0000\u0002\u001c\u0000\u0000\u0002\u0000\u0000\u0002\u00023\u00024\r\u00023\u0000\u0003l\u0000\u0002\u0001u\u0001u\u0014\u0013\u0012\u0001\u0014\u0000\u0000\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0002\u00024\u0000\u0002\u00025\u0011\r\u00025\u0000\u0001L\u0000\u0000\u0001u\u0001\u00026\r\u00026\u0000\u0002b\u0000\u0000\u0001u\u0001\u00027\u00028\r\u00027\u0000\u0002b\u0000\u0000\u0001u\u0001\u00029\u0002:\r\u00029\u0000\u0002b\u0000\u0000\u0001u\u0001~\u0002;\u0002<\r\u0002;\u0000\u0002b\u0000\u0000\u0001u\u0001z\u0002=\u0002>\r\u0002=\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0002?\u000e\u0002?\u0000\u0001\u0002@\u0011\u0002@\u0000\u0002\u0000(\r\u0002>\u0000\u0001o\u0000\u0000\u0001x\u0001y\u0010\u000b\u0010\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002<\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0002A\u000e\u0002A\u0000\u0001\u0002B\u0011\u0002B\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002:\u0000\u0001o\u0000\u0000\u0001~\u0001\u000f\u000b\u000f\u0000\u00070\u0000\u0003res\u0000\u0000\r\u00028\u0000\u0001m\u0000\u0000\u0001\u0001\u0002C\u000e\u0002C\u0000\u0001\u0002D\u0011\u0002D\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002E\u000f\u0002E\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001^\u0000\u0002\u0000\u0001\tFuture OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u011awH+\u0000\u0000\u0000\u0006\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006'\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u011a\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u0000\u0006\u0000\u0006N\u0000\u0002\u0000.Future OS:AppleInternal:Applications:Radar.app\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0014\u0000\t\u0000F\u0000u\u0000t\u0000u\u0000r\u0000e\u0000 \u0000O\u0000S\u0000\u0012\u0000$AppleInternal\/Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0002F\u000e\r\u0002F\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\r\f\u000b\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u000e\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\n\u0002G\u0002H\u0002I\u0001\n\u0000\u0000\u0010\u0002G\u0000\u0002\t\b\n\t\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0002H\u0000\u0007\u0010\u0007\u0000\b\u0006\u0005\u0002J\u0002K\u0004\n\u0007\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0006\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0005\u0000\u0000\u0010\u0002J\u0000\u0001\u0003\u000b\u0003\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0002K\u0000\u0014\u0002\u0001\u0000\u0015\u0000\u0000\u001e\n\u0002\u0000\u0004\nleng\u000b\u0001\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\u0007\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0004\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0005\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0006\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0004\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EO\/E`\u0000\u0010O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0011\\Z2E`\u0000\u0012Y\u0000\bjvE`\u0000\u0012O*_\u0000\u0010_\u0000\u0012a\u0000\u0011+\u0000\u0013EO\u000f\u000f\u000e\u0002I\u0000\u0007\u0010\u0000}\u0002L\u0002M\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u0002N\u0003\u0000\b\u000e\u0002N\u0000\b\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u0002L\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u0002M\u00005\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0012\u0001\u0014\u0001 \u0001\"\u0001.\u00010\u0001<\u0001>\u0001J\u0001L\u0001X\u0001Z\u0001l\u0001n\u0001s\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0002\u0002\u0019\u0002\u001b\u0002*\u0002,\u0002?\u0002A\u0002C\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0004\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001xEOkEOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%a\u0000\u0010%EOa\u0000\u0011%%a\u0000\u0012%EOa\u0000\u0013%%a\u0000\u0014%EOa\u0000\u0015%%a\u0000\u0016%EO\u0017\u0000+ka\u0000\u0017,Ekh\u001c\u0000\ra\u0000\u0018%%a\u0000\u0019%a\u0000\u001a\/%a\u0000\u001b%E[OYY\u0000a\u0000\u001cEO\u0014\u0000\fa\u0000\u001d&EW\u0000'X\u0000\u001e\u0000\u001f[a\u0000 \\[Zm\\Zi2EOa\u0000!%a\u0000\"%%a\u0000#%\u000fOa\u0000$%%a\u0000%%EO\u0017\u0000Lka\u0000\u0017,Ekh\u001c\u0000\ra\u0000&%a\u0000\u001a\/%a\u0000'%EO*a\u0000(a\u0000\u001a\/a\u0000)\f\u0000*E^\u0000\u0010Oa\u0000+%]\u0000\u0010%a\u0000,%E[OYOa\u0000-%a\u0000.%EO*a\u0000)a\u0000\/a\u00000\f\u00001Oa\u00002%a\u00003%%a\u00004%\u000fU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"ddfaa2759b39e3fa02b81d3e010d9a49ae2c8e97","subject":"update apple script","message":"update apple script\n","repos":"eendroroy\/alien-minimal","old_file":"alien-minimal.scpt","new_file":"alien-minimal.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0002\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0002\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0002O\u0000\u0000\u0000\n\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0012\u0002\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\u0000\u0010\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001f\u0000\u0013\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0013\u0000\u0003\u0000\u0014\n\u0000\u0004\nText\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000F\u0000a\u0000s\u0000c\u0000i\u0000i\u0000n\u0000e\u0000m\u0000a\u0000 \u0000r\u0000e\u0000c\u0000 \u0000~\u0000\/\u0000a\u0000l\u0000i\u0000e\u0000n\u0000-\u0000m\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000-\u00001\u0000.\u00000\u0000.\u00005\u0006\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\u0019\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000\u001c\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u001c\u0000\u0003\u0000\u001d\n\u0000\u0004\nText\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0012\u0000z\u0000 \u0000a\u0000m\u0000-\u0000d\u0000e\u0000m\u0000o\u0006\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000.\u00003\u0000\"\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\"\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000!\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003I\u0000\u0002\u00004\u0000;\u0000%\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000%\u0000\u0003\u0000&\n\u0000\u0004\nText\r\u0000&\u0000\u0001m\u0000\u0000\u00006\u00007\u0000'\u000e\u0000'\u0000\u0001\u0000(\u0011\u0000(\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003I\u0000\u0002\u0000<\u0000A\u0000+\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000+\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000*\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000B\u0000I\u0000.\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000.\u0000\u0003\u0000\/\n\u0000\u0004\nText\r\u0000\/\u0000\u0001m\u0000\u0000\u0000D\u0000E\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000J\u0000O\u00004\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00004\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u00003\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000P\u0000W\u00007\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u00007\u0000\u0003\u00008\n\u0000\u0004\nText\r\u00008\u0000\u0001m\u0000\u0000\u0000R\u0000S\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000`\u0000A\u0000M\u0000_\u0000V\u0000E\u0000R\u0000S\u0000I\u0000O\u0000N\u0000S\u0000_\u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000=\u0000(\u0000R\u0000U\u0000B\u0000Y\u0000 \u0000P\u0000Y\u0000T\u0000H\u0000O\u0000N\u0000 \u0000J\u0000A\u0000V\u0000A\u0000 \u0000G\u0000O\u0000 \u0000C\u0000R\u0000Y\u0000S\u0000T\u0000A\u0000L\u0000)\u0006\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000X\u0000]\u0000=\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000=\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003I\u0000\u0002\u0000^\u0000e\u0000@\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000@\u0000\u0003\u0000A\n\u0000\u0004\nText\r\u0000A\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u00000\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000v\u0000e\u0000n\u0000v\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0006\u0000\u0000\u0002\u0000?\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000f\u0000k\u0000F\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000F\u0000\u0001m\u0000\u0000\u0000f\u0000g\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003I\u0000\u0002\u0000l\u0000s\u0000I\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000I\u0000\u0003\u0000J\n\u0000\u0004\nText\r\u0000J\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0000K\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000t\u0000y\u0000O\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000O\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000N\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000z\u0000\u0000R\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000R\u0000\u0003\u0000S\n\u0000\u0004\nText\r\u0000S\u0000\u0001m\u0000\u0000\u0000|\u0000}\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0002\u0000\u0000\u0000X\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0002\u0000\u0000\u0000[\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000[\u0000\u0003\u0000\\\n\u0000\u0004\nText\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003I\u0000\u0002\u0000\u0000\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\n\u0002\u0000\u0000\u0002\u0000`\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000d\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000d\u0000\u0003\u0000e\n\u0000\u0004\nText\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000<\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000=\u0000'\u0000-\u0000-\u0000>\u0000 \u0000'\u0006\u0000\u0000\u0002\u0000c\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000\u0000\u0000j\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000j\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000i\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003I\u0000\u0002\u0000\u0000\u0000m\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000m\u0000\u0003\u0000n\n\u0000\u0004\nText\r\u0000n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u00004\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000E\u0000N\u0000D\u0000_\u0000T\u0000A\u0000G\u0000=\u0000'\u0000 \u0000$\u0000'\u0006\u0000\u0000\u0002\u0000l\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003I\u0000\u0002\u0000\u0000\u0000s\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000s\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000r\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000v\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000v\u0000\u0003\u0000w\n\u0000\u0004\nText\r\u0000w\u0000\u0001m\u0000\u0000\u0000\u0000\u0000x\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000u\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000E\u0000R\u0000R\u0000O\u0000R\u0000_\u0000O\u0000N\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000=\u00001\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0003\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\t\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0005\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\n\u0001\u0013\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000E\u0000N\u0000D\u0000_\u0000T\u0000A\u0000G\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0014\u0001\u0019\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u001a\u0001#~}\u0000\n~\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001}\u0000\u0000\u0006\u0000\u0000\u0003|\u0000{\n|\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00001\u0006{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001$\u0001)z\u0000y\nz\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001%x\u0003x\u0000\u0002\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001*\u00013wv\u0000\nw\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001v\u0000\u0000\u0006\u0000\u0000\u0003u\u0000t\nu\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001,\u0001\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00002\u0006t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00014\u00019s\u0000r\ns\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u00014\u00015q\u0003q\u0000\u0003\u0002r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001:\u0001Cpo\u0000\np\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001o\u0000\u0000\u0006\u0000\u0000\u0003n\u0000m\nn\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00002\u0006m\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001D\u0001Il\u0000k\nl\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001D\u0001Ej\u0003j\u0000\u0002\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001J\u0001Sih\u0000\ni\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001h\u0000\u0000\u0006\u0000\u0000\u0003g\u0000f\ng\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00000\u0006f\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001T\u0001Ye\u0000d\ne\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001T\u0001Uc\u0003c\u0000\u0002\u0002d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001Z\u0001cba\u0000\nb\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001a\u0000\u0000\u0006\u0000\u0000\u0003`\u0000_\n`\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\\\u0001_\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00003\u0006_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001d\u0001k^\u0000]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001d\u0001g\\\u0003\\\u0000\u0004\u0002]\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001l\u0001u[Z\u0000\n[\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001Z\u0000\u0000\u0006\u0000\u0000\u0003Y\u0000X\nY\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001n\u0001q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00000\u0006X\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001v\u0001{W\u0000V\nW\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001v\u0001wU\u0003U\u0000\u0002\u0002V\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001|\u0001TS\u0000\nT\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001S\u0000\u0000\u0006\u0000\u0000\u0003R\u0000Q\nR\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001~\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00002\u0006Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001P\u0000O\nP\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001N\u0003N\u0000\u0004\u0002O\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001ML\u0000\nM\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001L\u0000\u0000\u0006\u0000\u0000\u0003K\u0000J\nK\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000F\u0000U\u0000L\u0000L\u0000_\u0000D\u0000I\u0000R\u0000=\u00001\u0006J\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001I\u0000H\nI\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001G\u0003G\u0000\u0002\u0002H\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001FE\u0000\nF\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001E\u0000\u0000\u0006\u0000\u0000\u0003D\u0000C\nD\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000F\u0000U\u0000L\u0000L\u0000_\u0000D\u0000I\u0000R\u0000=\u00000\u0006C\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001B\u0000A\nB\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001@\u0003@\u0000\u0002\u0002A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001?>\u0000\n?\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001>\u0000\u0000\u0006\u0000\u0000\u0003=\u0000<\n=\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006<\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0002\u0001\u0001;\u0001\u0003:\n;\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0001\u00019\u00039\u0000\u0002\u0002:\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0001\u000187\u0001\u0006\n8\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u00017\u0000\u0000\u0006\u0001\u0006\u0000\u00036\u0001\u00075\n6\u0000\u0004\nText\r\u0001\u0007\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\b\u000e\u0001\b\u0000\u0001\u0001\t\u0011\u0001\t\u0000\b\u0000t\u0000r\u0000u\u0000e\u00065\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\n\u0001\u000b\r\u0001\n\u0000\u0003I\u0000\u0002\u0001\u00014\u0001\f3\n4\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\f\u0000\u0001m\u0000\u0000\u0001\u00012\u00032\u0000\u0002\u00023\u0000\u0000\u0002\u0001\u000b\u0000\u0002\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003I\u0000\u0002\u0001\u000110\u0001\u000f\n1\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u00010\u0000\u0000\u0006\u0001\u000f\u0000\u0003\/\u0001\u0010.\n\/\u0000\u0004\nText\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u00004\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000H\u0000I\u0000D\u0000E\u0000_\u0000E\u0000X\u0000I\u0000T\u0000_\u0000C\u0000O\u0000D\u0000E\u0000=\u00001\u0006.\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003I\u0000\u0002\u0001\u0001-\u0001\u0015,\n-\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001+\u0003+\u0000\u0002\u0002,\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003I\u0000\u0002\u0001\u0001*)\u0001\u0018\n*\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001)\u0000\u0000\u0006\u0001\u0018\u0000\u0003(\u0001\u0019'\n(\u0000\u0004\nText\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006'\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0003I\u0000\u0002\u0001\u0001&\u0001\u001e%\n&\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0001\u0001$\u0003$\u0000\u0002\u0002%\u0000\u0000\u0002\u0001\u001d\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0003I\u0000\u0002\u0001\u0001#\"\u0001!\n#\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\"\u0000\u0000\u0006\u0001!\u0000\u0003!\u0001\" \n!\u0000\u0004\nText\r\u0001\"\u0000\u0001m\u0000\u0000\u0001\u0001\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006 \u0000\u0000\u0002\u0001 \u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0003I\u0000\u0002\u0001\u0001\u001f\u0001'\u001e\n\u001f\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001'\u0000\u0001m\u0000\u0000\u0001\u0001\u001d\u0003\u001d\u0000\u0002\u0002\u001e\u0000\u0000\u0002\u0001&\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0001\u0002\u0007\u001c\u001b\u0001*\n\u001c\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u001b\u0000\u0000\u0006\u0001*\u0000\u0003\u001a\u0001+\u0019\n\u001a\u0000\u0004\nText\r\u0001+\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0003\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000(\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000m\u0000o\u0000n\u0000o\u0006\u0019\u0000\u0000\u0002\u0001)\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0003I\u0000\u0002\u0002\b\u0002\r\u0018\u00010\u0017\n\u0018\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00010\u0000\u0001m\u0000\u0000\u0002\b\u0002\t\u0016\u0003\u0016\u0000\u0002\u0002\u0017\u0000\u0000\u0002\u0001\/\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003I\u0000\u0002\u0002\u000e\u0002\u0017\u0015\u0014\u00013\n\u0015\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0014\u0000\u0000\u0006\u00013\u0000\u0003\u0013\u00014\u0012\n\u0013\u0000\u0004\nText\r\u00014\u0000\u0001m\u0000\u0000\u0002\u0010\u0002\u0013\u00015\u000e\u00015\u0000\u0001\u00016\u0011\u00016\u00006\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000m\u0000o\u0000n\u0000o\u0000_\u0000b\u0000r\u0000i\u0000g\u0000h\u0000t\u0006\u0012\u0000\u0000\u0002\u00012\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003I\u0000\u0002\u0002\u0018\u0002\u001d\u0011\u00019\u0010\n\u0011\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00019\u0000\u0001m\u0000\u0000\u0002\u0018\u0002\u0019\u000f\u0003\u000f\u0000\u0002\u0002\u0010\u0000\u0000\u0002\u00018\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003I\u0000\u0002\u0002\u001e\u0002'\u000e\r\u0001<\n\u000e\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\r\u0000\u0000\u0006\u0001<\u0000\u0003\f\u0001=\u000b\n\f\u0000\u0004\nText\r\u0001=\u0000\u0001m\u0000\u0000\u0002 \u0002#\u0001>\u000e\u0001>\u0000\u0001\u0001?\u0011\u0001?\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0006\u000b\u0000\u0000\u0002\u0001;\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0002\u0002(\u0002-\n\u0001B\t\n\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001B\u0000\u0001m\u0000\u0000\u0002(\u0002)\b\u0003\b\u0000\u0002\u0002\t\u0000\u0000\u0002\u0001A\u0000\u0002\u0001C\u0001D\r\u0001C\u0000\u0003I\u0000\u0002\u0002.\u00027\u0007\u0006\u0001E\n\u0007\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0006\u0000\u0000\u0006\u0001E\u0000\u0003\u0005\u0001F\u0004\n\u0005\u0000\u0004\nText\r\u0001F\u0000\u0001m\u0000\u0000\u00020\u00023\u0001G\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000(\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000s\u0000o\u0000f\u0000t\u0006\u0004\u0000\u0000\u0002\u0001D\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003I\u0000\u0002\u00028\u0002=\u0003\u0001K\u0002\n\u0003\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001K\u0000\u0001m\u0000\u0000\u00028\u00029\u0001\u0003\u0001\u0000\u0002\u0002\u0002\u0000\u0000\u0002\u0001J\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0002>\u0002G\u0000\u0001N\n\u0000\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001N\u0000\u0003\u0001O\n\u0000\u0004\nText\r\u0001O\u0000\u0001m\u0000\u0000\u0002@\u0002C\u0001P\u000e\u0001P\u0000\u0001\u0001Q\u0011\u0001Q\u0000.\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0006\u0000\u0000\u0002\u0001M\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0003I\u0000\u0002\u0002H\u0002M\u0001T\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001T\u0000\u0001m\u0000\u0000\u0002H\u0002I\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001S\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0003I\u0000\u0002\u0002N\u0002W\u0001W\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001W\u0000\u0003\u0001X\n\u0000\u0004\nText\r\u0001X\u0000\u0001m\u0000\u0000\u0002P\u0002S\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\u001c\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0006\u0000\u0000\u0002\u0001V\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0003I\u0000\u0002\u0002X\u0002]\u0001]\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001]\u0000\u0001m\u0000\u0000\u0002X\u0002Y\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\\\u0000\u0002\u0001^\u0001_\r\u0001^\u0000\u0003I\u0000\u0002\u0002^\u0002g\u0001`\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001`\u0000\u0003\u0001a\n\u0000\u0004\nText\r\u0001a\u0000\u0001m\u0000\u0000\u0002`\u0002c\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0014\u0000d\u0000e\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0006\u0000\u0000\u0002\u0001_\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0002h\u0002m\u0001f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001f\u0000\u0001m\u0000\u0000\u0002h\u0002i\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001e\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003I\u0000\u0002\u0002n\u0002w\u0001i\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001i\u0000\u0003\u0001j\n\u0000\u0004\nText\r\u0001j\u0000\u0001m\u0000\u0000\u0002p\u0002s\u0001k\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\b\u0000e\u0000x\u0000i\u0000t\u0006\u0000\u0000\u0002\u0001h\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0002x\u0002}\u0001o\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001o\u0000\u0001m\u0000\u0000\u0002x\u0002y\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0001n\u0000\u0002\u0001p\r\u0001p\u0000\u0003I\u0000\u0002\u0002~\u0002\u0001q\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001q\u0000\u0003\u0001r\n\u0000\u0004\nText\r\u0001r\u0000\u0001m\u0000\u0000\u0002\u0002\u0001s\u000e\u0001s\u0000\u0001\u0001t\u0011\u0001t\u0000\b\u0000e\u0000x\u0000i\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\n\u0000\u000f\u0001u\u0001v\r\u0001u\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\nWcsn\r\u0001v\u0000\u00011\u0000\u0000\u0000\n\u0000\r\n\u0000\u0004\nCrwn\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001w\u000f\u0001w\u0001|\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u001e\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0002\u0000\u0019\/:Applications:iTerm.app\/\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0001x\u0001y\u0001\u0000\u0000\u0010\u0001x\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001y\u0000\u0007\u0010\u0001z\u0001{\u0001|\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001z\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001}\u0002\u0001}\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001{\u0000\u0000\u0010\u0001|\u00002\u0001w\u0000\u0015\u0000\u001e\u0000'\u00000\u00009\u0000B\u0000K\u0000T\u0000]\u0000f\u0000o\u0000x\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\b\u0001\u0011\u0001\u001a\u0001#\u0001,\u00015\u0001>\u0001G\u0001P\u0001Y\u0001b\u0001k\u0001s\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nCrwn\n\u0000\u0004\nWcsn\u0003\u0000\u0005\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nText\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0003\u0000\n\u0003\u0000\u0004\u0011\u0002\u0012\u0002*j\f\u0000\u0001O*,,\u0012\u0002wj\f\u0000\u0005O*l\f\u0000\bOj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOkj\f\u0000\u0005O*l\f\u0000\bOkj\f\u0000\u0005O*a\u0000\u0010l\f\u0000\bOa\u0000\u0011j\f\u0000\u0005O*a\u0000\u0012l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0013l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0014l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0015l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0016l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0017l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0018l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0019l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001al\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001bl\f\u0000\bOmj\f\u0000\u0005O*a\u0000\u001cl\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001dl\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001el\f\u0000\bOa\u0000\u001fj\f\u0000\u0005O*a\u0000 l\f\u0000\bOlj\f\u0000\u0005O*a\u0000!l\f\u0000\bOa\u0000\u001fj\f\u0000\u0005O*a\u0000\"l\f\u0000\bOlj\f\u0000\u0005O*a\u0000#l\f\u0000\bOlj\f\u0000\u0005O*a\u0000$l\f\u0000\bOlj\f\u0000\u0005O*a\u0000%l\f\u0000\bOlj\f\u0000\u0005O*a\u0000&l\f\u0000\bOlj\f\u0000\u0005O*a\u0000'l\f\u0000\bOlj\f\u0000\u0005O*a\u0000(l\f\u0000\bOlj\f\u0000\u0005O*a\u0000)l\f\u0000\bOlj\f\u0000\u0005O*a\u0000*l\f\u0000\bOlj\f\u0000\u0005O*a\u0000+l\f\u0000\bOlj\f\u0000\u0005O*a\u0000,l\f\u0000\bOlj\f\u0000\u0005O*a\u0000-l\f\u0000\bOlj\f\u0000\u0005O*a\u0000.l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\/l\f\u0000\bOlj\f\u0000\u0005O*a\u00000l\f\u0000\bOj\f\u0000\u0005O*a\u00001l\f\u0000\bUU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0002\u0000\u0004\r\u0000\u0004\u0000\u0002O\u0000\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0004\u0002\u0000\u0007\u0002\u0000\u0007\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0002O\u0000\u0000\u0000\n\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0012\u0002\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\u0000\u0010\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001f\u0000\u0013\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0013\u0000\u0003\u0000\u0014\n\u0000\u0004\nText\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000F\u0000a\u0000s\u0000c\u0000i\u0000i\u0000n\u0000e\u0000m\u0000a\u0000 \u0000r\u0000e\u0000c\u0000 \u0000~\u0000\/\u0000a\u0000l\u0000i\u0000e\u0000n\u0000-\u0000m\u0000i\u0000n\u0000i\u0000m\u0000a\u0000l\u0000-\u00001\u0000.\u00000\u0000.\u00004\u0006\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\u0019\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0000\u001c\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u001c\u0000\u0003\u0000\u001d\n\u0000\u0004\nText\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0012\u0000z\u0000 \u0000a\u0000m\u0000-\u0000d\u0000e\u0000m\u0000o\u0006\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000.\u00003\u0000\"\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\"\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000!\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003I\u0000\u0002\u00004\u0000;\u0000%\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000%\u0000\u0003\u0000&\n\u0000\u0004\nText\r\u0000&\u0000\u0001m\u0000\u0000\u00006\u00007\u0000'\u000e\u0000'\u0000\u0001\u0000(\u0011\u0000(\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003I\u0000\u0002\u0000<\u0000A\u0000+\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000+\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000*\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003I\u0000\u0002\u0000B\u0000I\u0000.\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000.\u0000\u0003\u0000\/\n\u0000\u0004\nText\r\u0000\/\u0000\u0001m\u0000\u0000\u0000D\u0000E\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000-\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003I\u0000\u0002\u0000J\u0000O\u00004\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00004\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u00003\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000P\u0000W\u00007\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u00007\u0000\u0003\u00008\n\u0000\u0004\nText\r\u00008\u0000\u0001m\u0000\u0000\u0000R\u0000S\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000J\u0000A\u0000M\u0000_\u0000V\u0000E\u0000R\u0000S\u0000I\u0000O\u0000N\u0000S\u0000_\u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000=\u0000(\u0000R\u0000U\u0000B\u0000Y\u0000 \u0000P\u0000Y\u0000T\u0000H\u0000O\u0000N\u0000 \u0000J\u0000A\u0000V\u0000A\u0000)\u0006\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003I\u0000\u0002\u0000X\u0000]\u0000=\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000=\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000<\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003I\u0000\u0002\u0000^\u0000e\u0000@\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000@\u0000\u0003\u0000A\n\u0000\u0004\nText\r\u0000A\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u00000\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000v\u0000e\u0000n\u0000v\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0006\u0000\u0000\u0002\u0000?\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000f\u0000k\u0000F\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000F\u0000\u0001m\u0000\u0000\u0000f\u0000g\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003I\u0000\u0002\u0000l\u0000s\u0000I\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000I\u0000\u0003\u0000J\n\u0000\u0004\nText\r\u0000J\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0000K\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000t\u0000y\u0000O\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000O\u0000\u0001m\u0000\u0000\u0000t\u0000u\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000N\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000z\u0000\u0000R\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000R\u0000\u0003\u0000S\n\u0000\u0004\nText\r\u0000S\u0000\u0001m\u0000\u0000\u0000|\u0000}\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0002\u0000\u0000\u0000X\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000W\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0002\u0000\u0000\u0000[\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000[\u0000\u0003\u0000\\\n\u0000\u0004\nText\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\u0012\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00005\u0000 \u0000&\u0006\u0000\u0000\u0002\u0000Z\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003I\u0000\u0002\u0000\u0000\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\n\u0002\u0000\u0000\u0002\u0000`\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000d\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000d\u0000\u0003\u0000e\n\u0000\u0004\nText\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000<\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000=\u0000'\u0000-\u0000-\u0000>\u0000 \u0000'\u0006\u0000\u0000\u0002\u0000c\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u0000\u0000\u0000j\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000j\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000i\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003I\u0000\u0002\u0000\u0000\u0000m\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000m\u0000\u0003\u0000n\n\u0000\u0004\nText\r\u0000n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u00004\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000E\u0000N\u0000D\u0000_\u0000T\u0000A\u0000G\u0000=\u0000'\u0000 \u0000$\u0000'\u0006\u0000\u0000\u0002\u0000l\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003I\u0000\u0002\u0000\u0000\u0000s\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000s\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000r\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000v\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000v\u0000\u0003\u0000w\n\u0000\u0004\nText\r\u0000w\u0000\u0001m\u0000\u0000\u0000\u0000\u0000x\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000u\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000|\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000{\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000E\u0000R\u0000R\u0000O\u0000R\u0000_\u0000O\u0000N\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000=\u00001\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0003\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\t\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0005\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\n\u0001\u0013\u0000\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000S\u0000T\u0000A\u0000R\u0000T\u0000_\u0000T\u0000A\u0000G\u0000 \u0000P\u0000R\u0000O\u0000M\u0000P\u0000T\u0000_\u0000E\u0000N\u0000D\u0000_\u0000T\u0000A\u0000G\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0014\u0001\u0019\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u001a\u0001#~}\u0000\n~\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001}\u0000\u0000\u0006\u0000\u0000\u0003|\u0000{\n|\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00001\u0006{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001$\u0001)z\u0000y\nz\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001%x\u0003x\u0000\u0002\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001*\u00013wv\u0000\nw\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001v\u0000\u0000\u0006\u0000\u0000\u0003u\u0000t\nu\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001,\u0001\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00002\u0006t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00014\u00019s\u0000r\ns\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u00014\u00015q\u0003q\u0000\u0003\u0002r\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001:\u0001Cpo\u0000\np\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001o\u0000\u0000\u0006\u0000\u0000\u0003n\u0000m\nn\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00002\u0006m\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001D\u0001Il\u0000k\nl\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001D\u0001Ej\u0003j\u0000\u0002\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001J\u0001Sih\u0000\ni\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001h\u0000\u0000\u0006\u0000\u0000\u0003g\u0000f\ng\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00000\u0006f\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001T\u0001Ye\u0000d\ne\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001T\u0001Uc\u0003c\u0000\u0002\u0002d\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001Z\u0001cba\u0000\nb\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001a\u0000\u0000\u0006\u0000\u0000\u0003`\u0000_\n`\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\\\u0001_\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00003\u0006_\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001d\u0001k^\u0000]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001d\u0001g\\\u0003\\\u0000\u0004\u0002]\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001l\u0001u[Z\u0000\n[\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001Z\u0000\u0000\u0006\u0000\u0000\u0003Y\u0000X\nY\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001n\u0001q\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000P\u0000R\u0000O\u0000C\u0000E\u0000S\u0000S\u0000_\u0000T\u0000I\u0000M\u0000E\u0000=\u00000\u0006X\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001v\u0001{W\u0000V\nW\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001v\u0001wU\u0003U\u0000\u0002\u0002V\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001|\u0001TS\u0000\nT\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001S\u0000\u0000\u0006\u0000\u0000\u0003R\u0000Q\nR\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001~\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000s\u0000l\u0000e\u0000e\u0000p\u0000 \u00002\u0006Q\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001P\u0000O\nP\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001N\u0003N\u0000\u0004\u0002O\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001ML\u0000\nM\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001L\u0000\u0000\u0006\u0000\u0000\u0003K\u0000J\nK\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000F\u0000U\u0000L\u0000L\u0000_\u0000D\u0000I\u0000R\u0000=\u00001\u0006J\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001I\u0000H\nI\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001G\u0003G\u0000\u0002\u0002H\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001FE\u0000\nF\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001E\u0000\u0000\u0006\u0000\u0000\u0003D\u0000C\nD\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000S\u0000H\u0000O\u0000W\u0000_\u0000F\u0000U\u0000L\u0000L\u0000_\u0000D\u0000I\u0000R\u0000=\u00000\u0006C\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001B\u0000A\nB\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001@\u0003@\u0000\u0002\u0002A\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0001?>\u0000\n?\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001>\u0000\u0000\u0006\u0000\u0000\u0003=\u0000<\n=\u0000\u0004\nText\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0001\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006<\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003I\u0000\u0002\u0001\u0001;\u0001\u0003:\n;\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0003\u0000\u0001m\u0000\u0000\u0001\u00019\u00039\u0000\u0002\u0002:\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003I\u0000\u0002\u0001\u000187\u0001\u0006\n8\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u00017\u0000\u0000\u0006\u0001\u0006\u0000\u00036\u0001\u00075\n6\u0000\u0004\nText\r\u0001\u0007\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\b\u000e\u0001\b\u0000\u0001\u0001\t\u0011\u0001\t\u0000\b\u0000t\u0000r\u0000u\u0000e\u00065\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\n\u0001\u000b\r\u0001\n\u0000\u0003I\u0000\u0002\u0001\u00014\u0001\f3\n4\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\f\u0000\u0001m\u0000\u0000\u0001\u00012\u00032\u0000\u0002\u00023\u0000\u0000\u0002\u0001\u000b\u0000\u0002\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003I\u0000\u0002\u0001\u000110\u0001\u000f\n1\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u00010\u0000\u0000\u0006\u0001\u000f\u0000\u0003\/\u0001\u0010.\n\/\u0000\u0004\nText\r\u0001\u0010\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u00004\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000H\u0000I\u0000D\u0000E\u0000_\u0000E\u0000X\u0000I\u0000T\u0000_\u0000C\u0000O\u0000D\u0000E\u0000=\u00001\u0006.\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003I\u0000\u0002\u0001\u0001-\u0001\u0015,\n-\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0001\u0001+\u0003+\u0000\u0002\u0002,\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003I\u0000\u0002\u0001\u0001*)\u0001\u0018\n*\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001)\u0000\u0000\u0006\u0001\u0018\u0000\u0003(\u0001\u0019'\n(\u0000\u0004\nText\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0001\u0001\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\n\u0000f\u0000a\u0000l\u0000s\u0000e\u0006'\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0003I\u0000\u0002\u0001\u0001&\u0001\u001e%\n&\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0001\u0001$\u0003$\u0000\u0002\u0002%\u0000\u0000\u0002\u0001\u001d\u0000\u0002\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0003I\u0000\u0002\u0001\u0001#\"\u0001!\n#\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\"\u0000\u0000\u0006\u0001!\u0000\u0003!\u0001\" \n!\u0000\u0004\nText\r\u0001\"\u0000\u0001m\u0000\u0000\u0001\u0001\u0001#\u000e\u0001#\u0000\u0001\u0001$\u0011\u0001$\u0000\b\u0000t\u0000r\u0000u\u0000e\u0006 \u0000\u0000\u0002\u0001 \u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0003I\u0000\u0002\u0001\u0001\u001f\u0001'\u001e\n\u001f\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001'\u0000\u0001m\u0000\u0000\u0001\u0001\u001d\u0003\u001d\u0000\u0002\u0002\u001e\u0000\u0000\u0002\u0001&\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0003I\u0000\u0002\u0001\u0002\u0007\u001c\u001b\u0001*\n\u001c\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u001b\u0000\u0000\u0006\u0001*\u0000\u0003\u001a\u0001+\u0019\n\u001a\u0000\u0004\nText\r\u0001+\u0000\u0001m\u0000\u0000\u0002\u0000\u0002\u0003\u0001,\u000e\u0001,\u0000\u0001\u0001-\u0011\u0001-\u0000(\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000m\u0000o\u0000n\u0000o\u0006\u0019\u0000\u0000\u0002\u0001)\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0003I\u0000\u0002\u0002\b\u0002\r\u0018\u00010\u0017\n\u0018\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00010\u0000\u0001m\u0000\u0000\u0002\b\u0002\t\u0016\u0003\u0016\u0000\u0002\u0002\u0017\u0000\u0000\u0002\u0001\/\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003I\u0000\u0002\u0002\u000e\u0002\u0017\u0015\u0014\u00013\n\u0015\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0014\u0000\u0000\u0006\u00013\u0000\u0003\u0013\u00014\u0012\n\u0013\u0000\u0004\nText\r\u00014\u0000\u0001m\u0000\u0000\u0002\u0010\u0002\u0013\u00015\u000e\u00015\u0000\u0001\u00016\u0011\u00016\u00006\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000m\u0000o\u0000n\u0000o\u0000_\u0000b\u0000r\u0000i\u0000g\u0000h\u0000t\u0006\u0012\u0000\u0000\u0002\u00012\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003I\u0000\u0002\u0002\u0018\u0002\u001d\u0011\u00019\u0010\n\u0011\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u00019\u0000\u0001m\u0000\u0000\u0002\u0018\u0002\u0019\u000f\u0003\u000f\u0000\u0002\u0002\u0010\u0000\u0000\u0002\u00018\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0003I\u0000\u0002\u0002\u001e\u0002'\u000e\r\u0001<\n\u000e\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\r\u0000\u0000\u0006\u0001<\u0000\u0003\f\u0001=\u000b\n\f\u0000\u0004\nText\r\u0001=\u0000\u0001m\u0000\u0000\u0002 \u0002#\u0001>\u000e\u0001>\u0000\u0001\u0001?\u0011\u0001?\u00000\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0006\u000b\u0000\u0000\u0002\u0001;\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0002\u0002(\u0002-\n\u0001B\t\n\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001B\u0000\u0001m\u0000\u0000\u0002(\u0002)\b\u0003\b\u0000\u0002\u0002\t\u0000\u0000\u0002\u0001A\u0000\u0002\u0001C\u0001D\r\u0001C\u0000\u0003I\u0000\u0002\u0002.\u00027\u0007\u0006\u0001E\n\u0007\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0006\u0000\u0000\u0006\u0001E\u0000\u0003\u0005\u0001F\u0004\n\u0005\u0000\u0004\nText\r\u0001F\u0000\u0001m\u0000\u0000\u00020\u00023\u0001G\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000(\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000s\u0000o\u0000f\u0000t\u0006\u0004\u0000\u0000\u0002\u0001D\u0000\u0002\u0001I\u0001J\r\u0001I\u0000\u0003I\u0000\u0002\u00028\u0002=\u0003\u0001K\u0002\n\u0003\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001K\u0000\u0001m\u0000\u0000\u00028\u00029\u0001\u0003\u0001\u0000\u0002\u0002\u0002\u0000\u0000\u0002\u0001J\u0000\u0002\u0001L\u0001M\r\u0001L\u0000\u0003I\u0000\u0002\u0002>\u0002G\u0000\u0001N\n\u0000\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001N\u0000\u0003\u0001O\n\u0000\u0004\nText\r\u0001O\u0000\u0001m\u0000\u0000\u0002@\u0002C\u0001P\u000e\u0001P\u0000\u0001\u0001Q\u0011\u0001Q\u0000.\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0000=\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0006\u0000\u0000\u0002\u0001M\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0003I\u0000\u0002\u0002H\u0002M\u0001T\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001T\u0000\u0001m\u0000\u0000\u0002H\u0002I\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001S\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0003I\u0000\u0002\u0002N\u0002W\u0001W\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001W\u0000\u0003\u0001X\n\u0000\u0004\nText\r\u0001X\u0000\u0001m\u0000\u0000\u0002P\u0002S\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\u001c\u0000u\u0000n\u0000s\u0000e\u0000t\u0000 \u0000A\u0000M\u0000_\u0000T\u0000H\u0000E\u0000M\u0000E\u0006\u0000\u0000\u0002\u0001V\u0000\u0002\u0001[\u0001\\\r\u0001[\u0000\u0003I\u0000\u0002\u0002X\u0002]\u0001]\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001]\u0000\u0001m\u0000\u0000\u0002X\u0002Y\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\\\u0000\u0002\u0001^\u0001_\r\u0001^\u0000\u0003I\u0000\u0002\u0002^\u0002g\u0001`\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001`\u0000\u0003\u0001a\n\u0000\u0004\nText\r\u0001a\u0000\u0001m\u0000\u0000\u0002`\u0002c\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0014\u0000d\u0000e\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0006\u0000\u0000\u0002\u0001_\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003I\u0000\u0002\u0002h\u0002m\u0001f\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001f\u0000\u0001m\u0000\u0000\u0002h\u0002i\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001e\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003I\u0000\u0002\u0002n\u0002w\u0001i\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001i\u0000\u0003\u0001j\n\u0000\u0004\nText\r\u0001j\u0000\u0001m\u0000\u0000\u0002p\u0002s\u0001k\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\b\u0000e\u0000x\u0000i\u0000t\u0006\u0000\u0000\u0002\u0001h\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0002x\u0002}\u0001o\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001o\u0000\u0001m\u0000\u0000\u0002x\u0002y\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0001n\u0000\u0002\u0001p\r\u0001p\u0000\u0003I\u0000\u0002\u0002~\u0002\u0001q\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0001q\u0000\u0003\u0001r\n\u0000\u0004\nText\r\u0001r\u0000\u0001m\u0000\u0000\u0002\u0002\u0001s\u000e\u0001s\u0000\u0001\u0001t\u0011\u0001t\u0000\b\u0000e\u0000x\u0000i\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\f\u0000\u0002n\u0000\u0000\u0000\n\u0000\u000f\u0001u\u0001v\r\u0001u\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\nWcsn\r\u0001v\u0000\u00011\u0000\u0000\u0000\n\u0000\r\n\u0000\u0004\nCrwn\u0002\u0000\u0000\r\u0000\u0006\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001w\u000f\u0001w\u0001|\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u001e\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0002\u0000\u0019\/:Applications:iTerm.app\/\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0001x\u0001y\u0001\u0000\u0000\u0010\u0001x\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001y\u0000\u0007\u0010\u0001z\u0001{\u0001|\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001z\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\u0001}\u0002\u0001}\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001{\u0000\u0000\u0010\u0001|\u00002\u0001w\u0000\u0015\u0000\u001e\u0000'\u00000\u00009\u0000B\u0000K\u0000T\u0000]\u0000f\u0000o\u0000x\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\b\u0001\u0011\u0001\u001a\u0001#\u0001,\u00015\u0001>\u0001G\u0001P\u0001Y\u0001b\u0001k\u0001s\n\u0000\u0018.Itrmnwwnnull\u0000\u0000null\n\u0000\u0004\nCrwn\n\u0000\u0004\nWcsn\u0003\u0000\u0005\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nText\n\u0000\u0018.Itrmsntxnull\u0000\u0000\u0000\u0000\u0000obj \u0003\u0000\n\u0003\u0000\u0004\u0011\u0002\u0012\u0002*j\f\u0000\u0001O*,,\u0012\u0002wj\f\u0000\u0005O*l\f\u0000\bOj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOlj\f\u0000\u0005O*l\f\u0000\bOkj\f\u0000\u0005O*l\f\u0000\bOkj\f\u0000\u0005O*a\u0000\u0010l\f\u0000\bOa\u0000\u0011j\f\u0000\u0005O*a\u0000\u0012l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0013l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0014l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0015l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0016l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0017l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0018l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u0019l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001al\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001bl\f\u0000\bOmj\f\u0000\u0005O*a\u0000\u001cl\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001dl\f\u0000\bOlj\f\u0000\u0005O*a\u0000\u001el\f\u0000\bOa\u0000\u001fj\f\u0000\u0005O*a\u0000 l\f\u0000\bOlj\f\u0000\u0005O*a\u0000!l\f\u0000\bOa\u0000\u001fj\f\u0000\u0005O*a\u0000\"l\f\u0000\bOlj\f\u0000\u0005O*a\u0000#l\f\u0000\bOlj\f\u0000\u0005O*a\u0000$l\f\u0000\bOlj\f\u0000\u0005O*a\u0000%l\f\u0000\bOlj\f\u0000\u0005O*a\u0000&l\f\u0000\bOlj\f\u0000\u0005O*a\u0000'l\f\u0000\bOlj\f\u0000\u0005O*a\u0000(l\f\u0000\bOlj\f\u0000\u0005O*a\u0000)l\f\u0000\bOlj\f\u0000\u0005O*a\u0000*l\f\u0000\bOlj\f\u0000\u0005O*a\u0000+l\f\u0000\bOlj\f\u0000\u0005O*a\u0000,l\f\u0000\bOlj\f\u0000\u0005O*a\u0000-l\f\u0000\bOlj\f\u0000\u0005O*a\u0000.l\f\u0000\bOlj\f\u0000\u0005O*a\u0000\/l\f\u0000\bOlj\f\u0000\u0005O*a\u00000l\f\u0000\bOj\f\u0000\u0005O*a\u00001l\f\u0000\bUU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e377bd8190482c88d31089c25f79de9f1c72cc89","subject":"Removed informational notice from iCal script","message":"Removed informational notice from iCal script\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402701\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\f\u0000+\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000*\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0006\u0000.\r\u0000.\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\/\u00000\r\u0000\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u00001\u0002\u00001\u0000\u0002\u00002\u00003\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00004\f\u00004\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u00003\u0000\u0002\u00005\r\u00005\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u00006\f\u00006\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0007\u0000\n\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000<\f\u0000<\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002l\u0000\u0002\u0000\u000b\u0000\u001d\u0000?\r\u0000?\u0000\u0002O\u0000\u0001\u0000\u000b\u0000\u001d\u0000@\u0000A\r\u0000@\u0000\u0002l\u0000\t\u0000\u000f\u0000\u001c\u0000B\r\u0000B\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000C\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000C\u0000\u0003\u0000D\u0000E\n\u0000\u0004\nappl\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006\u0000E\u0000\u0003\u0000F\u0000G\n\u0000\u0004\nanot\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000G\u0000\u0003\u0000H\u0000I\n\u0000\u0004\ndnot\r\u0000H\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000I\u0000\u0003\u0000J\n\u0000\u0004\niapp\r\u0000J\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000K\f\u0000K\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000L\u000f\u0000L\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(`\u0000\u0000\u0000\u0000\u0001z@\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u02d0\u0001{GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0002l\u0000\u0002\u0000\u001e\u0000%\u0000Q\r\u0000Q\u0000\u0002r\u0000\u0000\u0000\u001e\u0000%\u0000R\u0000S\r\u0000R\u0000\u0003I\u0000\u0002\u0000\u001e\u0000#\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0002\u0000&\u0000\/\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000&\u0000\/\u0000W\u0000X\r\u0000W\u0000\u0002\\\u0000\u0000\u0000&\u0000+\u0000Y\u0000Z\r\u0000Y\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000Z\u0000\u0002l\u0000\u0005\u0000'\u0000*\u0000[\r\u0000[\u0000\u0002n\u0000\u0000\u0000'\u0000*\u0000\\\u0000]\r\u0000\\\u0000\u00011\u0000\u0000\u0000(\u0000*\n\u0000\u0004\ntime\r\u0000]\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0002l\u0000\u0002\u00000\u0000?\u0000`\r\u0000`\u0000\u0002r\u0000\u0000\u00000\u0000?\u0000a\u0000b\r\u0000a\u0000\u0002\\\u0000\u0000\u00000\u0000;\u0000c\u0000d\r\u0000c\u0000\u0002[\u0000\u0000\u00000\u00009\u0000e\u0000f\r\u0000e\u0000\u0001o\u0000\u0000\u00000\u00003\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000f\u0000\u0002]\u0000\u0000\u00003\u00008\u0000g\u0000h\r\u0000g\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0001\r\u0000h\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\ndays\r\u0000d\u0000\u0001m\u0000\u0000\u00009\u0000:\u0003\u0000\u0001\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000_\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u0000@\u0000E\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u0000@\u0000E\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000@\u0000A\n\u0000\b\u000bboovfals\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0002l\u0000\u0002\u0000F\u0001E\u0000r\r\u0000r\u0000\u0002O\u0000\u0000\u0000F\u0001E\u0000s\u0000t\r\u0000s\u0000\u0001k\u0000\u0000\u0000L\u0001D\u0000u\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0002l\u0000\u0001\u0000L\u0000L\u0000x\u0001\u0000\u0000\f\u0000x\u0000Z\u0000T\tCatch events that start today or that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000w\u0000\u0002\u0000y\r\u0000y\u0000\u0003X\u0000\u0000\u0000L\u0001D\u0000z\u0000{\r\u0000z\u0000\u0003X\u0000\u0000\u0000d\u0001?\u0000|\u0000}\r\u0000|\u0000\u0001k\u0000\u0000\u0000\u0001:\u0000~\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u001b\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr11\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u000b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\u000b\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0007\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0013\u0001\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\f\u0000\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u001c\u0001\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0001\u001c\u0001:\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001 \u00019\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001 \u00019\u0000\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nname\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001'\u0000\f\u0000\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ntitl\r\u0000\u0000\u0001o\u0000\u0000\u0001*\u0001-\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\u0000\u0001o\u0000\u0000\u00010\u00013\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nappl\r\u0000\u0000\u0001o\u0000\u0000\u00014\u00015\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001d\u0000L\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000}\u0000\u0002l\u0000\u0005\u0000g\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000g\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000g\u0000l\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000g\u0000l\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000h\u0000l\n\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000o\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000o\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000p\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000p\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000q\u0000|\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000r\u0000v\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000{\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002B\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\r\u0000{\u0000\u00012\u0000\u0001\u0000O\u0000T\n\u0000\u0004\nwres\u0002\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000F\u0000I\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app@\u0000\u0000\u0000\u0000\u001fP<\u0004(`\u0000\u0000\u0000\u0001\u0001z@\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u02d0\u0001{wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000q\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001F\u0001o\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001F\u0001o\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0001F\u0001J\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001F\u0001I\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\r\u0000\u0000\u0002O\u0000\u0001\u0001M\u0001k\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001Q\u0001j\u0000~\r\u0000\u0000\u0003I\u0000\u0002\u0001Q\u0001j}|\u0000\n}\u0000\u0018.notifygrnull\u0000\u0000null\u0001|\u0000\u0000\u0006\u0000\u0000\u0003{\u0000\u0000\n{\u0000\u0004\nname\r\u0000\u0000\u0001m\u0000\u0000\u0001U\u0001X\u0000\f\u0000\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003z\u0000\u0000\nz\u0000\u0004\ntitl\r\u0000\u0000\u0001m\u0000\u0000\u0001[\u0001^\u0000\f\u0000\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003y\u0000\u0000\ny\u0000\u0004\ndesc\r\u0000\u0000\u0001m\u0000\u0000\u0001a\u0001d\u0000\f\u0000\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003x\u0000w\nx\u0000\u0004\nappl\r\u0000\u0000\u0001o\u0000\u0000\u0001e\u0001fv\u000bv\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006w\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001M\u0001N\u0000L\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000ts\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002u\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003r\u0000\u0000\u0001r\u0000\u0000\u0010\u0000\u0000\u0001q\nq\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010p\u0000on\u0000\u0000m\np\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001o\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\u0000\u0002\u00007\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000\u0000\u0002\u0000i\u0000\u0002\u0000\u0000\u0002\u0000p\u0000\u0002\u0000\u0000\u0002\u0000l\u0002l\u0000\u0000\u0001o\u0000\u0000\u0002n\u0000\u0000\u0010\u0000\u0000\u0002kj\u000bk\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\u000bj\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0010\u0000\u00001\u00004\u00006i\u0000<h\u0000Lgfed\u0000Kcba`_^]\\[\u0000ZYXWV\u0000UTSR\u0000QPON\u0000MLK\u0000J\u0000IHG\u0000\u0000\u0000\u000bi\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u000bh\u0000\u00120\u0000\u0007appname\u0000\u0007appName\ng\u0000\u0004\nappl\nf\u0000\u0004\nanot\ne\u0000\u0004\ndnot\nd\u0000\u0004\niapp\u0003c\u0000\b\nb\u0000\u0018.registernull\u0000\u0000null\na\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b`\u0000\u00070\u0000\u0003now\u0000\u0000\n_\u0000\u0004\ntime\u000b^\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n]\u0000\u0004\ndays\u000b\\\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u000b[\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\nZ\u0000\u0004\nwres\nY\u0000\u0004\nkocl\nX\u0000\u0004\ncobj\nW\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nV\u0000\u0004\nwrev\u000e\u0000\u0000\u0000\u0013\nU\u0000\u0004\nwr1s\nT\u0000\u0004\nwr5s\u000bS\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\nR\u0000\u0004\nwr11\nQ\u0000\u0004\ntstr\u000bP\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001O\u0000\u0000\u0002N\u0000\u0000\nM\u0000\u0004\nwr12\u000bL\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\nK\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nJ\u0000\u0004\nname\nI\u0000\u0004\ntitl\nH\u0000\u0004\ndesc\nG\u0000\u0018.notifygrnull\u0000\u0000null\u0011m\u0001plvEOEO\u0012\u0000\u000f*\f\u0000\fUO*j\f\u0000\rEO,\u001fE`\u0000\u0010O_\u0000\u0010k_\u0000\u0011 \u001ek\u001fE`\u0000\u0012OfE`\u0000\u0013Oa\u0000\u0014\u0012\u0000\u0017\u0000*a\u0000\u0015-[a\u0000\u0016a\u0000\u0017l\f\u0000\u0018kh\u001b\u0000\u0000\u0017\u0000\u06a0a\u0000\u0019-a\u0000\u001a[[[a\u0000\u001b,\\Z_\u0000\u0010;\\[a\u0000\u001b,\\Z_\u0000\u0012=A\\[[a\u0000\u001c,\\Z;\\[a\u0000\u001b,\\Z_\u0000\u0010=AB1[a\u0000\u0016a\u0000\u0017l\f\u0000\u0018kh\u001b\u0000\u0001eE`\u0000\u0013O\u0012\u0000_*a\u0000\u001b,E`\u0000\u001dO\u0014\u0000\u001a*a\u0000\u001e,a\u0000\u001f%_\u0000\u001da\u0000 ,%E`\u0000!W\u0000\u0016X\u0000\"\u0000#a\u0000$_\u0000\u001da\u0000 ,%E`\u0000!O\u0014\u0000\u0016*a\u0000%,E`\u0000&O_\u0000&j\f\u0000'W\u0000\u000eX\u0000\"\u0000#a\u0000(E`\u0000&UO\u0012\u0000\u001b*a\u0000)a\u0000*a\u0000+_\u0000!a\u0000,_\u0000&\f\u0000-U[OYs[OY\u001fUO_\u0000\u0013\u000b\u001d\u0000#\u0012\u0000\u001b*a\u0000)a\u0000.a\u0000+a\u0000\/a\u0000,a\u00000\f\u0000-UY\u0000\u0003h\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(\u0000\u0000\u0000\u0000\u0000\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000=\u0000L\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000=\u0000L\u0000m\u0000n\r\u0000m\u0000\u0002\\\u0000\u0000\u0000=\u0000H\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000p\u0000\u0002l\u0000\u0005\u0000@\u0000G\u0000q\r\u0000q\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000r\u0000s\r\u0000r\u0000\u00011\u0000\u0000\u0000C\u0000G\n\u0000\u0004\ntime\r\u0000s\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0002\u0000M\u0000T\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000M\u0000T\u0000w\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0002l\u0000\u0005\u0000M\u0000P\u0000x\r\u0000x\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002l\u0000\u0002\u0000U\u0000d\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000U\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002\\\u0000\u0000\u0000U\u0000`\u0000~\u0000\r\u0000~\u0000\u0002[\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002]\u0000\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\ndays\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000e\u0000l\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000e\u0000h\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000h\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000m\u0002\t\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0002\t\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0002\b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000s\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000}\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000s\u0000y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000u\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000~\u0001U\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001P\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001O\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000Z\u0000T\tCatch events that start today or that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001O\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001J\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\f\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\b\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0004\u0001\b\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0004\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\r\u0001\/\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001\r\u0001+\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0001\r\u0001'\u0000\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0010\u0001\u0015\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0011\u0001\u0015\n\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0010\u0001\u0011\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0018\u0001\u001d\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0019\u0001\u001d\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0000\u0000\u0001o\u0000\u0000\u0001 \u0001#\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001'\u0001*\n\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00010\u0001=\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u00010\u00019\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u00010\u00015\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00010\u00013\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00015\u00018\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001>\u0001I\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001>\u0001E\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001>\u0001A\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001D\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwrev\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000{\n{\u0000\u0004\nwres\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vzy\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001V\u0001Vx\u0000\u0001x\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vwv\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001V\u0001\u0000\u0000ut\r\u0000\u0000\u0002l\u0000\u0005\u0001V\u0001c\u0000s\r\u0000\u0000\u0002=\u0000\u0000\u0001V\u0001c\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001V\u0001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001]\u0001ar\nr\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0001V\u0001]\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0001Y\u0001]q\nq\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001V\u0001Yp\u000bp\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001m\u0000\u0000\u0001a\u0001bo\u0003o\u0000\u0000\u0001s\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0001f\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001j\u0001\u0001\u0000n\r\u0001\u0000\u0000\u0003I\u0000\u0002\u0001j\u0001ml\u0001\u0001\nm\u0000\u0018.notifygrnull\u0000\u0000null\u0001l\u0000\u0000\u0006\u0001\u0001\u0000\u0003k\u0001\u0002\u0001\u0003\nk\u0000\u0004\nname\r\u0001\u0002\u0000\u0002l\u0000\t\u0001l\u0001o\u0001\u0004j\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0001\u0005\f\u0001\u0005\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001j\u0000\u0000\u0006\u0001\u0003\u0000\u0003i\u0001\u0006\u0001\u0007\ni\u0000\u0004\ntitl\r\u0001\u0006\u0000\u0002l\u0000\t\u0001p\u0001s\u0001\bh\r\u0001\b\u0000\u0001m\u0000\u0000\u0001p\u0001s\u0001\t\f\u0001\t\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001h\u0000\u0000\u0006\u0001\u0007\u0000\u0003g\u0001\n\u0001\u000b\ng\u0000\u0004\ndesc\r\u0001\n\u0000\u0002l\u0000\t\u0001v\u0001y\u0001\ff\r\u0001\f\u0000\u0001m\u0000\u0000\u0001v\u0001y\u0001\r\f\u0001\r\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\u000b\u0000\u0003e\u0001\u000ed\ne\u0000\u0004\nappl\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0001\u000f\f\u0001\u000f\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006d\u0000\u0000\u0001n\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001f\u0001g\u0000P\u0002u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002l\u0000\u0002\u0001\u0001cb\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003X\u0000\u0000\u0001\u0002\u0006\u0001\u0014a\u0001\u0015\r\u0001\u0014\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001\u0019\u0001\u001a\u0001\u001b\r\u0001\u0019\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002l\u0000\u0005\u0001\u0001\u0001\u001e`\r\u0001\u001e\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001!\u0001\"\r\u0001!\u0000\u0002n\u0000\u0000\u0001\u0001\u0001#\u0001$\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001$\u0000\u0001o\u0000\u0000\u0001\u0001^\u000b^\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\"\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001 \u0000\u0002n\u0000\u0000\u0001\u0001\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0001\u0001]\u000b]\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001'\u0000\u0001o\u0000\u0000\u0001\u0001\\\u000b\\\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001`\u0000\u0000\r\u0001\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ZYX\nZ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001Y\u0000\u0000\u0002X\u0000\u0000\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\u0001\u0001(\u0001)\r\u0001(\u0000\u0002b\u0000\u0000\u0001\u0001\u0001*\u0001+\r\u0001*\u0000\u0001m\u0000\u0000\u0001\u0001\u0001,\f\u0001,\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001+\u0000\u0002n\u0000\u0000\u0001\u0001\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0001\u0001W\u000bW\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001.\u0000\u0001o\u0000\u0000\u0001\u0001V\u000bV\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0018\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0002\u0001\u0001TS\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u00010\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003Q\u0000\u0000\u0001\u0001\u00013\u00014\u00015\r\u00013\u0000\u0002r\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002n\u0000\u0000\u0001\u0001\u00018\u00019\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0001R\u000bR\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u00019\u0000\u0001o\u0000\u0000\u0001\u0001Q\u000bQ\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u00014\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ONM\nO\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001N\u0000\u0000\u0002M\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0001\u0001<\f\u0001<\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u00012\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002l\u0000\u0002\u0001\u0001KJ\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001>\u0000\u0002\u0001?I\r\u0001?\u0000\u0002O\u0000\u0001\u0001\u0002\u0001\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\t\u0001\u0002\u0000\u0001BH\r\u0001B\u0000\u0003I\u0000\u0002\u0001\u0002\u0000GF\u0001C\nG\u0000\u0018.notifygrnull\u0000\u0000null\u0001F\u0000\u0000\u0006\u0001C\u0000\u0003E\u0001D\u0001E\nE\u0000\u0004\nname\r\u0001D\u0000\u0002l\u0000\t\u0001\u0001\u0001FD\r\u0001F\u0000\u0001m\u0000\u0000\u0001\u0001\u0001G\f\u0001G\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001D\u0000\u0000\u0006\u0001E\u0000\u0003C\u0001H\u0001I\nC\u0000\u0004\ntitl\r\u0001H\u0000\u0002l\u0000\t\u0001\u0001\u0001JB\r\u0001J\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001B\u0000\u0000\u0006\u0001I\u0000\u0003@\u0001K\u0001L\n@\u0000\u0004\ndesc\r\u0001K\u0000\u0002l\u0000\t\u0001\u0001\u0001M?\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001?\u0000\u0000\u0006\u0001L\u0000\u0003=\u0001N<\n=\u0000\u0004\nappl\r\u0001N\u0000\u0001m\u0000\u0000\u0001\u0001\u0001O\f\u0001O\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006<\u0000\u0000\u0001H\u0000\u0000\r\u0001A\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002I\u0000\u0000\u000ba\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001\u0001;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0001\u0013\u0000\u0002\u0001P:\r\u0001P\u0000\u0002l\u0000\u0002\u0002\u0007\u0002\u000798\u00019\u0000\u0000\u00018\u0000\u0000\u0002:\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0001Q\u000f\u0001Q\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u001fP<\u0004(\u0000\u0000\u0000\u0000\u0001\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000076\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001S\u0000\u0002\u0001T5\r\u0001T\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000043\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00032\u0001U\u0001V\u00012\u0000\u0000\u0010\u0001U\u0000\u00011\n1\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001V\u0000\u0007\u00100\u0001W\/.\u0001X\u0001Y-\n0\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001W\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\t\u0001Z\u0002\u0001Z\u0000\u0002\u0000.\u0001[\u0002\u0001[\u0000\u0002\u0000e\u0001\\\u0002\u0001\\\u0000\u0002\u0000j\u0001]\u0002\u0001]\u0000\u0002\u0000t\u0001^\u0002\u0001^\u0000\u0002\u0000y\u0001_\u0002\u0001_\u0000\u0002\u0000\u0001`\u0002\u0001`\u0000\u0002\u0000,\u0002,\u0000\u0000\u0001\/\u0000\u0000\u0002.\u0000\u0000\u0010\u0001X\u0000\u0003+*)\u000b+\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b*\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b)\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0010\u0001Y\u0000A\u0000P\u0000B\u0000D('\u0000I&%$\u0000O#\"!\u0000X \u0000\\\u001f\u0000`\u0000b\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0001Q\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u0001a\u000f\u000e\u0000\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0001\u0005\u0001\t\u0001\r\u0001\u000f\u0001%\u0000\u0001,\u0001<\u0001G\u0001O\u000b(\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n'\u0000\u0004\nappl\n&\u0000\u0004\nanot\n%\u0000\u0004\ndnot\n$\u0000\u0004\niapp\u0003#\u0000\b\n\"\u0000\u0018.registernull\u0000\u0000null\n!\u0000\u0004\nname\n \u0000\u0004\ntitl\n\u001f\u0000\u0004\ndesc\n\u001e\u0000\u0018.notifygrnull\u0000\u0000null\n\u001d\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u001c\u0000\u00070\u0000\u0003now\u0000\u0000\n\u001b\u0000\u0004\ntime\u000b\u001a\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0019\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0018\u0000\u0004\ndays\u000b\u0017\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0016\u0000\u0004\nlist\u000b\u0015\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0014\u0000\u0004\nwres\n\u0013\u0000\u0004\nkocl\n\u0012\u0000\u0004\ncobj\n\u0011\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0010\u0000\u0004\nwrev\u000e\u0001a\u0000\u0000\u0013\n\u000f\u0000\u0004\nwr1s\n\u000e\u0000\u0004\nwr5s\u000b\r\u0000\u00140\u0000\bthestart\u0000\btheStart\n\f\u0000\u0004\ntstr\u000b\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\n\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\t\u0000\u0004\nwr11\u000b\b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0007\u0000\u0004\nwr12\u000b\u0006\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0005\u0000\u0006\n\u0004\u0000\u0004\nreco\u000b\u0003\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0002\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\n\u0001\u0000\u0004\nnmbr\u000b\u0000\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011-\u0002\n\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015O_\u0000\u0015_\u0000\u0015a\u0000\u0016,\u001fE`\u0000\u0017O_\u0000\u0017j\f\u0000\u0018O_\u0000\u0017k_\u0000\u0019 \u001ek\u001fE`\u0000\u001aO_\u0000\u001aj\f\u0000\u0018Oa\u0000\u001b\u0012\u0001jva\u0000\u001c&E`\u0000\u001dO\u0017\u0000*a\u0000\u001e-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0000\u0012\u0000\u0017\u0000*a\u0000\"-a\u0000#[[[a\u0000$,\\Z_\u0000\u0017;\\[a\u0000$,\\Z_\u0000\u001a=A\\[[a\u0000%,\\Z_\u0000\u0015;\\[a\u0000$,\\Z_\u0000\u0017=AB1[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0001\u0012\u0000\\a\u0000&j\f\u0000\u0018O*a\u0000$,E`\u0000'O_\u0000'a\u0000(,E`\u0000)Oa\u0000*a\u0000+,a\u0000,a\u0000-,a\u0000._\u0000)a\u0000\/\u000ea\u00000&E`\u00001O_\u00001kva\u0000\u001c&E`\u00002O_\u0000\u001d_\u00002%E`\u0000\u001dU[OYU[OY@O_\u0000\u001da\u0000 -a\u00003,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u00004a\u00005a\u0000\u0010a\u00006a\u00007\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000~_\u0000\u001d[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0002\u0014\u0000\u0018a\u0000*,a\u00008%a\u0000.,%E`\u00009W\u0000\u0014X\u0000:\u0000;a\u0000<a\u0000.,%E`\u00009O\u0014\u0000\u000ea\u0000,,E`\u0000=W\u0000\u000eX\u0000:\u0000;a\u0000>E`\u0000=O\u0012\u0000\u0019*a\u0000?_\u00009a\u0000\u0010_\u0000=a\u0000@\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c97c282ceab81fb908e6fee4357e9d06ab0a1f6a","subject":"No more unnecessary interference with Terminal on start up, as it is now purely done in background","message":"No more unnecessary interference with Terminal on start up, as it is now purely done in background\n","repos":"jrocha2\/DynamicBG-OSX","old_file":"DynamicBG-OSX\/startup.scpt","new_file":"DynamicBG-OSX\/startup.scpt","new_contents":"do shell script (\"\/System\/Library\/Frameworks\/ScreenSaver.framework\/Resources\/ScreenSaverEngine.app\/Contents\/MacOS\/ScreenSaverEngine -background > \/dev\/null 2>&1 &\")","old_contents":"tell application \"Terminal\"\n do script (\"nohup \/System\/Library\/Frameworks\/ScreenSaver.framework\/Resources\/ScreenSaverEngine.app\/Contents\/MacOS\/ScreenSaverEngine -background &\")\n do script (\"killall Terminal\")\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"90617d15b931282fc172e8c6881f0022a357b517","subject":"Arrgh.","message":"Arrgh.\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\n (*\n \tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, n, theText)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item n\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, note)\n (*\n \tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to note\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, n, theText)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item n\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"74da5745368bf423d7557fb83c7af1524968daed","subject":"add\/clean up documentation","message":"add\/clean up documentation\n","repos":"shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler,shawnrice\/alfred-bundler","old_file":"tests\/applescript\/alfred.bundler.applescript","new_file":"tests\/applescript\/alfred.bundler.applescript","new_contents":"--# Current Alfred-Bundler version\nproperty BUNDLER_VERSION : \"devel\"\n--# Path to user's home directory\nproperty _home : POSIX path of (path to \"cusr\" as text)\n--# Path to Alfred-Bundler's root directory\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n\n\n(* MAIN API FUNCTION *)\n\non load_bundler()\n\t(* Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t*)\n\t--# Check if Alfred-Bundler is installed\n\tif (my _folder_exists(BUNDLER_DIR)) is not equal to true then\n\t\t--# install it if not\n\t\tmy _bootstrap()\n\tend if\n\tdelay 0.1\n\t--# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\n\tset as_bundler to (BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\")\n\t--# Return script object\n\treturn load script as_bundler\nend load_bundler\n\n(* AUTO-DOWNLOAD BUNDLER *)\n\non _bootstrap()\n\t(* Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t*)\n\t--# Ask to install the Bundler\n\ttry\n\t\tmy _install_confirmation()\n\ton error\n\t\t--# Cannot continue to install the bundler, so stop\n\t\treturn false\n\tend try\n\t--# Download the bundler\n\tset URLs to {\"https:\/\/github.com\/shawnrice\/alfred-bundler\/archive\/\" & BUNDLER_VERSION & \".zip\", \"https:\/\/bitbucket.org\/shawnrice\/alfred-bundler\/get\/\" & BUNDLER_VERSION & \".zip\"}\n\t--# Save Alfred-Bundler zipfile to this location temporarily\n\tset _zipfile to (quoted form of CACHE_DIR) & \"\/installer\/bundler.zip\"\n\trepeat with _url in URLs\n\t\tset _status to (do shell script \"curl -fsSL --create-dirs --connect-timeout 5 \" & _url & \" -o \" & _zipfile & \" && echo $?\")\n\t\tif _status is equal to \"0\" then exit repeat\n\tend repeat\n\t--# Could not download the file\n\tif _status is not equal to \"0\" then error \"Could not download bundler install file\" number 23\n\t--# Ensure directory tree already exists for bundler to be moved into it\n\tmy _check_dir(BUNDLER_DIR)\n\t--# Unzip the bundler and move it to its data directory\n\tset _cmd to \"cd \" & (quoted form of CACHE_DIR) & \"; cd installer; unzip -qo bundler.zip; mv .\/*\/bundler \" & (quoted form of BUNDLER_DIR)\n\tdo shell script _cmd\n\t--# Wait until bundler is fully unzipped and written to disk before finishing\n\tset as_bundler to (BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\")\n\trepeat while not (my _path_exists(as_bundler))\n\t\tdelay 0.2\n\tend repeat\n\treturn\nend _bootstrap\n\n--# Function to get confirmation to install the bundler\non _install_confirmation()\n\t(* Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t*)\n\t--# Get path to workflow's `info.plist` file\n\tset _plist to my _pwd() & \"info.plist\"\n\t--# Get name of workflow's from `info.plist` file\n\tset _cmd to \"\/usr\/libexec\/PlistBuddy -c 'Print :name' '\" & _plist & \"'\"\n\tset _name to do shell script _cmd\n\t--# Get workflow's icon, or default to system icon\n\tset _icon to my _pwd() & \"icon.png\"\n\tset _icon to my _check_icon(_icon)\n\t--# Prepare explanation text for dialog box\n\tset _text to _name & \" needs to install additional components, which will be placed in the Alfred storage directory and will not interfere with your system.\n\nYou may be asked to allow some components to run, depending on your security settings.\n\nYou can decline this installation, but \" & _name & \" may not work without them. There will be a slight delay after accepting.\"\n\t\n\tset _response to button returned of (display dialog _text buttons {\"More Info\", \"Cancel\", \"Proceed\"} default button 3 with title \"Setup \" & _name with icon POSIX file _icon)\n\t--# If permission granted, continue download\n\tif _response is equal to \"Proceed\" then return true\n\t--# If more info requested, open webpage and error\n\tif _response is equal to \"More Info\" then\n\t\ttell application \"System Events\"\n\t\t\topen location \"https:\/\/github.com\/shawnrice\/alfred-bundler\/wiki\/What-is-the-Alfred-Bundler\"\n\t\tend tell\n\t\terror \"User looked sought more information\" number 23\n\tend if\n\t--# If permission denied, stop and error\n\tif _response is equal to \"Cancel\" then error \"User canceled installation\" number 23\nend _install_confirmation\n\n\n(* HELPER HANDLERS *)\n\non _pwd()\n\t(* Get path to \"present working directory\", i.e. the workflow's root directory.\n\t\n\t:returns: Path to this script's parent directory\n\t:rtype: ``string`` (POSIX path)\n\n\t*)\n\t--# Save default AS delimiters, and set delimiters to \"\/\"\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\t--# Get POSIX path of script's directory\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\t--# Reset AS delimiters to original values\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _prepare_cmd(_cmd)\n\t(* Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:rtype: ``string``\n\t\t\n\t*)\n\t--# Ensure `pwd` is properly quoted for shell command\n\tset pwd to quoted form of (my _pwd())\n\t--# Declare environmental variable\n\t--#TODO: remove for final release\n\tset testing_var to \"export AB_BRANCH=devel; \"\n\t--# return shell script where `pwd` is properly set\n\treturn testing_var & \"cd \" & pwd & \"; bash \" & _cmd\nend _prepare_cmd\n\non _check_icon(_icon)\n\t(* Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t*)\n\ttry\n\t\tPOSIX file _icon as alias\n\t\treturn _icon\n\ton error\n\t\treturn \"\/System\/Library\/CoreServices\/CoreTypes.bundle\/Contents\/Resources\/SidebarDownloadsFolder.icns\"\n\tend try\nend _check_icon\n\non _check_dir(_folder)\n\t(* Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t*)\n\tif not my _folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend _check_dir\n\n\non _folder_exists(_folder)\n\t(* Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t*)\n\tif my _path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend _folder_exists\n\non _path_exists(_path)\n\t(* Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t*)\n\tif _path is missing value or my _is_empty(_path) then return false\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend _path_exists\n\non _is_empty(_obj)\n\t(* Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t*)\n\t--# Is `_obj ` a ``Boolean``?\n\tif {true, false} contains _obj then return false\n\t--# Is `_obj ` a ``missing value``?\n\tif _obj is missing value then return true\n\t--# Is `_obj ` a empty string?\n\treturn length of (my _trim(_obj)) is 0\nend _is_empty\n\non _trim(_str)\n\t(* Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t*)\n\tif class of _str is not text or class of _str is not string or _str is missing value then return _str\n\tif _str is \"\" then return _str\n\trepeat while _str begins with \" \"\n\t\ttry\n\t\t\tset _str to items 2 thru -1 of _str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while _str ends with \" \"\n\t\ttry\n\t\t\tset _str to items 1 thru -2 of _str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn _str\nend _trim","old_contents":"--# Current Alfred-Bundler version\nproperty BUNDLER_VERSION : \"devel\"\n--# Path to user's home directory\nproperty _home : POSIX path of (path to \"cusr\" as text)\n--# Path to Alfred-Bundler's root directory\nproperty BUNDLER_DIR : (_home) & \"Library\/Application Support\/Alfred 2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\nproperty CACHE_DIR : (_home) & \"Library\/Caches\/com.runningwithcrayons.Alfred-2\/Workflow Data\/alfred.bundler-\" & BUNDLER_VERSION\n\n\n(* MAIN API FUNCTION *)\n\non load_bundler()\n\t(* Load `AlfredBundler.scpt` from the Alfred-Bundler directory as a script object. \n\tIf the Alfred-Bundler directory does not exist, install it (using `_bootstrap()`).\n\n\t:returns: the script object of `AlfredBundler.scpt`\n\t:rtype: ``script object``\n\n\t*)\n\t--# Check if Alfred-Bundler is installed\n\tif (my _folder_exists(BUNDLER_DIR)) is not equal to true then\n\t\t--# install it if not\n\t\tmy _bootstrap()\n\tend if\n\tdelay 0.1\n\t--# Path to `AlfredBundler.scpt` in Alfed-Bundler directory\n\tset as_bundler to (BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\")\n\t--# Return script object\n\treturn load script as_bundler\nend load_bundler\n\n(* AUTO-DOWNLOAD BUNDLER *)\n\non _bootstrap()\n\t(* Check if bundler bash bundlet is installed and install it if not.\n\n\t:returns: ``None``\n\n\t*)\n\t--# Ask to install the Bundler\n\ttry\n\t\tmy _install_confirmation()\n\ton error\n\t\t--# Cannot continue to install the bundler, so stop\n\t\treturn false\n\n\t:returns: ``string`` (POSIX path)\n\n\tend try\n\t--# Download the bundler\n\tset URLs to {\"https:\/\/github.com\/shawnrice\/alfred-bundler\/archive\/\" & BUNDLER_VERSION & \".zip\", \"https:\/\/bitbucket.org\/shawnrice\/alfred-bundler\/get\/\" & BUNDLER_VERSION & \".zip\"}\n\t--# Save Alfred-Bundler zipfile to this location temporarily\n\tset _zipfile to (quoted form of CACHE_DIR) & \"\/installer\/bundler.zip\"\n\trepeat with _url in URLs\n\t\tset _status to (do shell script \"curl -fsSL --create-dirs --connect-timeout 5 \" & _url & \" -o \" & _zipfile & \" && echo $?\")\n\t\tif _status is equal to \"0\" then exit repeat\n\tend repeat\n\t--# Could not download the file\n\tif _status is not equal to \"0\" then error \"Could not download bundler install file\" number 23\n\t--# Ensure directory tree already exists for bundler to be moved into it\n\tmy _check_dir(BUNDLER_DIR)\n\t--# Unzip the bundler and move it to its data directory\n\tset _cmd to \"cd \" & (quoted form of CACHE_DIR) & \"; cd installer; unzip -qo bundler.zip; mv .\/*\/bundler \" & (quoted form of BUNDLER_DIR)\n\tdo shell script _cmd\n\t--# Wait until bundler is fully unzipped and written to disk before finishing\n\tset as_bundler to (BUNDLER_DIR & \"\/bundler\/AlfredBundler.scpt\")\n\trepeat while not (my _path_exists(as_bundler))\n\t\tdelay 0.2\n\tend repeat\n\treturn\nend _bootstrap\n\n--# Function to get confirmation to install the bundler\non _install_confirmation()\n\t(* Ask user for permission to install Alfred-Bundler. \n\tAllow user to go to website for more information, or even to cancel download.\n\n\t:returns: ``True`` or raises Error\n\n\t*)\n\t--# Get path to workflow's `info.plist` file\n\tset _plist to my _pwd() & \"info.plist\"\n\t--# Get name of workflow's from `info.plist` file\n\tset _cmd to \"\/usr\/libexec\/PlistBuddy -c 'Print :name' '\" & _plist & \"'\"\n\tset _name to do shell script _cmd\n\t--# Get workflow's icon, or default to system icon\n\tset _icon to my _pwd() & \"icon.png\"\n\tset _icon to my _check_icon(_icon)\n\t--# Prepare explanation text for dialog box\n\tset _text to _name & \" needs to install additional components, which will be placed in the Alfred storage directory and will not interfere with your system.\n\nYou may be asked to allow some components to run, depending on your security settings.\n\nYou can decline this installation, but \" & _name & \" may not work without them. There will be a slight delay after accepting.\"\n\t\n\tset _response to button returned of (display dialog _text buttons {\"More Info\", \"Cancel\", \"Proceed\"} default button 3 with title \"Setup \" & _name with icon POSIX file _icon)\n\t--# If permission granted, continue download\n\tif _response is equal to \"Proceed\" then return true\n\t--# If more info requested, open webpage and error\n\tif _response is equal to \"More Info\" then\n\t\ttell application \"System Events\"\n\t\t\topen location \"https:\/\/github.com\/shawnrice\/alfred-bundler\/wiki\/What-is-the-Alfred-Bundler\"\n\t\tend tell\n\t\terror \"User looked sought more information\" number 23\n\tend if\n\t--# If permission denied, stop and error\n\tif _response is equal to \"Cancel\" then error \"User canceled installation\" number 23\nend _install_confirmation\n\n\n(* HELPER HANDLERS *)\n\non _pwd()\n\t(* Get path to \"present working directory\", i.e. the workflow's root directory.\n\n\t:returns: ``string`` (POSIX path)\n\n\t*)\n\t--# Save default AS delimiters, and set delimiters to \"\/\"\n\tset {ASTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \"\/\"}\n\t--# Get POSIX path of script's directory\n\tset _path to (text items 1 thru -2 of (POSIX path of (path to me)) as string) & \"\/\"\n\t--# Reset AS delimiters to original values\n\tset AppleScript's text item delimiters to ASTID\n\treturn _path\nend _pwd\n\non _prepare_cmd(_cmd)\n\t(* Ensure shell `_cmd` is working from the property directory.\n\tFor testing purposes, it also sets the `AB_BRANCH` environmental variable.\n\n\t:param _cmd: Shell command to be run in `do shell script`\n\t:type _cmd: ``string``\n\t:returns: Shell command with `pwd` set properly\n\t:returns: ``string``\n\t\t\n\t*)\n\t--# Ensure `pwd` is properly quoted for shell command\n\tset pwd to quoted form of (my _pwd())\n\t--# Declare environmental variable\n\t--#TODO: remove for final release\n\tset testing_var to \"export AB_BRANCH=devel; \"\n\t--# return shell script where `pwd` is properly set\n\treturn testing_var & \"cd \" & pwd & \"; bash \" & _cmd\nend _prepare_cmd\n\non _check_icon(_icon)\n\t(* Check if `_icon` exists, and if not revert to system download icon.\n\n\t:returns: POSIX path to `_icon`\n\t:rtype: ``string`` (POSIX path)\n\n\t*)\n\ttry\n\t\tPOSIX file _icon as alias\n\t\treturn _icon\n\ton error\n\t\treturn \"\/System\/Library\/CoreServices\/CoreTypes.bundle\/Contents\/Resources\/SidebarDownloadsFolder.icns\"\n\tend try\nend _check_icon\n\non _check_dir(_folder)\n\t(* Check if `_folder` exists, and if not create it, including any sub-directories.\n\n\t:returns: POSIX path to `_folder`\n\t:rtype: ``string`` (POSIX path)\n\n\t*)\n\tif not my _folder_exists(_folder) then\n\t\tdo shell script \"mkdir -p \" & (quoted form of _folder)\n\tend if\n\treturn _folder\nend _check_dir\n\n\non _folder_exists(_folder)\n\t(* Return ``true`` if `_folder` exists, else ``false``\n\n\t:param _folder: Full path to directory\n\t:type _folder: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t*)\n\tif my _path_exists(_folder) then\n\t\ttell application \"System Events\"\n\t\t\treturn (class of (disk item _folder) is folder)\n\t\tend tell\n\tend if\n\treturn false\nend _folder_exists\n\non _path_exists(_path)\n\t(* Return ``true`` if `_path` exists, else ``false``\n\n\t:param _path: Any POSIX path (file or folder)\n\t:type _path: ``string`` (POSIX path)\n\t:returns: ``Boolean``\n\n\t*)\n\tif _path is missing value or my _is_empty(_path) then return false\n\ttry\n\t\tif class of _path is alias then return true\n\t\tif _path contains \":\" then\n\t\t\talias _path\n\t\t\treturn true\n\t\telse if _path contains \"\/\" then\n\t\t\tPOSIX file _path as alias\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\ton error msg\n\t\treturn false\n\tend try\nend _path_exists\n\non _is_empty(_obj)\n\t(* Return ``true`` if `_obj ` is empty, else ``false``\n\n\t:param _obj: Any Applescript type\n\t:type _obj: (optional)\n\t:returns: ``Boolean``\n\t\t\n\t*)\n\t--# Is `_obj ` a ``Boolean``?\n\tif {true, false} contains _obj then return false\n\t--# Is `_obj ` a ``missing value``?\n\tif _obj is missing value then return true\n\t--# Is `_obj ` a empty string?\n\treturn length of (my _trim(_obj)) is 0\nend _is_empty\n\non _trim(_str)\n\t(* Remove white space from beginning and end of `_str`\n\n\t:param _str: A text string\n\t:type _str: ``string``\n\t:returns: trimmed string\n\n\t*)\n\tif class of _str is not text or class of _str is not string or _str is missing value then return _str\n\tif _str is \"\" then return _str\n\trepeat while _str begins with \" \"\n\t\ttry\n\t\t\tset _str to items 2 thru -1 of _str as text\n\t\ton error msg\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\trepeat while _str ends with \" \"\n\t\ttry\n\t\t\tset _str to items 1 thru -2 of _str as text\n\t\ton error\n\t\t\treturn \"\"\n\t\tend try\n\tend repeat\n\treturn _str\nend _trim","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3201ae5d73f8abf2d02594af70f9b6fecf738a91","subject":"fix: Markdown App","message":"fix: Markdown App\n","repos":"LinusLing\/LNCodeSet,LinusLing\/LNCodeSet","old_file":"HexoNew.scpt","new_file":"HexoNew.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001d\u0000\u0017 \"Finder\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\"\u0000 TJ\u0000 \u0000\"\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u001a\u0000\f\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001a\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0019\u0000\u000f\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0004\u0000\u0012\u0000\u0013\u0001\u0000\u0000\f\u0000\u0012\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0011\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0019\u0000\u001a\u0001\u0000\u0000\f\u0000\u0019\u0000?\u00009 \u02be dialog \u02be\u03e2\"\u00b1\" \u012c\u48fa\"title\"\u0000\u0002\u0000\u0000\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000L\u0000 f>y:\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \fcy:O`o\u001a\u0000\"XkQeezh\u0007\u0000\"\u0000 \u060bXkQE\u001a\u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\"\u0002\u0000\u0018\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000 \u0000!\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000 \u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\fXkQeezh\u0007\u0006\u0000!\u0000\u0003\u0000$\n\u0000\u0004\ndtxt\r\u0000$\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\n\u0000t\u0000i\u0000t\u0000l\u0000e\u0006\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0012\u0000)\u0000*\u0001\u0000\u0000\f\u0000)\u00002\u0000, \u0131\u05b5 postTitle \u03aa\u2ca2\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u00008\u0000 \\\u0006Qeveg,KP<~\u0000 \u0000p\u0000o\u0000s\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 O\\N:h\u0007^vV\u0002\u0000(\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0000-\u0000.\r\u0000-\u0000\u0002c\u0000\u0000\u0000\u0012\u0000\u0017\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u00002\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u00000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nctxt\r\u0000.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0002\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00003\u000f\u00003\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001\u07fdB\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001S\u000fH\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000HA\u000e\u0000\u0000\u0000\u0001\u0000\f\u0001\u07fdB\u0001\u07fdA\u0001\u07fd@\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u0000;\r\u0000;\u0000\u0002O\u0000\u0000\u0000\u001b\u0000\u0000<\u0000=\r\u0000<\u0000\u0001k\u0000\u0000\u0000\u001f\u0000\u0000>\u0002\u0000>\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u0000A\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0001\u0000%\u0000%\u0000F\u0000G\u0001\u0000\u0000\f\u0000F\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000E\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003I\u0000\u0002\u0000%\u0000*\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0001\u0000+\u0000+\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000\u001d\u0000\u0017 \u0436\u03f5\u01f0\u01f7\u0434\u06b4\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\u0018\u0000 R$e_SRMf\/T&g\tzSbS_\u0000\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0004Z\u0000\u0000\u0000+\u0000S\u0000R\u0000S\u0000T\r\u0000R\u0000\u0002=\u0000\u0003\u0000+\u00004\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0005\u0000+\u00002\u0000W\r\u0000W\u0000\u0003I\u0000\u0001\u0000+\u00002\u0000X\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000X\u0000\u00012\u0000\u0001\u0000+\u0000.\n\u0000\u0004\ncwin\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000V\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0000\r\u0000S\u0000\u0001k\u0000\u0000\u00007\u0000K\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u00007\u00007\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000.\u0000( \u00fb\u0435\u013b \"System Events\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000:\u0000 lg\tv\fTJ\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 PZY}QY\u0007\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0002O\u0000\u0000\u00007\u0000K\u0000`\u0000a\r\u0000`\u0000\u0001k\u0000\u0000\u0000;\u0000J\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0001\u0000;\u0000;\u0000e\u0000f\u0001\u0000\u0000\f\u0000e\u0000(\u0000\" \u0123\u2c34 Command + N \u00bd\u04bb\u0000\u0002\u0000\u0000\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u00000\u0000 j!bc\t.\u0000 \u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000+\u0000 \u0000N\u0000 e^N\u0000N*zS\u0002\u0000d\u0000\u0002\u0000h\r\u0000h\u0000\u0003I\u0000\u0002\u0000;\u0000J\u0000i\u0000j\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000i\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\u0002\u0000n\u0006\u0000j\u0000\u0003\u0000m\n\u0000\u0004\nfaal\r\u0000m\u0000\u0001J\u0000\u0000\u0000A\u0000F\u0000n\u0002\u0000n\u0000\u0002\u0000o\r\u0000o\u0000\u0001m\u0000\u0000\u0000A\u0000D\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000a\u0000\u0001m\u0000\u0000\u00007\u00008\u0000p\u000f\u0000p\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001\u07fdB\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u2eaf\u00d3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000#(\u0000\u0000\u0000\u0001\u0000\f\u0001\u07fdB\u0001\u07fdA\u0001\u07fd@\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000T\u0000\u0003I\u0000\u0002\u0000N\u0000S\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0001\u0000T\u0000T\u0000s\u0000t\u0001\u0000\u0000\f\u0000s\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000r\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0002r\u0000\u0000\u0000T\u0000^\u0000x\u0000y\r\u0000x\u0000\u00024\u0000\u0000\u0000T\u0000Z\u0000z\n\u0000\u0004\ncwin\r\u0000z\u0000\u0001v\u0000\u0000\u0000V\u0000Y\u0000{\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000w\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0001\u0000_\u0000_\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000j\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000_\u0000f\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000b\u0000f\n\u0000\u0004\ntcnt\r\u0000\u0000\u0001o\u0000\u0000\u0000_\u0000b\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000k\u0000k\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000F\u0000@ \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u07b8\u0135\u053c Hexo \u00b7\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000L\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\b\u0000Oe9R0]v\u0000 \u0000H\u0000e\u0000x\u0000o\u0000 b@W(_\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000k\u0000k\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000k\u0000k\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% postTitle \u0435\u013f\u0578\u6efb \"-\" \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000 \\\u0006\u0000 \u0000p\u0000o\u0000s\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 S\u0611N-vzzh<fcbb\u0010\u0000 \u0000\"\u0000-\u0000\"\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000k\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000k\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000k\u0000r\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000n\u0000r\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000k\u0000n\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003tid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003tid\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000h\u0000e\u0000x\u0000o\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001 \u05b4\u0434\u00b5\u0132\u05ae\u01f0\u0131\u03aa\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 bgLR\u001b^eezvdO\\\fO QeNKRMQevh\u0007O\\N:Sep\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000h\u0000e\u0000x\u0000o\u0000 \u0000n\u0000e\u0000w\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u000f\u0000\t \u04f3\u04bb\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000 ^N\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000,\u0000& MacDown \udabe\udeb6\u04e6\u00b7 md \u013c\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 nu(\u0000 \u0000M\u0000a\u0000c\u0000D\u0000o\u0000w\u0000n\u0000 bS_\u0000[^_v\u0000 \u0000m\u0000d\u0000 eN\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000o\u0000p\u0000e\u0000n\u0000 \u0000-\u0000a\u0000 \u0000T\u0000y\u0000p\u0000o\u0000r\u0000a\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000\/\u0000_\u0000p\u0000o\u0000s\u0000t\u0000s\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000.\u0000m\u0000d\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001iD\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001+\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000+=\u0003\u0000\u0000\u0000\u0001\u0000\b\u0001iD\u0001\u07fda\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\n\u0000\u0002\u0000\u0000\u0002\u00009\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000&\u00003\u0000\"\u0000%\u0000\u0000B\u0000p\u0000k~}|{zy\u0000xwvu\u0000\u0000t\u0000sr\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0004\nctxt\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0004\ncwin\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n~\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u000b}\u0000\u00070\u0000\u0003win\u0000\u0000\n|\u0000\u0004\ntcnt\u000b{\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\nz\u0000\u0004\nascr\ny\u0000\u0004\ntxdl\nx\u0000\u0004\ncobj\u000bw\u0000\u00070\u0000\u0003tid\u0000\u0000\nv\u0000\u0004\ncitm\u000bu\u0000\b0\u0000\u0004temp\u0000\u0000\nt\u0000\u0004\nkfil\u0003s\u0000\u0005\nr\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000\u0012\u0000\u0017*j\f\u0000\u0001Ol\f\u0000\u0005O,&EUO\u0012\u0000j\f\u0000\fO*j\f\u0000\u0001O*-j\f\u0000\u000ej\u0000\u001d\u0000\u0019\u0012\u0000\u0011a\u0000\u0010a\u0000\u0011a\u0000\u0012kvl\f\u0000\u0013UY\u0000\u0007*j\f\u0000\u0001O*jk\r\/E`\u0000\u0014O_\u0000\u0014a\u0000\u0015,E`\u0000\u0016O_\u0000\u0017a\u0000\u0018,a\u0000\u0019lvE[a\u0000\u001ak\/E`\u0000\u001bZ[a\u0000\u001al\/_\u0000\u0017a\u0000\u0018,FZOa\u0000\u001c-E`\u0000\u001dOa\u0000\u001e_\u0000\u0017a\u0000\u0018,FO_\u0000\u001d&EO_\u0000\u001b_\u0000\u0017a\u0000\u0018,FOa\u0000\u001fa\u0000 _\u0000\u0016l\f\u0000\fOa\u0000!%a\u0000 _\u0000\u0016l\f\u0000\fOa\u0000\"j\f\u0000#Oa\u0000$%a\u0000%%a\u0000 _\u0000\u0016l\f\u0000\fU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u001d\u0000\u0017 \"Finder\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\"\u0000 TJ\u0000 \u0000\"\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000\"\u0000 PZY}QY\u0007\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u001a\u0000\f\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001a\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0019\u0000\u000f\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0001\u0000\u0004\u0000\u0004\u0000\u0012\u0000\u0013\u0001\u0000\u0000\f\u0000\u0012\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000\u0011\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0001\u0000\n\u0000\n\u0000\u0019\u0000\u001a\u0001\u0000\u0000\f\u0000\u0019\u0000?\u00009 \u02be dialog \u02be\u03e2\"\u00b1\" \u012c\u48fa\"title\"\u0000\u0002\u0000\u0000\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000L\u0000 f>y:\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \fcy:O`o\u001a\u0000\"XkQeezh\u0007\u0000\"\u0000 \u060bXkQE\u001a\u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\"\u0002\u0000\u0018\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003l\u0000\u0002\u0000\n\u0000\n\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000 \u0000!\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000 \u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\"\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000\fXkQeezh\u0007\u0006\u0000!\u0000\u0003\u0000$\n\u0000\u0004\ndtxt\r\u0000$\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\n\u0000t\u0000i\u0000t\u0000l\u0000e\u0006\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0012\u0000)\u0000*\u0001\u0000\u0000\f\u0000)\u00002\u0000, \u0131\u05b5 postTitle \u03aa\u2ca2\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u00008\u0000 \\\u0006Qeveg,KP<~\u0000 \u0000p\u0000o\u0000s\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 O\\N:h\u0007^vV\u0002\u0000(\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0000-\u0000.\r\u0000-\u0000\u0002c\u0000\u0000\u0000\u0012\u0000\u0017\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0015\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0015\n\u0000\u0004\nttxt\r\u00002\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nrslt\r\u00000\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\n\u0000\u0004\nctxt\r\u0000.\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0002\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00003\u000f\u00003\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001:\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001P\\w\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000o\u0000\u0000\u0000\u0001\u0000\f\u0001:\u00019\u00018\u0000\u0002\u00006Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000\u001f\u0000\u0019 \"Terminal\" \u05fc\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000&\u0000 TJ\u0000 \u0000\"\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000\"\u0000 PZY}QY\u0007\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u001b\u0000\u0000;\r\u0000;\u0000\u0002O\u0000\u0000\u0000\u001b\u0000\u0000<\u0000=\r\u0000<\u0000\u0001k\u0000\u0000\u0000\u001f\u0000\u0000>\u0002\u0000>\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\u0000A\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000\u0000\u0002\u0000\u0000\u0002\u0000@\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0001\u0000%\u0000%\u0000F\u0000G\u0001\u0000\u0000\f\u0000F\u0000\u0013\u0000\r \u01f0\u04e6\u0000\u0002\u0000\u0000\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000\u000e\u0000 T\/R_SRM^u(\u0002\u0000E\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003I\u0000\u0002\u0000%\u0000*\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0001\u0000+\u0000+\u0000M\u0000N\u0001\u0000\u0000\f\u0000M\u0000\u001d\u0000\u0017 \u0436\u03f5\u01f0\u01f7\u0434\u06b4\u0000\u0002\u0000\u0000\u000e\u0000N\u0000\u0001\u0000O\u0011\u0000O\u0000\u0018\u0000 R$e_SRMf\/T&g\tzSbS_\u0000\u0002\u0000L\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0004Z\u0000\u0000\u0000+\u0000S\u0000R\u0000S\u0000T\r\u0000R\u0000\u0002=\u0000\u0003\u0000+\u00004\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0005\u0000+\u00002\u0000W\r\u0000W\u0000\u0003I\u0000\u0001\u0000+\u00002\u0000X\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000X\u0000\u00012\u0000\u0001\u0000+\u0000.\n\u0000\u0004\ncwin\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000V\u0000\u0001m\u0000\u0000\u00002\u00003\u0003\u0000\u0000\r\u0000S\u0000\u0001k\u0000\u0000\u00007\u0000K\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0003l\u0000\u0001\u00007\u00007\u0000\\\u0000]\u0001\u0000\u0000\f\u0000\\\u0000.\u0000( \u00fb\u0435\u013b \"System Events\" \u05fc\u0000\u0002\u0000\u0000\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000:\u0000 lg\tv\fTJ\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 PZY}QY\u0007\u0002\u0000[\u0000\u0002\u0000_\r\u0000_\u0000\u0002O\u0000\u0000\u00007\u0000K\u0000`\u0000a\r\u0000`\u0000\u0001k\u0000\u0000\u0000;\u0000J\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0001\u0000;\u0000;\u0000e\u0000f\u0001\u0000\u0000\f\u0000e\u0000(\u0000\" \u0123\u2c34 Command + N \u00bd\u04bb\u0000\u0002\u0000\u0000\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u00000\u0000 j!bc\t.\u0000 \u0000C\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000 \u0000+\u0000 \u0000N\u0000 e^N\u0000N*zS\u0002\u0000d\u0000\u0002\u0000h\r\u0000h\u0000\u0003I\u0000\u0002\u0000;\u0000J\u0000i\u0000j\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000i\u0000\u0001m\u0000\u0000\u0000;\u0000>\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\u0002\u0000n\u0006\u0000j\u0000\u0003\u0000m\n\u0000\u0004\nfaal\r\u0000m\u0000\u0001J\u0000\u0000\u0000A\u0000F\u0000n\u0002\u0000n\u0000\u0002\u0000o\r\u0000o\u0000\u0001m\u0000\u0000\u0000A\u0000D\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000a\u0000\u0001m\u0000\u0000\u00007\u00008\u0000p\u000f\u0000p\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001:\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\/M\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u0001:\u00019\u00018\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000T\u0000\u0003I\u0000\u0002\u0000N\u0000S\n\u0000\u0018.miscactvnull\u0000\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0001\u0000T\u0000T\u0000s\u0000t\u0001\u0000\u0000\f\u0000s\u00003\u0000- \u00f5\u04bb\u03aa\u04aa\u05b4\u0432\u0134\u0000\u0002\u0000\u0000\u000e\u0000t\u0000\u0001\u0000u\u0011\u0000u\u0000.\u0000 fRn{,N\u0000N*zSO\\N:cN\u000bgebgLdO\\vzS\u0002\u0000r\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0002r\u0000\u0000\u0000T\u0000^\u0000x\u0000y\r\u0000x\u0000\u00024\u0000\u0000\u0000T\u0000Z\u0000z\n\u0000\u0004\ncwin\r\u0000z\u0000\u0001v\u0000\u0000\u0000V\u0000Y\u0000{\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0003\u0000\u0000\u0002\u0000\u0000\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\u0002\u0000w\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003l\u0000\u0001\u0000_\u0000_\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0015\u0000\u000f \u00f5\u01f0 Tab\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000 n_SRMv\u0000 \u0000T\u0000a\u0000b\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000_\u0000j\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000_\u0000f\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000b\u0000f\n\u0000\u0004\ntcnt\r\u0000\u0000\u0001o\u0000\u0000\u0000_\u0000b\u000b\u0000\u00070\u0000\u0003win\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000k\u0000k\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000F\u0000@ \u06b5\u01f0 Tab \u05b4\u0438\u0131\u013f\u00bc\u0132\u07b8\u0135\u053c Hexo \u00b7\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000L\u0000 W(_SRM\u0000 \u0000T\u0000a\u0000b\u0000 N-bgLe9Sv_UvdO\\\b\u0000Oe9R0]v\u0000 \u0000H\u0000e\u0000x\u0000o\u0000 b@W(_\t\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000k\u0000k\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000k\u0000k\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% postTitle \u0435\u013f\u0578\u6efb \"-\" \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00006\u0000 \\\u0006\u0000 \u0000p\u0000o\u0000s\u0000t\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 S\u0611N-vzzh<fcbb\u0010\u0000 \u0000\"\u0000-\u0000\"\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000k\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000k\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000k\u0000r\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000n\u0000r\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000k\u0000n\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000r\u0000u\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003tid\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\ncitm\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004temp\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003tid\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntxdl\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nascr\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000d\u0000 \u0000~\u0000\/\u0000h\u0000e\u0000x\u0000o\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u00007\u00001 \u05b4\u0434\u00b5\u0132\u05ae\u01f0\u0131\u03aa\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00002\u0000 bgLR\u001b^eezvdO\\\fO QeNKRMQevh\u0007O\\N:Sep\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000h\u0000e\u0000x\u0000o\u0000 \u0000n\u0000e\u0000w\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u000f\u0000\t \u04f3\u04bb\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000 ^N\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000,\u0000& MacDown \udabe\udeb6\u04e6\u00b7 md \u013c\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000 nu(\u0000 \u0000M\u0000a\u0000c\u0000D\u0000o\u0000w\u0000n\u0000 bS_\u0000[^_v\u0000 \u0000m\u0000d\u0000 eN\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000o\u0000p\u0000e\u0000n\u0000 \u0000-\u0000a\u0000 \u0000M\u0000a\u0000c\u0000D\u0000o\u0000w\u0000n\u0000 \u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000\/\u0000_\u0000p\u0000o\u0000s\u0000t\u0000s\u0000\/\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000.\u0000m\u0000d\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nkfil\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001l\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001cH+\u0000\u0000\u0001X\fTerminal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001]PS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tUtilities\u0000\u0000\u0010\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000P\u0000\u0000\u0000\u0001\u0000\b\u0001X\u0001Z\u0000\u0002\u00002Macintosh HD:Applications:\u0000Utilities:\u0000Terminal.app\u0000\u000e\u0000\u001a\u0000\f\u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/Utilities\/Terminal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\n\u0000\u0002\u0000\u0000\u0002\u00009\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000&\u00003\u0000\"\u0000%\u0000\u0000B\u0000p\u0000k~}|{zy\u0000xwvu\u0000\u0000t\u0000sr\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000obj \n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\n\u0000\u0004\nctxt\u000b\u0000\u00160\u0000\tposttitle\u0000\tpostTitle\n\u0000\u0018.coredoscnull\u0000\u0000ctxt\n\u0000\u0004\ncwin\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n~\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\u000b}\u0000\u00070\u0000\u0003win\u0000\u0000\n|\u0000\u0004\ntcnt\u000b{\u0000\u00180\u0000\ncurrenttab\u0000\ncurrentTab\nz\u0000\u0004\nascr\ny\u0000\u0004\ntxdl\nx\u0000\u0004\ncobj\u000bw\u0000\u00070\u0000\u0003tid\u0000\u0000\nv\u0000\u0004\ncitm\u000bu\u0000\b0\u0000\u0004temp\u0000\u0000\nt\u0000\u0004\nkfil\u0003s\u0000\u0005\nr\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0000\u0012\u0000\u0017*j\f\u0000\u0001Ol\f\u0000\u0005O,&EUO\u0012\u0000j\f\u0000\fO*j\f\u0000\u0001O*-j\f\u0000\u000ej\u0000\u001d\u0000\u0019\u0012\u0000\u0011a\u0000\u0010a\u0000\u0011a\u0000\u0012kvl\f\u0000\u0013UY\u0000\u0007*j\f\u0000\u0001O*jk\r\/E`\u0000\u0014O_\u0000\u0014a\u0000\u0015,E`\u0000\u0016O_\u0000\u0017a\u0000\u0018,a\u0000\u0019lvE[a\u0000\u001ak\/E`\u0000\u001bZ[a\u0000\u001al\/_\u0000\u0017a\u0000\u0018,FZOa\u0000\u001c-E`\u0000\u001dOa\u0000\u001e_\u0000\u0017a\u0000\u0018,FO_\u0000\u001d&EO_\u0000\u001b_\u0000\u0017a\u0000\u0018,FOa\u0000\u001fa\u0000 _\u0000\u0016l\f\u0000\fOa\u0000!%a\u0000 _\u0000\u0016l\f\u0000\fOa\u0000\"j\f\u0000#Oa\u0000$%a\u0000%%a\u0000 _\u0000\u0016l\f\u0000\fU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a8d7790d2f24e3e9463a2305c3ebbb6ea3f8a68d","subject":"Add comment","message":"Add comment\n","repos":"int128\/osx-go-to-bed","old_file":"org.hidetake.osx-go-to-bed.applescript","new_file":"org.hidetake.osx-go-to-bed.applescript","new_contents":"#!\/usr\/bin\/osascript\n\n-- awake time in next morning\nset awakeTime to date \"8:00:00\"\n\n-- calculate and notify remaining time\nset {hours: remainHours, minutes: remainMinutes} to (date \"0:0\") + (awakeTime - (current date))\n\nset messageTitle to \"Remaining \" & remainHours & \" hours \" & remainMinutes & \" minutes\"\nset messageDescription to \"now \" & time string of (current date)\n\ndisplay notification messageDescription with title messageTitle\n","old_contents":"#!\/usr\/bin\/osascript\n\nset awakeTime to date \"8:00:00\"\n\nset {hours: remainHours, minutes: remainMinutes} to (date \"0:0\") + (awakeTime - (current date))\nset messageTitle to \"Remaining \" & remainHours & \" hours \" & remainMinutes & \" minutes\"\nset messageDescription to \"now \" & time string of (current date)\n\ndisplay notification messageDescription with title messageTitle\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"9fa20f3c3fcb026122838417322e0e5d6982a560","subject":"windowWaitUntil 1.3 - make the whichWindow \"any\" actually work for partial matches","message":"windowWaitUntil 1.3 - make the whichWindow \"any\" actually work for partial matches\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_WindowManage\/windowWaitUntil.applescript","new_file":"library\/fmGUI_WindowManage\/windowWaitUntil.applescript","new_contents":"-- windowWaitUntil(windowName:\"\", windowNameTest:\"\", whichWindow:\"\", waitCycleDelaySeconds:\"\", waitCycleMax:\"\")\n-- Daniel A. Shockley, NYHTC\n-- keep checking until the frontmost window matches specified criteria.\n\n\n(*\nHISTORY:\n\t1.3 - 2016-10-20 ( dshockley ): if using \"any\", then need to do the name tests in a loop for each window.\n\t1.2 - 2015-09-30 ( eshagdar ): added 'is not test'.\n\t1.1 - 2014-xx-xx ( dshockley ): added 'is' as synonymous with 'equals'.\n\t1.0 - 2014-xx-xx ( dshockley ): created.\n*)\n\n\non run\n\tdelay 1\n\twindowWaitUntil({whichWindow:\"any\", windowNameTest:\"contains\", windowName:\"Authenticate\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non windowWaitUntil(prefs)\n\t-- version 1.3, Daniel A. Shockley\n\t\n\tset defaultPrefs to {windowName:null, windowNameTest:\"contains\", whichWindow:\"any\", waitCycleDelaySeconds:0.5, waitCycleMax:20}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset windowName to windowName of prefs\n\tset windowNameTest to windowNameTest of prefs\n\tset whichWindow to whichWindow of prefs\n\t\n\tset checkResult to false\n\t\n\trepeat waitCycleMax of prefs times\n\t\ttell application \"System Events\"\n\t\t\tif whichWindow is \"any\" then\n\t\t\t\tset windowNameList to name of every window of application process \"FileMaker Pro Advanced\"\n\t\t\telse if whichWindow is \"front\" then\n\t\t\t\tset frontWindowName to name of window 1 of application process \"FileMaker Pro Advanced\"\n\t\t\t\tset windowNameList to {frontWindowName} -- we are only checking ONE window, but need a list (of one item) for below.\n\t\t\telse -- whichWindow is window index number:\n\t\t\t\tset windowIndex to whichWindow as number\n\t\t\t\tset chosenWindowName to name of window windowIndex of application process \"FileMaker Pro Advanced\"\n\t\t\t\tset windowNameList to {chosenWindowName} -- we are only checking ONE window, but need a list (of one item) for below.\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\trepeat with oneWindowName in windowNameList\n\t\t\t-- BEGIN: loop over one (or more) windows.\t\n\t\t\tset oneWindowName to contents of oneWindowName\n\t\t\t\n\t\t\tif windowNameTest is \"contains\" then\n\t\t\t\tset checkResult to (oneWindowName contains windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"does not contain\" then\n\t\t\t\tset checkResult to (oneWindowName does not contain windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"equals\" then\n\t\t\t\tset checkResult to (oneWindowName is equal to windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"is\" then\n\t\t\t\tset checkResult to (oneWindowName is equal to windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"starts with\" then\n\t\t\t\tset checkResult to (oneWindowName starts with windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"does not start with\" then\n\t\t\t\tset checkResult to (oneWindowName does not start with windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"ends with\" then\n\t\t\t\tset checkResult to (oneWindowName ends with windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"does not end with\" then\n\t\t\t\tset checkResult to (oneWindowName does not end with windowName)\n\t\t\t\t\n\t\t\telse if windowNameTest is \"is not\" then\n\t\t\t\tset checkResult to (oneWindowName is not windowName)\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tif checkResult then exit repeat\n\t\t\t\n\t\t\t-- END OF: loop over one (or more) windows.\t\n\t\tend repeat\n\t\t\n\t\t\n\t\tif checkResult then exit repeat\n\t\t\n\t\tdelay waitCycleDelaySeconds of prefs\n\t\t\n\t\t-- END OF: waiting loop.\t\t\t\n\tend repeat\n\t\n\treturn checkResult\n\t\nend windowWaitUntil\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- windowWaitUntil(windowName:\"\", windowNameTest:\"\", whichWindow:\"\", waitCycleDelaySeconds:\"\", waitCycleMax:\"\")\n-- Daniel A. Shockely, NYHTC\n-- keep checking until the frontmost window matches specified criteria.\n\n\n(*\nHISTORY:\n\t1.2 - 2015-09-30 ( eshagdar ): added 'is not test'\n\t1.1 - added 'is' as synonymous with 'equals'\n\t1.0 - created\n*)\n\n\non run\n\twindowWaitUntil({windowName:\"Times Square\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non windowWaitUntil(prefs)\n\t-- version 1.2\n\t\n\tset defaultPrefs to {windowName:null, windowNameTest:\"contains\", whichWindow:\"any\", waitCycleDelaySeconds:0.5, waitCycleMax:20}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset windowName to windowName of prefs\n\tset windowNameTest to windowNameTest of prefs\n\tset whichWindow to whichWindow of prefs\n\t\n\tset checkResult to false\n\t\n\trepeat waitCycleMax of prefs times\n\t\ttell application \"System Events\"\n\t\t\tif whichWindow is \"any\" then\n\t\t\t\tset windowNameCheck to name of every window of application process \"FileMaker Pro Advanced\"\n\t\t\telse if whichWindow is \"front\" then\n\t\t\t\tset windowNameCheck to name of window 1 of application process \"FileMaker Pro Advanced\"\n\t\t\telse -- whichWindow is window index number:\n\t\t\t\tset windowIndex to whichWindow as number\n\t\t\t\tset windowNameCheck to name of window windowIndex of application process \"FileMaker Pro Advanced\"\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\tif windowNameTest is \"contains\" then\n\t\t\tset checkResult to (windowNameCheck contains windowName)\n\t\t\t\n\t\telse if windowNameTest is \"does not contain\" then\n\t\t\tset checkResult to (windowNameCheck does not contain windowName)\n\t\t\t\n\t\telse if windowNameTest is \"equals\" then\n\t\t\tset checkResult to (windowNameCheck is equal to windowName)\n\t\t\t\n\t\telse if windowNameTest is \"is\" then\n\t\t\tset checkResult to (windowNameCheck is equal to windowName)\n\t\t\t\n\t\telse if windowNameTest is \"starts with\" then\n\t\t\tset checkResult to (windowNameCheck starts with windowName)\n\t\t\t\n\t\telse if windowNameTest is \"does not start with\" then\n\t\t\tset checkResult to (windowNameCheck does not start with windowName)\n\t\t\t\n\t\telse if windowNameTest is \"ends with\" then\n\t\t\tset checkResult to (windowNameCheck ends with windowName)\n\t\t\t\n\t\telse if windowNameTest is \"does not end with\" then\n\t\t\tset checkResult to (windowNameCheck does not end with windowName)\n\t\telse if windowNameTest is \"is not\" then\n\t\t\tset checkResult to (windowNameCheck is not windowName)\n\t\t\t\n\t\tend if\n\t\t\n\t\tif checkResult then exit repeat\n\t\t\n\t\tdelay waitCycleDelaySeconds of prefs\n\t\t\n\t\t\n\tend repeat\n\t\n\treturn checkResult\n\t\nend windowWaitUntil\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b4542a1e23b831f4e4878a74da35d8ac2a6d6363","subject":"Updated drop box script to work also without existing pref file","message":"Updated drop box script to work also without existing pref file\n","repos":"nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea,nudge-nudge\/punakea","old_file":"Resources\/DropBox.scpt","new_file":"Resources\/DropBox.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\u0000\n\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u0006\u0000\n\u0000\u0003\u0000\u000b\n\u0000\u0004\nflst\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0006\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000T\u0000Nset scriptPath to (path to Folder Action scripts as Unicode text) & \"tmp.scpt\"\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000s\u0000e\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000(\u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000 \u0000a\u0000s\u0000 \u0000U\u0000n\u0000i\u0000c\u0000o\u0000d\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000)\u0000 \u0000&\u0000 \u0000\"\u0000t\u0000m\u0000p\u0000.\u0000s\u0000c\u0000p\u0000t\u0000\"\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000)\u0000# Get the comment from Punakea prefs\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000F\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0004\u0000~\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003Q\u0000\u0000\u0000\u0004\u0000.\u0000\"\u0000#\r\u0000\"\u0000\u0001k\u0000\u0000\u0000\u0007\u0000%\u0000$\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\u001a\u0000'\u0000(\r\u0000'\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u0018\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u0016\u0000+\r\u0000+\u0000\u0002b\u0000\u0000\u0000\u0007\u0000\u0016\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u0014\u0000.\r\u0000.\u0000\u0002c\u0000\u0000\u0000\u0007\u0000\u0014\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u0012\u00001\r\u00001\u0000\u0003I\u0000\u0002\u0000\u0007\u0000\u0012\u00002\u00003\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u00011\u0000\u0000\u0000\u0007\u0000\n\n\u0000\u0004\ndlib\u0006\u00003\u0000\u0003\u00004\n\u0000\u0004\nfrom\r\u00004\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\nfldu\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u00005\u000e\u00005\u0000\u0001\u00006\u0011\u00006\u0000N\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000e\u0000u\u0000.\u0000n\u0000u\u0000d\u0000g\u0000e\u0000n\u0000u\u0000d\u0000g\u0000e\u0000.\u0000p\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\u0004\nalis\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\u0002\u0000&\u0000\u0002\u00007\r\u00007\u0000\u0002r\u0000\u0000\u0000\u001b\u0000%\u00008\u00009\r\u00008\u0000\u0002n\u0000\u0000\u0000\u001b\u0000#\u0000:\u0000;\r\u0000:\u0000\u00011\u0000\u0000\u0000!\u0000#\n\u0000\u0004\npcnt\r\u0000;\u0000\u00024\u0000\u0000\u0000\u001b\u0000!\u0000<\n\u0000\u0004\nplif\r\u0000<\u0000\u0003l\u0000\u0005\u0000\u001d\u0000 \u0000=\r\u0000=\u0000\u0002c\u0000\u0000\u0000\u001d\u0000 \u0000>\u0000?\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\r\u0000?\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nutxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\u0002\u0000\u0000\r\u0000#\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\/\u0000\/\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002r\u0000\u0000\u0000\/\u00002\u0000D\u0000E\r\u0000D\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000F\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000 \u0000#\u0000#\u0000#\u0000b\u0000e\u0000g\u0000i\u0000n\u0000_\u0000t\u0000a\u0000g\u0000s\u0000#\u0000#\u0000#\r\u0000E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000C\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003Q\u0000\u0000\u00003\u0000v\u0000L\u0000M\u0000N\r\u0000L\u0000\u0001k\u0000\u0000\u00006\u0000g\u0000O\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u00006\u0000@\u0000R\u0000S\r\u0000R\u0000\u0002n\u0000\u0000\u00006\u0000>\u0000T\u0000U\r\u0000T\u0000\u00011\u0000\u0000\u0000:\u0000>\n\u0000\u0004\nvalL\r\u0000U\u0000\u0002n\u0000\u0000\u00006\u0000:\u0000V\u0000W\r\u0000V\u0000\u00024\u0000\u0000\u00007\u0000:\u0000X\n\u0000\u0004\nplii\r\u0000X\u0000\u0001m\u0000\u0000\u00008\u00009\u0000Y\u000e\u0000Y\u0000\u0001\u0000Z\u0011\u0000Z\u00000\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000.\u0000D\u0000r\u0000o\u0000p\u0000B\u0000o\u0000x\u0000.\u0000T\u0000a\u0000g\u0000s\r\u0000W\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0002\u0000A\u0000A\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000]\r\u0000]\u0000\u0003X\u0000\u0000\u0000A\u0000g\u0000^\u0000_\r\u0000^\u0000\u0002r\u0000\u0000\u0000U\u0000b\u0000`\u0000a\r\u0000`\u0000\u0002b\u0000\u0000\u0000U\u0000`\u0000b\u0000c\r\u0000b\u0000\u0002b\u0000\u0000\u0000U\u0000\\\u0000d\u0000e\r\u0000d\u0000\u0002b\u0000\u0000\u0000U\u0000Z\u0000f\u0000g\r\u0000f\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000g\u0000\u0001m\u0000\u0000\u0000V\u0000Y\u0000h\u000e\u0000h\u0000\u0001\u0000i\u0011\u0000i\u0000\u0002\u0000@\r\u0000e\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\r\u0000c\u0000\u0001m\u0000\u0000\u0000\\\u0000_\u0000j\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0000\u0002\u0000;\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\r\u0000_\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u0002\u0000\u0000\r\u0000M\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000N\u0000\u0002r\u0000\u0000\u0000o\u0000v\u0000l\u0000m\r\u0000l\u0000\u0002b\u0000\u0000\u0000o\u0000t\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000o\u0000\u0001m\u0000\u0000\u0000p\u0000s\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0014\u0000@\u0000u\u0000n\u0000t\u0000a\u0000g\u0000g\u0000e\u0000d\u0000;\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000K\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0002\u0000w\u0000w\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0002r\u0000\u0000\u0000w\u0000~\u0000u\u0000v\r\u0000u\u0000\u0002b\u0000\u0000\u0000w\u0000|\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000w\u0000x\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000x\u0000\u0001m\u0000\u0000\u0000x\u0000{\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u001c\u0000#\u0000#\u0000#\u0000e\u0000n\u0000d\u0000_\u0000t\u0000a\u0000g\u0000s\u0000#\u0000#\u0000#\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000\u0000\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000{\u000f\u0000{\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0016c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00001Mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000%\u0000\u001f Write comment on dropped files\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000 \u0000o\u0000n\u0000 \u0000d\u0000r\u0000o\u0000p\u0000p\u0000e\u0000d\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000&\u0000 tell application \"System Events\"\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000@\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u00006\u00000\tattach action to folder f using file scriptPath\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000\t\u0000a\u0000t\u0000t\u0000a\u0000c\u0000h\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000f\u0000 \u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000P\u0000a\u0000t\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u000e\u0000\bend tell\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ncomt\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nalis\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sZ\u07c4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000Zt\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u0000*Mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u0006\u0000\u0003\n\u0000\u0004\nflst\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0006\u0000\u0000\u0010\u0000\u0000\t\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u0010\u0000\u0000\u001a\u0000{~\u00005}|{zyx\u0000Fw\u0000Yvuts\u0000h\u0000j\u0000p\u0000y\u0000r\n\u0000\u0004\ndlib\n\u0000\u0004\nfrom\n\u0000\u0004\nfldu\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n~\u0000\u0004\nTEXT\n}\u0000\u0004\nalis\n|\u0000\u0004\nplif\n{\u0000\u0004\nutxt\nz\u0000\u0004\npcnt\u0001y\u0000\u0000\u0002x\u0000\u0000\nw\u0000\u0004\nplii\nv\u0000\u0004\nvalL\nu\u0000\u0004\nkocl\nt\u0000\u0004\ncobj\ns\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nr\u0000\u0004\ncomt\u0011\u0000\u0012\u0000|\u0014\u0000#*,*,l\f\u0000\u0004&%&EO*&\/,EW\u0000\bX\u0000\u000b\u0000\fhOEO\u0014\u00006\/a\u0000\u0010,EO\u0017\u0000%[a\u0000\u0011a\u0000\u0012l\f\u0000\u0013kh\u001b\u0000\u0006a\u0000\u0014%%a\u0000\u0015%E[OYW\u0000\u000eX\u0000\u000b\u0000\fa\u0000\u0016%EOa\u0000\u0017%EUO\u0017\u0000=[a\u0000\u0011a\u0000\u0012l\f\u0000\u0013kh\u001b\u0000\u0007&EO\u0014\u0000\u0016a\u0000\u0018\u0012\u0000\f*\/a\u0000\u0019,FUW\u0000\bX\u0000\u000b\u0000\fhOP[OY\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\u0000\n\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u0006\u0000\n\u0000\u0003\u0000\u000b\n\u0000\u0004\nflst\r\u0000\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0006\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000T\u0000Nset scriptPath to (path to Folder Action scripts as Unicode text) & \"tmp.scpt\"\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\u0000s\u0000e\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000P\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000(\u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000A\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000 \u0000a\u0000s\u0000 \u0000U\u0000n\u0000i\u0000c\u0000o\u0000d\u0000e\u0000 \u0000t\u0000e\u0000x\u0000t\u0000)\u0000 \u0000&\u0000 \u0000\"\u0000t\u0000m\u0000p\u0000.\u0000s\u0000c\u0000p\u0000t\u0000\"\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000)\u0000# Get the comment from Punakea prefs\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000F\u0000 \u0000G\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000P\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000 \u0000p\u0000r\u0000e\u0000f\u0000s\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u0000\u0000o\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0004\u0000n\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u0017\u0000\"\u0000#\r\u0000\"\u0000\u0002c\u0000\u0000\u0000\u0004\u0000\u0015\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u0013\u0000&\r\u0000&\u0000\u0002b\u0000\u0000\u0000\u0004\u0000\u0013\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u0011\u0000)\r\u0000)\u0000\u0002c\u0000\u0000\u0000\u0004\u0000\u0011\u0000*\u0000+\r\u0000*\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u000f\u0000,\r\u0000,\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\u000f\u0000-\u0000.\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000-\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\ndlib\u0006\u0000.\u0000\u0003\u0000\/\n\u0000\u0004\nfrom\r\u0000\/\u0000\u00011\u0000\u0000\u0000\b\u0000\u000b\n\u0000\u0004\nfldu\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000N\u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000:\u0000e\u0000u\u0000.\u0000n\u0000u\u0000d\u0000g\u0000e\u0000n\u0000u\u0000d\u0000g\u0000e\u0000.\u0000p\u0000u\u0000n\u0000a\u0000k\u0000e\u0000a\u0000.\u0000p\u0000l\u0000i\u0000s\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\u0004\nalis\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\u0002\u0000!\u0000\u0002\u00002\u00003\r\u00002\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\"\u00004\u00005\r\u00004\u0000\u0002n\u0000\u0000\u0000\u0018\u0000 \u00006\u00007\r\u00006\u0000\u00011\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\npcnt\r\u00007\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001e\u00008\n\u0000\u0004\nplif\r\u00008\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001d\u00009\r\u00009\u0000\u0002c\u0000\u0000\u0000\u001a\u0000\u001d\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\r\u0000;\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\n\u0000\u0004\nutxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\u0002\u00003\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000=\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000#\u0000&\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000B\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000 \u0000#\u0000#\u0000#\u0000b\u0000e\u0000g\u0000i\u0000n\u0000_\u0000t\u0000a\u0000g\u0000s\u0000#\u0000#\u0000#\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000?\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0002\u0000'\u0000'\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003Q\u0000\u0000\u0000'\u0000f\u0000H\u0000I\u0000J\r\u0000H\u0000\u0001k\u0000\u0000\u0000*\u0000W\u0000K\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002r\u0000\u0000\u0000*\u00002\u0000N\u0000O\r\u0000N\u0000\u0002n\u0000\u0000\u0000*\u00000\u0000P\u0000Q\r\u0000P\u0000\u00011\u0000\u0000\u0000.\u00000\n\u0000\u0004\nvalL\r\u0000Q\u0000\u0002n\u0000\u0000\u0000*\u0000.\u0000R\u0000S\r\u0000R\u0000\u00024\u0000\u0000\u0000+\u0000.\u0000T\n\u0000\u0004\nplii\r\u0000T\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000U\u000e\u0000U\u0000\u0001\u0000V\u0011\u0000V\u00000\u0000M\u0000a\u0000n\u0000a\u0000g\u0000e\u0000F\u0000i\u0000l\u0000e\u0000s\u0000.\u0000D\u0000r\u0000o\u0000p\u0000B\u0000o\u0000x\u0000.\u0000T\u0000a\u0000g\u0000s\r\u0000S\u0000\u0001o\u0000\u0000\u0000*\u0000+\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\r\u0000O\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u0002\u0000M\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0002\u00003\u00003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000Y\r\u0000Y\u0000\u0003X\u0000\u0000\u00003\u0000W\u0000Z\u0000[\r\u0000Z\u0000\u0002r\u0000\u0000\u0000E\u0000R\u0000\\\u0000]\r\u0000\\\u0000\u0002b\u0000\u0000\u0000E\u0000P\u0000^\u0000_\r\u0000^\u0000\u0002b\u0000\u0000\u0000E\u0000L\u0000`\u0000a\r\u0000`\u0000\u0002b\u0000\u0000\u0000E\u0000J\u0000b\u0000c\r\u0000b\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000c\u0000\u0001m\u0000\u0000\u0000F\u0000I\u0000d\u000e\u0000d\u0000\u0001\u0000e\u0011\u0000e\u0000\u0002\u0000@\r\u0000a\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\r\u0000_\u0000\u0001m\u0000\u0000\u0000L\u0000O\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0002\u0000;\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\r\u0000[\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000J\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000h\u0000i\r\u0000h\u0000\u0002b\u0000\u0000\u0000_\u0000d\u0000j\u0000k\r\u0000j\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000k\u0000\u0001m\u0000\u0000\u0000`\u0000c\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000\u0014\u0000@\u0000u\u0000n\u0000t\u0000a\u0000g\u0000g\u0000e\u0000d\u0000;\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000G\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0002r\u0000\u0000\u0000g\u0000n\u0000q\u0000r\r\u0000q\u0000\u0002b\u0000\u0000\u0000g\u0000l\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000t\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u001c\u0000#\u0000#\u0000#\u0000e\u0000n\u0000d\u0000_\u0000t\u0000a\u0000g\u0000s\u0000#\u0000#\u0000#\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u0002\u0000\u0000\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000w\u000f\u0000w\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001t\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0016c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001cC\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u00001Mac:System:Library:CoreServices:System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0003l\u0000\u0002\u0000p\u0000p\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003l\u0000\u0006\u0000p\u0000p\u0000|\u0000}\u0001\u0000\u0000\f\u0000|\u0000%\u0000\u001f Write comment on dropped files\u0000\u0002\u0000\u0000\u000e\u0000}\u0000\u0001\u0000~\u0011\u0000~\u0000>\u0000 \u0000W\u0000r\u0000i\u0000t\u0000e\u0000 \u0000c\u0000o\u0000m\u0000m\u0000e\u0000n\u0000t\u0000 \u0000o\u0000n\u0000 \u0000d\u0000r\u0000o\u0000p\u0000p\u0000e\u0000d\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0002\u0000{\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000p\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000&\u0000 tell application \"System Events\"\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000@\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u00006\u00000\tattach action to folder f using file scriptPath\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000`\u0000\t\u0000a\u0000t\u0000t\u0000a\u0000c\u0000h\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000f\u0000 \u0000u\u0000s\u0000i\u0000n\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000P\u0000a\u0000t\u0000h\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u000e\u0000\bend tell\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ncomt\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nalis\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\u0003Mac\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00d2H+\u0000\u0000\u0000\u0000\u0000\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sZ\u07c4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u00d2\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000Zt\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000\u0000\u0000\u0000Q\u0000\u0000\u0000P\u0000\u0002\u0000*Mac:System:Library:CoreServices:Finder.app\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\b\u0000\u0003\u0000M\u0000a\u0000c\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\r\u0000\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\n\u0000\u0018.facofgetnull\u0000\u0000\u0000\u0000\u0000alis\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u0006\u0000\u0003\n\u0000\u0004\nflst\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u0006\u0000\u0000\u0010\u0000\u0000\t\u000b\u0000\u00120\u0000\u0007dropbox\u0000\u0007DropBox\u000b\u0000\u001c0\u0000\fdroppedfiles\u0000\fDroppedFiles\u000b\u0000\u00160\u0000\tplistfile\u0000\tpListFile\u000b\u0000\u000e0\u0000\u0005plist\u0000\u0005pList\u000b\u0000\u00180\u0000\nthecomment\u0000\ntheComment\u000b\u0000\b0\u0000\u0004tags\u0000\u0000\u000b\u0000\u00070\u0000\u0003tag\u0000\u0000\u000b\u0000\u000e0\u0000\u0005afile\u0000\u0005aFile\u000b\u0000\u00050\u0000\u0001f\u0000\u0000\u0010\u0000\u0000\u001a\u0000w\u00000\u0000B~\u0000U}|{z\u0000d\u0000fyx\u0000l\u0000u\u0000w\n\u0000\u0004\ndlib\n\u0000\u0004\nfrom\n\u0000\u0004\nfldu\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nTEXT\n\u0000\u0004\nalis\n\u0000\u0004\nplif\n\u0000\u0004\nutxt\n\u0000\u0004\npcnt\n~\u0000\u0004\nplii\n}\u0000\u0004\nvalL\n|\u0000\u0004\nkocl\n{\u0000\u0004\ncobj\nz\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u0001y\u0000\u0000\u0002x\u0000\u0000\nw\u0000\u0004\ncomt\u0011\u0000\u0012\u0000l*,*,l\f\u0000\u0004&%&EO*&\/,EOEO\u0014\u00002\/,EO\u0017\u0000#[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0006a\u0000\u0012%%a\u0000\u0013%E[OYW\u0000\u000eX\u0000\u0014\u0000\u0015a\u0000\u0016%EOa\u0000\u0017%EUO\u0017\u0000;[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0007&EO\u0014\u0000\u0016a\u0000\u0018\u0012\u0000\f*\/a\u0000\u0019,FUW\u0000\bX\u0000\u0014\u0000\u0015hOP[OY\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8456f6877d17a8b146b5bd3f5b14f8edb695208a","subject":"paste in license","message":"paste in license\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.6\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (\"\n\tselect \\\"INBOX GROUPS & ACTIONS\\\", count(*) from task where (inInbox=1);\n\tselect \\\" Inbox action groups\\\", count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect \\\" Inbox actions\\\", count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\tselect \\\"FOLDERS\\\"\t, count(*) from folder;\n\tselect \\\" Active folders\\\", count(*) from folder where effectiveActive=1;\n\tselect \\\" Dropped folders\\\", count(*) from folder where effectiveActive=0;\n\tselect null;\n\tselect \\\"PROJECTS\\\", count(*) from projectInfo where containsSingletonActions=0;\n\tselect \\\" Active projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"active\\\");\n\tselect \\\" Current projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" Pending projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" On-hold projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"inactive\\\");\n\tselect \\\" Completed projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"done\\\");\n\tselect \\\" Dropped projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\t\n\tselect \\\"SINGLE ACTION LISTS\\\", count(*) from projectInfo where containsSingletonActions=1;\n\tselect \\\" Active single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"active\\\");\n\tselect \\\" On-hold single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"inactive\\\");\n\tselect \\\" Completed single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"done\\\");\n\tselect \\\" Dropped single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\n\tselect \\\"CONTEXTS\\\", count(*) from context;\n\tselect \\\" Active contexts\\\", count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect \\\" On-hold contexts\\\", count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect \\\" Dropped contexts\\\", count(*) from context where effectiveActive=0;\n\tselect null;\n\tselect \\\"ACTION GROUPS\\\", count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect \\\" Remaining action groups\\\", count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect \\\" Completed action groups\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\tselect \\\"ACTIONS\\\", count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Completed actions\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Dropped project actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status=\\\"dropped\\\" or tp.folderEffectiveActive=0));\n\tselect \\\" Dropped context actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect \\\" Remaining actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect \\\" Actions in Projects on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status=\\\"inactive\\\");\n\tselect \\\" Actions in Contexts on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect \\\" Blocked actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect \\\" \tBlocked by future start date\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect \\\" \tSequentially blocked\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect \\\" Available actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\t\t\t\t\n\t\")\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.6\"\n\nproperty pTimeOut : 20\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (\"\n\tselect \\\"INBOX GROUPS & ACTIONS\\\", count(*) from task where (inInbox=1);\n\tselect \\\" Inbox action groups\\\", count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect \\\" Inbox actions\\\", count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\tselect \\\"FOLDERS\\\"\t, count(*) from folder;\n\tselect \\\" Active folders\\\", count(*) from folder where effectiveActive=1;\n\tselect \\\" Dropped folders\\\", count(*) from folder where effectiveActive=0;\n\tselect null;\n\tselect \\\"PROJECTS\\\", count(*) from projectInfo where containsSingletonActions=0;\n\tselect \\\" Active projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"active\\\");\n\tselect \\\" Current projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" Pending projects\\\", count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status=\\\"active\\\") and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect \\\" On-hold projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"inactive\\\");\n\tselect \\\" Completed projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (status=\\\"done\\\");\n\tselect \\\" Dropped projects\\\", count(*) from projectInfo where (containsSingletonActions=0) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\t\n\tselect \\\"SINGLE ACTION LISTS\\\", count(*) from projectInfo where containsSingletonActions=1;\n\tselect \\\" Active single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"active\\\");\n\tselect \\\" On-hold single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"inactive\\\");\n\tselect \\\" Completed single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (status=\\\"done\\\");\n\tselect \\\" Dropped single action lists\\\", count(*) from projectInfo where (containsSingletonActions=1) and (( status=\\\"dropped\\\") or (folderEffectiveActive=0));\n\tselect null;\n\tselect \\\"CONTEXTS\\\", count(*) from context;\n\tselect \\\" Active contexts\\\", count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect \\\" On-hold contexts\\\", count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect \\\" Dropped contexts\\\", count(*) from context where effectiveActive=0;\n\tselect null;\n\tselect \\\"ACTION GROUPS\\\", count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect \\\" Remaining action groups\\\", count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect \\\" Completed action groups\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\tselect \\\"ACTIONS\\\", count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Completed actions\\\", count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect \\\" Dropped project actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status=\\\"dropped\\\" or tp.folderEffectiveActive=0));\n\tselect \\\" Dropped context actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect \\\" Remaining actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect \\\" Actions in Projects on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status=\\\"inactive\\\");\n\tselect \\\" Actions in Contexts on hold\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect \\\" Blocked actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect \\\" \tBlocked by future start date\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect \\\" \tSequentially blocked\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect \\\" Available actions\\\", count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !=\\\"dropped\\\" and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!=\\\"inactive\\\")\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\t\t\t\t\n\t\")\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"e009fe2f029a013651cd6d871c52d7c6e9ee9cbf","subject":"tweak due date","message":"tweak due date\n\nThis seemed to help sync badge counts in the past, but now unsure of its\nneed. Leaving in commmented for future reference\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\t\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\t\t\t\t\/* and dateDue < strftime('%s','now','+7 days') - strftime('%s','2001-01-01'); *\/\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 1024 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\t\/* and (tp.context is null or c.allowsNextAction=1) *\/\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to summary_cmd & actions_cmd & projects_cmd & contexts_cmd\n\telse\n\t\tset commands to summary_cmd & actions_cmd & inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & tasks_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"5ba8625b7b983b88a5f5dd6ed5384d7f2e587f21","subject":"Delete TestAllSettings.applescript","message":"Delete TestAllSettings.applescript\n","repos":"kristopherjohnson\/MenubarCountdown","old_file":"Scripts\/JavaScript\/TestAllSettings.applescript","new_file":"Scripts\/JavaScript\/TestAllSettings.applescript","new_contents":"","old_contents":"MC = Application(\"Menubar Countdown\")\n\nMC.activate()\n\nMC.showStartDialog()\n\nMC.hours = 99\nMC.minutes = 59\nMC.seconds = 59\n\nMC.blink = false\nMC.playAlertSound = false\nMC.repeatAlertSound = false\nMC.showAlertWindow = false\nMC.showNotification = false\nMC.playNotificationSound = false\nMC.speakAnnouncement = false\n\nMC.announcementText = \"The checkboxes should all be off now.\"\n\nMC.displaySeconds = false\nMC.showStartDialogOnLaunch = false\n\ndelay(2)\n\nMC.hours = 0\nMC.minutes = 25\nMC.seconds = 0\n\nMC.blink = true\nMC.playAlertSound = true\nMC.repeatAlertSound = true\nMC.showAlertWindow = true\nMC.showNotification = true\nMC.playNotificationSound = true\nMC.speakAnnouncement = true\n\nMC.announcementText = \"The checkboxes should all be on now.\"\n\nMC.displaySeconds = true\nMC.showStartDialogOnLaunch = true\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a5df70e0a15a055eaaeafb3c2cf83d1cdf85c8fc","subject":"Setting this back to the value it had before accidentally changing it.","message":"Setting this back to the value it had before accidentally changing it.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%404211\n","repos":"incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 350}\n\t\t\tset the bounds to {30, 50, 579, 350}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 4000}\n\t\t\tset the bounds to {30, 50, 579, 4000}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6980e742ae81759288dd4e4ff2fc9b1e479bd733","subject":"Fixed \\r in changeScreen","message":"Fixed \\r in changeScreen\n","repos":"gibsjose\/termtile,ezig\/termtile,apaszke\/termtile,Ribeiro\/termtile,catfist\/termtile","old_file":"src\/changeScreen.applescript","new_file":"src\/changeScreen.applescript","new_contents":"on run argv\n\tglobal _cache\n\tset _cache to {}\n\n\tset ScreenUtils to load script alias ((path to me as text) & \"::screenUtils.scpt\")\n\tset _config to run script alias ((path to me as text) & \"::config.scpt\")\n\n\tset _terminalApp to terminalApp of _config\n\n\ttell ScreenUtils to set _screens to (screens of getAllScreens())\n\tif (count of _screens) < 2 then\n\t\treturn\n\tend if\n\n\ttry\n\t\ttell ScreenUtils to set _screen to getScreenWithFrontmostWindowOfApp(_terminalApp)\n\ton error\n\t\treturn\n\tend try\n\n\tusing terms from application \"Terminal\"\n\t\ttell application _terminalApp\n\t\t\tif true then --(item 1 of argv) = \"next\" then\n\t\t\t\ttell me to set _newScreen to getNextScreen(_screens, _currentScreen)\n\t\t\t\tset _bounds to bounds of window 0\n\t\t\t\tset _windowWidth to (item 3 of _bounds) - (item 1 of _bounds)\n\t\t\t\tset _windowHeight to (item 4 of _bounds) - (item 2 of _bounds)\n\t\t\t\tif _windowHeight > height of _newScreen then\n\t\t\t\t\tset _windowHeight to height of _newScreen\n\t\t\t\tend if\n\t\t\t\tif _windowWidth > width of _newScreen then\n\t\t\t\t\tset _windowWidth to width of _newScreen\n\t\t\t\tend if\n\t\t\t\tset bounds of window 0 to {originX of _newScreen, originY of _newScreen, (originX of _newScreen) + _windowWidth, (originY of _newScreen) + _windowHeight}\n\t\t\tend if\n\t\tend tell\n\tend using terms from\nend run\n\non getNextScreen(_screens, _currentScreen)\n\tset _nextIndex to ((screenIndex of _currentScreen) + 1)\n\tif _nextIndex > (count of _screens) then\n\t\tset _nextIndex to 1\n\tend if\n\treturn item _nextIndex of _screens\nend getNextScreen\n\n","old_contents":"on run argv\r\tglobal _cache\r\tset _cache to {}\r\r\tset ScreenUtils to load script alias ((path to me as text) & \"::screenUtils.scpt\")\r\tset _config to run script alias ((path to me as text) & \"::config.scpt\")\r\r\tset _terminalApp to terminalApp of _config\r\r\ttell ScreenUtils to set _screens to (screens of getAllScreens())\r\tif (count of _screens) < 2 then\r\t\treturn\r\tend if\r\r\ttry\r\t\ttell ScreenUtils to set _screen to getScreenWithFrontmostWindowOfApp(_terminalApp)\r\ton error\r\t\treturn\r\tend try\r\r\tusing terms from application \"Terminal\"\r\t\ttell application _terminalApp\r\t\t\tif true then --(item 1 of argv) = \"next\" then\r\t\t\t\ttell me to set _newScreen to getNextScreen(_screens, _currentScreen)\r\t\t\t\tset _bounds to bounds of window 0\r\t\t\t\tset _windowWidth to (item 3 of _bounds) - (item 1 of _bounds)\r\t\t\t\tset _windowHeight to (item 4 of _bounds) - (item 2 of _bounds)\r\t\t\t\tif _windowHeight > height of _newScreen then\r\t\t\t\t\tset _windowHeight to height of _newScreen\r\t\t\t\tend if\r\t\t\t\tif _windowWidth > width of _newScreen then\r\t\t\t\t\tset _windowWidth to width of _newScreen\r\t\t\t\tend if\r\t\t\t\tset bounds of window 0 to {originX of _newScreen, originY of _newScreen, (originX of _newScreen) + _windowWidth, (originY of _newScreen) + _windowHeight}\r\t\t\tend if\r\t\tend tell\r\tend using terms from\rend run\r\ron getNextScreen(_screens, _currentScreen)\r\tset _nextIndex to ((screenIndex of _currentScreen) + 1)\r\tif _nextIndex > (count of _screens) then\r\t\tset _nextIndex to 1\r\tend if\r\treturn item _nextIndex of _screens\rend getNextScreen\r","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e183496288fe064a8113987f3140fb0fac57c1c5","subject":"Update the text fields when tracks are loaded","message":"Update the text fields when tracks are loaded\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Log some debugging information\n log (pcatArtist as string)\n log (pcatAlbum as string)\n log (pcatComposer as string)\n log (pcatGenre as string)\n log (pcatDisc as string)\n log (pcatDiscs as string)\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Log some debugging information\n log (pcatArtist as string)\n log (pcatAlbum as string)\n log (pcatComposer as string)\n log (pcatGenre as string)\n log (pcatDisc as string)\n log (pcatDiscs as string)\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"8ddc6261bdb01edc697bf745d38d434e3bbd921d","subject":"fix apple script","message":"fix apple script\n","repos":"ifreecarve\/Illuminator,ifreecarve\/Illuminator,ifreecarve\/Illuminator,drptbl\/Illuminator,drptbl\/Illuminator,drptbl\/Illuminator,ifreecarve\/Illuminator,paypal\/Illuminator,drptbl\/Illuminator,paypal\/Illuminator","old_file":"scripts\/reset_simulator.applescript","new_file":"scripts\/reset_simulator.applescript","new_contents":"(* commented out printer section for now\ntell application \"iPhone Simulator\" to activate\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"File\"\n tell menu \"File\"\n click menu item \"Open Printer Simulator\"\n end tell\n end tell\n end tell\n end tell\nend tell\n*)\n\ntell application \"iOS Simulator\" to launch\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iOS Simulator\" is in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"iOS Simulator\" to activate\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if visible of process \"iOS Simulator\" is true then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"System Events\"\n tell process \"iOS Simulator\"\n tell menu bar 1\n tell menu bar item \"iOS Simulator\"\n tell menu \"iOS Simulator\"\n click menu item \"Reset Content and Settings\u2026\"\n end tell\n end tell\n end tell\n\n tell window 1\n click button \"Reset\"\n end tell\n end tell\nend tell\n\ntell application \"iOS Simulator\" to quit\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iOS Simulator\" is not in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\n\n-- tell application \"System Events\" to tell process \"Printer Simulator\" to set visible to false\n","old_contents":"(* commented out printer section for now\ntell application \"iPhone Simulator\" to activate\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"File\"\n tell menu \"File\"\n click menu item \"Open Printer Simulator\"\n end tell\n end tell\n end tell\n end tell\nend tell\n*)\n\ntell application \"iPhone Simulator\" to launch\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iPhone Simulator\" is in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"iPhone Simulator\" to activate\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if visible of process \"iPhone Simulator\" is true then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\ntell application \"System Events\"\n tell process \"iPhone Simulator\"\n tell menu bar 1\n tell menu bar item \"iOS Simulator\"\n tell menu \"iOS Simulator\"\n click menu item \"Reset Content and Settings\u2026\"\n end tell\n end tell\n end tell\n\n tell window 1\n click button \"Reset\"\n end tell\n end tell\nend tell\n\ntell application \"iPhone Simulator\" to quit\n\nset inTime to current date\nrepeat\n tell application \"System Events\"\n if \"iPhone Simulator\" is not in (get name of processes) then exit repeat\n end tell\n if (current date) - inTime is greater than 10 then exit repeat\n delay 0.2\nend repeat\n\n\n-- tell application \"System Events\" to tell process \"Printer Simulator\" to set visible to false\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"b689400069f45e00ad84760c3d8129886f603dac","subject":"beta? what beta? you didn't see this","message":"beta? what beta? you didn't see this\n","repos":"jpsim\/DeckRocket,keyeMyria\/DeckRocket","old_file":"OSX\/DeckRocket\/deckrocket.scpt","new_file":"OSX\/DeckRocket\/deckrocket.scpt","new_contents":"#!\/usr\/bin\/osascript\n\non run argv\n set idx to item 1 of argv\n if application \"Deckset\" is running\n tell application \"Deckset\"\n tell first item of documents\n set slideIndex to idx\n end tell\n end tell\n end if\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n\non run argv\n set idx to item 1 of argv\n if application \"Deckset private beta\" is running\n tell application \"Deckset private beta\"\n tell first item of documents\n set slideIndex to idx\n end tell\n end tell\n end if\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"782f433737be6ccf92fa10066d3725179c9ed974","subject":"Fixing error log path","message":"Fixing error log path\n\nThanks to @steveswinsburg for the report.\nFixes issue #15\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"property debug : false\nproperty currentVolume : null\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\nrepeat\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n end try\n repeat\n delay 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n delay 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n delay 0.3\nend repeat\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_error(error_number, error_message, diag_message)\n local content\n if (debug = true) then\n set content to (return & \"\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Diagnostic message: \" & diag_message & return \u00ac\n & \"\" & return)\n set log_file to (((path to desktop folder) as text) & \"Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","old_contents":"property debug : false\nproperty currentVolume : null\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\nrepeat\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n end try\n repeat\n delay 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n delay 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n delay 0.3\nend repeat\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cbbc27fb53608481a00f8bb1bd9a1c6045987c72","subject":"Commented the script","message":"Commented the script\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.scpt","new_file":"SpotiFree.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0004\u0000\u0004\r\u0000\u0004\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0005\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0006\u000e\u0000\u0006\u0000\u0001\u0000\u0007\u0011\u0000\u0007\u0000t\u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000s\u0000 \u0000u\u0000n\u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000d\u0000 \u0000c\u0000h\u0000a\u0000n\u0000g\u0000e\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000c\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000b\u0000e\u0000 \u0000r\u0000u\u0000n\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\b\u0000\t\u0001\u0000\u0000\u0010\u0000\b\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\t\u0000\u0007\u0010\u0000\n\u0000\u000b\u0000\f\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0004\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u000b\u0000\u0000\u0010\u0000\f\u0000\u0001\u0000\u0006\u0011\u0000\u0005)j\u0015\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0001T\u0000\u0000\u0000\u0000\u0000\u0000\u0005\r\u0000\u0005\u0000\u0001k\u0000\u0000\u0000\u0005\u0000\u0000\u0006\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0005\u0000\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0001k\u0000\u0000\u0000\b\u0000~\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002O\u0000\u0000\u0000\b\u00008\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\f\u00007\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\npVol\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0019\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u0017\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\npTrN\r\u0000\u001b\u0000\u00011\u0000\u0000\u0000\u0012\u0000\u0015\n\u0000\u0004\npTrk\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006trackk\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\u001a\u0000!\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001f\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000\u001d\u0000\u001f\n\u0000\u0004\npnam\r\u0000!\u0000\u00011\u0000\u0000\u0000\u001a\u0000\u001d\n\u0000\u0004\npTrk\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005namme\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002r\u0000\u0000\u0000\"\u0000)\u0000$\u0000%\r\u0000$\u0000\u0002n\u0000\u0000\u0000\"\u0000'\u0000&\u0000'\r\u0000&\u0000\u00011\u0000\u0000\u0000%\u0000'\n\u0000\u0004\nspPo\r\u0000'\u0000\u00011\u0000\u0000\u0000\"\u0000%\n\u0000\u0004\npTrk\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pop\u0000\u0000\u0002\u0000#\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002r\u0000\u0000\u0000*\u00001\u0000*\u0000+\r\u0000*\u0000\u0002n\u0000\u0000\u0000*\u0000\/\u0000,\u0000-\r\u0000,\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npDur\r\u0000-\u0000\u00011\u0000\u0000\u0000*\u0000-\n\u0000\u0004\npTrk\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\u0002\u0000)\u0000\u0002\u0000.\r\u0000.\u0000\u0002r\u0000\u0000\u00002\u00007\u0000\/\u00000\r\u0000\/\u0000\u00011\u0000\u0000\u00002\u00005\n\u0000\u0004\npPos\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u00001\u000f\u00001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u00009\u00009\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0004Z\u0000\u0000\u00009\u0000|\u00006\u00007\u00008\r\u00006\u0000\u0002F\u0000\u0000\u00009\u0000D\u00009\u0000:\r\u00009\u0000\u0002=\u0000\u0003\u00009\u0000<\u0000;\u0000<\r\u0000;\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u00070\u0000\u0003pop\u0000\u0000\r\u0000<\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0000\u0000\r\u0000:\u0000\u0002A\u0000\u0001\u0000?\u0000B\u0000=\u0000>\r\u0000=\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\r\u0000>\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0003\u0000(\r\u00007\u0000\u0001k\u0000\u0000\u0000G\u0000r\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0002O\u0000\u0000\u0000G\u0000]\u0000B\u0000C\r\u0000B\u0000\u0001k\u0000\u0000\u0000K\u0000\\\u0000D\u0002\u0000D\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003I\u0000\u0002\u0000K\u0000P\n\u0000\u0018.spfyPausnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Q\u0000V\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Q\u0000R\u0003\u0000\u0000\r\u0000J\u0000\u00011\u0000\u0000\u0000R\u0000U\n\u0000\u0004\npVol\u0002\u0000H\u0000\u0002\u0000K\r\u0000K\u0000\u0003I\u0000\u0002\u0000W\u0000\\\n\u0000\u0018.spfyPlaynull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000C\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0000L\u000f\u0000L\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000A\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000^\u0000g\u0000O\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000O\u0000\u0002[\u0000\u0000\u0000^\u0000c\u0000P\u0000Q\r\u0000P\u0000\u0002\\\u0000\u0000\u0000^\u0000a\u0000R\u0000S\r\u0000R\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\r\u0000S\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\r\u0000Q\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000N\u0000\u0002\u0000T\r\u0000T\u0000\u0002O\u0000\u0000\u0000h\u0000r\u0000U\u0000V\r\u0000U\u0000\u0002r\u0000\u0000\u0000l\u0000q\u0000W\u0000X\r\u0000W\u0000\u0001o\u0000\u0000\u0000l\u0000m\u000b\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\r\u0000X\u0000\u00011\u0000\u0000\u0000m\u0000p\n\u0000\u0004\npVol\r\u0000V\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0000Y\u000f\u0000Y\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000spty\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001T\u0000\u0002\u0000\u0001\rMountain Lion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000cYH+\u0000\u0000\u0007t\u001b\u000bSpotify.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t6\u031c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000c)\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u031c\u0000\u0000\u0000\u0001\u0000\u0004\u0007t\u001b\u0000\u0002\u0000'Mountain Lion:Applications:\u0000Spotify.app\u0000\u0000\u000e\u0000\u0018\u0000\u000b\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001c\u0000\r\u0000M\u0000o\u0000u\u0000n\u0000t\u0000a\u0000i\u0000n\u0000 \u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0018Applications\/Spotify.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u00008\u0000\u0003I\u0000\u0002\u0000u\u0000|\u0000Z\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000Z\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000[\b\u0000[\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u00005\u0000\u0002\u0000\\\r\u0000\\\u0000\u0003l\u0000\u0002\u0000}\u0000}\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000]\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000]\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0000\u0000\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000^\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000^\u0000\u0001m\u0000\u0000\u0000\u0000\u0000_\b\u0000_\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000`\r\u0000`\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000a\u0000b\u0000c\u0000d\u0001\u0000\u0000\u0010\u0000a\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\u000b\u0000\n0\u0000\u0006trackk\u0000\u0000\u000b\u0000\t0\u0000\u0005namme\u0000\u0000\u000b\u0000\u00070\u0000\u0003pop\u0000\u0000\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\u0001\u0000\u0000\u000e\u0000b\u0000\u0007\u0010\u0000e\u0000f\u0000g\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000e\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000h\u0002\u0000h\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000f\u0000\u0001\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0010\u0000g\u0000\u0016\u00001\u0000[\n\u0000\u0004\npVol\u000b\u0000\u000b0\u0000\u0007cur_vol\u0000\u0000\n\u0000\u0004\npTrk\n\u0000\u0004\npTrN\u000b\u0000\n0\u0000\u0006trackk\u0000\u0000\n\u0000\u0004\npnam\u000b\u0000\t0\u0000\u0005namme\u0000\u0000\n\u0000\u0004\nspPo\u000b\u0000\u00070\u0000\u0003pop\u0000\u0000\n\u0000\u0004\npDur\u000b\u0000\u00070\u0000\u0003dur\u0000\u0000\n\u0000\u0004\npPos\u000b\u0000\u00070\u0000\u0003pos\u0000\u0000\u0003\u0000(\n\u0000\u0004\nbool\n\u0000\u0018.spfyPausnull\u0000\u0000null\n\u0000\u0018.spfyPlaynull\u0000\u0000null\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0000\u0000\u0011\u0000\u0017\u0000hZ\u0014\u0000{\u0012\u0000-*,EO*,,EO*,,EO*,,EO*,,EO*,EUOj\u0000\t\u0000\u0007\u0004&\u001d\u00000\u0012\u0000\u0013*j\f\u0000\u0010Oj*,FO*j\f\u0000\u0011UO\u001fk\u001ej\f\u0000\u0012O\u0012\u0000\u0007*,FUY\u0000\ta\u0000\u0013j\f\u0000\u0012OPW\u0000\u000eX\u0000\u0014\u0000\u0015a\u0000\u0013j\f\u0000\u0012OP[OYr\u000f\u0003\u0000d\u0003\u0000\u0001\u000e\u0000c\u0000\u0001\u0000i\u0011\u0000i\u0000\f\u0000O\u0000t\u0000a\u0000c\u0000o\u0000n\u0003\u0000\"\u0003\u0001\b\u0000d\u0000\b@u \u0000\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0d4b09b2da68d1ceb5687596c95b64337dc80103","subject":"tweaking the now playing scrip to return a more parsable value","message":"tweaking the now playing scrip to return a more parsable value\n","repos":"chrisdevwords\/jamcart","old_file":"app\/lib\/appscr\/currentsong.scpt","new_file":"app\/lib\/appscr\/currentsong.scpt","new_contents":"on run\n set info to \"\"\n tell application \"System Events\"\n set num to count (every process whose name is \"Spotify\")\n end tell\n if num > 0 then\n tell application \"Spotify\"\n if player state is playing then\n set who to artist of current track\n set what to name of current track\n set onwhat to album of current track\n set info to what & \"::\" & who & \"::\" & onwhat\n end if\n end tell\n end if\n return info\nend run","old_contents":"on run\n set info to \"\"\n tell application \"System Events\"\n set num to count (every process whose name is \"Spotify\")\n end tell\n if num > 0 then\n tell application \"Spotify\"\n if player state is playing then\n set who to artist of current track\n set what to name of current track\n set onwhat to album of current track\n set info to \"\u201c\" & what & \"\u201d\" & \" by \" & who & \" \" & \"from \" & onwhat\n end if\n end tell\n end if\n return info\nend run","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a582b15b73175c8ca5c00180c72be93ba7b0bb96","subject":"Changed interface to decide if new window or tab is required.","message":"Changed interface to decide if new window or tab is required.\n","repos":"venkytv\/alfred-iterm-launcher","old_file":"iterm-launcher.scpt","new_file":"iterm-launcher.scpt","new_contents":"#!\/usr\/bin\/osascript\n\non run argv\n if count of argv < 3\n set myName to (POSIX path of (path to me) as string)\n return \"Usage: osascript \" & myName & \" <profile-name> <session-name> <command-parameter> [<attach-session-name>]\"\n end if\n\n set profileName to item 1 of argv\n set sessionName to item 2 of argv\n set commandParam to item 3 of argv\n\n try\n set attachSessionName to item 4 of argv\n on error\n set attachSessionName to \"\"\n end try\n\n set myHome to (path to current user folder as string)\n set launcherPath to (myHome & \"bin:iterm-launcher\")\n set launcher to POSIX path of launcherPath\n set launcherCommand to \"exec \" & quoted form of launcher \u00ac\n \t& \" \" & quoted form of sessionName & \" \" & quoted form of commandParam\n\n tell application \"iTerm\"\n activate\n\n set procRunning to false\n set myTermCount to count of terminal\n set attachTerm to 0\n\n if myTermCount is 0 then\n -- No iTerm windows open\n set newTerm to (make new terminal)\n tell newTerm\n launch session profileName\n tell current session\n write text launcherCommand\n set name to sessionName\n end tell\n set procRunning to true\n end tell\n\n else\n -- iTerm windows open\n repeat with i from 1 to myTermCount by 1\n set myTerm to (terminal i)\n tell myTerm\n set myTabCount to count of session\n repeat with j from 1 to myTabCount by 1\n set mySession to (session j)\n tell mySession\n set mySessionName to name of mySession\n if mySessionName is sessionName then\n select myTerm\n select mySession\n set procRunning to true\n else if mySessionName is attachSessionName then\n -- Found terminal window with session <attach-session-name>\n -- Attach to this window if required to create a new tab\n set attachTerm to i\n end if\n end tell -- mySession\n end repeat -- myTabCount\n end tell -- myTerm\n end repeat -- myTermCount\n end if -- myTermCount is 0\n\n if procRunning is false then\n -- Terminal windows open, but process not running\n if attachTerm > 0\n set myTerm to (terminal attachTerm)\n else\n set myTerm to (make new terminal)\n end if\n\n tell myTerm\n launch session profileName\n tell current session\n write text launcherCommand\n set name to sessionName\n end tell\n set procRunning to true\n end tell -- myTerm\n end if -- procRunning is false\n end tell -- \"iTerm\"\nend run\n","old_contents":"#!\/usr\/bin\/osascript\n\non run argv\n if count of argv < 3\n set myName to (POSIX path of (path to me) as string)\n return \"Usage: osascript \" & myName & \" <profile-name> <session-name>\n <command-parameter> [<force-new-window>]\"\n end if\n\n set profileName to item 1 of argv\n set sessionName to item 2 of argv\n set commandParam to item 3 of argv\n\n try\n set forceNewWindow to item 4 of argv\n set forceNewWindow to forceNewWindow as number\n on error errStr number errorNumber\n if errorNumber is -1728 then\n -- Fourth parameter not set\n set forceNewWindow to 0\n else if errorNumber is -1700 then\n -- Fourth parameter not a number; count it as set\n set forceNewWindow to 1\n else\n error errStr number errorNumber\n end if\n end try\n\n set myHome to (path to current user folder as string)\n set launcherPath to (myHome & \"bin:iterm-launcher\")\n set launcher to POSIX path of launcherPath\n set launcherCommand to \"exec \" & quoted form of launcher \u00ac\n \t& \" \" & quoted form of sessionName & \" \" & quoted form of commandParam\n\n tell application \"iTerm\"\n activate\n\n set procRunning to false\n set myTermCount to count of terminal\n if myTermCount is 0 then\n -- No iTerm windows open\n set newTerm to (make new terminal)\n tell newTerm\n launch session profileName\n tell current session\n write text launcherCommand\n set name to sessionName\n end tell\n set procRunning to true\n end tell\n\n else\n -- iTerm windows open\n repeat with i from 1 to myTermCount by 1\n set myTerm to (terminal i)\n tell myTerm\n set myTabCount to count of session\n repeat with j from 1 to myTabCount by 1\n set mySession to (session j)\n tell mySession\n if name of mySession is sessionName then\n select myTerm\n select mySession\n set procRunning to true\n end if\n end tell -- mySession\n end repeat -- myTabCount\n end tell -- myTerm\n end repeat -- myTermCount\n end if -- myTermCount is 0\n\n if procRunning is false then\n -- Terminal windows open, but process not running\n\n -- If there is only one terminal window open, add a new tab\n -- Else, launch a new terminal window\n if myTermCount > 1 or forceNewWindow > 0 then\n set myTerm to (make new terminal)\n else\n set myTerm to (terminal 1)\n end if\n\n tell myTerm\n launch session profileName\n tell current session\n write text launcherCommand\n set name to sessionName\n end tell\n set procRunning to true\n end tell -- myTerm\n end if -- procRunning is false\n end tell -- \"iTerm\"\nend run\n","returncode":0,"stderr":"","license":"artistic-2.0","lang":"AppleScript"} {"commit":"62b496da95f3445942348600e84d18cc6fe534d5","subject":"(fix) safari debugger find simulator","message":"(fix) safari debugger find simulator\n","repos":"AppGyver\/steroids,AppGyver\/steroids,kuldeepJadhav\/steroids,Leeds-eBooks\/steroids,AppGyver\/steroids,barnyp\/steroids,barnyp\/steroids,barnyp\/steroids,kuldeepJadhav\/steroids,AppGyver\/steroids,kuldeepJadhav\/steroids,Leeds-eBooks\/steroids,Leeds-eBooks\/steroids,kuldeepJadhav\/steroids,barnyp\/steroids,Leeds-eBooks\/steroids","old_file":"support\/scripts\/openSafariDevMenu.scpt","new_file":"support\/scripts\/openSafariDevMenu.scpt","new_contents":"on run argv\n\n\tif (count argv) = 0 then\n\t\t#log \"No arguments given, opening any index.html\"\n\t\tset StringPart to \"index.html\"\n\telse\n\t\t#log \"Opening \" & item 1 of argv\n\t\tset StringPart to item 1 of argv\n\tend if\n\n\t# Make sure Safari is running.\n\t# Note that we don't *activate* it yet, so that if something goes wrong the Terminal window stays active and the user gets to see error messages.\n\t# (This also avoids a bug affecting both OSX 10.8 and 10.9 where, if Safari isn't running, `tell application \"Safari\" to activate` *launches, but doesn't activate* Safari.)\n\ttell application \"Safari\" to launch\n\n\ttell application \"System Events\"\n\n\t\ttell process \"Safari\"\n\n\t\t\t# Try to obtain a reference to the `Developer > {iPhone|iPad} Simulator`submenu items; give up after a while.\n\t\t\tset simSubMenu to missing value\n\t\t\trepeat with i from 1 to 20\n\t\t\t\t# Note that we reference the Developer menu by *index*, as its name may be localized.\n\t\t\t\t# Furthermore, we search for the relevant menu item by the tokens \"iPhone\" or \"iPad\" only, since the \"Simulator\" part could be localized, too.\n\t\t\t\t# Note that the menu-item name reflects whether the simulator currently simulates the iPhone or the iPad.\n\t\t\t\ttell (first menu item of menu -3 of menu bar 1 whose name contains \"iPhone\" or name contains \"iPad\" or name contains \"Simulator\" )\n\t\t\t\t\tif exists then # Menu item found?\n\t\t\t\t\t\t# Simulate a click on the menu item so as to get it to populate its submenu with the currently debuggable pages.\n\t\t\t\t\t\tclick it\n\t\t\t\t\t\t# Loop over submenu items and find the desired page.\n\t\t\t\t\t\tset pageUrl to missing value\n\t\t\t\t\t\trepeat with itm in menu items of menu of it\n\t\t\t\t\t\t\tset props to properties of itm # !! Bizarrely, this intermediate step is needed - directly accessing `help of itm` leads to strange behavior on OSX 10.8.\n\t\t\t\t\t\t\tset pageUrl to help of props # Page URL is in `help` property.\n\t\t\t\t\t\t\tif pageUrl is not missing value and pageUrl contains StringPart then\n\t\t\t\t\t\t\t\t# Only now that we've found a matching page do we activate Safari.\n\t\t\t\t\t\t\t\ttell application \"Safari\" to activate\n\t\t\t\t\t\t\t\t# Finally, click on the item to show the Web Inspector for the matching page.\n\t\t\t\t\t\t\t\tclick itm\n\t\t\t\t\t\t\t\treturn\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\tend repeat\n\t\t\t\t\t\t# Report error, if no matching page found.\n\t\t\t\t\t\terror \"No currently debuggable page matching '\" & StringPart & \"' found.\"\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\t\tdelay 0.2 # Menu item not (yet) available; try again.\n\t\t\tend repeat\n\n\t\t\t# Getting here means that the simulator menu item wasn't found within the timeout period.\n\t\t\t# Abort with an error.\n\t\t\terror \"Cannot determine debuggable pages: iOS Simulator-related menu items not found in Safari.\nMake sure that the `Developer` menu is activated in the advanced preferences and that the iOS simulator is running a UIWebView-based app.\"\n\n\n\t\tend tell\n\n\tend tell\n\nend run\n","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0003\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u000f\u0000\u0010\u0000\u0011\r\u0000\u000f\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\u0007\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000\u0014\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0015\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\u0003\u0000\u0000\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\n\u0000\r\u0000\u0016\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0003l\u0000\u0006\u0000\n\u0000\n\u0000\u0019\u0000\u001a\u0001\u0000\u0000\f\u0000\u0019\u00006\u00000log \"No arguments given, opening any index.html\"\u0000\u0002\u0000\u0000\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000`\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000N\u0000o\u0000 \u0000a\u0000r\u0000g\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000g\u0000i\u0000v\u0000e\u0000n\u0000,\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000y\u0000 \u0000i\u0000n\u0000d\u0000e\u0000x\u0000.\u0000h\u0000t\u0000m\u0000l\u0000\"\u0002\u0000\u0018\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0002r\u0000\u0000\u0000\n\u0000\r\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u001f\u000e\u0000\u001f\u0000\u0001\u0000 \u0011\u0000 \u0000\u0014\u0000i\u0000n\u0000d\u0000e\u0000x\u0000.\u0000h\u0000t\u0000m\u0000l\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nstringpart\u0000\nStringPart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001k\u0000\u0000\u0000\u0010\u0000\u0016\u0000!\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003l\u0000\u0006\u0000\u0010\u0000\u0010\u0000$\u0000%\u0001\u0000\u0000\f\u0000$\u0000%\u0000\u001flog \"Opening \" & item 1 of argv\u0000\u0002\u0000\u0000\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000>\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000O\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000g\u0000v\u0002\u0000#\u0000\u0002\u0000'\r\u0000'\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0016\u0000(\u0000)\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u0010\u0000\u0014\u0000*\u0000+\r\u0000*\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0014\u0000,\n\u0000\u0004\ncobj\r\u0000,\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0003\u0000\u0001\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nstringpart\u0000\nStringPart\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000.\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003l\u0000\u0006\u0000\u0017\u0000\u0017\u00001\u00002\u0001\u0000\u0000\f\u00001\u0000#\u0000\u001d Make sure Safari is running.\u0000\u0002\u0000\u0000\u000e\u00002\u0000\u0001\u00003\u0011\u00003\u0000:\u0000 \u0000M\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000.\u0002\u00000\u0000\u0002\u00004\u00005\r\u00004\u0000\u0003l\u0000\u0006\u0000\u0017\u0000\u0017\u00006\u00007\u0001\u0000\u0000\f\u00006\u0000\u0000 Note that we don't *activate* it yet, so that if something goes wrong the Terminal window stays active and the user gets to see error messages.\u0000\u0002\u0000\u0000\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0001 \u0000 \u0000N\u0000o\u0000t\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000 \u0000d\u0000o\u0000n\u0000'\u0000t\u0000 \u0000*\u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000*\u0000 \u0000i\u0000t\u0000 \u0000y\u0000e\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000i\u0000f\u0000 \u0000s\u0000o\u0000m\u0000e\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000g\u0000o\u0000e\u0000s\u0000 \u0000w\u0000r\u0000o\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000s\u0000t\u0000a\u0000y\u0000s\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000g\u0000e\u0000t\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000e\u0000e\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000.\u0002\u00005\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0006\u0000\u0017\u0000\u0017\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000\u0000 (This also avoids a bug affecting both OSX 10.8 and 10.9 where, if Safari isn't running, `tell application \"Safari\" to activate` *launches, but doesn't activate* Safari.)\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u0001V\u0000 \u0000(\u0000T\u0000h\u0000i\u0000s\u0000 \u0000a\u0000l\u0000s\u0000o\u0000 \u0000a\u0000v\u0000o\u0000i\u0000d\u0000s\u0000 \u0000a\u0000 \u0000b\u0000u\u0000g\u0000 \u0000a\u0000f\u0000f\u0000e\u0000c\u0000t\u0000i\u0000n\u0000g\u0000 \u0000b\u0000o\u0000t\u0000h\u0000 \u0000O\u0000S\u0000X\u0000 \u00001\u00000\u0000.\u00008\u0000 \u0000a\u0000n\u0000d\u0000 \u00001\u00000\u0000.\u00009\u0000 \u0000w\u0000h\u0000e\u0000r\u0000e\u0000,\u0000 \u0000i\u0000f\u0000 \u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000 \u0000i\u0000s\u0000n\u0000'\u0000t\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000,\u0000 \u0000`\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000\"\u0000 \u0000t\u0000o\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000`\u0000 \u0000*\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000s\u0000,\u0000 \u0000b\u0000u\u0000t\u0000 \u0000d\u0000o\u0000e\u0000s\u0000n\u0000'\u0000t\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000*\u0000 \u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000)\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002O\u0000\u0001\u0000\u0017\u0000!\u0000@\u0000A\r\u0000@\u0000\u0003I\u0000\u0002\u0000\u001b\u0000 \n\u0000\u0018.ascrnoop****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000B\u000f\u0000B\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0004Iron\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000iV1H+\u0000\u0000\u0000\u0000\u0000k\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001elR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000i,\u0001\u0000\u0000\u0000\u0011\u0000\b\u0000\u00006\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000k\u0000\u0002\u0000\u001dIron:Applications:\u0000Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000I\u0000r\u0000o\u0000n\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000?\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003l\u0000\u0002\u0000\"\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000D\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0002O\u0000\u0000\u0000\"\u0001\u0001\u0000G\u0000H\r\u0000G\u0000\u0001k\u0000\u0000\u0000&\u0001\u0000\u0000I\u0002\u0000I\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0003l\u0000\u0002\u0000&\u0000&\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000K\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002O\u0000\u0000\u0000&\u0000\u0000N\u0000O\r\u0000N\u0000\u0001k\u0000\u0000\u0000-\u0000\u0000P\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000-\u0000-\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0006\u0000-\u0000-\u0000U\u0000V\u0001\u0000\u0000\f\u0000U\u0000u\u0000o Try to obtain a reference to the `Developer > {iPhone|iPad} Simulator`submenu items; give up after a while.\t\t\t\u0000\u0002\u0000\u0000\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000 \u0000a\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000 \u0000>\u0000 \u0000{\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000|\u0000i\u0000P\u0000a\u0000d\u0000}\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000`\u0000s\u0000u\u0000b\u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000;\u0000 \u0000g\u0000i\u0000v\u0000e\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u0000a\u0000 \u0000w\u0000h\u0000i\u0000l\u0000e\u0000.\u0000\t\u0000\t\u0000\t\u0002\u0000T\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0002r\u0000\u0000\u0000-\u00000\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000-\u0000.\n\u0000\u0004\nmsng\r\u0000[\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nsimsubmenu\u0000\nsimSubMenu\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0005Y\u0000\u0000\u00001\u0000\u0000^\u0000_\u0000`\r\u0000^\u0000\u0001k\u0000\u0000\u0000;\u0000\u0000a\u0002\u0000a\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0006\u0000;\u0000;\u0000d\u0000e\u0001\u0000\u0000\f\u0000d\u0000Z\u0000T Note that we reference the Developer menu by *index*, as its name may be localized.\u0000\u0002\u0000\u0000\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0000 \u0000N\u0000o\u0000t\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000b\u0000y\u0000 \u0000*\u0000i\u0000n\u0000d\u0000e\u0000x\u0000*\u0000,\u0000 \u0000a\u0000s\u0000 \u0000i\u0000t\u0000s\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000m\u0000a\u0000y\u0000 \u0000b\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000l\u0000i\u0000z\u0000e\u0000d\u0000.\u0002\u0000c\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003l\u0000\u0006\u0000;\u0000;\u0000i\u0000j\u0001\u0000\u0000\f\u0000i\u0000\u0000 Furthermore, we search for the relevant menu item by the tokens \"iPhone\" or \"iPad\" only, since the \"Simulator\" part could be localized, too.\u0000\u0002\u0000\u0000\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0001\u001a\u0000 \u0000F\u0000u\u0000r\u0000t\u0000h\u0000e\u0000r\u0000m\u0000o\u0000r\u0000e\u0000,\u0000 \u0000w\u0000e\u0000 \u0000s\u0000e\u0000a\u0000r\u0000c\u0000h\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000e\u0000l\u0000e\u0000v\u0000a\u0000n\u0000t\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000o\u0000k\u0000e\u0000n\u0000s\u0000 \u0000\"\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000\"\u0000 \u0000o\u0000r\u0000 \u0000\"\u0000i\u0000P\u0000a\u0000d\u0000\"\u0000 \u0000o\u0000n\u0000l\u0000y\u0000,\u0000 \u0000s\u0000i\u0000n\u0000c\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000\"\u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000\"\u0000 \u0000p\u0000a\u0000r\u0000t\u0000 \u0000c\u0000o\u0000u\u0000l\u0000d\u0000 \u0000b\u0000e\u0000 \u0000l\u0000o\u0000c\u0000a\u0000l\u0000i\u0000z\u0000e\u0000d\u0000,\u0000 \u0000t\u0000o\u0000o\u0000.\u0002\u0000h\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0003l\u0000\u0006\u0000;\u0000;\u0000n\u0000o\u0001\u0000\u0000\f\u0000n\u0000n\u0000h Note that the menu-item name reflects whether the simulator currently simulates the iPhone or the iPad.\u0000\u0002\u0000\u0000\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000\u0000 \u0000N\u0000o\u0000t\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000n\u0000u\u0000-\u0000i\u0000t\u0000e\u0000m\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0000s\u0000 \u0000w\u0000h\u0000e\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000s\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000e\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000P\u0000a\u0000d\u0000.\u0002\u0000m\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002O\u0000\u0000\u0000;\u0000\u0000s\u0000t\r\u0000s\u0000\u0004Z\u0000\u0000\u0000e\u0000\u0000u\u0000v\r\u0000u\u0000\u0003I\u0000\u0002\u0000e\u0000j\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\r\u0000v\u0000\u0003l\u0000\u0007\u0000m\u0000\u0000w\u0000x\u0000y\r\u0000w\u0000\u0001k\u0000\u0000\u0000m\u0000\u0000z\u0002\u0000z\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003l\u0000\u0006\u0000m\u0000m\u0000}\u0000~\u0001\u0000\u0000\f\u0000}\u0000u\u0000o Simulate a click on the menu item so as to get it to populate its submenu with the currently debuggable pages.\u0000\u0002\u0000\u0000\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000e\u0000 \u0000a\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000o\u0000 \u0000a\u0000s\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000i\u0000t\u0000 \u0000t\u0000o\u0000 \u0000p\u0000o\u0000p\u0000u\u0000l\u0000a\u0000t\u0000e\u0000 \u0000i\u0000t\u0000s\u0000 \u0000s\u0000u\u0000b\u0000m\u0000e\u0000n\u0000u\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000g\u0000a\u0000b\u0000l\u0000e\u0000 \u0000p\u0000a\u0000g\u0000e\u0000s\u0000.\u0002\u0000|\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000m\u0000r\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u0000g\u0000\u0000\u0000m\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000s\u0000s\u0000\u0000\u0001\u0000\u0000\f\u0000\u00009\u00003 Loop over submenu items and find the desired page.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000f\u0000 \u0000L\u0000o\u0000o\u0000p\u0000 \u0000o\u0000v\u0000e\u0000r\u0000 \u0000s\u0000u\u0000b\u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000d\u0000e\u0000s\u0000i\u0000r\u0000e\u0000d\u0000 \u0000p\u0000a\u0000g\u0000e\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000t\n\u0000\u0004\nmsng\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000y\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npALL\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003itm\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005props\u0000\u0000\f\u0000\u0000\u0000y !! Bizarrely, this intermediate step is needed - directly accessing `help of itm` leads to strange behavior on OSX 10.8.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000!\u0000!\u0000 \u0000B\u0000i\u0000z\u0000a\u0000r\u0000r\u0000e\u0000l\u0000y\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000n\u0000t\u0000e\u0000r\u0000m\u0000e\u0000d\u0000i\u0000a\u0000t\u0000e\u0000 \u0000s\u0000t\u0000e\u0000p\u0000 \u0000i\u0000s\u0000 \u0000n\u0000e\u0000e\u0000d\u0000e\u0000d\u0000 \u0000-\u0000 \u0000d\u0000i\u0000r\u0000e\u0000c\u0000t\u0000l\u0000y\u0000 \u0000a\u0000c\u0000c\u0000e\u0000s\u0000s\u0000i\u0000n\u0000g\u0000 \u0000`\u0000h\u0000e\u0000l\u0000p\u0000 \u0000o\u0000f\u0000 \u0000i\u0000t\u0000m\u0000`\u0000 \u0000l\u0000e\u0000a\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000s\u0000t\u0000r\u0000a\u0000n\u0000g\u0000e\u0000 \u0000b\u0000e\u0000h\u0000a\u0000v\u0000i\u0000o\u0000r\u0000 \u0000o\u0000n\u0000 \u0000O\u0000S\u0000X\u0000 \u00001\u00000\u0000.\u00008\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nhelp\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005props\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\f\u0000\u0000&\u0000 Page URL is in `help` property.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000@\u0000 \u0000P\u0000a\u0000g\u0000e\u0000 \u0000U\u0000R\u0000L\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000`\u0000h\u0000e\u0000l\u0000p\u0000`\u0000 \u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nmsng\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nstringpart\u0000\nStringPart\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000G\u0000A Only now that we've found a matching page do we activate Safari.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000O\u0000n\u0000l\u0000y\u0000 \u0000n\u0000o\u0000w\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000w\u0000e\u0000'\u0000v\u0000e\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000a\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000p\u0000a\u0000g\u0000e\u0000 \u0000d\u0000o\u0000 \u0000w\u0000e\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000 \u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00016\u0000\u0002\u0000\u0001\u0004Iron\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000iV1H+\u0000\u0000\u0000\u0000\u0000k\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001elR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000i,\u0001\u0000\u0000\u0000\u0011\u0000\b\u0000\u00006\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000k\u0000\u0002\u0000\u001dIron:Applications:\u0000Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000I\u0000r\u0000o\u0000n\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000R\u0000L Finally, click on the item to show the Web Inspector for the matching page.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000F\u0000i\u0000n\u0000a\u0000l\u0000l\u0000y\u0000,\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000t\u0000o\u0000 \u0000s\u0000h\u0000o\u0000w\u0000 \u0000t\u0000h\u0000e\u0000 \u0000W\u0000e\u0000b\u0000 \u0000I\u0000n\u0000s\u0000p\u0000e\u0000c\u0000t\u0000o\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000p\u0000a\u0000g\u0000e\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003itm\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000\u00070\u0000\u0003itm\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000|\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0000\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0002n\u0000\u0000\u0000|\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000}\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0000g\u0000\u0000\u0000|\u0000}\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\/\u0000) Report error, if no matching page found.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000R\u0000 \u0000R\u0000e\u0000p\u0000o\u0000r\u0000t\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000,\u0000 \u0000i\u0000f\u0000 \u0000n\u0000o\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000p\u0000a\u0000g\u0000e\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000N\u0000N\u0000o\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000l\u0000y\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000g\u0000a\u0000b\u0000l\u0000e\u0000 \u0000p\u0000a\u0000g\u0000e\u0000 \u0000m\u0000a\u0000t\u0000c\u0000h\u0000i\u0000n\u0000g\u0000 \u0000'\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nstringpart\u0000\nStringPart\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000'\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\f\u0000x\u0000\u0017\u0000\u0011 Menu item found?\u0000\u0002\u0000\u0000\u000e\u0000y\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000 \u0000M\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000t\u0000\u0003l\u0000\u0005\u0000;\u0000b\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000;\u0000b\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000;\u0000E\u0000\u0000\r\u0000\u0000\u00024\u0000\u0001\u0000B\u0000E\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0000\u0001\r\u0000\u0000\u0002n\u0000\u0000\u0000;\u0000B\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000?\u0000B\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0003\r\u0000\u0000\u00024\u0000\u0000\u0000;\u0000?\u0000\n\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0003\u0000\u0001\r\u0000\u0000\u0002G\u0000\u0000\u0000H\u0000a\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000I\u0000T\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000J\u0000N\n\u0000\u0004\npnam\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000S\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\r\u0000\u0000\u0002E\u0000\u0000\u0000U\u0000`\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npnam\r\u0000\u0000\u0001m\u0000\u0000\u0000[\u0000_\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000i\u0000P\u0000a\u0000d\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000r\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\b\u0000\u0000\b?\u0259\u0002\u0000\u0000\f\u0000\u00000\u0000* Menu item not (yet) available; try again.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000T\u0000 \u0000M\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000n\u0000o\u0000t\u0000 \u0000(\u0000y\u0000e\u0000t\u0000)\u0000 \u0000a\u0000v\u0000a\u0000i\u0000l\u0000a\u0000b\u0000l\u0000e\u0000;\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000.\u0002\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000_\u0000\u0001m\u0000\u0000\u00004\u00005\u0003\u0000\u0001\r\u0000`\u0000\u0001m\u0000\u0000\u00005\u00006\u0003\u0000\u0014\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000^\u0000X Getting here means that the simulator menu item wasn't found within the timeout period.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000G\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000 \u0000h\u0000e\u0000r\u0000e\u0000 \u0000m\u0000e\u0000a\u0000n\u0000s\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000w\u0000a\u0000s\u0000n\u0000'\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000i\u0000m\u0000e\u0000o\u0000u\u0000t\u0000 \u0000p\u0000e\u0000r\u0000i\u0000o\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001b\u0000\u0015 Abort with an error.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000*\u0000 \u0000A\u0000b\u0000o\u0000r\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000a\u0000n\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0001\u0000\u0000\u0001\u0001\u0001\u0011\u0001\u0001\u0001\u0000C\u0000a\u0000n\u0000n\u0000o\u0000t\u0000 \u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0000g\u0000a\u0000b\u0000l\u0000e\u0000 \u0000p\u0000a\u0000g\u0000e\u0000s\u0000:\u0000 \u0000i\u0000O\u0000S\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000-\u0000r\u0000e\u0000l\u0000a\u0000t\u0000e\u0000d\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000i\u0000n\u0000 \u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000\n\u0000M\u0000a\u0000k\u0000e\u0000 \u0000s\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000`\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000e\u0000r\u0000`\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000s\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000d\u0000v\u0000a\u0000n\u0000c\u0000e\u0000d\u0000 \u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000O\u0000S\u0000 \u0000s\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000U\u0000I\u0000W\u0000e\u0000b\u0000V\u0000i\u0000e\u0000w\u0000-\u0000b\u0000a\u0000s\u0000e\u0000d\u0000 \u0000a\u0000p\u0000p\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000O\u0000\u00024\u0000\u0000\u0000&\u0000*\u0001\u0005\n\u0000\u0004\nprcs\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000M\u0000\u0002\u0001\b\r\u0001\b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000H\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0001\t\u000f\u0001\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001z\u0000\u0002\u0000\u0001\u0004Iron\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000iV1H+\u0000\u0000\u0000\u0000\u0000N\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00030\b(\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000i,\u0001\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0007\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000N\u0000\u0000\u0000H\u0000\u0000\u0000G\u0000\u0002\u00005Iron:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000I\u0000r\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000F\u0000\u0002\u0001\n\r\u0001\n\u0000\u0003l\u0000\u0002\u0001\u0002\u0001\u0002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0001\u000b~\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002~\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\nz\u0001\f\u0001\r\u0001\u000ey\u0001\u000f\u0001\u0010xwv\u0001z\u0000\u0000\u0010\u0001\f\u0000\butsrqpon\nu\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bt\u0000\u00180\u0000\nstringpart\u0000\nStringPart\u000bs\u0000\u00180\u0000\nsimsubmenu\u0000\nsimSubMenu\u000br\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\u000bq\u0000\t0\u0000\u0005props\u0000\u0000\u0001p\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u000e\u0001\r\u0000\u0007\u0010m\u0000\blk\u0001\u0011\u0001\u0012j\nm\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bl\u0000\b0\u0000\u0004argv\u0000\u0000\u0002k\u0000\u0000\u0010\u0001\u0011\u0000\u0003ihg\u000bi\u0000\b0\u0000\u0004argv\u0000\u0000\u000bh\u0000\u00050\u0000\u0001i\u0000\u0000\u000bg\u0000\u00070\u0000\u0003itm\u0000\u0000\u0010\u0001\u0012\u0000\"f\u0000\u001fed\u0000Bc\u0001\tb\u0001\u0006a`_^]\\[\u0001\u0013Z\u0000\u0000YXWVUTSRQ\u0000\u0000\u0000P\u0001\u0000\nf\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000be\u0000\u00180\u0000\nstringpart\u0000\nStringPart\nd\u0000\u0004\ncobj\nc\u0000\u0018.ascrnoop****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nb\u0000\u0004\nprcs\na\u0000\u0004\nmsng\u000b`\u0000\u00180\u0000\nsimsubmenu\u0000\nsimSubMenu\u0003_\u0000\u0014\n^\u0000\u0004\nmbar\n]\u0000\u0004\nmenE\u0003\\\n[\u0000\u0004\nmenI\u000e\u0001\u0013\u0000\u0000\u0013\nZ\u0000\u0004\npnam\nY\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \nX\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u000bW\u0000\u00120\u0000\u0007pageurl\u0000\u0007pageUrl\nV\u0000\u0004\nkocl\nU\u0000\u0004\npALL\u000bT\u0000\t0\u0000\u0005props\u0000\u0000\nS\u0000\u0004\nhelp\nR\u0000\u0004\nbool\nQ\u0000\u0018.miscactvnull\u0000\u0000null\nP\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011j\u0001\u0004j\f\u0000\u0000j\u0000\u001d\u0000\bEY\u0000\bk\/EO\u0012\u0000\u0007*j\f\u0000\u0005UO\u0012\u0000*\/\u0012\u0000EO\u0017\u0000kkh\u001c\u0000\u0001*k\/\/k\/a\u0000\u0010[[a\u0000\u0011,\\Za\u0000\u0012@\\[a\u0000\u0011,\\Za\u0000\u0013@B1\u0012\u0000*j\f\u0000\u0014\u001d\u0000z*j\f\u0000\u0015OE`\u0000\u0016O\u0017\u0000[*,-[a\u0000\u0017l\f\u0000\u0000kh\u001b\u0000\u0002a\u0000\u0018,E`\u0000\u0019O_\u0000\u0019a\u0000\u001a,E`\u0000\u0016O_\u0000\u0016\u0001\t\u0000\u000b_\u0000\u0016\ba\u0000\u001b&\u001d\u0000\u0018\u0012\u0000\u0007*j\f\u0000\u001cUOj\f\u0000\u0015Oh\u000fY\u0000\u0003h[OYO)ja\u0000\u001d%a\u0000\u001e%\u0015Y\u0000\u0003hUOa\u0000\u001fj\f\u0000 [OYFO)ja\u0000!\u0015OPUOPUOP\u000f\u000e\u0001\u000e\u0000\u0001\u0001\u0014\u0011\u0001\u0014\u0000\u0006\u0000t\u0000a\u0000b\ny\u0000\u0004\nmsng\u000e\u0001\u000f\u0000\u0001\u0001\u0015\u0011\u0001\u0015\u00004\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000o\u0000c\u0000a\u0000l\u0000h\u0000o\u0000s\u0000t\u0000\/\u0000t\u0000a\u0000b\u00001\u0000.\u0000h\u0000t\u0000m\u0000l\u0006\u0001\u0010\u0000\u0003O\u0001\u0016\u0001\u0017\nO\u0000\u0004\ndesc\u000e\u0001\u0016\u0000\u0001\u0001\u0018\u0011\u0001\u0018\u0000\u0012\u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0006\u0001\u0017\u0000\u0003NM\u0001\u0019\nN\u0000\u0004\norie\nM\u0000\u0004\nmsng\u0006\u0001\u0019\u0000\u0003L\u0001\u001a\u0001\u001b\nL\u0000\u0004\nposn\u000e\u0001\u001a\u0000\u0002\u0004K\u0001\u001c\u0003K\u0000\u0002\u000e\u0001\u001c\u0000\u0002\u0000JI\u0003J\u0000\u0000\u0003I\u0000L\u0006\u0001\u001b\u0000\u0003HG\u0001\u001d\nH\u0000\u0004\npcls\nG\u0000\u0004\nmenI\u0006\u0001\u001d\u0000\u0003F\u0001\u001e\u0001\u001f\nF\u0000\u0004\nrold\u000e\u0001\u001e\u0000\u0001\u0001 \u0011\u0001 \u0000\u0012\u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0006\u0001\u001f\u0000\u0003ED\u0001!\nE\u0000\u0004\naxds\nD\u0000\u0004\nmsng\u0006\u0001!\u0000\u0003CB\u0001\"\nC\u0000\u0004\nfocu\nB\u0000\u0004\nmsng\u0006\u0001\"\u0000\u0003A\u0001#\u0001$\nA\u0000\u0004\ntitl\u000e\u0001#\u0000\u0001\u0001%\u0011\u0001%\u0000*\u0000l\u0000o\u0000c\u0000a\u0000l\u0000h\u0000o\u0000s\u0000t\u0000 \u0014\u0000 \u0000t\u0000a\u0000b\u00001\u0000.\u0000h\u0000t\u0000m\u0000l\u0006\u0001$\u0000\u0003@\u0001&\u0001'\n@\u0000\u0004\nptsz\u000e\u0001&\u0000\u0002\u0004?\u0001(\u0003?\u0000\u0002\u000e\u0001(\u0000\u0002\u0000>=\u0003>\u0001\u0006\u0003=\u0000\u0013\u0006\u0001'\u0000\u0003<;\u0001)\n<\u0000\u0004\nvalL\n;\u0000\u0004\nmsng\u0006\u0001)\u0000\u0003:\u0001\u000f\u0001*\n:\u0000\u0004\nhelp\u0006\u0001*\u0000\u000398\u0001+\n9\u0000\u0004\nenaB\n8\u0000\b\u000bboovtrue\u0006\u0001+\u0000\u000376\u0001,\n7\u0000\u0004\nmaxV\n6\u0000\u0004\nmsng\u0006\u0001,\u0000\u00035\u0001-\u0001.\n5\u0000\u0004\nrole\u000e\u0001-\u0000\u0001\u0001\/\u0011\u0001\/\u0000\u0014\u0000A\u0000X\u0000M\u0000e\u0000n\u0000u\u0000I\u0000t\u0000e\u0000m\u0006\u0001.\u0000\u00034\u00010\u00011\n4\u0000\u0004\nects\u000e\u00010\u0000\u0002\u00043\u00012\u00033\u0000\u0000\u000e\u00012\u0000\u0000\u0000\u0006\u00011\u0000\u000321\u00013\n2\u0000\u0004\nsbrl\n1\u0000\u0004\nmsng\u0006\u00013\u0000\u00030\/\u00014\n0\u0000\u0004\nselE\n\/\u0000\b\u000bboovfals\u0006\u00014\u0000\u0003.\u00015\u00016\n.\u0000\u0004\npnam\u000e\u00015\u0000\u0001\u00017\u0011\u00017\u0000*\u0000l\u0000o\u0000c\u0000a\u0000l\u0000h\u0000o\u0000s\u0000t\u0000 \u0014\u0000 \u0000t\u0000a\u0000b\u00001\u0000.\u0000h\u0000t\u0000m\u0000l\u0006\u00016\u0000\u0003-,+\n-\u0000\u0004\nminW\n,\u0000\u0004\nmsng\u0006+\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d8af21d0d838dda38f3cd649ea7d10989d92abe7","subject":"Delete jLinuxInstaller.scpt","message":"Delete jLinuxInstaller.scpt","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_contents":"","old_contents":"--jLinuxInstaller.scpt DOES NOT work fully yet\n--Due to the fact that .app files are actually folders, getting them with cURL does not work\n--This will be fixed later but isn't a high priority right now\n-- \n-- (c) 2016 Brendan Manning\n-- MIT Liscense\ndisplay dialog \"jLinux Quick Installer...\" with title \"Install jLinux\" buttons {\"Install\", \"Quit\"} default button 1\nif button returned of result = \"Install\" then\n\tdisplay alert \"Downloading files from the Internet...If you do not have Internet access, you may be required to install manually\" giving up after 2\n\ttell application \"Terminal\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"mkdir \/Applications\/jLinux\/\"\n\t\tdelay 1\n\t\tdo script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/latest.jar -o \/Applications\/jLinux\/latest.jar\"\n\t\tdelay 10\n\t\tdo script \"rm \/Applications\/jLinux\/jLinux.jar\"\n\t\tdo script \"mv \/Applications\/jLinux\/latest.jar \/Applications\/jLinux\/jLinux.jar\"\n\t\t--commented code that doesn't work yet\n\t\t--delay 1\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxLauncher.app -o \/Applications\/jLinux\/jLinuxLauncher.app\"\n\t\t--delay 10\n\t\t--do script \"curl -f http:\/\/thecyberbay.com\/cdn\/jLinux\/latest\/jLinuxUpdater.app -o \/Applications\/jLinux\/jLinuxUpdater.app\"\n\t\tquit\n\t\tdelay 5\n\t\tactivate\n\t\tdo script \"java -jar \/Applications\/jLinux\/jLinux.jar\"\n\t\tdisplay alert \"jLinux Installed!\" buttons {\"Great\", \"ALRIGHT!\", \"Rock on man!\"} default button 3\n\tend tell\nelse\n\tdisplay alert \"You have aborted jLinux installation. If you would like to return, simply reopen this app!\" buttons {\"Acknowledged\", \"Affirmative\", \"10-4\"} default button 2\nend if\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e73ddf742dab849f27626b283dd62d671f69dd20","subject":"Update FetchLyric","message":"Update FetchLyric\n","repos":"JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits","old_file":"FetchLyric\/FetchLyric.applescript","new_file":"FetchLyric\/FetchLyric.applescript","new_contents":"-- FetchLyric\n-- DESCRIPTION: \u8ba9iTunes\u5185\u5f53\u524d\u88ab\u9009\u4e2d\u7684\u66f2\u76ee\u81ea\u52a8\u4e0b\u8f7d\u5e76\u4fdd\u5b58\u6b4c\u8bcd\uff0c\u82e5\u6b4c\u8bcd\u5df2\u5b58\u5728\u5c06\u88ab\u5ffd\u7565\uff0c\u652f\u6301Growl\u901a\u77e5\n-- AUTHOR: JinnLynn http::\/\/jeeker.net\n-- LAST UPDATED: 2012-05-04\n-- INTRO PAGE: http:\/\/jeeker.net\/fetch-lyric-for-itunes\/\n-- REF: Martian http:\/\/blog.4321.la\/articles\/2012\/01\/27\/use-applescript-to-set-itunes-lyrics\/\nproperty scriptName : \"FetchLyric\"\nproperty baseURL : \"http:\/\/lyrics.sinaapp.com\/\"\nproperty isGrowlRunning : false\nproperty statusDesc : {\"\u6b4c\u8bcd\u5df2\u5b58\u5728\uff0c\u65e0\u9700\u518d\u83b7\u53d6\u3002\", \"\u6b4c\u8bcd\u83b7\u53d6\u6210\u529f\u3002\", \"\u6b4c\u8bcd\u83b7\u53d6\u5931\u8d25\u3002\", \"\u672a\u9009\u62e9\u6b4c\u66f2\u3002\"}\nproperty STATUS_LYRIC_EXIST : 1\nproperty STATUS_LYRIC_SUCCESS : 2\nproperty STATUS_LYRIC_FAIL : 3\nproperty STATUS_LYRIC_UNSELECTED : 4\n \ntell application \"System Events\"\nset isGrowlRunning to (count of (every process whose bundle identifier is \"com.Growl.GrowlHelperApp\")) > 0\nend tell\n \nscript growl\non growlNotify(artist, title, status)\n if isGrowlRunning = false then return\n tell application id \"com.Growl.GrowlHelperApp\"\n if title = \"\" then set title to \"unknown\"\n set the_title to title\n if artist is not equal to \"\" then set the_title to artist & \" - \" & the_title\n set the_desc to item status of statusDesc\n set the allNotificationsList to {scriptName}\n set the enabledNotificationsList to {scriptName}\n register as application \u00ac\n scriptName all notifications allNotificationsList \u00ac\n default notifications enabledNotificationsList \u00ac\n icon of application \"iTunes\"\n notify with name \u00ac\n scriptName title \u00ac\n the_title description \u00ac\n the_desc application name scriptName\n -- \u5c1d\u8bd5\u4f7f\u7528\u6b4c\u66f2\u5c01\u9762\u4f5c\u4e3aGrowl\u56fe\u6807\u51fa\u9519\n end tell\nend growlNotify\nend script\n \ntell application \"iTunes\"\nif selection is {} then\n tell growl to growlNotify(\"\", \"\", STATUS_LYRIC_UNSELECTED)\n return\nend if\nset k to count (item of selection)\nset i to 1\nrepeat\n set theTrack to (item i of selection)\n set this_artist to (get artist of theTrack)\n set this_title to (get name of theTrack)\n set this_lyric to (get lyrics of theTrack)\n -- set this_artwork to data of artwork 1 of theTrack\n \n set fetch_status to STATUS_LYRIC_FAIL\n \n if length of this_lyric < 1 then\n -- \u53ea\u6709\u5f53\u6b4c\u66f2\u4e2d\u672a\u5b58\u5728\u6b4c\u8bcd\u65f6\u624d\u5c1d\u8bd5\u83b7\u53d6\u6b4c\u8bcd\n set requestData to \"title=\" & this_title & \"&artist=\" & this_artist\n set songLyrics to do shell script \"curl -d '\" & requestData & \"' \" & baseURL\n if length of songLyrics > 1 then\n -- \u6b4c\u8bcd\u6210\u529f\u83b7\u53d6\n set lyrics of theTrack to songLyrics\n set fetch_status to STATUS_LYRIC_SUCCESS\n end if\n else\n set fetch_status to STATUS_LYRIC_EXIST\n end if\n \n tell growl to growlNotify(this_artist, this_title, fetch_status)\n \n set i to i + 1\n if i > k then exit repeat\nend repeat\n-- \u5982\u679cGrowl\u672a\u8fd0\u884c\u5219\u663e\u793a\u5bf9\u8bdd\u6846\nif isGrowlRunning = false then\n display dialog return & \"\u6b4c\u8bcd\u83b7\u53d6\u7ed3\u675f\uff01\" buttons {\"\u786e\u5b9a\"} default button 1 with icon 1 giving up after 5 with title scriptName\nend if\nend tell","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0011\u0000\u000b FetchLyric\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0016\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000B\u0000< DESCRIPTION: ?iTunes????????????????????????????????Growl??\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000x\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000sQ_SRM\tN-vfvRN\u000b}^vO[XkL\fkL][XW(\\\u0006_ue\fe\/c\u0001\u0000G\u0000r\u0000o\u0000w\u0000l\u001aw\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000*\u0000$ AUTHOR: JinnLynn http::\/\/jeeker.net\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000H\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u0000\u001f\u0000\u0019 LAST UPDATED: 2012-05-04\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u00002\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0000\u001c\u0001\u0000\u0000\f\u0000\u001b\u0000<\u00006 INTRO PAGE: http:\/\/jeeker.net\/fetch-lyric-for-itunes\/\u0000\u0002\u0000\u0000\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000l\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0002\u0000\u001a\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000 \u0000!\u0001\u0000\u0000\f\u0000 \u0000a\u0000[ REF: Martian http:\/\/blog.4321.la\/articles\/2012\/01\/27\/use-applescript-to-set-itunes-lyrics\/\u0000\u0002\u0000\u0000\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0002\u0000\u001f\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002j\u0000\u0000\u0000\u0000\u0000\u0002\u0000%\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000&\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0014\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0002\u0000$\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002j\u0000\u0000\u0000\u0003\u0000\u0005\u0000*\u000b\u0000\u00120\u0000\u0007baseurl\u0000\u0007baseURL\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u00004\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002j\u0000\u0000\u0000\u0006\u0000\b\u0000\/\u000b\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovfals\u0002\u0000.\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002j\u0000\u0000\u0000\t\u0000\u0010\u00002\u000b\u0000\u00180\u0000\nstatusdesc\u0000\nstatusDesc\r\u00002\u0000\u0001J\u0000\u0000\u0000\t\u0000\u000f\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0018kL][XW(\fe\u0000QS0\u0002\u0002\u00005\u0000\u0002\u00008\u00009\r\u00008\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000\u000ekL\u0343Sb\u0010R0\u0002\u0002\u00009\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000\u000ekL\u0343SY1%0\u0002\u0002\u0000=\u0000\u0002\u0000@\r\u0000@\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000A\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\fg*\tbkLf0\u0002\u0002\u0000\u0000\u0002\u00001\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002j\u0000\u0000\u0000\u0011\u0000\u0013\u0000E\u000b\u0000(0\u0000\u0012status_lyric_exist\u0000\u0012STATUS_LYRIC_EXIST\r\u0000E\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0003\u0000\u0001\u0002\u0000D\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0002j\u0000\u0000\u0000\u0014\u0000\u0016\u0000H\u000b\u0000,0\u0000\u0014status_lyric_success\u0000\u0014STATUS_LYRIC_SUCCESS\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0002\u0002\u0000G\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002j\u0000\u0000\u0000\u0017\u0000\u0019\u0000K\u000b\u0000&0\u0000\u0011status_lyric_fail\u0000\u0011STATUS_LYRIC_FAIL\r\u0000K\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0003\u0002\u0000J\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002j\u0000\u0000\u0000\u001a\u0000\u001c\u0000N\u000b\u000020\u0000\u0017status_lyric_unselected\u0000\u0017STATUS_LYRIC_UNSELECTED\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0003\u0000\u0004\u0002\u0000M\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u001d\u0000S\r\u0000S\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u001d\u0000T\u0000U\r\u0000T\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\u001c\u0000V\u0000W\r\u0000V\u0000\u0002?\u0000\u0000\u0000\u0004\u0000\u0016\u0000X\u0000Y\r\u0000X\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u0014\u0000Z\r\u0000Z\u0000\u0003I\u0000\u0001\u0000\u0004\u0000\u0014\u0000[\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000[\u0000\u0003l\u0000\u0005\u0000\u0004\u0000\u0010\u0000\\\r\u0000\\\u0000\u00026\u0001\u0000\u0000\u0004\u0000\u0010\u0000]\u0000^\r\u0000]\u0000\u00012\u0000\u0000\u0000\u0004\u0000\u0007\n\u0000\u0004\nprcs\r\u0000^\u0000\u0002=\u0000\u0003\u0000\b\u0000\u000f\u0000_\u0000`\r\u0000_\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nbnid\r\u0000`\u0000\u0001m\u0000\u0000\u0000\f\u0000\u000e\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u00000\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0003\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\r\u0000U\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000c\u000f\u0000c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\nMacOSXLion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\u0000\u0000u\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(\u0003Z\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000?H\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00033\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000u\u0000\u0000\u0000h\u0000\u0000\u0000g\u0000\u0002\u0000;MacOSXLion:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000M\u0000a\u0000c\u0000O\u0000S\u0000X\u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000e\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0002h\u0000\u0000\u0000\u001d\u0000&\u0000h\u000b\u0000\t0\u0000\u0005growl\u0000\u0000\r\u0000h\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000k\u000b\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006artist\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000o\u0000\u0002\u0000p\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006status\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000q\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0004Z\u0000\u0001\u0000\u0000\u0000\u0010\u0000t\u0000u\r\u0000t\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\u0007\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0005\u000b\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\r\u0000w\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006\n\u0000\b\u000bboovfals\r\u0000u\u0000\u0001L\u0000\u0000\u0000\n\u0000\f\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000s\u0000\u0002\u0000x\r\u0000x\u0000\u0002O\u0000\u0000\u0000\u0011\u0000\u0000y\u0000z\r\u0000y\u0000\u0001k\u0000\u0000\u0000\u0019\u0000\u0000{\u0002\u0000{\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0004Z\u0000\u0001\u0000\u0019\u0000&\u0000~\u0000\r\u0000~\u0000\u0002=\u0000\u0000\u0000\u0019\u0000\u001c\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001f\u0000\"\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000'\u0000*\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\t0\u0000\u0005title\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthe_title\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0000+\u0000<\u0000\u0000\r\u0000\u0000\u0002>\u0000\u0001\u0000+\u0000.\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\n0\u0000\u0006artist\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00001\u00008\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00001\u00004\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\n0\u0000\u0006artist\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000 \u0000-\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\r0\u0000\tthe_title\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tthe_title\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000=\u0000G\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000=\u0000E\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000B\u0000E\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\n0\u0000\u0006status\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000B\u000b\u0000\u00180\u0000\nstatusdesc\u0000\nstatusDesc\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bthe_desc\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000H\u0000Q\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000H\u0000O\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000H\u0000M\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014allnotificationslist\u0000\u0014allNotificationsList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000R\u0000[\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000R\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000W\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u000040\u0000\u0018enablednotificationslist\u0000\u0018enabledNotificationsList\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\\\u0000m\u0000\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nappl\r\u0000\u0000\u0003l\u0000\t\u0000^\u0000c\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000c\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nanot\r\u0000\u0000\u0003l\u0000\n\u0000d\u0000e\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000d\u0000e\u000b\u0000,0\u0000\u0014allnotificationslist\u0000\u0014allNotificationsList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndnot\r\u0000\u0000\u0003l\u0000\n\u0000f\u0000g\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u000040\u0000\u0018enablednotificationslist\u0000\u0018enabledNotificationsList\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niapp\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000n\u0000\u0000\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nname\r\u0000\u0000\u0003l\u0000\t\u0000p\u0000u\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000p\u0000u\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ntitl\r\u0000\u0000\u0003l\u0000\t\u0000x\u0000y\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\r0\u0000\tthe_title\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\u0000\u0003l\u0000\t\u0000|\u0000}\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\f0\u0000\bthe_desc\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nappl\r\u0000\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001a\u0000\u0014 ??????????Growl????\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000 \\\u001dOu(kLf\\\u0001bO\\N:\u0000G\u0000r\u0000o\u0000w\u0000lVh\u0007Q\u0019\u0002\u0000\u0000\r\u0000z\u0000\u00035\u0000\u0000\u0000\u0011\u0000\u0016\u0000\n\u0000\u0004\ncapp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00000\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\n\u0000\b\u000bkfrmID \u0002\u0000\u0000\u0002\u0000g\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u001e\u0001b\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001e\u0001b\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\"\u0001a\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\"\u0000G\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\"\u0000(\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\"\u0000%\n\u0000\u0004\nsele\r\u0000\u0000\u0001J\u0000\u0000\u0000%\u0000'\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000+\u0000C\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000+\u0000@\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00003\u0000?\u0000\u000b\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00004\u00005\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00005\u00006\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00006\u0000;\u000b\u000020\u0000\u0017status_lyric_unselected\u0000\u0017STATUS_LYRIC_UNSELECTED\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000+\u00000~\u000b~\u0000\t0\u0000\u0005growl\u0000\u0000\u0002\u0000\u0000\u0002\u0000}\r\u0000\u0000\u0001L\u0000\u0000\u0000A\u0000C|\u0001|\u0000\u0000\u0002}\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000H\u0000S\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000H\u0000Q{\u0000z\n{\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000\u0000\u0003l\u0000\u0005\u0000H\u0000M\u0000yx\r\u0000\u0000\u0002n\u0000\u0000\u0000H\u0000M\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000Mw\nw\u0000\u0004\ncobj\r\u0000\u0000\u00011\u0000\u0000\u0000H\u0000Kv\nv\u0000\u0004\nsele\u0001y\u0000\u0000\u0001x\u0000\u0000\u0002z\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00050\u0000\u0001k\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000T\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000Ut\u0003t\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000s\u000bs\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000X\u0001'\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000]\u0001\"\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0002r\u0000\u0000\u0000]\u0000e\u0001\u0003\u0001\u0004\r\u0001\u0003\u0000\u0003l\u0000\u0005\u0000]\u0000c\u0001\u0005rq\r\u0001\u0005\u0000\u0002n\u0000\u0000\u0000]\u0000c\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u00024\u0000\u0000\u0000`\u0000cp\u0001\b\np\u0000\u0004\ncobj\r\u0001\b\u0000\u0001o\u0000\u0000\u0000a\u0000bo\u000bo\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0007\u0000\u00011\u0000\u0000\u0000]\u0000`n\nn\u0000\u0004\nsele\u0001r\u0000\u0000\u0001q\u0000\u0000\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000m\u000bm\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0002\u0001\u0002\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0002r\u0000\u0000\u0000f\u0000n\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0005\u0000f\u0000j\u0001\rlk\r\u0001\r\u0000\u0001e\u0000\u0000\u0000f\u0000j\u0001\u000e\r\u0001\u000e\u0000\u0002n\u0000\u0000\u0000f\u0000j\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u00011\u0000\u0000\u0000g\u0000ij\nj\u0000\u0004\npArt\r\u0001\u0010\u0000\u0001o\u0000\u0000\u0000f\u0000gi\u000bi\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0001l\u0000\u0000\u0001k\u0000\u0000\r\u0001\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000h\u000bh\u0000\u000f0\u0000\u000bthis_artist\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0002r\u0000\u0000\u0000o\u0000y\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0003l\u0000\u0005\u0000o\u0000u\u0001\u0015gf\r\u0001\u0015\u0000\u0001e\u0000\u0000\u0000o\u0000u\u0001\u0016\r\u0001\u0016\u0000\u0002n\u0000\u0000\u0000o\u0000u\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u00011\u0000\u0000\u0000p\u0000te\ne\u0000\u0004\npnam\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000o\u0000pd\u000bd\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0001g\u0000\u0000\u0001f\u0000\u0000\r\u0001\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000c\u000bc\u0000\u000e0\u0000\nthis_title\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001\u0019\u0001\u001a\r\u0001\u0019\u0000\u0002r\u0000\u0000\u0000z\u0000\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0003l\u0000\u0005\u0000z\u0000\u0001\u001dba\r\u0001\u001d\u0000\u0001e\u0000\u0000\u0000z\u0000\u0001\u001e\r\u0001\u001e\u0000\u0002n\u0000\u0000\u0000z\u0000\u0001\u001f\u0001 \r\u0001\u001f\u0000\u00011\u0000\u0000\u0000{\u0000`\n`\u0000\u0004\npLyr\r\u0001 \u0000\u0001o\u0000\u0000\u0000z\u0000{_\u000b_\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0001b\u0000\u0000\u0001a\u0000\u0000\r\u0001\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000^\u000b^\u0000\u000e0\u0000\nthis_lyric\u0000\u0000\u0002\u0001\u001a\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0001\u0000\u0000]\u0001#\u0001$\u0001]\u0000\u0000\f\u0001#\u00008\u00002 set this_artwork to data of artwork 1 of theTrack\u0000\u0002\u0000\u0000\u000e\u0001$\u0000\u0001\u0001%\u0011\u0001%\u0000d\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0002\u0001\"\u0000\u0002\u0001&\u0001'\r\u0001&\u0000\u0003l\u0000\u0002\u0000\u0000\\[Z\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0002\u0001'\u0000\u0002\u0001(\u0001)\r\u0001(\u0000\u0002r\u0000\u0000\u0000\u0000\u0001*\u0001+\r\u0001*\u0000\u0001o\u0000\u0000\u0000\u0000Y\u000bY\u0000&0\u0000\u0011status_lyric_fail\u0000\u0011STATUS_LYRIC_FAIL\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000X\u000bX\u0000\u00100\u0000\ffetch_status\u0000\u0000\u0002\u0001)\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000WVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0001-\u0000\u0002\u0001.\u0001\/\r\u0001.\u0000\u0004Z\u0000\u0000\u0000\u0000\u00010\u00011T\u00012\r\u00010\u0000\u0002A\u0000\u0000\u0000\u0000\u00013\u00014\r\u00013\u0000\u0002n\u0000\u0000\u0000\u0000\u00015\u00016\r\u00015\u0000\u00011\u0000\u0000\u0000\u0000S\nS\u0000\u0004\nleng\r\u00016\u0000\u0001o\u0000\u0000\u0000\u0000R\u000bR\u0000\u000e0\u0000\nthis_lyric\u0000\u0000\r\u00014\u0000\u0001m\u0000\u0000\u0000\u0000Q\u0003Q\u0000\u0001\r\u00011\u0000\u0001k\u0000\u0000\u0000\u0000\u00017\u0002\u00017\u0000\u0002\u00018\u00019\r\u00018\u0000\u0003l\u0000\u0001\u0000\u0000P\u0001:\u0001;\u0001P\u0000\u0000\f\u0001:\u0000\u001a\u0000\u0014 ???????????????????\u0000\u0002\u0000\u0000\u000e\u0001;\u0000\u0001\u0001<\u0011\u0001<\u0000(\u0000 Sg\t_SkLfN-g*[XW(kLebM\\\u001d\u0543SkL\u0002\u00019\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002r\u0000\u0000\u0000\u0000\u0001?\u0001@\r\u0001?\u0000\u0002b\u0000\u0000\u0000\u0000\u0001A\u0001B\r\u0001A\u0000\u0002b\u0000\u0000\u0000\u0000\u0001C\u0001D\r\u0001C\u0000\u0002b\u0000\u0000\u0000\u0000\u0001E\u0001F\r\u0001E\u0000\u0001m\u0000\u0000\u0000\u0000\u0001G\u000e\u0001G\u0000\u0001\u0001H\u0011\u0001H\u0000\f\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\r\u0001F\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u000e0\u0000\nthis_title\u0000\u0000\r\u0001D\u0000\u0001m\u0000\u0000\u0000\u0000\u0001I\u000e\u0001I\u0000\u0001\u0001J\u0011\u0001J\u0000\u0010\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\r\u0001B\u0000\u0001o\u0000\u0000\u0000\u0000N\u000bN\u0000\u000f0\u0000\u000bthis_artist\u0000\u0000\r\u0001@\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\u001a0\u0000\u000brequestdata\u0000\u000brequestData\u0002\u0001>\u0000\u0002\u0001K\u0001L\r\u0001K\u0000\u0002r\u0000\u0000\u0000\u0000\u0001M\u0001N\r\u0001M\u0000\u0003I\u0000\u0002\u0000\u0000L\u0001OK\nL\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001O\u0000\u0002b\u0000\u0000\u0000\u0000\u0001P\u0001Q\r\u0001P\u0000\u0002b\u0000\u0000\u0000\u0000\u0001R\u0001S\r\u0001R\u0000\u0002b\u0000\u0000\u0000\u0000\u0001T\u0001U\r\u0001T\u0000\u0001m\u0000\u0000\u0000\u0000\u0001V\u000e\u0001V\u0000\u0001\u0001W\u0011\u0001W\u0000\u0012\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000J\u000bJ\u0000\u001a0\u0000\u000brequestdata\u0000\u000brequestData\r\u0001S\u0000\u0001m\u0000\u0000\u0000\u0000\u0001X\u000e\u0001X\u0000\u0001\u0001Y\u0011\u0001Y\u0000\u0004\u0000'\u0000 \r\u0001Q\u0000\u0001o\u0000\u0000\u0000\u0000I\u000bI\u0000\u00120\u0000\u0007baseurl\u0000\u0007baseURL\u0002K\u0000\u0000\r\u0001N\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000H\u000bH\u0000\u00180\u0000\nsonglyrics\u0000\nsongLyrics\u0002\u0001L\u0000\u0002\u0001ZG\r\u0001Z\u0000\u0004Z\u0000\u0000\u0000\u0000\u0001[\u0001\\FE\r\u0001[\u0000\u0002?\u0000\u0000\u0000\u0000\u0001]\u0001^\r\u0001]\u0000\u0002n\u0000\u0000\u0000\u0000\u0001_\u0001`\r\u0001_\u0000\u00011\u0000\u0000\u0000\u0000D\nD\u0000\u0004\nleng\r\u0001`\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000\u00180\u0000\nsonglyrics\u0000\nsongLyrics\r\u0001^\u0000\u0001m\u0000\u0000\u0000\u0000B\u0003B\u0000\u0001\r\u0001\\\u0000\u0001k\u0000\u0000\u0000\u0000\u0001a\u0002\u0001a\u0000\u0002\u0001b\u0001c\r\u0001b\u0000\u0003l\u0000\u0001\u0000\u0000A\u0001d\u0001e\u0001A\u0000\u0000\f\u0001d\u0000\r\u0000\u0007 ??????\u0000\u0002\u0000\u0000\u000e\u0001e\u0000\u0001\u0001f\u0011\u0001f\u0000\u000e\u0000 kLb\u0010RS\u0002\u0001c\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0002r\u0000\u0000\u0000\u0000\u0001i\u0001j\r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000@\u000b@\u0000\u00180\u0000\nsonglyrics\u0000\nsongLyrics\r\u0001j\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0001k\u0001l\r\u0001k\u0000\u00011\u0000\u0000\u0000\u0000?\n?\u0000\u0004\npLyr\r\u0001l\u0000\u0001o\u0000\u0000\u0000\u0000>\u000b>\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u0002\u0001h\u0000\u0002\u0001m=\r\u0001m\u0000\u0002r\u0000\u0000\u0000\u0000\u0001n\u0001o\r\u0001n\u0000\u0001o\u0000\u0000\u0000\u0000<\u000b<\u0000,0\u0000\u0014status_lyric_success\u0000\u0014STATUS_LYRIC_SUCCESS\r\u0001o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000;\u000b;\u0000\u00100\u0000\ffetch_status\u0000\u0000\u0002=\u0000\u0000\u0002F\u0000\u0000\u0001E\u0000\u0000\u0002G\u0000\u0000\u0002T\u0000\u0000\r\u00012\u0000\u0002r\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000(0\u0000\u0012status_lyric_exist\u0000\u0012STATUS_LYRIC_EXIST\r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00009\u000b9\u0000\u00100\u0000\ffetch_status\u0000\u0000\u0002\u0001\/\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0003l\u0000\u0002\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001s\u0000\u0002\u0001t\u0001u\r\u0001t\u0000\u0002O\u0000\u0001\u0000\u0001\u0010\u0001v\u0001w\r\u0001v\u0000\u0003I\u0000\u0000\u0001\u0001\u0001\u000f5\u0001x4\u000b5\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\u0002\u0001x\u0000\u0002\u0001y\u0001z\r\u0001y\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u00053\u000b3\u0000\u000f0\u0000\u000bthis_artist\u0000\u0000\u0002\u0001z\u0000\u0002\u0001{\u0001|\r\u0001{\u0000\u0001o\u0000\u0000\u0001\u0005\u0001\b2\u000b2\u0000\u000e0\u0000\nthis_title\u0000\u0000\u0002\u0001|\u0000\u0002\u0001}1\r\u0001}\u0000\u0001o\u0000\u0000\u0001\b\u0001\u000b0\u000b0\u0000\u00100\u0000\ffetch_status\u0000\u0000\u00021\u0000\u0000\u00024\u0000\u0000\r\u0001w\u0000\u0001o\u0000\u0000\u0000\u0000\/\u000b\/\u0000\t0\u0000\u0005growl\u0000\u0000\u0002\u0001u\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0003l\u0000\u0002\u0001\u0011\u0001\u0011.-,\u0001.\u0000\u0000\u0001-\u0000\u0000\u0001,\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0011\u0001\u0016\u0001\u0001\r\u0001\u0000\u0002[\u0000\u0000\u0001\u0011\u0001\u0014\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0011\u0001\u0012+\u000b+\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0013*\u0003*\u0000\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000)\u000b)\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0001\u0000\u0002\u0001(\r\u0001\u0000\u0004Z\u0000\u0001\u0001\u0017\u0001\"\u0001\u0001'&\r\u0001\u0000\u0002?\u0000\u0000\u0001\u0017\u0001\u001a\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u0018%\u000b%\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019$\u000b$\u0000\u00050\u0000\u0001k\u0000\u0000\r\u0001\u0000\u0000S\u0000\u0000\u0001\u001d\u0001\u001e\u0002'\u0000\u0000\u0001&\u0000\u0000\u0002(\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0001(\u0001(#\u0001\u0001\u0001#\u0000\u0000\f\u0001\u0000\u0017\u0000\u0011 ??Growl?????????\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\"\u0000 Yg\u0000G\u0000r\u0000o\u0000w\u0000lg*\u0408LR\u0019f>y:[hF\u0002\u0001\u0000\u0002\u0001\"\r\u0001\u0000\u0004Z\u0000\u0000\u0001(\u0001a\u0001\u0001! \r\u0001\u0000\u0002=\u0000\u0000\u0001(\u0001\/\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001(\u0001-\u001f\u000b\u001f\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\r\u0001\u0000\u0001m\u0000\u0000\u0001-\u0001.\u001e\n\u001e\u0000\b\u000bboovfals\r\u0001\u0000\u0003I\u0000\u0002\u00012\u0001]\u001d\u0001\u0001\n\u001d\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0001\u0000\u0002b\u0000\u0000\u00012\u00019\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u00012\u00015\u001c\n\u001c\u0000\u0004\nret \r\u0001\u0000\u0001m\u0000\u0000\u00015\u00018\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000ekL\u0343S~g_\u0001\u0006\u0001\u0000\u0003\u001b\u0001\u0001\n\u001b\u0000\u0004\nbtns\r\u0001\u0000\u0001J\u0000\u0000\u0001<\u0001A\u0001\u0002\u0001\u0000\u0002\u0001\u001a\r\u0001\u0000\u0001m\u0000\u0000\u0001<\u0001?\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004xn[\u0002\u001a\u0000\u0000\u0006\u0001\u0000\u0003\u0019\u0001\u0001\n\u0019\u0000\u0004\ndflt\r\u0001\u0000\u0001m\u0000\u0000\u0001D\u0001E\u0018\u0003\u0018\u0000\u0001\u0006\u0001\u0000\u0003\u0017\u0001\u0001\n\u0017\u0000\u0004\ndisp\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001I\u0016\u0003\u0016\u0000\u0001\u0006\u0001\u0000\u0003\u0015\u0001\u0001\n\u0015\u0000\u0004\ngivu\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0014\u0003\u0014\u0000\u0005\u0006\u0001\u0000\u0003\u0013\u0001\u0012\n\u0013\u0000\u0004\nappr\r\u0001\u0000\u0001o\u0000\u0000\u0001R\u0001W\u0011\u000b\u0011\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u0006\u0012\u0000\u0000\u0002!\u0000\u0000\u0001 \u0000\u0000\u0002\"\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\nMacOSXLion\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\u0000\u0000\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002`t5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000?H\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000sX\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#MacOSXLion:Applications:\u0000iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0016\u0000\n\u0000M\u0000a\u0000c\u0000O\u0000S\u0000X\u0000L\u0000i\u0000o\u0000n\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0016\u0010\u0001\u0000&\u0000+\u000f\u0001\u000e\r\f\u000b\u0001\u0001\n\t\u0001\u0001\u0001\u0001\b\u0007\u0006\u0005\u0001\u0010\u0000\u0000\u0010\u0001\u0000\u0014\u0004\u0003\u0002\u0001\u0000\u000b\u0004\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u000b\u0003\u0000\u00120\u0000\u0007baseurl\u0000\u0007baseURL\u000b\u0002\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\u000b\u0001\u0000\u00180\u0000\nstatusdesc\u0000\nstatusDesc\u000b\u0000\u0000(0\u0000\u0012status_lyric_exist\u0000\u0012STATUS_LYRIC_EXIST\u000b\u0000,0\u0000\u0014status_lyric_success\u0000\u0014STATUS_LYRIC_SUCCESS\u000b\u0000&0\u0000\u0011status_lyric_fail\u0000\u0011STATUS_LYRIC_FAIL\u000b\u000020\u0000\u0017status_lyric_unselected\u0000\u0017STATUS_LYRIC_UNSELECTED\u000b\u0000\t0\u0000\u0005growl\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\u000b\u0000\u000f0\u0000\u000bthis_artist\u0000\u0000\u000b\u0000\u000e0\u0000\nthis_title\u0000\u0000\u000b\u0000\u000e0\u0000\nthis_lyric\u0000\u0000\u000b\u0000\u00100\u0000\ffetch_status\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\n\u000f\u0000\b\u000bboovtrue\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0004\u000e\u0001\u0000\u0004\u0000\u00006\u0000:\u0000>\u0000A\u0003\u000e\u0000\u0001\u0003\r\u0000\u0002\u0003\f\u0000\u0003\u0003\u000b\u0000\u0004\u000e\u0001\u0000\u0004\u000f\u0000h\u0000\u0000\u0001\u000b\u0000\t0\u0000\u0005growl\u0000\u0000\u0010\u0001\u0000\u0003\u0001\u0001\u0001\u0010\u0001\u0000\f\u0001\u0000&\u0000+\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\n\u000b\u0000\u00180\u0000\nscriptname\u0000\nscriptName\u000b\u0000\u00120\u0000\u0007baseurl\u0000\u0007baseURL\u000b\u0000 0\u0000\u000eisgrowlrunning\u0000\u000eisGrowlRunning\u000b\u0000\u00180\u0000\nstatusdesc\u0000\nstatusDesc\u000b\u0000(0\u0000\u0012status_lyric_exist\u0000\u0012STATUS_LYRIC_EXIST\u000b\u0000,0\u0000\u0014status_lyric_success\u0000\u0014STATUS_LYRIC_SUCCESS\u000b\u0000&0\u0000\u0011status_lyric_fail\u0000\u0011STATUS_LYRIC_FAIL\u000b\u000020\u0000\u0017status_lyric_unselected\u0000\u0017STATUS_LYRIC_UNSELECTED\u000b\u0000\t0\u0000\u0005growl\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\b\u000bboovtrue\u0003\u0000\u0001\u0003\u0000\u0002\u0003\u0000\u0003\u0003\u0000\u0004\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001b\u0001\u0002\u0001\u0000\u0002\u0000Q\u0001\u0002\u0001\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000)\u0000c\u0001\u0000a\u0001\u0000\u0000\u0001G\u0001I\u0001V\u0001X\u0001\u0001\n\u0000\u0004\nprcs\u000e\u0001\u0000\u0000\u0013\n\u0000\u0004\nbnid\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nsele\u000b\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\n\u0000\u0004\ncobj\u000b\u0000\u00050\u0000\u0001k\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00140\u0000\bthetrack\u0000\btheTrack\n\u0000\u0004\npArt\u000b\u0000\u000f0\u0000\u000bthis_artist\u0000\u0000\n\u0000\u0004\npnam\u000b\u0000\u000e0\u0000\nthis_title\u0000\u0000\n\u0000\u0004\npLyr\u000b\u0000\u000e0\u0000\nthis_lyric\u0000\u0000\u000b\u0000\u00100\u0000\ffetch_status\u0000\u0000\n\u0000\u0004\nleng\u000b\u0000\u001a0\u0000\u000brequestdata\u0000\u000brequestData\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00180\u0000\nsonglyrics\u0000\nsongLyrics\n\u0000\u0004\nret \n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\n\u0000\u0004\ndisp\n\u0000\u0004\ngivu\u0003\u0000\u0005\n\u0000\u0004\nappr\u0003\u0000\n\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0001c\u0012\u0000\u001a*-[,\\Z81j\f\u0000\u0005j\u0002Ec\u0000\u0001\u0000\u0002UO\u0012\u0001A*,jv\u0000\u001d\u0000\u001db\u0000\u0001\u0000\b\u0012\u0000\u000e*b\u0000\u0001\u0000\u0007m+\u0000\nUOh\u000fY\u0000\u0003hO*,,j\f\u0000\u0005EOkEO\u0017\u0000hZ*,\/EO,EE`\u0000\u0010Oa\u0000\u0011,EE`\u0000\u0012Oa\u0000\u0013,EE`\u0000\u0014Ob\u0000\u0001\u0000\u0006E`\u0000\u0015O_\u0000\u0014a\u0000\u0016,k\u0004\u001d\u0000Va\u0000\u0017_\u0000\u0012%a\u0000\u0018%_\u0000\u0010%E`\u0000\u0019Oa\u0000\u001a_\u0000\u0019%a\u0000\u001b%b\u0000\u0001\u0000\u0001%j\f\u0000\u001cE`\u0000\u001dO_\u0000\u001da\u0000\u0016,k\u0002\u001d\u0000\u0018_\u0000\u001da\u0000\u0013,FOb\u0000\u0001\u0000\u0005E`\u0000\u0015Y\u0000\u0003hY\u0000\u000bb\u0000\u0001\u0000\u0004E`\u0000\u0015Ob\u0000\u0001\u0000\b\u0012\u0000\u0010*_\u0000\u0010_\u0000\u0012_\u0000\u0015m+\u0000\nUOk\u001eEO\u0002\u001d\u0000\u0006\u0016Y\u0000\u0003h[OY7Ob\u0000\u0001\u0000\u0002f\u0000\u001d\u00000_\u0000\u001ea\u0000\u001f%a\u0000 a\u0000!kva\u0000\"ka\u0000#ka\u0000$a\u0000%a\u0000&b\u0000\u0001\u0000\u0000a\u0000'\f\u0000(Y\u0000\u0003hU\u000f\u0010\u0001\u0000\u0001\u000b\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\u000e\u0001\u0000\u0007\u0010\u0000j\u0001\u0001\u000b\u0000\u001a0\u0000\u000bgrowlnotify\u0000\u000bgrowlNotify\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\n0\u0000\u0006artist\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u000b\u0000\n0\u0000\u0006status\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0007\u000b\u0000\n0\u0000\u0006artist\u0000\u0000\u000b\u0000\t0\u0000\u0005title\u0000\u0000\u000b\u0000\n0\u0000\u0006status\u0000\u0000\u000b\u0000\r0\u0000\tthe_title\u0000\u0000\u000b\u0000\f0\u0000\bthe_desc\u0000\u0000\u000b\u0000,0\u0000\u0014allnotificationslist\u0000\u0014allNotificationsList\u000b\u000040\u0000\u0018enablednotificationslist\u0000\u0018enabledNotificationsList\u0010\u0001\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncapp\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncobj\n\u0000\u0004\nappl\n\u0000\u0004\nanot\n\u0000\u0004\ndnot\n\u0000\u0004\niapp\u0003\u0000\b\n\u0000\u0018.registernull\u0000\u0000null\n\u0000\u0004\nname\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u0000b\u0000\u0002\u0000\u0002f\u0000\u001d\u0000\u0007h\u000fY\u0000\u0003hO)0\u0012\u0000r\u0000\u001d\u0000\bEY\u0000\u0003hOEO\u0001\u001d\u0000\f%%EY\u0000\u0003hOb\u0000\u0002\u0000\u0003\/EOb\u0000\u0002\u0000\u0000kvEOb\u0000\u0002\u0000\u0000kvEO*b\u0000\u0002\u0000\u0000\f\u0000\u000eO*b\u0000\u0002\u0000\u0000a\u0000\u0010a\u0000\u0011b\u0000\u0002\u0000\u0000\f\u0000\u0012OPU\u000f\u0003\n\u0000\u0001\u0003\t\u0000\u0002\u000e\u0001\u0000\u0001\u0014\u0001\u000e\u0001\u0000\u0004\u0019\u0001\u000e\u0001\u0000\u0004\u0019\u0001\u000e\u0001\u0000\u0004\u0019\u0001\n\u0000\u0004\ncSrc\u0003\u0000J\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncUsP\u0003!B\n\u0000\b\u000bkfrmID \n\u0000\u0004\ncFlT\u0003!R\n\u0000\b\u000bkfrmID \u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006hY9\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0004Rl\u0014\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0001r~NPZNN*Q[\u0000 R+N`\u000eNHb\u0011N\rt\u0006\u0000\rS\ua241O`N_N\u0000h7v[\u0000\rb\u0011a?a\u000fY)mmw\u0490O`S\u0000\rb\u0011wSN\u0000R\u0007N\r[f\u0013\u0000\rb\u0011v_N\u0000vn)N`g\r]\u0000\rg\u0000`\u0015O`_q6e>_\u0003\u0000\r\u0000\rr1w\u001fv\u0000Rl\u0014\u0000 geb[mA\u0000\u001a\u0000\rS\ua241O`N\u0000N*w<y^[\u0000 b\u0011vr1\\1g\ta\u000fNI\u0000\rb\u0011N\u0000Rl\u0014\u0000 SvOO\u001aW(N\u0000w\u0000\rNonbc$b\u0011a\u001fO`\u0000\re>W(b\u0011bK_\u00d1\u0000 O`vw\u001f_\u0000\r\u0000\rYgb\u0011vWZ_:N`'\u0000 O\u001aN\r\\\u000f_O$[NO`\u0000\rO`N\rn)gc\u0411\u0000\rb\u0011}q6_Y*`%\u0000 f[`\u0015\u0019O`\u0003\b\u0000\u0001\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0005\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"acc8f3bba9d56463f8409c498fedf0bd403bc212","subject":"Update URLs that open at the office","message":"Update URLs that open at the office\n","repos":"smathson\/dotfiles","old_file":"applescripts\/open_chrome_tabs.applescript","new_file":"applescripts\/open_chrome_tabs.applescript","new_contents":"set myTabs to {\"https:\/\/github.com\/search?utf8=%E2%9C%93&q=assignee%3Apalcu+state%3Aopen&type=Issues&ref=searchresults\", \"https:\/\/mail.google.com\/mail\/u\/1\/?shva=1#inbox\", \"https:\/\/drive.google.com\/a\/hootsuite.com\/#folders\/0BwuFsHJDxJWPYmxXQ1VQVlN6T2M\"}\ntell application \"Google Chrome\"\n\tactivate\n\trepeat with i in myTabs\n\t\topen location i\n\tend repeat\nend tell\n","old_contents":"set myTabs to {\"http:\/\/app.getsentry.com\/\", \"http:\/\/github.com\/uberVU\/thehole\/issues\/assigned\/palcu?direction=desc&labels=&milestone=&page=1&sort=updated&state=open\/\", \"https:\/\/mail.google.com\/mail\/u\/1\/?shva=1#inbox\", \"https:\/\/drive.google.com\/a\/hootsuite.com\/#folders\/0BwuFsHJDxJWPYmxXQ1VQVlN6T2M\"}\ntell application \"Google Chrome\"\n\tactivate\n\trepeat with i in myTabs\n\t\topen location i\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"49b7983a514681e35758acb1cece5b9974335b47","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6be5d3e17c8c76cde598e8fd5e274e128e0f74cd","subject":"Only save state if writing to URL log file","message":"Only save state if writing to URL log file\n\nDon't save category selection to preferences file if the \"Edit Log\"\nbutton was clicked instead of saving the URL info.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\n--\n-- Append or edit the log file\n--\nif btn_pressed is last item of b then\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n--\n-- Save category label to use as default for next run\n--\nset last_main_label to split_text(this_label, \":\")'s first item\n--return {last_main_label, this_label} -- :DEBUG:\ntell settings_model\n\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\tend if\n\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\twrite_pref(\"lastFullCategory\", this_label)\n\tend if\nend tell\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"fd5e2b9ebda4310a35c783bd769862f7aa34182f","subject":"Add preference for file edit warnings","message":"Add preference for file edit warnings\n\nStill need to add a UI for resetting the warning once it's been\ndisabled.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\ton disable_file_edit_warning()\n\t\t\tset msg to my class & \".disable_file_edit_warning(): TODO\"\n\t\t\tmy debug_log(1, msg)\n\t\t\tdisplay dialog msg with title \"TODO\" buttons {\"OK\"} default button 1\n\t\tend disable_file_edit_warning\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's disable_file_edit_warning()\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"736389519e1f7940331eaa75b82c66484eb95d09","subject":"Change website button title in About dialog","message":"Change website button title in About dialog\n\nAlthough most of the time a button title should include a verb, the few\nexamples I found for buttons and menu items for website links were\neither just \"Website\" or \"_AppName_ Website\".\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-06\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-06\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"bd3e233694ced1cd0ca98656347c79512a039160","subject":"Fix PageLogSettings.set_item() writing pref","message":"Fix PageLogSettings.set_item() writing pref\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\ton disable_file_edit_warning()\n\t\t\tset msg to my class & \".disable_file_edit_warning(): TODO\"\n\t\t\tmy debug_log(1, msg)\n\t\t\tdisplay dialog msg with title \"TODO\" buttons {\"OK\"} default button 1\n\t\tend disable_file_edit_warning\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's disable_file_edit_warning()\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-26\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\ton disable_file_edit_warning()\n\t\t\tset msg to my class & \".disable_file_edit_warning(): TODO\"\n\t\t\tmy debug_log(1, msg)\n\t\t\tdisplay dialog msg with title \"TODO\" buttons {\"OK\"} default button 1\n\t\tend disable_file_edit_warning\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning()\n\t\t\tmy debug_log(1, my class & \".disable_warning(): TODO\")\n\t\t\t_model's disable_file_edit_warning()\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't show this warning again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"dde829df51634e270d3d58f8efe95515f09357b4","subject":"Fix open command in FileApp class","message":"Fix open command in FileApp class\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-09\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-06\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c1e215c1a5a12b75201c31bae776663c4c53a898","subject":"Home-brew install link has changed \u2014 oops!","message":"Home-brew install link has changed \u2014 oops!\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"fb25e02c377fd34dc2d3a604476e9e359ae4d9f3","subject":"Needed a short 0.1 second delay for spotlight to register","message":"Needed a short 0.1 second delay for spotlight to register\n\nbegan thinking that maybe we should use an osascript to open the terminal directly.","repos":"gskielian\/Jarvis","old_file":"Jarvis.applescript","new_file":"Jarvis.applescript","new_contents":"tell application \"System Events\" to key code 49 using {command down}\ndelay 0.3\ntell application \"System Events\" to keystroke \"terminal\"\ndelay 0.1\ntell application \"System Events\" to key code 36\ndelay 0.3\ntell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\ntell application \"System Events\" to key code 123\n\ntell application \"System Events\" to key code 63\ntell application \"System Events\" to key code 63\ndelay 4\ntell application \"System Events\" to tell process \"DictationIM\"\n\tclick button 1\nend tell\ndelay 1.2\ntell application \"System Events\" to key code 36\n","old_contents":"tell application \"System Events\" to key code 49 using {command down}\ndelay 0.3\ntell application \"System Events\" to keystroke \"terminal\"\ntell application \"System Events\" to key code 36\ndelay 0.3\ntell application \"System Events\" to keystroke \".\/jarvis.sh \\\"\\\"\"\ntell application \"System Events\" to key code 123\n\ntell application \"System Events\" to key code 63\ntell application \"System Events\" to key code 63\ndelay 4\ntell application \"System Events\" to tell process \"DictationIM\"\n\tclick button 1\nend tell\ndelay 1.2\ntell application \"System Events\" to key code 36\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"16c73ce81d5f0c34defbd4b7ef012818c1c405c2","subject":"Added progress message for filetype determination (otherwise there's not progress after first clicking concatenate)","message":"Added progress message for filetype determination (otherwise there's not progress after first clicking concatenate)\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize the error variables\n set errorHappened to false\n set notaac to false\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end repeat\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files.\"\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined.\"\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding.\"\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize the error variables\n set errorHappened to false\n set notaac to false\n -- Check if the audio files are all aac \/ mp4a\n repeat with theIndex in the_index\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end repeat\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files.\"\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined.\"\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding.\"\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"288aada0f63b206268a0da4d195aeb769ee9edaf","subject":"Removed old copy verse script","message":"Removed old copy verse script\n","repos":"caleb531\/youversion-suggest,caleb531\/youversion-suggest","old_file":"copy_bible_reference.applescript","new_file":"copy_bible_reference.applescript","new_contents":"","old_contents":"-- replace HTML entity with corresponding character\non replaceEntity(html, entityName, entityChar)\n\tset AppleScript's text item delimiters to (\"&#\" & entityName & \";\")\n\tset htmlItems to text items of html\n\tset AppleScript's text item delimiters to entityChar\n\treturn htmlItems as text\nend replaceEntity\n\n-- replace all HTML entities with their corresponding characters\non replaceEntities(html)\n\tset html to replaceEntity(html, \"8211\", \"\u2013\")\n\tset html to replaceEntity(html, \"8212\", \"\u2014\")\n\tset html to replaceEntity(html, \"8216\", \"\u2018\")\n\tset html to replaceEntity(html, \"8217\", \"\u2019\")\n\tset html to replaceEntity(html, \"8220\", \"\u201c\")\n\tset html to replaceEntity(html, \"8221\", \"\u201d\")\n\treturn html\nend replaceEntities\n\n-- retrieve query string\nset query to \"{query}\"\n-- is query was given\nif query is not \"\" then\n\t-- copy verse to clipboard\n\tset the clipboard to replaceEntities(query)\n\t-- play completion sound\n\tdo shell script \"afplay '\/System\/Library\/Sounds\/Hero.aiff'\"\nelse\n\t-- play error sound\n\tdo shell script \"afplay '\/System\/Library\/Sounds\/Basso.aiff'\"\nend if","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"96de2530f5a16698e08b5e9708ac0f2effe7d514","subject":"Remove clean_repos","message":"Remove clean_repos\n","repos":"smathson\/dotfiles","old_file":"applescripts\/quit_after_work.applescript","new_file":"applescripts\/quit_after_work.applescript","new_contents":"set current_path to POSIX path of ((path to me as text) & \"::\")\n\n-- get work apps\nset appList to {}\nset myApps to paragraphs of (read current_path & \"apps.txt\")\nrepeat with nextLine in myApps\n\tif length of nextLine is greater than 0 then\n\t\tcopy (nextLine as string) to the end of appList\n\tend if\nend repeat\n\n-- close work apps\nrepeat with i in appList\n\ttell application i\n\t\tquit\n\tend tell\nend repeat\n\n-- run other scripts from folder\nset scriptList to {\"halt_vagrant\"}\nrepeat with i in scriptList\n\trun script current_path & i & \".applescript\"\nend repeat\n","old_contents":"set current_path to POSIX path of ((path to me as text) & \"::\")\n\n-- get work apps\nset appList to {}\nset myApps to paragraphs of (read current_path & \"apps.txt\")\nrepeat with nextLine in myApps\n\tif length of nextLine is greater than 0 then\n\t\tcopy (nextLine as string) to the end of appList\n\tend if\nend repeat\n\n-- close work apps\nrepeat with i in appList\n\ttell application i\n\t\tquit\n\tend tell\nend repeat\n\n-- run other scripts from folder\nset scriptList to {\"clean_repos\", \"halt_vagrant\"}\nrepeat with i in scriptList\n\trun script current_path & i & \".applescript\"\nend repeat\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8518ad440a281f4f90abac80024cbebd881d1782","subject":"Give more verbose errors.","message":"Give more verbose errors.\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n delay 0.2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n set the clipboard to tocText\n display dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & therror & \": \" & error_number & \" The TOC has been copied to the clipboard instead.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files.\"\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined.\"\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding.\"\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/cat.chapters.txt\")\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed.\"\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n if tocToLyricsValue is 1 then\n set lyrics of theAddedTrack to tocText\n end if\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"cf8622b0f042801ab8692e2eb43371dff3ebdb60","subject":"Move script logic into hermes_status()","message":"Move script logic into hermes_status()\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\non hermes_status()\n\tglobal json\n\tset reply to json's createDict()\n\tif is_running(\"Hermes\") then\n\t\treply's setkv(\"running\", true)\n\t\tset hermesInfo to json's createDict()\n--\t\tset hermesStations to json's createDict()\n\t\ttell application \"Hermes\"\n\t\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\t\thermesInfo's setkv(\"volume\", playback volume)\n\n--\t\t\tXXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\t\trepeat with theStation in stations\n--\t\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\t\tend repeat\n\n\t\t\thermesInfo's setkv(\"title\", current song's title)\n\t\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\t\thermesInfo's setkv(\"album\", current song's album)\n\t\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\t\tend tell\n--\t\thermesInfo's setkv(\"stations\", hermesStations)\n\t\treply's setkv(\"info\", hermesInfo)\n\telse\n\t\treply's setkv(\"running\", false)\n\tend if\n\treply's setkv(\"time\", (do shell script \"date -u +%s\"))\n\treturn reply's toJson()\nend hermes_status\n\nreturn hermes_status()\n","old_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n--\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n--\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreply's setkv(\"time\", (do shell script \"date -u +%s\"))\nreturn reply's toJson()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6b8c78dd7015e0b4c5336c2bd5f500af9d9fccad","subject":"dos2unix galore","message":"dos2unix galore\n","repos":"rmehner\/workflow","old_file":"skype-to-dnd.applescript","new_file":"skype-to-dnd.applescript","new_contents":"tell application \"System Events\" to set SkypeIsRunning to (count of (every process whose name is \"Skype\")) > 0\nif SkypeIsRunning then\n tell application \"Skype\"\n send command \"SET USERSTATUS DND\" script name \"SETSKYPESTATUSTODND\"\n end tell\nend if\n","old_contents":"tell application \"System Events\" to set SkypeIsRunning to (count of (every process whose name is \"Skype\")) > 0\rif SkypeIsRunning then\r tell application \"Skype\"\r send command \"SET USERSTATUS DND\" script name \"SETSKYPESTATUSTODND\"\r end tell\rend if\r","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"00f7254f4a146246e0f4edacc2bf02bb2fff52a1","subject":"Lots of internal improvements. Better error handling. Hopefully solving issue #5","message":"Lots of internal improvements. Better error handling. Hopefully solving issue #5\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign a result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\nrepeat\n\ttry\n\t\t-- Checking if Spotify is running, playing, and if current track is an advertisement.\n\t\tif (isRunning() and isPlaying() and isAnAd()) then\n\t\t\ttry\n\t\t\t\t-- Mute Spotify.\n\t\t\t\tmute()\n\t\t\tend try\n\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\tdelay untilTheEndOfTrack()\n\t\t\t\n\t\t\trepeat\n\t\t\t\ttry\n\t\t\t\t\t-- Check if current track is an ad. Or if Spotify was paused during an advertisement.\n\t\t\t\t\tif (isAnAd()) then\n\t\t\t\t\t\t-- Delay until the end of an ad + 1 sec. \n\t\t\t\t\t\t-- If Spotify was paused, or there is a second ad, this loop will continue to repeat.\n\t\t\t\t\t\tdelay untilTheEndOfTrack()\n\t\t\t\t\telse\n\t\t\t\t\t\t-- If there's no more ads, unmute and exit the loop.\n\t\t\t\t\t\tunmute()\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend if\n\tend try\n\t-- This is how fast we are polling Spotify. \n\t-- The only speed at which you will hear no sounds passing through.\n\t-- Fortunately, combined with the added load on Spotify, the CPU usage stays well below 1% even on an old dual-core 3.6 GHz processor.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\tset currentVolume to sound volume\n\t\t\t-- This is the only way possible to mute Spotify during an advertisement. Otherwise it pauses when you mute the sound.\n\t\t\tpause\n\t\t\tset sound volume to 0\n\t\t\tplay\n\t\tend tell\n\tend try\n\treturn\nend mute\n\non unmute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend tell\n\tend try\n\treturn\nend unmute\n\non isAnAd()\n\tlocal currentTrackPopularity, currentTrackDuration\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\tset currentTrackDuration to duration of current track\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\tif (currentTrackPopularity = 0 and currentTrackDuration < 40) then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isAnAd\n\non untilTheEndOfTrack()\n\tlocal currentTrackDuration, currentTrackPosition\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\tset currentTrackDuration to duration of current track\n\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\tset currentTrackPosition to player position\n\t\tend tell\n\ton error\n\t\treturn\n\tend try\n\treturn currentTrackDuration - currentTrackPosition + 1.5\nend untilTheEndOfTrack\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\tset playerState to player state\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\tif playerState = playing then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\tif spotifyProcesses 0 then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isRunning\n\non isInLoginItems(appName)\n\tlocal applicationName, allLoginItems\n\tset applicationName to appName\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\"\n\t\t\tset allLoginItems to name of every login item as string\n\t\tend tell\n\ton error\n\t\treturn false\n\tend try\n\t-- Check if inputted app is in there.\n\tif applicationName is in allLoginItems then\n\t\treturn true\n\telse\n\t\treturn false\n\tend if\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal applicationName, applicationPath, posixAppPath\n\tset applicationName to appName\n\t-- Translate a supplied application path to a POSIX standard (e.g. \"\/Applications\/SpotiFree.app\" to \":Applications:SpotiFree.app\").\n\tset applicationPath to POSIX path of alias appPath\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- Add inputted app to the Login Items.\n\t\t\tmake login item at end with properties {path:applicationPath, hidden:true}\n\t\tend tell\n\ton error\n\t\treturn\n\tend try\nend addToLoginItems","old_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign a result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\nrepeat\n\ttry\n\t\t-- Checking if Spotify is running and playing right now.\n\t\tif (isRunning() and isPlaying()) then\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad + 1 sec. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ton error number errorNumber\n\t\t\t\t\t\t\t\t-- Checking if Spotify returns \"Cant get current track.\" error. It's being thrown when there's no track after an ad.\n\t\t\t\t\t\t\t\t-- Happens, for instance, when an ad has played after the last song on the playlist.\n\t\t\t\t\t\t\t\tif (errorNumber = -1728) then\n\t\t\t\t\t\t\t\t\t-- If it is, unmute Spotify and exit the loop.\n\t\t\t\t\t\t\t\t\tmy unmute(currentVolume)\n\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- Check if current track is an ad. Or if Spotify was paused during an advertisement.\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\t\t\t\t-- Delay until the end of an ad + 1 sec. \n\t\t\t\t\t\t\t-- If Spotify was paused, or there is a second ad, this loop will continue to repeat.\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\t-- If there's no more ads, unmute and exit the loop.\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\tend if\n\t\tend if\n\tend try\n\t-- This is how fast we are polling Spotify. \n\t-- The only speed at which you will hear no sounds passing through.\n\t-- Fortunately, combined with the added load on Spotify, the CPU usage stays well below 1% even on an old dual-core 3.6 GHz processor.\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- This is the only way possible to mute Spotify during an advertisement. Otherwise it pauses when you mute the sound.\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\tlocal currentVolume\n\tset currentVolume to volume\n\t\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level supplied to the parameter.\n\t\t\tset sound volume to currentVolume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(popularity, duration)\n\tlocal trackPopularity, trackDuration\n\tset trackPopularity to popularity\n\tset trackDuration to duration\n\t\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal applicationName, allLoginItems\n\tset applicationName to appName\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif applicationName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal applicationName, applicationPath, posixAppPath\n\tset applicationName to appName\n\tset applicationPath to appPath\n\t\n\ttry\n\t\t-- Translate a supplied application path to a POSIX standard (e.g. \"\/Applications\/SpotiFree.app\" to \":Applications:SpotiFree.app\").\n\t\tset posixAppPath to POSIX path of alias applicationPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1f29e30cab9863cf3d75a6f846ca99f13b36b5df","subject":"updated fmObjTrans to 4.0.3 to remove unneeded whitespace around CDATA inside Calculation tags","message":"updated fmObjTrans to 4.0.3 to remove unneeded whitespace around CDATA inside Calculation tags\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.2, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: sample chunk: \" & (ASCII number (text 1926 thru 1926 of prettyXML)))\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.2, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999\" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refueses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"e1eb250c339880b78acf0a9f174a3ad4cc0b8e64","subject":"adding a second newline to the MacOS uninstallers","message":"adding a second newline to the MacOS uninstallers\n","repos":"sontek\/rethinkdb,matthaywardwebdesign\/rethinkdb,sebadiaz\/rethinkdb,bpradipt\/rethinkdb,scripni\/rethinkdb,urandu\/rethinkdb,wojons\/rethinkdb,dparnell\/rethinkdb,RubenKelevra\/rethinkdb,mcanthony\/rethinkdb,ayumilong\/rethinkdb,mquandalle\/rethinkdb,wkennington\/rethinkdb,jesseditson\/rethinkdb,wujf\/rethinkdb,elkingtonmcb\/rethinkdb,scripni\/rethinkdb,scripni\/rethinkdb,AntouanK\/rethinkdb,bchavez\/rethinkdb,niieani\/rethinkdb,dparnell\/rethinkdb,ajose01\/rethinkdb,wojons\/rethinkdb,niieani\/rethinkdb,elkingtonmcb\/rethinkdb,bchavez\/rethinkdb,alash3al\/rethinkdb,spblightadv\/rethinkdb,robertjpayne\/rethinkdb,victorbriz\/rethinkdb,sbusso\/rethinkdb,eliangidoni\/rethinkdb,KSanthanam\/rethinkdb,marshall007\/rethinkdb,grandquista\/rethinkdb,sebadiaz\/rethinkdb,bpradipt\/rethinkdb,rrampage\/rethinkdb,wkennington\/rethinkdb,jmptrader\/rethinkdb,KSanthanam\/rethinkdb,eliangidoni\/rethinkdb,yaolinz\/rethinkdb,yaolinz\/rethinkdb,4talesa\/rethinkdb,niieani\/rethinkdb,gavioto\/rethinkdb,matthaywardwebdesign\/rethinkdb,rrampage\/rethinkdb,JackieXie168\/rethinkdb,sbusso\/rethinkdb,spblightadv\/rethinkdb,yakovenkodenis\/rethinkdb,KSanthanam\/rethinkdb,victorbriz\/rethinkdb,rrampage\/rethinkdb,losywee\/rethinkdb,losywee\/rethinkdb,4talesa\/rethinkdb,gavioto\/rethinkdb,elkingtonmcb\/rethinkdb,sebadiaz\/rethinkdb,KSanthanam\/rethinkdb,wujf\/rethinkdb,Qinusty\/rethinkdb,gdi2290\/rethinkdb,greyhwndz\/rethinkdb,jesseditson\/rethinkdb,captainpete\/rethinkdb,robertjpayne\/rethinkdb,AntouanK\/rethinkdb,elkingtonmcb\/rethinkdb,grandquista\/rethinkdb,mquandalle\/rethinkdb,wkennington\/rethinkdb,pap\/rethinkdb,sontek\/rethinkdb,yakovenkodenis\/rethinkdb,pap\/rethinkdb,RubenKelevra\/rethinkdb,grandquista\/rethinkdb,Qinusty\/rethinkdb,captainpete\/rethinkdb,robertjpayne\/rethinkdb,jmptrader\/rethinkdb,Qinusty\/rethinkdb,bchavez\/rethinkdb,yakovenkodenis\/rethinkdb,grandquista\/rethinkdb,yakovenkodenis\/rethinkdb,losywee\/rethinkdb,urandu\/rethinkdb,rrampage\/rethinkdb,ajose01\/rethinkdb,tempbottle\/rethinkdb,scripni\/rethinkdb,mbroadst\/rethinkdb,mbroadst\/rethinkdb,AntouanK\/rethinkdb,jmptrader\/rethinkdb,grandquista\/rethinkdb,bpradipt\/rethinkdb,jesseditson\/rethinkdb,sontek\/rethinkdb,tempbottle\/rethinkdb,4talesa\/rethinkdb,JackieXie168\/rethinkdb,jesseditson\/rethinkdb,JackieXie168\/rethinkdb,mbroadst\/rethinkdb,mquandalle\/rethinkdb,JackieXie168\/rethinkdb,mcanthony\/rethinkdb,yakovenkodenis\/rethinkdb,mquandalle\/rethinkdb,marshall007\/rethinkdb,ayumilong\/rethinkdb,rrampage\/rethinkdb,gavioto\/rethinkdb,lenstr\/rethinkdb,bpradipt\/rethinkdb,wojons\/rethinkdb,gdi2290\/rethinkdb,eliangidoni\/rethinkdb,bpradipt\/rethinkdb,grandquista\/rethinkdb,marshall007\/rethinkdb,Wilbeibi\/rethinkdb,dparnell\/rethinkdb,eliangidoni\/rethinkdb,mbroadst\/rethinkdb,robertjpayne\/rethinkdb,matthaywardwebdesign\/rethinkdb,jmptrader\/rethinkdb,eliangidoni\/rethinkdb,niieani\/rethinkdb,urandu\/rethinkdb,pap\/rethinkdb,victorbriz\/rethinkdb,tempbottle\/rethinkdb,bchavez\/rethinkdb,4talesa\/rethinkdb,scripni\/rethinkdb,RubenKelevra\/rethinkdb,catroot\/rethinkdb,mbroadst\/rethinkdb,elkingtonmcb\/rethinkdb,tempbottle\/rethinkdb,wojons\/rethinkdb,jesseditson\/rethinkdb,wujf\/rethinkdb,jmptrader\/rethinkdb,sebadiaz\/rethinkdb,RubenKelevra\/rethinkdb,lenstr\/rethinkdb,catroot\/rethinkdb,sebadiaz\/rethinkdb,spblightadv\/rethinkdb,matthaywardwebdesign\/rethinkdb,rrampage\/rethinkdb,dparnell\/rethinkdb,victorbriz\/rethinkdb,Wilbeibi\/rethinkdb,yaolinz\/rethinkdb,Wilbeibi\/rethinkdb,victorbriz\/rethinkdb,eliangidoni\/rethinkdb,tempbottle\/rethinkdb,wojons\/rethinkdb,pap\/rethinkdb,grandquista\/rethinkdb,sbusso\/rethinkdb,spblightadv\/rethinkdb,jmptrader\/rethinkdb,marshall007\/rethinkdb,urandu\/rethinkdb,alash3al\/rethinkdb,yaolinz\/rethinkdb,bchavez\/rethinkdb,mbroadst\/rethinkdb,matthaywardwebdesign\/rethinkdb,ajose01\/rethinkdb,yaolinz\/rethinkdb,captainpete\/rethinkdb,mquandalle\/rethinkdb,gavioto\/rethinkdb,spblightadv\/rethinkdb,gavioto\/rethinkdb,alash3al\/rethinkdb,scripni\/rethinkdb,robertjpayne\/rethinkdb,bpradipt\/rethinkdb,mcanthony\/rethinkdb,mcanthony\/rethinkdb,sontek\/rethinkdb,niieani\/rethinkdb,sebadiaz\/rethinkdb,RubenKelevra\/rethinkdb,spblightadv\/rethinkdb,scripni\/rethinkdb,greyhwndz\/rethinkdb,mcanthony\/rethinkdb,alash3al\/rethinkdb,AntouanK\/rethinkdb,lenstr\/rethinkdb,Qinusty\/rethinkdb,gdi2290\/rethinkdb,greyhwndz\/rethinkdb,ayumilong\/rethinkdb,KSanthanam\/rethinkdb,yakovenkodenis\/rethinkdb,catroot\/rethinkdb,4talesa\/rethinkdb,rrampage\/rethinkdb,catroot\/rethinkdb,marshall007\/rethinkdb,ajose01\/rethinkdb,KSanthanam\/rethinkdb,catroot\/rethinkdb,JackieXie168\/rethinkdb,matthaywardwebdesign\/rethinkdb,wujf\/rethinkdb,elkingtonmcb\/rethinkdb,captainpete\/rethinkdb,4talesa\/rethinkdb,sebadiaz\/rethinkdb,grandquista\/rethinkdb,grandquista\/rethinkdb,ayumilong\/rethinkdb,jesseditson\/rethinkdb,greyhwndz\/rethinkdb,dparnell\/rethinkdb,dparnell\/rethinkdb,AntouanK\/rethinkdb,AntouanK\/rethinkdb,losywee\/rethinkdb,losywee\/rethinkdb,bchavez\/rethinkdb,greyhwndz\/rethinkdb,Wilbeibi\/rethinkdb,wojons\/rethinkdb,sbusso\/rethinkdb,greyhwndz\/rethinkdb,victorbriz\/rethinkdb,sontek\/rethinkdb,wojons\/rethinkdb,gavioto\/rethinkdb,wkennington\/rethinkdb,mbroadst\/rethinkdb,4talesa\/rethinkdb,mquandalle\/rethinkdb,sbusso\/rethinkdb,niieani\/rethinkdb,lenstr\/rethinkdb,ajose01\/rethinkdb,lenstr\/rethinkdb,sontek\/rethinkdb,JackieXie168\/rethinkdb,captainpete\/rethinkdb,yaolinz\/rethinkdb,urandu\/rethinkdb,dparnell\/rethinkdb,bchavez\/rethinkdb,catroot\/rethinkdb,wujf\/rethinkdb,losywee\/rethinkdb,AntouanK\/rethinkdb,elkingtonmcb\/rethinkdb,rrampage\/rethinkdb,marshall007\/rethinkdb,JackieXie168\/rethinkdb,gavioto\/rethinkdb,Qinusty\/rethinkdb,jesseditson\/rethinkdb,ayumilong\/rethinkdb,Qinusty\/rethinkdb,eliangidoni\/rethinkdb,eliangidoni\/rethinkdb,ayumilong\/rethinkdb,robertjpayne\/rethinkdb,ajose01\/rethinkdb,Wilbeibi\/rethinkdb,marshall007\/rethinkdb,4talesa\/rethinkdb,pap\/rethinkdb,yaolinz\/rethinkdb,ajose01\/rethinkdb,eliangidoni\/rethinkdb,ayumilong\/rethinkdb,greyhwndz\/rethinkdb,RubenKelevra\/rethinkdb,KSanthanam\/rethinkdb,losywee\/rethinkdb,urandu\/rethinkdb,pap\/rethinkdb,catroot\/rethinkdb,urandu\/rethinkdb,captainpete\/rethinkdb,pap\/rethinkdb,mquandalle\/rethinkdb,bchavez\/rethinkdb,sebadiaz\/rethinkdb,yakovenkodenis\/rethinkdb,robertjpayne\/rethinkdb,sontek\/rethinkdb,mcanthony\/rethinkdb,lenstr\/rethinkdb,greyhwndz\/rethinkdb,catroot\/rethinkdb,dparnell\/rethinkdb,Wilbeibi\/rethinkdb,sbusso\/rethinkdb,urandu\/rethinkdb,Qinusty\/rethinkdb,jesseditson\/rethinkdb,bpradipt\/rethinkdb,mbroadst\/rethinkdb,spblightadv\/rethinkdb,bpradipt\/rethinkdb,niieani\/rethinkdb,captainpete\/rethinkdb,robertjpayne\/rethinkdb,wkennington\/rethinkdb,sontek\/rethinkdb,yakovenkodenis\/rethinkdb,wujf\/rethinkdb,matthaywardwebdesign\/rethinkdb,alash3al\/rethinkdb,dparnell\/rethinkdb,wojons\/rethinkdb,lenstr\/rethinkdb,gdi2290\/rethinkdb,mquandalle\/rethinkdb,gdi2290\/rethinkdb,alash3al\/rethinkdb,niieani\/rethinkdb,mcanthony\/rethinkdb,scripni\/rethinkdb,Qinusty\/rethinkdb,ajose01\/rethinkdb,gavioto\/rethinkdb,gdi2290\/rethinkdb,wkennington\/rethinkdb,wkennington\/rethinkdb,JackieXie168\/rethinkdb,matthaywardwebdesign\/rethinkdb,jmptrader\/rethinkdb,JackieXie168\/rethinkdb,pap\/rethinkdb,robertjpayne\/rethinkdb,ayumilong\/rethinkdb,AntouanK\/rethinkdb,tempbottle\/rethinkdb,tempbottle\/rethinkdb,tempbottle\/rethinkdb,bchavez\/rethinkdb,Wilbeibi\/rethinkdb,jmptrader\/rethinkdb,lenstr\/rethinkdb,KSanthanam\/rethinkdb,yaolinz\/rethinkdb,alash3al\/rethinkdb,losywee\/rethinkdb,alash3al\/rethinkdb,Wilbeibi\/rethinkdb,wkennington\/rethinkdb,sbusso\/rethinkdb,victorbriz\/rethinkdb,RubenKelevra\/rethinkdb,gdi2290\/rethinkdb,marshall007\/rethinkdb,RubenKelevra\/rethinkdb,mbroadst\/rethinkdb,wujf\/rethinkdb,sbusso\/rethinkdb,elkingtonmcb\/rethinkdb,Qinusty\/rethinkdb,victorbriz\/rethinkdb,bpradipt\/rethinkdb,captainpete\/rethinkdb,mcanthony\/rethinkdb,spblightadv\/rethinkdb","old_file":"packaging\/osx\/uninstall.scpt","new_file":"packaging\/osx\/uninstall.scpt","new_contents":"-- check that a package version has been installed\nset packageIdentifier to \"\"\nrepeat with candidateIdentifier in {\"rethinkdb\", \"com.rethinkdb\", \"com.rethinkdb.server\"}\n\ttry\n\t\tdo shell script \"\/usr\/sbin\/pkgutil --files \" & candidateIdentifier\n\t\tset packageIdentifier to candidateIdentifier\n\t\texit repeat\n\tend try\nend repeat\n\nif packageIdentifier is \"\" then\n\t-- the package is not installed, check if the server is there\n\ttry\n\t\tdo shell script \"PATH=:\\\"$PATH:\/usr\/local\/bin\\\"; \/usr\/bin\/which rethinkdb\"\n\t\tdisplay alert \"Unable to uninstall\" message \"Your copy of RethinkDB was not installed using a Mac OS package: you may have installed RethinkDB using Homebrew or manually.\" & return & return & \"This uninstaller will not be able to remove your installation.\"\n\ton error\n\t\tdisplay alert \"Unable to uninstall\" message \"The RethinkDB package is not installed on this system.\"\n\tend try\nelse\n\t-- verify with the user\n\tset result to display alert \"Uninstall RethinkDB?\" message \"This will uninstall the RethinkDB binaries and support files from '\/usr\/local\/'.\" & return & return & \"Your data files will not be affected. You will be asked for your Administrator password.\" as warning buttons {\"Uninstall\", \"Cancel\"} default button \"Cancel\"\n\t\n\t-- run the uninstall\n\tif the button returned of result is \"Uninstall\" then\n\t\tdo shell script \"set -e; pkgutil --files \" & packageIdentifier & \" --only-files | while read LINE; do rm -f $LINE; done && pkgutil --files \" & packageIdentifier & \" --only-dirs | while read LINE; do rmdir $LINE; done && pkgutil --forget \" & packageIdentifier with administrator privileges\n\tend if\nend if\n","old_contents":"-- check that a package version has been installed\nset packageIdentifier to \"\"\nrepeat with candidateIdentifier in {\"rethinkdb\", \"com.rethinkdb\", \"com.rethinkdb.server\"}\n\ttry\n\t\tdo shell script \"\/usr\/sbin\/pkgutil --files \" & candidateIdentifier\n\t\tset packageIdentifier to candidateIdentifier\n\t\texit repeat\n\tend try\nend repeat\n\nif packageIdentifier is \"\" then\n\t-- the package is not installed, check if the server is there\n\ttry\n\t\tdo shell script \"PATH=:\\\"$PATH:\/usr\/local\/bin\\\"; \/usr\/bin\/which rethinkdb\"\n\t\tdisplay alert \"Unable to uninstall\" message \"Your copy of RethinkDB was not installed using a Mac OS package: you may have installed RethinkDB using Homebrew or manually.\" & return & \"This uninstaller will not be able to remove your installation.\"\n\ton error\n\t\tdisplay alert \"Unable to uninstall\" message \"The RethinkDB package is not installed on this system.\"\n\tend try\nelse\n\t-- verify with the user\n\tset result to display alert \"Uninstall RethinkDB?\" message \"This will uninstall the RethinkDB binaries and support files from '\/usr\/local\/'.\" & return & \"Your data files will not be affected. You will be asked for your Administrator password.\" as warning buttons {\"Uninstall\", \"Cancel\"} default button \"Cancel\"\n\t\n\t-- run the uninstall\n\tif the button returned of result is \"Uninstall\" then\n\t\tdo shell script \"set -e; pkgutil --files \" & packageIdentifier & \" --only-files | while read LINE; do rm -f $LINE; done && pkgutil --files \" & packageIdentifier & \" --only-dirs | while read LINE; do rmdir $LINE; done && pkgutil --forget \" & packageIdentifier with administrator privileges\n\tend if\nend if\n","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"5e6adcec7021954123c873040f1802a2f7727fcb","subject":"Fix error handling for missing browser data","message":"Fix error handling for missing browser data\n\nSome errors such as a missing URL weren't handled, resulting in a script\nerror. Those errors are now caught and handled with an error dialog.\n\nFirefox doesn't throw an error for a missing URL because doing a GUI\ncopy when nothing is selected doesn't actually copy anything and doesn't\nresult in an error because the old clipboard data is still there.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-06\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d0fc04949107552ad4ea8a8f4f296317b46bb12f","subject":"Fix pdf script","message":"Fix pdf script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat\n if ((value of menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled) = true)\n exit repeat\n end if\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n delay 2\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat\n if ((value of menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled) = true)\n exit repeat\n end if\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"30c210c5c933644724d2e5d41451afce54fabeb4","subject":"Windows","message":"Windows\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-1440x900.scpt","new_file":"scripts\/arrange-windows-for-1440x900.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000R\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000R\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000F\u0000J\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000J\u0000N\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000S\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000S\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0000\u000f\u0002\u0001\r\u0000\u0002\u0001\u000eU\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0001\u0002U\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000fS\r\u0001\u000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0010\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000\u0000R\u0003R\u0002\u0002\u0001\u0012\u0000\u0002\u0001\u0013Q\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000P\u0003P\u0001\u0002Q\u0000\u0000\u0002S\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0014O\r\u0001\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0015NM\r\u0001\u0015\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0016K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0019\u000e\u0001\u0019\u0000\u0001\u0001\u001a\u0011\u0001\u001a\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0018\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000J\u0003J\u0000\u000f\u0002\u0001\u001f\u0000\u0002\u0001 I\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000H\u0003H\u0000(\u0002I\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001!G\r\u0001!\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\"\u0002\u0001\"\u0000\u0002\u0001#\u0001$\r\u0001#\u0000\u0001m\u0000\u0000\u0000\u0000F\u0003F\u0002?\u0002\u0001$\u0000\u0002\u0001%E\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000D\u0003D\u0003Q\u0002E\u0000\u0000\u0002G\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002O\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006C\u0001&\u0001'\u0001(\u0001)\u0001*\u0001C\u0000\u0000\u0010\u0001&\u0000\u0004BA@?\u000bB\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\nA\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b@\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b?\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000e\u0001'\u0000\u0007\u0010>\u0000\b=<\u0001+\u0001,;\u000b>\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e=\u0000\u0002\u0004:\u0001-\u0003:\u0000\u0003\u000e\u0001-\u0000\u0003\u0000987\u000b9\u0000\f0\u0000\bapp_name\u0000\u0000\u000b8\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b7\u0000\f0\u0000\bwin_size\u0000\u0000\u0002<\u0000\u0000\u0010\u0001+\u0000\u0003654\u000b6\u0000\f0\u0000\bapp_name\u0000\u0000\u000b5\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b4\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001,\u0000\b32\u0000=10\/.-\n3\u0000\u0004\ncapp\n2\u0000\u0004\nprun\n1\u0000\u0004\nprcs\n0\u0000\u0004\ncobj\n\/\u0000\u0004\ncwin\n.\u0000\u0004\nposn\n-\u0000\u0004\nptsz\u0011;\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001(\u0000\u0007\u0010,\u0001.+*\u0001\/\u00010)\n,\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001.\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u00011\u0002\u00011\u0000\u0002\u0000@\u00012\u0002\u00012\u0000\u0002\u0000I\u00013\u0002\u00013\u0000\u0002\u0000T\u00014\u0002\u00014\u0000\u0002\u0000_\u00015\u0002\u00015\u0000\u0002\u0000j\u00016\u0002\u00016\u0000\u0002\u0000u\u00017\u0002\u00017\u0000\u0002\u0000\u00018\u0002\u00018\u0000\u0002\u0000\u00019\u0002\u00019\u0000\u0002\u0000\u0001:\u0002\u0001:\u0000\u0002\u0000\u0001;\u0002\u0001;\u0000\u0002\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000\u0001=\u0002\u0001=\u0000\u0002\u0000\u0001>\u0002\u0001>\u0000\u0002\u0000\u0001?\u0002\u0001?\u0000\u0002\u0000\u0001@\u0002\u0001@\u0000\u0002\u0000\u0001A\u0002\u0001A\u0000\u0002\u0000\u0001B\u0002\u0001B\u0000\u0002\u0001\u0001\u0001C\u0002\u0001C\u0000\u0002\u0001\u0014(\u0002(\u0000\u0000\u0001+\u0000\u0000\u0002*\u0000\u0000\u0010\u0001\/\u0000\u0000\u0010\u00010\u0000\u001c'&%$#\"\u0000Z!\u0000e\u0000p\u0000{\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007\u001f\u001e\u001d\u0001\u0019\u0003'\u0000\u000f\u0003&\u0000(\u000b%\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003$\u0005\u0003#\u0003Q\u000b\"\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b!\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003 \u0002?\u0003\u001f\u0001\u0003\u001e\u0002\u0003\u001d\u0001\u0011)\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*m+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017a\u0000\u0018lva\u0000\u0019a\u0000\u001alvm+\u0000\u0007O*a\u0000\u001blvlvm+\u0000\u0007\u000f\u000e\u0001)\u0000\u0002\u0004\u001c\u0001D\u0003\u001c\u0000\u0002\u000e\u0001D\u0000\u0002\u0000\u001b\u001a\u0003\u001b\u0000\u000f\u0003\u001a\u0000(\u000e\u0001*\u0000\u0002\u0004\u0019\u0001E\u0003\u0019\u0000\u0002\u000e\u0001E\u0000\u0002\u0000\u0018\u0017\u0003\u0018\u0005\u0003\u0017\u0003Q\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u000f\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0005\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0003Q\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0016\u0000V\r\u0000V\u0000\u0003I\u0000\u0000\u0000\u000e\u0000\u0016\u0000W\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000W\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000Z\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000Y\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0010\u0000\u0011\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u001f\u0000a\r\u0000a\u0000\u0003I\u0000\u0000\u0000\u0017\u0000\u001f\u0000b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000e\u000e\u0000e\u0000\u0001\u0000f\u0011\u0000f\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000d\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000 \u0000(\u0000l\r\u0000l\u0000\u0003I\u0000\u0000\u0000 \u0000(\u0000m\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000o\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000s\u0000\u0002\u0000t\r\u0000t\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u0000)\u00001\u0000w\r\u0000w\u0000\u0003I\u0000\u0000\u0000)\u00001\u0000x\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000z\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00002\u0000:\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00002\u0000:\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00003\u00004\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000L\u0000i\u0000n\u0000e\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00004\u00005\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000;\u0000C\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000;\u0000C\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000=\u0000>\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000D\u0000R\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000D\u0000R\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000F\u0000J\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000G\u0003\u0000\u000f\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0003\u0000(\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000J\u0000N\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0002?\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000K\u0000L\u0003\u0003Q\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000S\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000S\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000N\u0000o\u0000t\u0000i\u0000o\u0000n\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m~\u000b~\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000|\u0000}|\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000|{\u0000z\u000b{\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000v\u0000wy\u000by\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000xw\u000bw\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002x\u0000\u0000\u0002z\u0000\u0000\u0001}\u0000\u0000\u0001|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000}\u0000\u0000vu\r\u0000\u0000\u0003I\u0000\u0000\u0000}\u0000t\u0000s\u000bt\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000~\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000r\u000br\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000q\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002q\u0000\u0000\u0002s\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000on\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000m\u0000l\u000bm\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000j\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000i\u000bi\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002j\u0000\u0000\u0002l\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000hg\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000f\u0000e\u000bf\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000c\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000b\u000bb\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002c\u0000\u0000\u0002e\u0000\u0000\u0001h\u0000\u0000\u0001g\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000a`\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000_\u0000^\u000b_\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000S\u0000p\u0000o\u0000t\u0000i\u0000f\u0000y\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\\\r\u0001\u0000\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0001\u0001\u0002\r\u0001\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0003ZY\r\u0001\u0003\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0004W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0004\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0007\u000e\u0001\u0007\u0000\u0001\u0001\b\u0011\u0001\b\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001\u0006\u0000\u0002\u0001\t\u0001\n\r\u0001\t\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0000\u000f\u0002\u0001\r\u0000\u0002\u0001\u000eU\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0001\u0002U\u0000\u0000\u0002\u0001\n\u0000\u0002\u0001\u000fS\r\u0001\u000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0010\u0002\u0001\u0010\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0001m\u0000\u0000\u0000\u0000R\u0003R\u0002\u0002\u0001\u0012\u0000\u0002\u0001\u0013Q\r\u0001\u0013\u0000\u0001m\u0000\u0000\u0000\u0000P\u0003P\u0001\u0002Q\u0000\u0000\u0002S\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0002\u0000\u0002\u0001\u0014O\r\u0001\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0015NM\r\u0001\u0015\u0000\u0003I\u0000\u0000\u0000\u0000L\u0001\u0016K\u000bL\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0019\u000e\u0001\u0019\u0000\u0001\u0001\u001a\u0011\u0001\u001a\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0018\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u001d\u0002\u0001\u001d\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001m\u0000\u0000\u0000\u0000J\u0003J\u0000\u000f\u0002\u0001\u001f\u0000\u0002\u0001 I\r\u0001 \u0000\u0001m\u0000\u0000\u0000\u0000H\u0003H\u0000(\u0002I\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001!G\r\u0001!\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\"\u0002\u0001\"\u0000\u0002\u0001#\u0001$\r\u0001#\u0000\u0001m\u0000\u0000\u0000\u0000F\u0003F\u0002?\u0002\u0001$\u0000\u0002\u0001%E\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000D\u0003D\u0003Q\u0002E\u0000\u0000\u0002G\u0000\u0000\u0002K\u0000\u0000\u0001N\u0000\u0000\u0001M\u0000\u0000\u0002O\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004C\u0001&\u0001'\u0001(\u0001C\u0000\u0000\u0010\u0001&\u0000\u0002BA\u000bB\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\nA\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001'\u0000\u0007\u0010@\u0000\b?>\u0001)\u0001*=\u000b@\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e?\u0000\u0002\u0004<\u0001+\u0003<\u0000\u0003\u000e\u0001+\u0000\u0003\u0000;:9\u000b;\u0000\f0\u0000\bapp_name\u0000\u0000\u000b:\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b9\u0000\f0\u0000\bwin_size\u0000\u0000\u0002>\u0000\u0000\u0010\u0001)\u0000\u0003876\u000b8\u0000\f0\u0000\bapp_name\u0000\u0000\u000b7\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b6\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001*\u0000\b54\u0000=3210\/\n5\u0000\u0004\ncapp\n4\u0000\u0004\nprun\n3\u0000\u0004\nprcs\n2\u0000\u0004\ncobj\n1\u0000\u0004\ncwin\n0\u0000\u0004\nposn\n\/\u0000\u0004\nptsz\u0011=\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001(\u0000\u0007\u0010.\u0001,-,\u0001-\u0001.+\n.\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001,\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001\/\u0002\u0001\/\u0000\u0002\u0000@\u00010\u0002\u00010\u0000\u0002\u0000I\u00011\u0002\u00011\u0000\u0002\u0000T\u00012\u0002\u00012\u0000\u0002\u0000_\u00013\u0002\u00013\u0000\u0002\u0000j\u00014\u0002\u00014\u0000\u0002\u0000u\u00015\u0002\u00015\u0000\u0002\u0000\u00016\u0002\u00016\u0000\u0002\u0000\u00017\u0002\u00017\u0000\u0002\u0000\u00018\u0002\u00018\u0000\u0002\u0000\u00019\u0002\u00019\u0000\u0002\u0000\u0001:\u0002\u0001:\u0000\u0002\u0000\u0001;\u0002\u0001;\u0000\u0002\u0000\u0001<\u0002\u0001<\u0000\u0002\u0000\u0001=\u0002\u0001=\u0000\u0002\u0000\u0001>\u0002\u0001>\u0000\u0002\u0000\u0001?\u0002\u0001?\u0000\u0002\u0000\u0001@\u0002\u0001@\u0000\u0002\u0001\u0001\u0001A\u0002\u0001A\u0000\u0002\u0001\u0014*\u0002*\u0000\u0000\u0001-\u0000\u0000\u0002,\u0000\u0000\u0010\u0001-\u0000\u0000\u0010\u0001.\u0000\u001c)('&%$\u0000Z#\u0000e\u0000p\u0000{\u0000\u0000\u0000\"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0007! \u001f\u0001\u0019\u0003)\u0000\u000f\u0003(\u0000(\u000b'\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003&\u0005\u0003%\u0003Q\u000b$\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b#\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\"\u0002?\u0003!\u0001\u0003 \u0002\u0003\u001f\u0001\u0011+\u0000lvEOlvEO*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*m+\u0000\u0007O*lvlvm+\u0000\u0007O*m+\u0000\u0007O*a\u0000\u0010m+\u0000\u0007O*a\u0000\u0011m+\u0000\u0007O*a\u0000\u0012m+\u0000\u0007O*a\u0000\u0013m+\u0000\u0007O*a\u0000\u0014m+\u0000\u0007O*a\u0000\u0015m+\u0000\u0007O*a\u0000\u0016m+\u0000\u0007O*a\u0000\u0017a\u0000\u0018lva\u0000\u0019a\u0000\u001alvm+\u0000\u0007O*a\u0000\u001blvlvm+\u0000\u0007\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9f2c22d4990013bf9fd6849954b9e0ada76d04c6","subject":"Enable cmd-. shortcut for back button in Edit File dialog","message":"Enable cmd-. shortcut for back button in Edit File dialog\n\nSpecify the back button as the cancel button, then trap error -128 to\ntrigger the back action instead.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-05\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2013 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the URL file is new. After\n\t\t-- sample categories have been written to file, any of them\n\t\t-- can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\tset this_url to the clipboard\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"Go to Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Save timestamped and categorized URLs to a log file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"cbf9439c5c02df61535a0a898fa4da86f60a6395","subject":"Begin work on launching QuickTime Player 7 on Mavericks computers.","message":"Begin work on launching QuickTime Player 7 on Mavericks computers.\n","repos":"MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian,MaddTheSane\/perian","old_file":"Opener\/AppDelegate.applescript","new_file":"Opener\/AppDelegate.applescript","new_contents":"--\n-- AppDelegate.applescript\n-- PerianOpener\n--\n-- Created by C.W. Betts on 9\/25\/13.\n-- Copyright (c) 2013 Perian Team. All rights reserved.\n--\n\nscript AppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\ton isMavericksOrLater()\n\t\t-- TODO: Implement\n\t\treturn yes\n\tend isMavericksOrLater\n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationDidFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\t\ttell current application's NSTimer to set theTimer to scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(10, me, \"timerFired:\", missing value, false)\n\tend applicationDidFinishLaunching_\n\t\n\ton timerFired_(timer)\n\t\tquit\n\tend timerFired_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\n\ton application_openFiles_(appl, theFiles)\n\t\t\n\t\tset mavericks to isMavericksOrLater()\n\t\tif mavericks is true\n\t\ttell application \"com.apple.quicktimeplayer\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\n\t\telse\n\t\t\n\t\ttell application \"QuickTime Player\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\t\tend\n\t\tquit\n\t\t\n\t\treturn yes\n\tend application_openFiles_\n\t\nend script\n","old_contents":"--\n-- AppDelegate.applescript\n-- PerianOpener\n--\n-- Created by C.W. Betts on 9\/25\/13.\n-- Copyright (c) 2013 Perian Team. All rights reserved.\n--\n\nscript AppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationDidFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\t\ttell current application's NSTimer to set theTimer to scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(10, me, \"timerFired:\", missing value, false)\n\tend applicationDidFinishLaunching_\n\t\n\ton timerFired_(timer)\n\t\tquit\n\tend timerFired_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\n\ton application_openFiles_(appl, theFiles)\n\t\ttell application \"QuickTime Player\"\n\t\t\trepeat with theFile in theFiles's allObjects()\n\t\t\t\tset theFilePox to (theFile's fileSystemRepresentation())\n\t\t\t\topen theFilePox as POSIX file\n\t\t\tend repeat\n\t\t\t\n\t\t\tactivate\n\t\tend tell\n\t\tquit\n\t\t\n\t\treturn yes\n\tend application_openFiles_\n\t\nend script\n","returncode":0,"stderr":"","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"4418fa31b3b45dde2bd5edca45c1a257b8dac412","subject":"make it work again","message":"make it work again\n","repos":"azizshamim\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_git_root_dir> <path_to_keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_presentation>\nproperty thumbSize : 480\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set savePath to item 1 of argv\n set keynoteName to item 2 of argv\n set thumbnailDir to keynoteName\n if thumbnailDir ends with \".key\" then set thumbnailDir to text 1 thru -5 of thumbnailDir\n\n set keynoteFile to (POSIX file keynoteName) as alias\n set keynoteFullName to savePath & \"\/\" & keynoteName\n set savePath to posix file savePath\n\n tell application \"Finder\"\n if not (exists folder thumbnailDir of folder savePath)\n make new folder at folder savePath with properties {name:thumbnailDir}\n end if\n set the targetFolder to folder thumbnailDir of folder savePath\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open keynoteFile\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n close front document without saving\n end tell\nend run\n","old_contents":"-- thumbscrew.scpt\n-- usage: thumbscript.scpt <path_to_git_root_dir> <path_to_keynotePresentation>\n--\n-- Will create scaled thumbnails of length `thumbSize` in the directory\n-- <path_to_presentation>\nproperty thumbSize : 480\n\non getImages(f)\n tell application \"Finder\" to return (files of folder f) as alias list\nend getImages\n\non run argv\n set savePath to item 1 of argv\n set keynoteName to item 2 of argv\n set thumbnailDir to keynoteName\n if thumbnailDir ends with \".key\" then set thumbnailDir to text 1 thru -5 of thumbnailDir\n\n set keynoteFile to (POSIX file keynoteName) as alias\n set keynoteFullName to savePath & \"\/\" & keynoteName\n set documentPath to posix file (POSIX path of (do shell script \"dirname \" & quoted form of keynoteFullName)) as alias\n\n tell application \"Finder\"\n if not (exists folder thumbnailDir of folder documentPath)\n make new folder at folder documentPath with properties {name:thumbnailDir}\n end if\n set the targetFolder to folder thumbnailDir of folder documentPath\n set the targetFolderHFSPath to targetFolder as string\n end tell\n\n tell application \"Keynote\" to run\n tell application \"Keynote\"\n open keynoteFile\n\n if playing is true then stop the front document\n\n export front document as slide images to file targetFolderHFSPath with properties {image format: JPEG}\n set jpegs to my getImages(targetFolderHFSPath)\n repeat with thisJPEG in jpegs\n try\n tell application \"Image Events\"\n launch\n set this_image to open thisJPEG\n scale this_image to size thumbSize\n save this_image with icon\n close this_image\n end tell\n on error error_message\n display dialog error_message\n end try\n end repeat\n\n-- close front document without saving\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8a7da37d53158e7f750083cfb2c37130b30745ff","subject":"Alfred checkpoint","message":"Alfred checkpoint\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\u0012\u0000T\u0000a\u0000b\u0000l\u0000e\u0000P\u0000l\u0000u\u0000s\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\b\u0000F\u0000i\u0000l\u0000e\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000\u0012\u0000B\u0000a\u0000c\u0000k\u0000u\u0000p\u0000.\u0000.\u0000.\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"d66c1c646d361f29f37c8f71140de166258fc3f4","subject":"Simplify","message":"Simplify\n","repos":"cknadler\/vim-anywhere","old_file":"script\/open_shortcuts.scpt","new_file":"script\/open_shortcuts.scpt","new_contents":"-- vim-anywhere - use Vim whenever, wherever\n-- Author: Chris Knadler\n-- Homepage: https:\/\/www.github.com\/cknadler\/vim-anywhere\n--\n-- Open the keyboard shortcuts tab of keyboard system preferences\n\ntell application \"System Preferences\"\n activate\n reveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\nend tell\n","old_contents":"-- vim-anywhere - use Vim whenever, wherever\n-- Author: Chris Knadler\n-- Homepage: https:\/\/www.github.com\/cknadler\/vim-anywhere\n--\n-- Open the \"Services\" keyboard shortcuts tab of keyboard system preferences\n\ntell application \"System Preferences\"\n activate\n reveal anchor \"shortcutsTab\" of pane id \"com.apple.preference.keyboard\"\n keystroke tab\n repeat 3 times\n key code 125\n end repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5c02b150da5ab6e7b1f51a8e60c02359c47c8a57","subject":"Fix pdf script","message":"Fix pdf script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat\n if ((value of menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled) = true)\n exit repeat\n end if\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","old_contents":"############################\n# How to generate the PDFs #\n############################\n# 1. Generate Cover.pdf with latest version date\n# a. Create \"ebook\" folder in ~\/Downloads\n# b. update date in cover.html\n# c. open in safari file:\/\/\/Users\/frank\/Sites\/ServerlessStackCom\/etc\/cover.html\n# d. \"Export to PDF\u2026\"\n# e. Place Cover.pdf in ~\/ebook folder\n# 2. Ensure \"ebook\" folder is an option when \"Export to PDF\u2026\" in Safari\n# 3. In terminal, run \"osascript pdf.scpt\"\n\n\nset theChaptersStr to \"who-is-this-guide-for\nwhat-does-this-guide-cover\nhow-to-get-help\nwhat-is-serverless\nwhat-is-aws-lambda\nwhy-create-serverless-apps\ncreate-an-aws-account\ncreate-an-iam-user\nwhat-is-iam\nwhat-is-an-arn\nconfigure-the-aws-cli\ncreate-a-dynamodb-table\ncreate-an-s3-bucket-for-file-uploads\ncreate-a-cognito-user-pool\ncreate-a-cognito-test-user\nsetup-the-serverless-framework\nadd-support-for-es6-es7-javascript\ninitialize-the-backend-repo\nadd-a-create-note-api\nadd-a-get-note-api\nadd-a-list-all-the-notes-api\nadd-an-update-note-api\nadd-a-delete-note-api\nworking-with-3rd-party-apis\nsetup-a-stripe-account\nadd-a-billing-api\nload-secrets-from-env\ntest-the-billing-api\nunit-tests-in-serverless\nhandle-api-gateway-cors-errors\ndeploy-the-apis\ncreate-a-cognito-identity-pool\ncognito-user-pool-vs-identity-pool\ntest-the-apis\ncreate-a-new-reactjs-app\ninitialize-the-frontend-repo\nadd-app-favicons\nsetup-custom-fonts\nsetup-bootstrap\nhandle-routes-with-react-router\ncreate-containers\nadding-links-in-the-navbar\nhandle-404s\nconfigure-aws-amplify\ncreate-a-login-page\nlogin-with-aws-cognito\nadd-the-session-to-the-state\nload-the-state-from-the-session\nclear-the-session-on-logout\nredirect-on-login-and-logout\ngive-feedback-while-logging-in\ncreate-a-custom-react-hook-to-handle-form-fields\ncreate-a-signup-page\ncreate-the-signup-form\nsignup-with-aws-cognito\nadd-the-create-note-page\ncall-the-create-api\nupload-a-file-to-s3\nlist-all-the-notes\ncall-the-list-api\ndisplay-a-note\nrender-the-note-form\nsave-changes-to-a-note\ndelete-a-note\ncreate-a-settings-page\nadd-stripe-keys-to-config\ncreate-a-billing-form\nconnect-the-billing-form\nsetup-secure-pages\ncreate-a-route-that-redirects\nuse-the-redirect-routes\nredirect-on-login\ngetting-production-ready\nwhat-is-infrastructure-as-code\nconfigure-dynamodb-in-serverless\nconfigure-s3-in-serverless\nconfigure-cognito-user-pool-in-serverless\nconfigure-cognito-identity-pool-in-serverless\ndeploy-your-serverless-infrastructure\nautomating-serverless-deployments\nsetting-up-your-project-on-seed\nconfigure-secrets-in-seed\ndeploying-through-seed\nset-custom-domains-through-seed\ntest-the-configured-apis\nautomating-react-deployments\nmanage-environments-in-create-react-app\ncreate-a-build-script\nsetting-up-your-project-on-netlify\ncustom-domain-in-netlify\nfrontend-workflow\ndebugging-full-stack-serverless-apps\nsetup-error-reporting-in-react\nreport-api-errors-in-react\nsetup-an-error-boundary-in-react\nsetup-error-logging-in-serverless\nlogic-errors-in-lambda-functions\nunexpected-errors-in-lambda-functions\nerrors-outside-lambda-functions\nerrors-in-api-gateway\nwrapping-up\nfurther-reading\ntranslations\ngiving-back\nchangelog\nstaying-up-to-date\nbest-practices-for-building-serverless-apps\norganizing-serverless-projects\ncross-stack-references-in-serverless\ndynamodb-as-a-serverless-service\ns3-as-a-serverless-service\ncognito-as-a-serverless-service\nshare-code-between-services\nshare-an-api-endpoint-between-services\ndeploy-a-serverless-app-with-dependencies\nenvironments-in-serverless-apps\nstructure-environments-across-aws-accounts\nmanage-aws-accounts-using-aws-organizations\nparameterize-serverless-resources-names\ndeploying-to-multiple-aws-accounts\ndeploy-the-resources-repo\ndeploy-the-api-services-repo\nmanage-environment-related-config\nstoring-secrets-in-serverless-apps\nshare-route-53-domains-across-aws-accounts\nmonitor-usage-for-environments\nworking-on-serverless-apps\ninvoke-lambda-functions-locally\ninvoke-api-gateway-endpoints-locally\ncreating-feature-environments\ncreating-pull-request-environments\npromoting-to-production\nrollback-changes\ndeploying-only-updated-services\ntracing-serverless-apps-with-x-ray\nwrapping-up-the-best-practices\napi-gateway-and-lambda-logs\ndebugging-serverless-api-issues\nserverless-environment-variables\nstages-in-serverless-framework\nbackups-in-dynamodb\nconfigure-multiple-aws-profiles\ncustomize-the-serverless-iam-policy\nmapping-cognito-identity-id-and-user-pool-id\nconnect-to-api-gateway-with-iam-auth\nserverless-nodejs-starter\npackage-lambdas-with-serverless-bundle\nunderstanding-react-hooks\ncode-splitting-in-create-react-app\nenvironments-in-create-react-app\ndeploying-a-react-app-to-aws\ncreate-an-s3-bucket\ndeploy-to-s3\ncreate-a-cloudfront-distribution\nsetup-your-domain-with-cloudfront\nsetup-www-domain-redirect\nsetup-ssl\ndeploy-updates\nmanage-user-accounts-in-aws-amplify\nhandle-forgot-and-reset-password\nallow-users-to-change-passwords\nallow-users-to-change-their-email\nfacebook-login-with-cognito-using-aws-amplify\"\n\nset text item delimiters to \"\n\"\n\nset theChapters to text items of theChaptersStr\n\n\n########\n# Main #\n########\ndownloadPdfs(theChapters)\nmergePdfs(theChapters)\n\n##############\n# Merge PDFs #\n##############\non mergePdfs(theChapters)\n set outputFile to \"~\/Downloads\/ebook\/ServerlessStack.pdf\"\n\n set pdfFiles to \"~\/Downloads\/ebook\/Cover.pdf\"\n repeat with theCurrentChapter in theChapters\n set pdfFiles to pdfFiles & \" ~\/Downloads\/ebook\/\" & theCurrentChapter & \".pdf\"\n end repeat\n\n do shell script \"\/System\/Library\/Automator\/Combine\\\\ PDF\\\\ Pages.action\/Contents\/Resources\/join.py \" & \"-o \" & outputFile & \" \" & pdfFiles\nend mergePdfs\n\n#################\n# Download PDFs #\n#################\non downloadPdfs(theChapters)\n repeat with theCurrentChapter in theChapters\n if not(checkFileExist(theCurrentChapter)) then\n downloadPdf(theCurrentChapter)\n end if\n end repeat\nend downloadPdfs\n\non checkFileExist(theChapterName)\n set basePath to POSIX path of (path to home folder) & \"Downloads\/ebook\/\"\n\n tell application \"Finder\"\n return exists basePath & theChapterName & \".pdf\" as POSIX file\n end tell\nend checkFileExist\n\non downloadPdf(theChapterName)\n tell application \"System Events\"\n\n tell process \"Safari\"\n set frontmost to true\n\n if ((theChapterName as string) is equal to \"index\") then\n set urlPath to theChapterName\n else\n set urlPath to \"chapters\/\" & theChapterName\n end if\n open location \"https:\/\/serverless-stack.com\/\" & urlPath & \".html\"\n\n delay 1\n\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 exists\n delay 0.2\n end repeat\n repeat until menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1 is enabled\n delay 0.2\n end repeat\n click menu item \"Export as PDF\u2026\" of menu \"File\" of menu bar 1\n\n tell window 1\n repeat until sheet 1 exists\n end repeat\n\n tell sheet 1\n keystroke theChapterName\n click pop up button \"Where:\"\n\n repeat until menu 1 of pop up button \"Where:\" exists\n end repeat\n click menu item \"ebook\" of menu 1 of pop up button \"Where:\"\n click button \"Save\"\n end tell\n\n end tell\n\n click menu item \"Close Tab\" of menu \"File\" of menu bar 1\n\n end tell\n\n end tell\nend downloadPdf\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8df2f8cf8fb017430d1ff1cc2daeda7e0a5605c7","subject":"Modified the poll script to work with iTunes 4.7 and tracks that don't have artwork.","message":"Modified the poll script to work with iTunes 4.7 and tracks that don't have artwork.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40583\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000p\u0000[\u0000\\\r\u0000[\u0000\u0003I\u0000\u0001\u0000g\u0000n\u0000]\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000]\u0000\u0001m\u0000\u0000\u0000g\u0000j\n\u0000\u0004\ncArt\u0002\u0000\u0000\r\u0000\\\u0000\u0001m\u0000\u0000\u0000n\u0000o\u0003\u0000\u0001\r\u0000Z\u0000\u0002r\u0000\u0000\u0000s\u0000\u0000^\u0000_\r\u0000^\u0000\u0002n\u0000\u0000\u0000s\u0000}\u0000`\u0000a\r\u0000`\u0000\u00011\u0000\u0000\u0000y\u0000}\n\u0000\u0004\npPCT\r\u0000a\u0000\u0002n\u0000\u0000\u0000s\u0000y\u0000b\u0000c\r\u0000b\u0000\u00024\u0000\u0000\u0000t\u0000y\u0000d\n\u0000\u0004\ncArt\r\u0000d\u0000\u0001m\u0000\u0000\u0000w\u0000x\u0003\u0000\u0001\r\u0000c\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000e\r\u0000e\u0000\u0002r\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000h\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000x\u0000\u0002\u0000y\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0002=\u0000\u0003\u0000\u0000\u0000|\u0000}\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000{\u0000\u0002\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0004\niTunes.app\u00000L\u00007\u0010 \u0000\u000f\u0004\u0000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u00054(K @\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FwH+\u0000\u0000\u0000\u0000\u0004\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@T\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000F\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0004\u0000\u0002\u0000$Macintosh HD:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012~}|\u0000\u0000{z\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n~\u0000\u0004\npPCT\u0003}\u0000\t\n|\u0000\b\u000bePlSkPSp\u0001{\u0000\u0000\u0002z\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001aj\f\u0000\u001bk\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u000e\u0000\u0000\u0002\u0004y\u0000\u0003y\u0000\t\u000e\u0000\u0000\t\u0000x\u0000\u0000\u0000\u0000wvu\u0000\u0003x\u0001H\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000R\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000D\u0000r\u0000i\u0000n\u0000k\u0000i\u0000n\u0000g\u0000 \u0000S\u0000o\u0000n\u0000g\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u00003\u0000:\u00003\u00002\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\nw\u0000\b\u000bboovfals\u0003v\u0000<\nu\u0000\u0004\nnull\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000P\u0000a\u0000r\u0000t\u0000y\u0000 \u0000S\u0000h\u0000u\u0000f\u0000f\u0000l\u0000e\n\u0000\b\u000bePlSkPSP\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0004\u0019\u0000tsr\u000e\u0000\u0000\u0004\u0019\u0000qpo\u000e\u0000\u0000\u0004\u0019\u0000nml\nn\u0000\u0004\ncSrc\u0003m\u0000#\nl\u0000\b\u000bkfrmID \nq\u0000\u0004\ncUsP\u0003p\fE\no\u0000\b\u000bkfrmID \nt\u0000\u0004\ncFlT\u0003s4.\nr\u0000\b\u000bkfrmID \u0003\u0001H\n\u0000\b\u000bboovfals\u0003\u0000<\n\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPlS\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\u0002\u0000\u0014\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\u0011\u0000\u0000\u0018\u0000\u0019\u0000\u001a\u0000\u001b\r\u0000\u0018\u0000\u0002=\u0000\u0003\u0000\u0011\u0000\u0014\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\n\u0000\b\u000bePlSkPSP\r\u0000\u0019\u0000\u0001k\u0000\u0000\u0000\u0017\u0000\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000!\u0000\"\r\u0000!\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u001a\n\u0000\u0004\npTrk\r\u0000\"\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000%\u0000&\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001d\u0000\"\u0000'\u0000(\r\u0000'\u0000\u00011\u0000\u0000\u0000 \u0000\"\n\u0000\u0004\npnam\r\u0000(\u0000\u00011\u0000\u0000\u0000\u001d\u0000 \n\u0000\u0004\npPla\r\u0000&\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000$\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000%\u0000*\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000%\u0000(\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000&\u0000(\n\u0000\u0004\npDID\r\u0000.\u0000\u0001o\u0000\u0000\u0000%\u0000&\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000*\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0002r\u0000\u0000\u0000+\u00000\u00001\u00002\r\u00001\u0000\u0002n\u0000\u0000\u0000+\u0000.\u00003\u00004\r\u00003\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\npnam\r\u00004\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u00000\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00001\u00006\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00001\u00004\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00002\u00004\n\u0000\u0004\npTim\r\u0000:\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u00006\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000=\u0000>\r\u0000=\u0000\u0002n\u0000\u0000\u00007\u0000<\u0000?\u0000@\r\u0000?\u0000\u00011\u0000\u0000\u00008\u0000<\n\u0000\u0004\npAlb\r\u0000@\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000<\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002r\u0000\u0000\u0000A\u0000J\u0000C\u0000D\r\u0000C\u0000\u0002n\u0000\u0000\u0000A\u0000F\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000B\u0000F\n\u0000\u0004\npArt\r\u0000F\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000B\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000K\u0000T\u0000I\u0000J\r\u0000I\u0000\u0002n\u0000\u0000\u0000K\u0000P\u0000K\u0000L\r\u0000K\u0000\u00011\u0000\u0000\u0000L\u0000P\n\u0000\u0004\npAnt\r\u0000L\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000H\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002r\u0000\u0000\u0000U\u0000^\u0000O\u0000P\r\u0000O\u0000\u0002n\u0000\u0000\u0000U\u0000Z\u0000Q\u0000R\r\u0000Q\u0000\u00011\u0000\u0000\u0000V\u0000Z\n\u0000\u0004\npRte\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000P\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000N\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u0000_\u0000f\u0000U\u0000V\r\u0000U\u0000\u0001m\u0000\u0000\u0000_\u0000b\n\u0000\u0004\nnull\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0004Z\u0000\u0000\u0000g\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002@\u0000\u0000\u0000g\u0000s\u0000[\u0000\\\r\u0000[\u0000\u0002n\u0000\u0000\u0000g\u0000q\u0000]\u0000^\r\u0000]\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\npKnd\r\u0000^\u0000\u0002n\u0000\u0000\u0000g\u0000m\u0000_\u0000`\r\u0000_\u0000\u00024\u0000\u0000\u0000h\u0000m\u0000a\n\u0000\u0004\ncArt\r\u0000a\u0000\u0001m\u0000\u0000\u0000k\u0000l\u0003\u0000\u0001\r\u0000`\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000\\\u0000\u0001m\u0000\u0000\u0000q\u0000r\u0003\u0000\u0000\r\u0000Z\u0000\u0002r\u0000\u0000\u0000v\u0000\u0000b\u0000c\r\u0000b\u0000\u0002n\u0000\u0000\u0000v\u0000\u0000d\u0000e\r\u0000d\u0000\u00011\u0000\u0000\u0000|\u0000\n\u0000\u0004\npPCT\r\u0000e\u0000\u0002n\u0000\u0000\u0000v\u0000|\u0000f\u0000g\r\u0000f\u0000\u00024\u0000\u0000\u0000w\u0000|\u0000h\n\u0000\u0004\ncArt\r\u0000h\u0000\u0001m\u0000\u0000\u0000z\u0000{\u0003\u0000\u0001\r\u0000g\u0000\u0001o\u0000\u0000\u0000v\u0000w\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000X\u0000\u0002\u0000i\r\u0000i\u0000\u0002r\u0000\u0000\u0000\u0000\u0000j\u0000k\r\u0000j\u0000\u0001J\u0000\u0000\u0000\u0000\u0000l\u0002\u0000l\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u0002\u0000n\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\u0002\u0000r\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\u0002\u0000z\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bePlSkPSp\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\f\u0000\u0006paused\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\r\u0000\u0007stopped\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0018\niTunes.app\u00000\b\u00007\u0010 \u0000\u000f\u0018\u0000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u000b(\u0007 @\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u00018\u0000\u0002\u0000\u0001\u0005Shire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0016O\u000fH+\u0000\u0000\u0000\u0000\u0000\u0018\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u037cG\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0016O\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\b\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0018\u0000\u0002\u0000\u001dShire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\f\u0000\u0005\u0000S\u0000h\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0001L\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000$\u0000\u0000\u0012\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPlS\u000b\u0000\u00100\u0000\u0006astate\u0000\u0006aState\n\u0000\b\u000bePlSkPSP\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npDID\u000b\u0000\u00140\u0000\batrackid\u0000\baTrackID\u000b\u0000\u00180\u0000\natrackname\u0000\naTrackName\n\u0000\u0004\npTim\u000b\u0000\u001c0\u0000\fatracklength\u0000\faTracklength\n\u0000\u0004\npAlb\u000b\u0000\u001a0\u0000\u000batrackalbum\u0000\u000baTrackAlbum\n\u0000\u0004\npArt\u000b\u0000\u001c0\u0000\fatrackartist\u0000\faTrackArtist\n\u0000\u0004\npAnt\u000b\u0000&0\u0000\u0011atrackcompilation\u0000\u0011aTrackCompilation\n\u0000\u0004\npRte\u000b\u0000\u001c0\u0000\fatrackrating\u0000\faTrackRating\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0004\npKnd\n\u0000\u0004\npPCT\u0003\u0000\t\n\u0000\b\u000bePlSkPSp\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000\u0014\u0000\u0012\u0000EO*,EO\u0000\u001d\u0000*,EO*,,EO,EO,EO,EOa\u0000\u0010,E`\u0000\u0011Oa\u0000\u0012,E`\u0000\u0013Oa\u0000\u0014,E`\u0000\u0015Oa\u0000\u0016,E`\u0000\u0017Oa\u0000\u0018E`\u0000\u0019Oa\u0000\u001ak\/a\u0000\u001b,j\u0003\u001d\u0000\u0013a\u0000\u001ak\/a\u0000\u001c,E`\u0000\u0019Y\u0000\u0003hO_\u0000\u0013_\u0000\u0011_\u0000\u0015_\u0000\u0017_\u0000\u0019a\u0000\u001dvEY\u0000\u0017a\u0000\u001e\u0000\u001d\u0000\na\u0000\u001fEY\u0000\u0007a\u0000 EUW\u0000\fX\u0000!\u0000\"a\u0000#EO\u000f\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e69a22832150ecf1453e92293ba1a4410074e0a0","subject":"Setting this back to the value it had before accidentally changing it.","message":"Setting this back to the value it had before accidentally changing it.\n","repos":"CarlosCD\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,chashion\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,an0nym0u5\/growl,tectronics\/growl,nochkin\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,nkhorman\/archive-growl,chashion\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,tectronics\/growl,nochkin\/growl,timbck2\/growl,nkhorman\/archive-growl,nochkin\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,timbck2\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nochkin\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nagyistoce\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,ylian\/growl,tectronics\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,xhruso00\/growl,ylian\/growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,SalrJupiter\/growl,tectronics\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,SalrJupiter\/growl,nagyistoce\/growl,nochkin\/growl,timbck2\/growl,CarlosCD\/growl,SalrJupiter\/growl,ylian\/growl,CarlosCD\/growl,xhruso00\/growl,timbck2\/growl,timbck2\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,Shalaco\/shalzers-growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 350}\n\t\t\tset the bounds to {30, 50, 579, 350}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 4000}\n\t\t\tset the bounds to {30, 50, 579, 4000}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"19668c09836a017b1c6d30494bd5ef7329197002","subject":"Save before committing!","message":"Save before committing!\n","repos":"tectronics\/growl,CarlosCD\/growl,tectronics\/growl,nochkin\/growl,Shalaco\/shalzers-growl,nochkin\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,an0nym0u5\/growl,nagyistoce\/growl,xhruso00\/growl,CarlosCD\/growl,xhruso00\/growl,CarlosCD\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,ylian\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,xhruso00\/growl,SalrJupiter\/growl,ylian\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,chashion\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,nagyistoce\/growl,chashion\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,xhruso00\/growl,chashion\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,timbck2\/growl,an0nym0u5\/growl,tectronics\/growl,CarlosCD\/growl,nkhorman\/archive-growl,tectronics\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,xhruso00\/growl,tectronics\/growl,timbck2\/growl,ylian\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,SalrJupiter\/growl,chashion\/growl,an0nym0u5\/growl,ylian\/growl,SalrJupiter\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,nochkin\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,nochkin\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\topen\n\t\t\tset the_window_id to id\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 462}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 64\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {147, 75}\n\t\tset position of item \"Extras\" to {80, 315}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {100, 215}\n\t\tset position of item \"Growl version history.webloc\" to {275, 215}\n\t\tset position of item \"Get more styles.webloc\" to {415, 215}\n\t\tset position of item \"Uninstall Growl.app\" to {415, 315}\n\t\tupdate without registering applications\n\t\tset the_window_id to id of container window\n\t\tupdate without registering applications\n\tend tell\n\tset bounds of window id the_window_id to {30, 50, 579, 900}\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d63bb127750bc2e46fd160ef8917f1184ac6c213","subject":"Changed dialog text for phone number","message":"Changed dialog text for phone number\n","repos":"axelvillamil\/rendify","old_file":"rendify.scpt","new_file":"rendify.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0019\u0000\u0013 Render and Message\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 \u0000R\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000+\u0000% A rendering and notification service\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000J\u0000 \u0000A\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0017\u0000\u0011 by Axel Villamil\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\"\u0000 \u0000b\u0000y\u0000 \u0000A\u0000x\u0000e\u0000l\u0000 \u0000V\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000\u001e\u0000\u0018 Get user's phone number\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u00000\u0000 \u0000G\u0000e\u0000t\u0000 \u0000u\u0000s\u0000e\u0000r\u0000'\u0000s\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u001d\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u001e\u0000\u001f\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000 \u000e\u0000 \u0000\u0001\u0000!\u0011\u0000!\u0000.\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0006\u0000\u001f\u0000\u0003\u0000\"\n\u0000\u0004\ndtxt\r\u0000\"\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000#\u000e\u0000#\u0000\u0001\u0000$\u0011\u0000$\u0000\u0016\u00001\u00006\u00004\u00007\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u0000'\r\u0000'\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u0000(\u0000)\r\u0000(\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u0000+\u0000\u00011\u0000\u0000\u0000\b\u0000\t\n\u0000\u0004\nrslt\r\u0000)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00000\u00001\u0001\u0000\u0000\f\u00000\u0000\u0016\u0000\u0010 Run rendify.jsx\u0000\u0002\u0000\u0000\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000 \u0000 \u0000R\u0000u\u0000n\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\/\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0018\u00007\r\u00007\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u00008\u00009\r\u00008\u0000\u0003l\u0000\u0003\u0000\u0012\u0000\u0017\u0000:\u0000;\u0000<\r\u0000:\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0017\u0000=\u0000>\u0000?\r\u0000=\u0000\u0003I\u0000\u0001\u0000\u0012\u0000\u0017\u0000@\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\r\u0000@\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000A\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\/\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000\/\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000\/\u0000A\u0000E\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\u0000\f\u0000>\u00005\u0000\/ Change depending on path of rendify.jsx script\u0000\u0002\u0000\u0000\u000e\u0000?\u0000\u0001\u0000C\u0011\u0000C\u0000^\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\f\u0000;\u00003\u0000- Change depending on version of After Effects\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000D\u0011\u0000D\u0000Z\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\r\u00009\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000E\u000f\u0000E\u0002R\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FXTC\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0001\f\u001fAdobe After Effects CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\f\u04e0@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001dAdobe After Effects CC 2015.3\u0000\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u04e0x\u0000\u0000\u0000\u0001\u0000\b\u0001\f\u0000OI\u0000\u0002\u0000YMacintosh HD:Applications:\u0000Adobe After Effects CC 2015.3:\u0000Adobe After Effects CC 2015.app\u0000\u0000\u000e\u0000@\u0000\u001f\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000JApplications\/Adobe After Effects CC 2015.3\/Adobe After Effects CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00006\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000G\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000J\u0000K\u0001\u0000\u0000\f\u0000J\u0000&\u0000 Read string from jsx error file\u0000\u0002\u0000\u0000\u000e\u0000K\u0000\u0001\u0000L\u0011\u0000L\u0000@\u0000 \u0000R\u0000e\u0000a\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000j\u0000s\u0000x\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000I\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001c\u0000Q\r\u0000Q\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000R\u0000S\r\u0000R\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000T\u000e\u0000T\u0000\u0001\u0000U\u0011\u0000U\u0000X\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000x\u0000e\u0000l\u0000v\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000E\u0000r\u0000r\u0000o\u0000r\u0000.\u0000t\u0000x\u0000t\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0002\u0000\u001d\u0000$\u0000X\r\u0000X\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000Y\u0000Z\r\u0000Y\u0000\u0003I\u0000\u0002\u0000\u001d\u0000\"\u0000[\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000[\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0002\u0000\u0000\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000W\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000]\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0003l\u0000\u0002\u0000%\u0000(\u0000`\r\u0000`\u0000\u0002r\u0000\u0000\u0000%\u0000(\u0000a\u0000b\r\u0000a\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000\\\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000 =\u000e\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000_\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0002\u0000)\u00000\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u0000)\u00000\u0000h\u0000i\r\u0000h\u0000\u0001m\u0000\u0000\u0000)\u0000,\u0000j\u000e\u0000j\u0000\u0001\u0000k\u0011\u0000k\u0000x\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000o\u0000n\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000.\u0000 \u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000h\u0000e\u0000a\u0000d\u0000i\u0000n\u0000g\u0000 \u0000h\u0000o\u0000m\u0000e\u0000!\u0000 \r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\blmessage\u0000\blMessage\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000p\u0000q\u0001\u0000\u0000\f\u0000p\u0000+\u0000% Checks if jsx render queue is empty \u0000\u0002\u0000\u0000\u000e\u0000q\u0000\u0001\u0000r\u0011\u0000r\u0000J\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000s\u0000 \u0000i\u0000f\u0000 \u0000j\u0000s\u0000x\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0002\u0000o\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0003l\u0000\u0002\u00001\u0000\u0000w\r\u0000w\u0000\u0002O\u0000\u0000\u00001\u0000\u0000x\u0000y\r\u0000x\u0000\u0001k\u0000\u0000\u00007\u0000\u0000z\u0002\u0000z\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0002r\u0000\u0000\u00007\u0000P\u0000}\u0000~\r\u0000}\u0000\u00026\u0001\u0000\u00007\u0000L\u0000\u0000\r\u0000\u0000\u00024\u0001\u0002\u00007\u0000=\u0000\n\u0000\u0004\nicsv\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0000\u0001\r\u0000\u0000\u0002=\u0000\u0000\u0000@\u0000K\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\nstyp\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000J\n\u0000\b\u000bstypsims\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\u0002\u0000|\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000]\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000T\u0000Y\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000T\u000b\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000^\u0000c\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00001\r\u0000\u0000\u0003I\u0000\u0002\u0000f\u0000q\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0001o\u0000\u0000\u0000j\u0000m\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000t\u0000y\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000|\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000P\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000a\u0000d\u0000d\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000 \u0000t\u0000o\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000.\u0000\r\u0000 \u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000R\u0000e\u0000a\u0000d\u0000y\u0000'\u0000 \u0000o\u0000n\u0000c\u0000e\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000f\u0000i\u0000l\u0000l\u0000e\u0000d\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000R\u0000e\u0000a\u0000d\u0000y\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndflt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbhit\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000Y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000g\u0000r\u0000a\u0000m\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000R\u0000e\u0000a\u0000d\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000~\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000:\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000:\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00003\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\blmessage\u0000\blMessage\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000y\u0000\u0001m\u0000\u0000\u00001\u00004\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000fez!\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0000OI\fMessages.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u0018\u0374\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?\u0000\u0000\u0000\u0001\u0000\u0004\u0000OI\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Messages.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Messages.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000v\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u0000\u0002\u0000%\u0000\u0002\u0000\u0000\u0002\u00005\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\u0002\u0000u\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000-\u0000 \u0000#\u0000E\u0000A~\u0000T}|{\u0000cz\u0000jy\u0000x\u0000wvuts\u0000rq\u0000\u0000p\u0000\u0000onml\u0000\u0000\u0000k\u0000j\u0000\n\u0000\u0004\ndtxt\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nttxt\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\n~\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\u000b}\u0000\n0\u0000\u0006myfile\u0000\u0000\n|\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b{\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u000bz\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u000by\u0000\u00140\u0000\blmessage\u0000\blMessage\nx\u0000\u0004\nicsv\u000e\u0000\u0000\u0000\u0013\nw\u0000\u0004\nstyp\nv\u0000\b\u000bstypsims\u000bu\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\nt\u0000\u0004\npres\u000bs\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\nr\u0000\u0004\nTO \nq\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\np\u0000\u0004\nbtns\no\u0000\u0004\ndflt\u0003n\u0000\u0004\nm\u0000\u0004\nbhit\u000bl\u0000\u00050\u0000\u0001x\u0000\u0000\nk\u0000\u0004\nfile\nj\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011\u0000l\f\u0000\u0003O,EO\u0012\u0000\u0007j\f\u0000\tUOEOj\f\u0000\fEOEOa\u0000\u0010E`\u0000\u0011Oa\u0000\u0012\u0012\u0000*a\u0000\u0013k\/a\u0000\u0014[a\u0000\u0015,\\Za\u0000\u001681E`\u0000\u0017O_\u0000\u0017a\u0000\u0018\/E`\u0000\u0019Oa\u0000\u001a\b\u001d\u0000\u0010a\u0000\u001b_\u0000\u0019l\f\u0000\u001cY\u0000wa\u0000\u001d\b\u001d\u0000Va\u0000\u001ea\u0000\u001fa\u0000 a\u0000!lva\u0000\"la\u0000#\f\u0000\u0003Oa\u0000$,E`\u0000%O_\u0000%a\u0000&\u0000\u001d\u0000\fa\u0000'j\f\u0000\u0003Y\u0000\u001c_\u0000%a\u0000(\u0000\u001d\u0000\u0011*a\u0000)a\u0000*\/j\f\u0000+Y\u0000\u0003hY\u0000\u001ba\u0000,\b\u001d\u0000\u0012_\u0000\u0011a\u0000\u001b_\u0000\u0019l\f\u0000\u001cY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0019\u0000\u0013 Render and Message\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000&\u0000 \u0000R\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000a\u0000n\u0000d\u0000 \u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\f\u0000\r\u0001\u0000\u0000\f\u0000\f\u0000+\u0000% A rendering and notification service\u0000\u0002\u0000\u0000\u000e\u0000\r\u0000\u0001\u0000\u000e\u0011\u0000\u000e\u0000J\u0000 \u0000A\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000i\u0000n\u0000g\u0000 \u0000a\u0000n\u0000d\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0002\u0000\u000b\u0000\u0002\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u0000\u0000\f\u0000\u0011\u0000\u0017\u0000\u0011 by Axel Villamil\u0000\u0002\u0000\u0000\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\"\u0000 \u0000b\u0000y\u0000 \u0000A\u0000x\u0000e\u0000l\u0000 \u0000V\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0002\u0000\u0010\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u0000\u0000\f\u0000\u0018\u0000\u001c\u0000\u0016 Get users credentials\u0000\u0002\u0000\u0000\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000,\u0000 \u0000G\u0000e\u0000t\u0000 \u0000u\u0000s\u0000e\u0000r\u0000s\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001d\u0000\u001e\u0001\u0000\u0000\f\u0000\u001d\u0000T\u0000N must be exact name, email and phone associated with your iMessage credentials\u0000\u0002\u0000\u0000\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000 \u0000m\u0000u\u0000s\u0000t\u0000 \u0000b\u0000e\u0000 \u0000e\u0000x\u0000a\u0000c\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000,\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000 \u0000a\u0000n\u0000d\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000c\u0000r\u0000e\u0000d\u0000e\u0000n\u0000t\u0000i\u0000a\u0000l\u0000s\u0002\u0000\u001c\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0000%\u0001\u0000\u0000\f\u0000$\u0000Q\u0000K display dialog \"Enter your iMessage email\" default answer \"your@email.com\"\u0000\u0002\u0000\u0000\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000i\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000\"\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000a\u0000n\u0000s\u0000w\u0000e\u0000r\u0000 \u0000\"\u0000y\u0000o\u0000u\u0000r\u0000@\u0000e\u0000m\u0000a\u0000i\u0000l\u0000.\u0000c\u0000o\u0000m\u0000\"\u0002\u0000#\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000)\u0000*\u0001\u0000\u0000\f\u0000)\u0000+\u0000% set email to text returned of result\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000+\u0011\u0000+\u0000J\u0000 \u0000s\u0000e\u0000t\u0000 \u0000e\u0000m\u0000a\u0000i\u0000l\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0002\u0000(\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000.\r\u0000.\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\/\u00000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00001\u000e\u00001\u0000\u0001\u00002\u0011\u00002\u0000D\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000p\u0000h\u0000o\u0000n\u0000e\u0000 \u0000n\u0000u\u0000m\u0000b\u0000e\u0000r\u0006\u00000\u0000\u0003\u00003\n\u0000\u0004\ndtxt\r\u00003\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u00004\u000e\u00004\u0000\u0001\u00005\u0011\u00005\u0000\u0016\u00001\u00006\u00004\u00007\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0000X\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u00006\u00007\r\u00006\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u00008\r\u00008\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u00009\u0000:\r\u00009\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000;\u0000<\r\u0000;\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u0000<\u0000\u00011\u0000\u0000\u0000\b\u0000\t\n\u0000\u0004\nrslt\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00007\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000?\u0000@\u0001\u0000\u0000\f\u0000?\u0000G\u0000Adisplay dialog \"Enter your full name\" default answer \"First Last\"\u0000\u0002\u0000\u0000\u000e\u0000@\u0000\u0001\u0000A\u0011\u0000A\u0000\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000E\u0000n\u0000t\u0000e\u0000r\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000f\u0000u\u0000l\u0000l\u0000 \u0000n\u0000a\u0000m\u0000e\u0000\"\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000a\u0000n\u0000s\u0000w\u0000e\u0000r\u0000 \u0000\"\u0000F\u0000i\u0000r\u0000s\u0000t\u0000 \u0000L\u0000a\u0000s\u0000t\u0000\"\u0002\u0000>\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000D\u0000E\u0001\u0000\u0000\f\u0000D\u0000-\u0000'set fullName to text returned of result\u0000\u0002\u0000\u0000\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0000N\u0000s\u0000e\u0000t\u0000 \u0000f\u0000u\u0000l\u0000l\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000x\u0000t\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000e\u0000d\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000s\u0000u\u0000l\u0000t\u0002\u0000C\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u0000\u0016\u0000\u0010 Run rendify.jsx\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000 \u0000 \u0000R\u0000u\u0000n\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0018\u0000R\r\u0000R\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u0000S\u0000T\r\u0000S\u0000\u0003l\u0000\u0003\u0000\u0012\u0000\u0017\u0000U\u0000V\u0000W\r\u0000U\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0017\u0000X\u0000Y\u0000Z\r\u0000X\u0000\u0003I\u0000\u0001\u0000\u0012\u0000\u0017\u0000[\n\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\r\u0000[\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\\\u000e\u0000\\\u0000\u0001\u0000]\u0011\u0000]\u0000\u0000\/\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\/\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000\/\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000\/\u0000A\u0000E\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0002\u0000\u0000\f\u0000Y\u00005\u0000\/ Change depending on path of rendify.jsx script\u0000\u0002\u0000\u0000\u000e\u0000Z\u0000\u0001\u0000^\u0011\u0000^\u0000^\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000j\u0000s\u0000x\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\f\u0000V\u00003\u0000- Change depending on version of After Effects\u0000\u0002\u0000\u0000\u000e\u0000W\u0000\u0001\u0000_\u0011\u0000_\u0000Z\u0000 \u0000C\u0000h\u0000a\u0000n\u0000g\u0000e\u0000 \u0000d\u0000e\u0000p\u0000e\u0000n\u0000d\u0000i\u0000n\u0000g\u0000 \u0000o\u0000n\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\r\u0000T\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000`\u000f\u0000`\u0002R\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FXTC\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0001\f\u001fAdobe After Effects CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\f\u04e0@\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001dAdobe After Effects CC 2015.3\u0000\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u04e0x\u0000\u0000\u0000\u0001\u0000\b\u0001\f\u0000OI\u0000\u0002\u0000YMacintosh HD:Applications:\u0000Adobe After Effects CC 2015.3:\u0000Adobe After Effects CC 2015.app\u0000\u0000\u000e\u0000@\u0000\u001f\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000JApplications\/Adobe After Effects CC 2015.3\/Adobe After Effects CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000e\u0000f\u0001\u0000\u0000\f\u0000e\u0000&\u0000 Read string from jsx error file\u0000\u0002\u0000\u0000\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000@\u0000 \u0000R\u0000e\u0000a\u0000d\u0000 \u0000s\u0000t\u0000r\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000j\u0000s\u0000x\u0000 \u0000e\u0000r\u0000r\u0000o\u0000r\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000d\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001c\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000m\u0000n\r\u0000m\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000o\u000e\u0000o\u0000\u0001\u0000p\u0011\u0000p\u0000X\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000a\u0000x\u0000e\u0000l\u0000v\u0000i\u0000l\u0000l\u0000a\u0000m\u0000i\u0000l\u0000\/\u0000D\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000\/\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000E\u0000r\u0000r\u0000o\u0000r\u0000.\u0000t\u0000x\u0000t\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0003l\u0000\u0002\u0000\u001d\u0000$\u0000s\r\u0000s\u0000\u0002r\u0000\u0000\u0000\u001d\u0000$\u0000t\u0000u\r\u0000t\u0000\u0003I\u0000\u0002\u0000\u001d\u0000\"\u0000v\n\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000v\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\n0\u0000\u0006myfile\u0000\u0000\u0002\u0000\u0000\r\u0000u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000r\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0003l\u0000\u0002\u0000%\u0000(\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000%\u0000(\u0000|\u0000}\r\u0000|\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000~\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000\\\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000c\u0000o\u0000m\u0000p\u0000l\u0000e\u0000t\u0000e\u0000 =\u000e\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000)\u00000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000)\u00000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000)\u0000,\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000x\u0000Y\u0000o\u0000u\u0000r\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000o\u0000n\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000i\u0000t\u0000e\u0000m\u0000.\u0000 \u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000h\u0000e\u0000a\u0000d\u0000i\u0000n\u0000g\u0000 \u0000h\u0000o\u0000m\u0000e\u0000!\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\blmessage\u0000\blMessage\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000+\u0000% Checks if jsx render queue is empty \u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000 \u0000C\u0000h\u0000e\u0000c\u0000k\u0000s\u0000 \u0000i\u0000f\u0000 \u0000j\u0000s\u0000x\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000e\u0000m\u0000p\u0000t\u0000y\u0000 \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00001\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00001\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u00007\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00007\u0000P\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u00007\u0000L\u0000\u0000\r\u0000\u0000\u00024\u0001\u0002\u00007\u0000=\u0000\n\u0000\u0004\nicsv\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0000\u0001\r\u0000\u0000\u0002=\u0000\u0000\u0000@\u0000K\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000E\n\u0000\u0004\nstyp\r\u0000\u0000\u0001m\u0000\u0000\u0000F\u0000J\n\u0000\b\u000bstypsims\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000Q\u0000]\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000Q\u0000Y\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000T\u0000Y\u0000\n\u0000\u0004\npres\r\u0000\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\r\u0000\u0000\u0001o\u0000\u0000\u0000Q\u0000T\u000b\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000^\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000^\u0000c\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000^\u0000_\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00001\r\u0000\u0000\u0003I\u0000\u0002\u0000f\u0000q\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000f\u0000g\u000b\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0001o\u0000\u0000\u0000j\u0000m\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000t\u0000y\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000t\u0000u\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000|\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000P\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000a\u0000d\u0000d\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000 \u0000t\u0000o\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000.\u0000\r\u0000 \u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000'\u0000R\u0000e\u0000a\u0000d\u0000y\u0000'\u0000 \u0000o\u0000n\u0000c\u0000e\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000i\u0000s\u0000 \u0000f\u0000i\u0000l\u0000l\u0000e\u0000d\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nbtns\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000R\u0000e\u0000a\u0000d\u0000y\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\ndflt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nbhit\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000C\u0000a\u0000n\u0000c\u0000e\u0000l\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000:\u0000Y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000c\u0000a\u0000n\u0000c\u0000e\u0000l\u0000e\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000o\u0000g\u0000r\u0000a\u0000m\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002=\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000R\u0000e\u0000a\u0000d\u0000y\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000~\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000E\u0000f\u0000f\u0000e\u0000c\u0000t\u0000s\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u00003\u0000:\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0000:\u0000r\u0000e\u0000n\u0000d\u0000i\u0000f\u0000y\u0000.\u0000s\u0000c\u0000p\u0000t\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\baenumber\u0000\bAEnumber\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u00003\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\blmessage\u0000\blMessage\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nTO \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\u0006\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00004\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000fez!\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001V\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001d\u0012H+\u0000\u0000\u0000OI\fMessages.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000O\u0018\u0374\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u001e1R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?\u0000\u0000\u0000\u0001\u0000\u0004\u0000OI\u0000\u0002\u0000'Macintosh HD:Applications:\u0000Messages.app\u0000\u0000\u000e\u0000\u001a\u0000\f\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0019Applications\/Messages.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\u0000\u0002\u00006\u0000\u0002\u0000\u0000\u0002\u0000P\u0000\u0002\u0000\u0000\u0002\u0000j\u0000\u0002\u0000\u0000\u0002\u0000q\u0000\u0002\u0000\u0000\u0002\u0000y\u0001\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0001\u0001\u0002\u0001\u0001\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000-\u00001~\u00004}|{z\u0000`\u0000\\y\u0000oxwv\u0000~u\u0000t\u0000s\u0001\u0002rqpon\u0000ml\u0000\u0000k\u0000\u0000jihg\u0000\u0000\u0000f\u0000e\u0000\n~\u0000\u0004\ndtxt\n}\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n|\u0000\u0004\nrslt\n{\u0000\u0004\nttxt\u000bz\u0000\u001a0\u0000\u000bphonenumber\u0000\u000bphoneNumber\ny\u0000\u0018.miscfilenull\u0000\u0000\u0000\u0000\u0000****\u000bx\u0000\n0\u0000\u0006myfile\u0000\u0000\nw\u0000\u0018.rdwrread****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000bv\u0000\u00140\u0000\baenumber\u0000\bAEnumber\u000bu\u0000\u00140\u0000\bsmessage\u0000\bsMessage\u000bt\u0000\u00140\u0000\blmessage\u0000\blMessage\ns\u0000\u0004\nicsv\u000e\u0001\u0002\u0000\u0000\u0013\nr\u0000\u0004\nstyp\nq\u0000\b\u000bstypsims\u000bp\u0000\u001e0\u0000\rtargetservice\u0000\rtargetService\no\u0000\u0004\npres\u000bn\u0000\u001a0\u0000\u000btargetbuddy\u0000\u000btargetBuddy\nm\u0000\u0004\nTO \nl\u0000\u0018.ichtsendnull\u0000\u0000\u0000\u0000\u0000****\nk\u0000\u0004\nbtns\nj\u0000\u0004\ndflt\u0003i\u0000\u0004\nh\u0000\u0004\nbhit\u000bg\u0000\u00050\u0000\u0001x\u0000\u0000\nf\u0000\u0004\nfile\ne\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u0011\u0000l\f\u0000\u0003O,EO\u0012\u0000\u0007j\f\u0000\tUOEOj\f\u0000\fEOEOa\u0000\u0010E`\u0000\u0011Oa\u0000\u0012\u0012\u0000*a\u0000\u0013k\/a\u0000\u0014[a\u0000\u0015,\\Za\u0000\u001681E`\u0000\u0017O_\u0000\u0017a\u0000\u0018\/E`\u0000\u0019Oa\u0000\u001a\b\u001d\u0000\u0010a\u0000\u001b_\u0000\u0019l\f\u0000\u001cY\u0000wa\u0000\u001d\b\u001d\u0000Va\u0000\u001ea\u0000\u001fa\u0000 a\u0000!lva\u0000\"la\u0000#\f\u0000\u0003Oa\u0000$,E`\u0000%O_\u0000%a\u0000&\u0000\u001d\u0000\fa\u0000'j\f\u0000\u0003Y\u0000\u001c_\u0000%a\u0000(\u0000\u001d\u0000\u0011*a\u0000)a\u0000*\/j\f\u0000+Y\u0000\u0003hY\u0000\u001ba\u0000,\b\u001d\u0000\u0012_\u0000\u0011a\u0000\u001b_\u0000\u0019l\f\u0000\u001cY\u0000\u0003hU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c374b0aa9f23e03575bbf91446b1027e0ba73fac","subject":"update from darwin11","message":"update from darwin11\n","repos":"rcmdnk\/AppleScript","old_file":"windowSizeAll.applescript","new_file":"windowSizeAll.applescript","new_contents":"-- app to be excepted\nset expApp to {\"thunderbird-bin\", \"XRG\", \"Skype\"}\n\n-- app to be half size, in left monitor (0.7 times full)\nset halfSizeApp_L to {}\n\n-- app to be half size, in right monitor\nset halfSizeApp_R to {\"AdobeReader\"}\n\n-- app only to be moved, in left monitor\nset noResizeApp_L to {}\n\n-- app only to be moved, in right monitor\nset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\n-- app to be moved left\nset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\n-- app to be moved right\nset app_R to {\"iTerm\"}\n\n-- get screen size\ntell application \"Finder\"\n\tset scriptPath to (path to me)'s folder as text\nend tell\nset windowSizeScpt to scriptPath & \"windowSize.scpt\"\nset windowSize to load script file windowSizeScpt\n\n-- main screen\nset svs to windowSize's getVisibleFrame(100, 100)\nset dPosX to item 1 of svs\nset dPosY to item 2 of svs\nset dWidth to item 3 of svs\nset dHeight to item 4 of svs\n\n-- try to get left screen\nset dPosX_L to dPosX\nset dPosY_L to dPosY\ntry\n\tset svsL to windowSize's getVisibleFrame(-100, 100)\n\tset dPosX_L to item 1 of svsL\n\tset dPosY_L to item 2 of svsL\nend try\n\n-- try to get right screen\nset dPosX_R to dPosX\nset dPosY_R to dPosY\ntry\n\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 100, 100)\n\tset dPosX_R to item 1 of svsR\n\tset dPosY_R to item 2 of svsR\nend try\n\n\n-- get application name\ntell application \"System Events\"\n\tset appList to (get name of every application process whose visible is true)\nend tell\n\n-- repeat for all app\nrepeat with appName in appList\n\tif appName is not in expApp then\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\ttell process appName\n\t\t\t\t\tset nW to number of windows\n\t\t\t\t\tdisplay dialog appName & \" \" & nW\n\t\t\t\t\t\n\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\tlog appName & i\n\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\tlog \"app_L\" & appName\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\tlog \"app_R\" & appName\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\tend if\nend repeat\n","old_contents":"-- app to be excepted\nset expApp to {\"thunderbird-bin\", \"XRG\", \"Skype\"}\n\n-- app to be half size, in left monitor (0.7 times full)\nset halfSizeApp_L to {}\n\n-- app to be half size, in right monitor\nset halfSizeApp_R to {\"AdobeReader\"}\n\n-- app only to be moved, in left monitor\nset noResizeApp_L to {}\n\n-- app only to be moved, in right monitor\nset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\n-- app to be moved left\nset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\n-- app to be moved right\nset app_R to {\"iTerm\"}\n\n-- get screen size\ntell application \"Finder\"\n\tset scriptPath to (path to me)'s folder as text\nend tell\nset windowSizeScpt to scriptPath & \"windowSize.scpt\"\nset windowSize to load script file windowSizeScpt\n\n-- main screen\nset svs to windowSize's getVisibleFrame(100, 100)\nset dPosX to item 1 of svs\nset dPosY to item 2 of svs\nset dWidth to item 3 of svs\nset dHeight to item 4 of svs\n\n-- try to get left screen\nset dPosX_L to dPosX\nset dPosY_L to dPosY\ntry\n\tset svsL to windowSize's getVisibleFrame(-100, 100)\n\tset dPosX_L to item 1 of svsL\n\tset dPosY_L to item 2 of svsL\nend try\n\n-- try to get right screen\nset dPosX_R to dPosX\nset dPosY_R to dPosY\ntry\n\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 100, 100)\n\tset dPosX_R to item 1 of svsR\n\tset dPosY_R to item 2 of svsR\nend try\n\n\n-- get application name\ntell application \"System Events\"\n\tset appList to (get name of every application process whose visible is true)\nend tell\n\n-- repeat for all app\nrepeat with appName in appList\n\tif appName is not in expApp then\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\ttell process appName\n\t\t\t\t\tset nW to number of windows\n\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\tlog appName & i\n\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7})\n\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0})\n\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0})\n\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\tlog \"app_L\" & appName\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L})\n\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\tlog \"app_R\" & appName\n\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\tend try\n\t\tend tell\n\tend if\nend repeat\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9116c505f490661b9964c3ce1f964ea524bc1b48","subject":"Removes starred property","message":"Removes starred property","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_track.applescript","new_file":"lib\/scripts\/get_track.applescript","new_contents":"on escape_quotes(string_to_escape)\n set AppleScript's text item delimiters to the \"\\\"\"\n set the item_list to every text item of string_to_escape\n set AppleScript's text item delimiters to the \"\\\\\\\"\"\n set string_to_escape to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n set ctrack to \"{\"\n set ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n set ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n set ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n set ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n set ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n set ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n set ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n set ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n set ctrack to ctrack & \"}\"\nend tell\n","old_contents":"on escape_quotes(string_to_escape)\n set AppleScript's text item delimiters to the \"\\\"\"\n set the item_list to every text item of string_to_escape\n set AppleScript's text item delimiters to the \"\\\\\\\"\"\n set string_to_escape to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n set ctrack to \"{\"\n set ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n set ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n set ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n set ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n set ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n set ctrack to ctrack & \",\\\"starred\\\": \" & current track's starred\n set ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n set ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n set ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n set ctrack to ctrack & \"}\"\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0a1bd353fcccc1551f34d13ae8eb8b6e2d015937","subject":"Remove delay","message":"Remove delay\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/click_install.scpt","new_file":"script\/click_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\nset timeoutSeconds to 2.0\nset uiScript to \"click UI Element 4 of window 1 of application process \\\"Install Command Line Developer Tools\\\"\"\nmy doWithTimeout(uiScript, timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\ndelay 2.0\n\nset timeoutSeconds to 2.0\nset uiScript to \"click UI Element 4 of window 1 of application process \\\"Install Command Line Developer Tools\\\"\"\nmy doWithTimeout(uiScript, timeoutSeconds)\n\non doWithTimeout(uiScript, timeoutSeconds)\n set endDate to (current date) + timeoutSeconds\n repeat\n try\n run script \"tell application \\\"System Events\\\"\n\" & uiScript & \"\nend tell\"\n exit repeat\n on error errorMessage\n if ((current date) > endDate) then\n error \"Can not \" & uiScript\n end if\n end try\n end repeat\nend doWithTimeout\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6d64b541e4b9b155a7e76ea47b41ae4b06f2caaf","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c94e31e907b32207666fc1c789a2f2f30792b9f4","subject":"Set reproducibility back to \"Always\"","message":"Set reproducibility back to \"Always\"\n\n\ngit-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@56891 91177308-0d34-0410-b5e6-96231b3b80d8\n","repos":"llvm-mirror\/clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang","old_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\b\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000M\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000I\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000I\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000N\u0000V\u0000S\u0000T\r\u0000S\u0000\u0002n\u0000\u0000\u0000N\u0000R\u0000U\u0000V\r\u0000U\u0000\u00024\u0000\u0000\u0000O\u0000R\u0000W\n\u0000\u0004\ncobj\r\u0000W\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\b\r\u0000V\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000W\u0000w\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0002?\u0000\u0000\u0000W\u0000Z\u0000]\u0000^\r\u0000]\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000^\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\b\r\u0000[\u0000\u0002r\u0000\u0000\u0000]\u0000n\u0000_\u0000`\r\u0000_\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000a\u0000b\r\u0000a\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000c\u0000d\n\u0000\u0004\ncobj\r\u0000c\u0000\u0001m\u0000\u0000\u0000b\u0000f\u0003\u0000\t\r\u0000d\u0000\u0001o\u0000\u0000\u0000g\u0000i\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000b\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000\\\u0000\u0002r\u0000\u0000\u0000q\u0000w\u0000e\u0000f\r\u0000e\u0000\u0001J\u0000\u0000\u0000q\u0000s\u0002\u0000\u0000\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000Y\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000x\u0000\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000x\u0000\u0000k\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000y\u0000z\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000h\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000\u0000\u0000~\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0000 set myClassificationCode to 4 -- 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00018\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00004\u0000 \u0000-\u0000-\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0016\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000#\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000*\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000&\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000-\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000<\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u00007\u0000:\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0003\u0000\u0001m\u0000\u0000\u00008\u00009\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002r\u0000\u0000\u0000G\u0000P\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002b\u0000\u0000\u0000G\u0000N\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002b\u0000\u0000\u0000G\u0000L\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000G\u0000J\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0002\u0000\n\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0002r\u0000\u0000\u0000Q\u0000Z\u0001 \u0001!\r\u0001 \u0000\u0002b\u0000\u0000\u0000Q\u0000X\u0001\"\u0001#\r\u0001\"\u0000\u0002b\u0000\u0000\u0000Q\u0000V\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0000Q\u0000T\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000Q\u0000R}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001'\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001%\u0000\u0001o\u0000\u0000\u0000T\u0000U|\u000b|\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001#\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000\n\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002r\u0000\u0000\u0000[\u0000d\u0001.\u0001\/\r\u0001.\u0000\u0002b\u0000\u0000\u0000[\u0000b\u00010\u00011\r\u00010\u0000\u0002b\u0000\u0000\u0000[\u0000`\u00012\u00013\r\u00012\u0000\u0002b\u0000\u0000\u0000[\u0000^\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000[\u0000\\z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\r\u00015\u0000\u0001m\u0000\u0000\u0000\\\u0000]\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u00013\u0000\u0001o\u0000\u0000\u0000^\u0000_y\u000by\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u00011\u0000\u0001m\u0000\u0000\u0000`\u0000a\u00018\u000e\u00018\u0000\u0001\u00019\u0011\u00019\u0000\u0002\u0000\n\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001-\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000e\u0000r\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0000e\u0000p\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0000e\u0000l\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0000e\u0000j\u0001B\u0001C\r\u0001B\u0000\u0001o\u0000\u0000\u0000e\u0000fw\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001C\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u0001A\u0000\u0001o\u0000\u0000\u0000j\u0000kv\u000bv\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u0001?\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0002\u0000\n\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001;\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0002r\u0000\u0000\u0000s\u0000\u0001J\u0001K\r\u0001J\u0000\u0002b\u0000\u0000\u0000s\u0000~\u0001L\u0001M\r\u0001L\u0000\u0002b\u0000\u0000\u0000s\u0000z\u0001N\u0001O\r\u0001N\u0000\u0002b\u0000\u0000\u0000s\u0000x\u0001P\u0001Q\r\u0001P\u0000\u0001o\u0000\u0000\u0000s\u0000tt\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001Q\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001O\u0000\u0001o\u0000\u0000\u0000x\u0000ys\u000bs\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001M\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000\u0002\u0000\n\r\u0001K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001I\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0000\u0001X\u0001Y\r\u0001X\u0000\u0002b\u0000\u0000\u0000\u0000\u0001Z\u0001[\r\u0001Z\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\\\u0001]\r\u0001\\\u0000\u0002b\u0000\u0000\u0000\u0000\u0001^\u0001_\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0000\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001]\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0002\u0000\n\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001W\u0000\u0002\u0001dn\r\u0001d\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001em\u0001f\u0001gl\r\u0001e\u0000\u0002r\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0000\u0000\u0001l\u0001m\r\u0001l\u0000\u0002b\u0000\u0000\u0000\u0000\u0001n\u0001o\r\u0001n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u0002b\u0000\u0000\u0000\u0000\u0001r\u0001s\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u0000\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001o\u0000\u0001m\u0000\u0000\u0000\u0000\u0001v\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000\u0004\u0000:\u0000 \r\u0001m\u0000\u0002n\u0000\u0000\u0000\u0000\u0001x\u0001y\r\u0001x\u0000\u00024\u0000\u0000\u0000\u0000i\u0001z\ni\u0000\u0004\ncobj\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001y\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001{\u000e\u0001{\u0000\u0001\u0001|\u0011\u0001|\u0000\u0002\u0000\n\r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00070\u0000\u0003res\u0000\u0000\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0000e\u0003e\u0000\u0001\r\u0001g\u0000\u0003l\u0000\u0005\u0000\u0000\u0001}dc\r\u0001}\u0000\u0002n\u0000\u0000\u0000\u0000\u0001~\u0001\r\u0001~\u0000\u00011\u0000\u0000\u0000\u0000b\nb\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001l\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000`_\u0001\n`\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001_\u0000\u0000\u0006\u0001\u0000\u0003^\u0001\u0001\n^\u0000\u0004\ndesc\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001]\\\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0006\u0001\u0000\u0003Z\u0001\u0001\nZ\u0000\u0004\ndiag\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001YX\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000W\u000bW\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0006\u0001\u0000\u0003V\u0001\u0001\nV\u0000\u0004\ncmvr\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001UT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0001U\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u0000\u0003R\u0001\u0001\nR\u0000\u0004\ncmnm\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001QP\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0001\u0000\u0003N\u0001\u0001\nN\u0000\u0004\nrcod\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ML\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000K\u000bK\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0001M\u0000\u0000\u0001L\u0000\u0000\u0006\u0001\u0000\u0003J\u0001\u0001\nJ\u0000\u0004\norig\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001IH\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000G\u000bG\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0001I\u0000\u0000\u0001H\u0000\u0000\u0006\u0001\u0000\u0003F\u0001\u0001\nF\u0000\u0004\npbti\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ED\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0001E\u0000\u0000\u0001D\u0000\u0000\u0006\u0001\u0000\u0003B\u0001\u0001\nB\u0000\u0004\nconf\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001A@\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0001A\u0000\u0000\u0001@\u0000\u0000\u0006\u0001\u0000\u0003>\u0001\u0001\n>\u0000\u0004\nclcd\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001=<\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000;\u000b;\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0001=\u0000\u0000\u0001<\u0000\u0000\u0006\u0001\u0000\u0003:\u00019\n:\u0000\u0004\ndsav\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u00069\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u00003\u0001\u0001\u00013\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0001\"\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u00001\n1\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\"\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0002\u0001\u000f\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0001\u0003\u0001\u000f,\u0001\u0001\n,\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0001\t\u0001\u000b+\u0003+\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000e*\u0003*\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003)\u000b)\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001'\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0012\u0001\"\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001!\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u001d\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u001b\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u0017\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0015\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016&\u000b&\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001c%\u000b%\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001#\u0001#$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001#\u00010\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001.\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001*\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001(\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001#\u0001$!\u000b!\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001$\u0001'\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001(\u0001) \u000b \u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0001*\u0001-\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00011\u00011\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u00011\u0001\u0001\u001b\u0001\u0001\u001a\r\u0001\u0000\u0001k\u0000\u0000\u0001@\u0001{\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001@\u0001R\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001P\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001L\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001E\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001@\u0001A\u0019\u000b\u0019\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001E\u0001K\u0001\u0018\u0017\r\u0001\u0000\u0002n\u0000\u0000\u0001E\u0001K\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001F\u0001K\u0016\u0001\n\u0016\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001I\u0001J\u0015\u000b\u0015\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001E\u0001F\u0014\u000b\u0014\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001S\u0001k\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001S\u0001g\u0012\u0011\u0001\n\u0012\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0011\u0000\u0000\u0006\u0001\u0000\u0003\u0010\u0001\u0001\n\u0010\u0000\u0004\nmr11\r\u0001\u0000\u0003l\u0000\u0005\u0001W\u0001]\u0001\u000f\u000e\r\u0001\u0000\u0002n\u0000\u0000\u0001W\u0001]\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001X\u0001]\r\u0001\n\r\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001[\u0001\\\f\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001W\u0001X\u000b\u000b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0006\u0001\u0000\u0003\n\u0002\u0000\t\n\n\u0000\u0004\npbid\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001`\u0001a\b\u000b\b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\t\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0001\u0006\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0001l\u0001{\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0001l\u0001y\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0001l\u0001u\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0001l\u0001q\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0001l\u0001m\u0005\u000b\u0005\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\t\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0014\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \r\u0002\u0007\u0000\u0001o\u0000\u0000\u0001q\u0001t\u0004\u000b\u0004\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000\n\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0006\u0000\u0000\u000b\u001b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00014\u00015\u0002\u0003\u0002\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u00015\u0001;\u0002\u000e\u0001\u0000\r\u0002\u000e\u0000\u0002n\u0000\u0000\u00015\u0001;\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00011\u0000\u0000\u00016\u0001:\n\u0000\u0004\nleng\r\u0002\u0010\u0000\u0001o\u0000\u0000\u00015\u00016\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0002r\u0000\u0000\u0001\u0001\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001b\u000e\u0002\u001b\u0000\u0001\u0002\u001c\u0011\u0002\u001c\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002\u0018\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000\u0002\u0000\n\r\u0002\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002\u0014\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0003I\u0000\u0002\u0001\u0001\u0002 \n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0002 \u0000\u0003\u0002!\u0002\"\n\u0000\u0004\npbid\r\u0002!\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u0002\"\u0000\u0003\u0002#\n\u0000\u0004\nkeyi\r\u0002#\u0000\u0001m\u0000\u0000\u0001\u0001\u0007\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002$\u0002%\r\u0002$\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002%\u0000\u0002\u0002&\r\u0002&\u0000\u0001L\u0000\u0000\u0001\u0001\u0002'\r\u0002'\u0000\u0002b\u0000\u0000\u0001\u0001\u0002(\u0002)\r\u0002(\u0000\u0002b\u0000\u0000\u0001\u0001\u0002*\u0002+\r\u0002*\u0000\u0002b\u0000\u0000\u0001\u0001\u0002,\u0002-\r\u0002,\u0000\u0002b\u0000\u0000\u0001\u0001\u0002.\u0002\/\r\u0002.\u0000\u0001m\u0000\u0000\u0001\u0001\u00020\u000e\u00020\u0000\u0001\u00021\u0011\u00021\u0000\u0002\u0000(\r\u0002\/\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002-\u0000\u0001m\u0000\u0000\u0001\u0001\u00022\u000e\u00022\u0000\u0001\u00023\u0011\u00023\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002+\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002)\u0000\u0001m\u0000\u0000\u0001\u0001\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00026\u000f\u00026\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u00027\r\u00027\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u00028\u00029\u0002:\u0001\u0000\u0000\u0010\u00028\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u00029\u0000\u0007\u0010\u0000\b\u0002;\u0002<\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0002;\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0002<\u0000\u0016\u0000\u0015\u0000\u001e\n\u0000\u0004\nleng\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\b\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0003\u0000\u0004\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0005\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0006\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0007\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\t\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EOa\u0000\u0010\/E`\u0000\u0011O\/E`\u0000\u0012O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0013\\Z2E`\u0000\u0014Y\u0000\bjvE`\u0000\u0014O*_\u0000\u0011_\u0000\u0012_\u0000\u0014a\u0000\u0013+\u0000\u0015EO\u000f\u000f\u000e\u0002:\u0000\u0007\u0010\u0000\u0002=\u0002>\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u0002?\u0003\u0000\t\u000e\u0002?\u0000\t\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u0002=\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u0002>\u0000@\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0004\u0001\u0006\u0001\u000e\u0001\u001a\u0001\u001c\u0001(\u0001*\u00016\u00018\u0001D\u0001F\u0001R\u0001T\u0001`\u0001b\u0001t\u0001v\u0001{\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u001b\u0002\u001d\u00020\u00022\u00024\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\ndesc\n\u0000\u0004\ndiag\n\u0000\u0004\ncmvr\n\u0000\u0004\ncmnm\n\u0000\u0004\nrcod\n\u0000\u0004\norig\n\u0000\u0004\npbti\n\u0000\u0004\nconf\n\u0000\u0004\nclcd\n\u0000\u0004\ndsav\u0003\u0000\u0014\n\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\u0003\u0000\u0004\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001kEOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%%EOa\u0000\u0010%%a\u0000\u0011%EOa\u0000\u0012%%a\u0000\u0013%EOa\u0000\u0014%%a\u0000\u0015%EO\u0017\u0000+ka\u0000\u0016,Ekh\u001c\u0000\ra\u0000\u0017%%a\u0000\u0018%a\u0000\u0019\/%a\u0000\u001a%E[OYY\u0000*a\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%\f\u0000&EO\u0014\u0000\fa\u0000'&EW\u0000'X\u0000(\u0000)[a\u0000*\\[Zm\\Zi2EOa\u0000+%a\u0000,%%a\u0000-%\u000fOa\u0000.%%a\u0000\/%EO\u0017\u0000Nka\u0000\u0016,Ekh\u001c\u0000\ra\u00000%a\u0000\u0019\/%a\u00001%EO*a\u00002a\u0000\u0019\/a\u00003a\u00004\f\u00005E^\u0000\u0010Oa\u00006%]\u0000\u0010%a\u00007%E[OYOa\u00008%a\u00009%EO*a\u00003a\u0000:a\u0000;a\u00004\f\u0000<Oa\u0000=%a\u0000>%%a\u0000?%\u000fU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\b\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000M\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000I\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000I\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000N\u0000V\u0000S\u0000T\r\u0000S\u0000\u0002n\u0000\u0000\u0000N\u0000R\u0000U\u0000V\r\u0000U\u0000\u00024\u0000\u0000\u0000O\u0000R\u0000W\n\u0000\u0004\ncobj\r\u0000W\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\b\r\u0000V\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000W\u0000w\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0002?\u0000\u0000\u0000W\u0000Z\u0000]\u0000^\r\u0000]\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000^\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\b\r\u0000[\u0000\u0002r\u0000\u0000\u0000]\u0000n\u0000_\u0000`\r\u0000_\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000a\u0000b\r\u0000a\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000c\u0000d\n\u0000\u0004\ncobj\r\u0000c\u0000\u0001m\u0000\u0000\u0000b\u0000f\u0003\u0000\t\r\u0000d\u0000\u0001o\u0000\u0000\u0000g\u0000i\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000b\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000\\\u0000\u0002r\u0000\u0000\u0000q\u0000w\u0000e\u0000f\r\u0000e\u0000\u0001J\u0000\u0000\u0000q\u0000s\u0002\u0000\u0000\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000Y\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000x\u0000\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000x\u0000\u0000k\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000y\u0000z\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000h\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000\u0000\u0000~\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0000 set myClassificationCode to 4 -- 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00018\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00004\u0000 \u0000-\u0000-\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0006\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0016\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000#\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000*\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000&\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000-\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000<\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u00007\u0000:\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0003\u0000\u0001m\u0000\u0000\u00008\u00009\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002r\u0000\u0000\u0000G\u0000P\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002b\u0000\u0000\u0000G\u0000N\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002b\u0000\u0000\u0000G\u0000L\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000G\u0000J\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0002\u0000\n\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0002r\u0000\u0000\u0000Q\u0000Z\u0001 \u0001!\r\u0001 \u0000\u0002b\u0000\u0000\u0000Q\u0000X\u0001\"\u0001#\r\u0001\"\u0000\u0002b\u0000\u0000\u0000Q\u0000V\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0000Q\u0000T\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000Q\u0000R}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001'\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001%\u0000\u0001o\u0000\u0000\u0000T\u0000U|\u000b|\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001#\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000\n\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002r\u0000\u0000\u0000[\u0000f\u0001.\u0001\/\r\u0001.\u0000\u0002b\u0000\u0000\u0000[\u0000d\u00010\u00011\r\u00010\u0000\u0002b\u0000\u0000\u0000[\u0000`\u00012\u00013\r\u00012\u0000\u0002b\u0000\u0000\u0000[\u0000^\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000[\u0000\\z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\r\u00015\u0000\u0001m\u0000\u0000\u0000\\\u0000]\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u00013\u0000\u0001o\u0000\u0000\u0000^\u0000_y\u000by\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u00011\u0000\u0001m\u0000\u0000\u0000`\u0000c\u00018\u000e\u00018\u0000\u0001\u00019\u0011\u00019\u0000\u0002\u0000\n\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001-\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000g\u0000t\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0000g\u0000r\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0000g\u0000n\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0000g\u0000l\u0001B\u0001C\r\u0001B\u0000\u0001o\u0000\u0000\u0000g\u0000hw\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001C\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u0001A\u0000\u0001o\u0000\u0000\u0000l\u0000mv\u000bv\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u0001?\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0002\u0000\n\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001;\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0002r\u0000\u0000\u0000u\u0000\u0001J\u0001K\r\u0001J\u0000\u0002b\u0000\u0000\u0000u\u0000\u0001L\u0001M\r\u0001L\u0000\u0002b\u0000\u0000\u0000u\u0000|\u0001N\u0001O\r\u0001N\u0000\u0002b\u0000\u0000\u0000u\u0000z\u0001P\u0001Q\r\u0001P\u0000\u0001o\u0000\u0000\u0000u\u0000vt\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001Q\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001O\u0000\u0001o\u0000\u0000\u0000z\u0000{s\u000bs\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001M\u0000\u0001m\u0000\u0000\u0000|\u0000\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000\u0002\u0000\n\r\u0001K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001I\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0000\u0001X\u0001Y\r\u0001X\u0000\u0002b\u0000\u0000\u0000\u0000\u0001Z\u0001[\r\u0001Z\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\\\u0001]\r\u0001\\\u0000\u0002b\u0000\u0000\u0000\u0000\u0001^\u0001_\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0000\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001]\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0002\u0000\n\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001W\u0000\u0002\u0001dn\r\u0001d\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001em\u0001f\u0001gl\r\u0001e\u0000\u0002r\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0000\u0000\u0001l\u0001m\r\u0001l\u0000\u0002b\u0000\u0000\u0000\u0000\u0001n\u0001o\r\u0001n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u0002b\u0000\u0000\u0000\u0000\u0001r\u0001s\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u0000\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001o\u0000\u0001m\u0000\u0000\u0000\u0000\u0001v\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000\u0004\u0000:\u0000 \r\u0001m\u0000\u0002n\u0000\u0000\u0000\u0000\u0001x\u0001y\r\u0001x\u0000\u00024\u0000\u0000\u0000\u0000i\u0001z\ni\u0000\u0004\ncobj\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001y\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001{\u000e\u0001{\u0000\u0001\u0001|\u0011\u0001|\u0000\u0002\u0000\n\r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00070\u0000\u0003res\u0000\u0000\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0000e\u0003e\u0000\u0001\r\u0001g\u0000\u0003l\u0000\u0005\u0000\u0000\u0001}dc\r\u0001}\u0000\u0002n\u0000\u0000\u0000\u0000\u0001~\u0001\r\u0001~\u0000\u00011\u0000\u0000\u0000\u0000b\nb\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001l\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000`_\u0001\n`\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001_\u0000\u0000\u0006\u0001\u0000\u0003^\u0001\u0001\n^\u0000\u0004\ndesc\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001]\\\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0006\u0001\u0000\u0003Z\u0001\u0001\nZ\u0000\u0004\ndiag\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001YX\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000W\u000bW\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0006\u0001\u0000\u0003V\u0001\u0001\nV\u0000\u0004\ncmvr\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001UT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0001U\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u0000\u0003R\u0001\u0001\nR\u0000\u0004\ncmnm\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001QP\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0001\u0000\u0003N\u0001\u0001\nN\u0000\u0004\nrcod\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ML\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000K\u000bK\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0001M\u0000\u0000\u0001L\u0000\u0000\u0006\u0001\u0000\u0003J\u0001\u0001\nJ\u0000\u0004\norig\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001IH\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000G\u000bG\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0001I\u0000\u0000\u0001H\u0000\u0000\u0006\u0001\u0000\u0003F\u0001\u0001\nF\u0000\u0004\npbti\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ED\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0001E\u0000\u0000\u0001D\u0000\u0000\u0006\u0001\u0000\u0003B\u0001\u0001\nB\u0000\u0004\nconf\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001A@\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0001A\u0000\u0000\u0001@\u0000\u0000\u0006\u0001\u0000\u0003>\u0001\u0001\n>\u0000\u0004\nclcd\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001=<\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000;\u000b;\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0001=\u0000\u0000\u0001<\u0000\u0000\u0006\u0001\u0000\u0003:\u00019\n:\u0000\u0004\ndsav\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u00069\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u00003\u0001\u0001\u00013\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0001$\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u00001\n1\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0004\u0001$\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0004\u0001\u0013\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0004\u0001\u0011\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0001\u0005\u0001\u0011,\u0001\u0001\n,\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\r+\u0003+\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u0010*\u0003*\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005)\u000b)\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001'\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0014\u0001$\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u001f\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u001d\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u0019\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u0018&\u000b&\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e%\u000b%\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001%\u0001%$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001%\u00012\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u00010\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u0001,\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u0001*\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001%\u0001&!\u000b!\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001&\u0001)\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001*\u0001+ \u000b \u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0001,\u0001\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00013\u00013\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u00013\u0001\u0001\u001b\u0001\u0001\u001a\r\u0001\u0000\u0001k\u0000\u0000\u0001B\u0001}\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001B\u0001T\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001R\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001N\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001G\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001B\u0001C\u0019\u000b\u0019\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001G\u0001M\u0001\u0018\u0017\r\u0001\u0000\u0002n\u0000\u0000\u0001G\u0001M\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001H\u0001M\u0016\u0001\n\u0016\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001K\u0001L\u0015\u000b\u0015\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001G\u0001H\u0014\u000b\u0014\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001N\u0001Q\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001U\u0001m\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001U\u0001i\u0012\u0011\u0001\n\u0012\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0011\u0000\u0000\u0006\u0001\u0000\u0003\u0010\u0001\u0001\n\u0010\u0000\u0004\nmr11\r\u0001\u0000\u0003l\u0000\u0005\u0001Y\u0001_\u0001\u000f\u000e\r\u0001\u0000\u0002n\u0000\u0000\u0001Y\u0001_\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001Z\u0001_\r\u0001\n\r\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001]\u0001^\f\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001Y\u0001Z\u000b\u000b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0006\u0001\u0000\u0003\n\u0002\u0000\t\n\n\u0000\u0004\npbid\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001b\u0001c\b\u000b\b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\t\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0001\u0006\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0001n\u0001}\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0001n\u0001{\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0001n\u0001w\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0001n\u0001s\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0001n\u0001o\u0005\u000b\u0005\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\t\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0014\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \r\u0002\u0007\u0000\u0001o\u0000\u0000\u0001s\u0001v\u0004\u000b\u0004\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0001w\u0001z\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000\n\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0006\u0000\u0000\u000b\u001b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00016\u00017\u0002\u0003\u0002\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u00017\u0001=\u0002\u000e\u0001\u0000\r\u0002\u000e\u0000\u0002n\u0000\u0000\u00017\u0001=\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00011\u0000\u0000\u00018\u0001<\n\u0000\u0004\nleng\r\u0002\u0010\u0000\u0001o\u0000\u0000\u00017\u00018\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0002r\u0000\u0000\u0001\u0001\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001b\u000e\u0002\u001b\u0000\u0001\u0002\u001c\u0011\u0002\u001c\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002\u0018\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000\u0002\u0000\n\r\u0002\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002\u0014\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0003I\u0000\u0002\u0001\u0001\u0002 \n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0002 \u0000\u0003\u0002!\u0002\"\n\u0000\u0004\npbid\r\u0002!\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u0002\"\u0000\u0003\u0002#\n\u0000\u0004\nkeyi\r\u0002#\u0000\u0001m\u0000\u0000\u0001\u0001\u0007\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002$\u0002%\r\u0002$\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002%\u0000\u0002\u0002&\r\u0002&\u0000\u0001L\u0000\u0000\u0001\u0001\u0002'\r\u0002'\u0000\u0002b\u0000\u0000\u0001\u0001\u0002(\u0002)\r\u0002(\u0000\u0002b\u0000\u0000\u0001\u0001\u0002*\u0002+\r\u0002*\u0000\u0002b\u0000\u0000\u0001\u0001\u0002,\u0002-\r\u0002,\u0000\u0002b\u0000\u0000\u0001\u0001\u0002.\u0002\/\r\u0002.\u0000\u0001m\u0000\u0000\u0001\u0001\u00020\u000e\u00020\u0000\u0001\u00021\u0011\u00021\u0000\u0002\u0000(\r\u0002\/\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002-\u0000\u0001m\u0000\u0000\u0001\u0001\u00022\u000e\u00022\u0000\u0001\u00023\u0011\u00023\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002+\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002)\u0000\u0001m\u0000\u0000\u0001\u0001\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00026\u000f\u00026\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u00027\r\u00027\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u00028\u00029\u0002:\u0002;\u0002<\u0002=\u0002>\u0002?\u0002@\u0002A\u0002B\u0002C\u0002D\u0001\u0000\u0000\u0010\u00028\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u00029\u0000\u0007\u0010\u0000\b\u0002E\u0002F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0002E\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0002F\u0000\u0016\u0000\u0015\u0000\u001e\n\u0000\u0004\nleng\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\b\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0003\u0000\u0004\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0005\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0006\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0007\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\t\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EOa\u0000\u0010\/E`\u0000\u0011O\/E`\u0000\u0012O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0013\\Z2E`\u0000\u0014Y\u0000\bjvE`\u0000\u0014O*_\u0000\u0011_\u0000\u0012_\u0000\u0014a\u0000\u0013+\u0000\u0015EO\u000f\u000f\u000e\u0002:\u0000\u0007\u0010\u0000\u0002G\u0002H\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u0002I\u0003\u0000\t\u000e\u0002I\u0000\t\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u0002G\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u0002H\u0000A\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0004\u0001\u0006\u0001\u000e\u0001\u001a\u0001\u001c\u0001(\u0001*\u00016\u00018\u0001D\u0001F\u0001R\u0001T\u0001`\u0001b\u0001t\u0001v\u0001{\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u001b\u0002\u001d\u00020\u00022\u00024\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0006\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\ndesc\n\u0000\u0004\ndiag\n\u0000\u0004\ncmvr\n\u0000\u0004\ncmnm\n\u0000\u0004\nrcod\n\u0000\u0004\norig\n\u0000\u0004\npbti\n\u0000\u0004\nconf\n\u0000\u0004\nclcd\n\u0000\u0004\ndsav\u0003\u0000\u0014\n\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\u0003\u0000\u0004\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001EOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%a\u0000\u0010%EOa\u0000\u0011%%a\u0000\u0012%EOa\u0000\u0013%%a\u0000\u0014%EOa\u0000\u0015%%a\u0000\u0016%EO\u0017\u0000+ka\u0000\u0017,Ekh\u001c\u0000\ra\u0000\u0018%%a\u0000\u0019%a\u0000\u001a\/%a\u0000\u001b%E[OYY\u0000*a\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&\f\u0000'EO\u0014\u0000\fa\u0000(&EW\u0000'X\u0000)\u0000*[a\u0000+\\[Zm\\Zi2EOa\u0000,%a\u0000-%%a\u0000.%\u000fOa\u0000\/%%a\u00000%EO\u0017\u0000Nka\u0000\u0017,Ekh\u001c\u0000\ra\u00001%a\u0000\u001a\/%a\u00002%EO*a\u00003a\u0000\u001a\/a\u00004a\u00005\f\u00006E^\u0000\u0010Oa\u00007%]\u0000\u0010%a\u00008%E[OYOa\u00009%a\u0000:%EO*a\u00004a\u0000;a\u0000<a\u00005\f\u0000=Oa\u0000>%a\u0000?%%a\u0000@%\u000fU\u000f\u0003\u0000\t\u000e\u0002;\u0000\u0001\u0002J\u0011\u0002J\u0001\b\u0000(\u00006\u00002\u00005\u00007\u00004\u00002\u00008\u0000,\u0000 \u0000\"\u0000\"\u0000\"\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \u00006\u00002\u00005\u00007\u00004\u00002\u00008\u0000\n\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00003\u00004\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000I\u0000i\u0000R\u0000E\u0000d\u0000s\u0000.\u0000h\u0000t\u0000m\u0000l\u0000\n\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \u00001\u0000\n\u0000\n\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\u0000\n\u0000\"\u0000\"\u0000\"\u0000)\u000e\u0002<\u0000\u0001\u0002K\u0011\u0002K\u00008\u0000B\u0000u\u0000g\u0000s\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000b\u0000y\u0000 \u0000C\u0000l\u0000a\u0000n\u0000g\u0000 \u0000A\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u000e\u0002=\u0000\u0001\u0002L\u0011\u0002L\u0000\u0002\u0000X\u000e\u0002>\u0000\u0001\u0002M\u0011\u0002M\u0000\u0002\u00003\u000e\u0002?\u0000\u0001\u0002N\u0011\u0002N\u0000\u0000\u000e\u0002@\u0000\u0001\u0002O\u0011\u0002O\u0000\b\u0000l\u0000e\u0000a\u0000k\u000e\u0002A\u0000\u0001\u0002P\u0011\u0002P\u00014\u0000B\u0000u\u0000g\u0000 \u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000a\u0000n\u0000g\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000a\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u0000.\u0000\r\u0000\n\u0000\r\u0000\n\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0000l\u0000e\u0000a\u0000k\u0000\r\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000:\u0000 \u0000\/\u0000V\u0000o\u0000l\u0000u\u0000m\u0000e\u0000s\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000k\u0000r\u0000e\u0000m\u0000e\u0000n\u0000e\u0000k\u0000\/\u0000l\u0000l\u0000v\u0000m\u0000\/\u0000t\u0000o\u0000o\u0000l\u0000s\u0000\/\u0000c\u0000l\u0000a\u0000n\u0000g\u0000\/\u0000t\u0000e\u0000s\u0000t\u0000\/\u0000A\u0000n\u0000a\u0000l\u0000y\u0000s\u0000i\u0000s\u0000\/\u0000C\u0000F\u0000D\u0000a\u0000t\u0000e\u0000.\u0000m\u0000\r\u0000\n\u0000L\u0000i\u0000n\u0000e\u0000:\u0000 \u00001\u00002\u00000\u0000\r\u0000\n\u0000\r\u0000\n\u000e\u0002B\u0000\u0001\u0002Q\u0011\u0002Q\u0000\u0000\u000e\u0002C\u0000\u0001\u0002R\u0011\u0002R\u0000\u0000\u000e\u0002D\u0000\u0002\u0004~\u0002S\u0003~\u0000\u0001\u000e\u0002S\u0000\u0001\u0000\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000`\u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00003\u00004\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000I\u0000i\u0000R\u0000E\u0000d\u0000s\u0000.\u0000h\u0000t\u0000m\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"24bae373e3eff663311b87f39ecaf2270add0bee","subject":"make popup menu selecting work","message":"make popup menu selecting work\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_file":"library\/fmGUI_ObjManipulation\/fmGUI_Popup_SelectByCommand.applescript","new_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t2020-05-21 ( dshockley ): Try a 2nd time to click-and-wait for the menu to appear. And, don't try a 2nd \"exists\" command, since that seems to fail. Instead, save the result of that in a variable \"isMenuOpen\". \n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 2020-05-21-1321\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t\n\t\t\t\tset isMenuOpen to false (* INITIALIZE *)\n\t\t\t\t\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tdelay 0.3 -- short delay to make sure click can happen:\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- wait to see if menu becomes available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then\n\t\t\t\t\t\t\t\t\tset isMenuOpen to true\n\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif not isMenuOpen then\n\t\t\t\t\t-- SECOND attempt to click-then-wait for menu to be available, but give up sooner:\n\t\t\t\t\t\n\t\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\t\n\t\t\t\t\t--wait until menu is available\n\t\t\t\t\trepeat 20 times\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then\n\t\t\t\t\t\t\t\t\t\tset isMenuOpen to true\n\t\t\t\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tend try\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tif not isMenuOpen then\n\t\t\t\t\terror \"Was not able to get the popup _menu_ to appear (by clicking base object) so an item could be chosen.\" number 1024\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_Popup_SelectByCommand ( value _\" & selectCommand & \"_ '\" & objValue & \"' in popup ) - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","old_contents":"-- fmGUI_Popup_SelectByCommand({objRef:\"\", objValue:\"\", calcValue:null, selectCommand:\"\", clickIfAlreadySet:\"\"})\n-- Daniel A. Shockley, NYHTC\n-- Selects a choice from a popup menu\n\n\n(*\nREQUIRES:\n\tclickObjectByCoords\n\tfmGUI_SpecifyCalcWindowSet\n\t\n\t \nHISTORY:\n\t2020-05-21 ( dshockley ): Try a 2nd time to click-and-wait for the menu to appear. \n\t1.4.1 - 2018-04-30 ( eshagdar ): tell FM to click on the value since it might not be visible ( and unclickable by CLI ).\n\t1.4 - 2017-09-22 ( eshagdar ): set calc using handler.\n\t1.3 - 2017-09-06 ( eshagdar ): added calcValue param that sets a calc in the 'Specify Calculation' that comes up.\n\t1.2 - 2017-09-05 ( eshagdar ): clicking done by handler\n\t1.1 - 2017-06-29 ( eshagdar ): prefs must be a record. incoming param may be a string, so ensure that it's an object reference.\n\t1.0 - created\n*)\n\n\non run\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 1\n\t\t\t--set popUpButtonRef to pop up button \"Available menu commands:\" of window 1\n\t\t\tset popUpButtonRef to pop up button \"View\" of window 1\n\t\tend tell\n\tend tell\n\t\n\tfmGUI_Popup_SelectByCommand({objRef:popUpButtonRef, objValue:\"limited...\", calcValue:\"If ( True; True; GetAsNumber ( \\\"1\\\" ) )\", clickIfAlreadySet:true})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_Popup_SelectByCommand(prefs)\n\t-- version 2020-05-21-1231\n\t\n\tset defaultPrefs to {objRef:null, objValue:null, calcValue:null, selectCommand:\"is\", clickIfAlreadySet:false}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset objRef to ensureObjectRef(objRef of prefs)\n\tset selectCommand to selectCommand of prefs\n\tset objValue to objValue of prefs\n\tset clickIfAlreadySet to clickIfAlreadySet of prefs -- re-select even if popup is the requested value.\n\t\n\t\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tif not (exists objRef) then error \"The specified objRef does not exist.\" number 1024\n\t\t\t\n\t\t\t\n\t\t\t-- the objRef DOES exist\n\t\t\tset mustPick to false\n\t\t\tif not (exists value of objRef) then\n\t\t\t\t-- first check if the value of the objRef exists - if it doesn't, then we can't test it directly\n\t\t\t\tset mustPick to true\n\t\t\t\t\n\t\t\telse -- we can see the value without 'picking' the menu, so test it:\n\t\t\t\t-- note that our selection might be one of several 'matching' commands:\n\t\t\t\tif clickIfAlreadySet then\n\t\t\t\t\t-- RE-SELECT even if popup already is the requested value.\n\t\t\t\t\tset mustPick to true\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"is\" then\n\t\t\t\t\tif value of objRef is not objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\tif value of objRef does not contain objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"startsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\tif value of objRef does not start with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\tif value of objRef does not end with objValue then\n\t\t\t\t\t\tset mustPick to true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend if\n\t\tend tell\n\t\t\n\t\t\n\t\t\n\t\tif mustPick then\n\t\t\tif objValue is not null then\n\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\tdelay 0.3 -- short delay to make sure click can happen:\n\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- wait to see if menu becomes available\n\t\t\t\trepeat 100 times\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\tend tell\n\t\t\t\t\ton error\n\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\tend try\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif not (exists (menu 1 of objRef)) then\n\t\t\t\t\t-- SECOND attempt to click-then-wait for menu to be available, but give up sooner:\n\t\t\t\t\t\n\t\t\t\t\t-- click pop up button so the menu becomes available\n\t\t\t\t\tclickObjectByCoords(objRef)\n\t\t\t\t\t\n\t\t\t\t\t--wait until menu is available\n\t\t\t\t\trepeat 20 times\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\t\t\t\tif exists (menu 1 of objRef) then exit repeat\n\t\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tdelay 0.5\n\t\t\t\t\t\tend try\n\t\t\t\t\tend repeat\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- now pick an item from the pop up\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tobjRef\n\t\t\t\t\tif selectCommand is equal to \"is\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name is objValue\n\t\t\t\t\telse if selectCommand is equal to \"contains\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name contains objValue\n\t\t\t\t\telse if selectCommand is equal to \"beginsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name starts with objValue\n\t\t\t\t\telse if selectCommand is equal to \"endsWith\" then\n\t\t\t\t\t\tset objValue to first menu item of menu 1 of objRef whose name ends with objValue\n\t\t\t\t\telse\n\t\t\t\t\t\terror \"unable to pick objValue because select command is failed\" number -1024\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\t\t\tclick objValue\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t-- must tell FM to click since the value might now be available ( need to scroll )\n\t\t\t\t--clickObjectByCoords(objValue)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\t-- set calc if there is one\n\t\t\tif calcValue of prefs is not null then fmGUI_SpecifyCalcWindowSet({calcValue:calcValue of prefs})\n\t\tend if\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_Popup_SelectByCommand ( value _\" & selectCommand & \"_ '\" & objValue & \"' in popup ) - \" & errMsg number errNum\n\tend try\nend fmGUI_Popup_SelectByCommand\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(objRef)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(objRef))\nend clickObjectByCoords\n\non fmGUI_SpecifyCalcWindowSet(prefs)\n\ttell application \"htcLib\" to fmGUI_SpecifyCalcWindowSet(prefs)\nend fmGUI_SpecifyCalcWindowSet\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n\n\n\non ensureObjectRef(someObjectRef)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a ensureObjectRef into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set ensureObjPath to (container of (container of (path to me)) as text) & \"text parsing:ensureObjectRef.applescript\"\n\tset codeEnsureObj to read file ensureObjPath as text\n\ttell application \"htcLib\" to set codeEnsureObj to \"script codeEnsureObj \" & return & getTextBetween({sourceText:codeEnsureObj, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeEnsureObj\"\n\tset codeEnsureObj to run script codeEnsureObj\n\ttell codeEnsureObj to ensureObjectRef(someObjectRef)\nend ensureObjectRef\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f7e13b186448f0b101236405df90d7e5bbfc16c1","subject":"fix filename in comment","message":"fix filename in comment\n","repos":"rse\/slideshow,rse\/slideshow","old_file":"connector-osx-kn6.scpt","new_file":"connector-osx-kn6.scpt","new_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014-2015 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-kn6.scpt\n-- Purpose: connector engine for Apple Keynote 6 under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non knGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Keynote\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Keynote\"\n if false then -- FIXME: how to detect play mode?\n set state to \"viewing\"\n else if (get count of slides of front document) > 0 then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend knGetState\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n if false then -- FIXME: how to detect play mode?\n return (get slide number of current slide of front document) -- FIXME: wrong!\n else\n return (get slide number of current slide of front document)\n end if\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to knGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to knGetCurSlide()\n set slides to knGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if knGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n set thePresentation to front document\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to (get object text of default title item of theSlide) as string\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to (presenter notes of theSlide) as string\n set theNote to (my filterText(theNote, my asciiCharset()))\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to knGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Keynote\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Keynote\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Keynote\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n close front document\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Keynote\"\n start front document from (slide 1 of front document)\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n stop front document\n end tell\n else if command is \"PAUSE\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"RESUME\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to (my knGetMaxSlide())\n try\n show previous\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to ((my knGetMaxSlide()) - 1)\n try\n show next\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to (my knGetMaxSlide())\n try\n show previous\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n repeat with i from 1 to ((arg as integer) - 1)\n try\n show next\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show previous\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show next\n end tell\n end if\n return \"{ \\\"response\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"PAUSE\" \u00ac\n or cmd is \"RESUME\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","old_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014-2015 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-kn6.js\n-- Purpose: connector engine for Apple Keynote 6 under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non knGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Keynote\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Keynote\"\n if false then -- FIXME: how to detect play mode?\n set state to \"viewing\"\n else if (get count of slides of front document) > 0 then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend knGetState\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n if false then -- FIXME: how to detect play mode?\n return (get slide number of current slide of front document) -- FIXME: wrong!\n else\n return (get slide number of current slide of front document)\n end if\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to knGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to knGetCurSlide()\n set slides to knGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if knGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n set thePresentation to front document\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to (get object text of default title item of theSlide) as string\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to (presenter notes of theSlide) as string\n set theNote to (my filterText(theNote, my asciiCharset()))\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to knGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Keynote\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Keynote\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Keynote\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n close front document\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Keynote\"\n start front document from (slide 1 of front document)\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n stop front document\n end tell\n else if command is \"PAUSE\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"RESUME\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to (my knGetMaxSlide())\n try\n show previous\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to ((my knGetMaxSlide()) - 1)\n try\n show next\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n repeat with i from 1 to (my knGetMaxSlide())\n try\n show previous\n on error errMsg\n exit repeat\n end try\n delay 0.02\n end repeat\n repeat with i from 1 to ((arg as integer) - 1)\n try\n show next\n end try\n delay 0.02\n end repeat\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show previous\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show next\n end tell\n end if\n return \"{ \\\"response\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"PAUSE\" \u00ac\n or cmd is \"RESUME\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"f100ca90f9855179d549d93f5d47bfcea6091d68","subject":"Remove FIXME: comments","message":"Remove FIXME: comments\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, n, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item n\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\n (*\n \tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, n, theText)\n (*\n\tFIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item n\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"28ad05d5d1c35b7ba7ad12defff70dafee0deddb","subject":"added option to prepend canvas number for iPad export","message":"added option to prepend canvas number for iPad export\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportForiPad\/ExportForiPad.applescript","new_file":"ExportForiPad\/ExportForiPad.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty CANVAS_ORIGIN = {200, 220}\nproperty CANVAS_SIZE = {1024, 748} -- this is landscape orientation\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n\t-- remove .graffle\n\tset theFilename to texts 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to manual region\n\t\tset draws background of current export settings to false\n\t\tset include border of current export settings to false\n\t\tset origin of current export settings to CANVAS_ORIGIN\n\t\tset size of current export settings to CANVAS_SIZE\n\n\t\tset canvas_filename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset canvas_filename to canvasNumber & \"- \"\n\t\tend if\n\t\tset canvas_filename to canvas_filename & canvas_name\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_filename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty CANVAS_ORIGIN = {200, 220}\nproperty CANVAS_SIZE = {1024, 748} -- this is landscape orientation\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n\t-- remove .graffle\n\tset theFilename to texts 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to manual region\n\t\tset draws background of current export settings to false\n\t\tset include border of current export settings to false\n\t\tset origin of current export settings to CANVAS_ORIGIN\n\t\tset size of current export settings to CANVAS_SIZE\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"b19f273d66aefcab4d542b3805627dcdb7100634","subject":"mod helper to write temp file using write instead of shell echo","message":"mod helper to write temp file using write instead of shell echo\n","repos":"NYHTC\/applescript-fm-helper","old_file":"main_helper.applescript","new_file":"main_helper.applescript","new_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a main.scpt.\n\n\n(* HISTORY:\n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\n\nproperty debugMode : true\n\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathApp to pathRoot & appName & appExtension\n\tset pathLibrary to pathRoot & folderName_library\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\t\n\t\n\t-- loop over each sub-directory, appending code from each file\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset oneHandlerCode to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset oneHandlerCode to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\tset oneHandlerCode to trimWhitespace(oneHandlerCode)\n\t\t\t\t\t\n\t\t\t\t\t-- now append\n\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\tset tempCode to tempCode & oneHandlerCode\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\t-- prepend code with documentation\n\tset docCode to \"-- main script\"\n\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\tset docCode to docCode & LF\n\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" to after making changes in any .applescript file and after each git pull.\"\n\tset docCode to docCode & LF & \"-- Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\"\n\tset docCode to docCode & LF\n\tset docCode to docCode & LF & \"property DebugMode : \" & debugMode\n\tset docCode to docCode & LF & \"property ScriptName : \\\"\" & appName & \"\\\"\"\n\tset docCode to docCode & LF & \"property clickCommandPosix : POSIX path of (((path to home folder) as string)) & \\\"Code\/applescript-fm-helper\/vendor\/cliclick\/cliclick\\\"\"\n\t\n\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\n\t\n\t-- create a temp file of all libaries, then create a compiled version of it.\n\t--\tdo shell script \"echo \" & quoted form of tempCode & \" > \" & quoted form of POSIX path of pathTempCode\n\t\n\ttry\n\t\tclose access fileRef\n\tend try\n\tset fileRef to (open for access file pathTempCode with write permission)\n\tset eof of fileRef to 0 --> empty file contents if needed\n\t--> now write the flag\n\t--\twrite ((ASCII character 239) & (ASCII character 187) & (ASCII character 191)) to fileRef --> not as class utf8\n\t--> now write the data\n\twrite tempCode to fileRef\n\tclose access fileRef\n\t\n\t\n\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\tdo shell script \"pwd\"\n\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\n\t\n\tset appExists to false\n\ttell application \"Finder\"\n\t\tif exists pathApp then set appExists to true\n\tend tell\n\t\n\t\n\t--quit the pre-existing app\n\tif appExists then\n\t\ttell application appName to quit\n\tend if\n\t\n\t-- remove pre-existing app file\n\ttell application \"Finder\"\n\t\tif appExists then delete file pathApp\n\tend tell\n\t\n\t-- now make it into an app\n\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\tif showDialogs then\n\t\ttell it to activate\n\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\n\t\t\n\t\t-- navigate to security preference pane\n\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\n\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\n\t\t\t\t\t-- unlock if needed\n\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the HtcLib checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\treturn true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\tdelay 0.5\n\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\tdelay 0.5\n\t\t\t\t\tset visible to false\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\ttell me to activate\n\t\t\tdisplay dialog \"HtcLib is ready\" buttons \"OK\" default button \"OK\"\n\t\tend if\n\t\treturn true\n\telse\n\t\t\n\t\ttell application \"System Preferences\" to activate\n\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\n\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\n\tend if\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n","old_contents":"-- main_helper\n-- Erik Shagdar, NYHTC\n-- Helper script that compiles all .applescript files into a main.scpt.\n\n\n(* HISTORY:\n\t2017-12-18 ( eshagdar ): skip files whose name begins wtih 'WIP_' ( work in progress ).\n\t2017-11-14 ( dshockley ): open system preference pane even from command line. \n\t2017-10-20 ( eshagdar ): allow running with params. If ran with 'False', dialogs ( and re-enabling assistve devices ) is suppressed. \n\t2017-10-18 ( eshagdar ): debugMode is a property. htcLib scriptName is 'htcLib', not 'main.scpt'.\n\t2017-10-06 ( eshagdar ): added library folder to skip when generating htcLib. renamed variables for clarity.\n\t2017-09-12 ( eshagdar ): attempt to de-select and re-select the htcLib checkbox.\n\t2017-06-29 ( eshagdar ): check to see if htcLib exists.\n\t2017-06-26 ( eshagdar ): quit the app before deleting it.\n\t2017-06-14 ( eshagdar ): also make an app.\n\t2016-04-21 ( eshagdar ): Updated clickCommandPosix path.\n\t2016-03-17 ( eshagdar ): Added DebugMode and clickCommandPosix properties.\n\t2016-03-15 ( eshagdar ): added documentation to main script. Separated individual functions into library directories and updated run code to loop over files in sub-directories.\n\t2016-03-14 ( eshagdar ): first created.\n*)\n\n\n\nproperty debugMode : true\n\n\nproperty LF : ASCII character 10\nproperty tempFileName : \"temp.applescript\"\nproperty mainFileName : \"main.scpt\"\nproperty appName : \"htcLib\"\nproperty appExtension : \".app\"\nproperty securityPrefPanePosix : \"\/System\/Library\/PreferencePanes\/Security.prefPane\"\n\n\non run prefs\n\tset defaultPrefs to {true}\n\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\tset showDialogs to ((item 1 of prefs) as boolean)\n\t\n\t\n\tset folderName_library to \"library:\"\n\tset folderName_toSkip to \"standalone\"\n\tset fileNamePrefix_toSkip to \"WIP_\"\n\t\n\tset tempCode to \"\"\n\tset commentBreaker to \"--------------------\"\n\tset codeStart to commentBreaker & LF & \"-- START OF CODE\" & LF & commentBreaker\n\tset codeEnd to commentBreaker & LF & \"-- END OF CODE\" & LF & commentBreaker\n\t\n\t\n\ttell application \"Finder\"\n\t\tset pathRoot to (folder of (path to me)) as string\n\t\tset thisFileName to name of (path to me)\n\tend tell\n\t\n\tset pathTempCode to pathRoot & tempFileName\n\tset pathMain to pathRoot & mainFileName\n\tset pathApp to pathRoot & appName & appExtension\n\tset pathLibrary to pathRoot & folderName_library\n\tset libraryNames to list folder (pathLibrary) without invisibles\n\t\n\t\n\t-- loop over each sub-directory, appending code from each file\n\trepeat with dirCount from 1 to count of libraryNames\n\t\tset oneLibraryName to item dirCount of libraryNames\n\t\tset pathOneLibrary to pathLibrary & oneLibraryName\n\t\tif oneLibraryName is equal to folderName_toSkip then\n\t\t\t-- skip this folder because it contains standalone handlers\n\t\telse\n\t\t\t-- get all files in the the folder\n\t\t\tset fileNamesInOneLibrary to list folder (pathOneLibrary) without invisibles\n\t\t\t\n\t\t\t-- append all libraries into a single file\n\t\t\trepeat with fileCount from 1 to count of fileNamesInOneLibrary\n\t\t\t\t\n\t\t\t\t-- read one file and get everything above the helper methods\n\t\t\t\tset oneFileName to item fileCount of fileNamesInOneLibrary\n\t\t\t\tif oneFileName does not start with fileNamePrefix_toSkip then\n\t\t\t\t\tset pathOneFileinOneLibrary to pathOneLibrary & \":\" & oneFileName\n\t\t\t\t\tset oneFileRawCode to read file pathOneFileinOneLibrary\n\t\t\t\t\tif oneFileRawCode contains codeStart and oneFileRawCode contains codeEnd then\n\t\t\t\t\t\tset oneHandlerCode to getTextBetween({oneFileRawCode, codeStart, codeEnd})\n\t\t\t\t\telse\n\t\t\t\t\t\tset oneHandlerCode to oneFileRawCode\n\t\t\t\t\tend if\n\t\t\t\t\tset oneHandlerCode to trimWhitespace(oneHandlerCode)\n\t\t\t\t\t\n\t\t\t\t\t-- now append\n\t\t\t\t\tif (length of tempCode) is greater than 0 then set tempCode to tempCode & return & return & return\n\t\t\t\t\tset tempCode to tempCode & oneHandlerCode\n\t\t\t\tend if\n\t\t\tend repeat\n\t\tend if\n\tend repeat\n\t\n\t-- prepend code with documentation\n\tset docCode to \"-- main script\"\n\tset docCode to docCode & LF & \"-- Erik Shagdar, NYHTC\"\n\tset docCode to docCode & LF\n\tset docCode to docCode & LF & \"-- Generated: \" & (do shell script \"date '+%Y-%m-%d %T'\")\n\tset docCode to docCode & LF & \"-- Run \" & quoted form of thisFileName & \" to after making changes in any .applescript file and after each git pull.\"\n\tset docCode to docCode & LF & \"-- Assumes file is located at '~\/Code\/applescript-fm-helper\/'. If it is not, make sure to update clickCommandPosix property and 'vendor.sh' script.\"\n\tset docCode to docCode & LF\n\tset docCode to docCode & LF & \"property DebugMode : \" & debugMode\n\tset docCode to docCode & LF & \"property ScriptName : \\\"\" & appName & \"\\\"\"\n\tset docCode to docCode & LF & \"property clickCommandPosix : POSIX path of (((path to home folder) as string)) & \\\"Code\/applescript-fm-helper\/vendor\/cliclick\/cliclick\\\"\"\n\t\n\tset tempCode to docCode & LF & LF & LF & tempCode\n\t\n\t\n\t-- create a temp file of all libaries, then create a compiled version of it.\n\tdo shell script \"echo \" & quoted form of tempCode & \" > \" & quoted form of POSIX path of pathTempCode\n\tdo shell script \"osacompile -o \" & quoted form of POSIX path of pathMain & \" \" & quoted form of POSIX path of pathTempCode\n\tdo shell script \"pwd\"\n\tdo shell script \"sh \" & quoted form of (POSIX path of (pathRoot & \"vendor.sh\"))\n\tif result does not contain \"SUCCESS\" then return \"Error: unable to run vendor.sh\"\n\t\n\t\n\tset appExists to false\n\ttell application \"Finder\"\n\t\tif exists pathApp then set appExists to true\n\tend tell\n\t\n\t\n\t--quit the pre-existing app\n\tif appExists then\n\t\ttell application appName to quit\n\tend if\n\t\n\t-- remove pre-existing app file\n\ttell application \"Finder\"\n\t\tif appExists then delete file pathApp\n\tend tell\n\t\n\t-- now make it into an app\n\tdo shell script \"osacompile -s -o \" & quoted form of POSIX path of pathApp & \" \" & quoted form of POSIX path of pathTempCode\n\t\n\t\n\t-- remove the temp file\n\ttell application \"Finder\"\n\t\tif exists pathTempCode then delete file pathTempCode\n\tend tell\n\t\n\tif showDialogs then\n\t\ttell it to activate\n\t\tset AsstAccessDlg to display dialog \"You must enable assistive access for \" & appName & \".\" with title appName buttons {\"Open\", \"OK\"} default button \"OK\"\n\t\t\n\t\t\n\t\t-- navigate to security preference pane\n\t\tif button returned of AsstAccessDlg is equal to \"Open\" then\n\t\t\t\n\t\t\ttell application \"System Preferences\" to activate\n\t\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\t\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell process \"System Preferences\"\n\t\t\t\t\tclick radio button \"Privacy\" of tab group 1 of window 1\n\t\t\t\t\t\n\t\t\t\t\t-- get htcLib checkbox\n\t\t\t\t\tset htcLibRow to (first row of table 1 of scroll area 1 of group 1 of tab group 1 of window 1 whose value of static text 1 of UI element 1 contains \"htcLib\")\n\t\t\t\t\tset htcLibCheckbox to checkbox 1 of UI element 1 of htcLibRow\n\t\t\t\t\tselect htcLibRow\n\t\t\t\t\t\n\t\t\t\t\t-- unlock if needed\n\t\t\t\t\tset canMakeChanges to enabled of htcLibCheckbox\n\t\t\t\t\tif canMakeChanges is false then\n\t\t\t\t\t\tclick button 1 of window 1\n\t\t\t\t\t\tdisplay dialog \"You must deselect, then reselect the HtcLib checkbox\" buttons \"OK\" default button \"OK\"\n\t\t\t\t\t\treturn true\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- uncheck, then recheck to re-allow control of htcLib\n\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\tdelay 0.5\n\t\t\t\t\tclick htcLibCheckbox\n\t\t\t\t\tdelay 0.5\n\t\t\t\t\tset visible to false\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\t\n\t\t\ttell me to activate\n\t\t\tdisplay dialog \"HtcLib is ready\" buttons \"OK\" default button \"OK\"\n\t\tend if\n\t\treturn true\n\telse\n\t\t\n\t\ttell application \"System Preferences\" to activate\n\t\tdo shell script \"open \" & quoted form of securityPrefPanePosix\n\t\t\n\t\treturn \"you must re-allow assistive devices to '\" & appName & \"'.\"\n\t\t\n\tend if\n\t\nend run\n\n\n\n--------------------\n-- HELPER FUNCTIONS\n--------------------\n\non parentFolderOfPath(incomingPath)\n\t--version 1.1, Daniel A. Shockley\n\t\n\tset incomingPath to incomingPath as string\n\tif incomingPath is \"\" then\n\t\terror \"Cannot find a parent folder for a path that is blank.\" number -1027\n\tend if\n\t\n\tif last character of incomingPath is \":\" then\n\t\t-- if it ends with \":\" (a folder), leave that off for the code below\n\t\tset incomingPath to (text 1 through -2 of incomingPath) as string\n\tend if\n\t\n\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, \":\"}\n\tif (count of text items of incomingPath) is 1 then\n\t\t-- the item in question is a disk, so CANNOT return a parent folder\n\t\tset AppleScript's text item delimiters to od\n\t\terror \"Cannot find a parent folder of a DISK: \" & incomingPath & \".\" number -1027\n\telse\n\t\tset enclosingFolder to (text items 1 through -2 of incomingPath as string)\n\tend if\n\t\n\tset AppleScript's text item delimiters to od\n\treturn enclosingFolder & \":\"\n\t\nend parentFolderOfPath\n\n\non getTextBetween(prefs)\n\t-- version 1.6, Daniel A. Shockley <http:\/\/www.danshockley.com>\n\t\n\tset defaultPrefs to {textItemNum:2, includeMarkers:false}\n\t\n\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\tend if\n\tif class of prefs is list then\n\t\tif (count of prefs) is 4 then\n\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\tend if\n\t\tset prefs to {sourceTEXT:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\tend if\n\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\tset sourceTEXT to sourceTEXT of prefs\n\tset beforeText to beforeText of prefs\n\tset afterText to afterText of prefs\n\tset textItemNum to textItemNum of prefs\n\tset includeMarkers to includeMarkers of prefs\n\t\n\ttry\n\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\tset the prefixRemoved to text item textItemNum of sourceTEXT\n\t\tset AppleScript's text item delimiters to afterText\n\t\tset the finalResult to text item 1 of prefixRemoved\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\n\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\n\ton error errMsg number errNum\n\t\tset AppleScript's text item delimiters to oldDelims\n\t\t-- \ttell me to log \"Error in getTextBetween() : \" & errMsg\n\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\tend try\n\t\n\t\n\treturn finalResult\n\t\nend getTextBetween\n\n\non trimWhitespace(inputString)\n\t-- version 1.2: \n\t\n\tset whiteSpaceAsciiNumbers to {13, 10, 32, 9} -- characters that count as whitespace.\n\t\n\tset textLength to length of inputString\n\tif textLength is 0 then return \"\"\n\tset endSpot to -textLength -- if only whitespace is found, will chop whole string\n\t\n\t-- chop from end\n\tset i to -1\n\trepeat while -i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset endSpot to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i - 1\n\tend repeat\n\t\n\t\n\tif -endSpot is equal to textLength then\n\t\tif whiteSpaceAsciiNumbers contains (ASCII number testChar) then return \"\"\n\tend if\n\t\n\tset inputString to text 1 thru endSpot of inputString\n\tset textLength to length of inputString\n\tset newStart to 1\n\t\n\t-- chop from beginning\n\tset i to 1\n\trepeat while i is less than or equal to textLength\n\t\tset testChar to text i thru i of inputString\n\t\tif whiteSpaceAsciiNumbers does not contain (ASCII number testChar) then\n\t\t\tset newStart to i\n\t\t\texit repeat\n\t\tend if\n\t\tset i to i + 1\n\tend repeat\n\t\n\tset inputString to text newStart thru textLength of inputString\n\t\n\treturn inputString\n\t\nend trimWhitespace\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fdd4cdec8703c93551994ce504bc6ce2639ee391","subject":"Split start and next actions","message":"Split start and next actions\n","repos":"rhumbertgz\/mbit-keynote-plus","old_file":"scripts\/startOrNext.scpt","new_file":"scripts\/startOrNext.scpt","new_contents":"","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000B\u0000\u0004\r\u0000\u0004\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000B\u0000\u0005\u0000\u0006\u0000\u0007\r\u0000\u0005\u0000\u0002=\u0000\u0003\u0000\u0000\u0000\u0005\u0000\b\u0000\t\r\u0000\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\n\u0000\u000b\r\u0000\n\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nprun\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\f\u000f\u0000\f\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000keyn\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0002OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000$NH+\u0000\u0000\u0001=b0\u000bKeynote.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001d\u001a\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000$.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0019i\u0000\u0000\u0000\u0001\u0000\u0004\u0001=b0\u0000\u0002\u0000\u001cOS:Applications:\u0000Keynote.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000K\u0000e\u0000y\u0000n\u0000o\u0000t\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0006\u0000\u0002\u0000O\u0000S\u0000\u0012\u0000\u0018Applications\/Keynote.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\b\u000bboovtrue\r\u0000\u0006\u0000\u0002O\u0000\u0000\u0000\b\u0000=\u0000\r\u0000\u000e\r\u0000\r\u0000\u0004Z\u0000\u0000\u0000\f\u0000<\u0000\u000f\u0000\u0010\u0000\u0011\r\u0000\u000f\u0000\u0002=\u0000\u0003\u0000\f\u0000\u0011\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00011\u0000\u0000\u0000\f\u0000\u000f\n\u0000\u0004\nPlng\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u001c\u0000\u0014\u0002\u0000\u0014\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0014\u0000\u0019\n\u0000\u0018.KntcsteFnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0016\u0000\u0002\u0000\u0017\r\u0000\u0017\u0000\u0001L\u0000\u0000\u0000\u001a\u0000\u001c\u0000\u0018\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001k\u0000\u0000\u0000\u001f\u0000<\u0000\u0019\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003I\u0000\u0002\u0000\u001f\u0000$\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000\u001c\r\u0000\u001c\u0000\u0003Q\u0000\u0000\u0000%\u0000<\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000(\u00003\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003I\u0000\u0002\u0000(\u00000\u0000\"\n\u0000\u0018.KnstplaYnull\u0000\u0000\u0000\u0000\u0000docu\r\u0000\"\u0000\u0003l\u0001\u0000\u0000(\u0000,\u0000#\r\u0000#\u0000\u00024\u0001\u0000\u0000(\u0000,\u0000$\n\u0000\u0004\ndocu\r\u0000$\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0001L\u0000\u0000\u00001\u00003\u0000&\r\u0000&\u0000\u0001m\u0000\u0000\u00001\u00002\n\u0000\b\u000bboovtrue\u0002\u0000\u0000\r\u0000\u001e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000'\u000f\u0000'\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000keyn\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u00012\u0000\u0002\u0000\u0001\u0002OS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000$NH+\u0000\u0000\u0001=b0\u000bKeynote.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001d\u001a\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000$.\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0019i\u0000\u0000\u0000\u0001\u0000\u0004\u0001=b0\u0000\u0002\u0000\u001cOS:Applications:\u0000Keynote.app\u0000\u000e\u0000\u0018\u0000\u000b\u0000K\u0000e\u0000y\u0000n\u0000o\u0000t\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0006\u0000\u0002\u0000O\u0000S\u0000\u0012\u0000\u0018Applications\/Keynote.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0007\u0000\u0001L\u0000\u0000\u0000@\u0000B\u0000(\r\u0000(\u0000\u0001m\u0000\u0000\u0000@\u0000A\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000)\u0000*\u0001\u0000\u0000\u0010\u0000)\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000*\u0000\u0007\u0010\u0000+\u0000,\u0000-\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000B\u0000.\u0002\u0000.\u0000\u0002\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000,\u0000\u0000\u0010\u0000-\u0000\t\u0000\f\n\u0000\u0004\nprun\n\u0000\u0004\nPlng\n\u0000\u0018.KntcsteFnull\u0000\u0000null\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\ndocu\n\u0000\u0018.KnstplaYnull\u0000\u0000\u0000\u0000\u0000docu\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000C,e\u0000\u001d\u0000:\u0012\u00002*,e\u0000\u001d\u0000\r*j\f\u0000\u0003Oe\u000fY\u0000\u001f*j\f\u0000\u0004O\u0014\u0000\u0010*k\/j\f\u0000\u0006Oe\u000fW\u0000\bX\u0000\u0007\u0000\bhUY\u0000\u0004f\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7ef6ad3e6ed50045b124699e56e85215e978774b","subject":"[#2]: Fix broken javascript calls","message":"[#2]: Fix broken javascript calls\n\nAt some point, using $() seems to have broken in Chrome. Replaced those\ncalls with equivalent DOM calls in vanilla Javascript.\n","repos":"tangledhelix\/focusatwill-in-google-chrome,tangledhelix\/focusatwill-in-google-chrome","old_file":"alfred_script.applescript","new_file":"alfred_script.applescript","new_contents":"on alfred_script(q)\n\n set AppleScript's text item delimiters to {\" \"}\n\n tell application \"Google Chrome\"\n \n if q is \"\" or q is \"p\" or q is \"pp\" or q is \"play\" or q is \"pause\" then\n set execCode to \"document.getElementsByClassName('play')[0].click()\"\n else if q is \"next\" or q is \"skip\" or q is \"n\" then\n set execCode to \"document.getElementsByClassName('next')[0].click()\"\n else\n set argList to every text item of q\n if item 1 of argList is \"genre\" then\n set execCode to \"document.querySelectorAll('li.genre a')[\" & item 2 of argList & \"].click();\"\n end if\n end if\n \n set seenPlayerTab to 0\n \n set thisWindowIndex to 1\n repeat with thisWindow in windows\n \n set thisTabIndex to 1\n repeat with thisTab in tabs of thisWindow\n \n if URL of thisTab starts with \"https:\/\/www.focusatwill.com\/\" then\n set seenPlayerTab to 1\n exit repeat\n end if\n \n set thisTabIndex to thisTabIndex + 1\n \n end repeat\n \n if seenPlayerTab is greater than 0 then\n tell tab thisTabIndex of window thisWindowIndex\n execute javascript execCode\n end tell\n exit repeat\n end if\n \n set thisWindowIndex to thisWindowIndex + 1\n \n end repeat\n \n if seenPlayerTab is 0 then\n set newTab to make new tab at end of tabs of window 1\n set URL of newTab to \"https:\/\/www.focusatwill.com\/music\/#player\"\n delay 5\n tell newTab\n execute javascript execCode\n end tell\n end if\n \n end tell\nend alfred_script\n","old_contents":"on alfred_script(q)\n\n set AppleScript's text item delimiters to {\" \"}\n\n tell application \"Google Chrome\"\n \n if q is \"\" or q is \"p\" or q is \"pp\" or q is \"play\" or q is \"pause\" then\n set buttonClass to \"play\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else if q is \"next\" or q is \"skip\" or q is \"n\" then\n set buttonClass to \"next\"\n set execCode to \"$('.\" & buttonClass & \"').first().click()\"\n else\n set argList to every text item of q\n if item 1 of argList is \"genre\" then\n set execCode to \"$('li.genre a')[\" & item 2 of argList & \"].click();\"\n end if\n end if\n \n set seenPlayerTab to 0\n \n set thisWindowIndex to 1\n repeat with thisWindow in windows\n \n set thisTabIndex to 1\n repeat with thisTab in tabs of thisWindow\n \n if URL of thisTab starts with \"https:\/\/www.focusatwill.com\/\" then\n set seenPlayerTab to 1\n exit repeat\n end if\n \n set thisTabIndex to thisTabIndex + 1\n \n end repeat\n \n if seenPlayerTab is greater than 0 then\n tell tab thisTabIndex of window thisWindowIndex\n execute javascript execCode\n end tell\n exit repeat\n end if\n \n set thisWindowIndex to thisWindowIndex + 1\n \n end repeat\n \n if seenPlayerTab is 0 then\n set newTab to make new tab at end of tabs of window 1\n set URL of newTab to \"https:\/\/www.focusatwill.com\/music\/#player\"\n delay 5\n tell newTab\n execute javascript execCode\n end tell\n end if\n \n end tell\nend alfred_script\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"06fbc48a506ac1edc6c628a33a8ed15fcb269419","subject":"removing BeatSecurityAgent script","message":"removing BeatSecurityAgent script\n\nThis is no longer needed because we no longer fill out the security\nprompts using applescript ui automation\n","repos":"rsalvador\/appium,rsalvador\/appium,hugs\/appium-old,hugs\/appium-old","old_file":"appium\/template\/BeatSecurityAgent.applescript","new_file":"appium\/template\/BeatSecurityAgent.applescript","new_contents":"","old_contents":"-- Examples:\n-- $ osascript BeatSecurityAgent.applescript jason s3cr3t\n\non run argv\n set the_username to item 1 of argv\n set the_password to item 2 of argv\n\n repeat\n try\n set procs to \"\"\n tell application \"System Events\"\n set procs to name of every process\n end tell\n if procs contains \"SecurityAgent\" then\n tell application \"System Events\"\n tell process \"SecurityAgent\" to set value of text field 1 of scroll area 1 of group 1 of window 1 to the_username\n tell process \"SecurityAgent\" to set value of text field 2 of scroll area 1 of group 1 of window 1 to the_password\n click button 2 of group 2 of window 1 of application process \"SecurityAgent\"\n log (\"Dismissed Security Dialog\")\n end tell\n end if\n end try\n delay 1\n end repeat\nend run\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"612f6d5f57a7d9451b242556abb238aba797a188","subject":"removed unused code in fmClip - Button Info from Clipboard","message":"removed unused code in fmClip - Button Info from Clipboard\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_file":"Scripts\/fmClip - Button Info from Clipboard.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"95186a31309e1b5c49e903bffdbc20809087faa1","subject":"Separate file edit menu item from other items","message":"Separate file edit menu item from other items\n\nPut it in its own section and label it as an \"Advanced\" option.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit log file\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-25\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 2 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t--set __PLIST_DIR__ to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:temp\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(******************** Main Controller ********************)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller for view controllers\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing the model to\n\t\t\t-- all (and the shared navigation controller to all view\n\t\t\t-- controllers).\n\t\t\t--\n\t\t\t-- -- View Controllers\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\t-- -- Action Controllers\n\t\t\tset file_edit_controller to make_file_edit_controller(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(******************** The Rest ********************)\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & \"Note \" & field_sep & _page_note & linefeed\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be extended rather than modified to customize\n\t\tit for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key} --> array (saved state, etc.)\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\t\n\t\t\t--_default_settings's set_item(\"boolPref\", true) -- test other types\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> integer\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> integer\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(main_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _model : main_model\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_editor()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false -- ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, \"[debug] TODO: open log file in text editor\")\n\t\t\tdisplay dialog my class & \": TODO: open log file in text editor\" with title \"TODO\"\n\t\tend launch_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 6})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend edit_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_key, _val) --> void\n\t\t\t_model's set_pref(_key, _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor_val & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_title_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {\"Help\", \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_bullet & \"Create a new category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show full list with subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Manually edit log file\", \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Next...\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : navigation_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my u_back_btn, \"Cancel\", \"Save\"}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > First Run\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change settings...\", \"Cancel\", \"Use defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a text editor...\", \"Choose a URLs file...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file_val & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor_val & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use default editor...\", \"Choose another editor...\"}\n\t\t\n\t\tproperty _text_editor_key : missing value\n\t\tproperty _text_editor_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor_val to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor_key, _text_editor_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor_key to _model's get_text_editor_key()\n\t\t\t\tset _text_editor_val to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor_val to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items : {\"Use default file...\", \n\t\t\t\"Choose existing file...\", \n\t\t\t\"Create new file...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in file path...\t\t(Advanced)\"}\n\t\t\n\t\tproperty _log_file_key : missing value\n\t\tproperty _log_file_val : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file_val to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"OK\"}\n\t\t\tdisplay dialog m with title t default answer _log_file_val buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file_val to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file_key, _log_file_val)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\t(*on _debug_test(_msg) --> void -- PRIVATE\n\t\t\tdisplay dialog my class & \".debug_view(): would call \" & _msg with title \"DEBUG\"\n\t\t\tcreate_view() -- back to main view\n\t\tend _debug_test*)\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file_key to _model's get_log_file_key()\n\t\t\t\tset _log_file_val to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file_val to _model's get_default_log_file()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f3c4a14e7d9626a4f9e50d08bef66e9ac0c6d690","subject":"Change format of sample categories in bookmarks file","message":"Change format of sample categories in bookmarks file\n\nThe sample categories are now formatted the same as the categories in\nbookmark records.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-23\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized web bookmark archive vim:ft=conf:\n# ===========================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each\n# bookmark record consists of a date, label (category), title, URL, and\n# optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new bookmarks.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_about_controller()\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {__SCRIPT_NAME__ & \" Website\", \"Cancel\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"18f3993c1bf2b5153b42e60900bfa056ecdb3a11","subject":"Update reset sim script","message":"Update reset sim script\n","repos":"keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles,keith\/dotfiles","old_file":"scripts\/resetsimulator.applescript","new_file":"scripts\/resetsimulator.applescript","new_contents":"tell application \"System Events\" to tell process \"iOS Simulator\"\n\tactivate\n\tset frontmost to true\n\tclick menu item \"Reset Content and Settings\" of menu 0 of menu bar item \"iOS Simulator\" of menu bar 1\n delay 0.1\n tell application \"System Events\" to key code 36\n\t-- click button \"Reset\" of window \"\"\n return\nend tell\n","old_contents":"tell application \"System Events\" to tell process \"iOS Simulator\"\n\tactivate\n\tset frontmost to true\n\tclick menu item \"Reset Content and Settings\" of menu 0 of menu bar item \"iOS Simulator\" of menu bar 1\n\tclick button \"Reset\" of window \"\"\n return\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"27662e0fbc68898a0673ac711c0413a1351880c7","subject":"add shutdown step for TotalTerminalCrashWatcher","message":"add shutdown step for TotalTerminalCrashWatcher\n","repos":"binaryage\/totalterminal-installer","old_file":"uninstall.applescript","new_file":"uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to quit\n\ton error\n\t\tset stdout to stdout & \" Terminal was not running prior uninstallation\" & newline\n\tend try\n\n\tset stdout to stdout & \" shutdown TotalTerminalCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalTerminalCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalTerminalCrashWatcher was not running\" & newline\n\tend try\n\t\t\n\tset stdout to stdout & \" remove TotalTerminal.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalTerminal.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalTerminal.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalTerminal.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalTerminal.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalTerminal.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Terminal\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalTerminal uninstallation done\" & newline\n\t\n\t-- at this point Terminal should start cleanly and with no signs of TotalTerminal\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to quit\n\ton error\n\t\tset stdout to stdout & \" Terminal was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalTerminal.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalTerminal.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalTerminal.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalTerminal.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalTerminal.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalTerminal.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Terminal ...\" & newline\n\ttry\n\t\ttell application \"Terminal\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Terminal\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalTerminal uninstallation finished\" & newline\n\t\n\t-- at this point Terminal should start cleanly and with no signs of TotalTerminal\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"65a4963a0c942cebc4ce92abc3ddc831ce501aef","subject":"Initial push.","message":"Initial push.\n","repos":"dolox\/mac-space","old_file":"_tmp.applescript","new_file":"_tmp.applescript","new_contents":"","old_contents":"#!\/usr\/bin\/osascript\n\n-- @todo cleanup and doc\n\non openNewSpace()\n tell application \"System Events\"\n \u2014start mission control\n do shell script \"\/Applications\/Mission\\\\ Control.app\/Contents\/MacOS\/Mission\\\\ Control\"\n tell process \"Dock\"\n set countSpaces to count buttons of list 1 of group 1\n --new space\n click button 1 of group 1\n --switch to new space\n repeat until (count buttons of list 1 of group 1) = (countSpaces + 1)\n end repeat\n click button (countSpaces + 1) of list 1 of group 1\n end tell\n end tell\nend openNewSpace\n\n\n\non spaceSet(index)\n\t-- Launch the Mission Control Application.\n\tdo shell script \"\/Applications\/Mission\\\\ Control.app\/Contents\/MacOS\/Mission\\\\ Control\"\n\t\n\t-- Set a slight delay for Mission Control to finish loading.\n\tdelay 0.5\n\t\n\t-- Catch any errors.\n\ttry\n\t\t-- @todo exaust this listIndexes ??????\n\t\tspaceSetIndex(3, 1, 1)\n\t\t-- on fail loop through and generate each of the spaces before exhausting\n\ton error\n\tend try\nend spaceSet\n\non spaceSetIndex(spaceIndex, listIndex, groupIndex)\n\ttell application \"System Events\" to click (first button whose value of attribute \"AXDescription\" is \"exit to Desktop \" & spaceIndex) of list listIndex of group groupIndex of process \"Dock\"\nend spaceSetIndex\n\n-- Invoke the clients pre-script.\n\n\n-- Set the space.\nspaceSet(3)\n\n-- Invoke the clients command.\ndo shell script \"\"\n\n-- Launch the Application.\ntell application \"TextMate\" to launch\ntell application \"TextMate\" to run\n\n-- Set the Application as the top window.\ntell application \"TextMate\" to activate\n\n-- Set the space again, in the event that the Application acivation changed the space.\nspaceSet(3)\n\n-- Invoke the clients script.\n\n\ntell application \"System Events\"\n set applicationProcess to first process whose name is \"TextMate\"\n tell applicationProcess\n tell first window\n\t\t\ttry\n \t set position to {NaN, Infinity}\n \t set size to {Infinity, Infinity}\n\t\t end try\n end tell\n end tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"652d7f7dd720d13a2be6e9eba65eacdec81eee53","subject":"Fixed naming issue","message":"Fixed naming issue\n","repos":"gkaguirrelab\/LiveTrackfMRIToolbox,gkaguirrelab\/LiveTrackfMRIToolbox","old_file":"Tools\/RawVideoRec.scpt","new_file":"Tools\/RawVideoRec.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000\u0000\u0000)\u0000\"\u0000#\r\u0000\"\u0000\u0001k\u0000\u0000\u0000\u0004\u0000(\u0000$\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\f\u0000'\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000(\n\u0000\u0004\ncwin\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000+\r\u0000+\u0000\u0003I\u0000\u0002\u0000\r\u0000(\u0000,\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000,\u0000\u0003\u0000-\u0000.\n\u0000\u0004\nkWch\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000.\u0000\u0003\u00001\u00002\n\u0000\u0004\nkFil\r\u00001\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u001f\u00003\n\u0000\u0004\npsxf\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u001e\u00004\r\u00004\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001e\u00005\u00006\r\u00005\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0017\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000:\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001b\u0000<\u0000=\r\u0000<\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001b\u0000>\n\u0000\u0004\ncobj\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0002\r\u0000=\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00006\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000?\u000e\u0000?\u0000\u0001\u0000@\u0011\u0000@\u0000\b\u0000.\u0000m\u0000o\u0000v\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u00002\u0000\u0003\u0000A\n\u0000\u0004\nkDur\r\u0000A\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000B\u0000C\r\u0000B\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000D\n\u0000\u0004\ncobj\r\u0000D\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0003\r\u0000C\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000E\u000f\u0000E\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000}Q\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000}R\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000}Q\u0000I\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000!\u0000\u0002\u0000F\r\u0000F\u0000\u0003l\u0000\u0002\u0000*\u0000*\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000G\r\u0000G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000H\u0000I\u0001\u0000\u0000\u0010\u0000H\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000I\u0000\u0007\u0010\u0000\u001d\u0000J\u0000K\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000J\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000K\u0000\r\u0000E\u0000)\u0000\/\u0000?\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0011\u0000,\u0012\u0000&*\/j\f\u0000\u0003O**k\/l\/%%\/m\/\f\u0000\fUOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000[\u0000U This script records video via the ezcap VideoCapture software. To launch the script:\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0000\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000e\u0000c\u0000o\u0000r\u0000d\u0000s\u0000 \u0000v\u0000i\u0000d\u0000e\u0000o\u0000 \u0000v\u0000i\u0000a\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000 \u0000T\u0000o\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000:\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u000f\u0001\u0000\u0000\f\u0000\u000e\u0000[\u0000U from terminal osascript \/path\/to\/script\/RawVideoRec.scpt savePath vidName recLength\u0000\u0002\u0000\u0000\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u0000 \u0000r\u0000e\u0000c\u0000L\u0000e\u0000n\u0000g\u0000t\u0000h\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0000 from matlab system(sprintf('osascript \/path\/to\/script\/RawVideoRec.scpt %s %s %s', savePath, vidName1, num2str(recTime+postBufferTime)));\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0001\u0014\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000m\u0000a\u0000t\u0000l\u0000a\u0000b\u0000 \u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000(\u0000s\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000(\u0000'\u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\/\u0000p\u0000a\u0000t\u0000h\u0000\/\u0000t\u0000o\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\/\u0000R\u0000a\u0000w\u0000V\u0000i\u0000d\u0000e\u0000o\u0000R\u0000e\u0000c\u0000.\u0000s\u0000c\u0000p\u0000t\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000 \u0000%\u0000s\u0000'\u0000,\u0000 \u0000s\u0000a\u0000v\u0000e\u0000P\u0000a\u0000t\u0000h\u0000,\u0000 \u0000v\u0000i\u0000d\u0000N\u0000a\u0000m\u0000e\u00001\u0000,\u0000 \u0000n\u0000u\u0000m\u00002\u0000s\u0000t\u0000r\u0000(\u0000r\u0000e\u0000c\u0000T\u0000i\u0000m\u0000e\u0000+\u0000p\u0000o\u0000s\u0000t\u0000B\u0000u\u0000f\u0000f\u0000e\u0000r\u0000T\u0000i\u0000m\u0000e\u0000)\u0000)\u0000)\u0000;\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001e\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001k\u0000\u0000\u0000\u0000\u0000)\u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000\u0000\u0000'\u0000\"\u0000#\r\u0000\"\u0000\u0001k\u0000\u0000\u0000\u0004\u0000&\u0000$\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\f\u0000'\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000'\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000(\n\u0000\u0004\ncwin\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000+\r\u0000+\u0000\u0003I\u0000\u0002\u0000\r\u0000&\u0000,\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000,\u0000\u0003\u0000-\u0000.\n\u0000\u0004\nkWch\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000\/\u000e\u0000\/\u0000\u0001\u00000\u0011\u00000\u0000$\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000G\u0000r\u0000a\u0000b\u0000b\u0000e\u0000r\u0006\u0000.\u0000\u0003\u00001\u00002\n\u0000\u0004\nkFil\r\u00001\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u001d\u00003\n\u0000\u0004\npsxf\r\u00003\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u001c\u00004\r\u00004\u0000\u0002b\u0000\u0000\u0000\u0013\u0000\u001c\u00005\u00006\r\u00005\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0017\u00007\u00008\r\u00007\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u00009\n\u0000\u0004\ncobj\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00006\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001b\u0000:\u0000;\r\u0000:\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001b\u0000<\n\u0000\u0004\ncobj\r\u0000<\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0002\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u00002\u0000\u0003\u0000=\n\u0000\u0004\nkDur\r\u0000=\u0000\u0002n\u0000\u0000\u0000\u001e\u0000\"\u0000>\u0000?\r\u0000>\u0000\u00024\u0000\u0000\u0000\u001f\u0000\"\u0000@\n\u0000\u0004\ncobj\r\u0000@\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0003\u0000\u0003\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000A\u000f\u0000A\u0002\f\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000A'H+\u0000\u0000\u0000}Q\u0016ezcap VideoCapture.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000}R\u0012\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0012ezcap VideoGrabber\u0000\u0010\u0000\b\u0000\u0000Am\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000JZ\u0000\u0000\u0000\u0001\u0000\b\u0000}Q\u0000I\u0000\u0002\u0000EMacintosh HD:Applications:\u0000ezcap VideoGrabber:\u0000ezcap VideoCapture.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000e\u0000z\u0000c\u0000a\u0000p\u0000 \u0000V\u0000i\u0000d\u0000e\u0000o\u0000C\u0000a\u0000p\u0000t\u0000u\u0000r\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00006Applications\/ezcap VideoGrabber\/ezcap VideoCapture.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000!\u0000\u0002\u0000B\r\u0000B\u0000\u0003l\u0000\u0002\u0000(\u0000(\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u001b\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000\u001d\u0000F\u0000G\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000F\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000G\u0000\f\u0000A\u0000)\u0000\/\n\u0000\u0004\ncwin\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\nkWch\n\u0000\u0004\nkFil\n\u0000\u0004\npsxf\n\u0000\u0004\ncobj\n\u0000\u0004\nkDur\u0003\u0000\u0006\n\u0000\u0018.efxcStarnull\u0000\u0000null\u0011\u0000*\u0012\u0000$*\/j\f\u0000\u0003O**k\/l\/%\/m\/\f\u0000\u000bUOP\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"80f2ca915bcf95305feab10a47125bd7b48829ef","subject":"TotalFinder.osax wasn't removed properly by uninstaller (thanks Michal! for catching this)","message":"TotalFinder.osax wasn't removed properly by uninstaller (thanks Michal! for catching this)\n","repos":"binaryage\/totalfinder-installer,binaryage\/totalterminal-installer","old_file":"Uninstall.applescript","new_file":"Uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a66ad01492219045da0ae3888ef0da80168573dc","subject":"Add generic iTunes search as an additional fallback","message":"Add generic iTunes search as an additional fallback\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 25\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred-3:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkCacheFolderName : \"Album Artwork\"\nproperty artworkCachePath : (workflowCacheFolder & artworkCacheFolderName & \":\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- the text used to determine if a track is an audio file\nproperty songDescriptor : \"audio\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- builds path to album art for the given song\non getSongArtworkPath(theSong)\n\n\tif albumArtEnabled is false then return defaultIconName\n\n\ttell application \"iTunes\"\n\n\t\tset songArtist to artist of theSong\n\t\tset songAlbum to album of theSong\n\t\t-- generate a unique identifier for that album\n\t\tset songArtworkName to (songArtist & songArtworkNameSep & songAlbum) as text\n\t\t-- remove forbidden path characters\n\t\tset songArtworkName to replace(\":\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\"\/\", \"\", songArtworkName) of me\n\t\tset songArtworkName to replace(\".\", \"\", songArtworkName) of me\n\t\tset songArtworkPath to (artworkCachePath & songArtworkName & \".jpg\")\n\n\tend tell\n\n\ttell application \"Finder\"\n\n\t\t-- cache artwork if it's not already cached\n\t\tif not (songArtworkPath exists) then\n\n\t\t\ttell application \"iTunes\"\n\n\t\t\t\tset songArtworks to artworks of theSong\n\t\t\t\t-- only save artwork if artwork exists for this song\n\t\t\t\tif (length of songArtworks) is 0 then\n\n\t\t\t\t\t-- use default iTunes icon if song has no artwork\n\t\t\t\t\tset songArtworkPath to defaultIconName\n\n\t\t\t\telse\n\n\t\t\t\t\t-- save artwork to file\n\t\t\t\t\tset songArtwork to data of (item 1 of songArtworks)\n\t\t\t\t\tfileWrite(songArtworkPath, songArtwork) of me\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\tend if\n\n\tend tell\n\n\treturn songArtworkPath\n\nend getSongArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"iTunes\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"iTunes\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\n-- brings queue into view in iTunes window\non focusQueue()\n\n\ttell application \"iTunes\"\n\n\t\treveal user playlist workflowPlaylistName\n\n\tend tell\n\nend focusQueue\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"iTunes\"\n\n\t\tset thePlaylist to first user playlist whose id is playlistId\n\t\tset theSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn theSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose genre is genreName and kind contains songDescriptor\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset theSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset theSongs to theSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn theSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose artist is artistName and kind contains songDescriptor\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"iTunes\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset theSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName and kind contains songDescriptor)\n\t\t\tset albumSongs to sortSongsByAlbumOrder(albumSongs) of me\n\t\t\tset theSongs to theSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn theSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongs to every track of playlist 2 whose album is albumName and kind contains songDescriptor\n\t\tset theSongs to sortSongsByAlbumOrder(theSongs) of me\n\n\tend tell\n\n\treturn theSongs\n\nend getAlbumSongs\n\n-- sorts songs from the same album by track number\non sortSongsByAlbumOrder(theSongs)\n\n\ttell application \"iTunes\"\n\n\t\tset theSongsSorted to theSongs\n\n\t\tif length of theSongs is greater than 1 then\n\n\t\t\tset trackCount to track count of (item 1 of theSongs)\n\t\t\tset discCount to disc count of (item 1 of theSongs)\n\n\t\t\tif trackCount is not 0 and discCount is not 0 then\n\n\t\t\t\tset theSongsSorted to {} as list\n\n\t\t\t\trepeat with discIndex from 1 to discCount\n\n\t\t\t\t\trepeat with songIndex from 1 to trackCount\n\n\t\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\t\tif disc number of theSong is discIndex and track number of theSong is songIndex then\n\n\t\t\t\t\t\t\t\tset nextSong to theSong\n\t\t\t\t\t\t\t\tcopy nextSong to the end of theSongsSorted\n\n\t\t\t\t\t\t\tend if\n\n\t\t\t\t\t\tend repeat\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend repeat\n\n\t\t\tend if\n\n\t\tend if\n\n\tend tell\n\n\treturn theSongsSorted\n\nend sortSongsByAlbumOrder\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"iTunes\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId and kind contains songDescriptor\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit, songDescriptor)\n\n\t\t\ttell application \\\"iTunes\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query and kind contains songDescriptor)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query) and kind contains songDescriptor)\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit, songDescriptor)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset theSongs to getAlbumSongs(albumName)\n\tqueueSongs(theSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset theSongs to getArtistSongs(artistName)\n\tqueueSongs(theSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset theSongs to getGenreSongs(genreName)\n\tqueueSongs(theSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset theSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(theSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unknown type: \" & theType\n\tend if\n\n\tfocusQueue()\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tfocusQueue()\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"03152e3236bfe9ab7d8671664815b9d4121acad9","subject":"Fix 'The variable artist is not defined.' error.","message":"Fix 'The variable artist is not defined.' error.\n","repos":"JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits,JinnLynn\/MacOSX-Kits","old_file":"FetchLyric\/FetchLyric.applescript","new_file":"FetchLyric\/FetchLyric.applescript","new_contents":"-\u0000-\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\n\u0000-\u0000-\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000QS_MR\t-Nvfv\ua068R\u000bN}v^OX[Lk\u034b\fLk\u034b]X[(W\u0006\\_eu\f\/e\u0001cG\u0000r\u0000o\u0000w\u0000l\u0000\u001aw\n\u0000-\u0000-\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\n\u0000-\u0000-\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0000\n\u0000-\u0000-\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0000\n\u0000-\u0000-\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000:\u0000 \u0000\"\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000 \u0000:\u0000 \u0000\"\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000:\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000 \u0000:\u0000 \u0000{\u0000\"\u0000Lk\u034b]X[(W\fe\u0000QS\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS\u0010bR\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS1Y%\u00020\"\u0000,\u0000 \u0000\"\u0000*g\tbLkf\u00020\"\u0000}\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000 \u0000:\u0000 \u00001\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000 \u0000:\u0000 \u00002\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000 \u0000:\u0000 \u00003\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000 \u0000:\u0000 \u00004\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000(\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000)\u0000)\u0000 \u0000>\u0000 \u00000\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000\n\u0000\t\u0000o\u0000n\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000=\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000-\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000 \u0000a\u0000s\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000c\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000n\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000\u001d\\\u054bO(uLkf\u0001\\b\\O:NG\u0000r\u0000o\u0000w\u0000l\u0000V\u0007hQ\u0019\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000{\u0000}\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000\"\u0000\"\u0000,\u0000 \u0000\"\u0000\"\u0000,\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000)\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000k\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u00001\u0000\n\u0000\t\u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000<\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000S\tgS_Lkf-N*gX[(WLk\u034beMb\u001d\\\u054bSLk\u034b\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000&\u0000 \u0000\"\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000>\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000Lk\u034b\u0010bRS\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000e\u0000l\u0000s\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u0000i\u0000 \u0000+\u0000 \u00001\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000 \u0000>\u0000 \u0000k\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000-\u0000-\u0000 \u0000YgG\u0000r\u0000o\u0000w\u0000l\u0000*g\u040fL\u0019R>f:y[\u074bFh\n\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000&\u0000 \u0000\"\u0000Lk\u034bS~_g\u0001\"\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000nx[\"\u0000}\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u00001\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u00001\u0000 \u0000g\u0000i\u0000v\u0000i\u0000n\u0000g\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u00005\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000","old_contents":"-\u0000-\u0000 \u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\n\u0000-\u0000-\u0000 \u0000D\u0000E\u0000S\u0000C\u0000R\u0000I\u0000P\u0000T\u0000I\u0000O\u0000N\u0000:\u0000 \u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000QS_MR\t-Nvfv\ua068R\u000bN}v^OX[Lk\u034b\fLk\u034b]X[(W\u0006\\_eu\f\/e\u0001cG\u0000r\u0000o\u0000w\u0000l\u0000\u001aw\n\u0000-\u0000-\u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000:\u0000 \u0000J\u0000i\u0000n\u0000n\u0000L\u0000y\u0000n\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\n\u0000-\u0000-\u0000 \u0000L\u0000A\u0000S\u0000T\u0000 \u0000U\u0000P\u0000D\u0000A\u0000T\u0000E\u0000D\u0000:\u0000 \u00002\u00000\u00001\u00002\u0000-\u00000\u00005\u0000-\u00000\u00004\u0000\n\u0000-\u0000-\u0000 \u0000I\u0000N\u0000T\u0000R\u0000O\u0000 \u0000P\u0000A\u0000G\u0000E\u0000:\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000j\u0000e\u0000e\u0000k\u0000e\u0000r\u0000.\u0000n\u0000e\u0000t\u0000\/\u0000f\u0000e\u0000t\u0000c\u0000h\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000-\u0000f\u0000o\u0000r\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000\/\u0000\n\u0000-\u0000-\u0000 \u0000R\u0000E\u0000F\u0000:\u0000 \u0000M\u0000a\u0000r\u0000t\u0000i\u0000a\u0000n\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000b\u0000l\u0000o\u0000g\u0000.\u00004\u00003\u00002\u00001\u0000.\u0000l\u0000a\u0000\/\u0000a\u0000r\u0000t\u0000i\u0000c\u0000l\u0000e\u0000s\u0000\/\u00002\u00000\u00001\u00002\u0000\/\u00000\u00001\u0000\/\u00002\u00007\u0000\/\u0000u\u0000s\u0000e\u0000-\u0000a\u0000p\u0000p\u0000l\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000-\u0000t\u0000o\u0000-\u0000s\u0000e\u0000t\u0000-\u0000i\u0000t\u0000u\u0000n\u0000e\u0000s\u0000-\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\/\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000:\u0000 \u0000\"\u0000F\u0000e\u0000t\u0000c\u0000h\u0000L\u0000y\u0000r\u0000i\u0000c\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000 \u0000:\u0000 \u0000\"\u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000.\u0000s\u0000i\u0000n\u0000a\u0000a\u0000p\u0000p\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000\"\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000:\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000 \u0000:\u0000 \u0000{\u0000\"\u0000Lk\u034b]X[(W\fe\u0000QS\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS\u0010bR\u00020\"\u0000,\u0000 \u0000\"\u0000Lk\u034bS1Y%\u00020\"\u0000,\u0000 \u0000\"\u0000*g\tbLkf\u00020\"\u0000}\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000 \u0000:\u0000 \u00001\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000 \u0000:\u0000 \u00002\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000 \u0000:\u0000 \u00003\u0000\n\u0000p\u0000r\u0000o\u0000p\u0000e\u0000r\u0000t\u0000y\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000 \u0000:\u0000 \u00004\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000o\u0000 \u0000(\u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000b\u0000u\u0000n\u0000d\u0000l\u0000e\u0000 \u0000i\u0000d\u0000e\u0000n\u0000t\u0000i\u0000f\u0000i\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000)\u0000)\u0000 \u0000>\u0000 \u00000\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000\n\u0000\t\u0000o\u0000n\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000d\u0000 \u0000\"\u0000c\u0000o\u0000m\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000.\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000=\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000t\u0000 \u0000e\u0000q\u0000u\u0000a\u0000l\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000\"\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000&\u0000 \u0000\"\u0000 \u0000-\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000o\u0000f\u0000 \u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000D\u0000e\u0000s\u0000c\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000{\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000}\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000 \u0000a\u0000s\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000a\u0000l\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000e\u0000n\u0000a\u0000b\u0000l\u0000e\u0000d\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000L\u0000i\u0000s\u0000t\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000c\u0000o\u0000n\u0000 \u0000o\u0000f\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000n\u0000o\u0000t\u0000i\u0000f\u0000y\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000t\u0000h\u0000e\u0000_\u0000d\u0000e\u0000s\u0000c\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000\u001d\\\u054bO(uLkf\u0001\\b\\O:NG\u0000r\u0000o\u0000w\u0000l\u0000V\u0007hQ\u0019\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\n\u0000\n\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000\"\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000{\u0000}\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000\"\u0000\"\u0000,\u0000 \u0000\"\u0000\"\u0000,\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000U\u0000N\u0000S\u0000E\u0000L\u0000E\u0000C\u0000T\u0000E\u0000D\u0000)\u0000\n\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000k\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000u\u0000n\u0000t\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u00001\u0000\n\u0000\t\u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000(\u0000i\u0000t\u0000e\u0000m\u0000 \u0000i\u0000 \u0000o\u0000f\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000n\u0000a\u0000m\u0000e\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000t\u0000o\u0000 \u0000(\u0000g\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000)\u0000\n\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u0000t\u0000o\u0000 \u0000d\u0000a\u0000t\u0000a\u0000 \u0000o\u0000f\u0000 \u0000a\u0000r\u0000t\u0000w\u0000o\u0000r\u0000k\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000F\u0000A\u0000I\u0000L\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000l\u0000y\u0000r\u0000i\u0000c\u0000 \u0000<\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000S\tgS_Lkf-N*gX[(WLk\u034beMb\u001d\\\u054bSLk\u034b\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000t\u0000o\u0000 \u0000\"\u0000t\u0000i\u0000t\u0000l\u0000e\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000&\u0000 \u0000\"\u0000&\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000=\u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000\"\u0000c\u0000u\u0000r\u0000l\u0000 \u0000-\u0000d\u0000 \u0000'\u0000\"\u0000 \u0000&\u0000 \u0000r\u0000e\u0000q\u0000u\u0000e\u0000s\u0000t\u0000D\u0000a\u0000t\u0000a\u0000 \u0000&\u0000 \u0000\"\u0000'\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000b\u0000a\u0000s\u0000e\u0000U\u0000R\u0000L\u0000\n\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000l\u0000e\u0000n\u0000g\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000>\u0000 \u00001\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000-\u0000-\u0000 \u0000Lk\u034b\u0010bRS\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000l\u0000y\u0000r\u0000i\u0000c\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000T\u0000r\u0000a\u0000c\u0000k\u0000 \u0000t\u0000o\u0000 \u0000s\u0000o\u0000n\u0000g\u0000L\u0000y\u0000r\u0000i\u0000c\u0000s\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000S\u0000U\u0000C\u0000C\u0000E\u0000S\u0000S\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000e\u0000l\u0000s\u0000e\u0000\n\u0000\t\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000 \u0000t\u0000o\u0000 \u0000S\u0000T\u0000A\u0000T\u0000U\u0000S\u0000_\u0000L\u0000Y\u0000R\u0000I\u0000C\u0000_\u0000E\u0000X\u0000I\u0000S\u0000T\u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000r\u0000o\u0000w\u0000l\u0000N\u0000o\u0000t\u0000i\u0000f\u0000y\u0000(\u0000t\u0000h\u0000i\u0000s\u0000_\u0000a\u0000r\u0000t\u0000i\u0000s\u0000t\u0000,\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000t\u0000i\u0000t\u0000l\u0000e\u0000,\u0000 \u0000f\u0000e\u0000t\u0000c\u0000h\u0000_\u0000s\u0000t\u0000a\u0000t\u0000u\u0000s\u0000)\u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000i\u0000 \u0000t\u0000o\u0000 \u0000i\u0000 \u0000+\u0000 \u00001\u0000\n\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000 \u0000>\u0000 \u0000k\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000e\u0000x\u0000i\u0000t\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000r\u0000e\u0000p\u0000e\u0000a\u0000t\u0000\n\u0000\t\u0000-\u0000-\u0000 \u0000YgG\u0000r\u0000o\u0000w\u0000l\u0000*g\u040fL\u0019R>f:y[\u074bFh\n\u0000\t\u0000i\u0000f\u0000 \u0000i\u0000s\u0000G\u0000r\u0000o\u0000w\u0000l\u0000R\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000=\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000n\u0000\n\u0000\t\u0000\t\u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000&\u0000 \u0000\"\u0000Lk\u034bS~_g\u0001\"\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000 \u0000{\u0000\"\u0000nx[\"\u0000}\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u00001\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000i\u0000c\u0000o\u0000n\u0000 \u00001\u0000 \u0000g\u0000i\u0000v\u0000i\u0000n\u0000g\u0000 \u0000u\u0000p\u0000 \u0000a\u0000f\u0000t\u0000e\u0000r\u0000 \u00005\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000N\u0000a\u0000m\u0000e\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000i\u0000f\u0000\n\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b36206d1aa1dae0ebade14b799fb4d057a04f7df","subject":"Remove an unused AppleScript","message":"Remove an unused AppleScript\n","repos":"alexwlchan\/safari.rs,alexwlchan\/safari.rs","old_file":"src\/scripts\/list-open-tabs.scpt","new_file":"src\/scripts\/list-open-tabs.scpt","new_contents":"","old_contents":"set listOfUrls to {}\n\ntell application \"Safari\"\n repeat with t in tabs of windows\n copy (URL of t) to the end of listOfUrls\n end repeat\nend tell\n\nget listOfUrls\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"cd54f8a5a21e497aa892fdf01088238b6197c101","subject":"First attempt at AppleScript for building labels #22","message":"First attempt at AppleScript for building labels #22\n","repos":"vanda\/DigitalLabels,vanda\/DigitalLabels","old_file":"application\/Build Digital Labels.scpt","new_file":"application\/Build Digital Labels.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"bc0329fb4872bac9f5c917cb9c4f48a8084e6936","subject":"Fixes #5 \u2014 robust error-checking for the concatenate function","message":"Fixes #5 \u2014 robust error-checking for the concatenate function\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n \n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n try\n repeat with theIndex in the_index\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n try\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n \n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n add file \":private:tmp:cat.m4a\"\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"db02eca9987d1a5ca31cb8a87b6377c23ff3c94d","subject":"Resolved confusion from moving cat.mp4 to cat.m4a","message":"Resolved confusion from moving cat.mp4 to cat.m4a\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n try\n add \"\/private\/tmp\/cat.m4a\"\n end try\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4a\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n try\n add \"\/private\/tmp\/cat.mp4\"\n end try\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"bbdafa44a8e4e49cb8a44e4b55cb1cec3d7612c7","subject":"Add a way to select which speakers to set","message":"Add a way to select which speakers to set\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Given a list of buttons, find the remote speakers button\n\t-- by finding the first button with a name that isn't in a \n\t-- rejection list.\n\ton findCorrectButton(in_buttons)\n\t\tset buttons_to_skip to {\"Burn Disc\"}\n\t\t\n\t\trepeat with a_button in in_buttons\n\t\t\ttry -- some buttons don't have names\n\t\t\t\tset the_name to name of a_button\n\t\t\t\tif buttons_to_skip does not contain {the_name} then\n\t\t\t\t\treturn the_name\n\t\t\t\tend if\n\t\t\tend try\n\t\tend repeat\n\t\t\n\t\treturn 16 -- default response\n\tend findCorrectButton\n\t\n\ton setRemoteSpeakersTo(item_index)\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\tset the_buttons to (get buttons of window 1)\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton(the_buttons))\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick button the_speaker_button of window 1\n\t\t\t\tkey code 115 -- Home Key (first speaker in list)\n\t\t\t\t\n\t\t\t\trepeat item_index times\n\t\t\t\t\tkey code 125 -- Down Arrow\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\tkey code 36 -- Return Key\n\t\t\t\t\n\t\t\t\t-- Wait for iTunes to connect to the speakers\n\t\t\t\tdelay 5\n\t\t\tend tell\n\t\tend tell\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\non handle_string(s)\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(s)\n\tremoteSpeakerFinder's resetWindow()\n\tset volume 1\n\ttell application \"iTunes\"\n\t\tplay (get the first item of (get every track where database ID is 24759))\n\tend tell\nend handle_string\n\non run\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(2)\n\tremoteSpeakerFinder's resetWindow()\nend run\n","old_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n -- Given a list of buttons, find the remote speakers button\n -- by finding the first button with a name that isn't in a \n -- rejection list.\n on findCorrectButton (in_buttons)\n set buttons_to_skip to {\"Burn Disc\"}\n\n repeat with a_button in in_buttons\n try -- some buttons don't have names\n set the_name to name of a_button\n if buttons_to_skip does not contain {the_name} then\n return the_name\n end if\n end try\n end repeat\n\n return 16 -- default response\n end findCorrectButton\nend script\n\n(*\n Tell iTunes to use the \"Mobile\" set of remote speakers.\n*)\ntell application \"iTunes\"\n set the_bwindow to (get first browser window)\n set the_state to (get minimized of the_bwindow)\n set visible of the_bwindow to true\n set minimized of the_bwindow to false\nend tell\n\ntell application \"System Events\"\n tell process \"iTunes\"\n \n set the_buttons to (get buttons of window 1)\n set the_speaker_button to (remoteSpeakerFinder's findCorrectButton(the_buttons))\n\n -- Switch to the speakers in my bedroom\n set frontmost to true\n click button the_speaker_button of window 1\n key code 115 -- Home Key (first speaker in list)\n key code 125 -- Down Arrow\n key code 125 -- Down Arrow\n key code 36 -- Return Key\n\n -- Wait for iTunes to connect to the speakers\n delay 5\n end tell\nend tell\n\ntell application \"iTunes\"\n -- Return window to previous state\n set minimized of the_bwindow to the_state\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e31216fef4025318d6242e2caa65713770d2b296","subject":"Compress multiple adjacent spaces in title","message":"Compress multiple adjacent spaces in title\n\nMultiple adjacent spaces can result when converting to ASCII and\ncharacters that can't be represented are ignored.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-01-04\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tOptionally, open the text file in the text editing application of\n\tyour choice.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n(*\n\tTODO: The edit_log() function should also support opening the text\n\tfile in a command-line editor run in the Terminal.\n*)\n\n\n(*==== Init ====*)\n\nset io_obj to make_io() -- Instantiate an object for read\/write\/append file operations\n--set io_obj to make_null_io() -- :DEBUG: don't write to file; just read\n\n---- properties and globals ----\n\nproperty script_name : \"Log Page\"\nproperty script_version : \"@@VERSION@@\"\nproperty bundle_id : \"net.jazzhead.scpt.Safari.LogPage\"\n\nproperty p_list_types : {\"top\", \"sub\", \"all\"}\n\nglobal g_top_categories, g_all_categories, g_previous_categories\nglobal g_list_type, g_previous_list_type\nglobal g_prompt_count, g_prompt_total\n\nset g_list_type to missing value\nset g_previous_list_type to missing value\n\n\n---- Unicode characters for list dialogs ----\n\nproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\nproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\nproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n-- (A smaller black left-pointing triangle or a slightly more angled heavy left-pointing angle quotation mark ornament would be better. The leftwards black arrow just doesn't seem Mac-like.)\n\n-- Format for dialogs\nproperty u_bullet_ls : missing value -- for list items\nproperty u_back_ls : missing value -- for list items\nproperty u_back_btn : missing value -- for buttons\nset u_bullet_ls to \" \" & u_bullet & \" \"\nset u_back_ls to \" \" & u_back & \" \"\nset u_back_btn to \"\" & u_back & \" \"\n\n\n---- Preferences ----\n\n--set plist_dir to POSIX path of (path to preferences from user domain)\nset plist_dir to \"~\/Desktop\/Test Folder\/Preferences\/\" -- :DEBUG:TEMP:\n\nset plist_path to plist_dir & bundle_id & \".plist\"\nset plist_keys to {\"logFile\", \"textEditor\"}\nset state_keys to {\"lastMainCategory\", \"lastFullCategory\"}\n\n--set default_file to POSIX path of (path to application support folder from user domain) & \"Jazzhead\/Log Page\/urls.txt\"\nset default_file to POSIX path of (path to desktop folder from user domain) & \"Test Folder\/App Support\/Log Page\/urls.txt\" -- :DEBUG:TEMP:\n\nset default_editor to \"TextEdit\"\n\n\n---- Sample categories for URL file ----\n\n-- Default categories\/labels if none are found in (or there is no) URL file.\n-- (These can be edited or deleted afterwards in the URL file).\n--\n-- :TODO: These should only be written to new URL files where they can be\n-- later deleted. They should NOT be included in every list dialog. Maybe\n-- change the name of this variable to 'sample_categories'.\n--\nset default_categories to \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\n\n(*==== Read preferences ====*)\n\n--\n-- Instantiate an object to store the preferences.\n--\nset settings_model to make_settings_model(plist_path, default_file, default_editor)\ntry\n\tsettings_model's read_settings(plist_keys)\non error err_msg number err_num\n\t--error \"DEBUG: \" & err_msg number err_num\n\tset settings_model to do_first_run(settings_model)\nend try\n\n--\n-- Get the needed settings from the model\n--\ntell settings_model\n\tset log_file to get_item(\"logFile\")\n\tset text_editor to get_item(\"textEditor\")\nend tell\n\ndisplay dialog log_file & return & return & text_editor with title \"DEBUG\"\n--return \"[debug] BREAK\"\n\n--\n-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n--\nset log_file to expand_home_path(log_file)\n\n--\n-- Get a mac file path for file IO and editing\n--\nset log_file_mac to POSIX file log_file\n\n--\n-- Create any directories needed in the web page log file path\n--\ncreate_directory(first item of split_path_into_dir_and_file(log_file))\n\n--return \"[debug] BREAK\"\n\n\n(*\n==================================================\n Main\n==================================================\n*)\n\n(*==== Get web page info ====*)\n\n--\n-- Get URL and title from front browser window\n--\ntell application \"Safari\"\n\tactivate\n\ttry\n\t\tset this_url to URL of front document\n\t\tset this_title to name of first tab of front window whose visible is true\n\t\t--error \"DEBUG: throw an error\"\n\ton error err_msg number err_num\n\t\t--error \"Can't get info from Safari: \" & err_msg number err_num\n\t\tset t to \"Error: Can't get info from Safari\"\n\t\tset m to err_msg & \" (\" & err_num & \")\"\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend try\nend tell\n-- Transliterate non-ASCII characters to ASCII\nset this_title to convert_to_ascii(this_title)\n\n--return this_title -- :DEBUG:\n\n\n(*==== Parse existing data (model-ish) ====*)\n\n--\n-- Format the record separator between log entries\n--\nset rule_char to \"-\"\nset rule_width to 80 -- total width\nset name_col_width to 7 -- name column width only\nset field_sep to \" | \"\nset rec_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\n--\n-- Format date-time string as \"YYYY-MM-DD HH:MM:SS\"\n--\nset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\nset m to m as integer -- coerce month string\n-- Pad numbers with leading zeros:\nset tmp_list to {}\nrepeat with this_item in {m, d, hh, mm, ss}\n\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\tset end of tmp_list to this_item\nend repeat\nset {m, d, hh, mm, ss} to tmp_list\n-- Final string:\nset date_time to join_list({y, m, d}, \"-\") & \" \" & join_list({hh, mm, ss}, \":\")\n\n--\n-- Add header to new or empty log file\n--\nset should_init to false\ntell application \"Finder\"\n\tif (not (exists log_file_mac)) or (io_obj's read_file(log_file_mac) is \"\") then\n\t\tset should_init to true\n\tend if\nend tell\n\nset head_sep to multiply_text(\"#\", 80)\nif should_init then\n\tset file_header to head_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & head_sep & linefeed & default_categories & linefeed & head_sep & \"\n# END: category\/label list\n\" & head_sep & linefeed\n\ttell io_obj to write_file(log_file_mac, file_header)\n\tset all_category_txt to default_categories\nelse\n\t-- Read categories from file\n\t(*\n\t\t:TODO: Error handling.\n\t*)\n\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(io_obj's read_file(log_file_mac), head_sep))\nend if\n\n--\n-- Parse any existing labels from the \"Label\" fields of the URLs file:\n--\nset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file & \" | sort | uniq\"\n--return s\nset categories_used to do shell script s without altering line endings\n\n--\n-- Sort those along with the manually entered categories\/labels:\n--\nset s to \"echo \\\"\" & all_category_txt & linefeed & categories_used & \"\\\" | egrep -v '^$' | sort | uniq\"\nset all_category_txt to do shell script s without altering line endings\n--return all_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_all_categories to paragraphs of all_category_txt\nif g_all_categories's last item is \"\" then set g_all_categories to g_all_categories's items 1 thru -2\n--return g_all_categories -- :DEBUG:\n\n--\n-- Get top-level categories:\n--\nset s to \"LANG=C echo \\\"\" & all_category_txt & \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\nset top_category_txt to do shell script s without altering line endings\n--return top_category_txt -- :DEBUG:\n--\n-- Coerce the lines into a list:\n--\nset g_top_categories to paragraphs of top_category_txt\nif g_top_categories's last item is \"\" then set g_top_categories to g_top_categories's items 1 thru -2\n--return g_top_categories -- :DEBUG:\n\n\n(*==== Main view(-ish) ====*)\n\n--\n-- Prompt for title, category\/subcategories and optional note for URL\n--\n\n-- The number of dialog prompts will vary depending on if a subcategory list is requested.\nset g_prompt_count to 1 -- increment with every dialog or list prompt, decrement if going back\nset g_prompt_total to 4 -- increment if sub\/full lists are displayed, decrement if going back\n\n--\n-- Accept or modify page title\n--\nset b to {\"Manually Edit Log File\", \"Cancel\", \"Next...\"}\nset t to \"\" & script_name & \": Title (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to \"To log the URL for:\" & return & return \n\t& tab & \"\\\"\" & this_title & \"\\\"\" & return & return & \n\t\"first accept or edit the title.\"\ndisplay dialog m default answer this_title with title t buttons b default button last item of b cancel button second item of b with icon note\nset {this_title, btn_pressed} to {text returned of result, button returned of result}\nset g_prompt_count to g_prompt_count + 1\nif btn_pressed is first item of b then\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\tedit_log(log_file_mac, text_editor)\n\treturn \"Script ended with '\" & (first item of b as text) & \"'\"\nend if\n\n--\n-- Accept or modify URL\n--\n-- :TODO:\n\n--\n-- Select a category\n--\nset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\nif chosen_category is false then error number -128 -- User canceled\n\n--\n-- Get the info so far\n--\nset cur_info to \"TITLE:\" & tab & tab & this_title & return & \"URL:\" & tab & tab & this_url\n\n--\n-- Modify selected category or enter a new category\n--\nset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\nset m to cur_info & return & return & \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Example: \\\"Development:AppleScript:Mail\\\"\"\nrepeat --10 times -- limit loops as a precaution during development\n\tdisplay dialog m default answer chosen_category with title t buttons b default button last item of b cancel button second item of b with icon note\n\tset {this_label, btn_pressed} to {text returned of result, button returned of result}\n\tif this_label is not \"\" then\n\t\texit repeat\n\telse\n\t\tset t2 to \"Category required\"\n\t\tset m2 to \"Please supply a category for the URL.\"\n\t\tdisplay alert t2 message m2 as warning\n\tend if\nend repeat\nset g_prompt_count to g_prompt_count + 1\n\n--\n-- Update the info\n--\nset cur_info to cur_info & return & \"CATEGORY:\" & tab & this_label\n\n--\n-- Optionally add note\n--\nif btn_pressed is last item of b then\n\tset last item of b to \"Append URL to Log File\"\n\tset t to \"\" & script_name & \": Note (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tset m to cur_info & return & return & \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\tdisplay dialog m default answer \"\" with title t buttons b default button last item of b with icon note\n\tset {this_note, btn_pressed} to {text returned of result, button returned of result}\nend if\n\nif btn_pressed is last item of b then\n\t--\n\t-- Append or edit the log file\n\t--\n\tset final_text to join_list({\n\t\t\"Date \" & field_sep & date_time, \n\t\t\"Label\" & field_sep & this_label, \n\t\t\"Title\" & field_sep & this_title, \n\t\t\"URL \" & field_sep & this_url}, linefeed) & linefeed\n\tif this_note is not \"\" then\n\t\tset final_text to final_text & \"Note \" & field_sep & this_note & linefeed\n\tend if\n\tset final_text to final_text & rec_sep & linefeed\n\t--return \"[DEBUG]\" & return & final_text\n\tio_obj's append_file(log_file_mac, final_text)\n\t\n\t--\n\t-- Save category label to use as default for next run\n\t--\n\tset last_main_label to split_text(this_label, \":\")'s first item\n\t--return {last_main_label, this_label} -- :DEBUG:\n\ttell settings_model\n\t\tif read_pref(\"lastMainCategory\") is not last_main_label then\n\t\t\twrite_pref(\"lastMainCategory\", last_main_label)\n\t\tend if\n\t\tif read_pref(\"lastFullCategory\") is not this_label then\n\t\t\twrite_pref(\"lastFullCategory\", this_label)\n\t\tend if\n\tend tell\nelse\n\t(*if should_use_shell then\n\t\tset this_log_file to quoted form of log_file_posix\n\telse\n\t\tset this_log_file to log_file\n\tend if\n\tedit_log(this_log_file, text_editor, should_use_shell)*)\n\t-- :TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\n\tedit_log(log_file_mac, text_editor)\nend if\n\n\n--display alert \"Log Page\" message \"DEBUG: Script complete.\"\n\n\n(*\n==================================================\n Subroutines\n==================================================\n*)\n\n(*==== Main Functions ====*)\n\n----- Dialog Views\n\non choose_category(settings_model, cur_list, cur_list_type)\n\t--log \"[debug] in choose_category(_list_, \\\"\" & cur_list_type & \"\\\")\"\n\t\n\tif cur_list_type is not in p_list_types then\n\t\tset t to \"Error: Bad list type\"\n\t\tset m to \"choose_category(): The supplied list type parameter, '\" & cur_list_type & \"', is not a valid list type from the 'p_list_types' property. Please report this bug to the developer.\"\n\t\t-- This bug is probably the result of a typo in the recursive section below.\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\tend if\n\t\n\tif cur_list_type is not \"all\" then copy cur_list to g_previous_categories\n\t\n\t--log \"[debug] g_previous_categories: \" & join_list(g_previous_categories, \", \")\n\t\n\tset_list_type(cur_list_type) -- set global current and previous list types\n\t\n\t--\n\t-- Configure the non-category navigation selections for the category list dialogs\n\t--\n\tset extra_items to get_extra_items(cur_list_type)\n\tset list_rule to extra_items's last item\n\t\n\t--\n\t-- Customize list dialog properties\n\t--\n\tset t to \"\" & script_name & \": Category (\" & g_prompt_count & \"\/\" & g_prompt_total & \")\"\n\tif cur_list_type is \"top\" then\n\t\tset m to \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories unless you are creating a new category.\"\n\telse if cur_list_type is in {\"sub\", \"all\"} then\n\t\tset m to \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\tend if\n\tset b to \"Next...\"\n\t\n\t--\n\t-- Get last used category for default selections\n\t--\n\ttry\n\t\tset last_main_label to settings_model's read_pref(\"lastMainCategory\")\n\ton error\n\t\tset last_main_label to \"\"\n\tend try\n\ttry\n\t\tset last_full_label to settings_model's read_pref(\"lastFullCategory\")\n\t\tif last_full_label is \"\" then error\n\ton error\n\t\tset last_full_label to last_main_label\n\tend try\n\tif cur_list_type is \"top\" then\n\t\tset this_default_item to last_main_label\n\telse\n\t\tset this_default_item to last_full_label\n\tend if\n\t\n\t--\n\t-- Prompt the user for category and\/or subcategory choices\n\t--\n\trepeat --10 times -- limit loops as a precaution during development\n\t\tset chosen_category to choose from list extra_items & cur_list with title t with prompt m OK button name b default items this_default_item\n\t\tif chosen_category as text is not list_rule then\n\t\t\texit repeat\n\t\telse\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend if\n\tend repeat\n\tif chosen_category is false then return false\n\t\n\t--\n\t-- Call this handler recursively if another list was requested.\n\t-- When specifying a 'cur_list_type' parameter to choose_category(), make\n\t-- sure it is one of the allowed types from the 'p_list_types' property.\n\t--\n\tif cur_list_type is in {\"top\", \"sub\"} and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\tset g_prompt_total to g_prompt_total + 1\n\t\t--log \"[debug] recurse to choose_category(g_all_categories, \\\"all\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_all_categories, \"all\")\n\telse if cur_list_type is \"sub\" and chosen_category as text is extra_items's second item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\telse if cur_list_type is \"all\" and chosen_category as text is extra_items's first item then\n\t\t--log \"[debug] decrementing both prompt count and total\"\n\t\tset g_prompt_count to g_prompt_count - 1\n\t\tset g_prompt_total to g_prompt_total - 1\n\t\tif g_previous_list_type is \"sub\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_previous_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_previous_categories, \"sub\")\n\t\telse if g_previous_list_type is \"top\" then\n\t\t\t--log \"[debug] recurse to choose_category(g_top_categories, \\\"top\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, g_top_categories, \"top\")\n\t\tend if\n\telse if cur_list_type is \"top\" and chosen_category as text is extra_items's second item then\n\t\tset g_prompt_count to g_prompt_count + 1\n\t\treturn \"\"\n\telse if cur_list_type is \"top\" then\n\t\tset sub_categories to get_subcategories(chosen_category)\n\t\tif (count of sub_categories) is greater than 1 then\n\t\t\t--log \"[debug] incrementing both prompt count and total\"\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\t\tset g_prompt_total to g_prompt_total + 1\n\t\t\t--log \"[debug] recurse to choose_category(sub_categories, \\\"sub\\\")\"\n\t\t\tset chosen_category to choose_category(settings_model, sub_categories, \"sub\")\n\t\telse\n\t\t\t-- Advance to next dialog (category editing)\n\t\t\tset g_prompt_count to g_prompt_count + 1\n\t\tend if\n\telse\n\t\t-- Advance to next dialog (category editing)\n\t\t--log \"[debug] incrementing prompt count\"\n\t\tset g_prompt_count to g_prompt_count + 1\n\tend if\n\t\n\treturn chosen_category\nend choose_category\n\non get_subcategories(chosen_category)\n\tset sub_categories to {}\n\trepeat with this_cat in g_all_categories\n\t\tif (this_cat as text) is (chosen_category as text) \n\t\t\tor (this_cat as text) starts with (chosen_category & \":\") then\n\t\t\tset end of sub_categories to this_cat as text\n\t\tend if\n\tend repeat\n\treturn sub_categories\nend get_subcategories\n\non set_list_type(cur_type)\n\tset g_previous_list_type to g_list_type\n\tset g_list_type to cur_type\nend set_list_type\n\non get_extra_items(list_type)\n\tif list_type is \"top\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list with subcategories\", \n\t\t\tu_bullet_ls & \"Create a new category...\", \n\t\t\tmultiply_text(u_dash, 20)}\n\telse if list_type is \"sub\" then\n\t\treturn {\n\t\t\tu_bullet_ls & \"Show full list of categories...\", \n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse if list_type is \"all\" then\n\t\treturn {\n\t\t\tu_back_ls & \"Go back to previous list...\", \n\t\t\tmultiply_text(u_dash, 35)}\n\telse\n\t\treturn false\n\tend if\nend get_extra_items\n\n----- External Views\n\non edit_log(log_file, text_editor)\n\t--on edit_log(log_file, text_editor, should_use_shell)\n\t(*\n\t\tTODO:MAYBE:\n\t\tHave a configuration variable in the main script to specify which text\n\t\teditor to use. Have another variable for configuring whether or not\n\t\tit's a GUI application. Then this function would use 'open' to launch a\n\t\tGUI app or script the Terminal to launch a command-line editor.\n\t\tOptionally use 'do shell script' to launch a compatible GUI app from a\n\t\tcommand line (so that the working directory can be changed to that of\n\t\tthe file first), but I don't know if that will really be necessary\n\t\tsince I have a Vim shortcut for quickly changing the working directory\n\t\tif need be.\n\t*)\n\t(*if should_use_shell then\n\t\tset s to text_editor & space & log_file & space & \"> \/dev\/null 2>&1\"\n\t\tdo shell script s\n\t\treturn\n\telse*)\n\tset t to script_name\n\t--set m to \":TODO: edit_log() function: use non-shell-invoked editor.\"\n\tset m to \":TODO:2013.01.03: only opening file in GUI editor now, so need Mac path?\"\n\tset b to {\"Cancel\"}\n\tdisplay alert t message m buttons b cancel button 1 as critical\n\treturn false\n\t--end if\nend edit_log\n\n(*==== Settings Functions ====*)\n\non do_first_run(settings_model)\n\tlocal settings_model\n\tset t to \"Log Page > First Run\"\n\tset m to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t& \"\tURLs File:\t\" & settings_model's get_default_file() & return & return \n\t\t& \"\tText Editor:\t\" & settings_model's get_default_editor() & return & return \n\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t-- :TODO: Offer to move the file when changing file location\/name. (Not here.)\n\tset b to {\"Change settings\", \"Cancel\", \"Continue\"}\n\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\tset btn_pressed to button returned of result\n\t\n\t--settings_model's set_item(\"logFile\", \"DEBUG: logFile: do_first_run()\") -- :DEBUG:\n\t--settings_model's set_item(\"textEditor\", \"DEBUG: textEditor: do_first_run()\") -- :DEBUG:\n\t\n\t-- Use defaults\n\tsettings_model's set_item(\"logFile\", settings_model's get_default_file())\n\tsettings_model's set_item(\"textEditor\", settings_model's get_default_editor())\n\t\n\t-- Change settings\n\tif btn_pressed is b's first item then\n\t\tset_preferences(settings_model, settings_model's get_default_file(), settings_model's get_default_editor())\n\tend if\n\t\n\t-- Save settings\n\tsettings_model's write_settings()\n\t\n\treturn settings_model\nend do_first_run\n\non set_preferences(settings_model, default_file, default_editor)\n\t(*\n\t\tTriggered from:\n\t\t * do_first_run()\n\t\t * any list dialog from main script (when saving a URL)\n\t*)\n\tlocal settings_model, default_file, default_editor, settings_view\n\t\n\t--\n\t-- Prompt user for preferences\n\t--\n\tset settings_view to make_settings_view(default_file, default_editor, settings_model's get_item(\"logFile\"), settings_model's get_item(\"textEditor\"))\n\tsettings_view's display()\n\t\n\t--\n\t-- Write preferences file (if necessary)\n\t--\n\tif settings_view's get_file() is not settings_model's get_item(\"logFile\") then\n\t\tsettings_model's set_item_and_write_pref(\"logFile\", settings_view's get_file())\n\tend if\n\t\n\tif settings_view's get_editor() is not settings_model's get_item(\"textEditor\") then\n\t\tsettings_model's set_item_and_write_pref(\"textEditor\", settings_view's get_editor())\n\tend if\n\t\n\treturn settings_model\nend set_preferences\n\n\n(*==== Utility Functions ====*)\n\non convert_to_ascii(non_ascii_txt)\n\t--\n\t-- From 'man iconv_open':\n\t--\n\t-- When the string \"\/\/TRANSLIT\" is appended to _tocode_, transliteration\n\t-- is activated. This means that when a character cannot be represented\n\t-- in the target character set, it can be approximated through one or\n\t-- several characters that look similar to the original character.\n\t--\n\t-- When the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t-- cannot be represented in the target character set will be silently\n\t-- discarded.\n\t--\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(file_path)\n\tif file_path starts with \"~\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 3 thru -1 of file_path as text\n\telse if file_path starts with \"$HOME\/\" then\n\t\tset posix_home to get_posix_home()\n\t\tset file_path to posix_home & characters 7 thru -1 of file_path as text\n\tend if\n\treturn file_path\nend expand_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\n(*\n==================================================\n Script Objects (and Constructors)\n==================================================\n*)\n\n(*==== Main Classes ====*)\n\n-- MODEL: Settings\non make_settings_model(plist_path, default_file, default_editor)\n\t(*\n\t\tDependencies:\n\t\t * AssociativeList class\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t\t * create_directory() function (supplied by main script)\n\t*)\n\tscript SettingsModel\n\t\tproperty class : \"SettingsModel\"\n\t\tproperty parent : make_associative_list()\n\t\t\n\t\tproperty _plist_path : missing value\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_default_file()\n\t\t\treturn _default_file\n\t\tend get_default_file\n\t\t\n\t\ton get_default_editor()\n\t\t\treturn _default_editor\n\t\tend get_default_editor\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) -- void; modifies associative list\n\t\t\tlog \"[debug] read_settings()\" -- MARK\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\tset_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tlog \"[debug] read_settings(): done\"\n\t\tend read_settings\n\t\t\n\t\ton write_settings() -- void; writes to file\n\t\t\ttry\n\t\t\t\trepeat with this_key in get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\ton set_item_and_write_pref(this_key, this_value) -- void; modifies associative list, saves file\n\t\t\tset_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_item_and_write_pref\n\t\t\n\t\ton read_pref(pref_key) -- returns value of key\n\t\t\tlog \"[debug] read_pref()\"\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) -- void; writes to file\n\t\t\t-- :XXX: This function only sets string types now. If need to set other\n\t\t\t-- types, write a function to detect the type of the given value. (I've\n\t\t\t-- already got one somewhere.)\n\t\t\tlog \"[debug] write_pref()\"\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _new_plist() -- returns a 'property list file'\n\t\t\tlog \"[debug] _new_plist()\"\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\n\t\n\t-- initialize new object instance\n\tset SettingsModel's _plist_path to plist_path\n\tset SettingsModel's _default_file to default_file\n\tset SettingsModel's _default_editor to default_editor\n\treturn SettingsModel\nend make_settings_model\n\n-- VIEW: Settings\non make_settings_view(default_file, default_editor, cur_file, cur_editor)\n\t(*\n\t\tDependencies:\n\t\t * multiply_text() function (supplied by main script)\n\t\t * split_text() function (supplied by main script)\n\t\t * join_list() function (supplied by main script)\n\t\t * split_path_into_dir_and_file() function (supplied by main script)\n\t*)\n\tscript SettingsView\n\t\tproperty class : \"SettingsView\"\n\t\t\n\t\tproperty _default_file : missing value -- for restoring default\n\t\tproperty _default_editor : missing value -- for restoring default\n\t\tproperty _cur_file : missing value\n\t\tproperty _cur_editor : missing value\n\t\t\n\t\tproperty _did_display_2 : false\n\t\tproperty _display_2_action : missing value -- 'file' or 'editor'\n\t\tproperty _display_2_button : missing value\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton get_file()\n\t\t\treturn _cur_file\n\t\tend get_file\n\t\t\n\t\ton get_editor()\n\t\t\treturn _cur_editor\n\t\tend get_editor\n\t\t\n\t\ton display()\n\t\t\tlog \"[debug] display()\"\n\t\t\t_display_1()\n\t\t\t_show_final_settings()\n\t\t\tlog \"[debug] display(): returning true\"\n\t\t\treturn true\n\t\tend display\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\t-- Last preferences display\n\t\ton _show_final_settings() -- PRIVATE\n\t\t\tlog \"[debug] _show_final_settings()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" Updated Settings\"\n\t\t\tset m to \"URLs File:\" & tab & tab & _cur_file & return & return \n\t\t\t\t& \"Text Editor:\" & tab & _cur_editor\n\t\t\tdisplay alert t message m\n\t\t\tlog \"[debug] _show_final_settings(): returning true\"\n\t\t\treturn true\n\t\tend _show_final_settings\n\t\t\n\t\t-- Level 1: main (before any changes have been made)\n\t\ton _display_1() -- PRIVATE\n\t\t\tlog \"[debug] _display_1()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset m to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _cur_file & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _cur_editor & return & return\n\t\t\tset b to {\"Cancel\", \"Choose a text editor\", \"Choose a URLs file\"}\n\t\t\tdisplay dialog m with title t buttons b with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\tif btn_pressed is b's second item then\n\t\t\t\tset _cur_editor to _choose_text_editor()\n\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_file(b's last item)\n\t\t\telse if btn_pressed is b's last item then\n\t\t\t\tset _cur_file to _choose_urls_file()\n\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\tif not _did_display_2 then _prompt_for_editor(b's second item)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_1(): returning true\"\n\t\t\treturn true\n\t\tend _display_1\n\t\t\n\t\t-- Level 1: secondary (after a setting has been changed)\n\t\ton _display_2(is_from_submenu) -- PRIVATE\n\t\t\tlog \"[debug] _display_2()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif _did_display_2 and not is_from_submenu then return true\n\t\t\t\n\t\t\tif _display_2_action is \"file\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"text editor\", _cur_editor, \"URLs file\", _cur_file}\n\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\tset {m1, m2, m3, m4} to {\"URLs file\", _cur_file, \"text editor\", _cur_editor}\n\t\t\tend if\n\t\t\tset m to \"For the \" & m1 & \", you chose:\" & return & return \n\t\t\t\t& tab & m2 & return & return \n\t\t\t\t& \"You can now either continue or also change the current \" & m3 \n\t\t\t\t& \" which is:\" & return & return & tab & m4\n\t\t\tset t to script_name & \" > Settings\"\n\t\t\tset b to {_display_2_button, \"Cancel\", \"Continue\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tset _did_display_2 to true\n\t\t\t\n\t\t\tif btn_pressed is b's first item then\n\t\t\t\tif _display_2_action is \"file\" then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\t\tif _cur_file is false then error number -128 -- User canceled\n\t\t\t\telse if _display_2_action is \"editor\" then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\t\tif _cur_editor is false then error number -128 -- User canceled\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _display_2(): returning true\"\n\t\t\treturn true\n\t\tend _display_2\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_file(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"file\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_file(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_file\n\t\t\n\t\t-- Level 1: secondary (configures _display_2())\n\t\ton _prompt_for_editor(display_2_button) -- PRIVATE\n\t\t\tlog \"[debug] _prompt_for_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tif not _did_display_2 then\n\t\t\t\tset _display_2_action to \"editor\"\n\t\t\t\tset _display_2_button to display_2_button\n\t\t\t\t_display_2(false)\n\t\t\tend if\n\t\t\tlog \"[debug] _prompt_for_editor(): returning true\"\n\t\t\treturn true\n\t\tend _prompt_for_editor\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\t-- :TODO: Offer to move\/rename the file when changing file location\/name.\n\t\ton _choose_urls_file() -- PRIVATE\n\t\t\tlog \"[debug] _choose_urls_file()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose File\"\n\t\t\tset m to \"Choose a file in which to save URLs:\"\n\t\t\tset list_rule to multiply_text(u_dash, 19)\n\t\t\tset list_items to {\n\t\t\t\tu_back_ls & \"Back\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Use default file\", \n\t\t\t\t\"Choose an existing file\", \n\t\t\t\t\"Choose a new file\", \n\t\t\t\tlist_rule, \n\t\t\t\t\"Type in a file path\t\t(Advanced)\"}\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset list_choice to choose from list list_items with title t with prompt m\n\t\t\t\tif list_choice as text is not list_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tif list_choice is false then error number -128 -- User canceled\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif list_choice as text is list_items's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 3 then -- DEFAULT FILE\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Default\"\n\t\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _default_file & return & return & \"Use this file?\" & return & return\n\t\t\t\tset b to {\"Choose a different file\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to _default_file\n\t\t\t\tend if\n\t\t\telse if list_choice as text is list_items's item 4 then -- EXISTING FILE\n\t\t\t\tset m to \"Choose an existing URLs file.\"\n\t\t\t\tset _cur_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's item 5 then -- NEW FILE\n\t\t\t\tset m to \"Choose a file name and location for the URLs file. Optionally create a new folder for the file.\"\n\t\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_default_file)\n\t\t\t\tset _cur_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\telse if list_choice as text is list_items's last item then -- TYPE PATH\n\t\t\t\tset t to script_name & \" > Settings > Choose File > Enter Path\"\n\t\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Continue\"}\n\t\t\t\tdisplay dialog m with title t buttons b default answer _cur_file default button b's last item with icon note\n\t\t\t\tset {this_path, btn_pressed} to {text returned of result, button returned of result}\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_file to _choose_urls_file() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_file to this_path\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_urls_file(): returning '\" & _cur_file & \"'\"\n\t\t\treturn _cur_file\n\t\tend _choose_urls_file\n\t\t\n\t\t-- Level 2 (change a setting)\n\t\ton _choose_text_editor() -- PRIVATE\n\t\t\tlog \"[debug] _choose_text_editor()\"\n\t\t\tlog \"[debug] _did_display_2: '\" & _did_display_2 & \"'\"\n\t\t\tset t to script_name & \" > Settings > Choose Editor\"\n\t\t\tset m to \"Choose a text editor application for editing the URLs file:\"\n\t\t\tset b to {u_back_btn & \"Back\", \"Use default editor\", \"Choose another editor...\"}\n\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\t\n\t\t\t-- Level 3\n\t\t\tif btn_pressed as text is b's first item then -- GO BACK\n\t\t\t\tif _did_display_2 then\n\t\t\t\t\t_display_2(true) -- recursion\n\t\t\t\telse\n\t\t\t\t\t_display_1() -- recursion\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's second item then -- DEFAULT EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Default\"\n\t\t\t\tset m to \"The default text editor app is:\" & tab & _default_editor & return & return & \"Use this app?\" & return & return\n\t\t\t\tset b to {u_back_btn & \"Back\", \"Cancel\", \"Use default\"}\n\t\t\t\tdisplay dialog m with title t buttons b default button b's last item with icon note\n\t\t\t\tset btn_pressed to button returned of result\n\t\t\t\tif btn_pressed is b's first item then\n\t\t\t\t\tset _cur_editor to _choose_text_editor() -- recursion\n\t\t\t\telse if btn_pressed is b's last item then\n\t\t\t\t\tset _cur_editor to _default_editor\n\t\t\t\tend if\n\t\t\telse if btn_pressed as text is b's last item then -- ANOTHER EDITOR\n\t\t\t\tset t to script_name & \" > Settings > Choose Editor > Choose Application\"\n\t\t\t\tset m to \"Select an application to use for editing the URLs file:\"\n\t\t\t\tset _cur_editor to name of (choose application with title t with prompt m)\n\t\t\tend if\n\t\t\t\n\t\t\tlog \"[debug] _choose_text_editor(): returning '\" & _cur_editor & \"'\"\n\t\t\treturn _cur_editor\n\t\tend _choose_text_editor\n\tend script -- SettingsView\n\t\n\t-- initialize new object instance\n\tset SettingsView's _default_file to default_file\n\tset SettingsView's _default_editor to default_editor\n\tset SettingsView's _cur_file to cur_file\n\tset SettingsView's _cur_editor to cur_editor\n\treturn SettingsView\nend make_settings_view\n\n(*==== Utility Objects ====*)\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript NullIO\n\t\tproperty class : \"NullIO\"\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: write_file(): not writing to file\"\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t-- do nothing\n\t\t\tlog \"[debug] NullIO: append_file(): not appending to file\"\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript IO\n\t\tproperty class : \"IO\"\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1a9b8a305ed6df8f8a5f84032e1117482d219e41","subject":"Consistent naming","message":"Consistent naming\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, itemIndex, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item itemIndex\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","old_contents":"on newPresentation(themeName)\n\ttell application \"Keynote\"\n\t\tactivate\n\t\t-- FIXME: Make this selectable?\n\t\tset targetWidth to 1024 -- 1440 <-- higher resolution\n\t\tset targetHeight to 768 -- 1080 <-- higher resolution\n\n\t\tset props to {document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n\n\t\tset thisDocument to make new document with properties props\n\t\treturn id of thisDocument\n\tend tell\nend newPresentation\n\non openPresentation(posixPath)\n\ttell application \"Keynote\"\n\t\topen posixPath\n\tend tell\nend openPresentation\n\non savePresentation(docId, posixPath)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tsave theDocument in POSIX file posixPath\n delete theDocument\n open posixPath \n\tend tell\nend savePresentation\t\n\non closePresentation(docId)\n\ttell application \"Keynote\"\t\n\t\tactivate\t\n set theDocument to document id docId\n\t\tclose theDocument\n\tend tell\nend savePresentation\t\n\n\non createSlide(docId, masterSlideName)\n\ttell application \"Keynote\"\n\t\ttell document id docId\n\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\tend tell\n\tend tell\nend createSlide\n\non deleteAllSlides(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete every slide\n\tend tell\nend deleteAllSlides\n\non finalize(docId)\n\ttell application \"Keynote\"\n\t\ttell document id docId to delete slide 1\n\tend tell\nend finalize\n\non themeMasters(docId)\n\t--\t tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document id docId\n\t\treturn names\n\tend tell\nend themeMasters\n\non addImage(docId, slideIndex, n, filepath)\n tell application \"Keynote\"\n\ttell slide slideIndex of document id docId\n\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n\t\tset thisPlaceholderImageItem to image n\n\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n\t set macPath to POSIX file filepath as Unicode text\n\t\tset file name of thisPlaceholderImageItem to \u00ac\n\t\t\talias macPath\n\tend tell\n end tell\nend addImage\n\n\non addTitle(docId, slideIndex, thisSlideTitle)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset the object text of the default title item to thisSlideTitle\n\t\tend tell\n\tend tell\nend addTitle\n\non addBody(docId, slideIndex, thisSlideBody)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n set the object text of the default body item to thisSlideBody\n\t\tend tell\n\tend tell\nend addTitle\n\non addPresenterNotes(docId, slideIndex, theNotes)\n\ttell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\t\tset presenter notes to theNotes\n\t\tend tell\n\tend tell\nend addPresenterNotes\n\non addText(docId, slideIndex, n, theText)\n tell application \"Keynote\"\n \ttell slide slideIndex of document id docId\n\t\tset thisPlaceholderItem to text item n\n\t\tset object text of thisPlaceholderItem to theText\n\tend tell\n end tell\nend addText\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"68aa4a3a8855980a01290679cc36cbc1e0a5bf10","subject":"convert textfile","message":"convert textfile\n","repos":"katapad\/unity-runner","old_file":"run.scpt","new_file":"run.scpt","new_contents":"var app = Application(\"Unity\");\napp.activate();\ndelay(0.15);\nsys = Application(\"System Events\");\nsys.keystroke(\"p\", { using: \"command down\"});\n","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscript_\u0010var app = Application(\"Unity\");\napp.activate();\ndelay(0.15);\nsys = Application(\"System Events\");\nsys.keystroke(\"p\", { using: \"command down\"});\b\u000b\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a7f9264f7399cca4ebcc8febbb401f8399a8b3bd","subject":"changed canvas size (taking the iPad status bar into account)","message":"changed canvas size (taking the iPad status bar into account)\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportForiPad\/ExportForiPad.applescript","new_file":"ExportForiPad\/ExportForiPad.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty CANVAS_ORIGIN = {200, 220}\nproperty CANVAS_SIZE = {1024, 748} -- this is landscape orientation\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n\t-- remove .graffle\n\tset theFilename to texts 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to manual region\n\t\tset draws background of current export settings to false\n\t\tset include border of current export settings to false\n\t\tset origin of current export settings to CANVAS_ORIGIN\n\t\tset size of current export settings to CANVAS_SIZE\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty CANVAS_ORIGIN = {200, 220}\nproperty CANVAS_SIZE = {1024, 768}\n-- End of Settings\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n\t-- remove .graffle\n\tset theFilename to texts 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\t\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to manual region\n\t\tset draws background of current export settings to false\n\t\tset include border of current export settings to false\n\t\tset origin of current export settings to CANVAS_ORIGIN\n\t\tset size of current export settings to CANVAS_SIZE\n\t\t\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"3cac0664e6b5a1b23cd87eddad3e968bfe7c57a1","subject":"Finish incomplete removal of third_party\/js\/es5conform in r5616.","message":"Finish incomplete removal of third_party\/js\/es5conform in r5616.\n\n\ngit-svn-id: eb21526166532bd3afc2c1499c0cf105ce815f5a@5617 360991c0-9f3b-0410-ba87-8b362a00edf4\n","repos":"initaldk\/caja,wishabi\/caja-1,cepm-nate\/caja,wishabi\/caja-1,initaldk\/caja,jasvir\/caja,cepm-nate\/caja,googlearchive\/caja,cepm-nate\/caja,initaldk\/caja,initaldk\/caja,googlearchive\/caja,jasvir\/caja,cepm-nate\/caja,wishabi\/caja-1,initaldk\/caja,jasvir\/caja,cepm-nate\/caja,googlearchive\/caja,googlearchive\/caja,jasvir\/caja,googlearchive\/caja,wishabi\/caja-1,wishabi\/caja-1,cepm-nate\/caja,jasvir\/caja,googlearchive\/caja,wishabi\/caja-1,initaldk\/caja,jasvir\/caja","old_file":"third_party\/js\/es5conform\/SimpleTestHarness\/build.scpt","new_file":"third_party\/js\/es5conform\/SimpleTestHarness\/build.scpt","new_contents":"","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0001\u0000\u0000\f\u0000\u0007\u0000\u0000\n\tOS X ECMAScript 5 Conformance Test Suite Generator\n\t\n\tRun from Terminal by : osascript build.scpt\r\t- Accepted Arguments\n\t\t- \/dynamic\r\t\t- \/toplevel \n\t\t\n\tBrian Antonelli <brian.antonelli@gmail.com>\r\u0000\u0002\u0000\u0000\u000e\u0000\b\u0000\u0001\u0000\t\u0011\u0000\t\u0001\u0000\n\u0000\t\u0000O\u0000S\u0000 \u0000X\u0000 \u0000E\u0000C\u0000M\u0000A\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u00005\u0000 \u0000C\u0000o\u0000n\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000 \u0000T\u0000e\u0000s\u0000t\u0000 \u0000S\u0000u\u0000i\u0000t\u0000e\u0000 \u0000G\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000o\u0000r\u0000\n\u0000\t\u0000\n\u0000\t\u0000R\u0000u\u0000n\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000T\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0000 \u0000b\u0000y\u0000 \u0000:\u0000 \u0000o\u0000s\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000b\u0000u\u0000i\u0000l\u0000d\u0000.\u0000s\u0000c\u0000p\u0000t\u0000\r\u0000\t\u0000-\u0000 \u0000A\u0000c\u0000c\u0000e\u0000p\u0000t\u0000e\u0000d\u0000 \u0000A\u0000r\u0000g\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000\n\u0000\t\u0000\t\u0000-\u0000 \u0000\/\u0000d\u0000y\u0000n\u0000a\u0000m\u0000i\u0000c\u0000\r\u0000\t\u0000\t\u0000-\u0000 \u0000\/\u0000t\u0000o\u0000p\u0000l\u0000e\u0000v\u0000e\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000\n\u0000\t\u0000B\u0000r\u0000i\u0000a\u0000n\u0000 \u0000A\u0000n\u0000t\u0000o\u0000n\u0000e\u0000l\u0000l\u0000i\u0000 \u0000<\u0000b\u0000r\u0000i\u0000a\u0000n\u0000.\u0000a\u0000n\u0000t\u0000o\u0000n\u0000e\u0000l\u0000l\u0000i\u0000@\u0000g\u0000m\u0000a\u0000i\u0000l\u0000.\u0000c\u0000o\u0000m\u0000>\u0000\r\u0002\u0000\u0006\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001p\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0000\u000e\u0000\u0002\u0000\u000f\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u0002\u0000\u0010\u0000\u0002\u000b\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\u0002\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0016\u0001\u0000\u0000\f\u0000\u0015\u0000\u0011\u0000\u000b our main()\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000\u0016\u0000 \u0000o\u0000u\u0000r\u0000 \u0000m\u0000a\u0000i\u0000n\u0000(\u0000)\u0002\u0000\u0014\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u001c\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u0000\u0001#\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0014\u0000 \u0000!\u0000\"\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0003\u0000\b\u0000#\u0000$\r\u0000#\u0000\u0003l\u0001\u0000\u0000\u0003\u0000\u0006\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u0003\u0000\u0006\u0000&\u0000'\r\u0000&\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nleng\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0003\u0000\u0004\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003foo\u0000\u0000\r\u0000!\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\"\u0000\u0003l\u0000\u0001\u0000\u0010\u0000\u0014\u0000(\u0000)\u0000*\r\u0000(\u0000\u0002r\u0000\u0000\u0000\u0010\u0000\u0014\u0000+\u0000,\r\u0000+\u0000\u0001J\u0000\u0000\u0000\u0010\u0000\u0012\u0002\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\f\u0000)\u0000)\u0000# for running from the script editor\u0000\u0002\u0000\u0000\u000e\u0000*\u0000\u0001\u0000-\u0011\u0000-\u0000F\u0000 \u0000f\u0000o\u0000r\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000e\u0000d\u0000i\u0000t\u0000o\u0000r\u0002\u0000\u001f\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u0015\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0001\u0000\u0015\u0000\u0015\u00002\u00003\u0001\u0000\u0000\f\u00002\u0000\u001b\u0000\u0015 get our current path\u0000\u0002\u0000\u0000\u000e\u00003\u0000\u0001\u00004\u0011\u00004\u0000*\u0000 \u0000g\u0000e\u0000t\u0000 \u0000o\u0000u\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0002\u00001\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002O\u0000\u0001\u0000\u0015\u0000\"\u00007\u00008\r\u00007\u0000\u0001e\u0000\u0000\u0000\u0019\u0000!\u00009\r\u00009\u0000\u0002n\u0000\u0000\u0000\u0019\u0000!\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncfol\r\u0000;\u0000\u0003l\u0000\u0005\u0000\u0019\u0000\u001e\u0000<\r\u0000<\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0000=\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000=\u0000\u0000f\u0000\u0000\u0000\u0019\u0000\u001a\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00008\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000>\u000f\u0000>\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f]H+\u0000\u0000\u0000\u0000\u0000t\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u$\u00f2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00f33\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0002r\u0000\u0000\u0000#\u0000&\u0000A\u0000B\r\u0000A\u0000\u00011\u0000\u0000\u0000#\u0000$\n\u0000\u0004\nrslt\r\u0000B\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyfolder\u0000\bmyFolder\u0002\u0000@\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003l\u0000\u0001\u0000'\u0000'\u0000E\u0000F\u0001\u0000\u0000\f\u0000E\u0000\u001d\u0000\u0017 get our current folder\u0000\u0002\u0000\u0000\u000e\u0000F\u0000\u0001\u0000G\u0011\u0000G\u0000.\u0000 \u0000g\u0000e\u0000t\u0000 \u0000o\u0000u\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0000D\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002O\u0000\u0001\u0000'\u00001\u0000J\u0000K\r\u0000J\u0000\u0001e\u0000\u0000\u0000+\u00000\u0000L\r\u0000L\u0000\u0002c\u0000\u0000\u0000+\u00000\u0000M\u0000N\r\u0000M\u0000\u0002n\u0000\u0000\u0000+\u0000.\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000,\u0000.\n\u0000\u0004\nctnr\r\u0000P\u0000\u0003l\u0000\u0005\u0000+\u0000,\u0000Q\r\u0000Q\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\u00140\u0000\bmyfolder\u0000\bmyFolder\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000N\u0000\u0001m\u0000\u0000\u0000.\u0000\/\n\u0000\u0004\nutxt\r\u0000K\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0000R\u000f\u0000R\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f]H+\u0000\u0000\u0000\u0000\u0000t\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u$\u00f2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00f33\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000I\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0002r\u0000\u0000\u00002\u00005\u0000U\u0000V\r\u0000U\u0000\u00011\u0000\u0000\u00002\u00003\n\u0000\u0004\nrslt\r\u0000V\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmainfolder\u0000\nmainFolder\u0002\u0000T\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003l\u0000\u0001\u00006\u00006\u0000Y\u0000Z\u0001\u0000\u0000\f\u0000Y\u0000 \u0000\u001a get the test cases folder\u0000\u0002\u0000\u0000\u000e\u0000Z\u0000\u0001\u0000[\u0011\u0000[\u00004\u0000 \u0000g\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000c\u0000a\u0000s\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0000X\u0000\u0002\u0000\\\u0000]\r\u0000\\\u0000\u0002r\u0000\u0000\u00006\u0000;\u0000^\u0000_\r\u0000^\u0000\u0002b\u0000\u0000\u00006\u00009\u0000`\u0000a\r\u0000`\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00180\u0000\nmainfolder\u0000\nmainFolder\r\u0000a\u0000\u0001m\u0000\u0000\u00007\u00008\u0000b\u000e\u0000b\u0000\u0001\u0000c\u0011\u0000c\u0000\u0014\u0000T\u0000e\u0000s\u0000t\u0000C\u0000a\u0000s\u0000e\u0000s\u0000:\r\u0000_\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estartingfolder\u0000\u000estartingFolder\u0002\u0000]\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002r\u0000\u0000\u0000<\u0000?\u0000f\u0000g\r\u0000f\u0000\u0001m\u0000\u0000\u0000<\u0000=\n\u0000\b\u000bboovfals\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u0002\u0000e\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0002r\u0000\u0000\u0000@\u0000C\u0000j\u0000k\r\u0000j\u0000\u0001m\u0000\u0000\u0000@\u0000A\n\u0000\b\u000bboovtrue\r\u0000k\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\u0002\u0000i\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0002r\u0000\u0000\u0000D\u0000J\u0000n\u0000o\r\u0000n\u0000\u0001J\u0000\u0000\u0000D\u0000F\u0002\u0000\u0000\r\u0000o\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0003l\u0000\u0002\u0000K\u0000K\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0001\u0000K\u0000K\u0000t\u0000u\u0001\u0000\u0000\f\u0000t\u0000(\u0000\" check for user provided arguments\u0000\u0002\u0000\u0000\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000D\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000f\u0000o\u0000r\u0000 \u0000u\u0000s\u0000e\u0000r\u0000 \u0000p\u0000r\u0000o\u0000v\u0000i\u0000d\u0000e\u0000d\u0000 \u0000a\u0000r\u0000g\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0000s\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0005Y\u0000\u0000\u0000K\u0000\u0000y\u0000z\u0000{\r\u0000y\u0000\u0004Z\u0000\u0000\u0000X\u0000\u0000|\u0000}\u0000~\r\u0000|\u0000\u0003l\u0000\u0005\u0000X\u0000b\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000X\u0000b\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000X\u0000^\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000Y\u0000^\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000X\u0000Y\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000\/\u0000t\u0000o\u0000p\u0000l\u0000e\u0000v\u0000e\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000}\u0000\u0002r\u0000\u0000\u0000e\u0000h\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000f\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000k\u0000u\u0000\r\u0000\u0000\u0002=\u0000\u0001\u0000k\u0000u\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000k\u0000q\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000l\u0000q\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0000o\u0000p\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000\/\u0000d\u0000y\u0000n\u0000a\u0000m\u0000i\u0000c\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000x\u0000{\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000x\u0000y\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0000z\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0003\u0000\u0001\r\u0000{\u0000\u0003l\u0001\u0000\u0000O\u0000S\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000O\u0000S\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000P\u0000R\n\u0000\u0004\nleng\r\u0000\u0000\u0001o\u0000\u0000\u0000O\u0000P\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u00008\u00002 determine whether to do a test group or test case\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000d\u0000 \u0000d\u0000e\u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000e\u0000 \u0000w\u0000h\u0000e\u0000t\u0000h\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000a\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000o\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000c\u0000a\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncfol\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estartingfolder\u0000\u000estartingFolder\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estartingfolder\u0000\u000estartingFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\badd_test\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000estartingfolder\u0000\u000estartingFolder\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0000f\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f]H+\u0000\u0000\u0000\u0000\u0000t\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u$\u00f2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00f33\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000'\u0000! open the output file for writing\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000o\u0000u\u0000t\u0000p\u0000u\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000f\u0000o\u0000r\u0000 \u0000w\u0000r\u0000i\u0000t\u0000i\u0000n\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\u0014\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyfolder\u0000\bmyFolder\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\u0004\nTEXT\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000t\u0000e\u0000s\u0000t\u0000.\u0000h\u0000t\u0000m\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010target_file_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nfile\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010target_file_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nperm\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\"\u0000\u001c overwrite the previous file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00008\u0000 \u0000o\u0000v\u0000e\u0000r\u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000p\u0000r\u0000e\u0000v\u0000i\u0000o\u0000u\u0000s\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0001\u0000\u0000\u0000\u0000\n\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nset2\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001d\u0000\u0017 write down to the file\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000.\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000d\u0000o\u0000w\u0000n\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000~\u0000}\u000b~\u0000\u00100\u0000\fwrite_header\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000{\u000b{\u0000\t0\u0000\u0005phile\u0000\u0000\u0002|\u0000\u0000\u0002}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000z\u0000y\u000bz\u0000\u00110\u0000\rwrite_content\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000w\u000bw\u0000\t0\u0000\u0005phile\u0000\u0000\u0002x\u0000\u0000\u0002y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000v\u0000u\u000bv\u0000\u00100\u0000\fwrite_footer\u0000\u0000\u0002\u0000\u0000\u0002\u0000t\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000s\u000bs\u0000\t0\u0000\u0005phile\u0000\u0000\u0002t\u0000\u0000\u0002u\u0000\u0000\u0002\u0000\u0000\u0002\u0000r\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000q\u0000p\nq\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0003l\u0001\u0000\u0000\u0000\u0000on\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\t0\u0000\u0005phile\u0000\u0000\u0001o\u0000\u0000\u0001n\u0000\u0000\u0002p\u0000\u0000\u0002r\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000lkj\nl\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001k\u0000\u0000\u0002j\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001\u0014\u0000\u0000i\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\u000bh\u0000g\nh\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0003l\u0001\u0000\u0001\u0004\u0001\u0007\u0000fe\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0007d\u000bd\u0000\t0\u0000\u0005phile\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002g\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000cba\nc\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001b\u0000\u0000\u0002a\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0001\u0015\u0001\u0015`_^\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0015\u0001\u0015]\u0000\u0000\u0001]\u0000\u0000\f\u0000\u0000W\u0000Q this will allow you to choose which app to test with (only works if run via gui)\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000a\u0000l\u0000l\u0000o\u0000w\u0000 \u0000y\u0000o\u0000u\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000o\u0000o\u0000s\u0000e\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000(\u0000o\u0000n\u0000l\u0000y\u0000 \u0000w\u0000o\u0000r\u0000k\u0000s\u0000 \u0000i\u0000f\u0000 \u0000r\u0000u\u0000n\u0000 \u0000v\u0000i\u0000a\u0000 \u0000g\u0000u\u0000i\u0000)\u0002\u0000\u0000\u0002\u0000\u0001\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0001\u0015\u0001\u0015\\\u0001\u0001\u0001\u0002\u0001\\\u0000\u0000\f\u0001\u0001\u0000\u0000~set theApp to choose application with title \"Installed Applications\" with prompt \"Select an application to test with\" as alias\u0000\u0002\u0000\u0000\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\u0000s\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000A\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000c\u0000h\u0000o\u0000o\u0000s\u0000e\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000i\u0000t\u0000l\u0000e\u0000 \u0000\"\u0000I\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\u0000\"\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000p\u0000r\u0000o\u0000m\u0000p\u0000t\u0000 \u0000\"\u0000S\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000a\u0000n\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000w\u0000i\u0000t\u0000h\u0000\"\u0000 \u0000a\u0000s\u0000 \u0000a\u0000l\u0000i\u0000a\u0000s\u0002\u0001\u0000\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0001\u0015\u0001\u0015[ZY\u0001[\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006\u0001\u0007\r\u0001\u0006\u0000\u0003l\u0000\u0001\u0001\u0015\u0001\u0015X\u0001\b\u0001\t\u0001X\u0000\u0000\f\u0001\b\u0000F\u0000@ open the test file with the system's default registered program\u0000\u0002\u0000\u0000\u000e\u0001\t\u0000\u0001\u0001\n\u0011\u0001\n\u0000\u0000 \u0000o\u0000p\u0000e\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000y\u0000s\u0000t\u0000e\u0000m\u0000'\u0000s\u0000 \u0000d\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000r\u0000e\u0000g\u0000i\u0000s\u0000t\u0000e\u0000r\u0000e\u0000d\u0000 \u0000p\u0000r\u0000o\u0000g\u0000r\u0000a\u0000m\u0002\u0001\u0007\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0002O\u0000\u0000\u0001\u0015\u0001!\u0001\r\u0001\u000e\r\u0001\r\u0000\u0003I\u0000\u0002\u0001\u0019\u0001 W\u0001\u000fV\nW\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0001\u000f\u0000\u0001o\u0000\u0000\u0001\u0019\u0001\u001cU\u000bU\u0000\u00140\u0000\u0010target_file_path\u0000\u0000\u0002V\u0000\u0000\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0016\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f]H+\u0000\u0000\u0000\u0000\u0000t\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u$\u00f2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00f33\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0011T\r\u0001\u0011\u0000\u0003l\u0000\u0002\u0001\"\u0001\"SRQ\u0001S\u0000\u0000\u0001R\u0000\u0000\u0001Q\u0000\u0000\u0002T\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000PON\u0001P\u0000\u0000\u0001O\u0000\u0000\u0001N\u0000\u0000\u0002\u0001\u0013\u0000\u0002\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000MLK\u0001M\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0015\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000J\u0001\u0018\u0001\u0019\u0001J\u0000\u0000\f\u0001\u0018\u0000(\u0000\" recursively collects test scripts\u0000\u0002\u0000\u0000\u000e\u0001\u0019\u0000\u0001\u0001\u001a\u0011\u0001\u001a\u0000D\u0000 \u0000r\u0000e\u0000c\u0000u\u0000r\u0000s\u0000i\u0000v\u0000e\u0000l\u0000y\u0000 \u0000c\u0000o\u0000l\u0000l\u0000e\u0000c\u0000t\u0000s\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0002\u0001\u0017\u0000\u0002\u0001\u001b\u0001\u001c\r\u0001\u001b\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000I\u0001\u001fH\u000bI\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\t0\u0000\u0005fpath\u0000\u0000\u0002G\u0000\u0000\u0002H\u0000\u0000\r\u0001\u001e\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0001!\u0001\"\r\u0001!\u0000\u0001k\u0000\u0000\u0000\u0004\u0000\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\t\u0001&\u0001'\r\u0001&\u0000\u0002c\u0000\u0000\u0000\u0004\u0000\u0007\u0001(\u0001)\r\u0001(\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005E\u000bE\u0000\t0\u0000\u0005fpath\u0000\u0000\r\u0001)\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0006D\nD\u0000\u0004\nTEXT\r\u0001'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000C\u000bC\u0000\t0\u0000\u0005fpath\u0000\u0000\u0002\u0001%\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003l\u0000\u0001\u0000\n\u0000\nB\u0001,\u0001-\u0001B\u0000\u0000\f\u0001,\u0000E\u0000? get all of the items in the current folder (ignore invisibles)\u0000\u0002\u0000\u0000\u000e\u0001-\u0000\u0001\u0001.\u0011\u0001.\u0000~\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000t\u0000e\u0000m\u0000s\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000(\u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000 \u0000i\u0000n\u0000v\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u0000s\u0000)\u0002\u0001+\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u00011\u00012\r\u00011\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011A\u00013\u00014\nA\u0000\u0018.earslfdrutxt\u0000\u0000@\u0000\u0000\u0000\b\u0000file\r\u00013\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b@\u000b@\u0000\t0\u0000\u0005fpath\u0000\u0000\u0006\u00014\u0000\u0003?\u00015>\n?\u0000\u0004\nlfiv\r\u00015\u0000\u0001m\u0000\u0000\u0000\f\u0000\r=\n=\u0000\b\u000bboovfals\u0006>\u0000\u0000\r\u00012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000<\u000b<\u0000\t0\u0000\u0005itemz\u0000\u0000\u0002\u00010\u0000\u0002\u00016\u00017\r\u00016\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0018\u00018\u00019\r\u00018\u0000\u0001J\u0000\u0000\u0000\u0014\u0000\u0016;\u0002;\u0000\u0000\r\u00019\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000:\u000b:\u0000\u000e0\u0000\nsubfolders\u0000\u0000\u0002\u00017\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0001<\u0001=\r\u0001<\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a9\n9\u0000\b\u000bboovfals\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\tfoundfile\u0000\tfoundFile\u0002\u0001;\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0003l\u0000\u0002\u0000\u001d\u0000\u001d765\u00017\u0000\u0000\u00016\u0000\u0000\u00015\u0000\u0000\u0002\u0001?\u0000\u0002\u0001@\u0001A\r\u0001@\u0000\u0003X\u0000\u0000\u0000\u001d\u0000U\u0001B4\u0001C\r\u0001B\u0000\u0001k\u0000\u0000\u0000-\u0000P\u0001D\u0002\u0001D\u0000\u0002\u0001E\u0001F\r\u0001E\u0000\u0002r\u0000\u0000\u0000-\u00006\u0001G\u0001H\r\u0001G\u0000\u0002c\u0000\u0000\u0000-\u00004\u0001I\u0001J\r\u0001I\u0000\u0002b\u0000\u0000\u0000-\u00002\u0001K\u0001L\r\u0001K\u0000\u0002b\u0000\u0000\u0000-\u00000\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0005\u0000-\u0000.\u0001O32\r\u0001O\u0000\u0001o\u0000\u0000\u0000-\u0000.1\u000b1\u0000\t0\u0000\u0005fpath\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\r\u0001N\u0000\u0001o\u0000\u0000\u0000.\u0000\/0\u000b0\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001L\u0000\u0001m\u0000\u0000\u00000\u00001\u0001P\u000e\u0001P\u0000\u0001\u0001Q\u0011\u0001Q\u0000\u0002\u0000:\r\u0001J\u0000\u0001m\u0000\u0000\u00002\u00003\/\n\/\u0000\u0004\nalis\r\u0001H\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000.\u000b.\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0002\u0001F\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0003l\u0000\u0001\u00007\u00007-\u0001T\u0001U\u0001-\u0000\u0000\f\u0001T\u0000F\u0000@ we want to process all of the files first, so queue the folders\u0000\u0002\u0000\u0000\u000e\u0001U\u0000\u0001\u0001V\u0011\u0001V\u0000\u0000 \u0000w\u0000e\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000,\u0000 \u0000s\u0000o\u0000 \u0000q\u0000u\u0000e\u0000u\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0002\u0001S\u0000\u0002\u0001W,\r\u0001W\u0000\u0004Z\u0000\u0000\u00007\u0000P\u0001X\u0001Y+\u0001Z\r\u0001X\u0000\u0003l\u0000\u0005\u00007\u0000<\u0001[*)\r\u0001[\u0000\u0002=\u0000\u0003\u00007\u0000<\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0005\u00007\u0000:\u0001^('\r\u0001^\u0000\u0002n\u0000\u0000\u00007\u0000:\u0001_\u0001`\r\u0001_\u0000\u00011\u0000\u0000\u00008\u0000:&\n&\u0000\u0004\nkind\r\u0001`\u0000\u0001o\u0000\u0000\u00007\u00008%\u000b%\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0001(\u0000\u0000\u0001'\u0000\u0000\r\u0001]\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0001a\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0000\f\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0001*\u0000\u0000\u0001)\u0000\u0000\r\u0001Y\u0000\u0002r\u0000\u0000\u0000?\u0000C\u0001c\u0001d\r\u0001c\u0000\u0001o\u0000\u0000\u0000?\u0000@$\u000b$\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\r\u0001d\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0001e\u0001f\r\u0001e\u0000\u0000;\u0000\u0000\u0000A\u0000B\r\u0001f\u0000\u0001o\u0000\u0000\u0000@\u0000A#\u000b#\u0000\u000e0\u0000\nsubfolders\u0000\u0000\u0002+\u0000\u0000\r\u0001Z\u0000\u0001k\u0000\u0000\u0000F\u0000P\u0001g\u0002\u0001g\u0000\u0002\u0001h\u0001i\r\u0001h\u0000\u0003l\u0000\u0001\u0000F\u0000F\"\u0001j\u0001k\u0001\"\u0000\u0000\f\u0001j\u0000\u0013\u0000\r add the test\u0000\u0002\u0000\u0000\u000e\u0001k\u0000\u0001\u0001l\u0011\u0001l\u0000\u001a\u0000 \u0000a\u0000d\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0002\u0001i\u0000\u0002\u0001m\u0001n\r\u0001m\u0000\u0002n\u0000\u0001\u0000F\u0000L\u0001o\u0001p\r\u0001o\u0000\u0003I\u0000\u0000\u0000G\u0000L!\u0001q \u000b!\u0000\f0\u0000\badd_test\u0000\u0000\u0002\u0001q\u0000\u0002\u0001r\u001f\r\u0001r\u0000\u0001o\u0000\u0000\u0000G\u0000H\u001e\u000b\u001e\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0002\u001f\u0000\u0000\u0002 \u0000\u0000\r\u0001p\u0000\u0000f\u0000\u0000\u0000F\u0000G\u0002\u0001n\u0000\u0002\u0001s\u001d\r\u0001s\u0000\u0002r\u0000\u0000\u0000M\u0000P\u0001t\u0001u\r\u0001t\u0000\u0001m\u0000\u0000\u0000M\u0000N\u001c\n\u001c\u0000\b\u000bboovtrue\r\u0001u\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001b\u000b\u001b\u0000\u00160\u0000\tfoundfile\u0000\tfoundFile\u0002\u001d\u0000\u0000\u0002,\u0000\u0000\u000b4\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001C\u0000\u0001o\u0000\u0000\u0000 \u0000!\u001a\u000b\u001a\u0000\t0\u0000\u0005itemz\u0000\u0000\u0002\u0001A\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0003l\u0000\u0002\u0000V\u0000V\u0019\u0018\u0017\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\u0002\u0001w\u0000\u0002\u0001x\u0001y\r\u0001x\u0000\u0003l\u0000\u0001\u0000V\u0000V\u0016\u0001z\u0001{\u0001\u0016\u0000\u0000\f\u0001z\u0000D\u0000> if the folder contained any files then add a null dilemeter\t\t\u0000\u0002\u0000\u0000\u000e\u0001{\u0000\u0001\u0001|\u0011\u0001|\u0000|\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000c\u0000o\u0000n\u0000t\u0000a\u0000i\u0000n\u0000e\u0000d\u0000 \u0000a\u0000n\u0000y\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000a\u0000d\u0000d\u0000 \u0000a\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000d\u0000i\u0000l\u0000e\u0000m\u0000e\u0000t\u0000e\u0000r\u0000\t\u0000\t\u0002\u0001y\u0000\u0002\u0001}\u0001~\r\u0001}\u0000\u0004Z\u0000\u0000\u0000V\u0000d\u0001\u0001\u0015\u0014\r\u0001\u0000\u0001o\u0000\u0000\u0000V\u0000W\u0013\u000b\u0013\u0000\u00160\u0000\tfoundfile\u0000\tfoundFile\r\u0001\u0000\u0002n\u0000\u0001\u0000Z\u0000`\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000[\u0000`\u0012\u0001\u0011\u000b\u0012\u0000\f0\u0000\badd_test\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0010\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u000f\n\u000f\u0000\u0004\nnull\u0002\u0010\u0000\u0000\u0002\u0011\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000Z\u0000[\u0002\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0001~\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000e\u0000e\u000e\r\f\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0001\f\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000e\u0000e\u000b\u0001\u0001\u0001\u000b\u0000\u0000\f\u0001\u00002\u0000, now process all of the folders, recursively\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000X\u0000 \u0000n\u0000o\u0000w\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000s\u0000,\u0000 \u0000r\u0000e\u0000c\u0000u\u0000r\u0000s\u0000i\u0000v\u0000e\u0000l\u0000y\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003X\u0000\u0000\u0000e\u0000\u0001\n\u0001\r\u0001\u0000\u0002n\u0000\u0001\u0000u\u0000{\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000v\u0000{\t\u0001\b\u000b\t\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001o\u0000\u0000\u0000v\u0000w\u0006\u000b\u0006\u0000\u00050\u0000\u0001i\u0000\u0000\u0002\u0007\u0000\u0000\u0002\b\u0000\u0000\r\u0001\u0000\u0000f\u0000\u0000\u0000u\u0000v\u000b\n\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000h\u0000i\u0005\u000b\u0005\u0000\u000e0\u0000\nsubfolders\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0004\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0003\u0002\u0001\u0001\u0003\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0001\u0000\u0000\u0002\u0004\u0000\u0000\r\u0001\"\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f]H+\u0000\u0000\u0000\u0000\u0000t\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000u$\u00f2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000R\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u00f33\"\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000t\u0000\u0000\u00000\u0000\u0000\u0000\/\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u001c\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000)\u0000# processes and stores a test script\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000F\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000e\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000t\u0000o\u0000r\u0000e\u0000s\u0000 \u0000a\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\f0\u0000\badd_test\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000V\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000H\u0000B only process the test if we aren't adding the null dilemeter test\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000o\u0000n\u0000l\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000i\u0000f\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000n\u0000'\u0000t\u0000 \u0000a\u0000d\u0000d\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000u\u0000l\u0000l\u0000 \u0000d\u0000i\u0000l\u0000e\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000Q\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0003\u0001\r\u0001\u0000\u0002>\u0001\u0000\u0000\u0000\u0000\u0003\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\n\u0000\u0004\nnull\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0006\u0000M\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0006\u0000\u0006\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000\u0019\u0000\u0013 get the unixy path\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000&\u0000 \u0000g\u0000e\u0000t\u0000 \u0000t\u0000h\u0000e\u0000 \u0000u\u0000n\u0000i\u0000x\u0000y\u0000 \u0000p\u0000a\u0000t\u0000h\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\r\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0006\u0000\u000b\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0006\u0000\t\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000\u0007\u0000\t\n\u0000\u0004\npsxp\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0006\u0000\u0007\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\n\u0000\u0004\nTEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u000e\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000+\u0000% check if we are relative or absolute\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000J\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000 \u0000i\u0000f\u0000 \u0000w\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000r\u0000e\u0000l\u0000a\u0000t\u0000i\u0000v\u0000e\u0000 \u0000o\u0000r\u0000 \u0000a\u0000b\u0000s\u0000o\u0000l\u0000u\u0000t\u0000e\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0019\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0017\u0001\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u0001\u0000\u0003\u0001\u0001\n\u0000\u0004\npsof\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000T\u0000e\u0000s\u0000t\u0000C\u0000a\u0000s\u0000e\u0000s\u0000\/\u0006\u0001\u0000\u0003\u0001\n\u0000\u0004\npsin\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0006\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004base\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\u001d\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u0000\u001e\u0000G\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u0000\u001e\u0000!\u0001\r\u0001\u0000\u0002@\u0000\u0000\u0000\u001e\u0000!\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\b0\u0000\u0004base\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0003\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000$\u0000C\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000$\u0000$\u0001\u0001\u0001\u0000\u0000\f\u0001\u00003\u0000- chomp everything before our TestCases folder\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000Z\u0000 \u0000c\u0000h\u0000o\u0000m\u0000p\u0000 \u0000e\u0000v\u0000e\u0000r\u0000y\u0000t\u0000h\u0000i\u0000n\u0000g\u0000 \u0000b\u0000e\u0000f\u0000o\u0000r\u0000e\u0000 \u0000o\u0000u\u0000r\u0000 \u0000T\u0000e\u0000s\u0000t\u0000C\u0000a\u0000s\u0000e\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000$\u00005\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000$\u00003\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000$\u00001\u0001\u0001\r\u0001\u0000\u00037\u0001\u0001\u0000%\u00001\u0001\u0001\n\u0000\u0004\ncha \r\u0001\u0000\u0001o\u0000\u0000\u0000)\u0000+\u000b\u0000\b0\u0000\u0004base\u0000\u0000\r\u0001\u0000\u0003l\u0000\u0005\u0000,\u00000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000,\u00000\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u0000.\u00000\n\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000,\u0000.\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00001\u00002\n\u0000\u0004\nTEXT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u00006\u00006\u0001\u0001\u0001\u0000\u0000\f\u0001\u0000V\u0000P if this is run from the SimpleTestHarness folder then we'll need to jump up one\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000 \u0000f\u0000r\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000T\u0000e\u0000s\u0000t\u0000H\u0000a\u0000r\u0000n\u0000e\u0000s\u0000s\u0000 \u0000f\u0000o\u0000l\u0000d\u0000e\u0000r\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000w\u0000e\u0000'\u0000l\u0000l\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000j\u0000u\u0000m\u0000p\u0000 \u0000u\u0000p\u0000 \u0000o\u0000n\u0000e\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u00006\u0000C\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0005\u00006\u00009\u0001\r\u0001\u0000\u0002=\u0000\u0003\u00006\u00009\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\r\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\b\u000bboovfals\u0001\u0000\u0000\u0001\u0000\u0000\r\u0001\u0000\u0002r\u0000\u0000\u0000<\u0000?\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0006\u0000.\u0000.\u0000\/\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0000\u0002\u0001\r\u0002\u0000\u0000\u0003l\u0000\u0001\u0000H\u0000H\u0002\u0002\u0002\u0003\u0001\u0000\u0000\f\u0002\u0002\u0000,\u0000& generate our final path to the script\u0000\u0002\u0000\u0000\u000e\u0002\u0003\u0000\u0001\u0002\u0004\u0011\u0002\u0004\u0000L\u0000 \u0000g\u0000e\u0000n\u0000e\u0000r\u0000a\u0000t\u0000e\u0000 \u0000o\u0000u\u0000r\u0000 \u0000f\u0000i\u0000n\u0000a\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0002\u0001\u0000\u0002\u0002\u0005\r\u0002\u0005\u0000\u0002r\u0000\u0000\u0000H\u0000M\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0000H\u0000K\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0000H\u0000I\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\r\u0002\t\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\r\u0002\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0002\n\u0002\u000b\r\u0002\n\u0000\u0003l\u0000\u0002\u0000R\u0000R\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u000b\u0000\u0002\u0002\f\u0002\r\r\u0002\f\u0000\u0003l\u0000\u0001\u0000R\u0000R\u0002\u000e\u0002\u000f\u0001\u0000\u0000\f\u0002\u000e\u0000\u001c\u0000\u0016 store the script path\u0000\u0002\u0000\u0000\u000e\u0002\u000f\u0000\u0001\u0002\u0010\u0011\u0002\u0010\u0000,\u0000 \u0000s\u0000t\u0000o\u0000r\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000p\u0000a\u0000t\u0000h\u0002\u0002\r\u0000\u0002\u0002\u0011\r\u0002\u0011\u0000\u0002r\u0000\u0000\u0000R\u0000V\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u0003l\u0000\u0005\u0000R\u0000S\u0002\u0014\r\u0002\u0014\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0002\u0013\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0000;\u0000\u0000\u0000T\u0000U\r\u0002\u0016\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0018\u0000\u0002\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u001a\u0000\u0002\u0002\u001b\u0002\u001c\r\u0002\u001b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002\u001d\u0002\u001e\u0001\u0000\u0000\f\u0002\u001d\u0000(\u0000\" write the header to our test file\u0000\u0002\u0000\u0000\u000e\u0002\u001e\u0000\u0001\u0002\u001f\u0011\u0002\u001f\u0000D\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000h\u0000e\u0000a\u0000d\u0000e\u0000r\u0000 \u0000t\u0000o\u0000 \u0000o\u0000u\u0000r\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u0002\u001c\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0002\"\u0002#\r\u0002\"\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002$\u000b\u0000\u00100\u0000\fwrite_header\u0000\u0000\u0002\u0002$\u0000\u0002\u0002%\r\u0002%\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002#\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\/\u0002&\u0002\u0002&\u0000\u0002\u0002'\u0002(\r\u0002'\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0002)\u0002*\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002+\u000e\u0002+\u0000\u0001\u0002,\u0011\u0002,\u0000\u0000\n\u0000<\u0000h\u0000t\u0000m\u0000l\u0000>\u0000\n\u0000\t\u0000<\u0000h\u0000e\u0000a\u0000d\u0000>\u0000\n\u0000\t\u0000\t\u0000<\u0000m\u0000e\u0000t\u0000a\u0000 \u0000h\u0000t\u0000t\u0000p\u0000-\u0000e\u0000q\u0000u\u0000i\u0000v\u0000=\u0000\"\u0000X\u0000-\u0000U\u0000A\u0000-\u0000C\u0000o\u0000m\u0000p\u0000a\u0000t\u0000i\u0000b\u0000l\u0000e\u0000\"\u0000 \u0000c\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000=\u0000\"\u0000I\u0000E\u0000=\u00008\u0000\"\u0000\/\u0000>\u0000\n\u0006\u0002*\u0000\u0003\u0002-\n\u0000\u0004\nrefn\r\u0002-\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0006\u0000\u0000\u0002\u0002(\u0000\u0002\u0002.\u0002\/\r\u0002.\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\/\u0000\u0002\u00020\u00021\r\u00020\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000b\u00022\u00023\r\u00022\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\u0000\r\u00023\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002\u00021\u0000\u0002\u00026\u00027\r\u00026\u0000\u0004Z\u0000\u0000\u0000\f\u0000\u0019\u00028\u00029\r\u00028\u0000\u0003l\u0000\u0005\u0000\f\u0000\u000f\u0002:\r\u0002:\u0000\u0002=\u0000\u0003\u0000\f\u0000\u000f\u0002;\u0002<\r\u0002;\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\r\u0002<\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\n\u0000\b\u000bboovtrue\u0001\u0000\u0000\u0001\u0000\u0000\r\u00029\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u0015\u0002=\u0002>\r\u0002=\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0002?\u000e\u0002?\u0000\u0001\u0002@\u0011\u0002@\u0000$\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000T\u0000e\u0000s\u0000t\u0000H\u0000a\u0000r\u0000n\u0000e\u0000s\u0000s\u0000\/\r\u0002>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u00027\u0000\u0002\u0002A\u0002B\r\u0002A\u0000\u0003I\u0000\u0002\u0000\u001a\u0000%\u0002C\u0002D\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002C\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001f\u0002E\u0002F\r\u0002E\u0000\u0002b\u0000\u0000\u0000\u001a\u0000\u001d\u0002G\u0002H\r\u0002G\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0002I\u000e\u0002I\u0000\u0001\u0002J\u0011\u0002J\u0000L\u0000\t\u0000\t\u0000<\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\u0000t\u0000e\u0000x\u0000t\u0000\/\u0000j\u0000a\u0000v\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\"\u0000 \u0000s\u0000r\u0000c\u0000=\u0000\"\r\u0002H\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\r\u0002F\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0002K\u000e\u0002K\u0000\u0001\u0002L\u0011\u0002L\u0000\"\u0000s\u0000t\u0000h\u0000.\u0000j\u0000s\u0000\"\u0000>\u0000<\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0006\u0002D\u0000\u0003\u0002M\n\u0000\u0004\nrefn\r\u0002M\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0006\u0000\u0000\u0002\u0002B\u0000\u0002\u0002N\u0002O\r\u0002N\u0000\u0003l\u0000\u0002\u0000&\u0000&\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002O\u0000\u0002\u0002P\u0002Q\r\u0002P\u0000\u0003I\u0000\u0002\u0000&\u0000-\u0002R\u0002S\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002R\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000\u0000\n\u0000\t\u0000\t\u0000<\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000v\u0000a\u0000r\u0000 \u0000E\u0000S\u00005\u0000H\u0000a\u0000r\u0000n\u0000e\u0000s\u0000s\u0000 \u0000=\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000e\u0000S\u0000t\u0000h\u0000;\u0000<\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000\n\u0000\t\u0000<\u0000\/\u0000h\u0000e\u0000a\u0000d\u0000>\u0000\n\u0000\t\u0000<\u0000b\u0000o\u0000d\u0000y\u0000>\u0000\n\u0000\t\u0000\t\u0000<\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000\n\u0000\t\u0000\t\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000a\u0000r\u0000y\u0000T\u0000e\u0000s\u0000t\u0000C\u0000a\u0000s\u0000e\u0000P\u0000a\u0000t\u0000h\u0000s\u0000 \u0000=\u0000 \u0000[\u0000\n\u0006\u0002S\u0000\u0003\u0002V\n\u0000\u0004\nrefn\r\u0002V\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0006\u0000\u0000\u0002\u0002Q\u0000\u0002\u0002W\r\u0002W\u0000\u0003l\u0000\u0002\u0000.\u0000.\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0002!\u0000\u0002\u0002X\u0002Y\r\u0002X\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002Y\u0000\u0002\u0002Z\u0002[\r\u0002Z\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002[\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0002^\u0002_\u0001\u0000\u0000\f\u0002^\u0000 \u0000\u001a write the test references\u0000\u0002\u0000\u0000\u000e\u0002_\u0000\u0001\u0002`\u0011\u0002`\u00004\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0002\u0002]\u0000\u0002\u0002a\u0002b\r\u0002a\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0002c\u0002d\r\u0002c\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002e\u000b\u0000\u00110\u0000\rwrite_content\u0000\u0000\u0002\u0002e\u0000\u0002\u0002f\r\u0002f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002d\u0000\u0005Y\u0000\u0000\u0000\u0000\u00003\u0002g\u0002h\u0002i\r\u0002g\u0000\u0004Z\u0000\u0000\u0000\r\u0000.\u0002j\u0002k\u0002l\r\u0002j\u0000\u0003l\u0000\u0005\u0000\r\u0000\u0013\u0002m~}\r\u0002m\u0000\u0002>\u0001\u0000\u0000\r\u0000\u0013\u0002n\u0002o\r\u0002n\u0000\u0002n\u0000\u0000\u0000\r\u0000\u0011\u0002p\u0002q\r\u0002p\u0000\u00024\u0000\u0000\u0000\u000e\u0000\u0011|\u0002r\n|\u0000\u0004\ncobj\r\u0002r\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010{\u000b{\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002q\u0000\u0001o\u0000\u0000\u0000\r\u0000\u000ez\u000bz\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\r\u0002o\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012y\ny\u0000\u0004\nnull\u0001~\u0000\u0000\u0001}\u0000\u0000\r\u0002k\u0000\u0003I\u0000\u0002\u0000\u0016\u0000$x\u0002s\u0002t\nx\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002s\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001e\u0002u\u0002v\r\u0002u\u0000\u0002b\u0000\u0000\u0000\u0016\u0000\u001c\u0002w\u0002x\r\u0002w\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0002y\u000e\u0002y\u0000\u0001\u0002z\u0011\u0002z\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000\"\r\u0002x\u0000\u0003l\u0000\u0005\u0000\u0017\u0000\u001b\u0002{wv\r\u0002{\u0000\u0002n\u0000\u0000\u0000\u0017\u0000\u001b\u0002|\u0002}\r\u0002|\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001bu\u0002~\nu\u0000\u0004\ncobj\r\u0002~\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001at\u000bt\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002}\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018s\u000bs\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\r\u0002v\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000\"\u0000,\u0000\n\u0006\u0002t\u0000\u0003r\u0002q\nr\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 p\u000bp\u0000\t0\u0000\u0005phile\u0000\u0000\u0006q\u0000\u0000\u0002\u0000\u0000\r\u0002l\u0000\u0003I\u0000\u0002\u0000'\u0000.o\u0002\u0002\no\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001m\u0000\u0000\u0000'\u0000(\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0014\u0000\t\u0000\t\u0000\t\u0000\t\u0000n\u0000u\u0000l\u0000l\u0000,\u0000\n\u0006\u0002\u0000\u0003n\u0002m\nn\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u0000)\u0000*l\u000bl\u0000\t0\u0000\u0005phile\u0000\u0000\u0006m\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002h\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004k\u0003k\u0000\u0001\r\u0002i\u0000\u0003l\u0001\u0000\u0000\u0004\u0000\b\u0002ji\r\u0002\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\b\u0002\u0002\r\u0002\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007h\nh\u0000\u0004\nleng\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005g\u000bg\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001\u0000\u0000\u0002\u0002b\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000fed\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000cba\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000`\u0002\u0002\u0001`\u0000\u0000\f\u0002\u0000\u0017\u0000\u0011 write the footer\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\"\u0000 \u0000w\u0000r\u0000i\u0000t\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000o\u0000t\u0000e\u0000r\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000_\u0002^\u000b_\u0000\u00100\u0000\fwrite_footer\u0000\u0000\u0002\u0002\u0000\u0002\u0002]\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\\\u000b\\\u0000\t0\u0000\u0005phile\u0000\u0000\u0002]\u0000\u0000\u0002^\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007[\u0002\u0002\n[\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0010\u0000\n\u0000\t\u0000\t\u0000\t\u0000]\u0000;\u0000 \u0000\n\u0006\u0002\u0000\u0003Z\u0002Y\nZ\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003X\u000bX\u0000\t0\u0000\u0005phile\u0000\u0000\u0006Y\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000\b\u0000\bWVU\u0001W\u0000\u0000\u0001V\u0000\u0000\u0001U\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000\b\u0000\bT\u0002\u0002\u0001T\u0000\u0000\f\u0002\u0000J\u0000D if they specified static test then don't include all of the scripts\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000 \u0000i\u0000f\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000s\u0000p\u0000e\u0000c\u0000i\u0000f\u0000i\u0000e\u0000d\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000d\u0000o\u0000n\u0000'\u0000t\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000 \u0000a\u0000l\u0000l\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000s\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\b\u00005\u0002\u0002SR\r\u0002\u0000\u0003l\u0000\u0005\u0000\b\u0000\u000b\u0002QP\r\u0002\u0000\u0002>\u0001\u0000\u0000\b\u0000\u000b\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\b\u0000\tO\u000bO\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\r\u0002\u0000\u0001m\u0000\u0000\u0000\t\u0000\nN\nN\u0000\b\u000bboovtrue\u0001Q\u0000\u0000\u0001P\u0000\u0000\r\u0002\u0000\u0001k\u0000\u0000\u0000\u000e\u00001\u0002\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0011\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0006\u0000\"\u0000.\u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000M\u000bM\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000\u0012\u0000\u001f\u0002\u0002LK\r\u0002\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u0015\u0002JI\r\u0002\u0000\u0002=\u0000\u0003\u0000\u0012\u0000\u0015\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013H\u000bH\u0000\u00140\u0000\btoplevel\u0000\btopLevel\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014G\nG\u0000\b\u000bboovtrue\u0001J\u0000\u0000\u0001I\u0000\u0000\r\u0002\u0000\u0002r\u0000\u0000\u0000\u0018\u0000\u001b\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000&\u0000\"\u0000S\u0000i\u0000m\u0000p\u0000l\u0000e\u0000T\u0000e\u0000s\u0000t\u0000H\u0000a\u0000r\u0000n\u0000e\u0000s\u0000s\u0000\"\r\u0002\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000F\u000bF\u0000\n0\u0000\u0006prefix\u0000\u0000\u0002L\u0000\u0000\u0001K\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0002\u0000 \u0000'E\u0002\u0002\nE\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000B\u0000\t\u0000\t\u0000s\u0000h\u0000t\u0000_\u0000l\u0000o\u0000a\u0000d\u0000t\u0000e\u0000s\u0000t\u0000s\u0000(\u0000a\u0000r\u0000y\u0000T\u0000e\u0000s\u0000t\u0000C\u0000a\u0000s\u0000e\u0000P\u0000a\u0000t\u0000h\u0000s\u0000,\u0006\u0002\u0000\u0003D\u0002C\nD\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u0000\"\u0000#B\u000bB\u0000\t0\u0000\u0005phile\u0000\u0000\u0006C\u0000\u0000\u0002\u0002\u0000\u0002\u0002A\r\u0002\u0000\u0003I\u0000\u0002\u0000(\u00001@\u0002\u0002\n@\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0002b\u0000\u0000\u0000(\u0000+\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000(\u0000)?\u000b?\u0000\n0\u0000\u0006prefix\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0004\u0000)\u0000;\u0006\u0002\u0000\u0003>\u0002=\n>\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u0000,\u0000-<\u000b<\u0000\t0\u0000\u0005phile\u0000\u0000\u0006=\u0000\u0000\u0002A\u0000\u0000\u0002S\u0000\u0000\u0001R\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u00006\u00006;:9\u0001;\u0000\u0000\u0001:\u0000\u0000\u00019\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003I\u0000\u0002\u00006\u0000=8\u0002\u0002\n8\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001m\u0000\u0000\u00006\u00007\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u001a\u0000\n\u0000\t\u0000\t\u0000<\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000\n\u0006\u0002\u0000\u00037\u00026\n7\u0000\u0004\nrefn\r\u0002\u0000\u0001o\u0000\u0000\u00008\u000095\u000b5\u0000\t0\u0000\u0005phile\u0000\u0000\u00066\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0002\u0000>\u0000>432\u00014\u0000\u0000\u00013\u0000\u0000\u00012\u0000\u0000\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0003l\u0000\u0001\u0000>\u0000>1\u0002\u0002\u00011\u0000\u0000\f\u0002\u0000)\u0000# otherwise include each test script\u0000\u0002\u0000\u0000\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000F\u0000 \u0000o\u0000t\u0000h\u0000e\u0000r\u0000w\u0000i\u0000s\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000 \u0000e\u0000a\u0000c\u0000h\u0000 \u0000t\u0000e\u0000s\u0000t\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0002\u0000\u0002\u0002\u0002\r\u0002\u0000\u0004Z\u0000\u0000\u0000>\u0000u\u0002\u00020\/\r\u0002\u0000\u0003l\u0000\u0005\u0000>\u0000A\u0002.-\r\u0002\u0000\u0002=\u0000\u0003\u0000>\u0000A\u0002\u0002\r\u0002\u0000\u0001o\u0000\u0000\u0000>\u0000?,\u000b,\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\r\u0002\u0000\u0001m\u0000\u0000\u0000?\u0000@+\n+\u0000\b\u000bboovtrue\u0001.\u0000\u0000\u0001-\u0000\u0000\r\u0002\u0000\u0005Y\u0000\u0000\u0000D\u0000q\u0002*\u0002\u0002)\r\u0002\u0000\u0004Z\u0000\u0000\u0000Q\u0000l\u0002\u0002('\r\u0002\u0000\u0003l\u0000\u0005\u0000Q\u0000W\u0002&%\r\u0002\u0000\u0002>\u0001\u0000\u0000Q\u0000W\u0002\u0002\r\u0002\u0000\u0002n\u0000\u0000\u0000Q\u0000U\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000R\u0000U$\u0002\n$\u0000\u0004\ncobj\r\u0002\u0000\u0001o\u0000\u0000\u0000S\u0000T#\u000b#\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000Q\u0000R\"\u000b\"\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000U\u0000V!\n!\u0000\u0004\nnull\u0001&\u0000\u0000\u0001%\u0000\u0000\r\u0002\u0000\u0003I\u0000\u0002\u0000Z\u0000h \u0002\u0002\n \u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0002b\u0000\u0000\u0000Z\u0000b\u0002\u0002\r\u0002\u0000\u0002b\u0000\u0000\u0000Z\u0000`\u0002\u0002\r\u0002\u0000\u0001m\u0000\u0000\u0000Z\u0000[\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000L\u0000\t\u0000\t\u0000<\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000t\u0000y\u0000p\u0000e\u0000=\u0000\"\u0000t\u0000e\u0000x\u0000t\u0000\/\u0000j\u0000a\u0000v\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000\"\u0000 \u0000s\u0000r\u0000c\u0000=\u0000\"\r\u0002\u0000\u0003l\u0000\u0005\u0000[\u0000_\u0002\u001f\u001e\r\u0002\u0000\u0002n\u0000\u0000\u0000[\u0000_\u0002\u0002\r\u0002\u0000\u00024\u0000\u0000\u0000\\\u0000_\u001d\u0002\n\u001d\u0000\u0004\ncobj\r\u0002\u0000\u0001o\u0000\u0000\u0000]\u0000^\u001c\u000b\u001c\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002\u0000\u0001o\u0000\u0000\u0000[\u0000\\\u001b\u000b\u001b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0001\u001f\u0000\u0000\u0001\u001e\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000`\u0000a\u0002\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0018\u0000\"\u0000>\u0000<\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000\r\u0006\u0002\u0000\u0003\u001a\u0003\u0000\u0019\n\u001a\u0000\u0004\nrefn\r\u0003\u0000\u0000\u0001o\u0000\u0000\u0000c\u0000d\u0018\u000b\u0018\u0000\t0\u0000\u0005phile\u0000\u0000\u0006\u0019\u0000\u0000\u0002(\u0000\u0000\u0001'\u0000\u0000\u000b*\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0002\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0017\u0003\u0017\u0000\u0001\r\u0002\u0000\u0003l\u0001\u0000\u0000H\u0000L\u0003\u0001\u0016\u0015\r\u0003\u0001\u0000\u0002n\u0000\u0000\u0000H\u0000L\u0003\u0002\u0003\u0003\r\u0003\u0002\u0000\u00011\u0000\u0000\u0000I\u0000K\u0014\n\u0014\u0000\u0004\nleng\r\u0003\u0003\u0000\u0001o\u0000\u0000\u0000H\u0000I\u0013\u000b\u0013\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0001\u0016\u0000\u0000\u0001\u0015\u0000\u0000\u0001)\u0000\u0000\u00020\u0000\u0000\u0001\/\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0004\u0003\u0005\r\u0003\u0004\u0000\u0003l\u0000\u0002\u0000v\u0000v\u0012\u0011\u0010\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0001\u0010\u0000\u0000\u0002\u0003\u0005\u0000\u0002\u0003\u0006\u0003\u0007\r\u0003\u0006\u0000\u0003l\u0000\u0001\u0000v\u0000v\u000f\u0003\b\u0003\t\u0001\u000f\u0000\u0000\f\u0003\b\u0000\u0013\u0000\r kick it off!\u0000\u0002\u0000\u0000\u000e\u0003\t\u0000\u0001\u0003\n\u0011\u0003\n\u0000\u001a\u0000 \u0000k\u0000i\u0000c\u0000k\u0000 \u0000i\u0000t\u0000 \u0000o\u0000f\u0000f\u0000!\u0002\u0003\u0007\u0000\u0002\u0003\u000b\u000e\r\u0003\u000b\u0000\u0003I\u0000\u0002\u0000v\u0000\r\u0003\f\u0003\r\n\r\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\r\u0003\f\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0003\u000e\u000e\u0003\u000e\u0000\u0001\u0003\u000f\u0011\u0003\u000f\u0000\u0000\n\u0000\t\u0000\t\u0000<\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000E\u0000S\u00005\u0000H\u0000a\u0000r\u0000n\u0000e\u0000s\u0000s\u0000.\u0000s\u0000t\u0000a\u0000r\u0000t\u0000T\u0000e\u0000s\u0000t\u0000i\u0000n\u0000g\u0000(\u0000)\u0000;\u0000<\u0000\/\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000>\u0000\n\u0000\t\u0000<\u0000\/\u0000b\u0000o\u0000d\u0000y\u0000>\u0000\n\u0000<\u0000\/\u0000h\u0000t\u0000m\u0000l\u0000>\u0000\n\u0006\u0003\r\u0000\u0003\f\u0003\u0010\u000b\n\f\u0000\u0004\nrefn\r\u0003\u0010\u0000\u0001o\u0000\u0000\u0000z\u0000{\n\u000b\n\u0000\t0\u0000\u0005phile\u0000\u0000\u0006\u000b\u0000\u0000\u0002\u000e\u0000\u0000\u0002\u0002\u0000\u0002\u0003\u0011\t\r\u0003\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\b\u0007\u0006\u0001\b\u0000\u0000\u0001\u0007\u0000\u0000\u0001\u0006\u0000\u0000\u0002\t\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\b\u0005\u0003\u0012\u0003\u0013\u0003\u0014\u0003\u0015\u0003\u0016\u0003\u0017\u0003\u0018\u0001\u0005\u0000\u0000\u0010\u0003\u0012\u0000\u0006\u0004\u0003\u0002\u0001\u0000\n\u0004\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0003\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u000b\u0002\u0000\f0\u0000\badd_test\u0000\u0000\u000b\u0001\u0000\u00100\u0000\fwrite_header\u0000\u0000\u000b\u0000\u0000\u00110\u0000\rwrite_content\u0000\u0000\u000b\u0000\u00100\u0000\fwrite_footer\u0000\u0000\u000e\u0003\u0013\u0000\u0007\u0010\u0000\u001b\u0003\u0019\u0003\u001a\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u0019\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0003\u001a\u0000%\u0000>\u0000b\u0000\u0000\u0000\n\u0000\u0004\nleng\u000b\u0000\u00070\u0000\u0003foo\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\ncfol\n\u0000\u0004\nrslt\u000b\u0000\u00140\u0000\bmyfolder\u0000\bmyFolder\n\u0000\u0004\nctnr\n\u0000\u0004\nutxt\u000b\u0000\u00180\u0000\nmainfolder\u0000\nmainFolder\u000b\u0000 0\u0000\u000estartingfolder\u0000\u000estartingFolder\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u000b\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\n\u0000\u0004\ncobj\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u000b\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u000b\u0000\f0\u0000\badd_test\u0000\u0000\n\u0000\u0004\nTEXT\u000b\u0000\u00140\u0000\u0010target_file_path\u0000\u0000\n\u0000\u0004\nfile\n\u0000\u0004\nperm\n\u0000\u0018.rdwropenshor\u0000\u0000\u0000\u0000\u0000\u0000\b\u0000file\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\n\u0000\u0004\nset2\n\u0000\u0018.rdwrseofnull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00100\u0000\fwrite_header\u0000\u0000\u000b\u0000\u00110\u0000\rwrite_content\u0000\u0000\u000b\u0000\u00100\u0000\fwrite_footer\u0000\u0000\n\u0000\u0018.rdwrclosnull\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0011\u0001$\u0014\u0000\n,EW\u0000\u000bX\u0000\u0002\u0000\u0003jvEO\u0012\u0000\n)j\f\u0000\u0005,EUOEO\u0012\u0000\u0007,&UOEO%EOfEOeEOjvE`\u0000\u0010O\u0017\u00008k,Ekh\u001c\u0000\u0001a\u0000\u0011\/a\u0000\u0012\u0000\u001d\u0000\beEY\u0000\u0016a\u0000\u0011\/a\u0000\u0013\u0000\u001d\u0000\bfEY\u0000\u0003h[OYO\u0012\u0000\u001c*\/j\f\u0000\u0014\u001d\u0000\u000b)k+\u0000\u0015Y\u0000\b)k+\u0000\u0016UO\u0014\u0000Va\u0000\u0017&a\u0000\u0018%E`\u0000\u0019O*a\u0000\u001a_\u0000\u0019\/a\u0000\u001bel\f\u0000\u001cE`\u0000\u001dO_\u0000\u001da\u0000\u001ejl\f\u0000\u001fO*_\u0000\u001dk+\u0000 O*_\u0000\u001dk+\u0000!O*_\u0000\u001dk+\u0000\"O_\u0000\u001dj\f\u0000#W\u0000\u001aX\u0000\u0002\u0000\u0003\u0014\u0000\f_\u0000\u001dj\f\u0000#W\u0000\bX\u0000\u0002\u0000\u0003hO\u0012\u0000\t_\u0000\u0019j\f\u0000$UOP\u000f\u000e\u0003\u0014\u0000\u0007\u0010\u0001\u001e\u0003\u001b\u0003\u001c\u000b\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u000e\u0000\u0002\u0004\u0003\u001d\u0003\u0000\u0001\u000e\u0003\u001d\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005fpath\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u001b\u0000\u0006\u000b\u0000\t0\u0000\u0005fpath\u0000\u0000\u000b\u0000\t0\u0000\u0005itemz\u0000\u0000\u000b\u0000\u000e0\u0000\nsubfolders\u0000\u0000\u000b\u0000\u00160\u0000\tfoundfile\u0000\tfoundFile\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u00100\u0000\u0006myitem\u0000\u0006myItem\u0010\u0003\u001c\u0000\u000e\u0001\u0001P\u0001a\n\u0000\u0004\nTEXT\n\u0000\u0004\nlfiv\n\u0000\u0018.earslfdrutxt\u0000\u0000@\u0000\u0000\u0000\b\u0000file\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nalis\n\u0000\u0004\nkind\u000b\u0000\f0\u0000\badd_test\u0000\u0000\n\u0000\u0004\nnull\u000b\u0000\u000e0\u0000\nfind_tests\u0000\u0000\u0011\u0000\u0012\u0000&EOfl\f\u0000\u0003EOjvEOfEO\u0017\u00007[l\f\u0000\u0006kh\u001b\u0000\u0004%%&EO,\u0000\u001d\u0000\t6FY\u0000\f)k+\u0000\u000bOeE[OYO\u001d\u0000\u000b)k+\u0000\u000bY\u0000\u0003hO\u0017\u0000\u001a[l\f\u0000\u0006kh\u001b\u0000\u0004)k+\u0000\r[OYOPU\u000f\u000e\u0003\u0015\u0000\u0007\u0010\u0001\u0003\u001e\u0003\u001f\u000b\u0000\f0\u0000\badd_test\u0000\u0000\u000e\u0000\u0002\u0004\u0003 \u0003\u0000\u0001\u000e\u0003 \u0000\u0001\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0000\u0000\u0010\u0003\u001e\u0000\u0003\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u000b\u0000\b0\u0000\u0004base\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0010\u0003\u001f\u0000\u000e\u0001\u0001\u0001\n\u0000\u0004\nnull\n\u0000\u0004\npsxp\n\u0000\u0004\nTEXT\n\u0000\u0004\npsof\n\u0000\u0004\npsin\u0003\u0000\u0004\n\u0000\u0018.sysooffslong\u0000\u0000\u0000\u0000\u0000null\n\u0000\u0004\ncha \n\u0000\u0004\nleng\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\u0011\u0000W\u0001\u001d\u0000L,&EO*\f\u0000\u0007EOEOj\u0003\u001d\u0000$[\\[Z\\Z,2&EOf\u0000\u001d\u0000\bEY\u0000\u0003hY\u0000\u0003hO%EY\u0000\u0003hO6F\u000f\u000e\u0003\u0016\u0000\u0007\u0010\u0002#\u0003!\u0003\"\u000b\u0000\u00100\u0000\fwrite_header\u0000\u0000\u000e\u0000\u0002\u0004\u0003#\u0003\u0000\u0001\u000e\u0003#\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0010\u0003!\u0000\u0002\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u0010\u0003\"\u0000\t\u0002+\u00024\u0002?\u0002I\u0002K\u0002T\n\u0000\u0004\nrefn\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u0011\u00000l\f\u0000\u0002OEOe\u0000\u001d\u0000\bEY\u0000\u0003hO%%l\f\u0000\u0002Ol\f\u0000\u0002OP\u000f\u000e\u0003\u0017\u0000\u0007\u0010\u0002d\u0003$\u0003%\u000b\u0000\u00110\u0000\rwrite_content\u0000\u0000\u000e\u0000\u0002\u0004\u0003&\u0003\u0000\u0001\u000e\u0003&\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0010\u0003$\u0000\u0002\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0003%\u0000\t\u0002y\u0002\u0002\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\nnull\n\u0000\u0004\nrefn\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\u0011\u00004\u0017\u00002k,Ekh\u001c\u0000\u0001\/\u0001\u001d\u0000\u0013\/%%l\f\u0000\u0007Y\u0000\tl\f\u0000\u0007[OY\u000f\u000e\u0003\u0018\u0000\u0007\u0010\u0002\u0003'\u0003(\u000b\u0000\u00100\u0000\fwrite_footer\u0000\u0000\u000e\u0000\u0002\u0004\u0003)\u0003\u0000\u0001\u000e\u0003)\u0000\u0001\u0000\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u0002\u0000\u0000\u0010\u0003'\u0000\u0003\u000b\u0000\t0\u0000\u0005phile\u0000\u0000\u000b\u0000\n0\u0000\u0006prefix\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u0010\u0003(\u0000\u0011\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0003\u000e\n\u0000\u0004\nrefn\n\u0000\u0018.rdwrwritnull\u0000\u0000\u0000\u0000\u0000****\u000b\u0000 0\u0000\u000estatictestload\u0000\u000estaticTestLoad\u000b\u0000\u00140\u0000\btoplevel\u0000\btopLevel\u000b\u0000\u000b0\u0000\u0007scriptz\u0000\u0000\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\nnull\u0011\u0000l\f\u0000\u0002Oe\u0001\u001d\u0000(EOe\u0000\u001d\u0000\bEY\u0000\u0003hOl\f\u0000\u0002O%l\f\u0000\u0002Y\u0000\u0003hOl\f\u0000\u0002Oe\u0000\u001d\u00002\u0017\u0000,k,Ekh\u001c\u0000\u0002\/\u0001\u001d\u0000\u0013\/%%l\f\u0000\u0002Y\u0000\u0003h[OYY\u0000\u0003hOa\u0000\u0010l\f\u0000\u0002\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"c7ff5a2b03c1eb025608be45c143fe25788d038d","subject":"Removed informational notice from iCal script","message":"Removed informational notice from iCal script\n","repos":"ylian\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,timbck2\/growl,tectronics\/growl,nkhorman\/archive-growl,CarlosCD\/growl,nagyistoce\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,nochkin\/growl,nochkin\/growl,timbck2\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,ylian\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,chashion\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,chashion\/growl,ylian\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,tectronics\/growl,SalrJupiter\/growl,xhruso00\/growl,morganestes\/morganestes-growl,timbck2\/growl,tectronics\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,xhruso00\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,nkhorman\/archive-growl,chashion\/growl,chashion\/growl,xhruso00\/growl,nochkin\/growl,CarlosCD\/growl,an0nym0u5\/growl,nochkin\/growl,SalrJupiter\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,ylian\/growl,SalrJupiter\/growl,timbck2\/growl,SalrJupiter\/growl,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,nagyistoce\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,xhruso00\/growl,chashion\/growl,timbck2\/growl,nagyistoce\/growl,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\f\u0000+\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000*\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0006\u0000.\r\u0000.\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\/\u00000\r\u0000\/\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u00001\u0002\u00001\u0000\u0002\u00002\u00003\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u00004\f\u00004\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u00003\u0000\u0002\u00005\r\u00005\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u00006\f\u00006\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u00007\u00008\r\u00007\u0000\u0002l\u0000\u0002\u0000\u0007\u0000\n\u00009\r\u00009\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000<\f\u0000<\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002l\u0000\u0002\u0000\u000b\u0000\u001d\u0000?\r\u0000?\u0000\u0002O\u0000\u0001\u0000\u000b\u0000\u001d\u0000@\u0000A\r\u0000@\u0000\u0002l\u0000\t\u0000\u000f\u0000\u001c\u0000B\r\u0000B\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000C\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000C\u0000\u0003\u0000D\u0000E\n\u0000\u0004\nappl\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006\u0000E\u0000\u0003\u0000F\u0000G\n\u0000\u0004\nanot\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000G\u0000\u0003\u0000H\u0000I\n\u0000\u0004\ndnot\r\u0000H\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000I\u0000\u0003\u0000J\n\u0000\u0004\niapp\r\u0000J\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000K\f\u0000K\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000L\u000f\u0000L\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(`\u0000\u0000\u0000\u0000\u0001z@\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u02d0\u0001{GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000M\u0000N\r\u0000M\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0002l\u0000\u0002\u0000\u001e\u0000%\u0000Q\r\u0000Q\u0000\u0002r\u0000\u0000\u0000\u001e\u0000%\u0000R\u0000S\r\u0000R\u0000\u0003I\u0000\u0002\u0000\u001e\u0000#\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000P\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002l\u0000\u0002\u0000&\u0000\/\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000&\u0000\/\u0000W\u0000X\r\u0000W\u0000\u0002\\\u0000\u0000\u0000&\u0000+\u0000Y\u0000Z\r\u0000Y\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000Z\u0000\u0002l\u0000\u0005\u0000'\u0000*\u0000[\r\u0000[\u0000\u0002n\u0000\u0000\u0000'\u0000*\u0000\\\u0000]\r\u0000\\\u0000\u00011\u0000\u0000\u0000(\u0000*\n\u0000\u0004\ntime\r\u0000]\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000^\u0000_\r\u0000^\u0000\u0002l\u0000\u0002\u00000\u0000?\u0000`\r\u0000`\u0000\u0002r\u0000\u0000\u00000\u0000?\u0000a\u0000b\r\u0000a\u0000\u0002\\\u0000\u0000\u00000\u0000;\u0000c\u0000d\r\u0000c\u0000\u0002[\u0000\u0000\u00000\u00009\u0000e\u0000f\r\u0000e\u0000\u0001o\u0000\u0000\u00000\u00003\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000f\u0000\u0002]\u0000\u0000\u00003\u00008\u0000g\u0000h\r\u0000g\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0001\r\u0000h\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\ndays\r\u0000d\u0000\u0001m\u0000\u0000\u00009\u0000:\u0003\u0000\u0001\r\u0000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000_\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0002l\u0000\u0002\u0000@\u0000E\u0000k\r\u0000k\u0000\u0002r\u0000\u0000\u0000@\u0000E\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000@\u0000A\n\u0000\b\u000bboovfals\r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\u0001\u0000\u0000\u0002\u0000j\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0002l\u0000\u0002\u0000F\u0001E\u0000r\r\u0000r\u0000\u0002O\u0000\u0000\u0000F\u0001E\u0000s\u0000t\r\u0000s\u0000\u0001k\u0000\u0000\u0000L\u0001D\u0000u\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0002l\u0000\u0001\u0000L\u0000L\u0000x\u0001\u0000\u0000\f\u0000x\u0000Z\u0000T\tCatch events that start today or that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000w\u0000\u0002\u0000y\r\u0000y\u0000\u0003X\u0000\u0000\u0000L\u0001D\u0000z\u0000{\r\u0000z\u0000\u0003X\u0000\u0000\u0000d\u0001?\u0000|\u0000}\r\u0000|\u0000\u0001k\u0000\u0000\u0000\u0001:\u0000~\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001\u001b\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u001a\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr11\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003Q\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u000b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\u0004\u0001\u000b\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0007\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0013\u0001\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0013\u0001\u0016\u0000\f\u0000\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001\u001c\u0001\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0001\u001c\u0001:\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001 \u00019\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001 \u00019\u0000\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\nname\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001'\u0000\f\u0000\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ntitl\r\u0000\u0000\u0001o\u0000\u0000\u0001*\u0001-\u000b\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0006\u0000\u0000\u0003\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\u0000\u0001o\u0000\u0000\u00010\u00013\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nappl\r\u0000\u0000\u0001o\u0000\u0000\u00014\u00015\u000b\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001c\u0001\u001d\u0000L\u0002\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000}\u0000\u0002l\u0000\u0005\u0000g\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000g\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000g\u0000l\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000g\u0000l\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000h\u0000l\n\u0000\u0004\nwrev\r\u0000\u0000\u0001o\u0000\u0000\u0000g\u0000h\u000b\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000o\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000o\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000p\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000p\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000q\u0000|\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000r\u0000v\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000w\u0000{\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002B\u0000\u0000\u0000}\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\r\u0000{\u0000\u00012\u0000\u0001\u0000O\u0000T\n\u0000\u0004\nwres\u0002\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000F\u0000I\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app@\u0000\u0000\u0000\u0000\u001fP<\u0004(`\u0000\u0000\u0000\u0001\u0001z@\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001(\u001e|\u02d0\u0001{wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000q\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001F\u0001o\u0000\r\u0000\u0000\u0004Z\u0000\u0001\u0001F\u0001o\u0000\u0000\r\u0000\u0000\u0001H\u0000\u0000\u0001F\u0001J\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001F\u0001I\u000b\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\r\u0000\u0000\u0002O\u0000\u0001\u0001M\u0001k\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001Q\u0001j\u0000~\r\u0000\u0000\u0003I\u0000\u0002\u0001Q\u0001j}|\u0000\n}\u0000\u0018.notifygrnull\u0000\u0000null\u0001|\u0000\u0000\u0006\u0000\u0000\u0003{\u0000\u0000\n{\u0000\u0004\nname\r\u0000\u0000\u0001m\u0000\u0000\u0001U\u0001X\u0000\f\u0000\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003z\u0000\u0000\nz\u0000\u0004\ntitl\r\u0000\u0000\u0001m\u0000\u0000\u0001[\u0001^\u0000\f\u0000\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003y\u0000\u0000\ny\u0000\u0004\ndesc\r\u0000\u0000\u0001m\u0000\u0000\u0001a\u0001d\u0000\f\u0000\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0003x\u0000w\nx\u0000\u0004\nappl\r\u0000\u0000\u0001o\u0000\u0000\u0001e\u0001fv\u000bv\u0000\u00120\u0000\u0007appname\u0000\u0007appName\u0006w\u0000\u0000\u0001~\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001M\u0001N\u0000L\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000ts\u0001t\u0000\u0000\u0001s\u0000\u0000\u0002u\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003r\u0000\u0000\u0001r\u0000\u0000\u0010\u0000\u0000\u0001q\nq\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010p\u0000on\u0000\u0000m\np\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001o\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000\u0000\u0002\u00007\u0000\u0002\u0000\u0000\u0002\u0000=\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\u0000\u0002\u0000T\u0000\u0002\u0000\u0000\u0002\u0000^\u0000\u0002\u0000\u0000\u0002\u0000i\u0000\u0002\u0000\u0000\u0002\u0000p\u0000\u0002\u0000\u0000\u0002\u0000l\u0002l\u0000\u0000\u0001o\u0000\u0000\u0002n\u0000\u0000\u0010\u0000\u0000\u0002kj\u000bk\u0000\u001c0\u0000\fthiscalendar\u0000\fthisCalendar\u000bj\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0010\u0000\u00001\u00004\u00006i\u0000<h\u0000Lgfed\u0000Kcba`_^]\\[\u0000ZYXWV\u0000UTSR\u0000QPON\u0000MLK\u0000J\u0000IHG\u0000\u0000\u0000\u000bi\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u000bh\u0000\u00120\u0000\u0007appname\u0000\u0007appName\ng\u0000\u0004\nappl\nf\u0000\u0004\nanot\ne\u0000\u0004\ndnot\nd\u0000\u0004\niapp\u0003c\u0000\b\nb\u0000\u0018.registernull\u0000\u0000null\na\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b`\u0000\u00070\u0000\u0003now\u0000\u0000\n_\u0000\u0004\ntime\u000b^\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n]\u0000\u0004\ndays\u000b\\\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u000b[\u0000\u00140\u0000\bfoundone\u0000\bfoundOne\nZ\u0000\u0004\nwres\nY\u0000\u0004\nkocl\nX\u0000\u0004\ncobj\nW\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\nV\u0000\u0004\nwrev\u000e\u0000\u0000\u0000\u0013\nU\u0000\u0004\nwr1s\nT\u0000\u0004\nwr5s\u000bS\u0000\u00120\u0000\u0007thedate\u0000\u0007theDate\nR\u0000\u0004\nwr11\nQ\u0000\u0004\ntstr\u000bP\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001O\u0000\u0000\u0002N\u0000\u0000\nM\u0000\u0004\nwr12\u000bL\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\nK\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nJ\u0000\u0004\nname\nI\u0000\u0004\ntitl\nH\u0000\u0004\ndesc\nG\u0000\u0018.notifygrnull\u0000\u0000null\u0011m\u0001plvEOEO\u0012\u0000\u000f*\f\u0000\fUO*j\f\u0000\rEO,\u001fE`\u0000\u0010O_\u0000\u0010k_\u0000\u0011 \u001ek\u001fE`\u0000\u0012OfE`\u0000\u0013Oa\u0000\u0014\u0012\u0000\u0017\u0000*a\u0000\u0015-[a\u0000\u0016a\u0000\u0017l\f\u0000\u0018kh\u001b\u0000\u0000\u0017\u0000\u06a0a\u0000\u0019-a\u0000\u001a[[[a\u0000\u001b,\\Z_\u0000\u0010;\\[a\u0000\u001b,\\Z_\u0000\u0012=A\\[[a\u0000\u001c,\\Z;\\[a\u0000\u001b,\\Z_\u0000\u0010=AB1[a\u0000\u0016a\u0000\u0017l\f\u0000\u0018kh\u001b\u0000\u0001eE`\u0000\u0013O\u0012\u0000_*a\u0000\u001b,E`\u0000\u001dO\u0014\u0000\u001a*a\u0000\u001e,a\u0000\u001f%_\u0000\u001da\u0000 ,%E`\u0000!W\u0000\u0016X\u0000\"\u0000#a\u0000$_\u0000\u001da\u0000 ,%E`\u0000!O\u0014\u0000\u0016*a\u0000%,E`\u0000&O_\u0000&j\f\u0000'W\u0000\u000eX\u0000\"\u0000#a\u0000(E`\u0000&UO\u0012\u0000\u001b*a\u0000)a\u0000*a\u0000+_\u0000!a\u0000,_\u0000&\f\u0000-U[OYs[OY\u001fUO_\u0000\u0013\u000b\u001d\u0000#\u0012\u0000\u001b*a\u0000)a\u0000.a\u0000+a\u0000\/a\u0000,a\u00000\f\u0000-UY\u0000\u0003h\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000Q\u0000K\tAn applescript that shows today's events from iCal as growl notifications.\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\f\u0000\n\u0000a\u0000[\tThe script shows how to register and use multiple types of notifications from Applescript:\u0000\u0002\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u000f\u0001\u0000\u0000\f\u0000\u000f\u0000\u0018\u0000\u0012\t\t\"Today's Events\"\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\f\u0000\u0012\u0000\f\u0000\u0006\t\t\tand\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\f\u0000\u0015\u0000!\u0000\u001b\t\t\"In-Script Notifications\"\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\f\u0000\u0018\u0000D\u0000>\t\t\tare the two notification types that this script registers. \u0000\u0002\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\f\u0000\u001b\u0000@\u0000: \t\t\tThe types of notification are separated functionally. \u0000\u0002\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\f\u0000\u001e\u0000|\u0000v \t\t\tSo the user can disable the first informational note from the prefpane without disabling the main notifications. \u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\f\u0000!\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\f\u0000$\u0000t\u0000n--------------------------------------------------------------------------------------------------------------\u0000\u0002\u0000\u0000\u0002\u0000#\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\f\u0000-\u0000A\u0000;\tRegister with growl and show the \"gathering\" notification.\u0000\u0002\u0000\u0000\u0002\u0000,\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002l\u0000\u0002\u0000\u0000\u00002\u00000\r\u00000\u0000\u0002O\u0000\u0000\u0000\u0000\u00002\u00001\u00002\r\u00001\u0000\u0001k\u0000\u0000\u0000\u0004\u00001\u00003\u0002\u00003\u0000\u0002\u00004\u00005\r\u00004\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0002O\u0000\u0000\u0000\u0004\u0000\u001d\u00008\u00009\r\u00008\u0000\u0001k\u0000\u0000\u0000\b\u0000\u001c\u0000:\u0002\u0000:\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0002r\u0000\u0000\u0000\b\u0000\u000e\u0000=\u0000>\r\u0000=\u0000\u0001J\u0000\u0000\u0000\b\u0000\f\u0000?\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0000B\f\u0000B\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0002\u0000A\u0000\u0002\u0000C\r\u0000C\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000D\f\u0000D\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000>\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0002\u0000<\u0000\u0002\u0000E\r\u0000E\u0000\u0003I\u0000\u0002\u0000\u000f\u0000\u001c\u0000F\n\u0000\u0018.registernull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000F\u0000\u0003\u0000G\u0000H\n\u0000\u0004\nappl\r\u0000G\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000I\f\u0000I\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000H\u0000\u0003\u0000J\u0000K\n\u0000\u0004\nanot\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000K\u0000\u0003\u0000L\u0000M\n\u0000\u0004\ndnot\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0015\u0000\u0016\u000b\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\u0006\u0000M\u0000\u0003\u0000N\n\u0000\u0004\niapp\r\u0000N\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0000O\f\u0000O\u0000\n\u0000\u0004iCal\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00009\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\u0000P\u000f\u0000P\u00022\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000L\u0004\u0012GrowlHelperApp.app\u001fP\u001c\u0004(\u0000\u0000\u0000\u0000\u0000\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000L\u0004\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000L\u001c\u021eV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u02026\u0000\u0000\u0000\u0001\u0000\u0014\u0000L\u0004\u0000L\u0000\u0000L\u0000\u0004\u0013D\u0000\u0000\fD\u0000\u0002\u0000YMacintosh HD:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000LLibrary\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00007\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002l\u0000\u0002\u0000\u001e\u0000\u001e\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0003I\u0000\u0002\u0000\u001e\u00001\u0000T\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u0000T\u0000\u0003\u0000U\u0000V\n\u0000\u0004\nname\r\u0000U\u0000\u0002l\u0000\t\u0000 \u0000!\u0000W\r\u0000W\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0000X\f\u0000X\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000V\u0000\u0003\u0000Y\u0000Z\n\u0000\u0004\ntitl\r\u0000Y\u0000\u0002l\u0000\t\u0000\"\u0000#\u0000[\r\u0000[\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000\\\f\u0000\\\u0000\u0011\u0000\u000bPlease Wait\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000]\u0000^\n\u0000\u0004\ndesc\r\u0000]\u0000\u0002l\u0000\t\u0000&\u0000)\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000&\u0000)\u0000`\f\u0000`\u0000^\u0000XGathering today's events from iCal... (n.b. Events which are repeats will not be shown!)\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0006\u0000^\u0000\u0003\u0000a\n\u0000\u0004\nappl\r\u0000a\u0000\u0001m\u0000\u0000\u0000*\u0000-\u0000b\f\u0000b\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000P\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000d\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0002l\u0000\u0002\u00003\u0000<\u0000g\r\u0000g\u0000\u0002r\u0000\u0000\u00003\u0000<\u0000h\u0000i\r\u0000h\u0000\u0003I\u0000\u0002\u00003\u00008\n\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000j\u0000k\r\u0000j\u0000\u0002l\u0000\u0002\u0000=\u0000L\u0000l\r\u0000l\u0000\u0002r\u0000\u0000\u0000=\u0000L\u0000m\u0000n\r\u0000m\u0000\u0002\\\u0000\u0000\u0000=\u0000H\u0000o\u0000p\r\u0000o\u0000\u0001o\u0000\u0000\u0000=\u0000@\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000p\u0000\u0002l\u0000\u0005\u0000@\u0000G\u0000q\r\u0000q\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000r\u0000s\r\u0000r\u0000\u00011\u0000\u0000\u0000C\u0000G\n\u0000\u0004\ntime\r\u0000s\u0000\u0001o\u0000\u0000\u0000@\u0000C\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\u0001\u0000\u0000\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000k\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0002l\u0000\u0002\u0000M\u0000T\u0000v\r\u0000v\u0000\u0003I\u0000\u0002\u0000M\u0000T\u0000w\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000w\u0000\u0002l\u0000\u0005\u0000M\u0000P\u0000x\r\u0000x\u0000\u0001o\u0000\u0000\u0000M\u0000P\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000u\u0000\u0002\u0000y\u0000z\r\u0000y\u0000\u0002l\u0000\u0002\u0000U\u0000d\u0000{\r\u0000{\u0000\u0002r\u0000\u0000\u0000U\u0000d\u0000|\u0000}\r\u0000|\u0000\u0002\\\u0000\u0000\u0000U\u0000`\u0000~\u0000\r\u0000~\u0000\u0002[\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000X\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002]\u0000\u0000\u0000X\u0000]\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\u0001\r\u0000\u0000\u00011\u0000\u0000\u0000Y\u0000\\\n\u0000\u0004\ndays\r\u0000\u0000\u0001m\u0000\u0000\u0000^\u0000_\u0003\u0000\u0001\r\u0000}\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000z\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000e\u0000l\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000l\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000e\u0000h\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000h\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016\tGather today's events\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000m\u0002\t\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0002\t\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0002\b\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000s\u0000s\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000s\u0000}\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0000s\u0000y\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000s\u0000u\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000~\u0001U\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001P\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001O\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000Z\u0000T\tCatch events that start today or that started before today, but have not yet ended.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003X\u0000\u0000\u0000\u0001O\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0001J\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0014\u0000\u000eCURRENT EVENT!\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\f\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0001\u0001\b\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0004\u0001\b\n\u0000\u0004\ntstr\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0001\u0001\u0004\u000b\u0000\u00140\u0000\bthestart\u0000\btheStart\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\r\u0001\/\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u0001\r\u0001+\u0000\u0000\r\u0000\u0000\u0001K\u0000\u0000\u0001\r\u0001'\u0000\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0010\u0001\u0015\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0011\u0001\u0015\n\u0000\u0004\nwr11\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0010\u0001\u0011\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u0000\u000b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u0000\u0000\u0002n\u0000\u0000\u0001\u0018\u0001\u001d\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0019\u0001\u001d\n\u0000\u0004\nwr12\r\u0000\u0000\u0001o\u0000\u0000\u0001\u0018\u0001\u0019\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u0006\u0000\u0000\u0003\u0000\u000b\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0000\u0000\u0001o\u0000\u0000\u0001 \u0001#\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u0006\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001'\u0001*\n\u0000\u0004\nreco\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00010\u0001=\u0000\u0000\r\u0000\u0000\u0002c\u0000\u0000\u00010\u00019\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u00010\u00015\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00010\u00013\u000b\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00015\u00018\n\u0000\u0004\nlist\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001>\u0001I\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0001>\u0001E\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0001>\u0001A\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001o\u0000\u0000\u0001A\u0001D\u000b\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u00026\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000\n\u0000\u0004\nwrev\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002G\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002F\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002@\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nwr5s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003now\u0000\u0000\r\u0000\u0000\u0002B\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000~\n~\u0000\u0004\nwr1s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000}\u000b}\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000|\u000b|\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\r\u0000\u0000\u00012\u0000\u0000\u0000\u0000{\n{\u0000\u0004\nwres\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vzy\u0001z\u0000\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001V\u0001Vx\u0000\u0001x\u0000\u0000\f\u0000\u0000\u0017\u0000\u0011\tShow the events.\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0001V\u0001Vwv\u0001w\u0000\u0000\u0001v\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0001V\u0001\u0000\u0000ut\r\u0000\u0000\u0002l\u0000\u0005\u0001V\u0001c\u0000s\r\u0000\u0000\u0002=\u0000\u0000\u0001V\u0001c\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0001V\u0001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001]\u0001ar\nr\u0000\u0004\nnmbr\r\u0000\u0000\u0002n\u0001\u0000\u0001V\u0001]\u0000\u0000\r\u0000\u0000\u00012\u0000\u0001\u0001Y\u0001]q\nq\u0000\u0004\ncobj\r\u0000\u0000\u0001o\u0000\u0000\u0001V\u0001Yp\u000bp\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\r\u0000\u0000\u0001m\u0000\u0000\u0001a\u0001bo\u0003o\u0000\u0000\u0001s\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0001f\u0001\u0000\u0000\r\u0000\u0000\u0002l\u0000\t\u0001j\u0001\u0001\u0000n\r\u0001\u0000\u0000\u0003I\u0000\u0002\u0001j\u0001ml\u0001\u0001\nm\u0000\u0018.notifygrnull\u0000\u0000null\u0001l\u0000\u0000\u0006\u0001\u0001\u0000\u0003k\u0001\u0002\u0001\u0003\nk\u0000\u0004\nname\r\u0001\u0002\u0000\u0002l\u0000\t\u0001l\u0001o\u0001\u0004j\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0001\u0005\f\u0001\u0005\u0000\u001c\u0000\u0016In-Script Notification\u0000\u0002\u0000\u0000\u0001j\u0000\u0000\u0006\u0001\u0003\u0000\u0003i\u0001\u0006\u0001\u0007\ni\u0000\u0004\ntitl\r\u0001\u0006\u0000\u0002l\u0000\t\u0001p\u0001s\u0001\bh\r\u0001\b\u0000\u0001m\u0000\u0000\u0001p\u0001s\u0001\t\f\u0001\t\u0000\u001a\u0000\u0014No iCal events today\u0000\u0002\u0000\u0000\u0001h\u0000\u0000\u0006\u0001\u0007\u0000\u0003g\u0001\n\u0001\u000b\ng\u0000\u0004\ndesc\r\u0001\n\u0000\u0002l\u0000\t\u0001v\u0001y\u0001\ff\r\u0001\f\u0000\u0001m\u0000\u0000\u0001v\u0001y\u0001\r\f\u0001\r\u0000\u001a\u0000\u0014Go outside and play!\u0000\u0002\u0000\u0000\u0001f\u0000\u0000\u0006\u0001\u000b\u0000\u0003e\u0001\u000ed\ne\u0000\u0004\nappl\r\u0001\u000e\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0001\u000f\f\u0001\u000f\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006d\u0000\u0000\u0001n\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001f\u0001g\u0000P\u0002u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002l\u0000\u0002\u0001\u0001cb\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0003X\u0000\u0000\u0001\u0002\u0006\u0001\u0014a\u0001\u0015\r\u0001\u0014\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\u0001\u0016\u0002\u0001\u0016\u0000\u0002\u0001\u0017\u0001\u0018\r\u0001\u0017\u0000\u0003Q\u0000\u0000\u0001\u0001\u0001\u0019\u0001\u001a\u0001\u001b\r\u0001\u0019\u0000\u0002r\u0000\u0000\u0001\u0001\u0001\u001c\u0001\u001d\r\u0001\u001c\u0000\u0002l\u0000\u0005\u0001\u0001\u0001\u001e`\r\u0001\u001e\u0000\u0002b\u0000\u0000\u0001\u0001\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002b\u0000\u0000\u0001\u0001\u0001!\u0001\"\r\u0001!\u0000\u0002n\u0000\u0000\u0001\u0001\u0001#\u0001$\r\u0001#\u0000\u0001o\u0000\u0000\u0001\u0001_\u000b_\u0000\u00180\u0000\neventtitle\u0000\neventTitle\r\u0001$\u0000\u0001o\u0000\u0000\u0001\u0001^\u000b^\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\"\u0000\u0001m\u0000\u0000\u0001\u0001\u0001%\f\u0001%\u0000\t\u0000\u0003 - \u0000\u0002\u0000\u0000\r\u0001 \u0000\u0002n\u0000\u0000\u0001\u0001\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0001\u0001]\u000b]\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001'\u0000\u0001o\u0000\u0000\u0001\u0001\\\u000b\\\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0001`\u0000\u0000\r\u0001\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000[\u000b[\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\r\u0001\u001a\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ZYX\nZ\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001Y\u0000\u0000\u0002X\u0000\u0000\r\u0001\u001b\u0000\u0002r\u0000\u0000\u0001\u0001\u0001(\u0001)\r\u0001(\u0000\u0002b\u0000\u0000\u0001\u0001\u0001*\u0001+\r\u0001*\u0000\u0001m\u0000\u0000\u0001\u0001\u0001,\f\u0001,\u0000\u0013\u0000\rno summary - \u0000\u0002\u0000\u0000\r\u0001+\u0000\u0002n\u0000\u0000\u0001\u0001\u0001-\u0001.\r\u0001-\u0000\u0001o\u0000\u0000\u0001\u0001W\u000bW\u0000\u00160\u0000\tstarttime\u0000\tstartTime\r\u0001.\u0000\u0001o\u0000\u0000\u0001\u0001V\u000bV\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000U\u000bU\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0002\u0001\u0018\u0000\u0002\u0001\/\u00010\r\u0001\/\u0000\u0002l\u0000\u0002\u0001\u0001TS\u0001T\u0000\u0000\u0001S\u0000\u0000\u0002\u00010\u0000\u0002\u00011\u00012\r\u00011\u0000\u0003Q\u0000\u0000\u0001\u0001\u00013\u00014\u00015\r\u00013\u0000\u0002r\u0000\u0000\u0001\u0001\u00016\u00017\r\u00016\u0000\u0002n\u0000\u0000\u0001\u0001\u00018\u00019\r\u00018\u0000\u0001o\u0000\u0000\u0001\u0001R\u000bR\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\r\u00019\u0000\u0001o\u0000\u0000\u0001\u0001Q\u000bQ\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u00017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000P\u000bP\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\r\u00014\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000ONM\nO\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001N\u0000\u0000\u0002M\u0000\u0000\r\u00015\u0000\u0002r\u0000\u0000\u0001\u0001\u0001:\u0001;\r\u0001:\u0000\u0001m\u0000\u0000\u0001\u0001\u0001<\f\u0001<\u0000\u0014\u0000\u000eno description\u0000\u0002\u0000\u0000\r\u0001;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000L\u000bL\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0002\u00012\u0000\u0002\u0001=\u0001>\r\u0001=\u0000\u0002l\u0000\u0002\u0001\u0001KJ\u0001K\u0000\u0000\u0001J\u0000\u0000\u0002\u0001>\u0000\u0002\u0001?I\r\u0001?\u0000\u0002O\u0000\u0001\u0001\u0002\u0001\u0001@\u0001A\r\u0001@\u0000\u0002l\u0000\t\u0001\u0002\u0000\u0001BH\r\u0001B\u0000\u0003I\u0000\u0002\u0001\u0002\u0000GF\u0001C\nG\u0000\u0018.notifygrnull\u0000\u0000null\u0001F\u0000\u0000\u0006\u0001C\u0000\u0003E\u0001D\u0001E\nE\u0000\u0004\nname\r\u0001D\u0000\u0002l\u0000\t\u0001\u0001\u0001FD\r\u0001F\u0000\u0001m\u0000\u0000\u0001\u0001\u0001G\f\u0001G\u0000\u0014\u0000\u000eToday's Events\u0000\u0002\u0000\u0000\u0001D\u0000\u0000\u0006\u0001E\u0000\u0003C\u0001H\u0001I\nC\u0000\u0004\ntitl\r\u0001H\u0000\u0002l\u0000\t\u0001\u0001\u0001JB\r\u0001J\u0000\u0001o\u0000\u0000\u0001\u0001A\u000bA\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001B\u0000\u0000\u0006\u0001I\u0000\u0003@\u0001K\u0001L\n@\u0000\u0004\ndesc\r\u0001K\u0000\u0002l\u0000\t\u0001\u0001\u0001M?\r\u0001M\u0000\u0001o\u0000\u0000\u0001\u0001>\u000b>\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0001?\u0000\u0000\u0006\u0001L\u0000\u0003=\u0001N<\n=\u0000\u0004\nappl\r\u0001N\u0000\u0001m\u0000\u0000\u0001\u0001\u0001O\f\u0001O\u0000-\u0000'AppleScript iCal today's Event Notifier\u0000\u0002\u0000\u0000\u0006<\u0000\u0000\u0001H\u0000\u0000\r\u0001A\u0000\u0001m\u0000\u0000\u0001\u0001\u0000P\u0002I\u0000\u0000\u000ba\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0001\u0001;\u000b;\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\u0002\u0001\u0013\u0000\u0002\u0001P:\r\u0001P\u0000\u0002l\u0000\u0002\u0002\u0007\u0002\u000798\u00019\u0000\u0000\u00018\u0000\u0000\u0002:\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0001Q\u000f\u0001Q\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u001fP<\u0004(\u0000\u0000\u0000\u0000\u0001\u0005\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001P(\u001e|0\u0005wrbt\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001D\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\u0001i\biCal.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u001c?Y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?K\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001i\u0000\u0002\u0000\"Macintosh HD:Applications:iCal.app\u0000\u000e\u0000\u0012\u0000\b\u0000i\u0000C\u0000a\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0015Applications\/iCal.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0001R\u0001S\r\u0001R\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000076\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001S\u0000\u0002\u0001T5\r\u0001T\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u000043\u00014\u0000\u0000\u00013\u0000\u0000\u00025\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u00032\u0001U\u0001V\u00012\u0000\u0000\u0010\u0001U\u0000\u00011\n1\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0001V\u0000\u0007\u00100\u0001W\/.\u0001X\u0001Y-\n0\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001W\u0000\u0001k\u0000\u0000\u0000\u0000\u0002\t\u0001Z\u0002\u0001Z\u0000\u0002\u0000.\u0001[\u0002\u0001[\u0000\u0002\u0000e\u0001\\\u0002\u0001\\\u0000\u0002\u0000j\u0001]\u0002\u0001]\u0000\u0002\u0000t\u0001^\u0002\u0001^\u0000\u0002\u0000y\u0001_\u0002\u0001_\u0000\u0002\u0000\u0001`\u0002\u0001`\u0000\u0002\u0000,\u0002,\u0000\u0000\u0001\/\u0000\u0000\u0002.\u0000\u0000\u0010\u0001X\u0000\u0003+*)\u000b+\u0000\u00120\u0000\u0007thiscal\u0000\u0007thisCal\u000b*\u0000\u00160\u0000\tthisevent\u0000\tthisEvent\u000b)\u0000\"0\u0000\u000fthiseventrecord\u0000\u000fthisEventRecord\u0010\u0001Y\u0000A\u0000P\u0000B\u0000D('\u0000I&%$\u0000O#\"!\u0000X \u0000\\\u001f\u0000`\u0000b\u001e\u001d\u001c\u001b\u001a\u0019\u0018\u0017\u0001Q\u0016\u0015\u0014\u0013\u0012\u0011\u0010\u0001a\u000f\u000e\u0000\r\f\u000b\n\t\b\u0007\u0006\u0005\u0004\u0003\u0002\u0001\u0001\u0005\u0001\t\u0001\r\u0001\u000f\u0001%\u0000\u0001,\u0001<\u0001G\u0001O\u000b(\u0000 0\u0000\u000emyallnoteslist\u0000\u000emyAllNotesList\n'\u0000\u0004\nappl\n&\u0000\u0004\nanot\n%\u0000\u0004\ndnot\n$\u0000\u0004\niapp\u0003#\u0000\b\n\"\u0000\u0018.registernull\u0000\u0000null\n!\u0000\u0004\nname\n \u0000\u0004\ntitl\n\u001f\u0000\u0004\ndesc\n\u001e\u0000\u0018.notifygrnull\u0000\u0000null\n\u001d\u0000\u0018.misccurdldt \u0000\u0000\u0010\u0000\u0000null\u000b\u001c\u0000\u00070\u0000\u0003now\u0000\u0000\n\u001b\u0000\u0004\ntime\u000b\u001a\u0000\u001a0\u0000\u000bthismorning\u0000\u000bthisMorning\n\u0019\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0018\u0000\u0004\ndays\u000b\u0017\u0000\u001a0\u0000\u000bthisevening\u0000\u000bthisEvening\n\u0016\u0000\u0004\nlist\u000b\u0015\u0000\u001e0\u0000\rcurrentevents\u0000\rcurrentEvents\n\u0014\u0000\u0004\nwres\n\u0013\u0000\u0004\nkocl\n\u0012\u0000\u0004\ncobj\n\u0011\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0010\u0000\u0004\nwrev\u000e\u0001a\u0000\u0000\u0013\n\u000f\u0000\u0004\nwr1s\n\u000e\u0000\u0004\nwr5s\u000b\r\u0000\u00140\u0000\bthestart\u0000\btheStart\n\f\u0000\u0004\ntstr\u000b\u000b\u0000\u001c0\u0000\fthestarttime\u0000\ftheStartTime\u000b\n\u0000\u00180\u0000\neventtitle\u0000\neventTitle\n\t\u0000\u0004\nwr11\u000b\b\u0000$0\u0000\u0010eventdescription\u0000\u0010eventDescription\n\u0007\u0000\u0004\nwr12\u000b\u0006\u0000\u00160\u0000\tstarttime\u0000\tstartTime\u0003\u0005\u0000\u0006\n\u0004\u0000\u0004\nreco\u000b\u0003\u0000\u00140\u0000\bmyrecord\u0000\bmyRecord\u000b\u0002\u0000\u00120\u0000\u0007newlist\u0000\u0007newList\n\u0001\u0000\u0004\nnmbr\u000b\u0000\u0000\"0\u0000\u000ftheeventsummary\u0000\u000ftheEventSummary\u0001\u0000\u0000\u0002\u0000\u0000\u000b\u0000*0\u0000\u0013theeventdescription\u0000\u0013theEventDescription\u0011-\u0002\n\u0012\u0000\/\u0012\u0000\u0016lvEO*\f\u0000\u000bUO*a\u0000\u0010a\u0000\u0011a\u0000\u0012\f\u0000\u0013UO*j\f\u0000\u0014E`\u0000\u0015O_\u0000\u0015_\u0000\u0015a\u0000\u0016,\u001fE`\u0000\u0017O_\u0000\u0017j\f\u0000\u0018O_\u0000\u0017k_\u0000\u0019 \u001ek\u001fE`\u0000\u001aO_\u0000\u001aj\f\u0000\u0018Oa\u0000\u001b\u0012\u0001jva\u0000\u001c&E`\u0000\u001dO\u0017\u0000*a\u0000\u001e-[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0000\u0012\u0000\u0017\u0000*a\u0000\"-a\u0000#[[[a\u0000$,\\Z_\u0000\u0017;\\[a\u0000$,\\Z_\u0000\u001a=A\\[[a\u0000%,\\Z_\u0000\u0015;\\[a\u0000$,\\Z_\u0000\u0017=AB1[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0001\u0012\u0000\\a\u0000&j\f\u0000\u0018O*a\u0000$,E`\u0000'O_\u0000'a\u0000(,E`\u0000)Oa\u0000*a\u0000+,a\u0000,a\u0000-,a\u0000._\u0000)a\u0000\/\u000ea\u00000&E`\u00001O_\u00001kva\u0000\u001c&E`\u00002O_\u0000\u001d_\u00002%E`\u0000\u001dU[OYU[OY@O_\u0000\u001da\u0000 -a\u00003,j\u0000\u001d\u0000!\u0012\u0000\u0019*a\u00004a\u00005a\u0000\u0010a\u00006a\u00007\f\u0000\u0013UY\u0000\u0003hO\u0017\u0000~_\u0000\u001d[a\u0000\u001fa\u0000 l\f\u0000!kh\u001b\u0000\u0002\u0014\u0000\u0018a\u0000*,a\u00008%a\u0000.,%E`\u00009W\u0000\u0014X\u0000:\u0000;a\u0000<a\u0000.,%E`\u00009O\u0014\u0000\u000ea\u0000,,E`\u0000=W\u0000\u000eX\u0000:\u0000;a\u0000>E`\u0000=O\u0012\u0000\u0019*a\u0000?_\u00009a\u0000\u0010_\u0000=a\u0000@\f\u0000\u0013U[OYOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"218109c28213548fa81dbd9e3a19a9bf8c866129","subject":"The chapter markers are now accurate to the thousandth of a second","message":"The chapter markers are now accurate to the thousandth of a second\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt #\/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\" as text) as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d\\\" $hrs $min $sec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \".000 \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n log (\"Before the addition, theCounter is \" & theCounter) as text\n set theCounter to do shell script (cmdPrefix & \"t=\" & theCounter & \";t=`echo $t\\\"+\\\\`ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\)\\\\.[0-9]*\/\\\\1\/'\\\\`\\\" | bc`;echo $t\" as text)\n log (\"After the addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt #\/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"00bc0213301804471b0b5c8cdcf18f2bd7bc6f39","subject":"support file name utf8 encoded","message":"support file name utf8 encoded\n","repos":"lexrus\/LTFinderButtons","old_file":"CopyFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"CopyFinderButton.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\u0007O\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000d\u0000e\u0000c\u0000o\u0000d\u0000e\u0000U\u0000R\u0000I\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000(\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000)\u0000)\u0000\r\u0000a\u0000p\u0000p\u0000.\u0000s\u0000e\u0000t\u0000T\u0000h\u0000e\u0000C\u0000l\u0000i\u0000p\u0000b\u0000o\u0000a\u0000r\u0000d\u0000T\u0000o\u0000(\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000ejscr\u0000\u0001\u0000\f\u07ad","old_contents":"JsOsaDAS1.001.00bplist00\u0001\u0002Vscripto\u0011\u00074\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000M\u0000I\u0000T\u0000 \u0000L\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000 \u0000(\u0000M\u0000I\u0000T\u0000)\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000\u0000 \u00002\u00000\u00001\u00007\u0000 \u0000L\u0000e\u0000x\u0000 \u0000T\u0000a\u0000n\u0000g\u0000,\u0000 \u0000h\u0000t\u0000t\u0000p\u0000:\u0000\/\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000.\u0000c\u0000o\u0000m\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000h\u0000t\u0000t\u0000p\u0000s\u0000:\u0000\/\u0000\/\u0000g\u0000i\u0000t\u0000h\u0000u\u0000b\u0000.\u0000c\u0000o\u0000m\u0000\/\u0000l\u0000e\u0000x\u0000r\u0000u\u0000s\u0000\/\u0000L\u0000T\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000B\u0000u\u0000t\u0000t\u0000o\u0000n\u0000s\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000P\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000i\u0000s\u0000 \u0000h\u0000e\u0000r\u0000e\u0000b\u0000y\u0000 \u0000g\u0000r\u0000a\u0000n\u0000t\u0000e\u0000d\u0000,\u0000 \u0000f\u0000r\u0000e\u0000e\u0000 \u0000o\u0000f\u0000 \u0000c\u0000h\u0000a\u0000r\u0000g\u0000e\u0000,\u0000 \u0000t\u0000o\u0000 \u0000a\u0000n\u0000y\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000o\u0000b\u0000t\u0000a\u0000i\u0000n\u0000i\u0000n\u0000g\u0000 \u0000a\u0000 \u0000c\u0000o\u0000p\u0000y\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000a\u0000s\u0000s\u0000o\u0000c\u0000i\u0000a\u0000t\u0000e\u0000d\u0000 \u0000d\u0000o\u0000c\u0000u\u0000m\u0000e\u0000n\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000(\u0000t\u0000h\u0000e\u0000 \u001c\u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e \u001d\u0000)\u0000,\u0000 \u0000t\u0000o\u0000 \u0000d\u0000e\u0000a\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000r\u0000e\u0000s\u0000t\u0000r\u0000i\u0000c\u0000t\u0000i\u0000o\u0000n\u0000,\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000o\u0000u\u0000t\u0000 \u0000l\u0000i\u0000m\u0000i\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000t\u0000o\u0000 \u0000u\u0000s\u0000e\u0000,\u0000 \u0000c\u0000o\u0000p\u0000y\u0000,\u0000 \u0000m\u0000o\u0000d\u0000i\u0000f\u0000y\u0000,\u0000 \u0000m\u0000e\u0000r\u0000g\u0000e\u0000,\u0000 \u0000p\u0000u\u0000b\u0000l\u0000i\u0000s\u0000h\u0000,\u0000 \u0000d\u0000i\u0000s\u0000t\u0000r\u0000i\u0000b\u0000u\u0000t\u0000e\u0000,\u0000 \u0000s\u0000u\u0000b\u0000l\u0000i\u0000c\u0000e\u0000n\u0000s\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000\/\u0000o\u0000r\u0000 \u0000s\u0000e\u0000l\u0000l\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000,\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000o\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000t\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000s\u0000 \u0000t\u0000o\u0000 \u0000w\u0000h\u0000o\u0000m\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000 \u0000i\u0000s\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000f\u0000u\u0000r\u0000n\u0000i\u0000s\u0000h\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000d\u0000o\u0000 \u0000s\u0000o\u0000,\u0000 \u0000s\u0000u\u0000b\u0000j\u0000e\u0000c\u0000t\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000f\u0000o\u0000l\u0000l\u0000o\u0000w\u0000i\u0000n\u0000g\u0000 \u0000c\u0000o\u0000n\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000:\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000h\u0000e\u0000 \u0000a\u0000b\u0000o\u0000v\u0000e\u0000 \u0000c\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000p\u0000e\u0000r\u0000m\u0000i\u0000s\u0000s\u0000i\u0000o\u0000n\u0000 \u0000n\u0000o\u0000t\u0000i\u0000c\u0000e\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000b\u0000e\u0000 \u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000d\u0000 \u0000i\u0000n\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000a\u0000l\u0000l\u0000 \u0000c\u0000o\u0000p\u0000i\u0000e\u0000s\u0000 \u0000o\u0000r\u0000 \u0000s\u0000u\u0000b\u0000s\u0000t\u0000a\u0000n\u0000t\u0000i\u0000a\u0000l\u0000 \u0000p\u0000o\u0000r\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000o\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000S\u0000o\u0000f\u0000t\u0000w\u0000a\u0000r\u0000e\u0000.\u0000\n\u0000\/\u0000\/\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000I\u0000S\u0000 \u0000P\u0000R\u0000O\u0000V\u0000I\u0000D\u0000E\u0000D\u0000 \u001c\u0000A\u0000S\u0000 \u0000I\u0000S \u001d\u0000,\u0000 \u0000W\u0000I\u0000T\u0000H\u0000O\u0000U\u0000T\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000Y\u0000 \u0000O\u0000F\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000K\u0000I\u0000N\u0000D\u0000,\u0000 \u0000E\u0000X\u0000P\u0000R\u0000E\u0000S\u0000S\u0000 \u0000O\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000I\u0000M\u0000P\u0000L\u0000I\u0000E\u0000D\u0000,\u0000 \u0000I\u0000N\u0000C\u0000L\u0000U\u0000D\u0000I\u0000N\u0000G\u0000 \u0000B\u0000U\u0000T\u0000 \u0000N\u0000O\u0000T\u0000 \u0000L\u0000I\u0000M\u0000I\u0000T\u0000E\u0000D\u0000 \u0000T\u0000O\u0000 \u0000T\u0000H\u0000E\u0000 \u0000W\u0000A\u0000R\u0000R\u0000A\u0000N\u0000T\u0000I\u0000E\u0000S\u0000 \u0000O\u0000F\u0000 \u0000M\u0000E\u0000R\u0000C\u0000H\u0000A\u0000N\u0000T\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000F\u0000I\u0000T\u0000N\u0000E\u0000S\u0000S\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000 \u0000P\u0000A\u0000R\u0000T\u0000I\u0000C\u0000U\u0000L\u0000A\u0000R\u0000 \u0000P\u0000U\u0000R\u0000P\u0000O\u0000S\u0000E\u0000 \u0000A\u0000N\u0000D\u0000 \u0000N\u0000O\u0000N\u0000I\u0000N\u0000F\u0000R\u0000I\u0000N\u0000G\u0000E\u0000M\u0000E\u0000N\u0000T\u0000.\u0000 \u0000I\u0000N\u0000 \u0000N\u0000O\u0000 \u0000E\u0000V\u0000E\u0000N\u0000T\u0000 \u0000S\u0000H\u0000A\u0000L\u0000L\u0000 \u0000T\u0000H\u0000E\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000A\u0000U\u0000T\u0000H\u0000O\u0000R\u0000S\u0000 \u0000O\u0000R\u0000 \u0000C\u0000O\u0000P\u0000Y\u0000R\u0000I\u0000G\u0000H\u0000T\u0000 \u0000H\u0000O\u0000L\u0000D\u0000E\u0000R\u0000S\u0000 \u0000B\u0000E\u0000 \u0000L\u0000I\u0000A\u0000B\u0000L\u0000E\u0000 \u0000F\u0000O\u0000R\u0000 \u0000A\u0000N\u0000Y\u0000 \u0000C\u0000L\u0000A\u0000I\u0000M\u0000,\u0000 \u0000D\u0000A\u0000M\u0000A\u0000G\u0000E\u0000S\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000L\u0000I\u0000A\u0000B\u0000I\u0000L\u0000I\u0000T\u0000Y\u0000,\u0000 \u0000W\u0000H\u0000E\u0000T\u0000H\u0000E\u0000R\u0000 \u0000I\u0000N\u0000 \u0000A\u0000N\u0000 \u0000A\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000O\u0000F\u0000 \u0000C\u0000O\u0000N\u0000T\u0000R\u0000A\u0000C\u0000T\u0000,\u0000 \u0000T\u0000O\u0000R\u0000T\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000W\u0000I\u0000S\u0000E\u0000,\u0000 \u0000A\u0000R\u0000I\u0000S\u0000I\u0000N\u0000G\u0000 \u0000F\u0000R\u0000O\u0000M\u0000,\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000O\u0000U\u0000T\u0000 \u0000O\u0000F\u0000 \u0000O\u0000R\u0000 \u0000I\u0000N\u0000 \u0000C\u0000O\u0000N\u0000N\u0000E\u0000C\u0000T\u0000I\u0000O\u0000N\u0000 \u0000W\u0000I\u0000T\u0000H\u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000 \u0000O\u0000R\u0000 \u0000T\u0000H\u0000E\u0000 \u0000U\u0000S\u0000E\u0000 \u0000O\u0000R\u0000 \u0000O\u0000T\u0000H\u0000E\u0000R\u0000 \u0000D\u0000E\u0000A\u0000L\u0000I\u0000N\u0000G\u0000S\u0000 \u0000I\u0000N\u0000\n\u0000\/\u0000\/\u0000 \u0000 \u0000T\u0000H\u0000E\u0000 \u0000S\u0000O\u0000F\u0000T\u0000W\u0000A\u0000R\u0000E\u0000.\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000a\u0000p\u0000p\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000.\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000i\u0000n\u0000c\u0000l\u0000u\u0000d\u0000e\u0000S\u0000t\u0000a\u0000n\u0000d\u0000a\u0000r\u0000d\u0000A\u0000d\u0000d\u0000i\u0000t\u0000i\u0000o\u0000n\u0000s\u0000 \u0000=\u0000 \u0000t\u0000r\u0000u\u0000e\u0000\n\u0000\n\u0000O\u0000b\u0000j\u0000C\u0000.\u0000i\u0000m\u0000p\u0000o\u0000r\u0000t\u0000(\u0000\"\u0000F\u0000o\u0000u\u0000n\u0000d\u0000a\u0000t\u0000i\u0000o\u0000n\u0000\"\u0000)\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000n\u0000e\u0000s\u0000c\u0000a\u0000p\u0000e\u0000(\u0000p\u0000a\u0000t\u0000h\u0000)\u0000\n\u0000\t\u0000 \u0000 \u0000 \u0000 \u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000^\u0000\\\u0000\/\u0000?\u0000f\u0000i\u0000l\u0000e\u0000[\u0000:\u0000]\u0000\\\u0000\/\u0000+\u0000\/\u0000i\u0000,\u0000 \u0000'\u0000\/\u0000'\u0000)\u0000\n\u0000\t\u0000\t\u0000.\u0000r\u0000e\u0000p\u0000l\u0000a\u0000c\u0000e\u0000(\u0000\/\u0000(\u0000\"\u0000)\u0000\/\u0000g\u0000,\u0000 \u0000'\u0000\\\u0000\\\u0000$\u00001\u0000'\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000 \u0000=\u0000 \u0000A\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000(\u0000'\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000'\u0000)\u0000\n\u0000\t\u0000v\u0000a\u0000r\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000=\u0000 \u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000i\u0000o\u0000n\u0000(\u0000)\u0000[\u00000\u0000]\u0000\n\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000!\u0000i\u0000t\u0000e\u0000m\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000t\u0000r\u0000y\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000[\u00000\u0000]\u0000.\u0000t\u0000a\u0000r\u0000g\u0000e\u0000t\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000 \u0000c\u0000a\u0000t\u0000c\u0000h\u0000 \u0000(\u0000e\u0000)\u0000 \u0000{\u0000\n\u0000\t\u0000\t\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000d\u0000e\u0000s\u0000k\u0000t\u0000o\u0000p\u0000(\u0000)\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000\t\u0000\t\u0000}\u0000\n\u0000\t\u0000}\u0000\n\u0000\t\u0000r\u0000e\u0000t\u0000u\u0000r\u0000n\u0000 \u0000u\u0000r\u0000l\u0000P\u0000a\u0000t\u0000h\u0000T\u0000o\u0000P\u0000o\u0000s\u0000i\u0000x\u0000P\u0000a\u0000t\u0000h\u0000(\u0000i\u0000t\u0000e\u0000m\u0000.\u0000u\u0000r\u0000l\u0000(\u0000)\u0000)\u0000\n\u0000}\u0000\n\u0000\n\u0000\n\u0000v\u0000a\u0000r\u0000 \u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000 \u0000=\u0000 \u0000g\u0000e\u0000t\u0000C\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000(\u0000)\u0000\n\u0000a\u0000p\u0000p\u0000.\u0000s\u0000e\u0000t\u0000T\u0000h\u0000e\u0000C\u0000l\u0000i\u0000p\u0000b\u0000o\u0000a\u0000r\u0000d\u0000T\u0000o\u0000(\u0000c\u0000u\u0000r\u0000r\u0000e\u0000n\u0000t\u0000F\u0000o\u0000l\u0000d\u0000e\u0000r\u0000P\u0000a\u0000t\u0000h\u0000)\u0000\b\u0000\u000b\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e~jscr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"93f88109b5c73f3f3501ea6b6179975014f30c8b","subject":"Ugh what is going on","message":"Ugh what is going on\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/clear-notifications.scpt","new_file":"scripts\/clear-notifications.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000o\u0000p\u0000q\u0000r\u0001\u0000\u0000\u0010\u0000o\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u000e\u0000p\u0000\u0007\u0010\u0000s\u0000t\u0000u\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000s\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000v\u0002\u0000v\u0000\u0002\u0000\u0005\u0000w\u0002\u0000w\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000t\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000u\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u000e\u0000q\u0000\u0001\u0014\u0000x\u000e\u0000x\u0000\u0003\u0018\u0000y\u000e\u0000y\u0000\u0003\u0018\u0000z\u000e\u0000z\u0000\u0003\u0018\u0000{\u000e\u0000{\u0000\u0003\u0018\u0000|\u0000}\u000e\u0000|\u0000\u0003\u0018\u0000n\u0000~\n\u0000\u0004\npcap\u000e\u0000~\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000}\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\u000e\u0000r\u0000\u0002\u0004\u0000\u0003\u0000\u0002\u000e\u0000\u0000\u0002\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\"\u0000A\u0000X\u0000S\u0000c\u0000r\u0000o\u0000l\u0000l\u0000T\u0000o\u0000V\u0000i\u0000s\u0000i\u0000b\u0000l\u0000e\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u000e\u0000\u0000\u0003\u0018\u0000\u0000\u000e\u0000\u0000\u0003\u0018\u0000n\u0000\n\u0000\u0004\npcap\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\ncwin\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\n\u0000\u0004\nscra\u0003\u0000\u0001\n\u0000\u0004\nuiel\u0003\u0000\u0001\n\u0000\u0004\nsgrp\u0003\u0000\u0001\n\u0000\u0004\nactT\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000A\u0000X\u0000S\u0000h\u0000o\u0000w\u0000M\u0000e\u0000n\u0000u\n\u0000\b\u000bboovtrue\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\b\n\u0000\u0018.miscactvnull\u0000\u0000null\r\u0000\b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\t\u000f\u0000\t\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001p\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0016NotificationCenter.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00005\/:System:Library:CoreServices:NotificationCenter.app\/\u0000\u0000\u000e\u0000.\u0000\u0016\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00002System\/Library\/CoreServices\/NotificationCenter.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\n\r\u0000\n\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u0000\u000b\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0000\f\u0000\r\r\u0000\f\u0000\u0002O\u0000\u0000\u0000\n\u0000\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001T\u0000\u0000\u0000\u0011\u0000\u0000\u0010\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0016\u0000\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0016\u0000\u0016\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003Q\u0000\u0000\u0000\u0016\u00001\u0000\u0016\u0000\u0017\u0000\u0018\r\u0000\u0016\u0000\u0002r\u0000\u0000\u0000\u0019\u0000(\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002n\u0000\u0000\u0000\u0019\u0000&\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00024\u0000\u0000\u0000#\u0000&\u0000\u001d\n\u0000\u0004\nsgrp\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000\u001c\u0000\u0002n\u0000\u0000\u0000\u0019\u0000#\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u00024\u0000\u0000\u0000 \u0000#\u0000 \n\u0000\u0004\nuiel\r\u0000 \u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\r\u0000\u001f\u0000\u0002n\u0000\u0000\u0000\u0019\u0000 \u0000!\u0000\"\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0000#\n\u0000\u0004\nscra\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\n\u0000\u0004\ncwin\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\u001a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u0000\u0017\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0018\u0000\u0000S\u0000\u0000\u00000\u00001\u0002\u0000\u0015\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003l\u0000\u0002\u00002\u00002\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\r\u0000)\u0000\u0003Q\u0000\u0000\u00002\u0000\u0000*\u0000+\r\u0000*\u0000\u0001k\u0000\u0000\u00005\u0000\u0000,\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0002r\u0000\u0000\u00005\u0000:\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u00005\u00008\u00001\u00002\r\u00001\u0000\u00012\u0000\u0001\u00006\u00008\n\u0000\u0004\nactT\r\u00002\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000.\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000;\u0000;\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0006\u0000;\u0000;\u00007\u00008\u0001\u0000\u0000\f\u00007\u0000S\u0000M Try to close the whole group first. If that fails, close individual windows.\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000\u0000 \u0000T\u0000r\u0000y\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000h\u0000o\u0000l\u0000e\u0000 \u0000g\u0000r\u0000o\u0000u\u0000p\u0000 \u0000f\u0000i\u0000r\u0000s\u0000t\u0000.\u0000 \u0000I\u0000f\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000f\u0000a\u0000i\u0000l\u0000s\u0000,\u0000 \u0000c\u0000l\u0000o\u0000s\u0000e\u0000 \u0000i\u0000n\u0000d\u0000i\u0000v\u0000i\u0000d\u0000u\u0000a\u0000l\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000s\u0000.\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003X\u0000\u0000\u0000;\u0000t\u0000<\u0000=\r\u0000<\u0000\u0004Z\u0000\u0000\u0000M\u0000o\u0000>\u0000?\r\u0000>\u0000\u0002=\u0000\u0003\u0000M\u0000V\u0000@\u0000A\r\u0000@\u0000\u0002n\u0000\u0000\u0000M\u0000R\u0000B\u0000C\r\u0000B\u0000\u00011\u0000\u0000\u0000N\u0000R\n\u0000\u0004\ndesc\r\u0000C\u0000\u0001o\u0000\u0000\u0000M\u0000N\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000A\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000D\u000e\u0000D\u0000\u0001\u0000E\u0011\u0000E\u0000\u0012\u0000C\u0000l\u0000e\u0000a\u0000r\u0000 \u0000A\u0000l\u0000l\r\u0000?\u0000\u0001k\u0000\u0000\u0000Y\u0000k\u0000F\u0002\u0000F\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0002r\u0000\u0000\u0000Y\u0000^\u0000I\u0000J\r\u0000I\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\n\u0000\b\u000bboovtrue\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000H\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000_\u0000i\u0000M\u0000N\r\u0000M\u0000\u0003I\u0000\u0002\u0000c\u0000h\u0000O\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000O\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000N\u0000\u0001o\u0000\u0000\u0000_\u0000`\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000L\u0000\u0002\u0000P\r\u0000P\u0000\u0000S\u0000\u0000\u0000j\u0000k\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000=\u0000\u0001o\u0000\u0000\u0000>\u0000?\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000;\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0003l\u0000\u0002\u0000u\u0000u\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\u0000T\r\u0000S\u0000\u0003X\u0000\u0000\u0000u\u0000\u0000U\u0000V\r\u0000U\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000W\u0000X\r\u0000W\u0000\u0002=\u0000\u0003\u0000\u0000\u0000Y\u0000Z\r\u0000Y\u0000\u0002n\u0000\u0000\u0000\u0000\u0000[\u0000\\\r\u0000[\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ndesc\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000]\u000e\u0000]\u0000\u0001\u0000^\u0011\u0000^\u0000\n\u0000C\u0000l\u0000o\u0000s\u0000e\r\u0000X\u0000\u0001k\u0000\u0000\u0000\u0000\u0000_\u0002\u0000_\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0002r\u0000\u0000\u0000\u0000\u0000b\u0000c\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovtrue\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\u0002\u0000a\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002O\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000h\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\r\u0000h\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0002\u0000\u0000\r\u0000g\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0002\u0000e\u0000\u0002\u0000i\r\u0000i\u0000\u0000S\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\r\u0000V\u0000\u0001o\u0000\u0000\u0000x\u0000y\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\u0002\u0000T\u0000\u0002\u0000j\r\u0000j\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000+\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000f\u0000\u00024\u0000\u0000\u0000\n\u0000\u000e\u0000k\n\u0000\u0004\nprcs\r\u0000k\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0000l\u000e\u0000l\u0000\u0001\u0000m\u0011\u0000m\u0000&\u0000N\u0000o\u0000t\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000e\u0000n\u0000t\u0000e\u0000r\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000n\u000f\u0000n\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000o\u0000p\u0001\u0000\u0000\u0010\u0000o\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000p\u0000\u0007\u0010\u0000q\u0000r\u0000s\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000t\u0002\u0000t\u0000\u0002\u0000\u0005\u0000u\u0002\u0000u\u0000\u0002\u0000\n\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000r\u0000\u0001\u000b\u0000\u00160\u0000\ttheaction\u0000\ttheAction\u0010\u0000s\u0000\u0017\u0000\t\u0000n\u0000l\u0000%\u0000D\u0000]\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nscra\n\u0000\u0004\nuiel\n\u0000\u0004\nsgrp\u000b\u0000\u00160\u0000\tthewindow\u0000\ttheWindow\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nactT\u000b\u0000\u00180\u0000\ntheactions\u0000\ntheActions\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\ndesc\u000b\u0000\n0\u0000\u0006closed\u0000\u0000\n\u0000\u0018.prcsperfnull\u0000\u0000\u0000\u0000\u0000actT\u0011\u0000j\f\u0000\u0001O\u0012\u0000*\/\u0012\u0000\u0017\u0000hZ\u0014\u0000\u0014*\/k\/k\/k\/EW\u0000\bX\u0000\u000b\u0000\f\u0016O\u0014\u0000-EO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0013\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYO\u0017\u00008[a\u0000\u0010l\f\u0000\u0011kh\u001b\u0000\u0000a\u0000\u0012,a\u0000\u0016\u0000\u001d\u0000\u0017eE`\u0000\u0014O\u0012\u0000\u0007j\f\u0000\u0015UO\u0016Y\u0000\u0003h[OYOPW\u0000\bX\u0000\u000b\u0000\fh[OYYUU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"852e7598d93a6ddc7702fcb30b71af7728869ed9","subject":"Reorganize and clean up workflow parameters","message":"Reorganize and clean up workflow parameters\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"resources\/config.applescript","new_file":"resources\/config.applescript","new_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\n-- workflow folders\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\n\n-- album artwork folders\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\n\n-- the default icon used for search results without album artwork\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1.jpeg\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getNativeCachedArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","old_contents":"-- core configuration --\n\n-- configurable options --\n\n-- limit number of songs to improve efficiency\nproperty resultLimit : 15\n-- whether or not to retrieve\/display album artwork for each result\nproperty albumArtEnabled : true\n\n-- workflow parameters --\n\nproperty homeFolder : (path to home folder as text)\nproperty libraryFolder : (path to library folder from user domain as text)\nproperty cacheFolder : (libraryFolder & \"Caches:\")\nproperty alfredWorkflowDataFolder : (cacheFolder & \"com.runningwithcrayons.Alfred:Workflow Data:\")\nproperty bundleId : \"com.calebevans.playsong\"\nproperty workflowCacheFolder : (alfredWorkflowDataFolder & bundleId & \":\") as text\nproperty artworkDocsFolder : ((get path to library folder from user domain as text) & \"Containers:com.apple.AMPArtworkAgent:Data:Documents\")\nproperty artworkImageFolder : (artworkDocsFolder & \":artwork:\")\nproperty songArtworkNameSep : \" | \"\nproperty defaultIconName : \"resources\/icon-noartwork.png\"\n-- the name of the playlist used by the workflow for playing songs\nproperty workflowPlaylistName : \"Alfred Play Song\"\n-- list of Alfred results\nproperty resultList : {}\n\n-- replaces substring in string with another substring\non replace(replaceThis, replaceWith, theString)\n\n\tset oldDelims to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to replaceThis\n\tset strItems to text items of theString\n\tset AppleScript's text item delimiters to replaceWith\n\tset newString to strItems as text\n\tset AppleScript's text item delimiters to oldDelims\n\treturn newString\n\nend replace\n\n-- retrieve the plural\/singular form of a quantity based on the given number\non quantifyNumber(theNumber, quantityName, pluralQuantityName)\n\n\tif theNumber is 1 then\n\n\t\tset theString to (theNumber as text) & space & quantityName\n\n\telse\n\n\t\tset theString to (theNumber as text) & space & pluralQuantityName\n\n\tend if\n\n\treturn theString\n\nend quantifyNumber\n\n-- encodes JSON reserved characters in the given string\non encodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\", \"\\\\\\\\\", theString)\n\tset theString to replace(\"\\\"\", \"\\\\\\\"\", theString)\n\treturn theString\n\nend encodeFeedbackChars\n\n-- decodes JSON reserved characters in the given string\non decodeFeedbackChars(theString)\n\n\tset theString to replace(\"\\\\\\\\\", \"\\\\\", theString)\n\tset theString to replace(\"\\\\\\\"\", \"\\\"\", theString)\n\treturn theString\n\nend decodeFeedbackChars\n\n-- adds Alfred result to result list\non addResult(theResult)\n\n\tcopy theResult to the end of resultList\n\nend addResult\n\n-- adds item for \"No Results\" message\non addNoResultsItem(query, queryType)\n\n\taddResult({uid:\"no-results\", valid:\"no\", title:\"No Results Found\", subtitle:(\"No \" & queryType & \"s matching '\" & query & \"'\"), icon:defaultIconName})\n\nend addNoResultsItem\n\non resultListIsFull()\n\n\treturn (length of resultList is resultLimit)\n\nend resultListIsFull\n\non resultListIsEmpty()\n\n\treturn (length of resultList is 0)\n\nend resultListIsFull\n\n-- builds Alfred result item as JSON\non getResultFeedback(theResult)\n\n\t-- encode reserved JSON characters\n\tset resultUid to encodeFeedbackChars(uid of theResult)\n\tset resultValid to (valid of theResult) as text\n\tset resultTitle to encodeFeedbackChars(title of theResult)\n\tset resultSubtitle to encodeFeedbackChars(subtitle of theResult)\n\n\tif (icon of theResult) contains \":\" then\n\n\t\tset resultIcon to encodeFeedbackChars(POSIX path of icon of theResult)\n\n\telse\n\n\t\tset resultIcon to icon of theResult\n\n\tend if\n\n\tset json to \"{\"\n\tset json to json & \"\\\"uid\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"arg\\\":\\\"\" & resultUid & \"\\\",\"\n\tset json to json & \"\\\"valid\\\":\\\"\" & resultValid & \"\\\",\"\n\tset json to json & \"\\\"title\\\":\\\"\" & resultTitle & \"\\\",\"\n\tset json to json & \"\\\"subtitle\\\":\\\"\" & resultSubtitle & \"\\\",\"\n\tset json to json & \"\\\"icon\\\":{\\\"path\\\":\\\"\" & resultIcon & \"\\\"}\"\n\tset json to json & \"}\"\n\treturn json\n\nend getResultFeedback\n\n-- retrieves JSON document for Alfred results\non getResultListFeedback()\n\n\tset json to \"{\\\"items\\\": [\"\n\n\trepeat with theResult in resultList\n\n\t\tset json to json & getResultFeedback(theResult)\n\t\tset json to json & \",\"\n\n\tend repeat\n\n\t-- remove trailing comma after last item\n\tset json to text 1 thru (length of json - 1) of json\n\tset json to json & \"]}\"\n\treturn json\n\nend getResultListFeedback\n\n-- writes the given content to the given file\non fileWrite(theFile, theContent)\n\n\tset fileRef to open for access theFile with write permission\n\ttry\n\t\tset eof of fileRef to 0\n\t\twrite theContent to fileRef starting at eof\n\t\tclose access fileRef\n\ton error\n\t\tclose access fileRef\n\tend try\n\nend fileWrite\n\n-- query path to artwork image file cached natively by Music.app in Catalina\non getSongArtworkPath(theSong)\n\n\ttry\n\n\t\tif albumArtEnabled is false then return defaultIconName\n\n\t\ttell application \"Music\"\n\n\t\t\t-- get persistent ID of song and convert from hexadecimal to decimal (base-10)\n\t\t\tset hexSongId to persistent ID of theSong\n\t\t\tset decSongId to (do shell script \"echo $((16#\" & hexSongId & \"))\")\n\n\t\t\t-- retrieve filename of cached artwork\n\t\t\tset artworkName to (do shell script (\"\/usr\/bin\/sqlite3 \" & (POSIX path of artworkDocsFolder) & \"\/artworkd.sqlite '\" & \u00ac\n\t\t\t\"select ZHASHSTRING, ZKIND from ZIMAGEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"(select ZIMAGEINFO from ZSOURCEINFO where Z_PK = (\" & \u00ac\n\t\t\t\"select ZSOURCEINFO from ZDATABASEITEMINFO where ZPERSISTENTID = \" & \u00ac\n\t\t\tdecSongId & \")))' | \" & \u00ac\n\t\t\t\"awk '{split($0,a,\\\"|\\\"); print a[1] \\\"_sk_\\\" a[2] \\\"_cid_1.jpeg\\\"}'\"))\n\n\t\t\tset artworkPath to (artworkImageFolder & artworkName)\n\n\t\tend tell\n\n\t\treturn artworkPath\n\n\ton error errorMessage\n\n\t\tlog errorMessage\n\n\tend try\n\nend getNativeCachedArtworkPath\n\n-- creates album artwork cache\non createWorkflowPlaylist()\n\n\ttell application \"Music\"\n\n\t\tif not (user playlist workflowPlaylistName exists) then\n\n\t\t\tmake new user playlist with properties {name:workflowPlaylistName, shuffle:false}\n\n\t\tend if\n\n\tend tell\n\nend createWorkflowPlaylist\n\non clearQueue()\n\n\ttell application \"Music\"\n\n\t\tif user playlist workflowPlaylistName exists then\n\n\t\t\tdelete tracks of user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend clearQueue\n\non queueSongs(theSongs)\n\n\ttell application \"Music\"\n\n\t\trepeat with theSong in theSongs\n\n\t\t\tduplicate theSong to user playlist workflowPlaylistName\n\n\t\tend repeat\n\n\tend tell\n\nend queueSongs\n\non playQueue()\n\n\ttell application \"Music\"\n\n\t\tif number of tracks in user playlist workflowPlaylistName is not 0 then\n\n\t\t\tplay user playlist workflowPlaylistName\n\n\t\tend if\n\n\tend tell\n\nend playQueue\n\non getPlaylist(playlistId)\n\n\ttell application \"Music\"\n\n\t\treturn (first playlist whose id is playlistId)\n\n\tend tell\n\nend getPlaylist\n\non getPlaylistSongs(playlistId)\n\n\ttell application \"Music\"\n\n\t\tset thePlaylist to getPlaylist(playlistId) of me\n\t\tset playlistSongs to every track of thePlaylist\n\n\tend tell\n\n\treturn playlistSongs\n\nend getPlaylistSongs\n\n-- retrieves list of artist names for the given genre\non getGenreArtists(genreName)\n\n\ttell application \"Music\"\n\n\t\tset genreSongs to every track of playlist 2 whose genre is genreName\n\t\tset artistNames to {}\n\n\t\trepeat with theSong in genreSongs\n\n\t\t\tif (artist of theSong) is not in artistNames then\n\n\t\t\t\tset artistNames to artistNames & (artist of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistNames\n\nend getGenreArtists\n\n-- retrieves list of songs within the given genre, sorted by artist\non getGenreSongs(genreName)\n\n\tset artistNames to getGenreArtists(genreName) of me\n\tset genreSongs to {}\n\n\trepeat with artistName in artistNames\n\n\t\tset genreSongs to genreSongs & getArtistSongs(artistName) of me\n\n\tend repeat\n\n\treturn genreSongs\n\nend getGenreSongs\n\n-- retrieves list of album names for the given artist\non getArtistAlbums(artistName)\n\n\ttell application \"Music\"\n\n\t\tset artistSongs to every track of playlist 2 whose artist is artistName\n\t\tset albumNames to {}\n\n\t\trepeat with theSong in artistSongs\n\n\t\t\tif (album of theSong) is not in albumNames then\n\n\t\t\t\tset albumNames to albumNames & (album of theSong)\n\n\t\t\tend if\n\n\t\tend repeat\n\n\tend tell\n\n\treturn albumNames\n\nend getArtistAlbums\n\n-- retrieves list of songs by the given artist, sorted by album\non getArtistSongs(artistName)\n\n\ttell application \"Music\"\n\n\t\tset albumNames to getArtistAlbums(artistName) of me\n\t\tset artistSongs to {}\n\n\t\trepeat with albumName in albumNames\n\n\t\t\tset albumSongs to (every track of playlist 2 whose artist is artistName and album is albumName)\n\t\t\tset artistSongs to artistSongs & albumSongs\n\n\t\tend repeat\n\n\tend tell\n\n\treturn artistSongs\n\nend getArtistSongs\n\n-- retrieves list of songs in the given album\non getAlbumSongs(albumName)\n\n\ttell application \"Music\"\n\n\t\tset albumSongs to every track of playlist 2 whose album is albumName\n\n\tend tell\n\n\treturn albumSongs\n\nend getAlbumSongs\n\n-- retrieves the song with the given ID\non getSong(songId)\n\n\ttell application \"Music\"\n\n\t\tset theSong to first track of playlist 2 whose database ID is songId\n\n\tend tell\n\n\treturn theSong\n\nend getSong\n\n-- retrieves a list of objects or names matching the given query and type\non getResultsFromQuery(query, queryType)\n\n\tset evalScript to run script \"\n\tscript\n\n\t\ton findResults(query, queryType, resultLimit)\n\n\t\t\ttell application \\\"Music\\\"\n\n\t\t\t\tset theSongs to (get every track in playlist 2 whose \" & queryType & \" starts with query)\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains (space & query) and \" & queryType & \" does not start with query)\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs < resultLimit then\n\n\t\t\t\t\tset theSongs to theSongs & (get every track in playlist 2 whose \" & queryType & \" contains query and \" & queryType & \" does not start with query and \" & queryType & \" does not contain (space & query))\n\n\t\t\t\tend if\n\n\t\t\t\tif length of theSongs is 0 then\n\n\t\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only songs)\n\n\t\t\t\t\telse if queryType is not \\\"genre\\\" then\n\n\t\t\t\t\t\tset theSongs to theSongs & (search playlist 2 for query only \" & queryType & \"s)\n\n\t\t\t\t\tend if\n\n\t\t\t\tend if\n\n\t\t\t\tif queryType is \\\"name\\\" then\n\n\t\t\t\t\tif length of theSongs > resultLimit then\n\n\t\t\t\t\t\tset theSongs to items 1 thru resultLimit of theSongs\n\n\t\t\t\t\tend if\n\n\t\t\t\t\tset theResults to theSongs\n\n\t\t\t\telse\n\n\t\t\t\t\tset theResults to {}\n\n\t\t\t\t\trepeat with theSong in theSongs\n\n\t\t\t\t\t\tif length of theResults is resultLimit then exit repeat\n\n\t\t\t\t\t\tset theResult to \" & queryType & \" of theSong\n\n\t\t\t\t\t\tif theResult is not in theResults then\n\n\t\t\t\t\t\t\tset theResults to theResults & theResult\n\n\t\t\t\t\t\tend if\n\n\t\t\t\t\tend repeat\n\n\t\t\t\tend if\n\n\t\t\tend tell\n\n\t\t\treturn theResults\n\n\t\tend findResults\n\n\tend script\n\t\"\n\n\tevalScript's findResults(query, queryType, resultLimit)\n\nend getResultsFromQuery\n\n-- returns the given string with leading and trailing whitespace removed\non trimWhitespace(theString)\n\n\t-- trim leading whitespace\n\trepeat while theString begins with space\n\n\t\tif length of theString is 1 then return \"\"\n\t\tset theString to text 2 thru end of theString\n\n\tend repeat\n\n\t-- trim trailing whitespace\n\trepeat while theString ends with space\n\n\t\tset theString to text 1 thru ((length of theString) - 1) of theString\n\n\tend repeat\n\n\treturn theString\n\nend trimWhitespace\n\n-- queues the song with the given ID\non queueSong(songId)\n\n\tset theSong to getSong(songId)\n\tqueueSongs({theSong})\n\nend queueSong\n\n-- queues all songs belonging to the given album\non queueAlbum(albumName)\n\n\tset albumName to decodeFeedbackChars(albumName)\n\tset albumSongs to getAlbumSongs(albumName)\n\tqueueSongs(albumSongs)\n\nend queueAlbum\n\n-- queues all songs by the given artist\non queueArtist(artistName)\n\n\tset artistName to decodeFeedbackChars(artistName)\n\tset artistSongs to getArtistSongs(artistName)\n\tqueueSongs(artistSongs)\n\nend queueArtist\n\n-- queues all songs within the given genre\non queueGenre(genreName)\n\n\tset genreName to decodeFeedbackChars(genreName)\n\tset genreSongs to getGenreSongs(genreName)\n\tqueueSongs(genreSongs)\n\nend queueGenre\n\n-- queues all songs in the given playlist\non queuePlaylist(playlistId)\n\n\tset playlistSongs to getPlaylistSongs(playlistId)\n\tqueueSongs(playlistSongs)\n\nend queuePlaylist\n\n-- parses the given result query to retrieve type and id of item to queue\non parseResultQuery(query)\n\n\tset pos to offset of \"-\" in query\n\tset theType to text 1 thru (pos - 1) of query\n\tset theId to text (pos + 1) thru end of query\n\treturn {type:theType, id:theId}\n\nend parseResultQuery\n\non queue(query)\n\n\tset typeAndId to parseResultQuery(query)\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\tcreateWorkflowPlaylist()\n\n\tif theType is \"song\" then\n\t\tqueueSong(theId)\n\telse if theType is \"album\" then\n\t\tqueueAlbum(theId)\n\telse if theType is \"artist\" then\n\t\tqueueArtist(theId)\n\telse if theType is \"genre\" then\n\t\tqueueGenre(theId)\n\telse if theType is \"playlist\" then\n\t\tqueuePlaylist(theId)\n\telse\n\t\tlog \"Unsupported type: \" & theType\n\tend if\n\nend queue\n\non play(query)\n\n\tclearQueue()\n\tqueue(query)\n\tplayQueue()\n\nend play\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"3873e3f5242acd01f2c1313c4723032d95336cef","subject":"Updated SpamScript app","message":"Updated SpamScript app\n","repos":"yardnsm\/dotfiles,yardnsm\/dotfiles","old_file":"_misc\/apps\/SpamScript.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"_misc\/apps\/SpamScript.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0000\b\u0000\t\r\u0000\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u0000\u000b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\t\u0000\f\r\u0000\f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000\r\u0000\u000e\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u00000\u0000W\u0000h\u0000a\u0000t\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000I\u0000 \u0000s\u0000p\u0000a\u0000m\u0000,\u0000 \u0000b\u0000a\u0000b\u0000y\u0000?\u0006\u0000\u000e\u0000\u0003\u0000\u0011\u0000\u0012\n\u0000\u0004\ndtxt\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0013\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0000\u0006\u0000\u0012\u0000\u0003\u0000\u0015\n\u0000\u0004\ndisp\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0011\u0000\u0018\r\u0000\u0018\u0000\u0002c\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nutxt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u001f\u0000\u001d\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u001f\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u001d\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nttxt\r\u0000!\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u001b\u0000\"\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u001b\u0000#\u0000$\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000:\u0000H\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000y\u0000 \u0000t\u0000i\u0000m\u0000e\u0000s\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000I\u0000 \u0000s\u0000p\u0000a\u0000m\u0000?\u0000?\u0006\u0000$\u0000\u0003\u0000'\u0000(\n\u0000\u0004\ndtxt\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\u0000\u0006\u0000(\u0000\u0003\u0000+\n\u0000\u0004\ndisp\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0002\u0000 \u0000-\u0000.\r\u0000.\u0000\u0002r\u0000\u0000\u0000 \u0000-\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000 \u0000+\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\nttxt\r\u00002\u0000\u0003l\u0000\u0005\u0000 \u0000)\u00003\r\u00003\u0000\u0003I\u0000\u0002\u0000 \u0000)\u00004\u00005\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u00004\u0000\u0001m\u0000\u0000\u0000 \u0000!\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000H\u0000o\u0000w\u0000 \u0000f\u0000a\u0000s\u0000t\u0000?\u0000 \u0000-\u0000i\u0000n\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000-\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000i\u0000x\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000p\u0000u\u0000t\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000p\u0000a\u0000m\u0000.\u0006\u00005\u0000\u0003\u00008\u00009\n\u0000\u0004\ndtxt\r\u00008\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000\u0000\u0006\u00009\u0000\u0003\u0000<\n\u0000\u0004\ndisp\r\u0000<\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u0000=\r\u0000=\u0000\u0003l\u0000\u0002\u0000.\u0000b\u0000>\r\u0000>\u0000\u0002O\u0000\u0000\u0000.\u0000b\u0000?\u0000@\r\u0000?\u0000\u0001k\u0000\u0000\u00004\u0000a\u0000A\u0002\u0000A\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u00004\u00009\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000:\u0000A\u0000F\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000F\u0000\u0001m\u0000\u0000\u0000:\u0000=\u0003\u0000\u0006\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\r\u0000G\u0000\u0002U\u0000\u0000\u0000B\u0000a\u0000H\u0000I\r\u0000H\u0000\u0001k\u0000\u0000\u0000I\u0000\\\u0000J\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000I\u0000N\u0000M\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000M\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000L\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000P\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000P\u0000\u0001o\u0000\u0000\u0000O\u0000P\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000Q\r\u0000Q\u0000\u0003I\u0000\u0002\u0000U\u0000\\\u0000R\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000X\n\u0000\u0004\nret \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\r\u0000@\u0000\u0001m\u0000\u0000\u0000.\u00001\u0000S\u000f\u0000S\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000:H+\u0000\u0000\u0000\u0006\u06d3\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u001a\u0000K\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001e\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0006\u06d3\u0000\u0006\u06d2\u0000\u0006\u06d1\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000T\u0000U\u0001\u0000\u0000\u0010\u0000T\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000U\u0000\u0007\u0010\u0000V\u0000W\u0000X\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000V\u0000\u0001k\u0000\u0000\u0000\u0000\u0000b\u0000Y\u0002\u0000Y\u0000\u0002\u0000\u0005\u0000Z\u0002\u0000Z\u0000\u0002\u0000\u0016\u0000[\u0002\u0000[\u0000\u0002\u0000\u001b\u0000\\\u0002\u0000\\\u0000\u0002\u0000,\u0000]\u0002\u0000]\u0000\u0002\u0000=\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000W\u0000\u0000\u0010\u0000X\u0000\u0016\u0000\u000f\u0000\u0013\u0000%\u0000)\u00006\u0000:\u0000S\n\u0000\u0004\ndtxt\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nttxt\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\n\u0000\u0004\nutxt\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0006\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\nret \u0011\u0000c\f\u0000\u0006,EO&O\f\u0000\u0006,EO\f\u0000\u0006,EOa\u0000\u0010\u0012\u0000\/*j\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0013O\u0017\u0000\u001ekh\u0018j\f\u0000\u0014Oj\f\u0000\u0013O_\u0000\u0015j\f\u0000\u0014[OYU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0000\b\u0000\t\r\u0000\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u000b\u0000\n\u0000\u000b\r\u0000\n\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\nttxt\r\u0000\u000b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\t\u0000\f\r\u0000\f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000\r\u0000\u000e\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u00000\u0000W\u0000h\u0000a\u0000t\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000I\u0000 \u0000s\u0000p\u0000a\u0000m\u0000,\u0000 \u0000b\u0000a\u0000b\u0000y\u0000?\u0006\u0000\u000e\u0000\u0003\u0000\u0011\u0000\u0012\n\u0000\u0004\ndtxt\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0013\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0000\u0006\u0000\u0012\u0000\u0003\u0000\u0015\n\u0000\u0004\ndisp\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0004\u0000\u0005\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0011\u0000\u0018\r\u0000\u0018\u0000\u0002c\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\u0004\nutxt\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0017\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u001f\u0000\u001d\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0012\u0000\u001f\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0012\u0000\u001d\u0000 \u0000!\r\u0000 \u0000\u00011\u0000\u0000\u0000\u001b\u0000\u001d\n\u0000\u0004\nttxt\r\u0000!\u0000\u0003l\u0000\u0005\u0000\u0012\u0000\u001b\u0000\"\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u001b\u0000#\u0000$\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000%\u000e\u0000%\u0000\u0001\u0000&\u0011\u0000&\u0000:\u0000H\u0000o\u0000w\u0000 \u0000m\u0000a\u0000n\u0000y\u0000 \u0000t\u0000i\u0000m\u0000e\u0000s\u0000 \u0000s\u0000h\u0000a\u0000l\u0000l\u0000 \u0000I\u0000 \u0000s\u0000p\u0000a\u0000m\u0000?\u0000?\u0006\u0000$\u0000\u0003\u0000'\u0000(\n\u0000\u0004\ndtxt\r\u0000'\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\u0000\u0006\u0000(\u0000\u0003\u0000+\n\u0000\u0004\ndisp\r\u0000+\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0003l\u0000\u0002\u0000 \u0000-\u0000.\r\u0000.\u0000\u0002r\u0000\u0000\u0000 \u0000-\u0000\/\u00000\r\u0000\/\u0000\u0002n\u0000\u0000\u0000 \u0000+\u00001\u00002\r\u00001\u0000\u00011\u0000\u0000\u0000)\u0000+\n\u0000\u0004\nttxt\r\u00002\u0000\u0003l\u0000\u0005\u0000 \u0000)\u00003\r\u00003\u0000\u0003I\u0000\u0002\u0000 \u0000)\u00004\u00005\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u00004\u0000\u0001m\u0000\u0000\u0000 \u0000!\u00006\u000e\u00006\u0000\u0001\u00007\u0011\u00007\u0000\u0000H\u0000o\u0000w\u0000 \u0000f\u0000a\u0000s\u0000t\u0000?\u0000 \u0000-\u0000i\u0000n\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000-\u0000 \u0000A\u0000f\u0000t\u0000e\u0000r\u0000 \u0000c\u0000l\u0000o\u0000s\u0000i\u0000n\u0000g\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000y\u0000o\u0000u\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000s\u0000i\u0000x\u0000 \u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0000 \u0000t\u0000o\u0000 \u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000p\u0000u\u0000t\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000m\u0000e\u0000 \u0000t\u0000o\u0000 \u0000s\u0000p\u0000a\u0000m\u0000.\u0006\u00005\u0000\u0003\u00008\u00009\n\u0000\u0004\ndtxt\r\u00008\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0000:\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000\u0000\u0006\u00009\u0000\u0003\u0000<\n\u0000\u0004\ndisp\r\u0000<\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u0000=\r\u0000=\u0000\u0003l\u0000\u0002\u0000.\u0000b\u0000>\r\u0000>\u0000\u0002O\u0000\u0000\u0000.\u0000b\u0000?\u0000@\r\u0000?\u0000\u0001k\u0000\u0000\u00004\u0000a\u0000A\u0002\u0000A\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0003I\u0000\u0002\u00004\u00009\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000C\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0002\u0000:\u0000A\u0000F\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000F\u0000\u0001m\u0000\u0000\u0000:\u0000=\u0003\u0000\u0006\u0002\u0000\u0000\u0002\u0000E\u0000\u0002\u0000G\r\u0000G\u0000\u0002U\u0000\u0000\u0000B\u0000a\u0000H\u0000I\r\u0000H\u0000\u0001k\u0000\u0000\u0000I\u0000\\\u0000J\u0002\u0000J\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0003I\u0000\u0002\u0000I\u0000N\u0000M\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000M\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u0002\u0000\u0000\u0002\u0000L\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003I\u0000\u0002\u0000O\u0000T\u0000P\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000P\u0000\u0001o\u0000\u0000\u0000O\u0000P\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000Q\r\u0000Q\u0000\u0003I\u0000\u0002\u0000U\u0000\\\u0000R\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000R\u0000\u0001o\u0000\u0000\u0000U\u0000X\n\u0000\u0004\nret \u0002\u0000\u0000\u0002\u0000\u0000\r\u0000I\u0000\u0001o\u0000\u0000\u0000E\u0000F\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u0002\u0000\u0000\r\u0000@\u0000\u0001m\u0000\u0000\u0000.\u00001\u0000S\u000f\u0000S\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000:H+\u0000\u0000\u0000\u0006\u06d3\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u001a\u0000K\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u001e\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u001b\u0000\u0000\u0000\u0001\u0000\f\u0000\u0006\u06d3\u0000\u0006\u06d2\u0000\u0006\u06d1\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000T\u0000U\u0000V\u0000W\u0000X\u0001\u0000\u0000\u0010\u0000T\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\u000e\u0000U\u0000\u0007\u0010\u0000Y\u0000Z\u0000[\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000Y\u0000\u0001k\u0000\u0000\u0000\u0000\u0000b\u0000\\\u0002\u0000\\\u0000\u0002\u0000\u0005\u0000]\u0002\u0000]\u0000\u0002\u0000\u0016\u0000^\u0002\u0000^\u0000\u0002\u0000\u001b\u0000_\u0002\u0000_\u0000\u0002\u0000,\u0000`\u0002\u0000`\u0000\u0002\u0000=\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000Z\u0000\u0000\u0010\u0000[\u0000\u0016\u0000\u000f\u0000\u0013\u0000%\u0000)\u00006\u0000:\u0000S\n\u0000\u0004\ndtxt\n\u0000\u0004\ndisp\n\u0000\b\u000bstic\u0000\u0000\u0000\u0000\u0003\u0000\u0004\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nttxt\u000b\u0000\u00050\u0000\u0001x\u0000\u0000\n\u0000\u0004\nutxt\u000b\u0000\u00050\u0000\u0001y\u0000\u0000\u000b\u0000\u00050\u0000\u0001z\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0006\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0004\nret \u0011\u0000c\f\u0000\u0006,EO&O\f\u0000\u0006,EO\f\u0000\u0006,EOa\u0000\u0010\u0012\u0000\/*j\f\u0000\u0011Oa\u0000\u0012j\f\u0000\u0013O\u0017\u0000\u001ekh\u0018j\f\u0000\u0014Oj\f\u0000\u0013O_\u0000\u0015j\f\u0000\u0014[OYU\u000f\u000e\u0000V\u0000\u0001\u0000a\u0011\u0000a\u0000\u0000\u000e\u0000W\u0000\u0001\u0000b\u0011\u0000b\u0000\u0000\u000e\u0000X\u0000\u0001\u0000c\u0011\u0000c\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"b17f59fc552616815d7fbb7700851f07b648451f","subject":"Debug","message":"Debug\n","repos":"sumipan\/photoshop-jsx.rb","old_file":"bin\/PhotoshopJsx.scpt","new_file":"bin\/PhotoshopJsx.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000'\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u000e\u0000'\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\u0012\u0000&\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003I\u0000\u0002\u0000\u0018\u0000 \u0000#\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000$\n\u0000\u0004\nalis\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000!\u0000!\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000%\u0000\u001f do javascript (file pathToJsx)\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000>\u0000 \u0000d\u0000o\u0000 \u0000j\u0000a\u0000v\u0000a\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000(\u0000f\u0000i\u0000l\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000T\u0000o\u0000J\u0000s\u0000x\u0000)\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0003I\u0000\u0002\u0000!\u0000&\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000+\u000f\u0000+\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000,\r\u0000,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000-\u0000.\u0001\u0000\u0000\u0010\u0000-\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000.\u0000\u0007\u0010\u0000\b\u0000\/\u00000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\/\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00000\u0000\b\u0000+\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u0000(k\/EOl\/EO\u0012\u0000\u0016*j\f\u0000\u0004O*\/j\f\u0000\u0006O*j\f\u0000\u0007U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u00000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0004\u0000\u000f\r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00024\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0012\n\u0000\u0004\ncobj\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0003\u0000\u0001\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0005\u0000\u0007\u0000\u000b\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0007\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0002\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0007\u0000\b\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0002\u0000\u0014\u0000\u0002\u0000\u001b\r\u0000\u001b\u0000\u0002O\u0000\u0000\u0000\u000e\u00000\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001k\u0000\u0000\u0000\u0012\u0000\/\u0000\u001e\u0002\u0000\u001e\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003I\u0000\u0002\u0000\u0018\u0000 \u0000#\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\r\u0000#\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000$\n\u0000\u0004\nalis\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u0002\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003I\u0000\u0002\u0000!\u0000)\u0000'\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000'\u0000\u0003l\u0000\u0005\u0000!\u0000%\u0000(\r\u0000(\u0000\u00024\u0000\u0000\u0000!\u0000%\u0000)\n\u0000\u0004\nfile\r\u0000)\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0003I\u0000\u0002\u0000*\u0000\/\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000+\u000f\u0000+\u00020\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00008BIM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0002t[I\u001bAdobe Photoshop CC 2015.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002t[J\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017Adobe Photoshop CC 2015\u0000\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A\u0000\u0000\u0000\u0001\u0000\b\u0002t[I\u0003#$\u0000\u0002\u0000OMacintosh HD:Applications:\u0000Adobe Photoshop CC 2015:\u0000Adobe Photoshop CC 2015.app\u0000\u0000\u000e\u00008\u0000\u001b\u0000A\u0000d\u0000o\u0000b\u0000e\u0000 \u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0000 \u0000C\u0000C\u0000 \u00002\u00000\u00001\u00005\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000@Applications\/Adobe Photoshop CC 2015\/Adobe Photoshop CC 2015.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000,\r\u0000,\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000-\u0000.\u0001\u0000\u0000\u0010\u0000-\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000.\u0000\u0007\u0010\u0000\b\u0000\/\u00000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\/\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00000\u0000\n\u0000+\n\u0000\u0004\ncobj\u000b\u0000\u00160\u0000\tpathtopsd\u0000\tpathToPsd\u000b\u0000\u00160\u0000\tpathtojsx\u0000\tpathToJsx\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nalis\n\u0000\u0018.PsCSodocnull\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\nfile\n\u0000\u0018.miscDjxMutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0018.PsCSquitnull\u0000\u0000null\u0011\u00001k\/EOl\/EO\u0012\u0000\u001f*j\f\u0000\u0004O*\/j\f\u0000\u0006O*\/j\f\u0000\bO*j\f\u0000\tU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"050e12fcf644b18a9fbfa75ed71e1cd0793a2ff5","subject":"Added iterm_bookmark to launch an iTerm session with a given bookmark's name.","message":"Added iterm_bookmark to launch an iTerm session with a given bookmark's name.\n","repos":"jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles","old_file":"bin\/osx\/iterm_bookmark.scpt","new_file":"bin\/osx\/iterm_bookmark.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u00004\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0004\u00003\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\r\u0000\u000f\u0000\u0002O\u0000\u0000\u0000\n\u00003\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0011\u00002\u0000\u0012\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u001b\u0000\u0015\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0015\u0000\u0003\u0000\u0016\n\u0000\u0004\nPssn\r\u0000\u0016\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0017\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0017\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\"\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u001c\u0000 \u0000\u001f\r\u0000\u001f\u0000\u00024\u0000\u0001\u0000\u001c\u0000 \u0000 \n\u0000\u0004\nPssn\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000!\r\u0000!\u0000\u0002O\u0000\u0000\u0000#\u00002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000'\u00001\u0000$\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000$\u0000\u0003\u0000%\n\u0000\u0004\niTxt\r\u0000%\u0000\u0003l\u0000\u0005\u0000)\u0000-\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000'\u0000(\r\u0000'\u0000\u00024\u0000\u0000\u0000*\u0000-\u0000)\n\u0000\u0004\ncobj\r\u0000)\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0002\r\u0000(\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0003l\u0001\u0000\u0000\n\u0000\u000e\u0000*\r\u0000*\u0000\u00024\u0000\u0001\u0000\n\u0000\u000e\u0000+\n\u0000\u0004\nPtrm\r\u0000+\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000,\u000f\u0000,\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0755\tshell.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001[\u001d<\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000%\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0755\u0000\u0002\u0000#Macintosh HD:Applications:shell.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/shell.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000-\r\u0000-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000.\u0000\/\u00000\u0001\u0000\u0000\u0010\u0000.\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u000e\u0000\/\u0000\u0007\u0010\u0000\b\u00001\u00002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00001\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00002\u0000\t\u0000,\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nPtrm\n\u0000\u0004\nPssn\n\u0000\u0004\ncobj\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u0000\r0\u0000\tmysession\u0000\u0000\n\u0000\u0004\niTxt\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u00005\u0012\u00001*j\f\u0000\u0001O*k\/\u0012\u0000#*k\/l\f\u0000\u0005O*i\/EO\u0012\u0000\f*l\/l\f\u0000\bUUU\u000f\u000e\u00000\u0000\u0001\u0014\u00003\u000e\u00003\u0000\u0003\u0018\u00004\u000e\u00004\u0000\u0003\u0018\u0000,\n\u0000\u0004\nPtrm\u0003\u0000\u0001\n\u0000\u0004\nPssn\u0003\u0000\u0003\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0000\u00004\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001k\u0000\u0000\u0000\u0004\u00003\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u000f\r\u0000\u000f\u0000\u0002O\u0000\u0000\u0000\n\u00003\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0011\u00002\u0000\u0012\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\u0011\u0000\u001b\u0000\u0015\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0015\u0000\u0003\u0000\u0016\n\u0000\u0004\nPssn\r\u0000\u0016\u0000\u0003l\u0000\u0005\u0000\u0013\u0000\u0017\u0000\u0017\r\u0000\u0017\u0000\u0002n\u0000\u0000\u0000\u0013\u0000\u0017\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\u0000\u0001\r\u0000\u0019\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u001c\u0000\"\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0001\u0000\u0000\u001c\u0000 \u0000\u001f\r\u0000\u001f\u0000\u00024\u0000\u0001\u0000\u001c\u0000 \u0000 \n\u0000\u0004\nPssn\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u001e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000!\r\u0000!\u0000\u0002O\u0000\u0000\u0000#\u00002\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000'\u00001\u0000$\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000$\u0000\u0003\u0000%\n\u0000\u0004\niTxt\r\u0000%\u0000\u0003l\u0000\u0005\u0000)\u0000-\u0000&\r\u0000&\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000'\u0000(\r\u0000'\u0000\u00024\u0000\u0000\u0000*\u0000-\u0000)\n\u0000\u0004\ncobj\r\u0000)\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0002\r\u0000(\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0003l\u0001\u0000\u0000\n\u0000\u000e\u0000*\r\u0000*\u0000\u00024\u0000\u0001\u0000\n\u0000\u000e\u0000+\n\u0000\u0004\nPtrm\r\u0000+\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000,\u000f\u0000,\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u012bH+\u0000\u0000\u0000\u0755\tshell.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001[\u001d<\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u012cb\\\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000%\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0755\u0000\u0002\u0000#Macintosh HD:Applications:shell.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000s\u0000h\u0000e\u0000l\u0000l\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/shell.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000-\r\u0000-\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000.\u0000\/\u00000\u0001\u0000\u0000\u0010\u0000.\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\r0\u0000\tmysession\u0000\u0000\u000e\u0000\/\u0000\u0007\u0010\u0000\b\u00001\u00002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u00001\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u00002\u0000\t\u0000,\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nPtrm\n\u0000\u0004\nPssn\n\u0000\u0004\ncobj\n\u0000\u0018.ITRMLNCHnull\u0000\u0000\u0000\u0010\u0000obj \u000b\u0000\r0\u0000\tmysession\u0000\u0000\n\u0000\u0004\niTxt\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u00005\u0012\u00001*j\f\u0000\u0001O*k\/\u0012\u0000#*k\/l\f\u0000\u0005O*i\/EO\u0012\u0000\f*l\/l\f\u0000\bUUU\u000f\u000e\u00000\u0000\u0001\u0014\u00003\u000e\u00003\u0000\u0003\u0018\u00004\u000e\u00004\u0000\u0003\u0018\u0000,\n\u0000\u0004\nPtrm\u0003\u0000\u0001\n\u0000\u0004\nPssn\u0003\u0000\u0002\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"04c3be2ae06592243f30c3f2804241662be6e0f3","subject":"Focus queue when queue is played manually","message":"Focus queue when queue is played manually\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/playqueue.applescript","new_file":"actions\/playqueue.applescript","new_contents":"-- plays workflow queue in iTunes --\n\non loadConfig()\n\n\tset config to load script alias ((path to library folder from user domain as text) & \"Caches:com.runningwithcrayons.Alfred-2:Workflow Data:com.calebevans.playsong:config.scpt\")\n\treturn config\n\nend loadConfig\n\nset config to loadConfig()\nplayQueue() of config\nfocusQueue() of config\n","old_contents":"-- plays workflow queue in iTunes --\n\non loadConfig()\n\n\tset config to load script alias ((path to library folder from user domain as text) & \"Caches:com.runningwithcrayons.Alfred-2:Workflow Data:com.calebevans.playsong:config.scpt\")\n\treturn config\n\nend loadConfig\n\nset config to loadConfig()\nplayQueue() of config\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"970247dc1e7d82b67cc1d7ccf47514f4c26e3b05","subject":"Add view file and category help menu items","message":"Add view file and category help menu items\n\nIn doing so I also refactored both the label views and controllers to\nencapsulate what varies in subclasses while inheriting the shared parts.\n\nRearranged the menu items and added more menu dividers to align more\nwith Mac user interface guidelines.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-28\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : my _chosen_root\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : my _chosen_category\n\t\tproperty _menu_items : my get_base_menu_items(_menu_rule) & my _all_categories\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-28\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"15ee10a5b510c012caa35824b7d1b8b8ac52675f","subject":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.","message":"Fixed one problem with the dmg script: The Growl package is now named Growl.pkg, not Growl.mpkg as the script was expecting. This is what was causing the icon positions to not get set.\n","repos":"Shalaco\/shalzers-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,Shalaco\/shalzers-growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.pkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e8895e87282bf164189d2133f2b9a3d9e3f47e06","subject":"updated todo for getObjectAndSubs","message":"updated todo for getObjectAndSubs\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/misc\/getObjectAndSubs.applescript","new_file":"library\/misc\/getObjectAndSubs.applescript","new_contents":"-- getObjectAndSubs({someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0})\n-- Daniel A. Shockley & Erik Shagdar, NYHTC\n-- Gets detailed UI Scripting info for the specified object, recursively for all sub-objects. \n\n\n(*\nHISTORY:\n\t1.0 - 2016-10-21 ( dshockley ): first created.\n\n\nTODO:\n\t2017-01-12 ( dshockley ): Try to figure out a way to preseve human-friendly class names (without the chevrons)\n\n\n\nREQUIRES:\n\tcoerceToString\n\tquoteString\n\trepeatString\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\t\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 0.5\n\t\t\t\n\t\t\t\n\t\t\t-- WARNING!!! If you pick a high (or no) maxSubLevel, it can take a LONG time for objects with many sub-objects.\n\t\t\tset objectString to my getObjectAndSubs({someObjectRef:window 1, maxSubLevel:4})\n\t\t\t\n\t\t\tset the clipboard to objectString\n\t\t\t\n\t\t\treturn objectString\n\t\t\t\n\t\tend tell\n\tend tell\n\t\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non getObjectAndSubs(prefs)\n\t-- version 1.0\n\t\n\tset defaultPrefs to {someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0}\n\t(* \n\t\tOther options: \n\t\t outputType:\"TEXT\", \"Record\"\n\t*)\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\tset someObjectRef to someObjectRef of prefs\n\tset outputType to outputType of prefs\n\tset maxSubLevel to maxSubLevel of prefs\n\tset subLevel to subLevel of prefs\n\t\n\t\n\tset indentString to my repeatString({someString:tab, repeatCount:subLevel})\n\tset subIndentString to my repeatString({someString:tab, repeatCount:subLevel + 1})\n\t\n\t\n\ttell application \"System Events\"\n\t\t\n\t\tset thisObjectInfo to properties of someObjectRef\n\t\t\n\t\ttry\n\t\t\tset thisObjClass to class of someObjectRef\n\t\tend try\n\t\ttry\n\t\t\tset thisObjectName to name of someObjectRef\n\t\tend try\n\t\t\n\t\tif maxSubLevel is null then\n\t\t\tset doSub to true\n\t\telse if subLevel is greater than or equal to maxSubLevel then\n\t\t\tset doSub to false\n\t\telse\n\t\t\tset doSub to true\n\t\tend if\n\t\t\n\t\t\n\t\t\n\t\tif not doSub then\n\t\t\tset thisSubObjectList to null\n\t\telse\n\t\t\t\n\t\t\ttry\n\t\t\t\tset subObjects to UI elements of someObjectRef\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(*\n\t\t\t\tif subLevel is 1 then\n\t\t\t\t\ttell me to activate\n\t\t\t\t\tdisplay dialog my coerceToString(someObjectRef)\n\t\t\t\t\tdisplay dialog \"subObjects : \" & my coerceToString(subObjects)\n\t\t\t\t\tdisplay dialog (length of indentString) as string\n\t\t\t\t\terror -128\n\t\t\t\tend if\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\tset thisSubObjectList to {}\n\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\tif (count of subObjects) is 0 then\n\t\t\t\t\t\tset thisSubObjectList to \"{}\"\n\t\t\t\t\telse\n\t\t\t\t\t\tset subList_START to \"{ \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset subList_BeforeEach to return & subIndentString\n\t\t\t\t\t\tset subList_BetweenAdjacent to \", \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset thisSubObjectList to subList_START\n\t\t\t\t\t\tset subObjectsListHasItems to false\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tif (count of subObjects) is greater than 0 then\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneSubObject in subObjects\n\t\t\t\t\t\tset subObjectInfo to my getObjectAndSubs({someObjectRef:oneSubObject, subLevel:subLevel + 1} & prefs)\n\t\t\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\t\t\tcopy subObjectInfo to end of thisSubObjectList\n\t\t\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\t\t\tif subObjectsListHasItems then\n\t\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BetweenAdjacent\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset subObjectsListHasItems to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BeforeEach & subObjectInfo\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t-- had sub-objects, so need to put on ending string:\n\t\t\t\t\tif outputType is \"TEXT\" then\n\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & \"\" & return & indentString & \"}\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -128 then error -128\n\t\t\t\t-- had no sub-objects, so list will be\/remain empty\t\t\t\t\n\t\t\t\tif outputType is \"TEXT\" then set thisSubObjectList to \"missing value\"\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\tif outputType is \"Record\" then\n\t\t\treturn {objClass:thisObjClass, objName:thisObjectName, objRef:someObjectRef, objInfo:thisObjectInfo, subObjList:thisSubObjectList}\n\t\telse if outputType is \"TEXT\" then\n\t\t\t\n\t\t\t(* CANNOT make uppercase until we figure out how to preserve classes without chevrons... 2016-10-21 ( dshockley )\n\t\t\t-- make the class uppercase for legibility:\n\t\t\tset thisObjClass to my coerceToString(thisObjClass)\n\t\t\tset thisObjClass to do shell script \"echo \" & quoted form of thisObjClass & \" | tr [:lower:] [:upper:]\"\n\t\t\t*)\n\t\t\t\n\t\t\tset resultString to \"\"\n\t\t\tset resultString to resultString & \n\t\t\t\t\"{objClass: \" & my coerceToString(thisObjClass) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objName: \" & my quoteString(thisObjectName) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objRef: \" & my coerceToString(someObjectRef) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objInfo: \" & my coerceToString(thisObjectInfo) & \", \"\n\t\t\t\n\t\t\tif thisSubObjectList is null then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse if (count of thisSubObjectList) is 0 then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\t\t(* \n\t\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & return & thisSubObjectList & \" \"\n\t\t\t\t*)\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset resultString to resultString & return & indentString & \"}\"\n\t\t\t\n\t\t\treturn resultString\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t\nend getObjectAndSubs\n\n--------------------\n-- END OF CODE\n--------------------\n\non coerceToString(incomingObject)\n\ttell helper to coerceToString(incomingObject)\nend coerceToString\n\non quoteString(someString)\n\ttell helper to quoteString(someString)\nend quoteString\n\n\non repeatString(prefs)\n\ttell helper to repeatString(prefs)\nend repeatString\n\n","old_contents":"-- getObjectAndSubs({someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0})\n-- Daniel A. Shockley & Erik Shagdar, NYHTC\n-- Gets detailed UI Scripting info for the specified object, recursively for all sub-objects. \n\n\n(*\nHISTORY:\n\t1.0 - 2016-10-21 ( dshockley ): first created.\n\n\nTODO:\n\t- improvements or things to fix\n\t- another improvements or things to fix\n\n\nREQUIRES:\n\tcoerceToString\n\tquoteString\n\trepeatString\n*)\n\n\nproperty helper : \"\"\n\non run\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of ((path to me) as string)\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to do shell script \"dirname \" & quoted form of POSIX path of pathHelper\n\tset pathHelper to POSIX file (pathHelper & \"\/main.scpt\") as string\n\tset helper to load script file pathHelper\n\t\n\t\n\ttell application \"System Events\"\n\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\tset frontmost to true\n\t\t\tdelay 0.5\n\t\t\t\n\t\t\t\n\t\t\t-- WARNING!!! If you pick a high (or no) maxSubLevel, it can take a LONG time for objects with many sub-objects.\n\t\t\tset objectString to my getObjectAndSubs({someObjectRef:window 1, maxSubLevel:4})\n\t\t\t\n\t\t\tset the clipboard to objectString\n\t\t\t\n\t\t\treturn objectString\n\t\t\t\n\t\tend tell\n\tend tell\n\t\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non getObjectAndSubs(prefs)\n\t-- version 1.0\n\t\n\tset defaultPrefs to {someObjectRef:null, outputType:\"TEXT\", maxSubLevel:null, subLevel:0}\n\t(* \n\t\tOther options: \n\t\t outputType:\"TEXT\", \"Record\"\n\t*)\n\t\n\t\n\tset prefs to prefs & defaultPrefs\n\t\n\tset someObjectRef to someObjectRef of prefs\n\tset outputType to outputType of prefs\n\tset maxSubLevel to maxSubLevel of prefs\n\tset subLevel to subLevel of prefs\n\t\n\t\n\tset indentString to my repeatString({someString:tab, repeatCount:subLevel})\n\tset subIndentString to my repeatString({someString:tab, repeatCount:subLevel + 1})\n\t\n\t\n\ttell application \"System Events\"\n\t\t\n\t\tset thisObjectInfo to properties of someObjectRef\n\t\t\n\t\ttry\n\t\t\tset thisObjClass to class of someObjectRef\n\t\tend try\n\t\ttry\n\t\t\tset thisObjectName to name of someObjectRef\n\t\tend try\n\t\t\n\t\tif maxSubLevel is null then\n\t\t\tset doSub to true\n\t\telse if subLevel is greater than or equal to maxSubLevel then\n\t\t\tset doSub to false\n\t\telse\n\t\t\tset doSub to true\n\t\tend if\n\t\t\n\t\t\n\t\t\n\t\tif not doSub then\n\t\t\tset thisSubObjectList to null\n\t\telse\n\t\t\t\n\t\t\ttry\n\t\t\t\tset subObjects to UI elements of someObjectRef\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(*\n\t\t\t\tif subLevel is 1 then\n\t\t\t\t\ttell me to activate\n\t\t\t\t\tdisplay dialog my coerceToString(someObjectRef)\n\t\t\t\t\tdisplay dialog \"subObjects : \" & my coerceToString(subObjects)\n\t\t\t\t\tdisplay dialog (length of indentString) as string\n\t\t\t\t\terror -128\n\t\t\t\tend if\n*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\tset thisSubObjectList to {}\n\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\tif (count of subObjects) is 0 then\n\t\t\t\t\t\tset thisSubObjectList to \"{}\"\n\t\t\t\t\telse\n\t\t\t\t\t\tset subList_START to \"{ \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset subList_BeforeEach to return & subIndentString\n\t\t\t\t\t\tset subList_BetweenAdjacent to \", \" & return & subIndentString & \"\"\n\t\t\t\t\t\tset thisSubObjectList to subList_START\n\t\t\t\t\t\tset subObjectsListHasItems to false\n\t\t\t\t\t\t\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tif (count of subObjects) is greater than 0 then\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneSubObject in subObjects\n\t\t\t\t\t\tset subObjectInfo to my getObjectAndSubs({someObjectRef:oneSubObject, subLevel:subLevel + 1} & prefs)\n\t\t\t\t\t\tif outputType is \"Record\" then\n\t\t\t\t\t\t\tcopy subObjectInfo to end of thisSubObjectList\n\t\t\t\t\t\telse if outputType is \"TEXT\" then\n\t\t\t\t\t\t\tif subObjectsListHasItems then\n\t\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BetweenAdjacent\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tset subObjectsListHasItems to true\n\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & subList_BeforeEach & subObjectInfo\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t\n\t\t\t\t\t-- had sub-objects, so need to put on ending string:\n\t\t\t\t\tif outputType is \"TEXT\" then\n\t\t\t\t\t\tset thisSubObjectList to thisSubObjectList & \"\" & return & indentString & \"}\"\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif errNum is -128 then error -128\n\t\t\t\t-- had no sub-objects, so list will be\/remain empty\t\t\t\t\n\t\t\t\tif outputType is \"TEXT\" then set thisSubObjectList to \"missing value\"\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t\n\t\tend if\n\t\t\n\t\t\n\t\tif outputType is \"Record\" then\n\t\t\treturn {objClass:thisObjClass, objName:thisObjectName, objRef:someObjectRef, objInfo:thisObjectInfo, subObjList:thisSubObjectList}\n\t\telse if outputType is \"TEXT\" then\n\t\t\t\n\t\t\t(* CANNOT make uppercase until we figure out how to preserve classes without chevrons... 2016-10-21 ( dshockley )\n\t\t\t-- make the class uppercase for legibility:\n\t\t\tset thisObjClass to my coerceToString(thisObjClass)\n\t\t\tset thisObjClass to do shell script \"echo \" & quoted form of thisObjClass & \" | tr [:lower:] [:upper:]\"\n\t\t\t*)\n\t\t\t\n\t\t\tset resultString to \"\"\n\t\t\tset resultString to resultString & \n\t\t\t\t\"{objClass: \" & my coerceToString(thisObjClass) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objName: \" & my quoteString(thisObjectName) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objRef: \" & my coerceToString(someObjectRef) & \", \"\n\t\t\t\n\t\t\tset resultString to resultString & return & \n\t\t\t\tindentString & \"objInfo: \" & my coerceToString(thisObjectInfo) & \", \"\n\t\t\t\n\t\t\tif thisSubObjectList is null then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse if (count of thisSubObjectList) is 0 then\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\telse\n\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & thisSubObjectList & \" \"\n\t\t\t\t(* \n\t\t\t\t\tset resultString to resultString & return & \n\t\t\t\t\tindentString & \"subObjList: \" & return & thisSubObjectList & \" \"\n\t\t\t\t*)\n\t\t\tend if\n\t\t\t\n\t\t\tset resultString to resultString & return & indentString & \"}\"\n\t\t\t\n\t\t\treturn resultString\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t\nend getObjectAndSubs\n\n--------------------\n-- END OF CODE\n--------------------\n\non coerceToString(incomingObject)\n\ttell helper to coerceToString(incomingObject)\nend coerceToString\n\non quoteString(someString)\n\ttell helper to quoteString(someString)\nend quoteString\n\n\non repeatString(prefs)\n\ttell helper to repeatString(prefs)\nend repeatString\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"a7c69ea910da60904e8006c516ae45c8e161b9a2","subject":"remove is_running script file","message":"remove is_running script file\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/is_running.applescript","new_file":"lib\/scripts\/is_running.applescript","new_contents":"","old_contents":"tell application \"System Events\"\n set ProcessList to name of every process\n return \"Spotify\" is in ProcessList\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7fdceaf28a97c346582981bb768887852f3959bd","subject":"Activate iterm when running specs","message":"Activate iterm when running specs\n","repos":"alisnic\/tube.vim","old_file":"autoload\/tube\/applescript\/iterm.applescript","new_file":"autoload\/tube\/applescript\/iterm.applescript","new_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application \"iTerm2\"\n activate\n\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","old_contents":"on run argv\n set command to (item 1 of argv)\n\n tell application \"iTerm2\"\n set _window to (current window)\n\n if _window is equal to missing value then\n create window with default profile\n end if\n\n tell current window\n tell current session\n write text command\n end tell\n end tell\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"40e13df808f4382cd10b1140813d40bb74ee71f4","subject":"Scripts update","message":"Scripts update\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000P\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000P\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000H\u0000L\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Q\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Q\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000v\u0000|\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000yx\u0003x\u0000\u000f\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000zv\u0003v\u0000(\u0002w\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001J\u0000\u0000\u0000|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000t\u0003t\u0002\u0002\u0000\u0000\u0002\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000r\u0003r\u0003\u0002s\u0000\u0000\u0002u\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000qp\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000o\u0000n\u000bo\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002l\u0000\u0000\u0002n\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000]\u0003]\u0006\"\u0002\u0000\u0000\u0002\u0000\\\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000[\u0003[\u0003\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0002ZY\r\u0001\u0002\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0003W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0005\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0001\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0000\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0000.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0001\u0005\u0001O)(\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0001\u0005'\u0001P&\u000b'\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0000\u0000\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W$\r\u0001W\u0000\u0001J\u0000\u0000\u0000\u0001\u0001\u0001X\u0002\u0001X\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0001m\u0000\u0000\u0000\u0000#\u0003#\u0006\"\u0002\u0001Z\u0000\u0002\u0001[\"\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000!\u0003!\u0003\u0002\"\u0000\u0000\u0002$\u0000\u0000\u0002&\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001N\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0002\u0001\u0006\u0001\u001e\u0001^ \u001f\r\u0001^\u0000\u0003I\u0000\u0000\u0001\u0006\u0001\u001e\u001e\u0001_\u001d\u000b\u001e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0007\u0001\n\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001a\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0001J\u0000\u0000\u0001\n\u0001\u0012\u0001f\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u001c\u0003\u001c\u0000\u000f\u0002\u0001h\u0000\u0002\u0001i\u001b\r\u0001i\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u001a\u0003\u001a\u0003]\u0002\u001b\u0000\u0000\u0002\u0001e\u0000\u0002\u0001j\u0019\r\u0001j\u0000\u0001J\u0000\u0000\u0001\u0012\u0001\u001a\u0001k\u0002\u0001k\u0000\u0002\u0001l\u0001m\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0015\u0018\u0003\u0018\u0003R\u0002\u0001m\u0000\u0002\u0001n\u0017\r\u0001n\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0018\u0016\u0003\u0016\u00024\u0002\u0017\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u001d\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001]\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0003l\u0000\u0002\u0001\u001f\u0001,\u0001q\u0015\u0014\r\u0001q\u0000\u0003I\u0000\u0000\u0001\u001f\u0001,\u0013\u0001r\u0012\u000b\u0013\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001r\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0001 \u0001#\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001t\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0001o\u0000\u0000\u0001#\u0001$\u0011\u000b\u0011\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0010\r\u0001y\u0000\u0001J\u0000\u0000\u0001$\u0001(\u0001z\u0002\u0001z\u0000\u0002\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001$\u0001%\u000f\u0003\u000f\u0006\"\u0002\u0001|\u0000\u0002\u0001}\u000e\r\u0001}\u0000\u0001m\u0000\u0000\u0001%\u0001&\r\u0003\r\u0003\u0002\u000e\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0001p\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0003l\u0000\u0002\u0001-\u0001A\u0001\f\u000b\r\u0001\u0000\u0003I\u0000\u0000\u0001-\u0001A\n\u0001\t\u000b\n\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001.\u00011\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u00011\u00017\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00011\u00014\b\u0003\b\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00014\u00015\u0006\u0003\u0006\u0000(\u0002\u0007\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0005\r\u0001\u0000\u0001J\u0000\u0000\u00017\u0001=\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00017\u0001:\u0004\u0003\u0004\u0002\u0002\u0001\u0000\u0002\u0001\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001:\u0001;\u0002\u0003\u0002\u0003\u0002\u0003\u0000\u0000\u0002\u0005\u0000\u0000\u0002\t\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001B\u0001O\u0001\u0000\r\u0001\u0000\u0003I\u0000\u0000\u0001B\u0001O\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001K\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001H\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001I\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001O\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\\\u0001\u0002\u0001\u0000\u0002\u0001o\u0001\u0002\u0001\u0000\u0002\u0001~\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000)\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001S\u0001b\u0001u\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001PlvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017m+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019lvm+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!lvm+\u0000\u000bO*a\u0000\"a\u0000\u0015a\u0000#lva\u0000$a\u0000%lvm+\u0000\u000bO*a\u0000&lvm+\u0000\u000bO*a\u0000'a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000(lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0016\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0000 \u00007\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000B\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000B\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000:\u0000>\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000;\u0000<\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000C\u0000P\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000C\u0000P\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000H\u0000L\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000I\u0000J\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000Q\u0000[\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000Q\u0000[\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000V\u0000W\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\\\u0000f\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\\\u0000f\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000]\u0000`\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000`\u0000a\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000a\u0000b\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000g\u0000q\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000g\u0000q\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000k\u0000l\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000l\u0000m}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000r\u0000\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000r\u0000z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000v\u0000|\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000v\u0000yx\u0003x\u0000\u000f\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000zv\u0003v\u0000(\u0002w\u0000\u0000\u0002\u0000\u0000\u0002\u0000u\r\u0000\u0000\u0001J\u0000\u0000\u0000|\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000|\u0000t\u0003t\u0002\u0002\u0000\u0000\u0002\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000r\u0003r\u0003\u0002s\u0000\u0000\u0002u\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000qp\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000o\u0000n\u000bo\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000m\u000bm\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002l\u0000\u0000\u0002n\u0000\u0000\u0001q\u0000\u0000\u0001p\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000]\u0003]\u0006\"\u0002\u0000\u0000\u0002\u0000\\\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000[\u0003[\u0003\u0002\\\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0002ZY\r\u0001\u0002\u0000\u0003I\u0000\u0000\u0000\u0000X\u0001\u0003W\u000bX\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0005\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001o\u0000\u0000\u0000\u0000V\u000bV\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001o\u0000\u0000\u0000\u0000T\u000bT\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002U\u0000\u0000\u0002W\u0000\u0000\u0001Z\u0000\u0000\u0001Y\u0000\u0000\u0002\u0001\u0001\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0000\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0000.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0001\u0005\u0001O)(\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0001\u0005'\u0001P&\u000b'\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0000\u0000\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0000\u0000%\u000b%\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W$\r\u0001W\u0000\u0001J\u0000\u0000\u0000\u0001\u0001\u0001X\u0002\u0001X\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0001m\u0000\u0000\u0000\u0000#\u0003#\u0006\"\u0002\u0001Z\u0000\u0002\u0001[\"\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000!\u0003!\u0003\u0002\"\u0000\u0000\u0002$\u0000\u0000\u0002&\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001N\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0002\u0001\u0006\u0001\u001e\u0001^ \u001f\r\u0001^\u0000\u0003I\u0000\u0000\u0001\u0006\u0001\u001e\u001e\u0001_\u001d\u000b\u001e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u0007\u0001\n\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001a\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0001J\u0000\u0000\u0001\n\u0001\u0012\u0001f\u0002\u0001f\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u001c\u0003\u001c\u0000\u000f\u0002\u0001h\u0000\u0002\u0001i\u001b\r\u0001i\u0000\u0001m\u0000\u0000\u0001\r\u0001\u0010\u001a\u0003\u001a\u0003]\u0002\u001b\u0000\u0000\u0002\u0001e\u0000\u0002\u0001j\u0019\r\u0001j\u0000\u0001J\u0000\u0000\u0001\u0012\u0001\u001a\u0001k\u0002\u0001k\u0000\u0002\u0001l\u0001m\r\u0001l\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0015\u0018\u0003\u0018\u0003R\u0002\u0001m\u0000\u0002\u0001n\u0017\r\u0001n\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0018\u0016\u0003\u0016\u00024\u0002\u0017\u0000\u0000\u0002\u0019\u0000\u0000\u0002\u001d\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001]\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0003l\u0000\u0002\u0001\u001f\u0001,\u0001q\u0015\u0014\r\u0001q\u0000\u0003I\u0000\u0000\u0001\u001f\u0001,\u0013\u0001r\u0012\u000b\u0013\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001r\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0001 \u0001#\u0001u\u000e\u0001u\u0000\u0001\u0001v\u0011\u0001v\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001t\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0001o\u0000\u0000\u0001#\u0001$\u0011\u000b\u0011\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001x\u0000\u0002\u0001y\u0010\r\u0001y\u0000\u0001J\u0000\u0000\u0001$\u0001(\u0001z\u0002\u0001z\u0000\u0002\u0001{\u0001|\r\u0001{\u0000\u0001m\u0000\u0000\u0001$\u0001%\u000f\u0003\u000f\u0006\"\u0002\u0001|\u0000\u0002\u0001}\u000e\r\u0001}\u0000\u0001m\u0000\u0000\u0001%\u0001&\r\u0003\r\u0003\u0002\u000e\u0000\u0000\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\u0001\u0015\u0000\u0000\u0001\u0014\u0000\u0000\u0002\u0001p\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0003l\u0000\u0002\u0001-\u0001A\u0001\f\u000b\r\u0001\u0000\u0003I\u0000\u0000\u0001-\u0001A\n\u0001\t\u000b\n\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001.\u00011\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u00011\u00017\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00011\u00014\b\u0003\b\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00014\u00015\u0006\u0003\u0006\u0000(\u0002\u0007\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0005\r\u0001\u0000\u0001J\u0000\u0000\u00017\u0001=\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00017\u0001:\u0004\u0003\u0004\u0002\u0002\u0001\u0000\u0002\u0001\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001:\u0001;\u0002\u0003\u0002\u0003\u0002\u0003\u0000\u0000\u0002\u0005\u0000\u0000\u0002\t\u0000\u0000\u0001\f\u0000\u0000\u0001\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001B\u0001O\u0001\u0000\r\u0001\u0000\u0003I\u0000\u0000\u0001B\u0001O\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001F\u0001G\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001K\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001H\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001I\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001O\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\\\u0001\u0002\u0001\u0000\u0002\u0001o\u0001\u0002\u0001\u0000\u0002\u0001~\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000)\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0006\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001S\u0001b\u0001u\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001PlvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*lvm+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011m+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000\u0017m+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019lvm+\u0000\u000bO*a\u0000\u001am+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!lvm+\u0000\u000bO*a\u0000\"a\u0000\u0015a\u0000#lva\u0000$a\u0000%lvm+\u0000\u000bO*a\u0000&lvm+\u0000\u000bO*a\u0000'a\u0000\u0015lva\u0000\u0016lvm+\u0000\u000bO*a\u0000(lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"90849d69bf32eb6cfe7b309270beef51d10054a1","subject":"Change startup script to disgard its own changes on startup","message":"Change startup script to disgard its own changes on startup\n","repos":"trakio\/trak.io.js,trakio\/trak.io.js,trakio\/trak.io.js","old_file":"start-iterm-env.scpt","new_file":"start-iterm-env.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\b\u0000\t\r\u0000\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000\n\u0000\u000b\r\u0000\n\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\npsxp\r\u0000\u000b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000\f\r\u0000\f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\r\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\r\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003l\u0000\u0002\u0000\n\u0000\u0013\u0000\u0010\r\u0000\u0010\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0005\u0000\n\u0000\u0011\u0000\u0013\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0010\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0017\u0000\u001b\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0014\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000.\u0000j\u0000s\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\r\u0000\"\u0000\u0003l\u0000\u0002\u0000\u0018\u0000\u0000#\r\u0000#\u0000\u0002O\u0000\u0000\u0000\u0018\u0000\u0000$\u0000%\r\u0000$\u0000\u0001k\u0000\u0000\u0000\u001c\u0000\u0000&\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0002\u0000\u001c\u0000!\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0002\u0000\"\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0001\u0000\"\u0000\"\u0000-\u0000.\u0001\u0000\u0000\f\u0000-\u0000\u001a\u0000\u0014 make a new terminal\u0000\u0002\u0000\u0000\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000(\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000,\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000\"\u0000+\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0005\u0000\"\u0000)\u00004\r\u00004\u0000\u0003I\u0000\u0002\u0000\"\u0000)\u00005\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u00005\u0000\u0003\u00006\n\u0000\u0004\nkocl\r\u00006\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nPtrm\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\u0002\u00001\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0001\u0000,\u0000,\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000\u001f\u0000\u0019 talk to the new terminal\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u00002\u0000 \u0000t\u0000a\u0000l\u0000k\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000e\u0000w\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002O\u0000\u0000\u0000,\u0000\u0000@\u0000A\r\u0000@\u0000\u0001k\u0000\u0000\u00000\u0000\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000D\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003I\u0000\u0002\u00000\u00007\u0000G\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000G\u0000\u0003\u0000H\n\u0000\u0004\nPssn\r\u0000H\u0000\u0001m\u0000\u0000\u00002\u00003\u0000I\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000F\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u00008\u0000f\u0000M\u0000N\r\u0000M\u0000\u0001k\u0000\u0000\u0000@\u0000e\u0000O\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u0000@\u0000K\u0000R\u0000S\r\u0000R\u0000\u0002b\u0000\u0000\u0000@\u0000E\u0000T\u0000U\r\u0000T\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\u000e\u0000S\u0000e\u0000r\u0000v\u0000e\u0000r\u0000 \r\u0000U\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000S\u0000\u00011\u0000\u0000\u0000E\u0000J\n\u0000\u0004\npnam\u0002\u0000Q\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003I\u0000\u0002\u0000L\u0000Y\u0000Z\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000[\n\u0000\u0004\niTxt\r\u0000[\u0000\u0002b\u0000\u0000\u0000P\u0000U\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000P\u0000S\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0006\u0000c\u0000d\u0000 \r\u0000]\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000Z\u0000e\u0000a\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000a\u0000\u0003\u0000b\n\u0000\u0004\niTxt\r\u0000b\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000\u0016\u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000N\u0000\u00011\u0000\u0000\u00008\u0000=\n\u0000\u0004\nCssn\u0002\u0000L\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003I\u0000\u0002\u0000g\u0000p\u0000i\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000i\u0000\u0003\u0000j\n\u0000\u0004\nPssn\r\u0000j\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000h\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002O\u0000\u0000\u0000q\u0000\u0000o\u0000p\r\u0000o\u0000\u0001k\u0000\u0000\u0000y\u0000\u0000q\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000y\u0000\u0000t\u0000u\r\u0000t\u0000\u0002b\u0000\u0000\u0000y\u0000~\u0000v\u0000w\r\u0000v\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0000x\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000\f\u0000G\u0000u\u0000a\u0000r\u0000d\u0000 \r\u0000w\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000u\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\npnam\u0002\u0000s\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000|\u0000\u0003\u0000}\n\u0000\u0004\niTxt\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000{\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niTxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000g\u0000u\u0000a\u0000r\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000p\u0000\u00011\u0000\u0000\u0000q\u0000v\n\u0000\u0004\nCssn\u0002\u0000n\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nPssn\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niTxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niTxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000g\u0000i\u0000t\u0000 \u0000c\u0000h\u0000e\u0000c\u0000k\u0000o\u0000u\u0000t\u0000 \u0000s\u0000t\u0000a\u0000r\u0000t\u0000-\u0000i\u0000t\u0000e\u0000r\u0000m\u0000-\u0000e\u0000n\u0000v\u0000.\u0000s\u0000c\u0000p\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nCssn\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\u0002\u0000?\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u00073\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n=F\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000F\u0000\u0000\u0000\u0001\u0000\u0004\u00073\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\"\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001f\u0000\u0017\u0000\u001e\u0000~}|{\u0000Izy\u0000Vxw\u0000^v\u0000c\u0000k\u0000x\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nkocl\n~\u0000\u0004\nPtrm\n}\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u000b|\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\n{\u0000\u0004\nPssn\nz\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \ny\u0000\u0004\nCssn\nx\u0000\u0004\npnam\nw\u0000\u0004\niTxt\nv\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000)j\f\u0000\u0000,EO%j\f\u0000\u0004EOEO\u0012\u0000*j\f\u0000\tO*l\f\u0000\fEO\u0012\u0000*l\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000'a\u0000\u0012%*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u0015%l\f\u0000\u0016O*a\u0000\u0014a\u0000\u0017l\f\u0000\u0016UO*a\u0000\u0018l\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000'a\u0000\u0019%*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u001a%l\f\u0000\u0016O*a\u0000\u0014a\u0000\u001bl\f\u0000\u0016UO*a\u0000\u001cl\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000#*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u001d%l\f\u0000\u0016O*a\u0000\u0014a\u0000\u001el\f\u0000\u0016UOPUOPU\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\t\u0000\b\u0000\t\r\u0000\b\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0007\u0000\n\u0000\u000b\r\u0000\n\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\npsxp\r\u0000\u000b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000\f\r\u0000\f\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\r\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\r\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0003l\u0000\u0002\u0000\n\u0000\u0013\u0000\u0010\r\u0000\u0010\u0000\u0002r\u0000\u0000\u0000\n\u0000\u0013\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0005\u0000\n\u0000\u0011\u0000\u0013\r\u0000\u0013\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0011\u0000\u0014\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0014\u0000\u0002b\u0000\u0000\u0000\n\u0000\r\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000\u0017\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0010\u0000d\u0000i\u0000r\u0000n\u0000a\u0000m\u0000e\u0000 \r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u000b\u0000\f\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0012\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000f\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0002\u0000\u0014\u0000\u0017\u0000\u001b\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u0017\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0014\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000.\u0000j\u0000s\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\"\r\u0000\"\u0000\u0003l\u0000\u0002\u0000\u0018\u0000\u0000#\r\u0000#\u0000\u0002O\u0000\u0000\u0000\u0018\u0000\u0000$\u0000%\r\u0000$\u0000\u0001k\u0000\u0000\u0000\u001c\u0000\u0000&\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0003I\u0000\u0002\u0000\u001c\u0000!\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0003l\u0000\u0002\u0000\"\u0000\"\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0001\u0000\"\u0000\"\u0000-\u0000.\u0001\u0000\u0000\f\u0000-\u0000\u001a\u0000\u0014 make a new terminal\u0000\u0002\u0000\u0000\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000(\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000a\u0000 \u0000n\u0000e\u0000w\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000,\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000\"\u0000+\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0005\u0000\"\u0000)\u00004\r\u00004\u0000\u0003I\u0000\u0002\u0000\"\u0000)\u00005\n\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u0001\u0000\u0000\u0006\u00005\u0000\u0003\u00006\n\u0000\u0004\nkocl\r\u00006\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nPtrm\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\u0002\u00001\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0002\u0000,\u0000,\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00008\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0001\u0000,\u0000,\u0000;\u0000<\u0001\u0000\u0000\f\u0000;\u0000\u001f\u0000\u0019 talk to the new terminal\u0000\u0002\u0000\u0000\u000e\u0000<\u0000\u0001\u0000=\u0011\u0000=\u00002\u0000 \u0000t\u0000a\u0000l\u0000k\u0000 \u0000t\u0000o\u0000 \u0000t\u0000h\u0000e\u0000 \u0000n\u0000e\u0000w\u0000 \u0000t\u0000e\u0000r\u0000m\u0000i\u0000n\u0000a\u0000l\u0002\u0000:\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0002O\u0000\u0000\u0000,\u0000\u0000@\u0000A\r\u0000@\u0000\u0001k\u0000\u0000\u00000\u0000\u0000B\u0002\u0000B\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003l\u0000\u0002\u00000\u00000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000D\u0000\u0002\u0000E\u0000F\r\u0000E\u0000\u0003I\u0000\u0002\u00000\u00007\u0000G\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000G\u0000\u0003\u0000H\n\u0000\u0004\nPssn\r\u0000H\u0000\u0001m\u0000\u0000\u00002\u00003\u0000I\u000e\u0000I\u0000\u0001\u0000J\u0011\u0000J\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000F\u0000\u0002\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u00008\u0000f\u0000M\u0000N\r\u0000M\u0000\u0001k\u0000\u0000\u0000@\u0000e\u0000O\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0002r\u0000\u0000\u0000@\u0000K\u0000R\u0000S\r\u0000R\u0000\u0002b\u0000\u0000\u0000@\u0000E\u0000T\u0000U\r\u0000T\u0000\u0001m\u0000\u0000\u0000@\u0000C\u0000V\u000e\u0000V\u0000\u0001\u0000W\u0011\u0000W\u0000\u000e\u0000S\u0000e\u0000r\u0000v\u0000e\u0000r\u0000 \r\u0000U\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000S\u0000\u00011\u0000\u0000\u0000E\u0000J\n\u0000\u0004\npnam\u0002\u0000Q\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0003I\u0000\u0002\u0000L\u0000Y\u0000Z\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000Z\u0000\u0003\u0000[\n\u0000\u0004\niTxt\r\u0000[\u0000\u0002b\u0000\u0000\u0000P\u0000U\u0000\\\u0000]\r\u0000\\\u0000\u0001m\u0000\u0000\u0000P\u0000S\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0006\u0000c\u0000d\u0000 \r\u0000]\u0000\u0001o\u0000\u0000\u0000S\u0000T\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000Z\u0000e\u0000a\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000a\u0000\u0003\u0000b\n\u0000\u0004\niTxt\r\u0000b\u0000\u0001m\u0000\u0000\u0000^\u0000a\u0000c\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000\u0016\u0000m\u0000a\u0000k\u0000e\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000N\u0000\u00011\u0000\u0000\u00008\u0000=\n\u0000\u0004\nCssn\u0002\u0000L\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003l\u0000\u0002\u0000g\u0000g\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000f\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003I\u0000\u0002\u0000g\u0000p\u0000i\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000i\u0000\u0003\u0000j\n\u0000\u0004\nPssn\r\u0000j\u0000\u0001m\u0000\u0000\u0000i\u0000l\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000h\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0002O\u0000\u0000\u0000q\u0000\u0000o\u0000p\r\u0000o\u0000\u0001k\u0000\u0000\u0000y\u0000\u0000q\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0002r\u0000\u0000\u0000y\u0000\u0000t\u0000u\r\u0000t\u0000\u0002b\u0000\u0000\u0000y\u0000~\u0000v\u0000w\r\u0000v\u0000\u0001m\u0000\u0000\u0000y\u0000|\u0000x\u000e\u0000x\u0000\u0001\u0000y\u0011\u0000y\u0000\f\u0000G\u0000u\u0000a\u0000r\u0000d\u0000 \r\u0000w\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000u\u0000\u00011\u0000\u0000\u0000~\u0000\n\u0000\u0004\npnam\u0002\u0000s\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0003I\u0000\u0002\u0000\u0000\u0000|\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000|\u0000\u0003\u0000}\n\u0000\u0004\niTxt\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000{\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niTxt\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000g\u0000u\u0000a\u0000r\u0000d\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000p\u0000\u00011\u0000\u0000\u0000q\u0000v\n\u0000\u0004\nCssn\u0002\u0000n\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nPssn\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000S\u0000m\u0000a\u0000l\u0000l\u0000 \u0000T\u0000e\u0000x\u0000t\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\npnam\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\niTxt\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nCssn\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000,\u0000-\u000b\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\u0002\u0000?\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000%\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ITRM\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018H+\u0000\u0000\u0000\u0000\u0000M\tiTerm.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003>\u000beB\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000W2\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000M\u0000\u0002\u0000$Macintosh HD:Applications:\u0000iTerm.app\u0000\u000e\u0000\u0014\u0000\t\u0000i\u0000T\u0000e\u0000r\u0000m\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0016Applications\/iTerm.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0000\u0000\u0000\u0000\u0000\u001e\u0000\u0001\u0000\u0000\u0010\u0000\u0000\b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\u000b\u0000\u00100\u0000\fproject_path\u0000\u0000\u000b\u0000\u00100\u0000\fproject_name\u0000\u0000\u000b\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0000\u0002\u0000\u0019\u0000\u0002\u0000\u0000\u0002\u0000\"\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u001e~\u0000\u0017}|\u0000\u001e{\u0000zyxwvu\u0000Its\u0000Vrq\u0000^p\u0000c\u0000k\u0000x\u0000\u0000\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\u000b~\u0000\u000f0\u0000\u000bscript_path\u0000\u0000\n}\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b|\u0000\u00100\u0000\fproject_path\u0000\u0000\u000b{\u0000\u00100\u0000\fproject_name\u0000\u0000\nz\u0000\u0018.miscactvnull\u0000\u0000null\ny\u0000\u0004\nkocl\nx\u0000\u0004\nPtrm\nw\u0000\u0018.corecrel****\u0000\u0000\u0000\u0000\u0000\u0000\u0000null\u000bv\u0000\u00110\u0000\rtrak_terminal\u0000\u0000\nu\u0000\u0004\nPssn\nt\u0000\u0018.ITRMLNCHPssn\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \ns\u0000\u0004\nCssn\nr\u0000\u0004\npnam\nq\u0000\u0004\niTxt\np\u0000\u0018.ITRMWrtenull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000)j\f\u0000\u0000,EO%j\f\u0000\u0004EOEO\u0012\u0000*j\f\u0000\tO*l\f\u0000\fEO\u0012\u0000*l\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000'a\u0000\u0012%*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u0015%l\f\u0000\u0016O*a\u0000\u0014a\u0000\u0017l\f\u0000\u0016UO*a\u0000\u0018l\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000'a\u0000\u0019%*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u001a%l\f\u0000\u0016O*a\u0000\u0014a\u0000\u001bl\f\u0000\u0016UO*a\u0000\u001cl\f\u0000\u0010O*a\u0000\u0011,\u0012\u0000\u0017*a\u0000\u0013,FO*a\u0000\u0014a\u0000\u001d%l\f\u0000\u0016UOPUOPU\u000f\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000m\u0000s\u0000a\u0000s\u0000p\u0000e\u0000n\u0000c\u0000e\u0000\/\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000\/\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000\/\u0000c\u0000o\u0000d\u0000e\u0000\/\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000.\u0000j\u0000s\u0000\/\u0000s\u0000t\u0000a\u0000r\u0000t\u0000-\u0000i\u0000t\u0000e\u0000r\u0000m\u0000-\u0000e\u0000n\u0000v\u0000.\u0000s\u0000c\u0000p\u0000t\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000b\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000m\u0000s\u0000a\u0000s\u0000p\u0000e\u0000n\u0000c\u0000e\u0000\/\u0000P\u0000r\u0000o\u0000j\u0000e\u0000c\u0000t\u0000s\u0000\/\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000\/\u0000c\u0000o\u0000d\u0000e\u0000\/\u0000t\u0000r\u0000a\u0000k\u0000.\u0000i\u0000o\u0000.\u0000j\u0000s\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0003\u0018\u0000on\no\u0000\u0004\nPtrm\u0003n\u0000\u0003\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"353fdf8897defc2792a3c65da666c8e1217a3fe7","subject":"fixed username","message":"fixed username\n","repos":"altvec\/dotfiles,altvec\/dotfiles,altvec\/dotfiles","old_file":"applescripts\/workVPN.applescript","new_file":"applescripts\/workVPN.applescript","new_contents":"-- Script to connect IPsec VPN and pass a password automagically!\n\ntell application \"System Events\"\n\t-- get current clipboard contents as a string\n\tset CurrentClipboard to the clipboard as string\n\t\n\t-- set the clipboad to your password\t\n\tset the clipboard to (do shell script \"cat '\" & \"\/Users\/skali\/Dropbox\/Private\/work_VPN_pwd.txt\" & \"'\")\n\t\n\t-- start playing with the VPN\n\ttell current location of network preferences\n\t\t\n\t\t-- set the name of the VPN service from your Network Settings\n\t\tset VPNService to service \"vpn iptv work\"\n\t\t-- determine current VPN connection status\n\t\tset isConnected to connected of current configuration of VPNService\n\t\t\n\t\t-- if connected, then disconnect\n\t\tif isConnected then\n\t\t\tdisconnect VPNService\n\t\t\t\n\t\t\t\n\t\telse -- otherwise, connect to the VPN\n\t\t\t\n\t\t\tconnect VPNService\n\t\t\t\n\t\t\t-- wait 10 seconds before pasting in the password\n\t\t\tdelay 10\n\t\t\t\n\t\t\ttell application id \"com.apple.systemevents\"\n\t\t\t\t-- paste clipboard contents into password box\n\t\t\t\tkeystroke \"v\" using {command down}\n\t\t\t\t-- press \"Enter\"\n\t\t\t\tkeystroke (key code 36)\n\t\t\t\t-- wait 10 seconds to connect\n\t\t\t\tdelay 10\n\t\t\t\t-- determine current VPN connection status (after providing password)\n\t\t\t\tset nowConnected to connected of current configuration of VPNService\n\t\t\t\t\n\t\t\t\t-- if we're now connected ...\n\t\t\t\tif nowConnected then\n\t\t\t\t\t\n\t\t\t\t\t-- press \"Enter\" again to get rid of a dialog confirmation prompt, if one exists\n\t\t\t\t\tkeystroke (key code 36)\n\t\t\t\t\t\n\t\t\t\t\t-- now, execute any other commands you want (ping a server to check its status, open mail, etc.)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t-- now reset the clipboard to what it was before we started\n\tset the clipboard to CurrentClipboard\nend tell\n","old_contents":"-- Script to connect IPsec VPN and pass a password automagically!\n\ntell application \"System Events\"\n\t-- get current clipboard contents as a string\n\tset CurrentClipboard to the clipboard as string\n\t\n\t-- set the clipboad to your password\t\n\tset the clipboard to (do shell script \"cat '\" & \"\/Users\/srg\/Dropbox\/Private\/work_VPN_pwd.txt\" & \"'\")\n\t\n\t-- start playing with the VPN\n\ttell current location of network preferences\n\t\t\n\t\t-- set the name of the VPN service from your Network Settings\n\t\tset VPNService to service \"VPN (Cisco IPsec)\"\n\t\t-- determine current VPN connection status\n\t\tset isConnected to connected of current configuration of VPNService\n\t\t\n\t\t-- if connected, then disconnect\n\t\tif isConnected then\n\t\t\tdisconnect VPNService\n\t\t\t\n\t\t\t\n\t\telse -- otherwise, connect to the VPN\n\t\t\t\n\t\t\tconnect VPNService\n\t\t\t\n\t\t\t-- wait 10 seconds before pasting in the password\n\t\t\tdelay 10\n\t\t\t\n\t\t\ttell application id \"com.apple.systemevents\"\n\t\t\t\t-- paste clipboard contents into password box\n\t\t\t\tkeystroke \"v\" using {command down}\n\t\t\t\t-- press \"Enter\"\n\t\t\t\tkeystroke (key code 36)\n\t\t\t\t-- wait 10 seconds to connect\n\t\t\t\tdelay 10\n\t\t\t\t-- determine current VPN connection status (after providing password)\n\t\t\t\tset nowConnected to connected of current configuration of VPNService\n\t\t\t\t\n\t\t\t\t-- if we're now connected ...\n\t\t\t\tif nowConnected then\n\t\t\t\t\t\n\t\t\t\t\t-- press \"Enter\" again to get rid of a dialog confirmation prompt, if one exists\n\t\t\t\t\tkeystroke (key code 36)\n\t\t\t\t\t\n\t\t\t\t\t-- now, execute any other commands you want (ping a server to check its status, open mail, etc.)\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\tend if\n\t\t\n\tend tell\n\t-- now reset the clipboard to what it was before we started\n\tset the clipboard to CurrentClipboard\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"930ca0ef8e7790d002fc441c4622f60d39f11d9b","subject":"killall -> \/usr\/bin\/killall","message":"killall -> \/usr\/bin\/killall\n","repos":"tekezo\/NoEjectDelay,tekezo\/NoEjectDelay,tekezo\/NoEjectDelay","old_file":"files\/extra\/uninstaller.applescript","new_file":"files\/extra\/uninstaller.applescript","new_contents":"try\n display dialog \"Are you sure you want to remove NoEjectDelay?\" buttons {\"Cancel\", \"OK\"}\n if the button returned of the result is \"OK\" then\n try\n do shell script \"test -f '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\"\n try\n do shell script \"sh '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\" with administrator privileges\n display alert \"NoEjectDelay has been uninstalled. Please restart OS X.\"\n do shell script \"\/usr\/bin\/killall 'NoEjectDelay Utility'\"\n on error\n display alert \"Failed to uninstall NoEjectDelay.\"\n end try\n on error\n display alert \"NoEjectDelay is not installed.\"\n end try\n end if\non error\n display alert \"NoEjectDelay uninstallation was canceled.\"\nend try\n","old_contents":"try\n display dialog \"Are you sure you want to remove NoEjectDelay?\" buttons {\"Cancel\", \"OK\"}\n if the button returned of the result is \"OK\" then\n try\n do shell script \"test -f '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\"\n try\n do shell script \"sh '\/Library\/Application Support\/org.pqrs\/NoEjectDelay\/uninstall.sh'\" with administrator privileges\n display alert \"NoEjectDelay has been uninstalled. Please restart OS X.\"\n do shell script \"killall 'NoEjectDelay Utility'\"\n on error\n display alert \"Failed to uninstall NoEjectDelay.\"\n end try\n on error\n display alert \"NoEjectDelay is not installed.\"\n end try\n end if\non error\n display alert \"NoEjectDelay uninstallation was canceled.\"\nend try\n","returncode":0,"stderr":"","license":"unlicense","lang":"AppleScript"} {"commit":"9b1d578b45f6811b43803231985841a8cc865e5e","subject":"Update script to get ALL macros instead of just hotkeyed macros.","message":"Update script to get ALL macros instead of just hotkeyed macros.\n","repos":"iansinnott\/alfred-maestro,iansinnott\/alfred-maestro","old_file":"km.scpt","new_file":"km.scpt","new_contents":"try\n\tget application id \"com.stairways.keyboardmaestro.engine\"\non error err_msg number err_num\n\treturn \"Keyboard Maestro not found. First install it and then use this workflow.\"\nend try\n\ntell application id \"com.stairways.keyboardmaestro.engine\"\n\tgethotkeys with asstring and getall\nend tell\n","old_contents":"try\n\tget application id \"com.stairways.keyboardmaestro.engine\"\non error err_msg number err_num\n\treturn \"Keyboard Maestro not found. First install it and then use this workflow.\"\nend try\n\ntell application id \"com.stairways.keyboardmaestro.engine\"\n\tgethotkeys with asstring\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8fe38a6ca9f2cfd9f0137e1c55af92e494d4b669","subject":"Default reproducibility to \"Not applicable\"","message":"Default reproducibility to \"Not applicable\"\n\n\ngit-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@56860 91177308-0d34-0410-b5e6-96231b3b80d8\n","repos":"llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,apple\/swift-clang,llvm-mirror\/clang,apple\/swift-clang,apple\/swift-clang,llvm-mirror\/clang,llvm-mirror\/clang","old_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_file":"tools\/scan-view\/Resources\/FileRadar.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\b\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000M\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000I\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000I\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000N\u0000V\u0000S\u0000T\r\u0000S\u0000\u0002n\u0000\u0000\u0000N\u0000R\u0000U\u0000V\r\u0000U\u0000\u00024\u0000\u0000\u0000O\u0000R\u0000W\n\u0000\u0004\ncobj\r\u0000W\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\b\r\u0000V\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000W\u0000w\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0002?\u0000\u0000\u0000W\u0000Z\u0000]\u0000^\r\u0000]\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000^\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\b\r\u0000[\u0000\u0002r\u0000\u0000\u0000]\u0000n\u0000_\u0000`\r\u0000_\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000a\u0000b\r\u0000a\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000c\u0000d\n\u0000\u0004\ncobj\r\u0000c\u0000\u0001m\u0000\u0000\u0000b\u0000f\u0003\u0000\t\r\u0000d\u0000\u0001o\u0000\u0000\u0000g\u0000i\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000b\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000\\\u0000\u0002r\u0000\u0000\u0000q\u0000w\u0000e\u0000f\r\u0000e\u0000\u0001J\u0000\u0000\u0000q\u0000s\u0002\u0000\u0000\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000Y\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000x\u0000\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000x\u0000\u0000k\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000y\u0000z\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000h\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000\u0000\u0000~\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0000 set myClassificationCode to 4 -- 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00018\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00004\u0000 \u0000-\u0000-\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0006\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0016\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000#\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000*\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000&\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000-\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000<\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u00007\u0000:\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0003\u0000\u0001m\u0000\u0000\u00008\u00009\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002r\u0000\u0000\u0000G\u0000P\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002b\u0000\u0000\u0000G\u0000N\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002b\u0000\u0000\u0000G\u0000L\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000G\u0000J\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0002\u0000\n\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0002r\u0000\u0000\u0000Q\u0000Z\u0001 \u0001!\r\u0001 \u0000\u0002b\u0000\u0000\u0000Q\u0000X\u0001\"\u0001#\r\u0001\"\u0000\u0002b\u0000\u0000\u0000Q\u0000V\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0000Q\u0000T\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000Q\u0000R}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001'\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001%\u0000\u0001o\u0000\u0000\u0000T\u0000U|\u000b|\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001#\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000\n\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002r\u0000\u0000\u0000[\u0000f\u0001.\u0001\/\r\u0001.\u0000\u0002b\u0000\u0000\u0000[\u0000d\u00010\u00011\r\u00010\u0000\u0002b\u0000\u0000\u0000[\u0000`\u00012\u00013\r\u00012\u0000\u0002b\u0000\u0000\u0000[\u0000^\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000[\u0000\\z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\r\u00015\u0000\u0001m\u0000\u0000\u0000\\\u0000]\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u00013\u0000\u0001o\u0000\u0000\u0000^\u0000_y\u000by\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u00011\u0000\u0001m\u0000\u0000\u0000`\u0000c\u00018\u000e\u00018\u0000\u0001\u00019\u0011\u00019\u0000\u0002\u0000\n\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001-\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000g\u0000t\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0000g\u0000r\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0000g\u0000n\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0000g\u0000l\u0001B\u0001C\r\u0001B\u0000\u0001o\u0000\u0000\u0000g\u0000hw\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001C\u0000\u0001m\u0000\u0000\u0000h\u0000k\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u0001A\u0000\u0001o\u0000\u0000\u0000l\u0000mv\u000bv\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u0001?\u0000\u0001m\u0000\u0000\u0000n\u0000q\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0002\u0000\n\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001;\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0002r\u0000\u0000\u0000u\u0000\u0001J\u0001K\r\u0001J\u0000\u0002b\u0000\u0000\u0000u\u0000\u0001L\u0001M\r\u0001L\u0000\u0002b\u0000\u0000\u0000u\u0000|\u0001N\u0001O\r\u0001N\u0000\u0002b\u0000\u0000\u0000u\u0000z\u0001P\u0001Q\r\u0001P\u0000\u0001o\u0000\u0000\u0000u\u0000vt\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001Q\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001O\u0000\u0001o\u0000\u0000\u0000z\u0000{s\u000bs\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001M\u0000\u0001m\u0000\u0000\u0000|\u0000\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000\u0002\u0000\n\r\u0001K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001I\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0000\u0001X\u0001Y\r\u0001X\u0000\u0002b\u0000\u0000\u0000\u0000\u0001Z\u0001[\r\u0001Z\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\\\u0001]\r\u0001\\\u0000\u0002b\u0000\u0000\u0000\u0000\u0001^\u0001_\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0000\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001]\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0002\u0000\n\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001W\u0000\u0002\u0001dn\r\u0001d\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001em\u0001f\u0001gl\r\u0001e\u0000\u0002r\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0000\u0000\u0001l\u0001m\r\u0001l\u0000\u0002b\u0000\u0000\u0000\u0000\u0001n\u0001o\r\u0001n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u0002b\u0000\u0000\u0000\u0000\u0001r\u0001s\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u0000\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001o\u0000\u0001m\u0000\u0000\u0000\u0000\u0001v\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000\u0004\u0000:\u0000 \r\u0001m\u0000\u0002n\u0000\u0000\u0000\u0000\u0001x\u0001y\r\u0001x\u0000\u00024\u0000\u0000\u0000\u0000i\u0001z\ni\u0000\u0004\ncobj\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001y\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001{\u000e\u0001{\u0000\u0001\u0001|\u0011\u0001|\u0000\u0002\u0000\n\r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00070\u0000\u0003res\u0000\u0000\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0000e\u0003e\u0000\u0001\r\u0001g\u0000\u0003l\u0000\u0005\u0000\u0000\u0001}dc\r\u0001}\u0000\u0002n\u0000\u0000\u0000\u0000\u0001~\u0001\r\u0001~\u0000\u00011\u0000\u0000\u0000\u0000b\nb\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001l\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000`_\u0001\n`\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001_\u0000\u0000\u0006\u0001\u0000\u0003^\u0001\u0001\n^\u0000\u0004\ndesc\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001]\\\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0006\u0001\u0000\u0003Z\u0001\u0001\nZ\u0000\u0004\ndiag\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001YX\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000W\u000bW\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0006\u0001\u0000\u0003V\u0001\u0001\nV\u0000\u0004\ncmvr\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001UT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0001U\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u0000\u0003R\u0001\u0001\nR\u0000\u0004\ncmnm\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001QP\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0001\u0000\u0003N\u0001\u0001\nN\u0000\u0004\nrcod\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ML\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000K\u000bK\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0001M\u0000\u0000\u0001L\u0000\u0000\u0006\u0001\u0000\u0003J\u0001\u0001\nJ\u0000\u0004\norig\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001IH\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000G\u000bG\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0001I\u0000\u0000\u0001H\u0000\u0000\u0006\u0001\u0000\u0003F\u0001\u0001\nF\u0000\u0004\npbti\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ED\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0001E\u0000\u0000\u0001D\u0000\u0000\u0006\u0001\u0000\u0003B\u0001\u0001\nB\u0000\u0004\nconf\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001A@\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0001A\u0000\u0000\u0001@\u0000\u0000\u0006\u0001\u0000\u0003>\u0001\u0001\n>\u0000\u0004\nclcd\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001=<\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000;\u000b;\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0001=\u0000\u0000\u0001<\u0000\u0000\u0006\u0001\u0000\u0003:\u00019\n:\u0000\u0004\ndsav\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u00069\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u00003\u0001\u0001\u00013\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0001$\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u00001\n1\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0004\u0001$\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0004\u0001\u0013\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0004\u0001\u0011\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0001\u0005\u0001\u0011,\u0001\u0001\n,\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\r+\u0003+\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u0010*\u0003*\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0004\u0001\u0005)\u000b)\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001'\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0014\u0001$\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001#\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u001f\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u001d\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0014\u0001\u0019\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0017\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0017\u0001\u0018&\u000b&\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0019\u0001\u001c\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e%\u000b%\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001%\u0001%$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001%\u00012\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u00010\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u0001,\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001%\u0001*\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001%\u0001&!\u000b!\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001&\u0001)\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001*\u0001+ \u000b \u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0001,\u0001\/\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00013\u00013\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u00013\u0001\u0001\u001b\u0001\u0001\u001a\r\u0001\u0000\u0001k\u0000\u0000\u0001B\u0001}\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001B\u0001T\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001R\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001N\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001B\u0001G\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001B\u0001C\u0019\u000b\u0019\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001G\u0001M\u0001\u0018\u0017\r\u0001\u0000\u0002n\u0000\u0000\u0001G\u0001M\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001H\u0001M\u0016\u0001\n\u0016\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001K\u0001L\u0015\u000b\u0015\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001G\u0001H\u0014\u000b\u0014\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001N\u0001Q\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001U\u0001m\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001U\u0001i\u0012\u0011\u0001\n\u0012\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0011\u0000\u0000\u0006\u0001\u0000\u0003\u0010\u0001\u0001\n\u0010\u0000\u0004\nmr11\r\u0001\u0000\u0003l\u0000\u0005\u0001Y\u0001_\u0001\u000f\u000e\r\u0001\u0000\u0002n\u0000\u0000\u0001Y\u0001_\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001Z\u0001_\r\u0001\n\r\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001]\u0001^\f\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001Y\u0001Z\u000b\u000b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0006\u0001\u0000\u0003\n\u0002\u0000\t\n\n\u0000\u0004\npbid\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001b\u0001c\b\u000b\b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\t\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0001\u0006\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0001n\u0001}\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0001n\u0001{\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0001n\u0001w\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0001n\u0001s\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0001n\u0001o\u0005\u000b\u0005\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\t\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0014\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \r\u0002\u0007\u0000\u0001o\u0000\u0000\u0001s\u0001v\u0004\u000b\u0004\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0001w\u0001z\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000\n\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0006\u0000\u0000\u000b\u001b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00016\u00017\u0002\u0003\u0002\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u00017\u0001=\u0002\u000e\u0001\u0000\r\u0002\u000e\u0000\u0002n\u0000\u0000\u00017\u0001=\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00011\u0000\u0000\u00018\u0001<\n\u0000\u0004\nleng\r\u0002\u0010\u0000\u0001o\u0000\u0000\u00017\u00018\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0002r\u0000\u0000\u0001\u0001\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001b\u000e\u0002\u001b\u0000\u0001\u0002\u001c\u0011\u0002\u001c\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002\u0018\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000\u0002\u0000\n\r\u0002\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002\u0014\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0003I\u0000\u0002\u0001\u0001\u0002 \n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0002 \u0000\u0003\u0002!\u0002\"\n\u0000\u0004\npbid\r\u0002!\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u0002\"\u0000\u0003\u0002#\n\u0000\u0004\nkeyi\r\u0002#\u0000\u0001m\u0000\u0000\u0001\u0001\u0007\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002$\u0002%\r\u0002$\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002%\u0000\u0002\u0002&\r\u0002&\u0000\u0001L\u0000\u0000\u0001\u0001\u0002'\r\u0002'\u0000\u0002b\u0000\u0000\u0001\u0001\u0002(\u0002)\r\u0002(\u0000\u0002b\u0000\u0000\u0001\u0001\u0002*\u0002+\r\u0002*\u0000\u0002b\u0000\u0000\u0001\u0001\u0002,\u0002-\r\u0002,\u0000\u0002b\u0000\u0000\u0001\u0001\u0002.\u0002\/\r\u0002.\u0000\u0001m\u0000\u0000\u0001\u0001\u00020\u000e\u00020\u0000\u0001\u00021\u0011\u00021\u0000\u0002\u0000(\r\u0002\/\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002-\u0000\u0001m\u0000\u0000\u0001\u0001\u00022\u000e\u00022\u0000\u0001\u00023\u0011\u00023\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002+\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002)\u0000\u0001m\u0000\u0000\u0001\u0001\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00026\u000f\u00026\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u00027\r\u00027\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u00028\u00029\u0002:\u0002;\u0002<\u0002=\u0002>\u0002?\u0002@\u0002A\u0002B\u0002C\u0002D\u0001\u0000\u0000\u0010\u00028\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u00029\u0000\u0007\u0010\u0000\b\u0002E\u0002F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0002E\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0002F\u0000\u0016\u0000\u0015\u0000\u001e\n\u0000\u0004\nleng\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\b\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0003\u0000\u0004\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0005\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0006\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0007\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\t\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EOa\u0000\u0010\/E`\u0000\u0011O\/E`\u0000\u0012O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0013\\Z2E`\u0000\u0014Y\u0000\bjvE`\u0000\u0014O*_\u0000\u0011_\u0000\u0012_\u0000\u0014a\u0000\u0013+\u0000\u0015EO\u000f\u000f\u000e\u0002:\u0000\u0007\u0010\u0000\u0002G\u0002H\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u0002I\u0003\u0000\t\u000e\u0002I\u0000\t\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u0002G\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u0002H\u0000A\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0004\u0001\u0006\u0001\u000e\u0001\u001a\u0001\u001c\u0001(\u0001*\u00016\u00018\u0001D\u0001F\u0001R\u0001T\u0001`\u0001b\u0001t\u0001v\u0001{\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u001b\u0002\u001d\u00020\u00022\u00024\n\u0000\u0018.miscactvnull\u0000\u0000null\u0003\u0000\u0006\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\ndesc\n\u0000\u0004\ndiag\n\u0000\u0004\ncmvr\n\u0000\u0004\ncmnm\n\u0000\u0004\nrcod\n\u0000\u0004\norig\n\u0000\u0004\npbti\n\u0000\u0004\nconf\n\u0000\u0004\nclcd\n\u0000\u0004\ndsav\u0003\u0000\u0014\n\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\u0003\u0000\u0004\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001EOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%a\u0000\u0010%EOa\u0000\u0011%%a\u0000\u0012%EOa\u0000\u0013%%a\u0000\u0014%EOa\u0000\u0015%%a\u0000\u0016%EO\u0017\u0000+ka\u0000\u0017,Ekh\u001c\u0000\ra\u0000\u0018%%a\u0000\u0019%a\u0000\u001a\/%a\u0000\u001b%E[OYY\u0000*a\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%a\u0000&\f\u0000'EO\u0014\u0000\fa\u0000(&EW\u0000'X\u0000)\u0000*[a\u0000+\\[Zm\\Zi2EOa\u0000,%a\u0000-%%a\u0000.%\u000fOa\u0000\/%%a\u00000%EO\u0017\u0000Nka\u0000\u0017,Ekh\u001c\u0000\ra\u00001%a\u0000\u001a\/%a\u00002%EO*a\u00003a\u0000\u001a\/a\u00004a\u00005\f\u00006E^\u0000\u0010Oa\u00007%]\u0000\u0010%a\u00008%E[OYOa\u00009%a\u0000:%EO*a\u00004a\u0000;a\u0000<a\u00005\f\u0000=Oa\u0000>%a\u0000?%%a\u0000@%\u000fU\u000f\u0003\u0000\t\u000e\u0002;\u0000\u0001\u0002J\u0011\u0002J\u0001\b\u0000(\u00006\u00002\u00005\u00007\u00004\u00002\u00008\u0000,\u0000 \u0000\"\u0000\"\u0000\"\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \u00006\u00002\u00005\u00007\u00004\u00002\u00008\u0000\n\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00003\u00004\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000I\u0000i\u0000R\u0000E\u0000d\u0000s\u0000.\u0000h\u0000t\u0000m\u0000l\u0000\n\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \u00001\u0000\n\u0000\n\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\u0000\n\u0000\"\u0000\"\u0000\"\u0000)\u000e\u0002<\u0000\u0001\u0002K\u0011\u0002K\u00008\u0000B\u0000u\u0000g\u0000s\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000b\u0000y\u0000 \u0000C\u0000l\u0000a\u0000n\u0000g\u0000 \u0000A\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u000e\u0002=\u0000\u0001\u0002L\u0011\u0002L\u0000\u0002\u0000X\u000e\u0002>\u0000\u0001\u0002M\u0011\u0002M\u0000\u0002\u00003\u000e\u0002?\u0000\u0001\u0002N\u0011\u0002N\u0000\u0000\u000e\u0002@\u0000\u0001\u0002O\u0011\u0002O\u0000\b\u0000l\u0000e\u0000a\u0000k\u000e\u0002A\u0000\u0001\u0002P\u0011\u0002P\u00014\u0000B\u0000u\u0000g\u0000 \u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000a\u0000n\u0000g\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000a\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u0000.\u0000\r\u0000\n\u0000\r\u0000\n\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0000l\u0000e\u0000a\u0000k\u0000\r\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000:\u0000 \u0000\/\u0000V\u0000o\u0000l\u0000u\u0000m\u0000e\u0000s\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000k\u0000r\u0000e\u0000m\u0000e\u0000n\u0000e\u0000k\u0000\/\u0000l\u0000l\u0000v\u0000m\u0000\/\u0000t\u0000o\u0000o\u0000l\u0000s\u0000\/\u0000c\u0000l\u0000a\u0000n\u0000g\u0000\/\u0000t\u0000e\u0000s\u0000t\u0000\/\u0000A\u0000n\u0000a\u0000l\u0000y\u0000s\u0000i\u0000s\u0000\/\u0000C\u0000F\u0000D\u0000a\u0000t\u0000e\u0000.\u0000m\u0000\r\u0000\n\u0000L\u0000i\u0000n\u0000e\u0000:\u0000 \u00001\u00002\u00000\u0000\r\u0000\n\u0000\r\u0000\n\u000e\u0002B\u0000\u0001\u0002Q\u0011\u0002Q\u0000\u0000\u000e\u0002C\u0000\u0001\u0002R\u0011\u0002R\u0000\u0000\u000e\u0002D\u0000\u0002\u0004~\u0002S\u0003~\u0000\u0001\u000e\u0002S\u0000\u0001\u0000\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000`\u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00003\u00004\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000I\u0000i\u0000R\u0000E\u0000d\u0000s\u0000.\u0000h\u0000t\u0000m\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0005\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u00011\u0000\u0000\u0000\u0001\u0000\u0003\n\u0000\u0004\nleng\r\u0000\u0010\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u0002\u0000\f\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002r\u0000\u0000\u0000\u0006\u0000\t\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\r\u0000\u0014\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0004Z\u0000\u0000\u0000\n\u0000\u0018\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002A\u0000\u0000\u0000\n\u0000\r\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0003\u0000\b\r\u0000\u001a\u0000\u0003R\u0000\u0000\u0000\u0010\u0000\u0014\u0000\u001d\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000\u001e\u000e\u0000\u001e\u0000\u0001\u0000\u001f\u0011\u0000\u001f\u0000\u0000U\u0000s\u0000a\u0000g\u0000e\u0000:\u0000 \u0000F\u0000i\u0000l\u0000e\u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000c\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u0000c\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000p\u0000e\u0000r\u0000s\u0000o\u0000n\u0000I\u0000D\u0000 \u0000p\u0000r\u0000o\u0000b\u0000l\u0000e\u0000m\u0000T\u0000i\u0000t\u0000l\u0000e\u0000 \u0000d\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000 \u0000d\u0000i\u0000a\u0000g\u0000 \u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000{\u0000f\u0000i\u0000l\u0000e\u0000s\u0000}\u0000*\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001f\u0000\"\u0000#\r\u0000\"\u0000\u0002n\u0000\u0000\u0000\u0019\u0000\u001d\u0000$\u0000%\r\u0000$\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0000&\n\u0000\u0004\ncobj\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0000%\u0000\u0001o\u0000\u0000\u0000\u0019\u0000\u001a\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000!\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0002r\u0000\u0000\u0000 \u0000&\u0000)\u0000*\r\u0000)\u0000\u0002n\u0000\u0000\u0000 \u0000$\u0000+\u0000,\r\u0000+\u0000\u00024\u0000\u0000\u0000!\u0000$\u0000-\n\u0000\u0004\ncobj\r\u0000-\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u0003\u0000\u0002\r\u0000,\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000(\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000'\u0000-\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0003\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\/\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u0000.\u00004\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u0000.\u00002\u00009\u0000:\r\u00009\u0000\u00024\u0000\u0000\u0000\/\u00002\u0000;\n\u0000\u0004\ncobj\r\u0000;\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0004\r\u0000:\u0000\u0001o\u0000\u0000\u0000.\u0000\/\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u00006\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u00005\u0000;\u0000>\u0000?\r\u0000>\u0000\u0002n\u0000\u0000\u00005\u00009\u0000@\u0000A\r\u0000@\u0000\u00024\u0000\u0000\u00006\u00009\u0000B\n\u0000\u0004\ncobj\r\u0000B\u0000\u0001m\u0000\u0000\u00007\u00008\u0003\u0000\u0005\r\u0000A\u0000\u0001o\u0000\u0000\u00005\u00006\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0002r\u0000\u0000\u0000<\u0000B\u0000E\u0000F\r\u0000E\u0000\u0002n\u0000\u0000\u0000<\u0000@\u0000G\u0000H\r\u0000G\u0000\u00024\u0000\u0000\u0000=\u0000@\u0000I\n\u0000\u0004\ncobj\r\u0000I\u0000\u0001m\u0000\u0000\u0000>\u0000?\u0003\u0000\u0006\r\u0000H\u0000\u0001o\u0000\u0000\u0000<\u0000=\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000F\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000D\u0000\u0002\u0000J\u0000K\r\u0000J\u0000\u0002r\u0000\u0000\u0000C\u0000M\u0000L\u0000M\r\u0000L\u0000\u0002n\u0000\u0000\u0000C\u0000I\u0000N\u0000O\r\u0000N\u0000\u00024\u0000\u0000\u0000D\u0000I\u0000P\n\u0000\u0004\ncobj\r\u0000P\u0000\u0001m\u0000\u0000\u0000E\u0000H\u0003\u0000\u0007\r\u0000O\u0000\u0001o\u0000\u0000\u0000C\u0000D\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000K\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0002r\u0000\u0000\u0000N\u0000V\u0000S\u0000T\r\u0000S\u0000\u0002n\u0000\u0000\u0000N\u0000R\u0000U\u0000V\r\u0000U\u0000\u00024\u0000\u0000\u0000O\u0000R\u0000W\n\u0000\u0004\ncobj\r\u0000W\u0000\u0001m\u0000\u0000\u0000P\u0000Q\u0003\u0000\b\r\u0000V\u0000\u0001o\u0000\u0000\u0000N\u0000O\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000T\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000R\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000W\u0000w\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0002?\u0000\u0000\u0000W\u0000Z\u0000]\u0000^\r\u0000]\u0000\u0001o\u0000\u0000\u0000W\u0000X\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000^\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0003\u0000\b\r\u0000[\u0000\u0002r\u0000\u0000\u0000]\u0000n\u0000_\u0000`\r\u0000_\u0000\u0002n\u0000\u0000\u0000]\u0000j\u0000a\u0000b\r\u0000a\u0000\u00037\u0001\u0000\u0000^\u0000j\u0000c\u0000d\n\u0000\u0004\ncobj\r\u0000c\u0000\u0001m\u0000\u0000\u0000b\u0000f\u0003\u0000\t\r\u0000d\u0000\u0001o\u0000\u0000\u0000g\u0000i\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\r\u0000b\u0000\u0001o\u0000\u0000\u0000]\u0000^\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\r\u0000\\\u0000\u0002r\u0000\u0000\u0000q\u0000w\u0000e\u0000f\r\u0000e\u0000\u0001J\u0000\u0000\u0000q\u0000s\u0002\u0000\u0000\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000Y\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000x\u0000\u0000i\u0000j\r\u0000i\u0000\u0003I\u0000\u0000\u0000x\u0000\u0000k\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001o\u0000\u0000\u0000y\u0000z\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000m\u0000\u0002\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000z\u0000{\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000o\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000{\u0000|\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000q\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000|\u0000}\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000s\u0000\u0002\u0000t\u0000u\r\u0000t\u0000\u0001o\u0000\u0000\u0000}\u0000~\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000u\u0000\u0002\u0000v\u0000w\r\u0000v\u0000\u0001o\u0000\u0000\u0000~\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000y\u0000\u0002\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000{\u0000\u0002\u0000|\r\u0000|\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000j\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000h\u0000\u0002\u0000}\r\u0000}\u0000\u0001L\u0000\u0000\u0000\u0000\u0000~\r\u0000~\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u000b\u0000\u000b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u0001\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u000f\u0001\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u000f\u0000\u000f\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0000 set myClassificationCode to 4 -- 1=security; 2=crash\/hang\/data loss; 3=performance; 4=UI\/usability; 6=serious; 7=other; 9=feature; 10=enhancement; 12=task;\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00018\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00004\u0000 \u0000-\u0000-\u0000 \u00001\u0000=\u0000s\u0000e\u0000c\u0000u\u0000r\u0000i\u0000t\u0000y\u0000;\u0000 \u00002\u0000=\u0000c\u0000r\u0000a\u0000s\u0000h\u0000\/\u0000h\u0000a\u0000n\u0000g\u0000\/\u0000d\u0000a\u0000t\u0000a\u0000 \u0000l\u0000o\u0000s\u0000s\u0000;\u0000 \u00003\u0000=\u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000a\u0000n\u0000c\u0000e\u0000;\u0000 \u00004\u0000=\u0000U\u0000I\u0000\/\u0000u\u0000s\u0000a\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000;\u0000 \u00006\u0000=\u0000s\u0000e\u0000r\u0000i\u0000o\u0000u\u0000s\u0000;\u0000 \u00007\u0000=\u0000o\u0000t\u0000h\u0000e\u0000r\u0000;\u0000 \u00009\u0000=\u0000f\u0000e\u0000a\u0000t\u0000u\u0000r\u0000e\u0000;\u0000 \u00001\u00000\u0000=\u0000e\u0000n\u0000h\u0000a\u0000n\u0000c\u0000e\u0000m\u0000e\u0000n\u0000t\u0000;\u0000 \u00001\u00002\u0000=\u0000t\u0000a\u0000s\u0000k\u0000;\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u000f\u0000\u0012\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0013\u0000\u0016\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0016\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\n\u0000\b\u000bboovfals\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\f\u0000\u0000\u0014\u0000\u000e true or false\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001c\u0000 \u0000t\u0000r\u0000u\u0000e\u0000 \u0000o\u0000r\u0000 \u0000f\u0000a\u0000l\u0000s\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000h\u0000b- formType & severityCode are no longer used in Radar 6.3 and later. If passed, they are ignored.:\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000-\u0000 \u0000f\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000&\u0000 \u0000s\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000a\u0000r\u0000e\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000.\u0000 \u0000I\u0000f\u0000 \u0000p\u0000a\u0000s\u0000s\u0000e\u0000d\u0000,\u0000 \u0000t\u0000h\u0000e\u0000y\u0000 \u0000a\u0000r\u0000e\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0000:\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000e\u0000_ set myFormType to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000F\u0000o\u0000r\u0000m\u0000T\u0000y\u0000p\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000i\u0000c set mySeverityCode to 99 -- This parameter is no longer used in Radar 6.3 and later, it's ignored.\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000 \u0000s\u0000e\u0000t\u0000 \u0000m\u0000y\u0000S\u0000e\u0000v\u0000e\u0000r\u0000i\u0000t\u0000y\u0000C\u0000o\u0000d\u0000e\u0000 \u0000t\u0000o\u0000 \u00009\u00009\u0000 \u0000-\u0000-\u0000 \u0000T\u0000h\u0000i\u0000s\u0000 \u0000p\u0000a\u0000r\u0000a\u0000m\u0000e\u0000t\u0000e\u0000r\u0000 \u0000i\u0000s\u0000 \u0000n\u0000o\u0000 \u0000l\u0000o\u0000n\u0000g\u0000e\u0000r\u0000 \u0000u\u0000s\u0000e\u0000d\u0000 \u0000i\u0000n\u0000 \u0000R\u0000a\u0000d\u0000a\u0000r\u0000 \u00006\u0000.\u00003\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000a\u0000t\u0000e\u0000r\u0000,\u0000 \u0000i\u0000t\u0000'\u0000s\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000d\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0017\u0000\u0017\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000\u0007\u0000\u0001-\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000-\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0017\u0000\u0017\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001a\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\u0003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u001b\u0000\u001e\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \n\u0000\b\u000bboovfals\r\u0000\u0000\u0001k\u0000\u0000\u0000#\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000#\u0000,\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000*\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000#\u0000&\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000&\u0000'\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\r\u0000\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000-\u00006\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00004\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00002\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000-\u00000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000&\u0000C\u0000o\u0000m\u0000p\u0000o\u0000n\u0000e\u0000n\u0000t\u0000 \u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u00007\u0000@\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000>\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00007\u0000<\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0002b\u0000\u0000\u00007\u0000:\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0003\u0000\u0001m\u0000\u0000\u00008\u00009\u0001\u0004\u000e\u0001\u0004\u0000\u0001\u0001\u0005\u0011\u0001\u0005\u0000\u0016\u0000P\u0000e\u0000r\u0000s\u0000o\u0000n\u0000 \u0000I\u0000D\u0000:\u0000 \r\u0001\u0001\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\r\u0000\u0000\u0001m\u0000\u0000\u0000<\u0000=\u0001\u0006\u000e\u0001\u0006\u0000\u0001\u0001\u0007\u0011\u0001\u0007\u0000\u0002\u0000\n\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0000\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0002r\u0000\u0000\u0000A\u0000F\u0001\n\u0001\u000b\r\u0001\n\u0000\u0002b\u0000\u0000\u0000A\u0000D\u0001\f\u0001\r\r\u0001\f\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\r\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0001\u000e\u000e\u0001\u000e\u0000\u0001\u0001\u000f\u0011\u0001\u000f\u0000\u0006\u0000-\u0000-\u0000\n\r\u0001\u000b\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\t\u0000\u0002\u0001\u0010\u0001\u0011\r\u0001\u0010\u0000\u0002r\u0000\u0000\u0000G\u0000P\u0001\u0012\u0001\u0013\r\u0001\u0012\u0000\u0002b\u0000\u0000\u0000G\u0000N\u0001\u0014\u0001\u0015\r\u0001\u0014\u0000\u0002b\u0000\u0000\u0000G\u0000L\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0002b\u0000\u0000\u0000G\u0000J\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0001o\u0000\u0000\u0000G\u0000H\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0019\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0001\u001a\u000e\u0001\u001a\u0000\u0001\u0001\u001b\u0011\u0001\u001b\u0000\u000e\u0000T\u0000i\u0000t\u0000l\u0000e\u0000:\u0000 \r\u0001\u0017\u0000\u0001o\u0000\u0000\u0000J\u0000K\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\r\u0001\u0015\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0002\u0000\n\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000~\u000b~\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0011\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0002r\u0000\u0000\u0000Q\u0000Z\u0001 \u0001!\r\u0001 \u0000\u0002b\u0000\u0000\u0000Q\u0000X\u0001\"\u0001#\r\u0001\"\u0000\u0002b\u0000\u0000\u0000Q\u0000V\u0001$\u0001%\r\u0001$\u0000\u0002b\u0000\u0000\u0000Q\u0000T\u0001&\u0001'\r\u0001&\u0000\u0001o\u0000\u0000\u0000Q\u0000R}\u000b}\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001'\u0000\u0001m\u0000\u0000\u0000R\u0000S\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u001a\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \r\u0001%\u0000\u0001o\u0000\u0000\u0000T\u0000U|\u000b|\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\r\u0001#\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0001*\u000e\u0001*\u0000\u0001\u0001+\u0011\u0001+\u0000\u0002\u0000\n\r\u0001!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000{\u000b{\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0002r\u0000\u0000\u0000[\u0000d\u0001.\u0001\/\r\u0001.\u0000\u0002b\u0000\u0000\u0000[\u0000b\u00010\u00011\r\u00010\u0000\u0002b\u0000\u0000\u0000[\u0000`\u00012\u00013\r\u00012\u0000\u0002b\u0000\u0000\u0000[\u0000^\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000[\u0000\\z\u000bz\u0000\u00070\u0000\u0003res\u0000\u0000\r\u00015\u0000\u0001m\u0000\u0000\u0000\\\u0000]\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\u0016\u0000D\u0000i\u0000a\u0000g\u0000n\u0000o\u0000s\u0000i\u0000s\u0000:\u0000 \r\u00013\u0000\u0001o\u0000\u0000\u0000^\u0000_y\u000by\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\r\u00011\u0000\u0001m\u0000\u0000\u0000`\u0000a\u00018\u000e\u00018\u0000\u0001\u00019\u0011\u00019\u0000\u0002\u0000\n\r\u0001\/\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000x\u000bx\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001-\u0000\u0002\u0001:\u0001;\r\u0001:\u0000\u0002r\u0000\u0000\u0000e\u0000r\u0001<\u0001=\r\u0001<\u0000\u0002b\u0000\u0000\u0000e\u0000p\u0001>\u0001?\r\u0001>\u0000\u0002b\u0000\u0000\u0000e\u0000l\u0001@\u0001A\r\u0001@\u0000\u0002b\u0000\u0000\u0000e\u0000j\u0001B\u0001C\r\u0001B\u0000\u0001o\u0000\u0000\u0000e\u0000fw\u000bw\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001C\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0001D\u000e\u0001D\u0000\u0001\u0001E\u0011\u0001E\u0000\u0010\u0000C\u0000o\u0000n\u0000f\u0000i\u0000g\u0000:\u0000 \r\u0001A\u0000\u0001o\u0000\u0000\u0000j\u0000kv\u000bv\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\r\u0001?\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001F\u000e\u0001F\u0000\u0001\u0001G\u0011\u0001G\u0000\u0002\u0000\n\r\u0001=\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000u\u000bu\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001;\u0000\u0002\u0001H\u0001I\r\u0001H\u0000\u0002r\u0000\u0000\u0000s\u0000\u0001J\u0001K\r\u0001J\u0000\u0002b\u0000\u0000\u0000s\u0000~\u0001L\u0001M\r\u0001L\u0000\u0002b\u0000\u0000\u0000s\u0000z\u0001N\u0001O\r\u0001N\u0000\u0002b\u0000\u0000\u0000s\u0000x\u0001P\u0001Q\r\u0001P\u0000\u0001o\u0000\u0000\u0000s\u0000tt\u000bt\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001Q\u0000\u0001m\u0000\u0000\u0000t\u0000w\u0001R\u000e\u0001R\u0000\u0001\u0001S\u0011\u0001S\u0000*\u0000C\u0000l\u0000a\u0000s\u0000s\u0000i\u0000f\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001O\u0000\u0001o\u0000\u0000\u0000x\u0000ys\u000bs\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\r\u0001M\u0000\u0001m\u0000\u0000\u0000z\u0000}\u0001T\u000e\u0001T\u0000\u0001\u0001U\u0011\u0001U\u0000\u0002\u0000\n\r\u0001K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000r\u000br\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001I\u0000\u0002\u0001V\u0001W\r\u0001V\u0000\u0002r\u0000\u0000\u0000\u0000\u0001X\u0001Y\r\u0001X\u0000\u0002b\u0000\u0000\u0000\u0000\u0001Z\u0001[\r\u0001Z\u0000\u0002b\u0000\u0000\u0000\u0000\u0001\\\u0001]\r\u0001\\\u0000\u0002b\u0000\u0000\u0000\u0000\u0001^\u0001_\r\u0001^\u0000\u0001o\u0000\u0000\u0000\u0000q\u000bq\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0000\u0001`\u000e\u0001`\u0000\u0001\u0001a\u0011\u0001a\u0000,\u0000R\u0000e\u0000p\u0000r\u0000o\u0000d\u0000u\u0000c\u0000i\u0000b\u0000i\u0000l\u0000i\u0000t\u0000y\u0000 \u0000C\u0000o\u0000d\u0000e\u0000:\u0000 \r\u0001]\u0000\u0001o\u0000\u0000\u0000\u0000p\u000bp\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\r\u0001[\u0000\u0001m\u0000\u0000\u0000\u0000\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\u0002\u0000\n\r\u0001Y\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000o\u000bo\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001W\u0000\u0002\u0001dn\r\u0001d\u0000\u0005Y\u0000\u0000\u0000\u0000\u0001em\u0001f\u0001gl\r\u0001e\u0000\u0002r\u0000\u0000\u0000\u0000\u0001h\u0001i\r\u0001h\u0000\u0002b\u0000\u0000\u0000\u0000\u0001j\u0001k\r\u0001j\u0000\u0002b\u0000\u0000\u0000\u0000\u0001l\u0001m\r\u0001l\u0000\u0002b\u0000\u0000\u0000\u0000\u0001n\u0001o\r\u0001n\u0000\u0002b\u0000\u0000\u0000\u0000\u0001p\u0001q\r\u0001p\u0000\u0002b\u0000\u0000\u0000\u0000\u0001r\u0001s\r\u0001r\u0000\u0001o\u0000\u0000\u0000\u0000k\u000bk\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u0000\u0001t\u000e\u0001t\u0000\u0001\u0001u\u0011\u0001u\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000 \r\u0001q\u0000\u0001o\u0000\u0000\u0000\u0000j\u000bj\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001o\u0000\u0001m\u0000\u0000\u0000\u0000\u0001v\u000e\u0001v\u0000\u0001\u0001w\u0011\u0001w\u0000\u0004\u0000:\u0000 \r\u0001m\u0000\u0002n\u0000\u0000\u0000\u0000\u0001x\u0001y\r\u0001x\u0000\u00024\u0000\u0000\u0000\u0000i\u0001z\ni\u0000\u0004\ncobj\r\u0001z\u0000\u0001o\u0000\u0000\u0000\u0000h\u000bh\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001y\u0000\u0001o\u0000\u0000\u0000\u0000g\u000bg\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\r\u0001k\u0000\u0001m\u0000\u0000\u0000\u0000\u0001{\u000e\u0001{\u0000\u0001\u0001|\u0011\u0001|\u0000\u0002\u0000\n\r\u0001i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000f\u000bf\u0000\u00070\u0000\u0003res\u0000\u0000\u000bm\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001f\u0000\u0001m\u0000\u0000\u0000\u0000e\u0003e\u0000\u0001\r\u0001g\u0000\u0003l\u0000\u0005\u0000\u0000\u0001}dc\r\u0001}\u0000\u0002n\u0000\u0000\u0000\u0000\u0001~\u0001\r\u0001~\u0000\u00011\u0000\u0000\u0000\u0000b\nb\u0000\u0004\nleng\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000a\u000ba\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001l\u0000\u0000\u0002n\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000`_\u0001\n`\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001_\u0000\u0000\u0006\u0001\u0000\u0003^\u0001\u0001\n^\u0000\u0004\ndesc\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001]\\\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000[\u000b[\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0001]\u0000\u0000\u0001\\\u0000\u0000\u0006\u0001\u0000\u0003Z\u0001\u0001\nZ\u0000\u0004\ndiag\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001YX\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000W\u000bW\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u0001Y\u0000\u0000\u0001X\u0000\u0000\u0006\u0001\u0000\u0003V\u0001\u0001\nV\u0000\u0004\ncmvr\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001UT\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000S\u000bS\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u0001U\u0000\u0000\u0001T\u0000\u0000\u0006\u0001\u0000\u0003R\u0001\u0001\nR\u0000\u0004\ncmnm\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001QP\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u0001Q\u0000\u0000\u0001P\u0000\u0000\u0006\u0001\u0000\u0003N\u0001\u0001\nN\u0000\u0004\nrcod\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ML\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000K\u000bK\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u0001M\u0000\u0000\u0001L\u0000\u0000\u0006\u0001\u0000\u0003J\u0001\u0001\nJ\u0000\u0004\norig\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001IH\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000G\u000bG\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0001I\u0000\u0000\u0001H\u0000\u0000\u0006\u0001\u0000\u0003F\u0001\u0001\nF\u0000\u0004\npbti\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001ED\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000C\u000bC\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0001E\u0000\u0000\u0001D\u0000\u0000\u0006\u0001\u0000\u0003B\u0001\u0001\nB\u0000\u0004\nconf\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001A@\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0001A\u0000\u0000\u0001@\u0000\u0000\u0006\u0001\u0000\u0003>\u0001\u0001\n>\u0000\u0004\nclcd\r\u0001\u0000\u0003l\u0000\n\u0000\u0000\u0001=<\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000;\u000b;\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0001=\u0000\u0000\u0001<\u0000\u0000\u0006\u0001\u0000\u0003:\u00019\n:\u0000\u0004\ndsav\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u00069\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00007\u000b7\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000654\u00016\u0000\u0000\u00015\u0000\u0000\u00014\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u00003\u0001\u0001\u00013\u0000\u0000\f\u0001\u00009\u00003 On failure this will have random garbage appended.\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000f\u0000 \u0000O\u0000n\u0000 \u0000f\u0000a\u0000i\u0000l\u0000u\u0000r\u0000e\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000w\u0000i\u0000l\u0000l\u0000 \u0000h\u0000a\u0000v\u0000e\u0000 \u0000r\u0000a\u0000n\u0000d\u0000o\u0000m\u0000 \u0000g\u0000a\u0000r\u0000b\u0000a\u0000g\u0000e\u0000 \u0000a\u0000p\u0000p\u0000e\u0000n\u0000d\u0000e\u0000d\u0000.\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003Q\u0000\u0000\u0000\u0001\"\u0001\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0002c\u0000\u0000\u0000\u0000\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0000\u00002\u000b2\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0000\u00001\n1\u0000\u0004\nlong\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u00000\u000b0\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\/.-\n\/\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001.\u0000\u0000\u0002-\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0001\u0002\u0001\"\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0001\u0002\u0001\u000f\u0001\u0001\r\u0001\u0000\u00037\u0001\u0000\u0001\u0003\u0001\u000f,\u0001\u0001\n,\u0000\u0004\nctxt\r\u0001\u0000\u0001m\u0000\u0000\u0001\t\u0001\u000b+\u0003+\u0000\u0003\r\u0001\u0000\u0001m\u0000\u0000\u0001\f\u0001\u000e*\u0003*\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003)\u000b)\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000(\u000b(\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u0002\u0001\u0000\u0002\u0001'\r\u0001\u0000\u0001L\u0000\u0000\u0001\u0012\u0001\"\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001!\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u001d\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u001b\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001\u0012\u0001\u0017\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0012\u0001\u0015\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000(\r\u0001\u0000\u0001o\u0000\u0000\u0001\u0015\u0001\u0016&\u000b&\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u001a\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0001\u0000\u0001o\u0000\u0000\u0001\u001b\u0001\u001c%\u000b%\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\r\u0001\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002'\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001#\u0001#$#\"\u0001$\u0000\u0000\u0001#\u0000\u0000\u0001\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001#\u00010\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001.\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001*\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001#\u0001(\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001#\u0001$!\u000b!\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001$\u0001'\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0001o\u0000\u0000\u0001(\u0001) \u000b \u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\r\u0001\u0000\u0001m\u0000\u0000\u0001*\u0001-\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u001f\u000b\u001f\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00011\u00011\u001e\u001d\u001c\u0001\u001e\u0000\u0000\u0001\u001d\u0000\u0000\u0001\u001c\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0005Y\u0000\u0000\u00011\u0001\u0001\u001b\u0001\u0001\u001a\r\u0001\u0000\u0001k\u0000\u0000\u0001@\u0001{\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001@\u0001R\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001P\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001L\u0001\u0001\r\u0001\u0000\u0002b\u0000\u0000\u0001@\u0001E\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001@\u0001A\u0019\u000b\u0019\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \r\u0001\u0000\u0003l\u0000\u0005\u0001E\u0001K\u0001\u0018\u0017\r\u0001\u0000\u0002n\u0000\u0000\u0001E\u0001K\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001F\u0001K\u0016\u0001\n\u0016\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001I\u0001J\u0015\u000b\u0015\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001E\u0001F\u0014\u000b\u0014\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0018\u0000\u0000\u0001\u0017\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0002\u0000\n\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0013\u000b\u0013\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002r\u0000\u0000\u0001S\u0001k\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0001S\u0001g\u0012\u0011\u0001\n\u0012\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0011\u0000\u0000\u0006\u0001\u0000\u0003\u0010\u0001\u0001\n\u0010\u0000\u0004\nmr11\r\u0001\u0000\u0003l\u0000\u0005\u0001W\u0001]\u0001\u000f\u000e\r\u0001\u0000\u0002n\u0000\u0000\u0001W\u0001]\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0001X\u0001]\r\u0001\n\r\u0000\u0004\ncobj\r\u0001\u0000\u0001o\u0000\u0000\u0001[\u0001\\\f\u000b\f\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0001W\u0001X\u000b\u000b\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u000f\u0000\u0000\u0001\u000e\u0000\u0000\u0006\u0001\u0000\u0003\n\u0002\u0000\t\n\n\u0000\u0004\npbid\r\u0002\u0000\u0000\u0001o\u0000\u0000\u0001`\u0001a\b\u000b\b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\t\u0000\u0000\r\u0001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u000b\u0007\u0000\u00060\u0000\u0002ok\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0001\u0006\r\u0002\u0001\u0000\u0002r\u0000\u0000\u0001l\u0001{\u0002\u0002\u0002\u0003\r\u0002\u0002\u0000\u0002b\u0000\u0000\u0001l\u0001y\u0002\u0004\u0002\u0005\r\u0002\u0004\u0000\u0002b\u0000\u0000\u0001l\u0001u\u0002\u0006\u0002\u0007\r\u0002\u0006\u0000\u0002b\u0000\u0000\u0001l\u0001q\u0002\b\u0002\t\r\u0002\b\u0000\u0001o\u0000\u0000\u0001l\u0001m\u0005\u000b\u0005\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\t\u0000\u0001m\u0000\u0000\u0001m\u0001p\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0014\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \r\u0002\u0007\u0000\u0001o\u0000\u0000\u0001q\u0001t\u0004\u000b\u0004\u0000\u00060\u0000\u0002ok\u0000\u0000\r\u0002\u0005\u0000\u0001m\u0000\u0000\u0001u\u0001x\u0002\f\u000e\u0002\f\u0000\u0001\u0002\r\u0011\u0002\r\u0000\u0002\u0000\n\r\u0002\u0003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u000b\u0003\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0006\u0000\u0000\u000b\u001b\u0000\u00050\u0000\u0001i\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u00014\u00015\u0002\u0003\u0002\u0000\u0001\r\u0001\u0000\u0003l\u0000\u0005\u00015\u0001;\u0002\u000e\u0001\u0000\r\u0002\u000e\u0000\u0002n\u0000\u0000\u00015\u0001;\u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00011\u0000\u0000\u00016\u0001:\n\u0000\u0004\nleng\r\u0002\u0010\u0000\u0001o\u0000\u0000\u00015\u00016\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u0011\u0002\u0012\r\u0002\u0011\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0012\u0000\u0002\u0002\u0013\u0002\u0014\r\u0002\u0013\u0000\u0002r\u0000\u0000\u0001\u0001\u0002\u0015\u0002\u0016\r\u0002\u0015\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0017\u0002\u0018\r\u0002\u0017\u0000\u0002b\u0000\u0000\u0001\u0001\u0002\u0019\u0002\u001a\r\u0002\u0019\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002\u001a\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001b\u000e\u0002\u001b\u0000\u0001\u0002\u001c\u0011\u0002\u001c\u00006\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\r\u0002\u0018\u0000\u0001m\u0000\u0000\u0001\u0001\u0002\u001d\u000e\u0002\u001d\u0000\u0001\u0002\u001e\u0011\u0002\u001e\u0000\u0002\u0000\n\r\u0002\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0002\u0002\u0014\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0003I\u0000\u0002\u0001\u0001\u0002 \n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0006\u0002 \u0000\u0003\u0002!\u0002\"\n\u0000\u0004\npbid\r\u0002!\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u0006\u0002\"\u0000\u0003\u0002#\n\u0000\u0004\nkeyi\r\u0002#\u0000\u0001m\u0000\u0000\u0001\u0001\u0007\u0000\u0004\u0000\u0001\u0002\u0015\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002$\u0002%\r\u0002$\u0000\u0003l\u0000\u0002\u0001\u0001\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002%\u0000\u0002\u0002&\r\u0002&\u0000\u0001L\u0000\u0000\u0001\u0001\u0002'\r\u0002'\u0000\u0002b\u0000\u0000\u0001\u0001\u0002(\u0002)\r\u0002(\u0000\u0002b\u0000\u0000\u0001\u0001\u0002*\u0002+\r\u0002*\u0000\u0002b\u0000\u0000\u0001\u0001\u0002,\u0002-\r\u0002,\u0000\u0002b\u0000\u0000\u0001\u0001\u0002.\u0002\/\r\u0002.\u0000\u0001m\u0000\u0000\u0001\u0001\u00020\u000e\u00020\u0000\u0001\u00021\u0011\u00021\u0000\u0002\u0000(\r\u0002\/\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\r\u0002-\u0000\u0001m\u0000\u0000\u0001\u0001\u00022\u000e\u00022\u0000\u0001\u00023\u0011\u00023\u0000\n\u0000,\u0000 \u0000\"\u0000\"\u0000\"\r\u0002+\u0000\u0001o\u0000\u0000\u0001\u0001\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\r\u0002)\u0000\u0001m\u0000\u0000\u0001\u0001\u00024\u000e\u00024\u0000\u0001\u00025\u0011\u00025\u0000\b\u0000\"\u0000\"\u0000\"\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u00026\u000f\u00026\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000RADR\u0000\u0000\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001H\u0000\u0002\u0000\u0001\fLeopard 9C31\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u1684H+\u0000\u0000\u0000\u0000\u0000\tRadar.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u000b\u0004\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u000e$\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0000\u0002\u0000#Leopard 9C31:Applications:Radar.app\u0000\u0000\u000e\u0000\u0014\u0000\t\u0000R\u0000a\u0000d\u0000a\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000 \u00009\u0000C\u00003\u00001\u0000\u0012\u0000\u0016Applications\/Radar.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u00027\r\u00027\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0012\u00028\u00029\u0002:\u0002;\u0002<\u0002=\u0002>\u0002?\u0002@\u0002A\u0002B\u0002C\u0002D\u0001\u0000\u0000\u0010\u00028\u0000\u0010\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u00029\u0000\u0007\u0010\u0000\b\u0002E\u0002F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0002E\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0002F\u0000\u0016\u0000\u0015\u0000\u001e\n\u0000\u0004\nleng\u000b\u0000\u00060\u0000\u0001n\u0000\u0001N\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u0003\u0000\b\n\u0000\u0004\ncobj\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u0003\u0000\u0004\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u0003\u0000\u0005\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u0003\u0000\u0006\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u0003\u0000\u0007\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u0003\u0000\t\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u0011\u0000,EOEO\u0004\u001d\u0000\t)j\u0015Y\u0000\u0003hOk\/EOl\/EOm\/EO\/EO\/EO\/EOa\u0000\u0010\/E`\u0000\u0011O\/E`\u0000\u0012O\u0002\u001d\u0000\u0016[\\[Za\u0000\u0013\\Z2E`\u0000\u0014Y\u0000\bjvE`\u0000\u0014O*_\u0000\u0011_\u0000\u0012_\u0000\u0014a\u0000\u0013+\u0000\u0015EO\u000f\u000f\u000e\u0002:\u0000\u0007\u0010\u0000\u0002G\u0002H\u000b\u0000\u001c0\u0000\fsubmitreport\u0000\fsubmitReport\u000e\u0000\u0002\u0004\u0002I\u0003\u0000\t\u000e\u0002I\u0000\t\u0000\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u0002\u0000\u0000\u0010\u0002G\u0000\u0011\u000b\u0000\"0\u0000\u000fmycomponentname\u0000\u000fmyComponentName\u000b\u0000(0\u0000\u0012mycomponentversion\u0000\u0012myComponentVersion\u000b\u0000,0\u0000\u0014myclassificationcode\u0000\u0014myClassificationCode\u000b\u0000\u00180\u0000\nmypersonid\u0000\nmyPersonID\u000b\u0000 0\u0000\u000emyproblemtitle\u0000\u000emyProblemTitle\u000b\u0000\u001e0\u0000\rmydescription\u0000\rmyDescription\u000b\u0000\u00100\u0000\u0006mydiag\u0000\u0006myDiag\u000b\u0000\u00140\u0000\bmyconfig\u0000\bmyConfig\u000b\u0000\u00120\u0000\u0007myfiles\u0000\u0007myFiles\u000b\u0000.0\u0000\u0015myreproducibilitycode\u0000\u0015myReproducibilityCode\u000b\u0000\u001a0\u0000\u000bsavenewprob\u0000\u000bsaveNewProb\u000b\u0000\u00140\u0000\bbugidint\u0000\bbugIDInt\u000b\u0000\u00070\u0000\u0003res\u0000\u0000\u000b\u0000\u00050\u0000\u0001i\u0000\u0000\u000b\u0000\u000e0\u0000\u0005bugid\u0000\u0005bugID\u000b\u0000\u001c0\u0000\ferrormessage\u0000\ferrorMessage\u000b\u0000\u00060\u0000\u0002ok\u0000\u0000\u0010\u0002H\u0000@\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0004\u0001\u0006\u0001\u000e\u0001\u001a\u0001\u001c\u0001(\u0001*\u00016\u00018\u0001D\u0001F\u0001R\u0001T\u0001`\u0001b\u0001t\u0001v\u0001{\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\n\u0002\f\u0002\u001b\u0002\u001d\u00020\u00022\u00024\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nleng\n\u0000\u0004\ncobj\n\u0000\u0004\ndesc\n\u0000\u0004\ndiag\n\u0000\u0004\ncmvr\n\u0000\u0004\ncmnm\n\u0000\u0004\nrcod\n\u0000\u0004\norig\n\u0000\u0004\npbti\n\u0000\u0004\nconf\n\u0000\u0004\nclcd\n\u0000\u0004\ndsav\u0003\u0000\u0014\n\u0000\u0018.rdrlnprb****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nlong\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0004\nctxt\n\u0000\u0004\nmr11\n\u0000\u0004\npbid\u0003\u0000\u0004\n\u0000\u0018.rdrladdfutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nkeyi\u0007\u0000\u0004\u0000\u0001\u0002\u0015\n\u0000\u0018.rdrladkilong\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000obj \u0011\u0001\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0001kEOfEOjEOEOf\u001d\u0000%%%EO%%%EO%%%EO%EO%%%EO%%%EO%%%EOa\u0000\u0010%%a\u0000\u0011%EOa\u0000\u0012%%a\u0000\u0013%EOa\u0000\u0014%%a\u0000\u0015%EO\u0017\u0000+ka\u0000\u0016,Ekh\u001c\u0000\ra\u0000\u0017%%a\u0000\u0018%a\u0000\u0019\/%a\u0000\u001a%E[OYY\u0000*a\u0000\u001ba\u0000\u001ca\u0000\u001da\u0000\u001ea\u0000\u001fa\u0000 a\u0000!a\u0000\"a\u0000#a\u0000$a\u0000%\f\u0000&EO\u0014\u0000\fa\u0000'&EW\u0000'X\u0000(\u0000)[a\u0000*\\[Zm\\Zi2EOa\u0000+%a\u0000,%%a\u0000-%\u000fOa\u0000.%%a\u0000\/%EO\u0017\u0000Nka\u0000\u0016,Ekh\u001c\u0000\ra\u00000%a\u0000\u0019\/%a\u00001%EO*a\u00002a\u0000\u0019\/a\u00003a\u00004\f\u00005E^\u0000\u0010Oa\u00006%]\u0000\u0010%a\u00007%E[OYOa\u00008%a\u00009%EO*a\u00003a\u0000:a\u0000;a\u00004\f\u0000<Oa\u0000=%a\u0000>%%a\u0000?%\u000fU\u000f\u0003\u0000\t\u000e\u0002;\u0000\u0001\u0002J\u0011\u0002J\u0001\b\u0000(\u00006\u00002\u00005\u00007\u00001\u00008\u00007\u0000,\u0000 \u0000\"\u0000\"\u0000\"\u0000F\u0000i\u0000l\u0000e\u0000d\u0000:\u0000 \u00006\u00002\u00005\u00007\u00001\u00008\u00007\u0000\n\u0000A\u0000t\u0000t\u0000a\u0000c\u0000h\u0000e\u0000d\u0000:\u0000 \u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00001\u00005\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000W\u00005\u0000e\u00000\u00009\u0000y\u0000.\u0000h\u0000t\u0000m\u0000l\u0000\n\u0000 \u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000:\u0000 \u00001\u0000\n\u0000\n\u0000A\u0000d\u0000d\u0000e\u0000d\u0000 \u0000k\u0000e\u0000y\u0000w\u0000o\u0000r\u0000d\u0000:\u0000 \u0000L\u0000L\u0000V\u0000M\u0000_\u0000C\u0000H\u0000E\u0000C\u0000K\u0000E\u0000R\u0000\n\u0000\"\u0000\"\u0000\"\u0000)\u000e\u0002<\u0000\u0001\u0002K\u0011\u0002K\u00008\u0000B\u0000u\u0000g\u0000s\u0000 \u0000f\u0000o\u0000u\u0000n\u0000d\u0000 \u0000b\u0000y\u0000 \u0000C\u0000l\u0000a\u0000n\u0000g\u0000 \u0000A\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u000e\u0002=\u0000\u0001\u0002L\u0011\u0002L\u0000\u0002\u0000X\u000e\u0002>\u0000\u0001\u0002M\u0011\u0002M\u0000\u0002\u00007\u000e\u0002?\u0000\u0001\u0002N\u0011\u0002N\u0000\u0000\u000e\u0002@\u0000\u0001\u0002O\u0011\u0002O\u0000\u001e\u0000d\u0000e\u0000a\u0000d\u0000 \u0000a\u0000s\u0000s\u0000i\u0000g\u0000n\u0000m\u0000e\u0000n\u0000t\u000e\u0002A\u0000\u0001\u0002P\u0011\u0002P\u0001R\u0000B\u0000u\u0000g\u0000 \u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000e\u0000d\u0000 \u0000b\u0000y\u0000 \u0000t\u0000h\u0000e\u0000 \u0000c\u0000l\u0000a\u0000n\u0000g\u0000 \u0000s\u0000t\u0000a\u0000t\u0000i\u0000c\u0000 \u0000a\u0000n\u0000a\u0000l\u0000y\u0000z\u0000e\u0000r\u0000.\u0000\r\u0000\n\u0000\r\u0000\n\u0000D\u0000e\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000i\u0000o\u0000n\u0000:\u0000 \u0000d\u0000e\u0000a\u0000d\u0000 \u0000a\u0000s\u0000s\u0000i\u0000g\u0000n\u0000m\u0000e\u0000n\u0000t\u0000\r\u0000\n\u0000F\u0000i\u0000l\u0000e\u0000:\u0000 \u0000\/\u0000V\u0000o\u0000l\u0000u\u0000m\u0000e\u0000s\u0000\/\u0000D\u0000a\u0000t\u0000a\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000k\u0000r\u0000e\u0000m\u0000e\u0000n\u0000e\u0000k\u0000\/\u0000l\u0000l\u0000v\u0000m\u0000\/\u0000t\u0000o\u0000o\u0000l\u0000s\u0000\/\u0000c\u0000l\u0000a\u0000n\u0000g\u0000\/\u0000t\u0000e\u0000s\u0000t\u0000\/\u0000A\u0000n\u0000a\u0000l\u0000y\u0000s\u0000i\u0000s\u0000\/\u0000d\u0000e\u0000a\u0000d\u0000-\u0000s\u0000t\u0000o\u0000r\u0000e\u0000s\u0000.\u0000c\u0000\r\u0000\n\u0000L\u0000i\u0000n\u0000e\u0000:\u0000 \u00003\u00003\u0000\r\u0000\n\u0000\r\u0000\n\u000e\u0002B\u0000\u0001\u0002Q\u0011\u0002Q\u0000\u0000\u000e\u0002C\u0000\u0001\u0002R\u0011\u0002R\u0000\u0000\u000e\u0002D\u0000\u0002\u0004\u0002S\u0003\u0000\u0001\u000e\u0002S\u0000\u0001\u0000\u0002T\u000e\u0002T\u0000\u0001\u0002U\u0011\u0002U\u0000`\u0000\/\u0000t\u0000m\u0000p\u0000\/\u0000s\u0000c\u0000a\u0000n\u0000-\u0000b\u0000u\u0000i\u0000l\u0000d\u0000-\u00002\u00000\u00000\u00008\u0000-\u00000\u00009\u0000-\u00003\u00000\u0000-\u00001\u00005\u0000\/\u0000r\u0000e\u0000p\u0000o\u0000r\u0000t\u0000-\u0000W\u00005\u0000e\u00000\u00009\u0000y\u0000.\u0000h\u0000t\u0000m\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"4181fd73b1a998202f6ce356a44b979ef7102f35","subject":"update Reminders to choose first list in alphabetical order","message":"update Reminders to choose first list in alphabetical order\n","repos":"dreki\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,dreki\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,onecrayon\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,bopo\/PopClip-Extensions,Kapeli\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,a-b\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions,bopo\/PopClip-Extensions,bopo\/PopClip-Extensions","old_file":"source\/Reminders\/RemindersNewItem.applescript","new_file":"source\/Reminders\/RemindersNewItem.applescript","new_contents":"on sortList(unsortedList)\n\tset oldDelimiters to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to (ASCII character 10)\n\tset sortedList to paragraphs of (do shell script \"echo \" & quoted form of (unsortedList as string) & \"| sort -d -f\")\n\tset AppleScript's text item delimiters to oldDelimiters\n\treturn sortedList\nend sortList\n\n-- sort the list\ntell application \"Reminders\"\n\tactivate\n\tget the name of every account\n\tset theAccount to name of first account\n\ttell account theAccount\n\t\tset allLists to the name of every list\n\tend tell\nend tell\nset sortedList to sortList(allLists)\nset theList to first item of sortedList\n\ntell application \"Reminders\"\n\ttell account theAccount to set myReminder to (make new reminder at list theList with properties {name:\"{popclip text}\"})\nend tell","old_contents":"tell application \"Reminders\"\n\tactivate\n\tset theAccount to name of first account\n\ttell account theAccount\n\t\tset theList to name of first list\n\t\tset myReminder to (make new reminder at list theList with properties {name:\"{popclip text}\"})\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7547a199d8282ec824f0fcf398271c775515e12e","subject":"Find chrome tab URL by regex match; Close #536","message":"Find chrome tab URL by regex match; Close #536\n","repos":"nossas\/bonde-client,nossas\/bonde-client,nossas\/bonde-client","old_file":"tools\/chrome.applescript","new_file":"tools\/chrome.applescript","new_contents":"-- Copyright (c) 2015-present, Facebook, Inc.\n-- All rights reserved.\n--\n-- This source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\n-- of patent rights can be found in the PATENTS file in the same directory.\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n\n -- Find by tab URL regex match\n set tabURL to theTab's URL as string\n set escaped to do shell script \"echo '\" & theURL & \"' | sed 's\/\\\\\/\/\\\\\\\\\\\\\/\/g'\"\n set regex to \"echo '\" & tabURL & \"' | sed 's\/.*\" & escaped & \".*\/*match*(&)\/'\" as string\n set execShell to do shell script regex\n set match to execShell starts with \"*match*\"\n\n if match then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","old_contents":"-- Copyright (c) 2015-present, Facebook, Inc.\n-- All rights reserved.\n--\n-- This source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\n-- of patent rights can be found in the PATENTS file in the same directory.\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"agpl-3.0","lang":"AppleScript"} {"commit":"a0ba90e349cb5bf9d38a68ae5ddd4ae4c0652cc6","subject":"\u8a2d\u5b9a Mac Terminal Title","message":"\u8a2d\u5b9a Mac Terminal Title\n","repos":"codecanaan\/codecanaan,codecanaan\/codecanaan,codecanaan\/codecanaan,codecanaan\/codecanaan,codecanaan\/codecanaan,codecanaan\/codecanaan,codecanaan\/codecanaan","old_file":"web-app\/webstart\/toolkits\/terminal.scpt","new_file":"web-app\/webstart\/toolkits\/terminal.scpt","new_contents":"on run argv\n tell app \"Terminal\"\n activate\n set tab1 to do script item 1 of argv\n\t\ttell tab1 to set custom title to \"CodeCanaan\"\n end tell\nend run\n","old_contents":"on run argv\n tell app \"Terminal\"\n activate\n\t\tset custom title to \"CodeCanaan\"\n set tab1 to do script item 1 of argv\n end tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"58ad2b2edf36119c5a4d4283a8a0ddd29c00f474","subject":"applescript v2.0.1","message":"applescript v2.0.1\n","repos":"danijeljames\/remparallels","old_file":"Remove Parallels.scpt","new_file":"Remove Parallels.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"672818246de129e65ca44632fcf4e26dd90e2b04","subject":"Add an image to a slide (with an image placeholder)","message":"Add an image to a slide (with an image placeholder)\n","repos":"persquare\/md2keynote","old_file":"keynote.applescript","new_file":"keynote.applescript","new_contents":"on newPresentation(themeName)\n tell application \"Keynote\"\n \tactivate\n \t-- set the chosenTheme to themeName\n\n\n \tset targetWidth to 1024 -- 1440 <-- higher resolution\n \tset targetHeight to 768 -- 1080 <-- higher resolution\n\n \tset thisDocument to \u00ac\n \t\tmake new document with properties \u00ac\n {document theme:theme (themeName as string)}\n \t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n return name of thisDocument\n end tell\nend newPresentation\n\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n end tell\nend finalize\n\non themeMasters(docname)\n -- tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n return names\n end tell\nend themeMasters\n\non addImage(docname, filepath)\n (*\n FIXME: Use slide ID to adress slide instead of \"current slide\"\n *)\n tell application \"Keynote\"\n \ttell document named docname\n \t\ttell the current slide\n\t\t\t\n \t\t\t-- TO REPLACE A PLACEHOLDER OR EXISTING IMAGE:\n \t\t\tset thisPlaceholderImageItem to image 1\n \t\t\t-- change the value of the \u201cfile name\u201d property of the image to be an HFS file reference to the replacement image file\n set macPath to POSIX file filepath as Unicode text\n \t\t\tset file name of thisPlaceholderImageItem to \u00ac\n \t\t\t\talias macPath\n\t\t\t\n \t\tend tell\n \tend tell\n end tell\nend addImage\n\n","old_contents":"on newPresentation(themeName)\n tell application \"Keynote\"\n \tactivate\n \t-- set the chosenTheme to themeName\n\n\n \tset targetWidth to 1024 -- 1440 <-- higher resolution\n \tset targetHeight to 768 -- 1080 <-- higher resolution\n\n \tset thisDocument to \u00ac\n \t\tmake new document with properties \u00ac\n {document theme:theme (themeName as string)}\n \t\t\t--{document theme:theme (themeName as string), width:targetWidth, height:targetHeight}\n return name of thisDocument\n end tell\nend newPresentation\n\n\non createSlide(docname, masterSlideName, thisSlideTitle, thisSlideBody)\n\ttry\n\t\ttell application \"Keynote\"\n\t\t\ttell document named docname\n\t\t\t\tset thisSlide to make new slide with properties {base slide:master slide masterSlideName}\n\t\t\t\ttell thisSlide\n\t\t\t\t\t-- set the transition properties to {transition effect:dissolve, transition duration:defaultTransitionDuration, transition delay:defaultTransitionDelay, automatic transition:defaultAutomaticTransition}\n\t\t\t\t\tif title showing is true then\n\t\t\t\t\t\tset the object text of the default title item to thisSlideTitle\n\t\t\t\t\tend if\n\t\t\t\t\tif body showing is true then\n\t\t\t\t\t\tset the object text of the default body item to thisSlideBody\n\t\t\t\t\tend if\n\t\t\t\tend tell\n\t\t\tend tell\n return thisSlide\n\t\tend tell\n\ton error\n\t\treturn 0\n\tend try\nend createSlide\n\non finalize(docname)\n\ttell application \"Keynote\"\n\t\ttell document named docname to delete slide 1\n end tell\nend finalize\n\non themeMasters(docname)\n -- tell application \"Keynote\" to get the name of every master slide of thisDocument\n\ttell application \"Keynote\"\n\t\tset names to the name of every master slide of document named docname\n return names\n end tell\nend themeMasters\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"980d32d60185b8cc2dd30108e582afe17da7d1bd","subject":"fix protocol","message":"fix protocol\n","repos":"rse\/slideshow,rse\/slideshow","old_file":"connector-osx-kn.scpt","new_file":"connector-osx-kn.scpt","new_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-kn.js\n-- Purpose: connector engine for Apple Keynote 5 under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non knGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Keynote\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Keynote\"\n if playing then\n set state to \"viewing\"\n else if (get count of slides of front document) > 0 then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend knGetState\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n if playing then\n return (get slide number of current slide of front document)\n else\n return (get slide number of current slide of front document)\n end if\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to knGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to knGetCurSlide()\n set slides to knGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if knGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n set thePresentation to front document\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to (title of theSlide) as string\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to (notes of theSlide) as string\n set theNote to (my filterText(theNote, my asciiCharset()))\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to knGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Keynote\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Keynote\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Keynote\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n close front document\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Keynote\"\n start from (slide 1 of front document)\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n stop slideshow (slideshow 1)\n end tell\n else if command is \"PAUSE\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"RESUME\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item 1 of slides of slideshow 1)\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (get count of slides of slideshow 1) of slides of slideshow 1)\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (arg as integer) of slides of slideshow 1)\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show previous\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show next\n end tell\n end if\n return \"{ \\\"response\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"PAUSE\" \u00ac\n or cmd is \"RESUME\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","old_contents":"--\n-- slideshow -- Observe and Control Slideshow Applications\n-- Copyright (c) 2014 Ralf S. Engelschall <http:\/\/engelschall.com>\n--\n-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License (MPL), version 2.0. If a copy of the MPL was not distributed\n-- with this file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n--\n-- File: connector-osx-kn.js\n-- Purpose: connector engine for Apple Keynote 5 under Mac OS X\n-- Language: AppleScript\n--\n\n-- utility function\non filterText(this_text, allowed_chars)\n set new_text to \"\"\n repeat with this_char in this_text\n set x to the offset of this_char in allowed_chars\n if x is not 0 then\n set new_text to (new_text & this_char) as string\n end if\n end repeat\n return new_text\nend filterText\n\n-- utility function\non replaceText(this_text, search_string, replacement_string)\n set AppleScript's text item delimiters to the search_string\n set the item_list to every text item of this_text\n set AppleScript's text item delimiters to the replacement_string\n set this_text to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return this_text\nend replace_chars\n\n-- utility function\non asciiCharset()\n set charset to \" \\\"'!#$%()*+,-.\/:;<=>?@[\\\\]^_{|}~\"\n set charset to (charset & \"0123456789\")\n set charset to (charset & \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n set charset to (charset & \"abcdefghijklmnopqrstuvwxyz\")\n return charset\nend asciiCharset\n\n-- get application state\non knGetState()\n set state to \"closed\"\n tell application \"System Events\"\n set is_running to (exists (some process whose name is \"Keynote\"))\n end tell\n if is_running then\n try\n set state to \"running\"\n tell application \"Keynote\"\n if playing then\n set state to \"viewing\"\n else if (get count of slides of front document) > 0 then\n set state to \"editing\"\n end if\n end tell\n on error errMsg\n end try\n end if\n return state\nend knGetState\n\n-- get Apple Keynote current slide\non knGetCurSlide()\n try\n tell application \"Keynote\"\n if playing then\n return (get slide number of current slide of front document)\n else\n return (get slide number of current slide of front document)\n end if\n end tell\n on error errMsg\n return 0\n end try\nend knGetCurSlide\n\n-- get Apple Keynote maximum slide\non knGetMaxSlide()\n try\n tell application \"Keynote\"\n return (get count of slides of front document)\n end tell\n on error errMsg\n return 0\n end try\nend knGetMaxSlide\n\n-- the STATE command\non cmdSTATE()\n set state to knGetState()\n if state is \"closed\" then\n set position to 0\n set slides to 0\n else\n set position to knGetCurSlide()\n set slides to knGetMaxSlide()\n end if\n return (\"{ \\\"response\\\": { \" & \u00ac\n \"\\\"state\\\": \\\"\" & state & \"\\\", \" & \u00ac\n \"\\\"position\\\": \" & position & \", \" & \u00ac\n \"\\\"slides\\\": \" & slides & \" \" & \u00ac\n \"} }\")\nend cmdSTATE\n\n-- the INFO command\non cmdINFO()\n set output to \"\"\n if knGetMaxSlide() is 0 then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n set thePresentation to front document\n set theTitles to \"\"\n set theNotes to \"\"\n set slideCount to (get count of slides of thePresentation)\n repeat with slideNum from 1 to slideCount\n set theSlide to slide slideNum of thePresentation\n\n set theTitle to (title of theSlide) as string\n if theTitles is not \"\" then\n set theTitles to (theTitles & \", \")\n end if\n set theTitles to (theTitles & \"\\\"\" & (my replaceText(theTitle, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n set theNote to (notes of theSlide) as string\n set theNote to (my filterText(theNote, my asciiCharset()))\n if theNotes is not \"\" then\n set theNotes to (theNotes & \", \")\n end if\n set theNotes to (theNotes & \"\\\"\" & (my replaceText(theNote, \"\\\"\", \"\\\\\\\"\")) & \"\\\"\")\n\n end repeat\n set theTitles to (\"[ \" & theTitles & \" ]\")\n set theNotes to (\"[ \" & theNotes & \" ]\")\n set output to (\"{ \\\"response\\\": { \\\"titles\\\": \" & theTitles & \", \\\"notes\\\": \" & theNotes & \" } }\")\n end tell\n return output\nend cmdINFO\n\n-- the control commands\non cmdCTRL(command, arg)\n set state to knGetState()\n if command is \"BOOT\" then\n if state is not \"closed\" then\n error \"application already running\"\n end if\n tell application \"Keynote\"\n activate\n end tell\n else if command is \"QUIT\" then\n if state is \"closed\" then\n error \"application already closed\"\n end if\n tell application \"Keynote\"\n quit\n end tell\n else if command is \"OPEN\" then\n if state is \"editing\" or state is \"viewing\" then\n error \"active presentation already existing\"\n end if\n tell application \"Keynote\"\n tell application \"Finder\" to set thePath to \u00ac\n POSIX file (POSIX path of (container of (path to me) as string) & (arg)) as alias\n open thePath\n end tell\n else if command is \"CLOSE\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n tell application \"Keynote\"\n close front document\n end tell\n else if command is \"START\" then\n if state is \"closed\" or state is \"running\" then\n error \"still no active presentation\"\n end if\n if state is \"viewing\" then\n error \"active presentation already viewing\"\n end if\n tell application \"Keynote\"\n start from (slide 1 of front document)\n end tell\n else if command is \"STOP\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n stop slideshow (slideshow 1)\n end tell\n else if command is \"PAUSE\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"RESUME\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n activate\n tell application \"System Events\" to keystroke \"b\"\n end tell\n else if command is \"FIRST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item 1 of slides of slideshow 1)\n end tell\n else if command is \"LAST\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (get count of slides of slideshow 1) of slides of slideshow 1)\n end tell\n else if command is \"GOTO\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show (item (arg as integer) of slides of slideshow 1)\n end tell\n else if command is \"PREV\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show previous\n end tell\n else if command is \"NEXT\" then\n if state is not \"viewing\" then\n error \"no active slideshow\"\n end if\n tell application \"Keynote\"\n show next\n end tell\n end if\n return \"{ \\\"result\\\": \\\"OK\\\" }\"\nend cmdCTRL\n\n-- main procedure\non run argv\n set cmd to item 1 of argv\n set arg to \"\"\n if count of argv is 2 then\n set arg to item 2 of argv\n end if\n try\n if cmd is \"STAT\" then\n set output to cmdSTATE()\n else if cmd is \"INFO\" then\n set output to cmdINFO()\n else if cmd is \"BOOT\" \u00ac\n or cmd is \"QUIT\" \u00ac\n or cmd is \"OPEN\" \u00ac\n or cmd is \"CLOSE\" \u00ac\n or cmd is \"START\" \u00ac\n or cmd is \"STOP\" \u00ac\n or cmd is \"PAUSE\" \u00ac\n or cmd is \"RESUME\" \u00ac\n or cmd is \"FIRST\" \u00ac\n or cmd is \"LAST\" \u00ac\n or cmd is \"GOTO\" \u00ac\n or cmd is \"PREV\" \u00ac\n or cmd is \"NEXT\" then\n set output to cmdCTRL(cmd, arg)\n else\n set output to \"{ \\\"error\\\": \\\"invalid command\\\" }\"\n end if\n on error errMsg\n set output to (\"{ \\\"error\\\": \\\"\" & errMsg & \"\\\" }\")\n end try\n copy output to stdout\nend run\n\n","returncode":0,"stderr":"","license":"mpl-2.0","lang":"AppleScript"} {"commit":"b9a768cd410115878d9321b838e81588fe587604","subject":"Add Shebang to Applescript","message":"Add Shebang to Applescript","repos":"mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes","old_file":"yes.applescript","new_file":"yes.applescript","new_contents":"#!\/usr\/bin\/osascript\n\non run args\n\tif count of args is greater than 0\n\t\tset applescript's text item delimiters to \" \"\n\t\tset pn to (args as string)\n\t\trepeat \n\t\t\tlog pn\n\t\tend\n\telse\n\t\trepeat\n\t\t\tlog \"y\"\n\t\tend\n\tend\nend\n\n","old_contents":"on run args\n\tif count of args is greater than 0\n\t\tset applescript's text item delimiters to \" \"\n\t\tset pn to (args as string)\n\t\trepeat \n\t\t\tlog pn\n\t\tend\n\telse\n\t\trepeat\n\t\t\tlog \"y\"\n\t\tend\n\tend\nend\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"82edc16f2b5c9baf9eb077a20e5687d830fc87c4","subject":"The width now fits the image","message":"The width now fits the image\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%404210\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 579, 4000}\n\t\t\tset the bounds to {30, 50, 579, 4000}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","old_contents":"tell application \"Finder\"\n\ttell disk \"Growl\"\n\t\topen\n\t\ttell container window\n\t\t\tset current view to icon view\n\t\t\tset toolbar visible to false\n\t\t\tset statusbar visible to false\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tclose\n\t\tset opts to the icon view options of container window\n\t\ttell opts\n\t\t\tset icon size to 56\n\t\t\tset arrangement to not arranged\n\t\tend tell\n\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\tset position of item \"Growl.prefPane\" to {45, 41}\n\t\tset position of item \"Extras\" to {162, 33}\n\t\t--set position of item \"Scripts\" to {36, 153}\n\t\tset position of item \"Growl Documentation.webloc\" to {128, 123}\n\t\tset position of item \"Growl version history.webloc\" to {265, 41}\n\t\tset position of item \"Get more styles.webloc\" to {383, 41}\n\t\tset position of item \"Uninstall Growl.app\" to {383, 123}\n\t\tupdate without registering applications\n\t\ttell container window\n\t\t\tset the bounds to {31, 50, 480, 350}\n\t\t\tset the bounds to {30, 50, 480, 350}\n\t\tend tell\n\t\tupdate without registering applications\n\tend tell\n\t--give the finder some time to write the .DS_Store file\n\tdelay 5\nend tell\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"868500539362416e585426baacd34b88436e46bd","subject":"Change viewer.xml to tundra-client.json and plugins.xml to tundra.json in AppleScript main.scpt","message":"Change viewer.xml to tundra-client.json and plugins.xml to tundra.json in AppleScript main.scpt\n","repos":"pharos3d\/tundra,realXtend\/tundra,BogusCurry\/tundra,pharos3d\/tundra,realXtend\/tundra,AlphaStaxLLC\/tundra,AlphaStaxLLC\/tundra,realXtend\/tundra,realXtend\/tundra,AlphaStaxLLC\/tundra,pharos3d\/tundra,AlphaStaxLLC\/tundra,pharos3d\/tundra,realXtend\/tundra,BogusCurry\/tundra,BogusCurry\/tundra,AlphaStaxLLC\/tundra,pharos3d\/tundra,BogusCurry\/tundra,realXtend\/tundra,BogusCurry\/tundra,BogusCurry\/tundra,pharos3d\/tundra,AlphaStaxLLC\/tundra","old_file":"tools\/OSX\/Installer\/Resources\/Scripts\/main.scpt","new_file":"tools\/OSX\/Installer\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\n\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\n\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u0000\r\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u0000H\u0000B Default handler when Tundra.app is double-clicked (normal launch)\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000c\u0000l\u0000i\u0000c\u0000k\u0000e\u0000d\u0000 \u0000(\u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000)\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0015\u0000\u001b\r\u0000\u001b\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0015\u0000\u001c\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000\u001f\u000e\u0000\u001f\u0000\u0001\u0000 \u0011\u0000 \u0001\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000t\u0000u\u0000n\u0000d\u0000r\u0000a\u0000-\u0000c\u0000l\u0000i\u0000e\u0000n\u0000t\u0000.\u0000j\u0000s\u0000o\u0000n\u0000 \u0000-\u0000-\u0000t\u0000r\u0000u\u0000s\u0000t\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000h\u0000t\u0000t\u0000p\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000l\u0000o\u0000c\u0000a\u0000l\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000f\u0000p\u0000s\u0000l\u0000i\u0000m\u0000i\u0000t\u0000 \u00006\u00000\u0000 \u0000-\u0000-\u0000h\u0000i\u0000d\u0000e\u0000_\u0000b\u0000e\u0000n\u0000i\u0000g\u0000n\u0000_\u0000o\u0000g\u0000r\u0000e\u0000_\u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000n\u0000o\u0000f\u0000i\u0000l\u0000e\u0000w\u0000a\u0000t\u0000c\u0000h\u0000e\u0000r\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000%\u0000&\u0001\u0000\u0000\f\u0000%\u0000;\u00005 Handler for opening Tundra with tundra:\/\/ URL format\u0000\u0002\u0000\u0000\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000j\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000u\u0000n\u0000d\u0000r\u0000a\u0000:\u0000\/\u0000\/\u0000 \u0000U\u0000R\u0000L\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0002\u0000$\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000*\u0000+\r\u0000*\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000,\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000-\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u00000\u00001\r\u00000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u00002\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0002\u0000\/\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u00005\u00006\r\u00005\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u00007\u00008\r\u00007\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u00008\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0002\u00004\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0019\u0000<\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000<\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0000=\u0000>\r\u0000=\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0000?\u0000@\r\u0000?\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000A\u0000B\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000B\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000h\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000t\u0000u\u0000n\u0000d\u0000r\u0000a\u0000.\u0000j\u0000s\u0000o\u0000n\u0000 \u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000\"\r\u0000@\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0001@\u0000\"\u0000 \u0000-\u0000-\u0000t\u0000r\u0000u\u0000s\u0000t\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000h\u0000t\u0000t\u0000p\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000l\u0000o\u0000c\u0000a\u0000l\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000f\u0000p\u0000s\u0000l\u0000i\u0000m\u0000i\u0000t\u0000 \u00006\u00000\u0000 \u0000-\u0000-\u0000h\u0000i\u0000d\u0000e\u0000_\u0000b\u0000e\u0000n\u0000i\u0000g\u0000n\u0000_\u0000o\u0000g\u0000r\u0000e\u0000_\u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000n\u0000o\u0000f\u0000i\u0000l\u0000e\u0000w\u0000a\u0000t\u0000c\u0000h\u0000e\u0000r\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000)\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u00008\u00002 Handler for opening txml files with double-click:\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000d\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000x\u0000m\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000c\u0000l\u0000i\u0000c\u0000k\u0000:\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000R\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u0000S\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000X\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000X\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0002\u0000U\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u0000[\u0000\\\r\u0000[\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000]\u0000^\r\u0000]\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u0000^\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0002\u0000Z\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0013\u0000c\u0000d\r\u0000c\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0011\u0000e\u0000f\r\u0000e\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\npsxp\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\u0002\u0000b\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003I\u0000\u0002\u0000\u0014\u0000\u001f\u0000i\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000i\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001b\u0000j\u0000k\r\u0000j\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0019\u0000l\u0000m\r\u0000l\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000o\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000L\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000s\u0000p\u0000l\u0000a\u0000s\u0000h\u0000 \u0000-\u0000-\u0000f\u0000i\u0000l\u0000e\u0000 \r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000$\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0002\u0000h\u0000\u0002\u0000t\r\u0000t\u0000\u0003I\u0000\u0000\u0000 \u0000*\u0000u\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0002\u0000u\u0000\u0002\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000!\u0000&\u0000w\u0000x\r\u0000w\u0000\u0002b\u0000\u0000\u0000!\u0000$\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u00002\u0000O\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000s\u0000c\u0000e\u0000n\u0000e\u0000 \u0000X\u0000M\u0000L\u0000 \r\u0000z\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\r\u0000x\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000}\u000e\u0000}\u0000\u0001\u0000~\u0011\u0000~\u0000B\u0000 \u0000f\u0000o\u0000r\u0000 \u0000v\u0000i\u0000e\u0000w\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000l\u0000o\u0000c\u0000a\u0000l\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000.\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000=\u00007 Helper function to format log messages for this script\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000n\u0000 \u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000l\u0000o\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\t\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0007\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000d\u0000a\u0000t\u0000e\u0000 \u0000 \u0000+\u0000'\u0000%\u0000Y\u0000-\u0000%\u0000m\u0000-\u0000%\u0000d\u0000 \u0000%\u0000H\u0000:\u0000%\u0000M\u0000:\u0000%\u0000S\u0000'\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nrtyp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\n\u0000\u0004\nTEXT\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0017\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000T\u0000 \u0000>\u0000>\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000L\u0000o\u0000g\u0000s\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000-\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000l\u0000o\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000+\u0000\u0000\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\u0010\u0000\u0000\u0003\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0010\u0000\u0000\u0005\u0000C\u0000E\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001a)j\f\u0000\u0000EO,EO%%%j\f\u0000\u0004\u000f\u000e\u0000\u0000\u0007\u0010\u0000Q\u0000\u0000\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u0002\u0000\u0000\u0010\u0000\u0000\u0004\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\u0010\u0000\u0000\b\u0000p\u0000r\u0000{\u0000}\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0011\u0000+)j\f\u0000\u0000EO,EO,EO%%%j\f\u0000\u0004O*%%k+\u0000\u0007\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\u0010\u0000\u0000\u0007\u0000\u0000\u0000\u0000\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0018l\f\u0000\u0003%%EO%%j\f\u0000\u0003\u000f\u000e\u0000\u0000\u0007\u0010\u0000~}\u0000\u0000|\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u0000\u0002\u0000\u0019{\u0002{\u0000\u0000\u0001~\u0000\u0000\u0002}\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u0006zyxw\u0000\u001fv\nz\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000by\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\nx\u0000\u0004\npsxp\u000bw\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\nv\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011|\u0000\u0016)j\f\u0000\u0000EO,EO%j\f\u0000\u0005\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u0007\r\u0000\u0007\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\n\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000\n\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0002\u0000\b\u0000\r\u0000\r\r\u0000\r\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u0000\u0000\f\u0000\u0016\u0000H\u0000B Default handler when Tundra.app is double-clicked (normal launch)\u0000\u0002\u0000\u0000\u000e\u0000\u0017\u0000\u0001\u0000\u0018\u0011\u0000\u0018\u0000\u0000 \u0000D\u0000e\u0000f\u0000a\u0000u\u0000l\u0000t\u0000 \u0000h\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000w\u0000h\u0000e\u0000n\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000.\u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000c\u0000l\u0000i\u0000c\u0000k\u0000e\u0000d\u0000 \u0000(\u0000n\u0000o\u0000r\u0000m\u0000a\u0000l\u0000 \u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000)\u0002\u0000\u0015\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0015\u0000\u001b\r\u0000\u001b\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0015\u0000\u001c\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u001c\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000\u001e\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000\u001f\u000e\u0000\u001f\u0000\u0001\u0000 \u0011\u0000 \u0001\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000v\u0000i\u0000e\u0000w\u0000e\u0000r\u0000.\u0000x\u0000m\u0000l\u0000 \u0000-\u0000-\u0000t\u0000r\u0000u\u0000s\u0000t\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000h\u0000t\u0000t\u0000p\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000l\u0000o\u0000c\u0000a\u0000l\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000f\u0000p\u0000s\u0000l\u0000i\u0000m\u0000i\u0000t\u0000 \u00006\u00000\u0000 \u0000-\u0000-\u0000h\u0000i\u0000d\u0000e\u0000_\u0000b\u0000e\u0000n\u0000i\u0000g\u0000n\u0000_\u0000o\u0000g\u0000r\u0000e\u0000_\u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000n\u0000o\u0000f\u0000i\u0000l\u0000e\u0000w\u0000a\u0000t\u0000c\u0000h\u0000e\u0000r\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001a\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000%\u0000&\u0001\u0000\u0000\f\u0000%\u0000;\u00005 Handler for opening Tundra with tundra:\/\/ URL format\u0000\u0002\u0000\u0000\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000j\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000t\u0000u\u0000n\u0000d\u0000r\u0000a\u0000:\u0000\/\u0000\/\u0000 \u0000U\u0000R\u0000L\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0002\u0000$\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000*\u0000+\r\u0000*\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000,\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000+\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0019\u0000-\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u00000\u00001\r\u00000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u00002\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u00002\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0002\u0000\/\u0000\u0002\u00003\u00004\r\u00003\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u00005\u00006\r\u00005\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u00007\u00008\r\u00007\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u00008\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0002\u00004\u0000\u0002\u00009\u0000:\r\u00009\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000:\u0000\u0002\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0019\u0000<\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000<\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0015\u0000=\u0000>\r\u0000=\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0000?\u0000@\r\u0000?\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000A\u0000B\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000B\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0000C\u000e\u0000C\u0000\u0001\u0000D\u0011\u0000D\u0000h\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000c\u0000o\u0000n\u0000f\u0000i\u0000g\u0000 \u0000p\u0000l\u0000u\u0000g\u0000i\u0000n\u0000s\u0000.\u0000x\u0000m\u0000l\u0000 \u0000-\u0000-\u0000l\u0000o\u0000g\u0000i\u0000n\u0000 \u0000\"\r\u0000@\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\r\u0000>\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014\u0000E\u000e\u0000E\u0000\u0001\u0000F\u0011\u0000F\u0001@\u0000\"\u0000 \u0000-\u0000-\u0000t\u0000r\u0000u\u0000s\u0000t\u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000s\u0000t\u0000o\u0000r\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000h\u0000t\u0000t\u0000p\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000a\u0000c\u0000c\u0000e\u0000p\u0000t\u0000_\u0000u\u0000n\u0000k\u0000n\u0000o\u0000w\u0000n\u0000_\u0000l\u0000o\u0000c\u0000a\u0000l\u0000_\u0000s\u0000o\u0000u\u0000r\u0000c\u0000e\u0000s\u0000 \u0000-\u0000-\u0000f\u0000p\u0000s\u0000l\u0000i\u0000m\u0000i\u0000t\u0000 \u00006\u00000\u0000 \u0000-\u0000-\u0000h\u0000i\u0000d\u0000e\u0000_\u0000b\u0000e\u0000n\u0000i\u0000g\u0000n\u0000_\u0000o\u0000g\u0000r\u0000e\u0000_\u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000-\u0000-\u0000n\u0000o\u0000f\u0000i\u0000l\u0000e\u0000w\u0000a\u0000t\u0000c\u0000h\u0000e\u0000r\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000)\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000K\u0000L\u0001\u0000\u0000\f\u0000K\u00008\u00002 Handler for opening txml files with double-click:\u0000\u0002\u0000\u0000\u000e\u0000L\u0000\u0001\u0000M\u0011\u0000M\u0000d\u0000 \u0000H\u0000a\u0000n\u0000d\u0000l\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000o\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000t\u0000x\u0000m\u0000l\u0000 \u0000f\u0000i\u0000l\u0000e\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000d\u0000o\u0000u\u0000b\u0000l\u0000e\u0000-\u0000c\u0000l\u0000i\u0000c\u0000k\u0000:\u0002\u0000J\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000R\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000*\u0000S\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000V\u0000W\r\u0000V\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000X\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000X\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u0002\u0000U\u0000\u0002\u0000Y\u0000Z\r\u0000Y\u0000\u0002r\u0000\u0000\u0000\b\u0000\r\u0000[\u0000\\\r\u0000[\u0000\u0002n\u0000\u0000\u0000\b\u0000\u000b\u0000]\u0000^\r\u0000]\u0000\u00011\u0000\u0000\u0000\t\u0000\u000b\n\u0000\u0004\npsxp\r\u0000^\u0000\u0001o\u0000\u0000\u0000\b\u0000\t\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\r\u0000\\\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0002\u0000Z\u0000\u0002\u0000_\u0000`\r\u0000_\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u000e\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000`\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0013\u0000c\u0000d\r\u0000c\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0011\u0000e\u0000f\r\u0000e\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\npsxp\r\u0000f\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\u0002\u0000b\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0003I\u0000\u0002\u0000\u0014\u0000\u001f\u0000i\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000i\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u001b\u0000j\u0000k\r\u0000j\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0019\u0000l\u0000m\r\u0000l\u0000\u0002b\u0000\u0000\u0000\u0014\u0000\u0017\u0000n\u0000o\r\u0000n\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\r\u0000o\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000p\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000L\u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000s\u0000\/\u0000M\u0000a\u0000c\u0000O\u0000S\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000-\u0000-\u0000s\u0000p\u0000l\u0000a\u0000s\u0000h\u0000 \u0000-\u0000-\u0000f\u0000i\u0000l\u0000e\u0000 \r\u0000m\u0000\u0001o\u0000\u0000\u0000\u0017\u0000\u0018\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0000r\u000e\u0000r\u0000\u0001\u0000s\u0011\u0000s\u0000$\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000&\u0002\u0000\u0000\u0002\u0000h\u0000\u0002\u0000t\r\u0000t\u0000\u0003I\u0000\u0000\u0000 \u0000*\u0000u\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0002\u0000u\u0000\u0002\u0000v\r\u0000v\u0000\u0002b\u0000\u0000\u0000!\u0000&\u0000w\u0000x\r\u0000w\u0000\u0002b\u0000\u0000\u0000!\u0000$\u0000y\u0000z\r\u0000y\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0000{\u000e\u0000{\u0000\u0001\u0000|\u0011\u0000|\u00002\u0000O\u0000p\u0000e\u0000n\u0000i\u0000n\u0000g\u0000 \u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000 \u0000s\u0000c\u0000e\u0000n\u0000e\u0000 \u0000X\u0000M\u0000L\u0000 \r\u0000z\u0000\u0001o\u0000\u0000\u0000\"\u0000#\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\r\u0000x\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000}\u000e\u0000}\u0000\u0001\u0000~\u0011\u0000~\u0000B\u0000 \u0000f\u0000o\u0000r\u0000 \u0000v\u0000i\u0000e\u0000w\u0000i\u0000n\u0000g\u0000 \u0000i\u0000n\u0000 \u0000a\u0000 \u0000l\u0000o\u0000c\u0000a\u0000l\u0000 \u0000s\u0000e\u0000r\u0000v\u0000e\u0000r\u0000.\u0000.\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\f\u0000\u0000=\u00007 Helper function to format log messages for this script\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000n\u0000 \u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000 \u0000f\u0000u\u0000n\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000t\u0000o\u0000 \u0000f\u0000o\u0000r\u0000m\u0000a\u0000t\u0000 \u0000l\u0000o\u0000g\u0000 \u0000m\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000i\u0000s\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0017\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\t\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0007\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u00004\u0000d\u0000a\u0000t\u0000e\u0000 \u0000 \u0000+\u0000'\u0000%\u0000Y\u0000-\u0000%\u0000m\u0000-\u0000%\u0000d\u0000 \u0000%\u0000H\u0000:\u0000%\u0000M\u0000:\u0000%\u0000S\u0000'\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nrtyp\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\n\u0000\u0004\nTEXT\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0017\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0013\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u000e\u0000\u0011\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000e\u0000c\u0000h\u0000o\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u000f\u0000\u0010\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000T\u0000 \u0000>\u0000>\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000L\u0000o\u0000g\u0000s\u0000\/\u0000T\u0000u\u0000n\u0000d\u0000r\u0000a\u0000-\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000l\u0000o\u0000g\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000+\u0000\u0000\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\u0010\u0000\u0000\u0003\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u0010\u0000\u0000\u0005\u0000C\u0000E\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u001a)j\f\u0000\u0000EO,EO%%%j\f\u0000\u0004\u000f\u000e\u0000\u0000\u0007\u0010\u0000Q\u0000\u0000\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u0002\u0000\u0000\u0010\u0000\u0000\u0004\u000b\u0000\u00100\u0000\u0006anfile\u0000\u0006anFile\u000b\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\u000b\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\u000b\u0000\u00160\u0000\tposixfile\u0000\tposixFile\u0010\u0000\u0000\b\u0000p\u0000r\u0000{\u0000}\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\npsxp\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u0011\u0000+)j\f\u0000\u0000EO,EO,EO%%%j\f\u0000\u0004O*%%k+\u0000\u0007\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\u000b\u0000\r0\u0000\tlog_event\u0000\u0000\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\u000e0\u0000\nthemessage\u0000\u0000\u000b\u0000\u00120\u0000\u0007theline\u0000\u0007theLine\u0010\u0000\u0000\u0007\u0000\u0000\u0000\u0000\n\u0000\u0004\nrtyp\n\u0000\u0004\nTEXT\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000\u0018l\f\u0000\u0003%%EO%%j\f\u0000\u0003\u000f\u000e\u0000\u0000\u0007\u0010\u0000~}\u0000\u0000|\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0000\u0002\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\u0000\u0002\u0000\u0019{\u0002{\u0000\u0000\u0001~\u0000\u0000\u0002}\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000\u0006zyxw\u0000\u001fv\nz\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000by\u0000\u00180\u0000\nbundlepath\u0000\nbundlePath\nx\u0000\u0004\npsxp\u000bw\u0000\"0\u0000\u000fposixbundlepath\u0000\u000fposixBundlePath\nv\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011|\u0000\u0016)j\f\u0000\u0000EO,EO%j\f\u0000\u0005\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"d46b326a29da7d081e2bbd389bd8627927328f1c","subject":"Fix #114: GrowlTunes hanging if pictd has died.","message":"Fix #114: GrowlTunes hanging if pictd has died.\n\nAs noted in the ticket, the fix here is to ask for the raw data, not the PICT data, for the artwork.\n","repos":"doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl","old_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_file":"Extras\/GrowlTunes\/Scripts\/jackItunesArtwork.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\u000e\u0000\u0012\u0000\u0001\u0000\u0013\u0011\u0000\u0013\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0019\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0015\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001c\u0000\u001d\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001b\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000 \u0000!\r\u0000 \u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000!\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001f\u0000\u0002\u0000\"\u0000#\r\u0000\"\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000$\u0000%\r\u0000$\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0005\u0000\u001d\u0000$\u0000(\r\u0000(\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000)\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000*\u0000+\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000'\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000%\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000,\u0000-\r\u0000,\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000.\u0000\/\r\u0000.\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npRaw\r\u0000\/\u0000\u0002n\u0000\u0000\u0000)\u0000-\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000*\u0000-\u00002\n\u0000\u0004\ncArt\r\u00002\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000-\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000#\u0000\u0002\u00003\r\u00003\u0000\u0002r\u0000\u0000\u00006\u0000<\u00004\u00005\r\u00004\u0000\u0001J\u0000\u0000\u00006\u0000:\u00006\u0002\u00006\u0000\u0002\u00007\u00008\r\u00007\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00008\u0000\u0002\u00009\r\u00009\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00005\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000:\u000f\u0000:\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000hook\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001L\u0000\u0002\u0000\u0001\fSnow-Leopard\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01ba8H+\u0000\u0000\u0000\u0000\u0001\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002u\u0180*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u01bb\f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0181M\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0001\u0000\u0002\u0000$Snow-Leopard:Applications:iTunes.app\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000S\u0000n\u0000o\u0000w\u0000-\u0000L\u0000e\u0000o\u0000p\u0000a\u0000r\u0000d\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000;\u0000<\r\u0000;\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000=\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000\b\u0000f\u0000s\u0000c\u0000k\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0002\u0000I\u0000K\u0000A\r\u0000A\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000B\r\u0000B\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000@\u0000\u0002\u0000C\r\u0000C\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000I\u0002\u0000I\u0000\u0002\u0000\u0005\u0000J\u0002\u0000J\u0000\u0002\u0000?\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0010\u0000:\u0000\u0012\u0000=\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npRaw\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0000H\u0000\u0007\r\u0000\u0007\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000H\u0000\b\u0000\t\u0000\n\r\u0000\b\u0000\u0002O\u0000\u0000\u0000\u0003\u0000=\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001k\u0000\u0000\u0000\u0007\u0000<\u0000\r\u0002\u0000\r\u0000\u0002\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\n\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0000\u0012\f\u0000\u0012\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000\u0011\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u000f\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002r\u0000\u0000\u0000\u000b\u0000\u0012\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0002n\u0000\u0000\u0000\u000b\u0000\u0010\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u0010\n\u0000\u0004\npnam\r\u0000\u0018\u0000\u00011\u0000\u0000\u0000\u000b\u0000\u000e\n\u0000\u0004\npPla\r\u0000\u0016\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0014\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u0018\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u00011\u0000\u0000\u0000\u0013\u0000\u0016\n\u0000\u0004\npTrk\r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u001a\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u0019\u0000\u001c\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\n\u0000\u0004\nnull\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u001e\u0000\u0002\u0000!\u0000\"\r\u0000!\u0000\u0004Z\u0000\u0000\u0000\u001d\u00005\u0000#\u0000$\r\u0000#\u0000\u0002@\u0000\u0000\u0000\u001d\u0000&\u0000%\u0000&\r\u0000%\u0000\u0002l\u0000\u0005\u0000\u001d\u0000$\u0000'\r\u0000'\u0000\u0003I\u0000\u0001\u0000\u001d\u0000$\u0000(\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\r\u0000(\u0000\u0002n\u0000\u0000\u0000\u001d\u0000 \u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u0000\u001e\u0000 \n\u0000\u0004\ncArt\r\u0000*\u0000\u0001o\u0000\u0000\u0000\u001d\u0000\u001e\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\u0002\u0000\u0000\u0001\u0000\u0000\r\u0000&\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0003\u0000\u0001\r\u0000$\u0000\u0002r\u0000\u0000\u0000)\u00001\u0000+\u0000,\r\u0000+\u0000\u0002n\u0000\u0000\u0000)\u0000\/\u0000-\u0000.\r\u0000-\u0000\u00011\u0000\u0000\u0000-\u0000\/\n\u0000\u0004\npPCT\r\u0000.\u0000\u0002n\u0000\u0000\u0000)\u0000-\u0000\/\u00000\r\u0000\/\u0000\u00024\u0000\u0000\u0000*\u0000-\u00001\n\u0000\u0004\ncArt\r\u00001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0000\u0001\r\u00000\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\"\u0000\u0002\u00002\r\u00002\u0000\u0002r\u0000\u0000\u00006\u0000<\u00003\u00004\r\u00003\u0000\u0001J\u0000\u0000\u00006\u0000:\u00005\u0002\u00005\u0000\u0002\u00006\u00007\r\u00006\u0000\u0001o\u0000\u0000\u00006\u00007\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\u0002\u00007\u0000\u0002\u00008\r\u00008\u0000\u0001o\u0000\u0000\u00007\u00008\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\u0002\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0002\u0000\u0000\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u00009\u000f\u00009\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0005:\niTunes.app0\u00000\b\u00007\u0010`\u00002\u00000$\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0002|(\u0007 \u07c0\u0000hook\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001>\u0000\u0002\u0000\u0001\u0007Saulire\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000H+\u0000\u0000\u0000\u0000\u0005:\niTunes.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001#\/\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000M\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0005:\u0000\u0002\u0000\u001fSaulire:Applications:iTunes.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000i\u0000T\u0000u\u0000n\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u0010\u0000\u0007\u0000S\u0000a\u0000u\u0000l\u0000i\u0000r\u0000e\u0000\u0012\u0000\u0017Applications\/iTunes.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\r\u0000\t\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0002r\u0000\u0000\u0000E\u0000H\u0000:\u0000;\r\u0000:\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0000<\f\u0000<\u0000\n\u0000\u0004fsck\u0000\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002l\u0000\u0002\u0000I\u0000K\u0000?\r\u0000?\u0000\u0001L\u0000\u0000\u0000I\u0000K\u0000@\r\u0000@\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\u0001\u0000\u0000\u0002\u0000>\u0000\u0002\u0000A\r\u0000A\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000B\u0000C\u0001\u0000\u0000\u0010\u0000B\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000C\u0000\u0007\u0010\u0000D\u0000E\u0000F\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000D\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0000G\u0002\u0000G\u0000\u0002\u0000\u0005\u0000H\u0002\u0000H\u0000\u0002\u0000=\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000E\u0000\u0000\u0010\u0000F\u0000\u0010\u00009\u0000\u0012\u0000<\u000b\u0000\u001a0\u0000\u000breturnvalue\u0000\u000breturnValue\n\u0000\u0004\npPla\n\u0000\u0004\npnam\u000b\u0000\u00140\u0000\balibrary\u0000\baLibrary\n\u0000\u0004\npTrk\u000b\u0000\u00100\u0000\u0006atrack\u0000\u0006aTrack\n\u0000\u0004\nnull\u000b\u0000\u001e0\u0000\ratrackartwork\u0000\raTrackArtwork\n\u0000\u0004\ncArt\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\n\u0000\u0004\npPCT\u0001\u0000\u0000\u0002\u0000\u0000\u0011\u0000L\u0014\u0000?\u0012\u00007EO*,,EO*,EOEO,j\f\u0000\u000bk\u0003\u001d\u0000\rk\/,EY\u0000\u0003hOlvEUW\u0000\nX\u0000\r\u0000\u000eEO\u000f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"42da0f6e0519ede64d926ae9b809384c45e1f1b5","subject":"increase the timeout","message":"increase the timeout\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 30\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 900 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\telse\n\t\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","old_contents":"property pTitle : \"OmniFocus: Quick Stats\"\nproperty pVersion : \"2.07.brett\"\n\nproperty pstrDBPath : \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/com.omnigroup.OmniFocus\/OmniFocusDatabase2\"\nproperty pstrMinOSX : \"10.9\"\n\nproperty pTimeOut : 20\n\n-- Original version: https:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n\n-- Copyright 2012, 2013, 2014 Robin Trew\n-- \n-- Permission is hereby granted, free of charge, \n-- to any person obtaining a copy of this software \n-- and associated documentation files (the \"Software\"), \n-- to deal in the Software without restriction, \n-- including without limitation the rights to use, copy, \n-- modify, merge, publish, distribute, sublicense, \n-- and\/or sell copies of the Software, and to permit persons \n-- to whom the Software is furnished to do so, \n-- subject to the following conditions:\n-- \n-- *******\n-- The above copyright notice and this permission notice \n-- shall be included in ALL copies \n-- or substantial portions of the Software.\n-- *******\n-- \n-- THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \n-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \n-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \n-- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \n-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \n-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE \n-- OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n-- Ver 0.8 adds clipboard option to dialogue\n-- Ver 0.9 gives an error message if the cache schema has changed, leading to an SQL error in the script\n-- Ver 1.0 slight simplification of the code\n-- Ver 1.1 added count of Pending projects\n-- Ver 1.2 added a count of available actions\n-- Ver 1.3 added a break-down of unavailable actions\n-- Ver 1.4 added count of Current projects to complement Pending projects\n-- ver 1.5 replaced Applescript time function with SQL time expression\n-- Ver 1.7 Reorganizes menu, and attempts to enable access for .macappstore installations of OF\n--Ver 1.8 Adjusts handling of variant bundle identifiers generally\n-- Ver 2.00 Redraft of task breakdown, with progressive narrowing of criteria ...\n\nproperty pToClipboard : \"Copy list to clipboard\"\n\nif not FileExists(pstrDBPath) then set pstrDBPath to GetCachePath()\n\ntell application \"Finder\"\n\tif (version < pstrMinOSX) then\n\t\tdisplay dialog \"This script requires OSX \" & pstrMinOSX & \" or higher\" buttons {\"OK\"} default button 1 with title pTitle & \"Ver. \" & pVersion\n\t\treturn\n\tend if\n\n\tset screen_resolution to bounds of window of desktop\n\tset height to item 4 of screen_resolution\n\tif height < 900 then\n\t\tset brief to true\n\telse\n\t\tset brief to false\n\tend if\nend tell\n\nif pstrDBPath \"\" then\n\tset inbox_cmd to \"\n\tselect 'INBOX GROUPS & ACTIONS', count(*) from task where (inInbox=1);\n\tselect ' Inbox action groups', count(*) from task where (inInbox=1) and (childrenCount>0);\n\tselect ' Inbox actions', count(*) from task where (inInbox=1) and (childrenCount=0);\n\tselect null;\n\t\"\n\tset folders_cmd to \"\n\tselect 'FOLDERS'\t, count(*) from folder;\n\tselect ' Active folders', count(*) from folder where effectiveActive=1;\n\tselect ' Dropped folders', count(*) from folder where effectiveActive=0;\n\tselect null;\n\t\"\n\tset projects_cmd to \"\n\tselect 'PROJECTS', count(*) from projectInfo where containsSingletonActions=0;\n\tselect ' Active projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='active');\n\tselect ' Current projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart is null or t.dateToStart < (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' Pending projects', count(*) from projectInfo p join task t on t.projectinfo=p.pk where (p.containsSingletonActions=0) and (p.folderEffectiveActive=1) and (p.status='active') and (t.dateToStart > (strftime('%s','now') - strftime('%s','2001-01-01')));\n\tselect ' On-hold projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='inactive');\n\tselect ' Completed projects', count(*) from projectInfo where (containsSingletonActions=0) and (status='done');\n\tselect ' Dropped projects', count(*) from projectInfo where (containsSingletonActions=0) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset lists_cmd to \"\n\tselect 'SINGLE ACTION LISTS', count(*) from projectInfo where containsSingletonActions=1;\n\tselect ' Active single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='active');\n\tselect ' On-hold single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='inactive');\n\tselect ' Completed single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (status='done');\n\tselect ' Dropped single action lists', count(*) from projectInfo where (containsSingletonActions=1) and (( status='dropped') or (folderEffectiveActive=0));\n\tselect null;\n\t\"\n\tset contexts_cmd to \"\n\tselect 'CONTEXTS', count(*) from context;\n\tselect ' Active contexts', count(*) from context where (effectiveActive=1) and (allowsNextAction=1);\n\tselect ' On-hold contexts', count(*) from context where (effectiveActive=1) and allowsNextAction=0;\n\tselect ' Dropped contexts', count(*) from context where effectiveActive=0;\n\tselect null;\n\t\"\n\tset groups_cmd to \"\n\tselect 'ACTION GROUPS', count(*) from task where (projectinfo is null) and (childrenCount>0);\n\tselect ' Remaining action groups', count(*) from task where (projectinfo is null) and (dateCompleted is null) and (childrenCount>0);\n\tselect ' Completed action groups', count(dateCompleted) from task where (projectinfo is null) and (childrenCount>0);\n\tselect null;\n\t\"\n\tset tasks_cmd to \"\n\tselect 'ALL TASKS', count(*) from task;\n\tselect null;\n\t\"\n\tset actions_cmd to \"\n\tselect 'ACTIONS', count(*) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Completed actions', count(dateCompleted) from task where (projectinfo is null) and (childrenCount=0);\n\tselect ' Dropped project actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp where (projectinfo is null) and (childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is not null and (tp.status='dropped' or tp.folderEffectiveActive=0));\n\tselect ' Dropped context actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand c.effectiveActive= 0;\n\tselect ' Remaining actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1);\n\tselect ' Actions in Projects on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is not null and tp.status='inactive');\n\tselect ' Actions in Contexts on hold', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is not null and c.allowsNextAction=0);\n\tselect ' Blocked actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1;\n\tselect ' \tBlocked by future start date', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=1;\n\tselect ' \tSequentially blocked', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=1\n\t\t\t\tand tp.blockedByFutureStartDate=0;\n\tselect ' Available actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (projectinfo is null) and (tp.childrenCount=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.context is null or c.effectiveActive= 1)\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand (tp.context is null or c.allowsNextAction=1)\n\t\t\t\tand tp.blocked=0;\n\tselect null;\n\t\"\n\tset summary_cmd to \"\n\tselect 'SUMMARY';\n\tselect ' Inbox available actions', count(*) from task where (inInbox=1) and (dateCompleted is null);\n\tselect ' Due in next week', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null) \n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01');\n\tselect ' Flagged projects and actions', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand tp.effectiveFlagged;\n\tselect ' Due or Flagged', count(*) from (task t left join projectinfo p on t.containingProjectinfo=p.pk) tp left join context c on tp.context=c.persistentIdentifier where (((projectinfo is null) and (tp.childrenCount=0)) or containsSingletonActions=0) and (dateCompleted is null)\n\t\t\t\tand (tp.containingProjectinfo is null or (tp.status !='dropped' and tp.folderEffectiveActive=1))\n\t\t\t\tand (tp.containingProjectInfo is null or tp.status!='inactive')\n\t\t\t\tand tp.blockedByFutureStartDate=0\n\t\t\t\tand (tp.effectiveFlagged or (effectiveDateDue <= strftime('%s','now','+7 days') - strftime('%s','2001-01-01')));\n\tselect null;\n\t\"\n\tif brief then\n\t\tset commands to projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & summary_cmd\n\telse\n\t\tset commands to inbox_cmd & folders_cmd & projects_cmd & lists_cmd & contexts_cmd & groups_cmd & actions_cmd & tasks_cmd & summary_cmd\n\tend if\n\tset strCmd to \"sqlite3 -separator ': ' \\\"\" & pstrDBPath & \"\\\" \" & quoted form of (commands)\n\t\n\t-- \t\ttry\n\tset strList to do shell script strCmd\n\t-- \t\ton error\n\t-- \t\t\tdisplay dialog \"The SQL schema for the OmniFocus cache may have changed in a recent update of OF.\" & return & return & \n\t-- \t\t\t\t\"Look on the OmniFocus user forums for an updated version of this script.\" buttons {\"OK\"} with title pTitle & \"Ver. \" & pVersion\n\t-- \t\t\treturn\n\t-- \t\tend try\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tif button returned of (display dialog strList buttons {pToClipboard, \"OK\"} default button \"OK\" giving up after pTimeOut with title pTitle & \" Ver. \" & pVersion) \n\t\t\tis pToClipboard then tell application id \"com.apple.finder\" to set the clipboard to strList\n\tend tell\nelse\n\ttell application id \"sevs\"\n\t\tactivate\n\t\tdisplay dialog \"OmniFocus cache not found ...\" buttons {\"OK\"} default button 1 with title pTitle & \" Ver. \" & pVersion\n\tend tell\nend if\n\n\non FileExists(strPath)\n\t(do shell script \"test -e \" & strPath & \" ; echo $?\") = \"0\"\nend FileExists\n\non GetCachePath()\n\ttry\n\t\ttell application \"Finder\" to tell (application file id \"OFOC\") to \"$HOME\/Library\/Containers\/com.omnigroup.OmniFocus2\/Data\/Library\/Caches\/\" & its id & \"\/OmniFocusDatabase2\"\n\ton error\n\t\terror \"OmniFocus not installed ...\"\n\tend try\nend GetCachePath\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"c1b5f53f60537dca0bc2a5635d64ce2b452719e7","subject":"Only skip label list dialogs if none have 2+ items","message":"Only skip label list dialogs if none have 2+ items\n\nPreviously the subcategory list would get skipped when there was only\none root category even if there was more than one subcategory.\n\nAlso, fixed edge case where there were duplicate category edit dialogs\nwhen an alternate log file with less than 2 categories was selected\nwhile on a subcategory or full category dialog. This was because any\nprevious category list controllers were not getting removed from the\ncontroller history.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-02\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\"\n\t\t\tusing terms from application \"Firefox\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_title to name of front window\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4d6c3a20a76d0fc29218edfe60119d5ff272fa3d","subject":"Delete Jarvis-Repeat.applescript","message":"Delete Jarvis-Repeat.applescript","repos":"gskielian\/Jarvis","old_file":"Jarvis-Repeat.applescript","new_file":"Jarvis-Repeat.applescript","new_contents":"","old_contents":"(*Instead of using the spotlight app, this opens a new terminal directly*)\n\ntell application \"Terminal\"\n\t\n\t(*names currentTab need to find a more elegant method*)\n\t\n\trepeat\n\t\tset currentTab to do script \"~\/jarvis.sh\"\n\t\t\n\t\tactivate currentTab\n\t\tset mainID to id of front window\n\t\t(*opens up speech-to-text*)\n\t\tdelay 0.5\n\t\ttell application \"System Events\" to key code 63\n\t\ttell application \"System Events\" to key code 63\n\t\tdelay 4\n\t\t\n\t\t(*presses \"enter\" on DictationIM*)\n\t\ttell application \"System Events\" to tell process \"DictationIM\"\n\t\t\tclick button 1\n\t\tend tell\n\t\tdelay 1.2\n\t\t\n\t\t\n\t\t(*presses \"enter\" in the terminal*)\n\t\ttell application \"System Events\" to key code 36\n\t\t\n\t\t\n\t\t(*closes the terminal when process is completed*)\n\t\tset toggle to 1\n\t\tdelay 0.1\n\t\tset thetimeout to 1000\n\t\t\n\t\trepeat until toggle \u2265 thetimeout\n\t\t\tif busy of currentTab is false then\n\t\t\t\tclose (every window whose id = mainID)\n\t\t\t\tset toggle to thetimeout\n\t\t\tend if\n\t\t\tset toggle to (toggle + 1)\n\t\t\tdelay 0.1\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8914ac0a3ccf4e16e125c534c7164e4f9ffa43fc","subject":"allow for weird dates","message":"allow for weird dates","repos":"Mausy5043\/OSX-EmptyTrash","old_file":"dated_deleter.scpt","new_file":"dated_deleter.scpt","new_contents":"-- stolen from: https:\/\/discussions.apple.com\/thread\/3172966\nproperty keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n log thisFile\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n\tset n to short date string of ((current date) - daysToWait * days)\n\tlog d\n\tlog n\n\tlog (date d) \u2264 (date n)\n\t\n\treturn (date d) \u2264 (date n)\n\t-- log (date d) \u2264 short date string of ((current date) - daysToWait * days)\n\t-- return (date d) \u2264 short date string of ((current date) - daysToWait * days)\nend checkDate\n","old_contents":"-- stolen from: https:\/\/discussions.apple.com\/thread\/3172966\nproperty keyPhrase : \"Trashed on: \"\nproperty securityLevel : 2 -- overwrites: 1=1-pass, 2=7-pass, 3=35-pass, see man srm\nproperty daysToWait : 7\n \ntell application \"Finder\"\n -- get files in trash that are not new, and check dates\n set oldFiles to (every item of trash whose comment contains keyPhrase)\n set trashmeFiles to \"\"\n repeat with thisFile in oldFiles\n -- extract trashed date from the spotlight comments\n set trashedDate to last item of my tid(comment of thisFile, keyPhrase)\n try\n -- check dates in a try block in case of weirdness)\n if my checkDate(trashedDate) then\n log thisFile\n set trashmeFiles to trashmeFiles & \" \" & my makePosix(thisFile as alias)\n end if\n end try\n end repeat\n \n -- trash 'em in a subroutine\n my trashEm(trashmeFiles)\n \n -- gather new files\n set newFiles to every item of trash whose comment does not contain keyPhrase\n -- add the current date to the spotlight comment of the new files\n repeat with thisFile in newFiles\n set c to comment of thisFile\n if c = \"\" then\n set comment of thisFile to keyPhrase & short date string of (current date)\n else\n set comment of thisFile to c & return & keyPhrase & short date string of (current date)\n end if\n end repeat\nend tell\n \non trashEm(fs)\n -- set up proper security level\n if securityLevel = 1 then\n set cmd to \"srm -rfsz\"\n else if securityLevel = 3 then\n set cmd to \"srm -rfz\"\n else\n set cmd to \"srm -rfmz\"\n end if\n \n -- start a secure delete process in the background\n do shell script cmd & fs & \" &> \/dev\/null &\"\nend trashEm\n \non tid(input, delim)\n -- generic subroutine to handle text items\n set {oldTID, my text item delimiters} to {my text item delimiters, delim}\n if class of input is list then\n set output to input as text\n else\n set output to text items of input\n end if\n set my text item delimiters to oldTID\n return output\nend tid\n \non makePosix(f)\n return quoted form of POSIX path of f\nend makePosix\n \non checkDate(d)\n\tset n to short date string of ((current date) - daysToWait * days)\n\tlog d\n\tlog n\n\tlog (date d) \u2264 (date n)\n\t-- log (date d) \u2264 short date string of ((current date) - daysToWait * days)\n\t-- return (date d) \u2264 short date string of ((current date) - daysToWait * days)\nend checkDate\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"bbef2af8eee2a33a61509821b04d92f61650fe9f","subject":"updated comment on fmObjectTranslator to explain how to use the applet","message":"updated comment on fmObjectTranslator to explain how to use the applet\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n(*\nNOTE: if you want to call the app version of this library, use the following: \n tell application \"FmObjectTranslator\" to set objTrans to fmObjectTranslator_Instantiate({})\nThen, you can use all the methods and properties below via your locally-instantiated objTrans script object. \n*)\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.6, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2019-03-07 ( dshockley ): Added explicit 'on run'. \n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\n\n\non run\n\tset fmObjTrans to fmObjectTranslator_Instantiate({})\n\treturn fmObjTrans\nend run\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 4.0.6, Daniel A. Shockley\n\t\t\n\t\t-- 4.0.6 - 2019-03-07 ( dshockley ): Updated checkStringForValidXML to 1.2. \n\t\t-- 4.0.5 - 2019-02-15 ( jwillinghalpern ): preserve backslashes when prettifying xml with shell script.\n\t\t-- 4.0.4 - 2019-01-18 ( eshagdar ): remove EndOfText character ( ascii 3 ).\n\t\t-- 4.0.3 - 2018-12-04 ( dshockley, eshagdar ): remove unneeded whitespace around CDATA inside Calculation tags. \n\t\t-- 4.0.2 - 2018-10-29 ( dshockley ): prettify used to fail (and just get raw XML) when 'too large'. Use temp file to avoid fail. Bug-fix in dataObjectToUTF8. \n\t\t-- 4.0.1 - 2018-10-29 ( dshockley ): BUG-FIX - using wrong variable in prettify resulted in placeholders not be replaced. Neatened up code. \n\t\t-- 4.0 - 2018-10-25 ( dshockley\/eshagdar ): Addded indentation to prettify. Tidy CANNOT output tabs, so preserve tabs 1st.\n\t\t-- 3.9.8 - 2018-04-20 ( dshockley\/eshagdar ): when doing prettify or simpleFormat, convert all ASCII 13 (Carriage Returns) into ASCII 10 (LineFeed) so that there is not a MIX of line endings. If prettify, do NOT also do SimpleFormat. \n\t\t-- 3.9.7 - 2018-04-20 ( dshockley ): remove \"preserve-entities\" from tidy, since that was an attempt to deal with layout objects, which we no longer even attempt to prettify, and using it causes problems with other objects. \n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. Stick with tidy after all (not xmllint for now). \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty prettyTempName : \"pretty-temp.xml\"\n\t\t\n\t\tproperty charEOT : ASCII character 3\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : true\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: obtained XML\")\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: added XML to clipboard\")\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t-- version 1.1.1\n\t\t\t\n\t\t\t-- 1.1.1 - 2019-01-18 ( eshagdar ): remove all EOT characters.\n\t\t\t-- 1.1 - 2018-04-20 ( dshockley\/eshagdar ): if prettify, do NOT also SimpleFormat. If either option, then convert CR to LF. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\t\n\t\t\tif shouldPrettify then\n\t\t\t\tset objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\telse if shouldSimpleFormat then\n\t\t\t\tset objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset objectsAsXML to replaceSimple({objectsAsXML, charEOT, \"\"})\n\t\t\tif shouldPrettify or shouldSimpleFormat then set objectsAsXML to replaceSimple({objectsAsXML, charCR, charLF})\n\t\t\t\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file write to be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.2\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.2 - 2019-03-07 ( dshockley ): Added capture of error -1700. \n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1700 then\n\t\t\t\t\t-- is not something that can be treated as text, so does not have XML:\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.7, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: Skipped Layout Objects\")\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using tidy *)\n\t\t\t\t\t\n\t\t\t\t\t-- the \"other\" options turn off tidy defaults that result in unexpected modification of the XML:\n\t\t\t\t\t(* OPTIONS (docs at http:\/\/tidy.sourceforge.net\/docs\/quickref.html):\n\t\t\t\t\t\t-m = modify the original input files\n\t\t\t\t\t\t-xml = duh\n\t\t\t\t\t\t-raw = to output values above 127 without conversion to entities\n\t\t\t\t\t\t-wrap # = to wrap text at the specified <column> (default is 68)\n\t\t\t\t\t\t--literal-attributes = ensure whitespace characters within attribute values are passed through unchanged\n\t\t\t\t\t\t--drop-empty-paras = should discard empty paragraphs\n\t\t\t\t\t\t--fix-backslash = should replace backslash characters \"\\\" in URLs by forward slashes \"\/\"\n\t\t\t\t\t\t--fix-bad-comments = should replace unexpected hyphens with \"=\" characters when it comes across adjacent hyphens\n\t\t\t\t\t\t--fix-uri = should check attribute values that carry URIs for illegal characters and if such are found, escape them as HTML 4 recommends\n\t\t\t\t\t\t--lower-literals = This option specifies if Tidy should convert the value of an attribute that takes a list of predefined values to lower case. (disabling, since default is Yes)\n\t\t\t\t\t\t--ncr = This option specifies if Tidy should allow numeric character references (disabling, since default is Yes)\n\t\t\t\t\t\t--quote-ampersand = should output unadorned & characters as &\n\t\t\t\t\t\t--quote-nbsp = output non-breaking space characters as entities, rather than as the Unicode character value 160 (decimal)\n\t\t\t\t\t\t-i is indentation\n\t\t\t\t\t\t--indent-spaces = This option specifies the number of spaces Tidy uses to indent content, when indentation is enabled. Default is 2. \n\t\t\t\t\t\t*)\n\t\t\t\t\t\n\t\t\t\t\tset maxEchoSize to 200000 (* not sure exact point of failure, but was between 224317 and 227811 when tested on 2018-10-29, so playing it safe. *)\n\t\t\t\t\tset spacePlaceholder to \"|3784831346446981709931393949506519634432034195210262251535space|\"\n\t\t\t\t\tset tabPlaceholder to \"|3784831346446981709931393949506519634432034195210262251535tab|\"\n\t\t\t\t\tset spaces4String to \" \"\n\t\t\t\t\tset otherTidyOptions to \" -i --indent-spaces 4 --literal-attributes yes --drop-empty-paras no --fix-backslash no --fix-bad-comments no --fix-uri no --lower-literals no --ncr no --quote-ampersand no --quote-nbsp no \"\n\t\t\t\t\tset tidyCommand to \"tidy -xml -raw -wrap 999999999999999 \" & otherTidyOptions\n\t\t\t\t\t-- NOTE: wrapping of lines needs to NEVER occur, so cover petabyte-long lines \n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\t\t\n\t\t\t\t\t(*\n\t\t\t\t\tPreserve certain whitespace:\n\t\t\t\t\tTry to convert 4-spaces into tabs AFTER tidy modifies data. To do that, must preserve any initial runs of 4-spaces.\n\t\t\t\t\tAlso, Tidy refuses to output tabs, so preserve and restore them, too!\n\t\t\t\t\t*)\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, spacePlaceholder})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tab, tabPlaceholder})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: length of prettyXML: \" & length of prettyXML)\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- prettify command:\n\t\t\t\t\tif length of prettyXML is greater than maxEchoSize then\n\t\t\t\t\t\t\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempFolderPosix to my makeTempDirPosix()\n\t\t\t\t\t\t\tset tempFolderPath to (POSIX file tempFolderPosix) as string\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset tempPath to tempFolderPath & prettyTempName\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tset someHandle to open for access file tempPath with write permission\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\t\twrite prettyXML to someHandle\n\t\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: posix of tempPath: \" & POSIX path of tempPath)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- modify the temp file using tidy command:\n\t\t\t\t\t\t\tset prettyPrint_ShellCommand to tidyCommand & space & \" -m \" & quoted form of POSIX path of tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: prettyPrint_ShellCommand: \" & prettyPrint_ShellCommand)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tdo shell script prettyPrint_ShellCommand\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: shell command result: \" & result)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t-- read the modified temp file:\n\t\t\t\t\t\t\tset prettyXML to read file tempPath\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: 1st chars of temp file: \" & text 1 thru 200 of prettyXML)\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\tclose access file tempPath\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- just use echo:\n\t\t\t\t\t\t-- use \"shopt -u xpg_echo; echo \" instead of \"echo\" to handle backslashes properly: https:\/\/stackoverflow.com\/questions\/8138167\/how-can-i-escape-shell-arguments-in-applescript\/8145515\n\t\t\t\t\t\tset prettyPrint_ShellCommand to \"shopt -u xpg_echo; echo \" & quoted form of prettyXML & \" | \" & tidyCommand\n\t\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- restore original characters where placeholders exist:\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spaces4String, tab})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, spacePlaceholder, spaces4String})\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, tabPlaceholder, tab})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t-- After restoring whitespace, get rid of line returns and indentation around the CDATA inside a Calculation tag, since tidy adds that:\n\t\t\t\t\t-- Cleanup between Calc open tag and CDATA:\n\t\t\t\t\tset maxTabs to 12\n\t\t\t\t\tset stringCalcTagOpen to \"<Calculation>\"\n\t\t\t\t\tset stringStartCdata to \"<![CDATA[\"\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\trepeat with numTabs from 1 to maxTabs\n\t\t\t\t\t\tset stringBeforeCdata to (stringCalcTagOpen & charCR & repeatString({someString:tab, repeatCount:numTabs}) & stringStartCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: numTabs: \" & numTabs)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: stringBeforeCdata: \" & stringBeforeCdata)\n\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: offset of stringBeforeCdata in prettyXML: \" & (offset of stringBeforeCdata in prettyXML))\n\t\t\t\t\t\tif prettyXML contains stringBeforeCdata then\n\t\t\t\t\t\t\tif debugMode then my logConsole(ScriptName, \"prettifyXML: DEBUG: found stringBeforeCdata with \" & numTabs & \" tabs.\")\n\t\t\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringBeforeCdata, stringCalcTagOpen & stringStartCdata})\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\t\t-- Cleanup between CDATA and Calc close tag:\n\t\t\t\t\tset stringEndCData to \"]]>\"\n\t\t\t\t\tset stringCalcTagClose to \"<\/Calculation>\"\n\t\t\t\t\tset prettyXML to replaceSimple({prettyXML, stringEndCData & charCR & stringCalcTagClose, stringEndCData & stringCalcTagClose})\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.9\n\t\t\t\n\t\t\t-- 2.9 - 2018-10-29 ( dshockley ): BUG-FIX: the error handler closed a non-existent variable. \n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Can't make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton repeatString(prefs)\n\t\t\t-- version 1.0, Daniel A. Shockley\n\t\t\t\n\t\t\tset defaultPrefs to {someString:null, repeatCount:1, separator:\"\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset outputList to {}\n\t\t\trepeat with i from 1 to repeatCount of prefs\n\t\t\t\tcopy someString of prefs to end of outputList\n\t\t\tend repeat\n\t\t\t\n\t\t\t\n\t\t\treturn unParseChars(outputList, separator of prefs)\n\t\t\t\n\t\tend repeatString\n\t\t\n\t\t\n\t\ton unParseChars(thisList, newDelim)\n\t\t\t-- version 1.2, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {newDelim as string}\n\t\t\t\tset the unparsedText to thisList as string\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn unparsedText\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: unParseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend unParseChars\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"c903a769ed2c960030b74635a0d936090ed481e9","subject":"Log unknown types when playing directly","message":"Log unknown types when playing directly\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/play-direct.applescript","new_file":"actions\/play-direct.applescript","new_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\n\t\telse if theType is \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\n\t\telse\n\n\t\t\tlog \"Unknown type: \" & theType\n\n\t\tend if\n\n\tend tell\nend run\n","old_contents":"-- plays selected song or playlist directly (the Play Song v1 behavior)\n-- for songs, this behavior continues playing music after the song finishes\n\non loadConfig()\n\treturn (load script POSIX file (do shell script \".\/resources\/compile-config.sh\"))\nend loadConfig\n\non run query\n\tset config to loadConfig()\n\n\tset typeAndId to parseResultQuery(query as text) of config\n\tset theType to type of typeAndId\n\tset theId to id of typeAndId\n\n\ttell application \"iTunes\"\n\n\t\tif theType is \"song\" then\n\n\t\t\tset theSong to getSong(theId) of config\n\t\t\tplay theSong\n\n\t\telse if theType is \"playlist\" then\n\n\t\t\tset thePlaylist to getPlaylist(theId) of config\n\t\t\tplay thePlaylist\n\n\t\tend if\n\n\tend tell\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f8d117554804d97d9ecbac80288966974ae9f9b1","subject":"Fix fatal mistake","message":"Fix fatal mistake\n","repos":"k0kubun\/rebuild,k0kubun\/rebuild","old_file":"script\/start_install.scpt","new_file":"script\/start_install.scpt","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\ndelay 0.4\ntell application \"System Events\"\n set installer to application process \"Install Command Line Developer Tools\"\n click UI Element \"Install\" of window 1 of installer\n click UI Element \"Agree\" of window 1 of installer\nend tell\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Fist: Click Install Button\ndelay 0.4\ntell application \"System Events\"\n set installer to \"Install Command Line Developer Tools\"\n click UI Element \"Install\" of window 1 of installer\n click UI Element \"Agree\" of window 1 of installer\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0e2328861709d91a22f8c9113ad538c39890ac9e","subject":"Scripts","message":"Scripts\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"33dab3860b6ea116187ff343ac061469cc8d64ef","subject":"prettifyXML 1.6 - skip layout objects, use xmllint instead of tidy","message":"prettifyXML 1.6 - skip layout objects, use xmllint instead of tidy\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmObjectTranslator.applescript","new_file":"Scripts\/fmObjectTranslator.applescript","new_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): prettify using xmllint instead of tidy. Do NOT prettify layout objects even if specified since they are already quasi-formatted. \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using xmllint *)\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | xmllint --format -\"\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","old_contents":"-- fmObjTrans library\n\n-- 2017-12-21 ( eshagdar ): This script needs to return just the object since there are other libraries that depend on it.\nset fmObjTrans to fmObjectTranslator_Instantiate({})\nreturn fmObjTrans\n\n\n\non fmObjectTranslator_Instantiate(prefs)\n\t\n\tscript fmObjectTranslator\n\t\t-- version 3.9.6, Daniel A. Shockley\n\t\t-- 3.9.6 - 2018-04-10 ( dshockley ): do NOT prettify layout objects even if specified since they are already quasi-formatted. \n\t\t-- 3.9.5 - 2018-04-04 ( dshockley\/eshagdar ): improved prettifyXML to also 'preserve-entities' because it otherwise munges whitespace within a value wrapped by tags. Specifically, it was changing \"<Type>SVG <\/Type>\" to \"<Type>SVG<\/Type>\", which resulted in breaking button icons on FileMaker buttons. ALSO, when editing XML, insert LineFeeds, not Carriage Returns. When stripping XML header for layout objects, also remove possible leading blank line. \n\t\t-- 3.9.4 - 2017-12-18 ( dshockley ): added support for LayoutObjects to addHeaderFooter and removeHeaderFooter. Updated getTextBetween. \n\t\t-- 3.9.3 - 2017-11-03 ( eshagdar ): when running this file directly, return the script object ( don't run a sample ).\n\t\t-- 3.9.2 - 2017-04-25 ( dshockley\/eshagdar ): added removeHeaderFooter, addHeaderFooter. \n\t\t-- 3.9.1 - 2016-11-02 ( dshockley\/eshagdar ): always reset currentCode before reading clipboard; debugMode now logs the tempDataPosix in dataObjectToUTF8; add more error-trapping and error-handling.\n\t\t-- 3.9 - fixed bug where simpleFormatXML would fail on layout objects.\n\t\t-- 3.8 - default for shouldPrettify is now FALSE; added shouldSimpleFormat option for simpleFormatXML() (modifies text XML in minor, but useful, ways) - as of 3.8, adds line-returns inside the fmxmlsnippet tags; \n\t\t-- 3.7 - updated dataObjectToUTF8 to indicate non-FM object can be converted; added clipboardPatternCount method; updated logConsole to 1.9; added coerceToString 1.8; \n\t\t-- 3.6 - currentCode needed to be evaluated WHEN USED, since translator object retains previous operations; added error-trapping; labeled more handlers as 'Public Methods'\n\t\t-- 3.5 - moved a file write operation out of unneeded tell System Events block to avoid AppleEvents\/sandbox errAEPrivilegeError; CHANGED clipboardSetObjectsUsingXML to actually completely SET clipboard; original behavior now named clipboardAddObjectsUsingXML; brought back handling of FM10 ASCII-10 bug, for backwards compatibility.\n\t\t-- 3.4 - added clipboardGetObjectsToXmlFilePath; updated dataObjectToUTF8 to 2.6\n\t\t-- 3.3 - tweaked clipboardSetObjectsUsingXML to use a single 'set clipboard'\n\t\t-- 3.2 - added clipboardSetObjectsUsingXML\n\t\t-- 3.1 - updated Layout Objects to work with both FM11 and FM12 (XMLO and XML2)\n\t\t-- 3.0 - updated Layout Objects to use XML2 for use with FileMaker 12 - use pre-3.0 for FileMaker 11 and earlier\n\t\t-- 2.6 - completely turned off indent in tidy since no clear way to protect CDATA blocks during indent.\n\t\t-- 2.5 - adds DebugMode property; more safety options in tidy to prevent unexpected EDITING of the XML during prettify.\n\t\t-- 2.4 - use newer versions of parseChars and replaceSimple.\n\t\t-- 2.3 - prettify can be turned off - useful when the conversion to XML is used for a replacement, and XML will not be viewed\n\t\t-- 2.2 - prettify fails gracefully - if it cannot prettify, it returns the original unmodified\n\t\t-- 2.1 - modified the \"tidy\" command to essentially NEVER wrap (set to petabyte-long lines) to avoid breaking certain HexData tags for layout objects\n\t\t-- 2.0 - added prettify code when converting to XML (uses -raw switch to avoid any HTML entity encoding); added a tell System Events block around file read\/write code to avoid name-space conflict when compiling in FileMaker; added support for Script Folders that use the \"Group\" tag but are still XMSC data type\n\t\t-- 1.9 - remove the extraneous Ascii 10 after the Layout tag that FM10 adds when copying layout objects; dropped unused code for dataObjectToString()\n\t\t-- 1.8 - do not REPLACE what is in the clipboard when doing \"clipboardConvert\" - instead, ADD the XML string or FM Objects\n\t\t-- 1.7 - handles clipboard data as UTF-8 to avoid mangling special characters\n\t\t-- 1.6 - handles the FileMaker line return character (when converting from HEX, it became ASCII 194, 182, rather than ASCII 166)\n\t\t-- 1.5.1 - bug fix: hexToAscii now properly returns content of XML file\n\t\t-- 1.5 - writes data to temp files to improve reliability\n\t\t-- 1.4 - added more debugging; renamed handlers for clarity\n\t\t\n\t\tproperty ScriptName : \"FM Object Translator\"\n\t\t\n\t\tproperty fmObjectList : {}\n\t\tproperty tempDataName : \"temp.data\"\n\t\tproperty tempXMLName : \"temp.xml\"\n\t\t\n\t\tproperty charLF : ASCII character 10\n\t\tproperty charCR : ASCII character 13\n\t\t-- the \"bad\" and \"good\" layout tag start code deals with a bug in FileMaker 10: \n\t\tproperty badLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout\" & (ASCII character 10) & \" enclosingRectTop=\\\"\"\n\t\tproperty goodLayoutCodeStart : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\" & charLF & \"<Layout enclosingRectTop=\\\"\"\n\t\t\n\t\tproperty xmlHeader : \"<fmxmlsnippet type=\\\"FMObjectList\\\">\"\n\t\tproperty xmlFooter : \"<\/fmxmlsnippet>\"\n\t\t\n\t\t-- different header for layout objects: \n\t\tproperty xmlHeader_LO_Line1 : \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\"\n\t\tproperty xmlHeader_LO_Line2 : \"<fmxmlsnippet type=\\\"LayoutObjectList\\\">\"\n\t\tproperty xmlHeader_LO_LIST : {xmlHeader_LO_Line1 & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charLF & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & xmlHeader_LO_Line2, xmlHeader_LO_Line1 & charCR & charLF & xmlHeader_LO_Line2}\n\t\tproperty xmlHeader_LO_current : \"\"\n\t\t\n\t\t\n\t\tproperty fmObjCodes : {\n\t\t\t{objName:\"Step\", objCode:\"XMSS\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XML2\", secondaryNode:\"NOT ObjectStyle\"}, \n\t\t\t{objName:\"Layout\", objCode:\"XMLO\", secondaryNode:\"HAS ObjectStyle\"}, \n\t\t\t{objName:\"Group\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Script\", objCode:\"XMSC\"}, \n\t\t\t{objName:\"Field\", objCode:\"XMFD\"}, \n\t\t\t{objName:\"CustomFunction\", objCode:\"XMFN\"}, \n\t\t\t{objName:\"BaseTable\", objCode:\"XMTB\"} \n\t\t\t\t}\n\t\t\n\t\tproperty currentCode : \"\"\n\t\tproperty debugMode : false\n\t\tproperty codeAsXML : \"\"\n\t\tproperty codeAsObjects : \"\"\n\t\t\n\t\tproperty shouldPrettify : false\n\t\tproperty shouldSimpleFormat : false\n\t\t\n\t\ton run\n\t\t\t-- initialize properties of this script object:\n\t\t\t\n\t\t\t-- turn the objCodes into class objects for fmObjectList\n\t\t\tset fmObjectList to {}\n\t\t\trepeat with oneObject in fmObjCodes\n\t\t\t\tset oneCode to objCode of oneObject\n\t\t\t\tset oneClass to classFromCode(oneCode)\n\t\t\t\tset oneSecondaryNode to \"\"\n\t\t\t\ttry\n\t\t\t\t\tset oneSecondaryNode to secondaryNode of oneObject\n\t\t\t\tend try\n\t\t\t\tcopy {objName:objName of oneObject, objCode:objCode of oneObject, objClass:oneClass, secondaryNode:oneSecondaryNode} to end of fmObjectList\n\t\t\tend repeat\n\t\tend run\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PUBLIC METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\ton clipboardGetTextBetween(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Extracts text between two strings from the first item in clipboard.\n\t\t\tset defaultPrefs to {beforeString:null, afterString:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif beforeString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: beforeString.\" number 1024\n\t\t\tend if\n\t\t\tif afterString of prefs is null then\n\t\t\t\terror \"clipboardGetTextBetween failed: Missing search criteria: afterString.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif beforeString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn getTextBetween({sourceText:rawText, beforeText:beforeString of prefs, afterText:afterString of prefs})\n\t\t\tend if\n\t\t\t\n\t\tend clipboardGetTextBetween\n\t\t\n\t\t\n\t\t\n\t\ton clipboardPatternCount(prefs)\n\t\t\t-- version 1.0\n\t\t\t\n\t\t\t-- Checks the first item in clipboard for the specified string\n\t\t\tset defaultPrefs to {searchString:null, searchHex:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif searchString of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset rawText to dataObjectToUTF8({someObject:clipboardObject})\n\t\t\t\treturn patternCount({rawText, searchString of prefs})\n\t\t\t\t\n\t\t\telse if searchHex of prefs is not null then\n\t\t\t\tset clipboardObject to get the clipboard\n\t\t\t\tset textAsHex to coerceToString(clipboardObject)\n\t\t\t\treturn patternCount({textAsHex, searchHex of prefs})\n\t\t\t\t\n\t\t\telse\n\t\t\t\terror \"clipboardPatternCount failed: No search specified.\" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend clipboardPatternCount\n\t\t\n\t\t\n\t\t\n\t\ton clipboardSetObjectsUsingXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t-- changed in 3.5 to ACTUALLY replace of existing clipboard instead of ADDing objects to whatever was already in clipboard.\n\t\t\t-- sets the clipboard to FM Objects from specified XML string\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardSetObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardAddObjectsUsingXML(prefs)\n\t\t\t\n\t\t\t-- ADDS FM Objects for the specified XML string TO the clipboard\n\t\t\t\n\t\t\t-- 3.6 - some error-trapping added\n\t\t\t\n\t\t\tif class of prefs is string then\n\t\t\t\tset stringFmXML to prefs\n\t\t\telse if class of prefs is equal to class of {test:\"TEST\"} then\n\t\t\t\tset stringFmXML to stringFmXML of prefs\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: START\")\n\t\t\tif not checkStringForValidXML(stringFmXML) then\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML: Specified XML does not validly represent FileMaker objects.\")\n\t\t\t\treturn false\n\t\t\tend if\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardAddObjectsUsingXML : currentCode: \" & currentCode)\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset fmClass to classFromCode(currentCode)\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & recordFromList({fmClass, fmObjects})\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardAddObjectsUsingXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToFMObjects(prefs)\n\t\t\t-- version 3.6\n\t\t\t-- converts the specified XML string to FM Objects and puts BOTH in clipboard\n\t\t\t\n\t\t\t-- 3.6 - updated for currentCode issue; some error-trapping added\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToFMObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardSetToTranslatedFMObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\tset the clipboard to fmObjects\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard\n\t\t\t\n\t\t\tset newClip to {string:stringFmXML} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToFMObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardConvertToXML(prefs)\n\t\t\t-- version 3.6\n\t\t\t\n\t\t\t-- 3.6 - updated to deal with currentCode issue\n\t\t\t-- 1.9 - remove the extraneous ASCII 10 added after Layout tag by FM10\n\t\t\t-- 1.8 - ADD XML string to FM objects in clipboard, not replace\n\t\t\t-- converts the contents of the clipboard from FM Objects to XML string\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: START\")\n\t\t\t\n\t\t\tset fmClipboard to get the clipboard -- get it now, so we can ADD XML to it.\n\t\t\t\n\t\t\ttry\n\t\t\t\tset xmlTranslation to clipboardGetObjectsasXML({}) -- as string\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\tif currentCode is \"XMLO\" then\n\t\t\t\t-- if pre-12 FileMaker layout code, check\/fix it for bug if copied from FM 10:\n\t\t\t\tset xmlTranslation to replaceSimple({xmlTranslation, badLayoutCodeStart, goodLayoutCodeStart})\n\t\t\t\t\n\t\t\t\tset testChar to text 44 thru 48 of xmlTranslation\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardConvertToXML : FileMaker 10 BUG ASCII-10 check: Char:\" & testChar & return & \"currentCode:\" & currentCode & return & \"ASCII:\" & (ASCII number of testChar))\n\t\t\tend if\n\t\t\t\n\t\t\tset newClip to {string:xmlTranslation} & fmClipboard\n\t\t\t\n\t\t\tset the clipboard to newClip\n\t\t\t\n\t\t\treturn true\n\t\t\t\n\t\tend clipboardConvertToXML\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsasXML(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsAsXML: START\")\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\n\t\t\tif not clipboardDoesContainFmObjects then\n\t\t\t\terror \"clipboardGetObjectsAsXML : Clipboard does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tif length of currentCode is 0 then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\treturn convertObjectsToXML(fmObjects)\n\t\t\t\n\t\tend clipboardGetObjectsasXML\n\t\t\n\t\t\n\t\ton clipboardGetXMLAsObjects(prefs)\n\t\t\t-- returns the FM object translation of XML string in the clipboard\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: START\")\n\t\t\t\n\t\t\tset stringFmXML to get the clipboard as string\n\t\t\t\n\t\t\ttry\n\t\t\t\tset fmObjects to convertXmlToObjects(stringFmXML)\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetXMLAsObjects: ERROR: \" & errMsg & \".\")\n\t\t\t\treturn false\n\t\t\tend try\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend clipboardGetXMLAsObjects\n\t\t\n\t\t\n\t\t\n\t\ton clipboardGetObjectsToXmlFilePath(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- returns the PATH to an XML translation of FM objects in the clipboard\n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): always check\/set currentCode before using; renamed variable, use currentClass() handler.\n\t\t\t\n\t\t\tset defaultPrefs to {outputFilePath:\"__TEMP__\", resultType:\"MacPath\"}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"clipboardGetObjectsToXmlFilePath: START\")\n\t\t\t\n\t\t\tset clipboardDoesContainFmObjects to checkClipboardForObjects({}) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not clipboardDoesContainFmObjects then return \"\"\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\tset fmObjects to get the clipboard as fmClass\n\t\t\t\n\t\t\tset xmlConverted to dataObjectToUTF8({fmObjects:fmObjects, resultType:resultType of prefs, outputFilePath:outputFilePath of prefs})\n\t\t\t\n\t\t\treturn xmlConverted\n\t\t\t\n\t\t\t\n\t\tend clipboardGetObjectsToXmlFilePath\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton checkClipboardForValidXML(prefs)\n\t\t\t-- checks clipboard for XML that represents FM objects\n\t\t\t-- returns true if it does, false if not\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForValidXML: START\")\n\t\t\t\n\t\t\tset testClipboard to get the clipboard\n\t\t\t\n\t\t\treturn checkStringForValidXML(testClipboard)\n\t\t\t\n\t\tend checkClipboardForValidXML\n\t\t\n\t\t\n\t\ton checkClipboardForObjects(prefs)\n\t\t\t-- version 1.1\n\t\t\t-- Checks clipboard for FM Objects (as classes, not XML). Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: START\")\n\t\t\t\n\t\t\tset clipboardClasses to clipboard info\n\t\t\t\n\t\t\tset clipboardType to \"\"\n\t\t\trepeat with oneTypeAndLength in clipboardClasses\n\t\t\t\tset oneTypeAndLength to contents of oneTypeAndLength\n\t\t\t\t\n\t\t\t\trepeat with oneClass in fmObjectList\n\t\t\t\t\tset {className, classType} to {objName of oneClass, objClass of oneClass}\n\t\t\t\t\tif (item 1 of oneTypeAndLength) is classType then\n\t\t\t\t\t\tset clipboardType to objCode of oneClass\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkClipboardForObjects: clipboardType: \" & clipboardType)\n\t\t\t\n\t\t\t-- now, save _whatever_ it was into currentCode.\n\t\t\tset currentCode to clipboardType\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkClipboardForObjects\n\t\t\n\t\t\n\t\ton convertObjectsToXML(fmObjects)\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertObjectsToXML: START\")\n\t\t\t\n\t\t\tset objectsAsXML to dataObjectToUTF8({fmObjects:fmObjects})\n\t\t\t\n\t\t\tif shouldPrettify then set objectsAsXML to prettifyXML(objectsAsXML)\n\t\t\tif shouldSimpleFormat then set objectsAsXML to simpleFormatXML(objectsAsXML)\n\t\t\t\n\t\t\treturn objectsAsXML\n\t\t\t\n\t\tend convertObjectsToXML\n\t\t\n\t\t\n\t\t\n\t\ton convertXmlToObjects(stringFmXML)\n\t\t\t-- version 3.7\n\t\t\t\n\t\t\t-- 3.7 - 2016-11-02 ( dshockley\/eshagdar ): separate test into a variable; renamed variables.\n\t\t\t-- 3.6 - need to SET currentCode for this object - always.\n\t\t\t-- 3.5 - no need for file writeto be in tell System Events block\n\t\t\t-- converts some string of XML into fmObjects as FM data type\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: START\")\n\t\t\t\n\t\t\tset stringIsValidXML to checkStringForValidXML(stringFmXML) -- return boolean, also sets currentCode property.\t\t\t\n\t\t\tif not stringIsValidXML then\n\t\t\t\t-- if not valid, give an error.\n\t\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: no valid XML\")\n\t\t\t\terror \"XML does not contain valid FileMaker objects.\" number 1024\n\t\t\tend if\n\t\t\t\n\t\t\tset fmClass to currentClass()\n\t\t\t\n\t\t\tset stringLength to length of stringFmXML\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: stringLength: \" & stringLength)\n\t\t\t\n\t\t\tset tempXMLPosix to (makeTempDirPosix() & tempXMLName)\n\t\t\tset xmlFilePath to (POSIX file tempXMLPosix) as string\n\t\t\tif debugMode then logConsole(ScriptName, \"convertXmlToObjects: xmlFilePath: \" & xmlFilePath)\n\t\t\tset xmlHandle to open for access file xmlFilePath with write permission\n\t\t\twrite stringFmXML to xmlHandle as class utf8\n\t\t\tclose access xmlHandle\n\t\t\tset fmObjects to read alias xmlFilePath as fmClass\n\t\t\t\n\t\t\treturn fmObjects\n\t\t\t\n\t\tend convertXmlToObjects\n\t\t\n\t\t\n\t\t\n\t\ton checkStringForValidXML(someString)\n\t\t\t-- version 1.1\n\t\t\t-- Checks someString for XML that represents FM objects. Returns true if it does, false if not. \n\t\t\t\n\t\t\t-- 1.1 - 2016-11-02 ( dshockley\/eshagdar ): added comment, changed test to length of instead of empty string.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset xmlData to make new XML data with data someString\n\t\t\t\t\tset fmObjectName to name of XML element 1 of XML element 1 of xmlData\n\t\t\t\tend tell\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\tif errNum is -1719 then\n\t\t\t\t\t-- couldn't find an XML element, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse if errNum is -2753 then\n\t\t\t\t\t-- couldn't create XML from someString, so NOT valid XML\n\t\t\t\t\treturn false\n\t\t\t\telse\n\t\t\t\t\terror errMsg number errNum\n\t\t\t\tend if\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: fmObjectName: \" & fmObjectName)\n\t\t\t\n\t\t\tset currentCode to \"\"\n\t\t\trepeat with oneObjectType in fmObjectList\n\t\t\t\t\n\t\t\t\tif debugMode then logConsole(ScriptName, objName of oneObjectType)\n\t\t\t\tif (fmObjectName is objName of oneObjectType) then\n\t\t\t\t\t\n\t\t\t\t\t-- Now, the XMLO and XML2 are both \"Layout\" so we need to check a secondary node to know which objCode:\n\t\t\t\t\tif fmObjectName is \"Layout\" then\n\t\t\t\t\t\tset secondaryNode to word 2 of secondaryNode of oneObjectType\n\t\t\t\t\t\tif word 1 of secondaryNode of oneObjectType is \"HAS\" then\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to true\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tset secondaryNodeShouldExist to false\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- see if secondary node exists: \n\t\t\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t\t\tset secondaryNodeDoesExist to exists (first XML element of XML element 1 of XML element 1 of xmlData whose name is \"ObjectStyle\")\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- if it should AND does, or should not and does not, then this is the one we want:\n\t\t\t\t\t\tif secondaryNodeShouldExist is equal to secondaryNodeDoesExist then\n\t\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- NOT Layout, so just use this one:\n\t\t\t\t\t\tset currentCode to objCode of oneObjectType\n\t\t\t\t\t\tset objectType to objClass of oneObjectType\n\t\t\t\t\t\texit repeat\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"checkStringForValidXML: currentCode: \" & currentCode)\n\t\t\t\n\t\t\tif length of currentCode is 0 then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\t\t\n\t\tend checkStringForValidXML\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ PRIVATE METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton currentClass()\n\t\t\treturn classFromCode(currentCode)\n\t\tend currentClass\n\t\t\n\t\t\n\t\ton classFromCode(objCode)\n\t\t\treturn run script \"class \" & objCode & \"\"\n\t\tend classFromCode\n\t\t\n\t\t\n\t\ton makeTempDirPosix()\n\t\t\tset dirPosix to (do shell script \"mktemp -d -t tempFMObject\") & \"\/\"\n\t\t\treturn dirPosix\n\t\tend makeTempDirPosix\n\t\t\n\t\t\n\t\ton removeHeaderFooter(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - 2018-04-04 ( dshockley\/eshagdar ): remove leading blank line after removing header.\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): handles layout objects special header.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML begins with xmlHeader and someXML ends with xmlFooter then\n\t\t\t\t\ttry\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader}\n\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\treturn modifiedXML\n\t\t\t\telse\n\t\t\t\t\t-- was NOT a simple exact header match, so check for layout objects:\n\t\t\t\t\tset hasHeader to false\n\t\t\t\t\tset hasFooter to someXML ends with xmlFooter\n\t\t\t\t\t\n\t\t\t\t\trepeat with oneHeader in xmlHeader_LO_LIST\n\t\t\t\t\t\tset oneHeader to contents of oneHeader\n\t\t\t\t\t\tif someXML begins with oneHeader then\n\t\t\t\t\t\t\tset hasHeader to true\n\t\t\t\t\t\t\tset xmlHeader_LO_current to oneHeader\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\tend repeat\n\t\t\t\t\tif hasHeader and hasFooter then\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, xmlHeader_LO_current}\n\t\t\t\t\t\t\tset modifiedXML to (text items 2 thru -1 of someXML) as string\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to xmlFooter\n\t\t\t\t\t\t\tset modifiedXML to ((text items 1 thru -2 of modifiedXML) as string)\n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\t\t-- trap here so we can restore ASTIDs, then pass out the actual error: \n\t\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\t\t\terror errMsg number errNum\n\t\t\t\t\t\tend try\n\t\t\t\t\t\t\n\t\t\t\t\t\t-- the code above may leave the modified XML with a leading blank line. Strip it off:\n\t\t\t\t\t\tif text 1 thru 1 of modifiedXML is in {charLF, charCR} then\n\t\t\t\t\t\t\tset modifiedXML to text 2 thru -1 of modifiedXML\n\t\t\t\t\t\tend if\n\t\t\t\t\t\t\n\t\t\t\t\t\treturn modifiedXML\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\telse\n\t\t\t\t\t\t-- was ALSO NOT layout objects, so return unchanged:\n\t\t\t\t\t\treturn someXML\n\t\t\t\t\tend if\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\tend removeHeaderFooter\n\t\t\n\t\ton addHeaderFooter(someXML)\n\t\t\t-- version 1.1\n\t\t\t\n\t\t\t-- 1.1 - 2017-12-18 ( dshockley ): support layout objects.\n\t\t\t-- 1.0 - 2017-04-25 ( dshockley\/eshagdar ): first created.\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: START\")\n\t\t\ttry\n\t\t\t\tif someXML does not start with xmlHeader and someXML does not end with xmlFooter then\n\t\t\t\t\tif someXML starts with \"<Layout\" then\n\t\t\t\t\t\t-- layout objects get a special header:\n\t\t\t\t\t\treturn xmlHeader_LO_current & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\telse\n\t\t\t\t\t\t-- all other FileMaker objects:\n\t\t\t\t\t\treturn xmlHeader & charLF & someXML & charLF & xmlFooter\n\t\t\t\t\tend if\n\t\t\t\telse\n\t\t\t\t\treturn someXML\n\t\t\t\tend if\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"removeHeaderFooter: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\tend try\n\t\tend addHeaderFooter\n\t\t\n\t\t\n\t\t\n\t\ton simpleFormatXML(someXML)\n\t\t\t-- version 1.2\n\t\t\t\n\t\t\t-- 1.2 - the variables xmlHeader and xmlFooter are now script object properties; uses removeHeaderFooter and addHeaderFooter. \n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"simpleFormatXML: START\")\n\t\t\t\n\t\t\treturn addHeaderFooter(removeHeaderFooter(someXML))\n\t\t\t\n\t\tend simpleFormatXML\n\t\t\n\t\t\n\t\t\n\t\ton prettifyXML(someXML)\n\t\t\t-- version 1.6, Daniel A. Shockley\n\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: START\")\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif currentCode is \"XML2\" then\n\t\t\t\t\t-- do NOT try to prettify, even if specified, since XML2 is already quasi-formatted.\n\t\t\t\t\tset prettyXML to someXML\n\t\t\t\telse\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t(* prettyprint using xmllint *)\n\t\t\t\t\tset prettyPrint_ShellCommand to \"echo \" & quoted form of someXML & \" | xmllint --format -\"\n\t\t\t\t\t\n\t\t\t\t\tset prettyXML to do shell script prettyPrint_ShellCommand\n\t\t\t\t\t\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\t-- any error above should fail gracefully and just return the original code\n\t\t\t\tif debugMode then logConsole(ScriptName, \"prettifyXML: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\treturn someXML\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\treturn prettyXML\n\t\t\t\n\t\tend prettifyXML\n\t\t\n\t\t\n\t\ton dataObjectToUTF8(prefs)\n\t\t\t-- version 2.7\n\t\t\t\n\t\t\t-- 2.8 - 2016-11-02 ( dshockley\/eshagdar ): debugMode now logs the tempDataPosix\n\t\t\t-- 2.7 - by default, look for someObject instead of 'fmObjects' (but allow calling code to specify 'fmObjects' for backwards compatibility).\n\t\t\t-- 2.6 - can return the UTF8 ITSELF, or instead a path to the temp file this creates.\n\t\t\t-- 2.5 - added debugMode logging\n\t\t\t-- 2.0 - wrapped read\/write commands in System Events tell block to avoid name-space conflicts in FileMaker; handled posix\/path\/file differences to avoid errors (seemed to have error converting from Posix before file existed?)\n\t\t\t\n\t\t\tset defaultPrefs to {resultType:\"utf8\", outputFilePath:\"__TEMP__\", fmObjects:null, someObject:null}\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset someObject to someObject of prefs\n\t\t\tset resultType to resultType of prefs\n\t\t\tset outputFilePath to outputFilePath of prefs\n\t\t\tif someObject is null and fmObjects of prefs is not null then\n\t\t\t\tset someObject to fmObjects of prefs\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tif debugMode then logConsole(ScriptName, \"dataObjectToUTF8: START\")\n\t\t\t\n\t\t\ttry\n\t\t\t\t\n\t\t\t\tif outputFilePath is \"__TEMP__\" then\n\t\t\t\t\tset tempDataFolderPosix to my makeTempDirPosix()\n\t\t\t\t\tset tempDataFolderPath to (POSIX file tempDataFolderPosix) as string\n\t\t\t\t\t\n\t\t\t\t\tset tempDataPosix to tempDataFolderPosix & tempDataName\n\t\t\t\t\tset tempDataPath to tempDataFolderPath & tempDataName\n\t\t\t\t\t\n\t\t\t\telse\n\t\t\t\t\tset tempDataPath to outputFilePath\n\t\t\t\t\tset tempDataPosix to POSIX path of tempDataPath\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\tset someHandle to open for access file tempDataPath with write permission\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\twrite someObject to someHandle\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\tclose access file tempDataPath\n\t\t\t\tend try\n\t\t\t\t\n\t\t\ton error errMsg number errNum\n\t\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: ERROR: \" & errMsg & \"(\" & errNum & \")\")\n\t\t\t\ttry\n\t\t\t\t\tclose access tempDataFile\n\t\t\t\tend try\n\t\t\t\terror errMsg number errNum\n\t\t\tend try\n\t\t\t\n\t\t\tif debugMode then my logConsole(ScriptName, \"dataObjectToUTF8: tempDataPosix: \" & tempDataPosix)\n\t\t\t\n\t\t\tif resultType is \"utf8\" then\n\t\t\t\t\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tread file tempDataPath as class utf8\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\treturn result\n\t\t\t\t\n\t\t\telse if resultType is \"MacPath\" then\n\t\t\t\treturn tempDataPath\n\t\t\t\t\n\t\t\telse if resultType is \"Posix\" then\n\t\t\t\treturn POSIX path of tempDataPosix\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend dataObjectToUTF8\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-----------------------------------\n\t\t------ LIBRARY METHODS ------\n\t\t-----------------------------------\n\t\t\n\t\t-- Included to make certain useful functions available to scripts that use fmObjectTranslator, even when not used internally.\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton parseChars(prefs)\n\t\t\t-- version 1.3, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.3 - default is to consider case\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, parseString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'parseChars()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'parseChars() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset parseString to parseString of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\ttry\n\t\t\t\tset AppleScript's text item delimiters to the {parseString as string}\n\t\t\t\t\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\treturn parsedList\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: parseChars() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend parseChars\n\t\t\n\t\t\n\t\t\n\t\ton replaceSimple(prefs)\n\t\t\t-- version 1.4, Daniel A. Shockley http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.4 - Convert sourceText to string, since the previous version failed on numbers. \n\t\t\t-- 1.3 - The class record is specified into a variable to avoid a namespace conflict when run within FileMaker. \n\t\t\t-- 1.2 - changes parameters to a record to add option to CONSIDER CASE, since the default changed to ignoring case with Snow Leopard. This handler defaults to CONSIDER CASE = true, since that was what older code expected. \n\t\t\t-- 1.1 - coerces the newChars to a STRING, since other data types do not always coerce\n\t\t\t-- (example, replacing \"nine\" with 9 as number replaces with \"\")\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 3 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs, considerCase:item 4 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, oldChars:item 2 of prefs, newChars:item 3 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'replaceSimple()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'replaceSimple() version 1.3. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset considerCase to considerCase of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset oldChars to oldChars of prefs\n\t\t\tset newChars to newChars of prefs\n\t\t\t\n\t\t\tset sourceText to sourceText as string\n\t\t\t\n\t\t\tset oldDelims to AppleScript's text item delimiters\n\t\t\tset AppleScript's text item delimiters to the oldChars\n\t\t\tif considerCase then\n\t\t\t\tconsidering case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend considering\n\t\t\telse\n\t\t\t\tignoring case\n\t\t\t\t\tset the parsedList to every text item of sourceText\n\t\t\t\t\tset AppleScript's text item delimiters to the {(newChars as string)}\n\t\t\t\t\tset the newText to the parsedList as string\n\t\t\t\tend ignoring\n\t\t\tend if\n\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\treturn newText\n\t\t\t\n\t\tend replaceSimple\n\t\t\n\t\t\n\t\ton patternCount(prefs)\n\t\t\t-- version 1.2 - default is to consider case\n\t\t\t\n\t\t\t\n\t\t\tset defaultPrefs to {considerCase:true}\n\t\t\t\n\t\t\t\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is greater than 2 then\n\t\t\t\t\t-- get any parameters after the initial 3\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs, considerCase:item 3 of prefs}\n\t\t\t\telse\n\t\t\t\t\tset prefs to {sourceText:item 1 of prefs, searchString:item 2 of prefs}\n\t\t\t\tend if\n\t\t\t\t\n\t\t\telse if class of prefs is not equal to (class of {someKey:3}) then\n\t\t\t\t-- Test by matching class to something that IS a record to avoid FileMaker namespace conflict with the term \"record\"\n\t\t\t\t\n\t\t\t\terror \"The parameter for 'patternCount()' should be a record or at least a list. Wrap the parameter(s) in curly brackets for easy upgrade to 'patternCount() version 1.2. \" number 1024\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs\n\t\t\t\n\t\t\tset searchString to searchString of prefs\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset considerCase to considerCase of prefs\n\t\t\t\n\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, searchString as string}\n\t\t\ttry\n\t\t\t\tif considerCase then\n\t\t\t\t\tconsidering case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend considering\n\t\t\t\telse\n\t\t\t\t\tignoring case\n\t\t\t\t\t\tset patternCountResult to (count of (text items of sourceText)) - 1\n\t\t\t\t\tend ignoring\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\treturn patternCountResult\n\t\t\ton error errMsg number errNum\n\t\t\t\ttry\n\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tend try\n\t\t\t\terror \"ERROR: patternCount() handler: \" & errMsg number errNum\n\t\t\tend try\n\t\tend patternCount\n\t\t\n\t\t\n\t\ton logConsole(processName, consoleMsg)\n\t\t\t-- version 1.9 - Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t\n\t\t\t-- 1.9 - REQUIRES coerceToString to enable logging of objects not directly coercible to string.\n\t\t\t-- 1.8 - coerces to string first (since numbers would not directly convert for 'quoted form'\n\t\t\t-- 1.7 - now works with Leopard by using the \"logger\" command instead of just appending to log file\n\t\t\t-- 1.6 - the 'space' constant instead of literal spaces for readability, removed trailing space from the hostname command\n\t\t\t-- 1.5 - uses standard date-stamp format\t\n\t\t\t\n\t\t\tset shellCommand to \"logger\" & space & \"-t\" & space & quoted form of processName & space & quoted form of coerceToString(consoleMsg)\n\t\t\t\n\t\t\tdo shell script shellCommand\n\t\t\treturn shellCommand\n\t\tend logConsole\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton coerceToString(incomingObject)\n\t\t\t-- version 1.8, Daniel A. Shockley, http:\/\/www.danshockley.com\n\t\t\t-- 1.8 - instead of trying to store the error message use, generate it\n\t\t\t-- 1.7 - added \"Can't make \" with a curly single-quote. \n\t\t\t-- 1.6 - can add additional errMsg parts (just add to lists to handle other languages. \n\t\t\t-- Currently handles English in both 10.3 and 10.4 (10.3 uses \" into a number.\" \n\t\t\t-- while 10.4 uses \" into type number.\")\n\t\t\t-- 1.5 - added Unicode Text\n\t\t\t\n\t\t\tset errMsgLeadList to {\"Can't make \", \"Cant make \"}\n\t\t\tset errMsgTrailList to {\" into a number.\", \" into type number.\"}\n\t\t\t\n\t\t\tif class of incomingObject is string then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject\n\t\t\telse if class of incomingObject is integer then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is real then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse if class of incomingObject is Unicode text then\n\t\t\t\tset {text:incomingObject} to (incomingObject as string)\n\t\t\t\treturn incomingObject as string\n\t\t\telse\n\t\t\t\t-- LIST, RECORD, styled text, or unknown\n\t\t\t\ttry\n\t\t\t\t\ttry\n\t\t\t\t\t\t\"XXXX\" as number\n\t\t\t\t\t\t-- GENERATE the error message for a known string so we can get \n\t\t\t\t\t\t-- the 'lead' and 'trail' part of the error message\n\t\t\t\t\ton error errMsg number errNum\n\t\t\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, {\"\\\"XXXX\\\"\"}}\n\t\t\t\t\t\tset {errMsgLead, errMsgTrail} to text items of errMsg\n\t\t\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\tend try\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset testMultiply to 1 * incomingObject -- now, generate error message for OUR item\n\t\t\t\t\t\n\t\t\t\t\t-- what items is THIS used for?\n\t\t\t\t\t-- how does script ever get past the above step??\n\t\t\t\t\tset listText to (first character of incomingObject)\n\t\t\t\t\t\n\t\t\t\ton error errMsg\n\t\t\t\t\t--tell me to log errMsg\n\t\t\t\t\tset objectString to errMsg\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgLead then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgLead}\n\t\t\t\t\t\tset objectString to text item 2 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\tif objectString contains errMsgTrail then\n\t\t\t\t\t\tset {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, errMsgTrail}\n\t\t\t\t\t\tset AppleScript's text item delimiters to errMsgTrail\n\t\t\t\t\t\tset objectString to text item 1 of objectString\n\t\t\t\t\t\tset AppleScript's text item delimiters to od\n\t\t\t\t\tend if\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\tset {text:objectString} to (objectString as string)\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\treturn objectString\n\t\t\tend if\n\t\tend coerceToString\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\ton getTextBetween(prefs)\n\t\t\t-- version 1.7.1\n\t\t\t\n\t\t\tset defaultPrefs to {sourceText:null, beforeText:null, afterText:null, textItemNum:2, includeMarkers:false}\n\t\t\t\n\t\t\tif (class of prefs is not list) and ((class of prefs) as string is not \"record\") then\n\t\t\t\terror \"getTextBetween FAILED: parameter should be a record or list. If it is multiple items, just make it into a list to upgrade to this handler.\" number 1024\n\t\t\tend if\n\t\t\tif class of prefs is list then\n\t\t\t\tif (count of prefs) is 4 then\n\t\t\t\t\tset textItemNum of defaultPrefs to item 4 of prefs\n\t\t\t\tend if\n\t\t\t\tset prefs to {sourceText:item 1 of prefs, beforeText:item 2 of prefs, afterText:item 3 of prefs}\n\t\t\tend if\n\t\t\t\n\t\t\t\n\t\t\tset prefs to prefs & defaultPrefs -- add on default preferences, if needed\n\t\t\tset sourceText to sourceText of prefs\n\t\t\tset beforeText to beforeText of prefs\n\t\t\tset afterText to afterText of prefs\n\t\t\tset textItemNum to textItemNum of prefs\n\t\t\tset includeMarkers to includeMarkers of prefs\n\t\t\t\n\t\t\t\n\t\t\ttry\n\t\t\t\tset {oldDelims, AppleScript's text item delimiters} to {AppleScript's text item delimiters, beforeText}\n\t\t\t\t\n\t\t\t\t-- there may be multiple instances of beforeTEXT, so get everything after the first instance\n\t\t\t\tset prefixRemoved to text items textItemNum thru -1 of sourceText\n\t\t\t\tset prefixRemoved to prefixRemoved as string\n\t\t\t\t\n\t\t\t\t-- get everything up to the afterTEXT\n\t\t\t\tset AppleScript's text item delimiters to afterText\n\t\t\t\tset the finalResult to text item 1 of prefixRemoved\n\t\t\t\t\n\t\t\t\t-- reset item delim\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\t\n\t\t\t\tif includeMarkers then set finalResult to beforeText & finalResult & afterText\n\t\t\ton error errMsg number errNum\n\t\t\t\tset AppleScript's text item delimiters to oldDelims\n\t\t\t\tset the finalResult to \"\" -- return nothing if the surrounding text is not found\n\t\t\tend try\n\t\t\t\n\t\t\treturn finalResult\n\t\tend getTextBetween\n\t\t\n\t\t\n\t\ton recordFromList(assocList)\n\t\t\t-- version 2003-11-06, Nigel Garvey, AppleScript-Users mailing list\n\t\t\ttry\n\t\t\t\t{class usrf:assocList}'s x\n\t\t\ton error msg\n\t\t\t\treturn msg\n\t\t\t\trun script text 16 thru -2 of msg\n\t\t\tend try\n\t\tend recordFromList\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\tend script\n\t\n\trun fmObjectTranslator\n\t\n\treturn fmObjectTranslator\n\t\n\t\nend fmObjectTranslator_Instantiate\n\n\n\n\n\n\n\n\n\n\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"49b3bc5a5848ffd009123afd5d7b235f11bc3018","subject":"add volume and stations framework for when i fix it","message":"add volume and stations framework for when i fix it\n","repos":"winny-\/HermesRemote,winny-\/HermesRemote","old_file":"status.applescript","new_file":"status.applescript","new_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n\tset hermesStations to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"volume\", playback volume)\n\n-- XXX: execution error: Hermes got an error: every station doesn\u2019t understand the \u201ccount\u201d message. (-1708)\n--\t\trepeat with theStation in stations\n--\t\t\thermesStations's setkv(\"name\", theStation's name)\n--\t\t\thermesStations's setkv(\"id\", theStation's station ID)\n--\t\tend repeat\n\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\t\thermesInfo's setkv(\"station_name\", current station's name)\n\t\thermesInfo's setkv(\"station_id\", current station's station ID)\n\tend tell\n\thermesInfo's setkv(\"stations\", hermesStations)\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","old_contents":"tell application \"Finder\"\n\tset json_path to file \"json.scpt\" of folder of (path to me)\nend tell\nset json to load script (json_path as alias)\n\non is_running(appName)\n\ttell application \"System Events\" to (name of processes) contains appName\nend is_running\n\nset reply to json's createDict()\nif is_running(\"Hermes\") then\n\treply's setkv(\"running\", true)\n\tset hermesInfo to json's createDict()\n\ttell application \"Hermes\"\n\t\thermesInfo's setkv(\"state\", playback state as string)\n\t\thermesInfo's setkv(\"title\", current song's title)\n\t\thermesInfo's setkv(\"artist\", current song's artist)\n\t\thermesInfo's setkv(\"album\", current song's album)\n\t\thermesInfo's setkv(\"artwork\", current song's artwork URL)\n\t\thermesInfo's setkv(\"rating\", current song's rating)\n\t\thermesInfo's setkv(\"position\", playback position as integer)\n\t\thermesInfo's setkv(\"duration\", current song duration as integer)\n\tend tell\n\treply's setkv(\"info\", hermesInfo)\nelse\n\treply's setkv(\"running\", false)\nend if\nreturn reply's toJson()\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"d97b50320a0634e02f139c1218508ffd07b17894","subject":"Add update script to open vagrant applescript","message":"Add update script to open vagrant applescript\n","repos":"smathson\/dotfiles","old_file":"applescripts\/open_vagrant.applescript","new_file":"applescripts\/open_vagrant.applescript","new_contents":"set open_vagrant to \"z puppet; vagrant up;\"\nset update_master to \"\/Users\/alex\/.homesick\/repos\/palcu\/dotfiles\/scripts\/update_master.sh;\"\n\ntell application \"iTerm\"\n\tactivate\n\ttry\n\t\tset mysession to current session of current terminal\n\ton error\n\t\tset myterm to (make new terminal)\n\t\ttell myterm\n\t\t\tlaunch session \"Default\"\n\t\t\tset mysession to current session\n\t\tend tell\n\tend try\n\t\n\ttell mysession\n write text update_master\n\t\twrite text open_vagrant\n\tend tell\nend tell\n","old_contents":"set open_vagrant to \"z puppet; vagrant up;\"\n\ntell application \"iTerm\"\n\tactivate\n\ttry\n\t\tset mysession to current session of current terminal\n\ton error\n\t\tset myterm to (make new terminal)\n\t\ttell myterm\n\t\t\tlaunch session \"Default\"\n\t\t\tset mysession to current session\n\t\tend tell\n\tend try\n\t\n\ttell mysession\n\t\twrite text open_vagrant\n\tend tell\nend tell","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"4d97c01f4bf5785d55d362cea3b0e36680843ab7","subject":"[ReactNative] Don't activate Chrome when debugger is already open","message":"[ReactNative] Don't activate Chrome when debugger is already open\n\nSummary:\nBefore this diff every time you reload in debug mode Chrome window\nis actiavated. Looks like that behaviour is pretty annoying.\n\nFixes #689\n\n@public\n\nTest Plan:\n```\n$ .\/packager\/launchChromeDevTools.applescript 'https:\/\/www.facebook.com\/'\n```\n\nFirst time it opens a new tab and activates Chrome, running this again does\nnot activate Chrome if the tab already exists.\n","repos":"cazacugmihai\/react-native,nathanajah\/react-native,huangsongyan\/react-native,MattFoley\/react-native,yangshangde\/react-native,puf\/react-native,TChengZ\/react-native,hzgnpu\/react-native,DerayGa\/react-native,averted\/react-native,HealthyWealthy\/react-native,yutail\/react-native,aifeld\/react-native,hengcj\/react-native,lucyywang\/react-native,yushiwo\/react-native,pandiaraj44\/react-native,sunblaze\/react-native,Wingie\/react-native,geoffreyfloyd\/react-native,javache\/react-native,jbaumbach\/react-native,jeromjoy\/react-native,orenklein\/react-native,quuack\/react-native,slongwang\/react-native,martinbigio\/react-native,eduardinni\/react-native,richardgill\/react-native,devknoll\/react-native,ludaye123\/react-native,hammerandchisel\/react-native,nickhudkins\/react-native,MetSystem\/react-native,MonirAbuHilal\/react-native,hayeah\/react-native,Lohit9\/react-native,charmingzuo\/react-native,jmhdez\/react-native,gabrielbellamy\/react-native,folist\/react-native,pglotov\/react-native,htc2u\/react-native,clooth\/react-native,misakuo\/react-native,jaredly\/react-native,timfpark\/react-native,rollokb\/react-native,southasia\/react-native,happypancake\/react-native,Emilios1995\/react-native,gs-akhan\/react-native,Andreyco\/react-native,Purii\/react-native,MonirAbuHilal\/react-native,adamjmcgrath\/react-native,Tredsite\/react-native,yangchengwork\/react-native,rwwarren\/react-native,mchinyakov\/react-native,thotegowda\/react-native,zdsiyan\/react-native,philikon\/react-native,chapinkapa\/react-native,huip\/react-native,chapinkapa\/react-native,browniefed\/react-native,YotrolZ\/react-native,gitim\/react-native,lightsofapollo\/react-native,wenpkpk\/react-native,hayeah\/react-native,onesfreedom\/react-native,bradbumbalough\/react-native,soxunyi\/react-native,negativetwelve\/react-native,wangyzyoga\/react-native,levic92\/react-native,beni55\/react-native,dut3062796s\/react-native,Wingie\/react-native,ipmobiletech\/react-native,threepointone\/react-native-1,levic92\/react-native,milieu\/react-native,andrewljohnson\/react-native,pletcher\/react-native,guanghuili\/react-native,Bhullnatik\/react-native,southasia\/react-native,eduardinni\/react-native,chentsulin\/react-native,DannyvanderJagt\/react-native,chsj1\/react-native,affinityis\/react-native,KJlmfe\/react-native,beni55\/react-native,Applied-Duality\/react-native,Hkmu\/react-native,MonirAbuHilal\/react-native,carcer\/react-native,mironiasty\/react-native,lee-my\/react-native,jonesgithub\/react-native,bradens\/react-native,jevakallio\/react-native,ProjectSeptemberInc\/react-native,tadeuzagallo\/react-native,gitim\/react-native,trueblue2704\/react-native,garrows\/react-native,abdelouahabb\/react-native,abdelouahabb\/react-native,cazacugmihai\/react-native,luqin\/react-native,F2EVarMan\/react-native,lokilandon\/react-native,Hkmu\/react-native,wangziqiang\/react-native,sarvex\/react-native,wesley1001\/react-native,judastree\/react-native,neeraj-singh\/react-native,zhaosichao\/react-native,huangsongyan\/react-native,catalinmiron\/react-native,tarkus\/react-native-appletv,garydonovan\/react-native,spicyj\/react-native,simple88\/react-native,lwansbrough\/react-native,chentsulin\/react-native,mjetek\/react-native,harrykiselev\/react-native,Inner89\/react-native,taydakov\/react-native,jadbox\/react-native,appersonlabs\/react-native,unknownexception\/react-native,naoufal\/react-native,gre\/react-native,androidgilbert\/react-native,corbt\/react-native,doochik\/react-native,kesha-antonov\/react-native,xiayz\/react-native,udnisap\/react-native,luqin\/react-native,vlrchtlt\/react-native,yjyi\/react-native,skevy\/react-native,onesfreedom\/react-native,hharnisc\/react-native,southasia\/react-native,simple88\/react-native,rainkong\/react-native,tgoldenberg\/react-native,folist\/react-native,ankitsinghania94\/react-native,stan229\/react-native,rushidesai\/react-native,jasonnoahchoi\/react-native,Flickster42490\/react-native,zhangwei001\/react-native,imjerrybao\/react-native,hzgnpu\/react-native,bogdantmm92\/react-native,ndejesus1227\/react-native,bowlofstew\/react-native,urvashi01\/react-native,pvinis\/react-native-desktop,InterfaceInc\/react-native,fw1121\/react-native,eliagrady\/react-native,udnisap\/react-native,Heart2009\/react-native,ChristopherSalam\/react-native,quuack\/react-native,skevy\/react-native,wjb12\/react-native,dubert\/react-native,salanki\/react-native,wdxgtsh\/react-native,jeffchienzabinet\/react-native,mway08\/react-native,rickbeerendonk\/react-native,iOSTestApps\/react-native,alin23\/react-native,androidgilbert\/react-native,xxccll\/react-native,pitatensai\/react-native,futbalguy\/react-native,a2\/react-native,Loke155\/react-native,ProjectSeptemberInc\/react-native,ProjectSeptemberInc\/react-native,eduardinni\/react-native,Jericho25\/react-native,leegilon\/react-native,lucyywang\/react-native,xxccll\/react-native,oren\/react-native,vlrchtlt\/react-native,strwind\/react-native,kamronbatman\/react-native,gs-akhan\/react-native,chapinkapa\/react-native,leeyeh\/react-native,darrylblake\/react-native,rantianhua\/react-native,guanghuili\/react-native,ehd\/react-native,gilesvangruisen\/react-native,lprhodes\/react-native,mironiasty\/react-native,maskkid\/react-native,quyixia\/react-native,chsj1\/react-native,NunoEdgarGub1\/react-native,mrngoitall\/react-native,wustxing\/react-native,yamill\/react-native,dylanchann\/react-native,donyu\/react-native,lendup\/react-native,makadaw\/react-native,facebook\/react-native,rkumar3147\/react-native,nanpian\/react-native,liuzechen\/react-native,zvona\/react-native,ChiMarvine\/react-native,cmhsu\/react-native,ide\/react-native,enaqx\/react-native,Swaagie\/react-native,guanghuili\/react-native,browniefed\/react-native,yutail\/react-native,Swaagie\/react-native,aljs\/react-native,lelandrichardson\/react-native,Reparadocs\/react-native,leopardpan\/react-native,Ehesp\/react-native,DerayGa\/react-native,gabrielbellamy\/react-native,Guardiannw\/react-native,eduvon0220\/react-native,yangshangde\/react-native,MetSystem\/react-native,guanghuili\/react-native,hharnisc\/react-native,Livyli\/react-native,christer155\/react-native,thotegowda\/react-native,sixtomay\/react-native,goodheart\/react-native,ptmt\/react-native-macos,jackalchen\/react-native,clooth\/react-native,kfiroo\/react-native,jevakallio\/react-native,xinthink\/react-native,jhen0409\/react-native,lstNull\/react-native,ramoslin02\/react-native,alpz5566\/react-native,wjb12\/react-native,pairyo\/react-native,nathanajah\/react-native,gabrielbellamy\/react-native,pjcabrera\/react-native,tsjing\/react-native,lendup\/react-native,pvinis\/react-native-desktop,quuack\/react-native,sospartan\/react-native,jeffchienzabinet\/react-native,liangmingjie\/react-native,srounce\/react-native,salanki\/react-native,Livyli\/react-native,sudhirj\/react-native,Zagorakiss\/react-native,ndejesus1227\/react-native,Rowandjj\/react-native,eliagrady\/react-native,sixtomay\/react-native,soxunyi\/react-native,callstack-io\/react-native,lokilandon\/react-native,evilemon\/react-native,orenklein\/react-native,compulim\/react-native,MonirAbuHilal\/react-native,hzgnpu\/react-native,taydakov\/react-native,ramoslin02\/react-native,shrutic123\/react-native,emodeqidao\/react-native,darkrishabh\/react-native,jeromjoy\/react-native,happypancake\/react-native,javache\/react-native,timfpark\/react-native,hoastoolshop\/react-native,strwind\/react-native,bogdantmm92\/react-native,jevakallio\/react-native,affinityis\/react-native,adamterlson\/react-native,pickhardt\/react-native,lokilandon\/react-native,nktpro\/react-native,jonesgithub\/react-native,CntChen\/react-native,rxb\/react-native,nsimmons\/react-native,chacbumbum\/react-native,bimawa\/react-native,Bronts\/react-native,IveWong\/react-native,hesling\/react-native,imDangerous\/react-native,cazacugmihai\/react-native,nsimmons\/react-native,doochik\/react-native,roy0914\/react-native,shrimpy\/react-native,ortutay\/react-native,jeromjoy\/react-native,ehd\/react-native,sudhirj\/react-native,gegaosong\/react-native,martinbigio\/react-native,hassanabidpk\/react-native,Tredsite\/react-native,puf\/react-native,wenpkpk\/react-native,zvona\/react-native,averted\/react-native,BretJohnson\/react-native,chentsulin\/react-native,bouk\/react-native,wdxgtsh\/react-native,tsdl2013\/react-native,tszajna0\/react-native,exponentjs\/react-native,corbt\/react-native,spyrx7\/react-native,NZAOM\/react-native,iOSTestApps\/react-native,hzgnpu\/react-native,j27cai\/react-native,jmhdez\/react-native,HSFGitHub\/react-native,martinbigio\/react-native,machard\/react-native,marlonandrade\/react-native,YComputer\/react-native,JackLeeMing\/react-native,CntChen\/react-native,jibonpab\/react-native,NishanthShankar\/react-native,lee-my\/react-native,thotegowda\/react-native,ultralame\/react-native,nickhargreaves\/react-native,lstNull\/react-native,popovsh6\/react-native,philikon\/react-native,udnisap\/react-native,mrngoitall\/react-native,ide\/react-native,dikaiosune\/react-native,cpunion\/react-native,sospartan\/react-native,mukesh-kumar1905\/react-native,woshili1\/react-native,quuack\/react-native,forcedotcom\/react-native,HSFGitHub\/react-native,timfpark\/react-native,rainkong\/react-native,genome21\/react-native,lee-my\/react-native,WilliamRen\/react-native,PlexChat\/react-native,chengky\/react-native,pengleelove\/react-native,YueRuo\/react-native,yjyi\/react-native,21451061\/react-native,imjerrybao\/react-native,jhen0409\/react-native,code0100fun\/react-native,narlian\/react-native,nevir\/react-native,daveenguyen\/react-native,jackalchen\/react-native,udnisap\/react-native,shadow000902\/react-native,myntra\/react-native,tgf229\/react-native,aaron-goshine\/react-native,honger05\/react-native,srounce\/react-native,nevir\/react-native,wangcan2014\/react-native,rushidesai\/react-native,bradens\/react-native,liubko\/react-native,heyjim89\/react-native,CodeLinkIO\/react-native,dfala\/react-native,liuhong1happy\/react-native,RGKzhanglei\/react-native,orenklein\/react-native,eddiemonge\/react-native,ktoh\/react-native,krock01\/react-native,huangsongyan\/react-native,Bhullnatik\/react-native,adrie4mac\/react-native,gauribhoite\/react-native,HSFGitHub\/react-native,lanceharper\/react-native,yiminghe\/react-native,jasonals\/react-native,mqli\/react-native,cdlewis\/react-native,arbesfeld\/react-native,dylanchann\/react-native,neeraj-singh\/react-native,javache\/react-native,sghiassy\/react-native,skatpgusskat\/react-native,liuzechen\/react-native,sheep902\/react-native,yzarubin\/react-native,sonnylazuardi\/react-native,bright-sparks\/react-native,makadaw\/react-native,adamkrell\/react-native,yiminghe\/react-native,mariusbutuc\/react-native,Esdeath\/react-native,mozillo\/react-native,chetstone\/react-native,Hkmu\/react-native,eduardinni\/react-native,ouyangwenfeng\/react-native,appersonlabs\/react-native,BossKing\/react-native,xiaoking\/react-native,liuzechen\/react-native,Furzikov\/react-native,bradbumbalough\/react-native,sheep902\/react-native,Wingie\/react-native,leopardpan\/react-native,NZAOM\/react-native,kassens\/react-native,javache\/react-native,ktoh\/react-native,yushiwo\/react-native,genome21\/react-native,ivanph\/react-native,Jericho25\/react-native,Heart2009\/react-native,nanpian\/react-native,brentvatne\/react-native,mway08\/react-native,affinityis\/react-native,kujohn\/react-native,zvona\/react-native,codejet\/react-native,yjh0502\/react-native,imDangerous\/react-native,lstNull\/react-native,liubko\/react-native,ehd\/react-native,ldehai\/react-native,cazacugmihai\/react-native,thotegowda\/react-native,lloydho\/react-native,rodneyss\/react-native,edward\/react-native,urvashi01\/react-native,yiminghe\/react-native,mrspeaker\/react-native,rickbeerendonk\/react-native,genome21\/react-native,insionng\/react-native,chacbumbum\/react-native,roy0914\/react-native,ide\/react-native,mbrock\/react-native,quyixia\/react-native,madusankapremaratne\/react-native,jevakallio\/react-native,ipmobiletech\/react-native,wdxgtsh\/react-native,Applied-Duality\/react-native,ericvera\/react-native,stan229\/react-native,slongwang\/react-native,jibonpab\/react-native,goodheart\/react-native,mukesh-kumar1905\/react-native,htc2u\/react-native,peterp\/react-native,jevakallio\/react-native,zenlambda\/react-native,Bhullnatik\/react-native,eduvon0220\/react-native,lee-my\/react-native,christer155\/react-native,xinthink\/react-native,monyxie\/react-native,ptmt\/react-native-macos,bradbumbalough\/react-native,jaredly\/react-native,folist\/react-native,shrutic\/react-native,eliagrady\/react-native,darrylblake\/react-native,chengky\/react-native,nanpian\/react-native,ptomasroos\/react-native,jadbox\/react-native,Reparadocs\/react-native,johnv315\/react-native,supercocoa\/react-native,frantic\/react-native,sheep902\/react-native,shinate\/react-native,soulcm\/react-native,zhangxq5012\/react-native,narlian\/react-native,wesley1001\/react-native,hanxiaofei\/react-native,adrie4mac\/react-native,simple88\/react-native,noif\/react-native,adamkrell\/react-native,cez213\/react-native,tarkus\/react-native-appletv,nathanajah\/react-native,alvarojoao\/react-native,kentaromiura\/react-native,heyjim89\/react-native,myntra\/react-native,Bronts\/react-native,Swaagie\/react-native,gre\/react-native,Poplava\/react-native,jekey\/react-native,aljs\/react-native,yangchengwork\/react-native,xxccll\/react-native,lanceharper\/react-native,madusankapremaratne\/react-native,glovebx\/react-native,mihaigiurgeanu\/react-native,eduvon0220\/react-native,sghiassy\/react-native,DanielMSchmidt\/react-native,Shopify\/react-native,corbt\/react-native,lgengsy\/react-native,sunblaze\/react-native,yutail\/react-native,krock01\/react-native,dylanchann\/react-native,nevir\/react-native,evilemon\/react-native,marlonandrade\/react-native,myntra\/react-native,Jonekee\/react-native,bouk\/react-native,a2\/react-native,pjcabrera\/react-native,WilliamRen\/react-native,jackeychens\/react-native,yelled3\/react-native,pglotov\/react-native,formatlos\/react-native,zvona\/react-native,garrows\/react-native,southasia\/react-native,sahat\/react-native,barakcoh\/react-native,taydakov\/react-native,arbesfeld\/react-native,darrylblake\/react-native,lstNull\/react-native,glovebx\/react-native,liuhong1happy\/react-native,formatlos\/react-native,tgf229\/react-native,machard\/react-native,ProjectSeptemberInc\/react-native,farazs\/react-native,mjetek\/react-native,mway08\/react-native,forcedotcom\/react-native,jmhdez\/react-native,tahnok\/react-native,F2EVarMan\/react-native,PlexChat\/react-native,imjerrybao\/react-native,sjchakrav\/react-native,xinthink\/react-native,vincentqiu\/react-native,sahrens\/react-native,milieu\/react-native,Andreyco\/react-native,geoffreyfloyd\/react-native,zhangwei001\/react-native,cmhsu\/react-native,adamkrell\/react-native,jeffchienzabinet\/react-native,wlrhnh-David\/react-native,billhello\/react-native,nanpian\/react-native,YinshawnRao\/react-native,zhangwei001\/react-native,naoufal\/react-native,TChengZ\/react-native,spicyj\/react-native,mway08\/react-native,pvinis\/react-native-desktop,pjcabrera\/react-native,bodefuwa\/react-native,srounce\/react-native,huangsongyan\/react-native,jackalchen\/react-native,satya164\/react-native,cxfeng1\/react-native,LytayTOUCH\/react-native,dut3062796s\/react-native,marlonandrade\/react-native,irisli\/react-native,srounce\/react-native,Flickster42490\/react-native,charlesvinette\/react-native,adamterlson\/react-native,eduardinni\/react-native,wangjiangwen\/react-native,jonesgithub\/react-native,skatpgusskat\/react-native,yzarubin\/react-native,qingsong-xu\/react-native,cdlewis\/react-native,cdlewis\/react-native,Hkmu\/react-native,futbalguy\/react-native,browniefed\/react-native,jekey\/react-native,bestwpw\/react-native,chetstone\/react-native,IveWong\/react-native,WilliamRen\/react-native,arbesfeld\/react-native,hwsyy\/react-native,imjerrybao\/react-native,skatpgusskat\/react-native,rodneyss\/react-native,ChristianHersevoort\/react-native,sixtomay\/react-native,ouyangwenfeng\/react-native,lmorchard\/react-native,ide\/react-native,hengcj\/react-native,goodheart\/react-native,huip\/react-native,garrows\/react-native,sunblaze\/react-native,ChristianHersevoort\/react-native,fengshao0907\/react-native,eliagrady\/react-native,callstack-io\/react-native,code0100fun\/react-native,DannyvanderJagt\/react-native,andersryanc\/react-native,jevakallio\/react-native,monyxie\/react-native,Esdeath\/react-native,myntra\/react-native,cxfeng1\/react-native,orenklein\/react-native,Serfenia\/react-native,lloydho\/react-native,chnfeeeeeef\/react-native,DannyvanderJagt\/react-native,programming086\/react-native,Srikanth4\/react-native,lokilandon\/react-native,xiayz\/react-native,dizlexik\/react-native,lucyywang\/react-native,apprennet\/react-native,farazs\/react-native,thstarshine\/react-native,wjb12\/react-native,barakcoh\/react-native,sixtomay\/react-native,nktpro\/react-native,spyrx7\/react-native,eddiemonge\/react-native,fish24k\/react-native,mrspeaker\/react-native,gilesvangruisen\/react-native,genome21\/react-native,dvcrn\/react-native,1988fei\/react-native,ouyangwenfeng\/react-native,cpunion\/react-native,sarvex\/react-native,Maxwell2022\/react-native,tsjing\/react-native,facebook\/react-native,InterfaceInc\/react-native,manhvvhtth\/react-native,kamronbatman\/react-native,Applied-Duality\/react-native,skevy\/react-native,Esdeath\/react-native,IveWong\/react-native,iodine\/react-native,Ehesp\/react-native,RGKzhanglei\/react-native,jackeychens\/react-native,clooth\/react-native,aziz-boudi4\/react-native,tsjing\/react-native,clozr\/react-native,BossKing\/react-native,misakuo\/react-native,futbalguy\/react-native,pcottle\/react-native,lee-my\/react-native,codejet\/react-native,MonirAbuHilal\/react-native,thotegowda\/react-native,apprennet\/react-native,yangshangde\/react-native,Shopify\/react-native,bowlofstew\/react-native,yzarubin\/react-native,leeyeh\/react-native,htc2u\/react-native,kushal\/react-native,mrspeaker\/react-native,DerayGa\/react-native,imWildCat\/react-native,noif\/react-native,abdelouahabb\/react-native,nevir\/react-native,hengcj\/react-native,zvona\/react-native,jekey\/react-native,soulcm\/react-native,RGKzhanglei\/react-native,NZAOM\/react-native,rxb\/react-native,yamill\/react-native,xiayz\/react-native,jekey\/react-native,peterp\/react-native,catalinmiron\/react-native,NunoEdgarGub1\/react-native,alpz5566\/react-native,Ehesp\/react-native,stan229\/react-native,sitexa\/react-native,arthuralee\/react-native,aaron-goshine\/react-native,honger05\/react-native,foghina\/react-native,sarvex\/react-native,carcer\/react-native,ptomasroos\/react-native,wangziqiang\/react-native,fish24k\/react-native,csudanthi\/react-native,BretJohnson\/react-native,tsdl2013\/react-native,kamronbatman\/react-native,myntra\/react-native,milieu\/react-native,yiminghe\/react-native,neeraj-singh\/react-native,yiminghe\/react-native,ludaye123\/react-native,hike2008\/react-native,alvarojoao\/react-native,Bronts\/react-native,shrutic123\/react-native,rxb\/react-native,dralletje\/react-native,DenisIzmaylov\/react-native,cpunion\/react-native,Tredsite\/react-native,farazs\/react-native,Lohit9\/react-native,misakuo\/react-native,chentsulin\/react-native,arthuralee\/react-native,rickbeerendonk\/react-native,negativetwelve\/react-native,gitim\/react-native,jibonpab\/react-native,chiefr\/react-native,aziz-boudi4\/react-native,pglotov\/react-native,hengcj\/react-native,appersonlabs\/react-native,wangcan2014\/react-native,Srikanth4\/react-native,enaqx\/react-native,tsjing\/react-native,levic92\/react-native,doochik\/react-native,machard\/react-native,jasonnoahchoi\/react-native,Reparadocs\/react-native,sospartan\/react-native,quyixia\/react-native,krock01\/react-native,zuolangguo\/react-native,ivanph\/react-native,ericvera\/react-native,yusefnapora\/react-native,geoffreyfloyd\/react-native,cmhsu\/react-native,rickbeerendonk\/react-native,formatlos\/react-native,darkrishabh\/react-native,lstNull\/react-native,dabit3\/react-native,clozr\/react-native,shrutic\/react-native,bowlofstew\/react-native,chacbumbum\/react-native,skevy\/react-native,olivierlesnicki\/react-native,gauribhoite\/react-native,puf\/react-native,shadow000902\/react-native,fish24k\/react-native,ipmobiletech\/react-native,zenlambda\/react-native,krock01\/react-native,huip\/react-native,farazs\/react-native,Serfenia\/react-native,lwansbrough\/react-native,dubert\/react-native,kesha-antonov\/react-native,mrngoitall\/react-native,soulcm\/react-native,bright-sparks\/react-native,ndejesus1227\/react-native,bogdantmm92\/react-native,cazacugmihai\/react-native,DanielMSchmidt\/react-native,shinate\/react-native,sitexa\/react-native,lucyywang\/react-native,formatlos\/react-native,sonnylazuardi\/react-native,shadow000902\/react-native,sekouperry\/react-native,rwwarren\/react-native,Emilios1995\/react-native,bodefuwa\/react-native,hydraulic\/react-native,code0100fun\/react-native,fw1121\/react-native,sudhirj\/react-native,christer155\/react-native,wildKids\/react-native,tarkus\/react-native-appletv,hoastoolshop\/react-native,RGKzhanglei\/react-native,wjb12\/react-native,machard\/react-native,kfiroo\/react-native,shadow000902\/react-native,evilemon\/react-native,jeanblanchard\/react-native,Rowandjj\/react-native,hassanabidpk\/react-native,sekouperry\/react-native,negativetwelve\/react-native,nevir\/react-native,CodeLinkIO\/react-native,waynett\/react-native,monyxie\/react-native,KJlmfe\/react-native,carcer\/react-native,HealthyWealthy\/react-native,RGKzhanglei\/react-native,pvinis\/react-native-desktop,mihaigiurgeanu\/react-native,JackLeeMing\/react-native,iodine\/react-native,futbalguy\/react-native,adamjmcgrath\/react-native,iodine\/react-native,Maxwell2022\/react-native,supercocoa\/react-native,onesfreedom\/react-native,kesha-antonov\/react-native,strwind\/react-native,rollokb\/react-native,hydraulic\/react-native,machard\/react-native,lmorchard\/react-native,CntChen\/react-native,pitatensai\/react-native,taydakov\/react-native,mtford90\/react-native,orenklein\/react-native,sarvex\/react-native,HSFGitHub\/react-native,darkrishabh\/react-native,happypancake\/react-native,Zagorakiss\/react-native,quyixia\/react-native,ptmt\/react-native-macos,nevir\/react-native,liuhong1happy\/react-native,yusefnapora\/react-native,bestwpw\/react-native,exponent\/react-native,DanielMSchmidt\/react-native,lee-my\/react-native,shlomiatar\/react-native,gre\/react-native,jonesgithub\/react-native,code0100fun\/react-native,adamkrell\/react-native,xiayz\/react-native,liduanw\/react-native,InterfaceInc\/react-native,adamkrell\/react-native,sghiassy\/react-native,waynett\/react-native,ericvera\/react-native,JasonZ321\/react-native,charlesvinette\/react-native,darkrishabh\/react-native,ktoh\/react-native,csatf\/react-native,vincentqiu\/react-native,enaqx\/react-native,nevir\/react-native,kfiroo\/react-native,pjcabrera\/react-native,dubert\/react-native,miracle2k\/react-native,chapinkapa\/react-native,pjcabrera\/react-native,Jonekee\/react-native,dralletje\/react-native,gauribhoite\/react-native,Purii\/react-native,aaron-goshine\/react-native,lokilandon\/react-native,rkumar3147\/react-native,mqli\/react-native,jekey\/react-native,qq644531343\/react-native,Tredsite\/react-native,patoroco\/react-native,kesha-antonov\/react-native,andrewljohnson\/react-native,Maxwell2022\/react-native,geoffreyfloyd\/react-native,jadbox\/react-native,hike2008\/react-native,eddiemonge\/react-native,yushiwo\/react-native,programming086\/react-native,nathanajah\/react-native,Loke155\/react-native,mbrock\/react-native,rantianhua\/react-native,cazacugmihai\/react-native,tadeuzagallo\/react-native,adamkrell\/react-native,gilesvangruisen\/react-native,lightsofapollo\/react-native,lokilandon\/react-native,tszajna0\/react-native,beni55\/react-native,dralletje\/react-native,yangchengwork\/react-native,ProjectSeptemberInc\/react-native,lprhodes\/react-native,aziz-boudi4\/react-native,mcanthony\/react-native,lprhodes\/react-native,exponentjs\/rex,ptmt\/react-native-macos,Guardiannw\/react-native,threepointone\/react-native-1,wesley1001\/react-native,qingsong-xu\/react-native,chsj1\/react-native,alantrrs\/react-native,timfpark\/react-native,emodeqidao\/react-native,Jericho25\/react-native,jabinwang\/react-native,KJlmfe\/react-native,guanghuili\/react-native,code0100fun\/react-native,clozr\/react-native,eddiemonge\/react-native,daveenguyen\/react-native,fengshao0907\/react-native,sahrens\/react-native,21451061\/react-native,ide\/react-native,neeraj-singh\/react-native,PhilippKrone\/react-native,rainkong\/react-native,machard\/react-native,charmingzuo\/react-native,philikon\/react-native,fengshao0907\/react-native,tadeuzagallo\/react-native,wdxgtsh\/react-native,MetSystem\/react-native,oren\/react-native,aifeld\/react-native,ModusCreateOrg\/react-native,tadeuzagallo\/react-native,ChristopherSalam\/react-native,orenklein\/react-native,ouyangwenfeng\/react-native,tarkus\/react-native-appletv,Furzikov\/react-native,zdsiyan\/react-native,wjb12\/react-native,peterp\/react-native,fw1121\/react-native,waynett\/react-native,pletcher\/react-native,mqli\/react-native,soxunyi\/react-native,shrutic123\/react-native,mcrooks88\/react-native,sonnylazuardi\/react-native,udnisap\/react-native,leegilon\/react-native,LytayTOUCH\/react-native,charmingzuo\/react-native,wangziqiang\/react-native,clozr\/react-native,zhangxq5012\/react-native,ronak301\/react-native,Loke155\/react-native,imWildCat\/react-native,aroth\/react-native,common2015\/react-native,xiaoking\/react-native,clooth\/react-native,lloydho\/react-native,eduvon0220\/react-native,chirag04\/react-native,Poplava\/react-native,rxb\/react-native,tsdl2013\/react-native,vlrchtlt\/react-native,enaqx\/react-native,popovsh6\/react-native,woshili1\/react-native,kotdark\/react-native,guanghuili\/react-native,andrewljohnson\/react-native,yelled3\/react-native,Andreyco\/react-native,esauter5\/react-native,aifeld\/react-native,sjchakrav\/react-native,shlomiatar\/react-native,esauter5\/react-native,chnfeeeeeef\/react-native,liuzechen\/react-native,ptmt\/react-native,shadow000902\/react-native,arthuralee\/react-native,chacbumbum\/react-native,philonpang\/react-native,liduanw\/react-native,rebeccahughes\/react-native,goodheart\/react-native,hammerandchisel\/react-native,daveenguyen\/react-native,zuolangguo\/react-native,ldehai\/react-native,NZAOM\/react-native,yjyi\/react-native,woshili1\/react-native,clooth\/react-native,thstarshine\/react-native,PhilippKrone\/react-native,Andreyco\/react-native,kushal\/react-native,neeraj-singh\/react-native,TChengZ\/react-native,folist\/react-native,nickhargreaves\/react-native,pitatensai\/react-native,brentvatne\/react-native,yiminghe\/react-native,j27cai\/react-native,programming086\/react-native,iOSTestApps\/react-native,wustxing\/react-native,rkumar3147\/react-native,code0100fun\/react-native,yelled3\/react-native,YueRuo\/react-native,lgengsy\/react-native,liufeigit\/react-native,compulim\/react-native,PhilippKrone\/react-native,cpunion\/react-native,1988fei\/react-native,gauribhoite\/react-native,wesley1001\/react-native,srounce\/react-native,eduardinni\/react-native,jabinwang\/react-native,browniefed\/react-native,lokilandon\/react-native,lloydho\/react-native,bright-sparks\/react-native,catalinmiron\/react-native,elliottsj\/react-native,imjerrybao\/react-native,bowlofstew\/react-native,lee-my\/react-native,ultralame\/react-native,mqli\/react-native,NZAOM\/react-native,jasonnoahchoi\/react-native,krock01\/react-native,brentvatne\/react-native,xiaoking\/react-native,dubert\/react-native,thstarshine\/react-native,jacobbubu\/react-native,htc2u\/react-native,wesley1001\/react-native,hike2008\/react-native,rickbeerendonk\/react-native,sdiaz\/react-native,jevakallio\/react-native,bestwpw\/react-native,bistacos\/react-native,madusankapremaratne\/react-native,liubko\/react-native,ordinarybill\/react-native,Serfenia\/react-native,sudhirj\/react-native,androidgilbert\/react-native,wesley1001\/react-native,satya164\/react-native,jeffchienzabinet\/react-native,cdlewis\/react-native,Lucifer-Kim\/react-native,common2015\/react-native,zdsiyan\/react-native,booxood\/react-native,farazs\/react-native,Maxwell2022\/react-native,rantianhua\/react-native,mosch\/react-native,jadbox\/react-native,eduvon0220\/react-native,alantrrs\/react-native,aaron-goshine\/react-native,zyvas\/react-native,pjcabrera\/react-native,Shopify\/react-native,NZAOM\/react-native,bogdantmm92\/react-native,peterp\/react-native,cez213\/react-native,adamjmcgrath\/react-native,zenlambda\/react-native,nickhudkins\/react-native,dut3062796s\/react-native,billhello\/react-native,RGKzhanglei\/react-native,darkrishabh\/react-native,YComputer\/react-native,patoroco\/react-native,Tredsite\/react-native,sarvex\/react-native,dfala\/react-native,misakuo\/react-native,marlonandrade\/react-native,yjh0502\/react-native,naoufal\/react-native,mariusbutuc\/react-native,imDangerous\/react-native,kotdark\/react-native,wesley1001\/react-native,leeyeh\/react-native,HealthyWealthy\/react-native,magnus-bergman\/react-native,csudanthi\/react-native,Guardiannw\/react-native,myntra\/react-native,exponentjs\/react-native,huip\/react-native,pairyo\/react-native,Ehesp\/react-native,satya164\/react-native,chnfeeeeeef\/react-native,chengky\/react-native,ajwhite\/react-native,nickhargreaves\/react-native,liuhong1happy\/react-native,CntChen\/react-native,csatf\/react-native,edward\/react-native,Inner89\/react-native,ouyangwenfeng\/react-native,ajwhite\/react-native,vjeux\/react-native,dabit3\/react-native,Serfenia\/react-native,mcanthony\/react-native,aljs\/react-native,jasonals\/react-native,sghiassy\/react-native,gitim\/react-native,xiangjuntang\/react-native,ultralame\/react-native,sospartan\/react-native,pvinis\/react-native-desktop,chapinkapa\/react-native,compulim\/react-native,yimouleng\/react-native,jeromjoy\/react-native,pletcher\/react-native,TChengZ\/react-native,kesha-antonov\/react-native,ordinarybill\/react-native,exponentjs\/react-native,yiminghe\/react-native,cosmith\/react-native,jekey\/react-native,thstarshine\/react-native,dabit3\/react-native,adrie4mac\/react-native,lgengsy\/react-native,hwsyy\/react-native,NunoEdgarGub1\/react-native,jaredly\/react-native,kundanjadhav\/react-native,fish24k\/react-native,skatpgusskat\/react-native,ordinarybill\/react-native,sospartan\/react-native,yzarubin\/react-native,DerayGa\/react-native,eduvon0220\/react-native,ajwhite\/react-native,arbesfeld\/react-native,happypancake\/react-native,dut3062796s\/react-native,yangchengwork\/react-native,woshili1\/react-native,tgoldenberg\/react-native,cez213\/react-native,mjetek\/react-native,Livyli\/react-native,Rowandjj\/react-native,forcedotcom\/react-native,YueRuo\/react-native,leegilon\/react-native,jmstout\/react-native,chentsulin\/react-native,hanxiaofei\/react-native,PhilippKrone\/react-native,catalinmiron\/react-native,srounce\/react-native,eliagrady\/react-native,cpunion\/react-native,lendup\/react-native,YComputer\/react-native,farazs\/react-native,vlrchtlt\/react-native,geoffreyfloyd\/react-native,liubko\/react-native,mironiasty\/react-native,programming086\/react-native,kamronbatman\/react-native,browniefed\/react-native,imDangerous\/react-native,Lohit9\/react-native,Applied-Duality\/react-native,Applied-Duality\/react-native,ankitsinghania94\/react-native,salanki\/react-native,nickhargreaves\/react-native,lloydho\/react-native,forcedotcom\/react-native,lucyywang\/react-native,jabinwang\/react-native,mqli\/react-native,yiminghe\/react-native,Ehesp\/react-native,onesfreedom\/react-native,pjcabrera\/react-native,yjh0502\/react-native,alin23\/react-native,sahat\/react-native,sospartan\/react-native,NunoEdgarGub1\/react-native,clozr\/react-native,ronak301\/react-native,iodine\/react-native,chengky\/react-native,hammerandchisel\/react-native,lgengsy\/react-native,mchinyakov\/react-native,devknoll\/react-native,bradbumbalough\/react-native,mosch\/react-native,JackLeeMing\/react-native,ide\/react-native,yjyi\/react-native,mrngoitall\/react-native,Emilios1995\/react-native,philonpang\/react-native,Intellicode\/react-native,devknoll\/react-native,spicyj\/react-native,dimoge\/react-native,mrngoitall\/react-native,lstNull\/react-native,dabit3\/react-native,hengcj\/react-native,jordanbyron\/react-native,ortutay\/react-native,martinbigio\/react-native,irisli\/react-native,nathanajah\/react-native,tsjing\/react-native,kesha-antonov\/react-native,hydraulic\/react-native,zyvas\/react-native,garydonovan\/react-native,rkumar3147\/react-native,darkrishabh\/react-native,pitatensai\/react-native,cosmith\/react-native,jasonals\/react-native,catalinmiron\/react-native,clozr\/react-native,spyrx7\/react-native,NZAOM\/react-native,edward\/react-native,Srikanth4\/react-native,gabrielbellamy\/react-native,myntra\/react-native,ChiMarvine\/react-native,dfala\/react-native,ModusCreateOrg\/react-native,jeanblanchard\/react-native,bestwpw\/react-native,tsdl2013\/react-native,affinityis\/react-native,neeraj-singh\/react-native,jasonnoahchoi\/react-native,Rowandjj\/react-native,daveenguyen\/react-native,Lucifer-Kim\/react-native,kfiroo\/react-native,dylanchann\/react-native,YotrolZ\/react-native,lee-my\/react-native,WilliamRen\/react-native,mqli\/react-native,vincentqiu\/react-native,kundanjadhav\/react-native,YinshawnRao\/react-native,lstNull\/react-native,philonpang\/react-native,ordinarybill\/react-native,a2\/react-native,exponent\/react-native,iodine\/react-native,christopherdro\/react-native,chnfeeeeeef\/react-native,mcrooks88\/react-native,madusankapremaratne\/react-native,imWildCat\/react-native,DenisIzmaylov\/react-native,Bronts\/react-native,PlexChat\/react-native,wustxing\/react-native,krock01\/react-native,vincentqiu\/react-native,yushiwo\/react-native,dimoge\/react-native,rwwarren\/react-native,hoangpham95\/react-native,yutail\/react-native,spyrx7\/react-native,Esdeath\/react-native,jeanblanchard\/react-native,bowlofstew\/react-native,jhen0409\/react-native,sdiaz\/react-native,CodeLinkIO\/react-native,maskkid\/react-native,NishanthShankar\/react-native,Swaagie\/react-native,dikaiosune\/react-native,a2\/react-native,luqin\/react-native,johnv315\/react-native,slongwang\/react-native,mukesh-kumar1905\/react-native,yelled3\/react-native,jasonals\/react-native,1988fei\/react-native,iOSTestApps\/react-native,javache\/react-native,jabinwang\/react-native,ipmobiletech\/react-native,rxb\/react-native,sahat\/react-native,Hkmu\/react-native,kamronbatman\/react-native,aifeld\/react-native,eduardinni\/react-native,popovsh6\/react-native,ktoh\/react-native,bsansouci\/react-native,Wingie\/react-native,andersryanc\/react-native,ChristianHersevoort\/react-native,charmingzuo\/react-native,booxood\/react-native,clozr\/react-native,lelandrichardson\/react-native,mchinyakov\/react-native,insionng\/react-native,cxfeng1\/react-native,ptmt\/react-native,aljs\/react-native,nickhargreaves\/react-native,zuolangguo\/react-native,shinate\/react-native,judastree\/react-native,wangcan2014\/react-native,DanielMSchmidt\/react-native,ehd\/react-native,hanxiaofei\/react-native,wangcan2014\/react-native,exponentjs\/react-native,alantrrs\/react-native,PhilippKrone\/react-native,alantrrs\/react-native,Intellicode\/react-native,shrimpy\/react-native,ankitsinghania94\/react-native,satya164\/react-native,wangcan2014\/react-native,jonesgithub\/react-native,spicyj\/react-native,adamterlson\/react-native,apprennet\/react-native,steben\/react-native,sospartan\/react-native,liduanw\/react-native,zuolangguo\/react-native,makadaw\/react-native,cazacugmihai\/react-native,imWildCat\/react-native,lelandrichardson\/react-native,Guardiannw\/react-native,Applied-Duality\/react-native,Poplava\/react-native,sheep902\/react-native,chnfeeeeeef\/react-native,zhangwei001\/react-native,callstack-io\/react-native,nbcnews\/react-native,andersryanc\/react-native,21451061\/react-native,Bronts\/react-native,pengleelove\/react-native,liubko\/react-native,Shopify\/react-native,fw1121\/react-native,kentaromiura\/react-native,tadeuzagallo\/react-native,ouyangwenfeng\/react-native,huip\/react-native,janicduplessis\/react-native,stan229\/react-native,MonirAbuHilal\/react-native,gauribhoite\/react-native,narlian\/react-native,hammerandchisel\/react-native,BossKing\/react-native,jabinwang\/react-native,formatlos\/react-native,jacobbubu\/react-native,rushidesai\/react-native,InterfaceInc\/react-native,Intellicode\/react-native,chirag04\/react-native,zyvas\/react-native,nsimmons\/react-native,sekouperry\/react-native,fengshao0907\/react-native,Srikanth4\/react-native,hanxiaofei\/react-native,gauribhoite\/react-native,YComputer\/react-native,brentvatne\/react-native,jasonnoahchoi\/react-native,alin23\/react-native,cmhsu\/react-native,madusankapremaratne\/react-native,kassens\/react-native,YotrolZ\/react-native,PhilippKrone\/react-native,PhilippKrone\/react-native,jhen0409\/react-native,Flickster42490\/react-native,Maxwell2022\/react-native,genome21\/react-native,pvinis\/react-native-desktop,qq644531343\/react-native,wenpkpk\/react-native,jonesgithub\/react-native,qingsong-xu\/react-native,gilesvangruisen\/react-native,YueRuo\/react-native,bright-sparks\/react-native,hoangpham95\/react-native,pallyoung\/react-native,olivierlesnicki\/react-native,unknownexception\/react-native,yjyi\/react-native,jaredly\/react-native,yamill\/react-native,krock01\/react-native,threepointone\/react-native-1,zuolangguo\/react-native,bestwpw\/react-native,hengcj\/react-native,bogdantmm92\/react-native,trueblue2704\/react-native,billhello\/react-native,donyu\/react-native,formatlos\/react-native,ldehai\/react-native,MattFoley\/react-native,trueblue2704\/react-native,naoufal\/react-native,chrisbutcher\/react-native,nathanajah\/react-native,sekouperry\/react-native,pairyo\/react-native,mironiasty\/react-native,fish24k\/react-native,appersonlabs\/react-native,levic92\/react-native,bradens\/react-native,corbt\/react-native,kujohn\/react-native,ptmt\/react-native,huangsongyan\/react-native,JasonZ321\/react-native,pandiaraj44\/react-native,garydonovan\/react-native,sghiassy\/react-native,wesley1001\/react-native,rebeccahughes\/react-native,Heart2009\/react-native,thstarshine\/react-native,sghiassy\/react-native,ivanph\/react-native,jeffchienzabinet\/react-native,yjyi\/react-native,chrisbutcher\/react-native,yangchengwork\/react-native,21451061\/react-native,mariusbutuc\/react-native,Maxwell2022\/react-native,noif\/react-native,bradbumbalough\/react-native,johnv315\/react-native,tmwoodson\/react-native,huangsongyan\/react-native,YueRuo\/react-native,hassanabidpk\/react-native,aroth\/react-native,chacbumbum\/react-native,tsjing\/react-native,ndejesus1227\/react-native,pitatensai\/react-native,noif\/react-native,Iragne\/react-native,narlian\/react-native,nktpro\/react-native,liuhong1happy\/react-native,MattFoley\/react-native,exponentjs\/rex,milieu\/react-native,imWildCat\/react-native,alpz5566\/react-native,edward\/react-native,fw1121\/react-native,hanxiaofei\/react-native,liduanw\/react-native,onesfreedom\/react-native,dabit3\/react-native,richardgill\/react-native,hanxiaofei\/react-native,ehd\/react-native,dralletje\/react-native,supercocoa\/react-native,csatf\/react-native,dut3062796s\/react-native,jibonpab\/react-native,rwwarren\/react-native,geoffreyfloyd\/react-native,Ehesp\/react-native,lokilandon\/react-native,taydakov\/react-native,stan229\/react-native,chiefr\/react-native,pallyoung\/react-native,ankitsinghania94\/react-native,gilesvangruisen\/react-native,ljhsai\/react-native,zyvas\/react-native,Hkmu\/react-native,JulienThibeaut\/react-native,androidgilbert\/react-native,hayeah\/react-native,callstack-io\/react-native,xiangjuntang\/react-native,jaggs6\/react-native,lightsofapollo\/react-native,machard\/react-native,foghina\/react-native,dimoge\/react-native,bouk\/react-native,leeyeh\/react-native,ankitsinghania94\/react-native,evilemon\/react-native,marlonandrade\/react-native,CntChen\/react-native,salanki\/react-native,wangjiangwen\/react-native,wlrhnh-David\/react-native,yimouleng\/react-native,PlexChat\/react-native,shrutic\/react-native,lwansbrough\/react-native,patoroco\/react-native,Furzikov\/react-native,shrutic\/react-native,DerayGa\/react-native,leegilon\/react-native,marlonandrade\/react-native,Serfenia\/react-native,tadeuzagallo\/react-native,zhaosichao\/react-native,shrutic123\/react-native,alin23\/react-native,dabit3\/react-native,johnv315\/react-native,ivanph\/react-native,kushal\/react-native,nanpian\/react-native,olivierlesnicki\/react-native,wangziqiang\/react-native,wjb12\/react-native,adamjmcgrath\/react-native,esauter5\/react-native,Bhullnatik\/react-native,F2EVarMan\/react-native,yushiwo\/react-native,philikon\/react-native,aaron-goshine\/react-native,puf\/react-native,pletcher\/react-native,kesha-antonov\/react-native,Intellicode\/react-native,a2\/react-native,waynett\/react-native,woshili1\/react-native,formatlos\/react-native,madusankapremaratne\/react-native,vjeux\/react-native,Furzikov\/react-native,pglotov\/react-native,nickhargreaves\/react-native,tszajna0\/react-native,judastree\/react-native,ktoh\/react-native,cosmith\/react-native,rkumar3147\/react-native,adamjmcgrath\/react-native,jeanblanchard\/react-native,eddiemonge\/react-native,ChristopherSalam\/react-native,kotdark\/react-native,patoroco\/react-native,alin23\/react-native,mukesh-kumar1905\/react-native,hike2008\/react-native,dimoge\/react-native,esauter5\/react-native,fengshao0907\/react-native,wangjiangwen\/react-native,lprhodes\/react-native,rollokb\/react-native,gre\/react-native,lucyywang\/react-native,yjh0502\/react-native,lwansbrough\/react-native,TChengZ\/react-native,vjeux\/react-native,chirag04\/react-native,bouk\/react-native,daveenguyen\/react-native,krock01\/react-native,jabinwang\/react-native,Poplava\/react-native,roy0914\/react-native,unknownexception\/react-native,JulienThibeaut\/react-native,htc2u\/react-native,xiayz\/react-native,MetSystem\/react-native,jasonals\/react-native,JulienThibeaut\/react-native,TChengZ\/react-native,jaggs6\/react-native,Guardiannw\/react-native,garrows\/react-native,garrows\/react-native,mcanthony\/react-native,exponent\/react-native,gegaosong\/react-native,arbesfeld\/react-native,jbaumbach\/react-native,zdsiyan\/react-native,ptomasroos\/react-native,chetstone\/react-native,philonpang\/react-native,sixtomay\/react-native,WilliamRen\/react-native,Shopify\/react-native,Iragne\/react-native,Iragne\/react-native,dizlexik\/react-native,mozillo\/react-native,mihaigiurgeanu\/react-native,MetSystem\/react-native,mukesh-kumar1905\/react-native,sdiaz\/react-native,BretJohnson\/react-native,sixtomay\/react-native,quyixia\/react-native,pandiaraj44\/react-native,andrewljohnson\/react-native,pcottle\/react-native,DannyvanderJagt\/react-native,forcedotcom\/react-native,chirag04\/react-native,sonnylazuardi\/react-native,urvashi01\/react-native,bradbumbalough\/react-native,jeanblanchard\/react-native,philonpang\/react-native,yjh0502\/react-native,jackeychens\/react-native,ajwhite\/react-native,ultralame\/react-native,pletcher\/react-native,pcottle\/react-native,ljhsai\/react-native,olivierlesnicki\/react-native,sahat\/react-native,chsj1\/react-native,hzgnpu\/react-native,abdelouahabb\/react-native,mironiasty\/react-native,tgoldenberg\/react-native,YueRuo\/react-native,zdsiyan\/react-native,magnus-bergman\/react-native,hoangpham95\/react-native,ludaye123\/react-native,browniefed\/react-native,farazs\/react-native,booxood\/react-native,myntra\/react-native,21451061\/react-native,onesfreedom\/react-native,yangchengwork\/react-native,ankitsinghania94\/react-native,sitexa\/react-native,honger05\/react-native,rantianhua\/react-native,jeanblanchard\/react-native,mosch\/react-native,unknownexception\/react-native,leegilon\/react-native,quuack\/react-native,ptomasroos\/react-native,mway08\/react-native,strwind\/react-native,foghina\/react-native,kujohn\/react-native,wlrhnh-David\/react-native,CodeLinkIO\/react-native,Flickster42490\/react-native,garydonovan\/react-native,hassanabidpk\/react-native,oren\/react-native,oren\/react-native,rxb\/react-native,aaron-goshine\/react-native,hharnisc\/react-native,lprhodes\/react-native,oren\/react-native,hoastoolshop\/react-native,wdxgtsh\/react-native,liduanw\/react-native,pandiaraj44\/react-native,Suninus\/react-native,yangchengwork\/react-native,chsj1\/react-native,BossKing\/react-native,michaelchucoder\/react-native,thstarshine\/react-native,tmwoodson\/react-native,MattFoley\/react-native,Andreyco\/react-native,jasonnoahchoi\/react-native,ipmobiletech\/react-native,pickhardt\/react-native,F2EVarMan\/react-native,charlesvinette\/react-native,shadow000902\/react-native,imDangerous\/react-native,MonirAbuHilal\/react-native,mbrock\/react-native,heyjim89\/react-native,chetstone\/react-native,aroth\/react-native,kassens\/react-native,luqin\/react-native,christer155\/react-native,YComputer\/react-native,tgf229\/react-native,lgengsy\/react-native,doochik\/react-native,almost\/react-native,thstarshine\/react-native,NZAOM\/react-native,wangcan2014\/react-native,DannyvanderJagt\/react-native,carcer\/react-native,tmwoodson\/react-native,orenklein\/react-native,chengky\/react-native,bistacos\/react-native,jeanblanchard\/react-native,yimouleng\/react-native,zhangxq5012\/react-native,javache\/react-native,wlrhnh-David\/react-native,Heart2009\/react-native,exponentjs\/rex,ipmobiletech\/react-native,zvona\/react-native,appersonlabs\/react-native,tsdl2013\/react-native,YotrolZ\/react-native,gilesvangruisen\/react-native,browniefed\/react-native,yzarubin\/react-native,jackeychens\/react-native,quyixia\/react-native,bright-sparks\/react-native,Lucifer-Kim\/react-native,barakcoh\/react-native,noif\/react-native,ljhsai\/react-native,htc2u\/react-native,forcedotcom\/react-native,programming086\/react-native,PlexChat\/react-native,strwind\/react-native,YinshawnRao\/react-native,bsansouci\/react-native,chsj1\/react-native,imjerrybao\/react-native,clooth\/react-native,shrutic\/react-native,ivanph\/react-native,folist\/react-native,liduanw\/react-native,emodeqidao\/react-native,hydraulic\/react-native,pandiaraj44\/react-native,jaggs6\/react-native,mtford90\/react-native,sixtomay\/react-native,Ehesp\/react-native,beni55\/react-native,WilliamRen\/react-native,jhen0409\/react-native,patoroco\/react-native,huip\/react-native,daveenguyen\/react-native,programming086\/react-native,alantrrs\/react-native,mchinyakov\/react-native,ehd\/react-native,htc2u\/react-native,shrutic\/react-native,dikaiosune\/react-native,pairyo\/react-native,yzarubin\/react-native,zenlambda\/react-native,sjchakrav\/react-native,billhello\/react-native,sospartan\/react-native,foghina\/react-native,hharnisc\/react-native,devknoll\/react-native,Poplava\/react-native,JackLeeMing\/react-native,dizlexik\/react-native,facebook\/react-native,chengky\/react-native,negativetwelve\/react-native,imDangerous\/react-native,kfiroo\/react-native,dimoge\/react-native,evilemon\/react-native,mcrooks88\/react-native,RGKzhanglei\/react-native,BretJohnson\/react-native,madusankapremaratne\/react-native,rwwarren\/react-native,a2\/react-native,christer155\/react-native,yangshangde\/react-native,rushidesai\/react-native,yzarubin\/react-native,popovsh6\/react-native,imWildCat\/react-native,zuolangguo\/react-native,hanxiaofei\/react-native,shrutic123\/react-native,esauter5\/react-native,simple88\/react-native,billhello\/react-native,judastree\/react-native,hammerandchisel\/react-native,Intellicode\/react-native,adamterlson\/react-native,kesha-antonov\/react-native,mchinyakov\/react-native,narlian\/react-native,onesfreedom\/react-native,liufeigit\/react-native,negativetwelve\/react-native,glovebx\/react-native,lloydho\/react-native,tgoldenberg\/react-native,imDangerous\/react-native,Loke155\/react-native,ehd\/react-native,Andreyco\/react-native,hwsyy\/react-native,sahrens\/react-native,cazacugmihai\/react-native,beni55\/react-native,aziz-boudi4\/react-native,almost\/react-native,JackLeeMing\/react-native,hammerandchisel\/react-native,quuack\/react-native,JasonZ321\/react-native,hayeah\/react-native,wlrhnh-David\/react-native,foghina\/react-native,jackalchen\/react-native,ChristopherSalam\/react-native,darkrishabh\/react-native,MetSystem\/react-native,liuhong1happy\/react-native,kushal\/react-native,xiangjuntang\/react-native,shrimpy\/react-native,facebook\/react-native,mcanthony\/react-native,alpz5566\/react-native,almost\/react-native,kesha-antonov\/react-native,aljs\/react-native,JasonZ321\/react-native,sahat\/react-native,zhangxq5012\/react-native,liangmingjie\/react-native,Bhullnatik\/react-native,chenbk85\/react-native,xxccll\/react-native,NishanthShankar\/react-native,affinityis\/react-native,jasonals\/react-native,harrykiselev\/react-native,patoroco\/react-native,genome21\/react-native,liufeigit\/react-native,southasia\/react-native,supercocoa\/react-native,Intellicode\/react-native,yangshangde\/react-native,eliagrady\/react-native,zhaosichao\/react-native,Maxwell2022\/react-native,cdlewis\/react-native,bimawa\/react-native,21451061\/react-native,facebook\/react-native,lanceharper\/react-native,lgengsy\/react-native,lendup\/react-native,nanpian\/react-native,bsansouci\/react-native,rickbeerendonk\/react-native,wangziqiang\/react-native,BretJohnson\/react-native,wlrhnh-David\/react-native,bodefuwa\/react-native,hike2008\/react-native,nbcnews\/react-native,southasia\/react-native,tadeuzagallo\/react-native,exponent\/react-native,ChristianHersevoort\/react-native,wangyzyoga\/react-native,adamterlson\/react-native,rollokb\/react-native,pitatensai\/react-native,jbaumbach\/react-native,hammerandchisel\/react-native,Inner89\/react-native,garrows\/react-native,TChengZ\/react-native,negativetwelve\/react-native,jaggs6\/react-native,HealthyWealthy\/react-native,nickhudkins\/react-native,esauter5\/react-native,shlomiatar\/react-native,bodefuwa\/react-native,PhilippKrone\/react-native,naoufal\/react-native,mjetek\/react-native,tarkus\/react-native-appletv,mukesh-kumar1905\/react-native,dfala\/react-native,philonpang\/react-native,Serfenia\/react-native,adamjmcgrath\/react-native,chirag04\/react-native,tgoldenberg\/react-native,onesfreedom\/react-native,gegaosong\/react-native,Srikanth4\/react-native,ajwhite\/react-native,F2EVarMan\/react-native,janicduplessis\/react-native,michaelchucoder\/react-native,trueblue2704\/react-native,Rowandjj\/react-native,gs-akhan\/react-native,Suninus\/react-native,tahnok\/react-native,tarkus\/react-native-appletv,xiangjuntang\/react-native,Swaagie\/react-native,yutail\/react-native,mrngoitall\/react-native,chetstone\/react-native,mariusbutuc\/react-native,Purii\/react-native,InterfaceInc\/react-native,luqin\/react-native,arthuralee\/react-native,aaron-goshine\/react-native,CntChen\/react-native,woshili1\/react-native,chrisbutcher\/react-native,shinate\/react-native,spyrx7\/react-native,Livyli\/react-native,manhvvhtth\/react-native,yushiwo\/react-native,chetstone\/react-native,yangchengwork\/react-native,Livyli\/react-native,ldehai\/react-native,Rowandjj\/react-native,miracle2k\/react-native,tgriesser\/react-native,ljhsai\/react-native,jordanbyron\/react-native,pandiaraj44\/react-native,iOSTestApps\/react-native,sekouperry\/react-native,wenpkpk\/react-native,kassens\/react-native,srounce\/react-native,johnv315\/react-native,CodeLinkIO\/react-native,barakcoh\/react-native,pglotov\/react-native,yzarubin\/react-native,zhangwei001\/react-native,ptmt\/react-native-macos,johnv315\/react-native,donyu\/react-native,xiayz\/react-native,mcrooks88\/react-native,kushal\/react-native,gabrielbellamy\/react-native,satya164\/react-native,lelandrichardson\/react-native,ivanph\/react-native,Intellicode\/react-native,marlonandrade\/react-native,appersonlabs\/react-native,qingsong-xu\/react-native,jadbox\/react-native,puf\/react-native,emodeqidao\/react-native,wjb12\/react-native,Livyli\/react-native,ptmt\/react-native,liangmingjie\/react-native,JulienThibeaut\/react-native,Serfenia\/react-native,1988fei\/react-native,emodeqidao\/react-native,tgf229\/react-native,frantic\/react-native,codejet\/react-native,cdlewis\/react-native,folist\/react-native,F2EVarMan\/react-native,tgoldenberg\/react-native,ericvera\/react-native,shinate\/react-native,yusefnapora\/react-native,chiefr\/react-native,charlesvinette\/react-native,tarkus\/react-native-appletv,brentvatne\/react-native,roy0914\/react-native,shadow000902\/react-native,gegaosong\/react-native,rwwarren\/react-native,KJlmfe\/react-native,exponent\/react-native,NunoEdgarGub1\/react-native,sitexa\/react-native,alvarojoao\/react-native,christopherdro\/react-native,andrewljohnson\/react-native,tgriesser\/react-native,quyixia\/react-native,dabit3\/react-native,oren\/react-native,andersryanc\/react-native,mironiasty\/react-native,tahnok\/react-native,manhvvhtth\/react-native,pglotov\/react-native,tszajna0\/react-native,Zagorakiss\/react-native,csatf\/react-native,rollokb\/react-native,tgriesser\/react-native,gegaosong\/react-native,jacobbubu\/react-native,andersryanc\/react-native,kundanjadhav\/react-native,insionng\/react-native,jadbox\/react-native,foghina\/react-native,F2EVarMan\/react-native,rickbeerendonk\/react-native,rantianhua\/react-native,Shopify\/react-native,steveleec\/react-native,magnus-bergman\/react-native,huangsongyan\/react-native,machard\/react-native,Flickster42490\/react-native,WilliamRen\/react-native,elliottsj\/react-native,sahat\/react-native,alpz5566\/react-native,jackalchen\/react-native,dizlexik\/react-native,garrows\/react-native,pallyoung\/react-native,chirag04\/react-native,misakuo\/react-native,Applied-Duality\/react-native,shrutic123\/react-native,shlomiatar\/react-native,exponentjs\/react-native,liufeigit\/react-native,abdelouahabb\/react-native,jaggs6\/react-native,ProjectSeptemberInc\/react-native,Poplava\/react-native,sekouperry\/react-native,eduvon0220\/react-native,kamronbatman\/react-native,mozillo\/react-native,qq644531343\/react-native,supercocoa\/react-native,Guardiannw\/react-native,affinityis\/react-native,Esdeath\/react-native,janicduplessis\/react-native,udnisap\/react-native,DenisIzmaylov\/react-native,vlrchtlt\/react-native,mtford90\/react-native,j27cai\/react-native,simple88\/react-native,gitim\/react-native,code0100fun\/react-native,levic92\/react-native,bouk\/react-native,ljhsai\/react-native,CntChen\/react-native,jordanbyron\/react-native,zhangwei001\/react-native,arbesfeld\/react-native,PlexChat\/react-native,sonnylazuardi\/react-native,elliottsj\/react-native,TChengZ\/react-native,pickhardt\/react-native,adamjmcgrath\/react-native,rainkong\/react-native,averted\/react-native,ehd\/react-native,facebook\/react-native,adamkrell\/react-native,zhaosichao\/react-native,simple88\/react-native,a2\/react-native,abdelouahabb\/react-native,LytayTOUCH\/react-native,ModusCreateOrg\/react-native,lgengsy\/react-native,lmorchard\/react-native,yutail\/react-native,javache\/react-native,dubert\/react-native,bsansouci\/react-native,apprennet\/react-native,xinthink\/react-native,CntChen\/react-native,jabinwang\/react-native,ultralame\/react-native,Jericho25\/react-native,frantic\/react-native,ptomasroos\/react-native,naoufal\/react-native,Wingie\/react-native,mtford90\/react-native,ordinarybill\/react-native,jasonals\/react-native,21451061\/react-native,foghina\/react-native,tgriesser\/react-native,eddiemonge\/react-native,barakcoh\/react-native,DannyvanderJagt\/react-native,YinshawnRao\/react-native,happypancake\/react-native,zyvas\/react-native,Emilios1995\/react-native,garydonovan\/react-native,ajwhite\/react-native,philonpang\/react-native,gabrielbellamy\/react-native,jaggs6\/react-native,DanielMSchmidt\/react-native,hydraulic\/react-native,tszajna0\/react-native,sonnylazuardi\/react-native,simple88\/react-native,lmorchard\/react-native,facebook\/react-native,strwind\/react-native,xinthink\/react-native,dimoge\/react-native,mosch\/react-native,chapinkapa\/react-native,pickhardt\/react-native,Swaagie\/react-native,mcanthony\/react-native,Lohit9\/react-native,Wingie\/react-native,Reparadocs\/react-native,hoangpham95\/react-native,xxccll\/react-native,hoastoolshop\/react-native,zhangxq5012\/react-native,facebook\/react-native,BretJohnson\/react-native,nickhudkins\/react-native,charlesvinette\/react-native,doochik\/react-native,hesling\/react-native,hwsyy\/react-native,misakuo\/react-native,hydraulic\/react-native,htc2u\/react-native,Srikanth4\/react-native,adamterlson\/react-native,yimouleng\/react-native,clooth\/react-native,mchinyakov\/react-native,jibonpab\/react-native,Furzikov\/react-native,dikaiosune\/react-native,booxood\/react-native,liduanw\/react-native,tsdl2013\/react-native,fish24k\/react-native,patoroco\/react-native,common2015\/react-native,gs-akhan\/react-native,steveleec\/react-native,chenbk85\/react-native,elliottsj\/react-native,exponent\/react-native,yusefnapora\/react-native,Zagorakiss\/react-native,sghiassy\/react-native,shinate\/react-native,urvashi01\/react-native,lmorchard\/react-native,spyrx7\/react-native,Reparadocs\/react-native,soulcm\/react-native,yelled3\/react-native,goodheart\/react-native,alpz5566\/react-native,simple88\/react-native,misakuo\/react-native,facebook\/react-native,magnus-bergman\/react-native,dut3062796s\/react-native,rkumar3147\/react-native,martinbigio\/react-native,nsimmons\/react-native,trueblue2704\/react-native,rebeccahughes\/react-native,xinthink\/react-native,yamill\/react-native,ide\/react-native,bright-sparks\/react-native,jonesgithub\/react-native,tsdl2013\/react-native,mway08\/react-native,trueblue2704\/react-native,ldehai\/react-native,gegaosong\/react-native,ChiMarvine\/react-native,monyxie\/react-native,oren\/react-native,dubert\/react-native,mrngoitall\/react-native,tahnok\/react-native,nsimmons\/react-native,christopherdro\/react-native,jacobbubu\/react-native,mariusbutuc\/react-native,ChristianHersevoort\/react-native,shrimpy\/react-native,jmstout\/react-native,Ehesp\/react-native,appersonlabs\/react-native,doochik\/react-native,strwind\/react-native,slongwang\/react-native,kentaromiura\/react-native,vincentqiu\/react-native,jibonpab\/react-native,jaredly\/react-native,puf\/react-native,gauribhoite\/react-native,Maxwell2022\/react-native,rantianhua\/react-native,HSFGitHub\/react-native,mtford90\/react-native,zhangwei001\/react-native,mchinyakov\/react-native,javache\/react-native,rebeccahughes\/react-native,nathanajah\/react-native,lightsofapollo\/react-native,fw1121\/react-native,jackalchen\/react-native,sheep902\/react-native,arthuralee\/react-native,HealthyWealthy\/react-native,cosmith\/react-native,javache\/react-native,eduardinni\/react-native,bodefuwa\/react-native,soulcm\/react-native,chetstone\/react-native,jaredly\/react-native,salanki\/react-native,folist\/react-native,wustxing\/react-native,ankitsinghania94\/react-native,zyvas\/react-native,levic92\/react-native,negativetwelve\/react-native,jbaumbach\/react-native,dvcrn\/react-native,philikon\/react-native,wangyzyoga\/react-native,thotegowda\/react-native,kundanjadhav\/react-native,tgf229\/react-native,popovsh6\/react-native,alantrrs\/react-native,patoroco\/react-native,sonnylazuardi\/react-native,jordanbyron\/react-native,formatlos\/react-native,jackeychens\/react-native,happypancake\/react-native,programming086\/react-native,cpunion\/react-native,barakcoh\/react-native,zdsiyan\/react-native,bradens\/react-native,enaqx\/react-native,huangsongyan\/react-native,bistacos\/react-native,skatpgusskat\/react-native,makadaw\/react-native,pengleelove\/react-native,j27cai\/react-native,ChiMarvine\/react-native,csudanthi\/react-native,ptomasroos\/react-native,enaqx\/react-native,Intellicode\/react-native,puf\/react-native,chsj1\/react-native,ortutay\/react-native,iodine\/react-native,sunblaze\/react-native,common2015\/react-native,Heart2009\/react-native,hike2008\/react-native,Heart2009\/react-native,chsj1\/react-native,hanxiaofei\/react-native,wangziqiang\/react-native,leopardpan\/react-native,kotdark\/react-native,Guardiannw\/react-native,jasonals\/react-native,yamill\/react-native,ouyangwenfeng\/react-native,pcottle\/react-native,ProjectSeptemberInc\/react-native,rickbeerendonk\/react-native,lelandrichardson\/react-native,billhello\/react-native,skevy\/react-native,barakcoh\/react-native,wlrhnh-David\/react-native,rodneyss\/react-native,leeyeh\/react-native,milieu\/react-native,quyixia\/react-native,shrutic\/react-native,ouyangwenfeng\/react-native,miracle2k\/react-native,aaron-goshine\/react-native,wenpkpk\/react-native,shrimpy\/react-native,Lucifer-Kim\/react-native,liuhong1happy\/react-native,hharnisc\/react-native,Suninus\/react-native,DerayGa\/react-native,codejet\/react-native,doochik\/react-native,HSFGitHub\/react-native,Flickster42490\/react-native,jordanbyron\/react-native,lelandrichardson\/react-native,chiefr\/react-native,dimoge\/react-native,janicduplessis\/react-native,JulienThibeaut\/react-native,Hkmu\/react-native,chenbk85\/react-native,makadaw\/react-native,beni55\/react-native,ludaye123\/react-native,kujohn\/react-native,harrykiselev\/react-native,vjeux\/react-native,jhen0409\/react-native,mtford90\/react-native,genome21\/react-native,timfpark\/react-native,tmwoodson\/react-native,wangyzyoga\/react-native,chrisbutcher\/react-native,urvashi01\/react-native,Livyli\/react-native,chenbk85\/react-native,eliagrady\/react-native,guanghuili\/react-native,steben\/react-native,shlomiatar\/react-native,almost\/react-native,ModusCreateOrg\/react-native,Iragne\/react-native,judastree\/react-native,rushidesai\/react-native,leegilon\/react-native,mrngoitall\/react-native,Shopify\/react-native,Furzikov\/react-native,kamronbatman\/react-native,charmingzuo\/react-native,androidgilbert\/react-native,wustxing\/react-native,gitim\/react-native,callstack-io\/react-native,ktoh\/react-native,kushal\/react-native,mcanthony\/react-native,yjh0502\/react-native,bestwpw\/react-native,androidgilbert\/react-native,tsdl2013\/react-native,stan229\/react-native,ramoslin02\/react-native,tszajna0\/react-native,j27cai\/react-native,nbcnews\/react-native,wdxgtsh\/react-native,kassens\/react-native,DerayGa\/react-native,darrylblake\/react-native,gs-akhan\/react-native,pairyo\/react-native,Emilios1995\/react-native,Rowandjj\/react-native,lucyywang\/react-native,magnus-bergman\/react-native,xiaoking\/react-native,nickhudkins\/react-native,sudhirj\/react-native,lelandrichardson\/react-native,charlesvinette\/react-native,Loke155\/react-native,jbaumbach\/react-native,jeffchienzabinet\/react-native,huip\/react-native,cosmith\/react-native,nsimmons\/react-native,gre\/react-native,bright-sparks\/react-native,marlonandrade\/react-native,foghina\/react-native,qq644531343\/react-native,YueRuo\/react-native,irisli\/react-native,noif\/react-native,fw1121\/react-native,woshili1\/react-native,steveleec\/react-native,MonirAbuHilal\/react-native,daveenguyen\/react-native,bsansouci\/react-native,zvona\/react-native,enaqx\/react-native,charmingzuo\/react-native,farazs\/react-native,popovsh6\/react-native,udnisap\/react-native,alantrrs\/react-native,garydonovan\/react-native,jackeychens\/react-native,shinate\/react-native,tgriesser\/react-native,gs-akhan\/react-native,sudhirj\/react-native,supercocoa\/react-native,hwsyy\/react-native,vincentqiu\/react-native,ktoh\/react-native,steveleec\/react-native,Srikanth4\/react-native,salanki\/react-native,sitexa\/react-native,corbt\/react-native,RGKzhanglei\/react-native,pandiaraj44\/react-native,dylanchann\/react-native,jevakallio\/react-native,timfpark\/react-native,maskkid\/react-native,hesling\/react-native,tadeuzagallo\/react-native,csatf\/react-native,Shopify\/react-native,charmingzuo\/react-native,programming086\/react-native,spicyj\/react-native,codejet\/react-native,donyu\/react-native,zdsiyan\/react-native,chirag04\/react-native,yimouleng\/react-native,Tredsite\/react-native,waynett\/react-native,xiayz\/react-native,brentvatne\/react-native,mihaigiurgeanu\/react-native,narlian\/react-native,Flickster42490\/react-native,zvona\/react-native,garydonovan\/react-native,hesling\/react-native,adamterlson\/react-native,zhangxq5012\/react-native,dylanchann\/react-native,vlrchtlt\/react-native,nsimmons\/react-native,kassens\/react-native,jadbox\/react-native,satya164\/react-native,billhello\/react-native,jeanblanchard\/react-native,zdsiyan\/react-native,Swaagie\/react-native,sahrens\/react-native,josebalius\/react-native,Swaagie\/react-native,jmhdez\/react-native,christer155\/react-native,pjcabrera\/react-native,dvcrn\/react-native,luqin\/react-native,hoastoolshop\/react-native,mozillo\/react-native,martinbigio\/react-native,ludaye123\/react-native,philikon\/react-native,chetstone\/react-native,bradens\/react-native,jekey\/react-native,kentaromiura\/react-native,Purii\/react-native,ajwhite\/react-native,codejet\/react-native,gre\/react-native,farazs\/react-native,pglotov\/react-native,sdiaz\/react-native,ndejesus1227\/react-native,ChristianHersevoort\/react-native,yangshangde\/react-native,edward\/react-native,yushiwo\/react-native,liufeigit\/react-native,xxccll\/react-native,pickhardt\/react-native,mjetek\/react-native,alvarojoao\/react-native,nktpro\/react-native,csatf\/react-native,glovebx\/react-native,enaqx\/react-native,wustxing\/react-native,apprennet\/react-native,hayeah\/react-native,taydakov\/react-native,cez213\/react-native,kentaromiura\/react-native,CodeLinkIO\/react-native,steben\/react-native,exponentjs\/react-native,wjb12\/react-native,sheep902\/react-native,wangcan2014\/react-native,ldehai\/react-native,pvinis\/react-native-desktop,noif\/react-native,maskkid\/react-native,tahnok\/react-native,MattFoley\/react-native,catalinmiron\/react-native,wangyzyoga\/react-native,zhangxq5012\/react-native,clooth\/react-native,Wingie\/react-native,nickhudkins\/react-native,liangmingjie\/react-native,CodeLinkIO\/react-native,yutail\/react-native,urvashi01\/react-native,MattFoley\/react-native,doochik\/react-native,josebalius\/react-native,1988fei\/react-native,exponentjs\/react-native,oren\/react-native,androidgilbert\/react-native,F2EVarMan\/react-native,edward\/react-native,spyrx7\/react-native,luqin\/react-native,nanpian\/react-native,bistacos\/react-native,ptomasroos\/react-native,imjerrybao\/react-native,hengcj\/react-native,catalinmiron\/react-native,Furzikov\/react-native,steben\/react-native,mcrooks88\/react-native,zhangxq5012\/react-native,donyu\/react-native,csatf\/react-native,skatpgusskat\/react-native,YinshawnRao\/react-native,jmhdez\/react-native,sdiaz\/react-native,rantianhua\/react-native,sekouperry\/react-native,wlrhnh-David\/react-native,sjchakrav\/react-native,christopherdro\/react-native,gabrielbellamy\/react-native,puf\/react-native,alantrrs\/react-native,liangmingjie\/react-native,futbalguy\/react-native,averted\/react-native,misakuo\/react-native,adamjmcgrath\/react-native,jackalchen\/react-native,geoffreyfloyd\/react-native,xinthink\/react-native,skatpgusskat\/react-native,mosch\/react-native,glovebx\/react-native,shinate\/react-native,christopherdro\/react-native,doochik\/react-native,Andreyco\/react-native,cdlewis\/react-native,dubert\/react-native,Bhullnatik\/react-native,DanielMSchmidt\/react-native,hassanabidpk\/react-native,bradbumbalough\/react-native,michaelchucoder\/react-native,bouk\/react-native,Loke155\/react-native,hoangpham95\/react-native,leegilon\/react-native,bowlofstew\/react-native,bowlofstew\/react-native,bimawa\/react-native,salanki\/react-native,josebalius\/react-native,supercocoa\/react-native,peterp\/react-native,gitim\/react-native,kassens\/react-native,JasonZ321\/react-native,cdlewis\/react-native,yjh0502\/react-native,corbt\/react-native,martinbigio\/react-native,hike2008\/react-native,ortutay\/react-native,BretJohnson\/react-native,mihaigiurgeanu\/react-native,jacobbubu\/react-native,jaggs6\/react-native,yamill\/react-native,ludaye123\/react-native,BretJohnson\/react-native,ordinarybill\/react-native,yjyi\/react-native,nickhudkins\/react-native,rainkong\/react-native,pcottle\/react-native,ivanph\/react-native,cxfeng1\/react-native,gauribhoite\/react-native,mukesh-kumar1905\/react-native,barakcoh\/react-native,rodneyss\/react-native,spicyj\/react-native,vlrchtlt\/react-native,wildKids\/react-native,kfiroo\/react-native,kujohn\/react-native,ordinarybill\/react-native,leegilon\/react-native,code0100fun\/react-native,zuolangguo\/react-native,hwsyy\/react-native,YComputer\/react-native,nickhudkins\/react-native,billhello\/react-native,genome21\/react-native,glovebx\/react-native,mjetek\/react-native,Furzikov\/react-native,Bronts\/react-native,shrimpy\/react-native,janicduplessis\/react-native,sahat\/react-native,sahrens\/react-native,bsansouci\/react-native,hesling\/react-native,charmingzuo\/react-native,shadow000902\/react-native,tsjing\/react-native,dikaiosune\/react-native,heyjim89\/react-native,gs-akhan\/react-native,nickhargreaves\/react-native,dralletje\/react-native,hassanabidpk\/react-native,ChiMarvine\/react-native,aljs\/react-native,hike2008\/react-native,IveWong\/react-native,guanghuili\/react-native,rainkong\/react-native,xiaoking\/react-native,Loke155\/react-native,MetSystem\/react-native,tgoldenberg\/react-native,Zagorakiss\/react-native,bright-sparks\/react-native,qq644531343\/react-native,brentvatne\/react-native,kotdark\/react-native,bistacos\/react-native,liufeigit\/react-native,kassens\/react-native,bestwpw\/react-native,bsansouci\/react-native,Iragne\/react-native,HealthyWealthy\/react-native,xinthink\/react-native,YComputer\/react-native,kotdark\/react-native,eliagrady\/react-native,WilliamRen\/react-native,carcer\/react-native,cdlewis\/react-native,YinshawnRao\/react-native,exponent\/react-native,gegaosong\/react-native,DenisIzmaylov\/react-native,Hkmu\/react-native,ipmobiletech\/react-native,esauter5\/react-native,Guardiannw\/react-native,liufeigit\/react-native,ericvera\/react-native,vincentqiu\/react-native,aroth\/react-native,chirag04\/react-native,clozr\/react-native,insionng\/react-native,jabinwang\/react-native,PlexChat\/react-native,liangmingjie\/react-native,nktpro\/react-native,mihaigiurgeanu\/react-native,wangjiangwen\/react-native,nanpian\/react-native,jonesgithub\/react-native,liuzechen\/react-native,jbaumbach\/react-native,magnus-bergman\/react-native,dvcrn\/react-native,spicyj\/react-native,carcer\/react-native,irisli\/react-native,zenlambda\/react-native,kushal\/react-native,kotdark\/react-native,CodeLinkIO\/react-native,compulim\/react-native,dabit3\/react-native,rxb\/react-native,ivanph\/react-native,michaelchucoder\/react-native,dubert\/react-native,carcer\/react-native,mozillo\/react-native,lloydho\/react-native,rebeccahughes\/react-native,pitatensai\/react-native,bestwpw\/react-native,alin23\/react-native,jibonpab\/react-native,ptomasroos\/react-native,ptmt\/react-native-macos,skevy\/react-native,iodine\/react-native,forcedotcom\/react-native,compulim\/react-native,wangyzyoga\/react-native,edward\/react-native,ludaye123\/react-native,jeffchienzabinet\/react-native,miracle2k\/react-native,strwind\/react-native,eddiemonge\/react-native,ankitsinghania94\/react-native,eduvon0220\/react-native,mrspeaker\/react-native,kundanjadhav\/react-native,honger05\/react-native,Suninus\/react-native,jasonnoahchoi\/react-native,lwansbrough\/react-native,levic92\/react-native,miracle2k\/react-native,josebalius\/react-native,yutail\/react-native,glovebx\/react-native,mironiasty\/react-native,carcer\/react-native,fish24k\/react-native,timfpark\/react-native,yamill\/react-native,happypancake\/react-native,garydonovan\/react-native,janicduplessis\/react-native,mtford90\/react-native,wangziqiang\/react-native,sdiaz\/react-native,frantic\/react-native,stan229\/react-native,cpunion\/react-native,honger05\/react-native,negativetwelve\/react-native,mchinyakov\/react-native,YueRuo\/react-native,mironiasty\/react-native,sudhirj\/react-native,ide\/react-native,Jonekee\/react-native,philonpang\/react-native,kotdark\/react-native,jaredly\/react-native,unknownexception\/react-native,zenlambda\/react-native,chnfeeeeeef\/react-native,ChristianHersevoort\/react-native,wildKids\/react-native,wangjiangwen\/react-native,DenisIzmaylov\/react-native,wdxgtsh\/react-native,daveenguyen\/react-native,adamterlson\/react-native,PlexChat\/react-native,dylanchann\/react-native,naoufal\/react-native,sudhirj\/react-native,andrewljohnson\/react-native,orenklein\/react-native,noif\/react-native,zyvas\/react-native,jibonpab\/react-native,waynett\/react-native,dvcrn\/react-native,thotegowda\/react-native,aroth\/react-native,skevy\/react-native,Lohit9\/react-native,mrspeaker\/react-native,supercocoa\/react-native,alpz5566\/react-native,richardgill\/react-native,judastree\/react-native,waynett\/react-native,21451061\/react-native,rodneyss\/react-native,mukesh-kumar1905\/react-native,folist\/react-native,wangjiangwen\/react-native,dvcrn\/react-native,mcanthony\/react-native,mihaigiurgeanu\/react-native,olivierlesnicki\/react-native,aziz-boudi4\/react-native,NunoEdgarGub1\/react-native,bouk\/react-native,ptmt\/react-native-macos,darrylblake\/react-native,DanielMSchmidt\/react-native,adrie4mac\/react-native,yushiwo\/react-native,nevir\/react-native,mqli\/react-native,codejet\/react-native,mcanthony\/react-native,nsimmons\/react-native,neeraj-singh\/react-native,elliottsj\/react-native,chengky\/react-native,almost\/react-native,forcedotcom\/react-native,negativetwelve\/react-native,edward\/react-native,adrie4mac\/react-native,JulienThibeaut\/react-native,gabrielbellamy\/react-native,wangjiangwen\/react-native,vlrchtlt\/react-native,ptmt\/react-native-macos,urvashi01\/react-native,csudanthi\/react-native,bistacos\/react-native,hoangpham95\/react-native,lucyywang\/react-native,andersryanc\/react-native,jeromjoy\/react-native,jordanbyron\/react-native,josebalius\/react-native,madusankapremaratne\/react-native,affinityis\/react-native,BossKing\/react-native,mbrock\/react-native,hoangpham95\/react-native,zhaosichao\/react-native,DannyvanderJagt\/react-native,maskkid\/react-native,qingsong-xu\/react-native,srounce\/react-native,mjetek\/react-native,xxccll\/react-native,salanki\/react-native,chengky\/react-native,dikaiosune\/react-native,fish24k\/react-native,cosmith\/react-native,leopardpan\/react-native,apprennet\/react-native,makadaw\/react-native,tgoldenberg\/react-native,hoangpham95\/react-native,bouk\/react-native,InterfaceInc\/react-native,wangjiangwen\/react-native,ronak301\/react-native,harrykiselev\/react-native,steben\/react-native,andersryanc\/react-native,yangshangde\/react-native,andrewljohnson\/react-native,magnus-bergman\/react-native,janicduplessis\/react-native,spicyj\/react-native,hzgnpu\/react-native,hydraulic\/react-native,pallyoung\/react-native,dut3062796s\/react-native,soxunyi\/react-native,lstNull\/react-native,heyjim89\/react-native,Purii\/react-native,NishanthShankar\/react-native,yjh0502\/react-native,woshili1\/react-native,jackalchen\/react-native,peterp\/react-native,southasia\/react-native,JulienThibeaut\/react-native,beni55\/react-native,jekey\/react-native,DerayGa\/react-native,KJlmfe\/react-native,common2015\/react-native,levic92\/react-native,lmorchard\/react-native,yusefnapora\/react-native,Livyli\/react-native,narlian\/react-native,csudanthi\/react-native,peterp\/react-native,miracle2k\/react-native,LytayTOUCH\/react-native,popovsh6\/react-native,nickhargreaves\/react-native,YinshawnRao\/react-native,lelandrichardson\/react-native,JulienThibeaut\/react-native,ramoslin02\/react-native,jbaumbach\/react-native,roy0914\/react-native,rantianhua\/react-native,rodneyss\/react-native,NunoEdgarGub1\/react-native,averted\/react-native,abdelouahabb\/react-native,Rowandjj\/react-native,exponentjs\/react-native,trueblue2704\/react-native,sdiaz\/react-native,chnfeeeeeef\/react-native,appersonlabs\/react-native,judastree\/react-native,ModusCreateOrg\/react-native,NishanthShankar\/react-native,hoastoolshop\/react-native,dikaiosune\/react-native,leopardpan\/react-native,sjchakrav\/react-native,ndejesus1227\/react-native,Bhullnatik\/react-native,Flickster42490\/react-native,wdxgtsh\/react-native,Poplava\/react-native,johnv315\/react-native,liufeigit\/react-native,liangmingjie\/react-native,tahnok\/react-native,jackeychens\/react-native,zenlambda\/react-native,darkrishabh\/react-native,jmstout\/react-native,taydakov\/react-native,Jericho25\/react-native,Lucifer-Kim\/react-native,glovebx\/react-native,thotegowda\/react-native,aljs\/react-native,urvashi01\/react-native,roy0914\/react-native,hassanabidpk\/react-native,hoastoolshop\/react-native,richardgill\/react-native,BossKing\/react-native,HealthyWealthy\/react-native,wangyzyoga\/react-native,cosmith\/react-native,wildKids\/react-native,kfiroo\/react-native,jacobbubu\/react-native,rwwarren\/react-native,pitatensai\/react-native,popovsh6\/react-native,chapinkapa\/react-native,callstack-io\/react-native,yamill\/react-native,lloydho\/react-native,wangziqiang\/react-native,kamronbatman\/react-native,Serfenia\/react-native,tmwoodson\/react-native,bsansouci\/react-native,callstack-io\/react-native,brentvatne\/react-native,liuzechen\/react-native,jmstout\/react-native,tsjing\/react-native,MattFoley\/react-native,quuack\/react-native,j27cai\/react-native,rkumar3147\/react-native,stan229\/react-native,satya164\/react-native,ndejesus1227\/react-native,bistacos\/react-native,steben\/react-native,Jonekee\/react-native,dut3062796s\/react-native,Tredsite\/react-native,judastree\/react-native,ajwhite\/react-native,liduanw\/react-native,sonnylazuardi\/react-native,ProjectSeptemberInc\/react-native,wildKids\/react-native,hassanabidpk\/react-native,lendup\/react-native,Bhullnatik\/react-native,narlian\/react-native,slongwang\/react-native,NunoEdgarGub1\/react-native,lanceharper\/react-native,mozillo\/react-native,makadaw\/react-native,mqli\/react-native,catalinmiron\/react-native,wustxing\/react-native,huip\/react-native,vincentqiu\/react-native,gre\/react-native,affinityis\/react-native,sghiassy\/react-native,irisli\/react-native,ipmobiletech\/react-native,alvarojoao\/react-native,rxb\/react-native,ChristopherSalam\/react-native,neeraj-singh\/react-native,YinshawnRao\/react-native,philikon\/react-native,soxunyi\/react-native,ortutay\/react-native,pengleelove\/react-native,liangmingjie\/react-native,ramoslin02\/react-native,zuolangguo\/react-native,bimawa\/react-native,lightsofapollo\/react-native,arbesfeld\/react-native,mironiasty\/react-native,Jonekee\/react-native,Jonekee\/react-native,zyvas\/react-native,udnisap\/react-native,luqin\/react-native,steben\/react-native,apprennet\/react-native,cmhsu\/react-native,mjetek\/react-native,ptmt\/react-native,abdelouahabb\/react-native,Emilios1995\/react-native,imWildCat\/react-native,pglotov\/react-native,rodneyss\/react-native,ronak301\/react-native,rwwarren\/react-native,jhen0409\/react-native,hydraulic\/react-native,michaelchucoder\/react-native,booxood\/react-native,exponent\/react-native,gegaosong\/react-native,shrimpy\/react-native,mbrock\/react-native,sdiaz\/react-native,soxunyi\/react-native,satya164\/react-native,wangcan2014\/react-native,esauter5\/react-native,lprhodes\/react-native,dfala\/react-native,corbt\/react-native,lgengsy\/react-native,elliottsj\/react-native,imjerrybao\/react-native,chenbk85\/react-native,almost\/react-native,ericvera\/react-native,MattFoley\/react-native,christopherdro\/react-native,liuzechen\/react-native,tahnok\/react-native,dikaiosune\/react-native,shrimpy\/react-native,jackeychens\/react-native,taydakov\/react-native,wustxing\/react-native,elliottsj\/react-native,Tredsite\/react-native,mway08\/react-native,jevakallio\/react-native,pengleelove\/react-native,quuack\/react-native,yjyi\/react-native,ludaye123\/react-native,steveleec\/react-native,jaredly\/react-native,Emilios1995\/react-native,kfiroo\/react-native,ktoh\/react-native,dizlexik\/react-native,mrspeaker\/react-native,manhvvhtth\/react-native,adrie4mac\/react-native,geoffreyfloyd\/react-native,Emilios1995\/react-native,iodine\/react-native,chrisbutcher\/react-native,philikon\/react-native,cpunion\/react-native,sheep902\/react-native,liuzechen\/react-native,MetSystem\/react-native,threepointone\/react-native-1,gilesvangruisen\/react-native,Loke155\/react-native,shrutic\/react-native,adamkrell\/react-native,Inner89\/react-native,richardgill\/react-native,browniefed\/react-native,mrspeaker\/react-native,manhvvhtth\/react-native,devknoll\/react-native,garrows\/react-native,chapinkapa\/react-native,ChristianHersevoort\/react-native,ndejesus1227\/react-native,lprhodes\/react-native,andrewljohnson\/react-native,nbcnews\/react-native,Suninus\/react-native,shrutic123\/react-native,bowlofstew\/react-native,Poplava\/react-native,hammerandchisel\/react-native,gs-akhan\/react-native,Srikanth4\/react-native,apprennet\/react-native,corbt\/react-native,rodneyss\/react-native,gre\/react-native,martinbigio\/react-native,xxccll\/react-native,cosmith\/react-native,Bronts\/react-native,trueblue2704\/react-native,jmstout\/react-native,insionng\/react-native,ldehai\/react-native,tszajna0\/react-native,Purii\/react-native,HealthyWealthy\/react-native,nbcnews\/react-native,dylanchann\/react-native,janicduplessis\/react-native,hoastoolshop\/react-native,aifeld\/react-native,j27cai\/react-native,chiefr\/react-native,naoufal\/react-native,mihaigiurgeanu\/react-native,wangyzyoga\/react-native,lprhodes\/react-native,elliottsj\/react-native,hesling\/react-native,hzgnpu\/react-native,jasonnoahchoi\/react-native,thstarshine\/react-native,alin23\/react-native,arbesfeld\/react-native,mtford90\/react-native,myntra\/react-native,yangshangde\/react-native,sekouperry\/react-native,formatlos\/react-native,almost\/react-native,hwsyy\/react-native,timfpark\/react-native,alpz5566\/react-native,bradbumbalough\/react-native,YotrolZ\/react-native,Purii\/react-native,hesling\/react-native,bimawa\/react-native,androidgilbert\/react-native,InterfaceInc\/react-native,dralletje\/react-native,dvcrn\/react-native,Purii\/react-native,tszajna0\/react-native,dralletje\/react-native,imDangerous\/react-native,jbaumbach\/react-native,liuhong1happy\/react-native,gitim\/react-native,mrspeaker\/react-native,imWildCat\/react-native,jhen0409\/react-native,charlesvinette\/react-native,makadaw\/react-native,common2015\/react-native,almost\/react-native,lanceharper\/react-native,jaggs6\/react-native,jeffchienzabinet\/react-native,aifeld\/react-native,johnv315\/react-native,brentvatne\/react-native,ronak301\/react-native,DannyvanderJagt\/react-native,harrykiselev\/react-native,zenlambda\/react-native,christopherdro\/react-native,chnfeeeeeef\/react-native,shrutic123\/react-native,wenpkpk\/react-native,j27cai\/react-native,lmorchard\/react-native,sixtomay\/react-native,hwsyy\/react-native,ldehai\/react-native,Bronts\/react-native,rkumar3147\/react-native,ordinarybill\/react-native,happypancake\/react-native,dimoge\/react-native,pallyoung\/react-native,eddiemonge\/react-native,hengcj\/react-native,codejet\/react-native,jmhdez\/react-native,xiayz\/react-native,charlesvinette\/react-native,nathanajah\/react-native,hesling\/react-native,cez213\/react-native,steben\/react-native,wenpkpk\/react-native,dralletje\/react-native,roy0914\/react-native,monyxie\/react-native,southasia\/react-native,jmhdez\/react-native,dvcrn\/react-native,threepointone\/react-native-1,DanielMSchmidt\/react-native,sahat\/react-native,christopherdro\/react-native,soxunyi\/react-native,gilesvangruisen\/react-native,christer155\/react-native,xiangjuntang\/react-native,skatpgusskat\/react-native,waynett\/react-native,alin23\/react-native,magnus-bergman\/react-native,mway08\/react-native,LytayTOUCH\/react-native,YComputer\/react-native,Inner89\/react-native,zhangwei001\/react-native,bistacos\/react-native,frantic\/react-native,miracle2k\/react-native,soxunyi\/react-native,makadaw\/react-native,InterfaceInc\/react-native,vjeux\/react-native,Applied-Duality\/react-native,Andreyco\/react-native,beni55\/react-native,aljs\/react-native,spyrx7\/react-native,sheep902\/react-native,tahnok\/react-native,IveWong\/react-native,Wingie\/react-native,tarkus\/react-native-appletv,rickbeerendonk\/react-native,jadbox\/react-native,miracle2k\/react-native,wenpkpk\/react-native,peterp\/react-native,lmorchard\/react-native,christer155\/react-native,a2\/react-native,mozillo\/react-native,common2015\/react-native,skevy\/react-native,csatf\/react-native,callstack-io\/react-native,kushal\/react-native,fw1121\/react-native,andersryanc\/react-native,common2015\/react-native,jmhdez\/react-native,sunblaze\/react-native,Heart2009\/react-native,Heart2009\/react-native,cxfeng1\/react-native,mozillo\/react-native,roy0914\/react-native,hzgnpu\/react-native,pandiaraj44\/react-native","old_file":"packager\/launchChromeDevTools.applescript","new_file":"packager\/launchChromeDevTools.applescript","new_contents":"#!\/usr\/bin\/env osascript\n\n-- Copyright (c) 2015-present, Facebook, Inc.\n-- All rights reserved.\n--\n-- This source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\n-- of patent rights can be found in the PATENTS file in the same directory.\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","old_contents":"#!\/usr\/bin\/env osascript\n\n-- Copyright (c) 2015-present, Facebook, Inc.\n-- All rights reserved.\n--\n-- This source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\n-- of patent rights can be found in the PATENTS file in the same directory.\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n activate\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e38843c672cbd4e433f8d9505a34f36c6fdaad2c","subject":"add some logging","message":"add some logging","repos":"Mausy5043\/OSX-EmptyTrash","old_file":"dated_deleter.scpt","new_file":"dated_deleter.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"a8f0bc512fa2ae976de3bcf6ea0a829b386ee4ae","subject":"Added a simple warning message to the applescript","message":"Added a simple warning message to the applescript\n","repos":"ncuster\/bstick","old_file":"BlinkStickIM.applescript","new_file":"BlinkStickIM.applescript","new_contents":"# This is a very basic state change AppleScript file that will\n# call out to my blinkstick python app to light up the count\n# of unread messages, and eventually will light it up with different\n# colors if the messages originate from certain people.\n\nset redUsers to (system attribute \"RED_USERS\")\nset ledColor to \"blue\"\n\ntell application \"System Events\" to set adiumisrunning to (name of processes) contains \"Adium\"\nif adiumisrunning then\n\ttell application \"Adium\"\n\t\tset tabs to count of chats\n\t\tset unreads to 0\n\t\t#return chat 1\n\t\t\n\t\trepeat with loopi from 1 to tabs\n\t\t\t#set unreads to unreads + (unread message count of chat loopi)\n\t\t\tset localUnreads to (unread message count of chat loopi)\n\t\t\tset unreads to unreads + localUnreads\n\t\t\tset chatUser to id of (chat loopi)\n\t\t\t\n\t\t\tif (localUnreads > 0) and (chatUser is in redUsers) then\n\t\t\t\tlog chatUser & \" was in red_users\"\n\t\t\t\tset ledColor to \"red\"\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\tdo shell script \"~NCUSTER\/ncuster\/scripts\/simpleled.py \" & unreads & \" \" & ledColor\n\tend tell\nelse\n\treturn \"Adium is not running\"\nend if\n\n#tell application \"Adium\" to get properties\n","old_contents":"# This is a very basic state change AppleScript file that will\n# call out to my blinkstick python app to light up the count\n# of unread messages, and eventually will light it up with different\n# colors if the messages originate from certain people.\n\nset redUsers to (system attribute \"RED_USERS\")\nset ledColor to \"blue\"\n\ntell application \"System Events\" to set adiumisrunning to (name of processes) contains \"Adium\"\nif adiumisrunning then\n\ttell application \"Adium\"\n\t\tset tabs to count of chats\n\t\tset unreads to 0\n\t\t#return chat 1\n\t\t\n\t\trepeat with loopi from 1 to tabs\n\t\t\t#set unreads to unreads + (unread message count of chat loopi)\n\t\t\tset localUnreads to (unread message count of chat loopi)\n\t\t\tset unreads to unreads + localUnreads\n\t\t\tset chatUser to id of (chat loopi)\n\t\t\t\n\t\t\tif (localUnreads > 0) and (chatUser is in redUsers) then\n\t\t\t\tlog chatUser & \" was in red_users\"\n\t\t\t\tset ledColor to \"red\"\n\t\t\tend if\n\t\tend repeat\n\t\t\n\t\tdo shell script \"~NCUSTER\/ncuster\/scripts\/simpleled.py \" & unreads & \" \" & ledColor\n\tend tell\nelse\n\treturn \"off\"\nend if\n\n#tell application \"Adium\" to get properties\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"AppleScript"} {"commit":"0045d7d2db11140ce96f5761da4bc711a7fbfa31","subject":" moveForMon.applescript, from darwin13","message":" moveForMon.applescript, from darwin13\n","repos":"rcmdnk\/AppleScript","old_file":"moveForMon.applescript","new_file":"moveForMon.applescript","new_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in geeklets\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset x position to ledge\n\t\t\t\t\tset y position to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","old_contents":"property DEF_ALL : false\nproperty DEF_DEBUG_LEVEL : 1\n\non moveForMon(pars)\n\t\n\tset {all, debug_level} to {DEF_ALL, DEF_DEBUG_LEVEL}\n\ttry\n\t\tset all to all of pars\n\tend try\n\ttry\n\t\tset debug_level to debug_level of pars\n\tend try\n\t\n\t-- debug mode\n\tif debug_level > 0 then\n\t\tlog \"debug mode = \" & debug_level\n\t\tif debug_level > 1 then\n\t\t\tdisplay dialog \"debug mode = \" & debug_level\n\t\tend if\n\tend if\n\t\n\t-- set monitoring tools' positions\n\t-- SimpleFloatingClock\n\tset w_sfcCEST to 1\n\tset w_sfcJST to 2\n\t\n\t-- XRG\n\tset w_XRG to 1\n\t\n\t-- set monitoring tool's name\n\t-- GeekTool\n\tset s_gtCal to \"gcalCal\"\n\tset s_gtGcal to \"gcalList\"\n\tset s_gtTask to \"gtasklist\"\n\tset s_gtPs to \"myps\"\n\t\n\t-- x posiiotn for monitoring\n\tset ledge to -160\n\tset ledgeSFCoffset to 20\n\t\n\t-- y positions\n\tset y_sfcCEST to 30\n\tset y_sfcJST to y_sfcCEST + 100\n\tset y_gtCal to y_sfcJST + 105\n\tset y_gtGcal to y_gtCal + 115\n\tset y_gtTask to y_gtGcal + 175\n\tset y_gtPs to y_gtTask + 85\n\tset y_XRG to y_gtPs + 75\n\t\n\t-- app to be excepted\n\tset expApp to {\"XRG\"}\n\t\n\t-- app to be half size, in left monitor (0.7 times full)\n\tset halfSizeApp_L to {}\n\t\n\t-- app to be half size, in right monitor (0.7 times full)\n\tset halfSizeApp_R to {\"AdobeReader\"}\n\t\n\t-- app only to be moved, in left monitor\n\tset noResizeApp_L to {}\n\t\n\t-- app only to be moved, in right monitor\n\tset noResizeApp_R to {\"Finder\", \"Skype\", \"Microsoft Word\", \"Microsoft Excel\", \"Microsoft PowerPoint\"}\n\t\n\t-- app to be moved left\n\tset app_L to {\"firefox\", \"Evernote\", \"thunderbird\", \"thunderbird-bin\", \"Mail\"}\n\t\n\t-- app to be moved right\n\tset app_R to {\"iTerm\"}\n\t\n\t-- get screen size\n\ttell application \"Finder\"\n\t\tset scriptPath to (path to me)'s folder as text\n\tend tell\n\tset windowSizeScpt to scriptPath & \"windowSize.scpt\"\n\tset windowSize to load script file windowSizeScpt\n\t\n\t-- main screen\n\tset svs to windowSize's getVisibleFrame(1, 1) --+1 is used to avoid edge, especially needed for y position\n\tset dPosX to (item 1 of svs) + 1\n\tset dPosY to (item 2 of svs) + 1\n\tset dWidth to item 3 of svs\n\tset dHeight to item 4 of svs\n\t\n\t-- try to get left screen\n\tset dPosX_L to dPosX + 1\n\tset dPosY_L to dPosY + 1\n\ttry\n\t\tset svsL to windowSize's getVisibleFrame(-1, 1)\n\t\tset dPosX_L to (item 1 of svsL) + 1\n\t\tset dPosY_L to (item 2 of svsL) + 1\n\tend try\n\t\n\t-- try to get right screen\n\tset dPosX_R to dPosX + 1\n\tset dPosY_R to dPosY + 1\n\ttry\n\t\tset svsR to windowSize's getVisibleFrame(dPosX + dWidth + 1, 1)\n\t\tset dPosX_R to (item 1 of svsR) + 1\n\t\tset dPosY_R to (item 2 of svsR) + 1\n\tend try\n\t\n\t-- move monitoring tools\n\tif dPosX_L < 0 then\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeDual\"\n\t\tend if\n\telse\n\t\tset ledge to dWidth + ledge\n\t\tif debug_level > 0 then\n\t\t\tlog \"ledge to ledgeSingle\"\n\t\tend if\n\tend if\n\t\n\ttell application \"System Events\"\n\t\t-- SimpleFloatingClock\n\t\ttry\n\t\t\tset appName to \"SimpleFloatingClock\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_sfcCEST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcCEST}\n\t\t\t\tend tell\n\t\t\t\ttell window w_sfcJST\n\t\t\t\t\tset size to {1000, 1000}\n\t\t\t\t\tset position to {ledge + ledgeSFCoffset, y_sfcJST}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\t\t\n\t\t---- GeekTool\n\t\t--try\n\t\t--\t--set appName to \"GeekTool\"\n\t\t--\tset appName to \"GeekTool Helper\" -- for GeekTool 3\n\t\t--\t\n\t\t--\ttell process appName\n\t\t--\t\tset nW to number of windows\n\t\t--\t\t--display dialog appName & \" in process, nWindows=\" & nW\n\t\t--\t\ttell window w_gtCal\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtGcal\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtGcal}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtTask\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtTask}\n\t\t--\t\tend tell\n\t\t--\t\ttell window w_gtPs\n\t\t--\t\t\t-- set size to {1000, 1000}\n\t\t--\t\t\tset position to {ledge, y_gtPs}\n\t\t--\t\tend tell\n\t\t--\tend tell\n\t\t--\t--on error errMsg\n\t\t--\t--\tdisplay dialog \"ERROR: \" & errMsg\n\t\t--end try\n\t\t\n\t\t-- XRG\n\t\ttry\n\t\t\tset appName to \"XRG\"\n\t\t\ttell process appName\n\t\t\t\ttell window w_XRG\n\t\t\t\t\tset size to {1000, 2000}\n\t\t\t\t\tset position to {ledge, y_XRG}\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend try\n\tend tell\n\t\n\t-- GeekTool (should be outside of application \"System Events\", and use application \"GeekTool Helper\" ?)\n\t-- can't use position to geeklets\n\ttell application \"GeekTool Helper\" -- can not use appName (variable), which shows error at id?\n\t\t--geeklets\n\t\trepeat with g in every \u00abclass gLet\u00bb\n\t\t\ttell g\n\t\t\t\tname\n\t\t\t\tif name is s_gtCal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtCal\n\t\t\t\telse if name is s_gtGcal then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtGcal\n\t\t\t\telse if name is s_gtTask then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtTask\n\t\t\t\telse if name is s_gtPs then\n\t\t\t\t\tset \u00abclass xpos\u00bb to ledge\n\t\t\t\t\tset \u00abclass ypos\u00bb to y_gtPs\n\t\t\t\tend if\n\t\t\tend tell\n\t\tend repeat\n\tend tell\n\t\n\t-- Move\/Resize other windows\n\tif all then\n\t\t-- get application name\n\t\ttell application \"System Events\"\n\t\t\tset appList to (get name of every application process whose visible is true)\n\t\tend tell\n\t\t\n\t\t-- repeat for all app\n\t\trepeat with appName in appList\n\t\t\tif appName is not in expApp then\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttry\n\t\t\t\t\t\ttell process appName\n\t\t\t\t\t\t\tset nW to number of windows\n\t\t\t\t\t\t\trepeat with i from 1 to nW\n\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\tlog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\tdisplay dialog appName & \" \" & i\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\tif appName is in halfSizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in halfSizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, xsize:0.7, ysize:0.7, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"half size left\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in noResizeApp_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, resize:0, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_L then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move left full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_L, monPosY:dPosY_L, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\telse if appName is in app_R then\n\t\t\t\t\t\t\t\t\tif debug_level > 0 then\n\t\t\t\t\t\t\t\t\t\tlog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tif debug_level > 1 then\n\t\t\t\t\t\t\t\t\t\t\tdisplay dialog \"move right full size\"\n\t\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\t\t\twindowSize's windowSize({appName:appName, windowNumber:i, monPosX:dPosX_R, monPosY:dPosY_R, moveForMon:false, debug_level:debug_level})\n\t\t\t\t\t\t\t\tend if\n\t\t\t\t\t\t\tend repeat\n\t\t\t\t\t\tend tell\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend if\n\t\tend repeat\n\tend if\nend moveForMon\n\non run\n\tmoveForMon({})\nend run\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"271e3189561a4ae9568227ecb5063259ade835b6","subject":"Add file viewer preference and UI for changing it","message":"Add file viewer preference and UI for changing it\n\nStill need to add an \"Open Log File\" menu item to all of the menus that\nhave an \"Edit Log File\" item.\n\nAlso deleted all of the duplicate go_back() methods in most of the\ncontroller classes and moved it to the base controller class that most\nof the other controllers subclass.\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-28\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-02-27\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\t\t\n\t\t\t\tmy debug_log(1, get_root_categories())\n\t\t\t\tmy debug_log(2, get_all_categories())\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing a model and\n\t\t\t-- the shared navigation controller to all.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_edit_controller to make_file_edit_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\tset label_controller to make_label_controller(nav_controller, page_log)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log)\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tfile_edit_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- FileEditController will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is (_chosen_root_category) \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset all_category_txt to text 2 thru -2 of (item 3 of split_text(_io's read_file(log_file_mac), _log_header_sep))\n\t\t\t\ton error -- missing file header\n\t\t\t\t\tset all_category_txt to _sample_categories\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tset s to \"echo \\\"\" & all_category_txt & linefeed & existing_categories \n\t\t\t\t& \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\tif all_categories's last item is \"\" then\n\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\tif root_categories's last item is \"\" then\n\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\tend if\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive\n# ==================================================\n# Optionally list some categories\/labels of URLs below that might not yet\n# be used. Any categories\/lables listed here or in the web page records\n# will be presented as a list to select from when saving new URLs.\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: category\/label list\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\ton make_browser()\n\t\t-- Eventually will detect frontmost application and return a\n\t\t-- browser object if it is a supported web browser, but for now\n\t\t-- only Safari is supported.\n\t\treturn make_safari_browser()\n\tend make_browser\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\"\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset my _page_url to this_url\n\t\t\t\tset my _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\t_handle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend fetch_page_info\n\t\t\n\t\ton _handle_error(err_msg, err_num)\n\t\t\tset t to \"Error: Can't get info from Safari\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\tend _handle_error\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\nscript Editor\n\tproperty class : \"Editor\"\n\t\n\ton open_file(this_editor, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_editor\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref()\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_edit_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _editor : Editor\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_editor()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton launch_editor() --> void\n\t\t\tmy debug_log(1, my class & \".launch_editor()\")\n\t\t\tset this_editor to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_editor's open_file(this_editor, this_file)\n\t\tend launch_editor\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_editor()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_edit_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 3})\n\t\tend edit_label\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 5})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 6})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_from_all\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 4})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 5})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_all_label_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\t\t\n\t\ton change_settings() --> void\n\t\t\t-- Return to the current controller after the preferences\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 2})\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\t-- Return to the current controller after the help\n\t\t\t-- controller is finished.\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend show_help\n\t\t\n\t\ton edit_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 4})\n\t\tend edit_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty pick_editor_controller : missing value\n\t\tproperty pick_file_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({pick_editor_controller, pick_file_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset pick_editor_controller to make_settings_editor_controller(nav_controller, _model)\n\t\t\tset pick_file_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_editor\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_editor(_val) --> void\n\t\t\t_model's set_pref(_model's get_text_editor_key(), _val)\n\t\t\tgo_back()\n\t\tend set_editor\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton go_back() --> void\n\t\t\t_nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 4)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\tproperty cancel_btn_pad : \"Cancel\" & btn_pad\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing (although care should be taken to not alter the format of the file). The current file and text editor are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_editor()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _chosen_root : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 20)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_bullet & \"Create a New Category...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _root_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_root\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 6 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 8 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_view\n\non make_sub_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"SubLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _sub_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Show Full List with Subcategories...\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _sub_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 4 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 7 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_sub_label_view\n\non make_all_label_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"AllLabelView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _all_categories : missing value --> array\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\tproperty _action_items : {\n\t\t\t_bullet & \"Preferences...\", \n\t\t\t_bullet & \"Help\", \n\t\t\t_bullet & \"Quit\", \n\t\t\t_menu_rule, \n\t\t\t_bullet & \"Edit Log File\t\t(Advanced)\", \n\t\t\t_menu_rule}\n\t\t\n\t\ton create_view() --> void\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _action_items & _all_categories with title _title with prompt _prompt cancel button name my u_back_btn OK button name _ok_btn default items _chosen_category\n\t\t\t\tif action_event as string is not _action_items's last item then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _action_items's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _action_items's item 2 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _action_items's item 3 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _action_items's item 5 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3 --with icon note\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, my cancel_btn_pad, my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3 --with icon note\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"This script will append the URL of the front Safari document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script also includes an option to open the file in your favorite text editor for editing. The default file and text editor are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a Text Editor...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a URLs file and\/or a text editor for editing the file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default text editor app is:\" & tab & _model's get_default_text_editor() & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tset t to _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for editing the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _text_editor to name of (choose application with title t with prompt m)\n\t\t\t\t_controller's set_editor(_text_editor)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\ton error\n\t\t\t\tset _text_editor to _model's get_default_text_editor()\n\t\t\tend try\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit\"}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, my cancel_btn_pad, my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 2 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"29a1d2caf39696e1074d80add85903fbef9aa63a","subject":"add album artwork url to get_track","message":"add album artwork url to get_track\n","repos":"andrehaveman\/spotify-node-applescript","old_file":"lib\/scripts\/get_track.applescript","new_file":"lib\/scripts\/get_track.applescript","new_contents":"on escape_quotes(string_to_escape)\n\tset AppleScript's text item delimiters to the \"\\\"\"\n\tset the item_list to every text item of string_to_escape\n\tset AppleScript's text item delimiters to the \"\\\\\\\"\"\n\tset string_to_escape to the item_list as string\n\tset AppleScript's text item delimiters to \"\"\n\treturn string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n\tset ctrack to \"{\"\n\tset ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n\tset ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n\tset ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n\tset ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n\tset ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n\tset ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"artwork_url\\\": \\\"\" & current track's artwork url & \"\\\"\"\n\tset ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n\tset ctrack to ctrack & \"}\"\nend tell\n","old_contents":"on escape_quotes(string_to_escape)\n set AppleScript's text item delimiters to the \"\\\"\"\n set the item_list to every text item of string_to_escape\n set AppleScript's text item delimiters to the \"\\\\\\\"\"\n set string_to_escape to the item_list as string\n set AppleScript's text item delimiters to \"\"\n return string_to_escape\nend escape_quotes\n\ntell application \"Spotify\"\n set ctrack to \"{\"\n set ctrack to ctrack & \"\\\"artist\\\": \\\"\" & my escape_quotes(current track's artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album\\\": \\\"\" & my escape_quotes(current track's album) & \"\\\"\"\n set ctrack to ctrack & \",\\\"disc_number\\\": \" & current track's disc number\n set ctrack to ctrack & \",\\\"duration\\\": \" & current track's duration\n set ctrack to ctrack & \",\\\"played_count\\\": \" & current track's played count\n set ctrack to ctrack & \",\\\"track_number\\\": \" & current track's track number\n set ctrack to ctrack & \",\\\"popularity\\\": \" & current track's popularity\n set ctrack to ctrack & \",\\\"id\\\": \\\"\" & current track's id & \"\\\"\"\n set ctrack to ctrack & \",\\\"name\\\": \\\"\" & my escape_quotes(current track's name) & \"\\\"\"\n set ctrack to ctrack & \",\\\"album_artist\\\": \\\"\" & my escape_quotes(current track's album artist) & \"\\\"\"\n set ctrack to ctrack & \",\\\"spotify_url\\\": \\\"\" & current track's spotify url & \"\\\"\"\n set ctrack to ctrack & \"}\"\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"1a052ce29c68662ffe1efaf4e48ca13f68dcef18","subject":"Generate sample bookmarks for new bookmarks files","message":"Generate sample bookmarks for new bookmarks files\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the license controller\n\t\t\tset license_controller to make_license_controller()\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\t-- Sample bookmarks if the bookmarks log file is new.\n\t\tproperty _sample_bookmarks : {\n\t\t\t{_label:\"Development:AppleScript\", _title:\"Log Page - AppleScript for Plain Text, Timestamped, Categorized Web Bookmarks\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\", _note:\"Developer notes: OOP, MVC, object-oriented design patterns\"}, \n\t\t\t{_label:\"Development:AppleScript:Safari\", _title:\"Resize Window - AppleScript for Mac OS X That Resizes Safari Windows\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/safari-resize-window\/\", _note:\"Useful when designing responsive websites that adapt to different sizes.\"}, \n\t\t\t{_label:\"Development:Shell:Bash\", _title:\"shmark - Categorized Shell Directory Bookmarking for Bash\", _url:\"http:\/\/jazzheaddesign.com\/work\/code\/shmark\/\", _note:missing value}}\n\t\t\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\tset _log_record to _format_record(_page_label, _page_title, _page_url, _page_note)\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed & _generate_sample_bookmarks()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _generate_sample_bookmarks() --> string\n\t\t\tlocal sample_bookmarks\n\t\t\tset sample_bookmarks to {}\n\t\t\trepeat with this_sample in _sample_bookmarks\n\t\t\t\tset end of sample_bookmarks to _format_record(this_sample's _label, this_sample's _title, this_sample's _url, this_sample's _note)\n\t\t\tend repeat\n\t\t\treturn sample_bookmarks as string\n\t\tend _generate_sample_bookmarks\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record(_label, _title, _url, _note) --> string\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _label, \n\t\t\t\t\"Title\" & field_sep & _title, \n\t\t\t\t\"URL \" & field_sep & _url}, linefeed) & linefeed\n\t\t\tif _note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_note)\n\t\t\tend if\n\t\t\t\n\t\t\treturn final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories() --> string\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller()\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log timestamped, categorized web bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2014-12-24\n\tAuthor: Steve Wheeler\n\n\tGet the title and URL from the frontmost web browser window and\n\tsave that along with the current date and time, a user-definable\n\tcategory, and an optional note to a plain text file. The result is\n\ta categorized, chronological, plain text list of bookmarks -- a\n\tbookmarks log.\n\n\tSupports Safari, Google Chrome, Firefox, and WebKit Nightly.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2014 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\nproperty __SCRIPT_AUTHOR__ : \"Steve Wheeler\"\nproperty __SCRIPT_COPYRIGHT__ : \"Copyright 2011-2014 \" & __SCRIPT_AUTHOR__\nproperty __SCRIPT_WEBSITE__ : \"http:\/\/jazzheaddesign.com\/work\/code\/log-page\/\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to bookmarks file)\n\nproperty __SCRIPT_LICENSE_SUMMARY__ : \"This program is free software available under the terms of a BSD-style (3-clause) open source license. Click the \\\"License\\\" button or see the README file included with the distribution for details.\"\nproperty __SCRIPT_LICENSE__ : __SCRIPT_COPYRIGHT__ & return & \"All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and\/or other materials provided with the distribution.\n\n Neither the name of the copyright holder nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \\\"AS IS\\\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models plus the license controller\n\t\t\tset license_controller to make_license_controller()\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log, license_controller)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\tset_browser_name(browser_model's to_string())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\tset about_controller to make_about_controller(nav_controller)\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\tabout_controller's set_controllers({license_controller})\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\tabout_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model --> Settings\n\t\tproperty _io : missing value --> IO\n\t\t\n\t\t-- Sample categories (labels) if the bookmarks log file is new.\n\t\t-- After sample categories have been written to file, any of\n\t\t-- them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\tproperty _log_record_sep : missing value --> string\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _browser_name : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_browser_name(this_value) --> void\n\t\t\tset _browser_name to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_browser_name\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_browser_name() --> string\n\t\t\treturn _browser_name\n\t\tend get_browser_name\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\tif _should_add_log_record_sep(log_file_mac) then\n\t\t\t\tset _log_record to _log_record_sep & linefeed & _log_record\n\t\t\tend if\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\t-- Does file exist?\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) then set _should_create_file to true\n\t\t\tend tell\n\t\t\t\n\t\t\t-- If file exists, is it empty?\n\t\t\tif not _should_create_file then\n\t\t\t\ttry\n\t\t\t\t\tif (get eof file log_file_mac) is 0 then set _should_create_file to true\n\t\t\t\ton error\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing categories from file\")\n\t\t\t\n\t\t\t-- Parse any existing categories from the \"Label\" fields of the\n\t\t\t-- bookmarks log file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label *| *\/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- If creating a new file, add the sample categories to the list:\n\t\t\t--\n\t\t\tif _should_create_file then\n\t\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing sample categories for new file\")\n\t\t\t\tset all_category_txt to _sample_categories & linefeed & all_category_txt\n\t\t\t\tset s to \"echo \\\"\" & all_category_txt & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\tend if\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tmy debug_log(2, \"[debug] \" & my class & \".parse_log(): parsing top-level categories\")\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# Timestamped and Categorized Web Bookmark Archive vim:ft=conf:\n# ================================================\n#\n# For use with \\\"Log Page\\\", an AppleScript available at:\n#\n# \" & __SCRIPT_WEBSITE__ & \"\n#\n# This section of lines beginning with a '#' character is just a header\n# area for free-form notes and is ignored by the script. Feel free to add\n# your own notes.\n#\n# When editing this file, take care not to alter the format of the bookmark\n# records. The field names, field widths, field delimiters and record\n# delimiters should not be altered or the script might not be able to parse\n# the data. Each bookmark record consists of a date, label (category),\n# title, URL, and optional note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Bookmark Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# bookmark. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Below this header section and before the first bookmark record,\n# optionally list some sample categories\/labels that might not yet be used\n# in any bookmark records. Any sample categories\/labels listed below will\n# be presented along with categories\/labels parsed from the bookmark\n# records as a list to select from when saving new bookmarks. The format is\n# the same as in a regular bookmark record -- field name, pipe delimiter,\n# and category. You can delete these default categories and\/or add your\n# own. They are all optional.\n\" & _log_header_sep & linefeed & _format_sample_categories() & linefeed & _log_record_sep & linefeed\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\t-- A bookmark record should always start with a record delimiter.\n\t\ton _should_add_log_record_sep(log_file_mac) --> boolean\n\t\t\tlocal last_line, log_lines\n\t\t\tset last_line to \"\"\n\t\t\tset log_lines to paragraphs of (read file log_file_mac)\n\t\t\trepeat with i from (count log_lines) to 1 by -1\n\t\t\t\tset last_line to log_lines's item i\n\t\t\t\tif trim_whitespace(last_line) is not \"\" then exit repeat\n\t\t\tend repeat\n\t\t\tif last_line is _log_record_sep then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend _should_add_log_record_sep\n\t\t\n\t\ton _set_record_delimiter() --> string\n\t\t\t-- Format the record separator between log entries\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\treturn \"\" & my multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & my multiply_text(rule_char, rule_width - name_col_width)\n\t\tend _set_record_delimiter\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, final_text\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & _log_record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\t\t\n\t\ton _format_sample_categories()\n\t\t\tlocal these_lines, this_line\n\t\t\tset these_lines to split_text(_sample_categories, linefeed)\n\t\t\trepeat with i from 1 to count these_lines\n\t\t\t\tset this_line to \"Label | \" & these_lines's item i\n\t\t\t\tset these_lines's item i to this_line\n\t\t\tend repeat\n\t\t\treturn join_list(these_lines, linefeed)\n\t\tend _format_sample_categories\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\tset this's _log_record_sep to this's _set_record_delimiter()\n\t\n\treturn this\nend make_page_log\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton reset_values() --> void\n\t\t\tset _page_url to missing value\n\t\t\tset _page_title to missing value\n\t\tend reset_values\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my short_name\n\t\tend to_string\n\t\t\n\t\ton handle_error(page_info, err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get \" & page_info & \" from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\nscript SafariBrowser\n\tproperty class : \"SafariBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Safari\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Safari\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebKitBrowser\n\tproperty class : \"WebKitBrowser\"\n\tproperty parent : SafariBrowser -- extends SafariBrowser\n\tproperty short_name : \"WebKit\"\nend script\n\nscript ChromeBrowser\n\tproperty class : \"ChromeBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Chrome\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\ttell application (my short_name)\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\tget this_title -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\tget this_url -- check if defined\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend using terms from\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript FirefoxBrowser\n\tproperty class : \"FirefoxBrowser\"\n\tproperty parent : make_web_browser() -- extends WebBrowser\n\tproperty short_name : \"Firefox\"\n\t\n\ton fetch_page_info() --> void\n\t\treset_values()\n\t\tgui_scripting_status() -- Firefox requires GUI scripting\n\t\t\n\t\ttell application (my short_name)\n\t\t\tactivate\n\t\t\ttry\n\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\tget this_title -- check if defined\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"page title\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\ttry\n\t\t\tset old_clipboard to the clipboard\n\t\tend try\n\t\t\n\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t-- scripting is required.\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\tkeystroke tab\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\t\tend try\n\t\tend tell\n\t\t\n\t\tdelay 1 -- GUI scripting can be slow; give it a second\n\t\t\n\t\ttry\n\t\t\tset this_url to the clipboard\n\t\t\tget this_url -- check if defined\n\t\ton error err_msg number err_num\n\t\t\tmy handle_error(\"URL\", err_msg, err_num)\n\t\tend try\n\t\t\n\t\ttry\n\t\t\tset the clipboard to old_clipboard\n\t\tend try\n\t\t\n\t\tset_values(this_url, this_title)\n\tend fetch_page_info\nend script\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : {SafariBrowser, ChromeBrowser, FirefoxBrowser, WebKitBrowser}\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\trepeat with this_browser in supported_browsers\n\t\t\tif cur_app is this_browser's to_string() then\n\t\t\t\tmy debug_log(1, \"---> using \" & this_browser's class)\n\t\t\t\treturn this_browser\n\t\t\tend if\n\t\tend repeat\n\t\t_handle_unsupported(cur_app)\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & get_browser_names()\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\n\t\n\ton get_browser_names() --> string\n\t\tset these_names to \"\"\n\t\trepeat with i from 1 to supported_browsers's length\n\t\t\tset this_item to supported_browsers's item i\n\t\t\tif i = 1 then\n\t\t\t\tset these_names to this_item's to_string()\n\t\t\telse\n\t\t\t\tset these_names to these_names & \", \" & this_item's to_string()\n\t\t\tend if\n\t\tend repeat\n\t\treturn these_names\n\tend get_browser_names\nend script\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen alias mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_license_controller()\n\tscript this\n\t\tproperty class : \"LicenseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t--\n\t\t\t-- No need to construct and display a custom view object here\n\t\t\t-- because there are no custom actions to trigger. Just display\n\t\t\t-- a simple AppleScript alert view and the script will either\n\t\t\t-- proceed to the next controller in the stack with \"OK\" or exit\n\t\t\t-- with \"Cancel\".\n\t\t\t--\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert __SCRIPT_NAME__ message __SCRIPT_LICENSE__ buttons _buttons default button 2 cancel button 1\n\t\t\tend timeout\n\t\t\t--\n\t\t\t-- The cancel button will stop the script before it gets here.\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true --> false ends controller loop and exits script\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_license_controller\n\non make_about_controller(navigation_controller)\n\tscript this\n\t\tproperty class : \"AboutController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_about_view(me)\n\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton show_license() --> void\n\t\t\tmy debug_log(1, my class & \".show_license()\")\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_license\n\t\t\n\t\ton go_to_website() --> void\n\t\t\tmy debug_log(1, my class & \".go_to_website()\")\n\t\t\ttell me to open location __SCRIPT_WEBSITE__\n\t\tend go_to_website\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_about_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(9)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_about() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_about\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model, license_controller)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _license_controller : license_controller\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\t-- Before showing any other user interface, show the license\n\t\t\t\trun _license_controller\n\t\t\t\t-- Continue if the user did not cancel\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript this\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page, a user-definable category, and an optional note. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty back_btn_pad : missing value\n\t\tproperty ok_btn_pad : missing value\n\t\tproperty next_btn_pad : missing value\n\t\tproperty save_btn_pad : missing value\n\t\tproperty help_btn_pad : missing value\n\t\t--property cancel_btn_pad : missing value -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\t\t\n\t\t--\n\t\t-- This method just centers button names a fixed amount and is\n\t\t-- meant to be used on short button names of roughly the same\n\t\t-- width. Button names that are much longer or shorter will need\n\t\t-- to be manually padded (either directly or with a function\n\t\t-- that takes padding parameters.)\n\t\t--\n\t\ton _center_button_name(str) --> void -- PRIVATE\n\t\t\t-- Oddly, the left and right sides need different amounts of padding\n\t\t\t-- to (mostly) center the button name. It's never exact though.\n\t\t\tset left_pad to multiply_text(tab, 2) & multiply_text(space, 2)\n\t\t\tset right_pad to multiply_text(tab, 3)\n\t\t\treturn left_pad & str & right_pad as string\n\t\tend _center_button_name\n\tend script\n\t\n\tset this's back_btn_pad to this's _center_button_name(this's u_back_btn)\n\tset this's ok_btn_pad to this's _center_button_name(\"OK\")\n\tset this's next_btn_pad to this's _center_button_name(\"Next...\")\n\tset this's save_btn_pad to this's _center_button_name(\"Save\")\n\tset this's help_btn_pad to this's _center_button_name(\"Help\")\n\t--set this's cancel_btn_pad to this's _center_button_name(\"Cancel\") -- this prevents cmd-. from working\n\t\n\treturn this\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_about_view(view_controller)\n\tscript\n\t\tproperty class : \"AboutView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__\n\t\tproperty _buttons : {\"License\", \"Website\", \"OK\"}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_license()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_to_website()\n\t\t\t\treturn false --> stop controller loop\n\t\t\tend if\n\t\t\treturn true --> continue controller loop\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \n\t\t\t\t\"Log timestamped, categorized web bookmarks to a text file.\" & return & return \n\t\t\t\t& \"Version \" & __SCRIPT_VERSION__ & return & return & return & return \n\t\t\t\t& __SCRIPT_COPYRIGHT__ & return & return \n\t\t\t\t& __SCRIPT_LICENSE_SUMMARY__ & return\n\t\tend _set_prompt\n\tend script\nend make_about_view\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged bookmark by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the bookmarks log file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\ttry\n\t\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 cancel button 2 as warning\n\t\t\t\t\tset action_event to result's button returned\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tif err_num is -128 then -- treat cancel (cmd-.) as back\n\t\t\t\t\t\tset action_event to _buttons's item 2\n\t\t\t\t\telse\n\t\t\t\t\t\terror err_msg number err_num\n\t\t\t\t\tend if\n\t\t\t\tend try\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log a bookmark for \" & _model's get_browser_name() & \"'s front document, first edit and\/or accept the page title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Edit and\/or accept the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _prompt_extra : \"(Type a number to jump to the corresponding numbered menu item.)\"\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"About \" & __SCRIPT_NAME__, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton number_menu_items(menu_items, menu_rule) --> array\n\t\t\tlocal numbered_menu, menu_items, menu_rule, j\n\t\t\tset numbered_menu to {}\n\t\t\tset j to 1\n\t\t\trepeat with i from 1 to menu_items's length\n\t\t\t\tset this_item to menu_items's item i\n\t\t\t\tif this_item is menu_rule then\n\t\t\t\t\tset numbered_menu's end to this_item\n\t\t\t\telse\n\t\t\t\t\tset numbered_menu's end to j & space & this_item as string\n\t\t\t\t\tset j to j + 1\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn numbered_menu\n\t\tend number_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the web page you want to log. Next you will be able to select subcategories. \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 13 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the web page you want to log. You will have a chance to edit your choice (to add a new category or subcategory). \" & my _prompt_extra\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_about()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tlocal these_items\n\t\t\tset these_items to my get_base_menu_items(_menu_rule)\n\t\t\tset _menu_items to my number_menu_items(these_items, _menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the web page bookmark. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tset {text returned:text_value, button returned:action_event} to result\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _model's get_default_log_file() & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _model's get_default_file_viewer() & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old bookmarks log file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a Log File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different bookmarks log file, file viewer, or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"Log File:\" & tab & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the bookmarks log file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the bookmarks log file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a plain text file in which to save bookmarks:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default bookmarks log file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the bookmarks log file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the bookmarks.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tset {text returned:text_value, button returned:btn_pressed} to result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\t\t\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | tr -s ' '\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non trim_whitespace(str)\n\tset white_space to space & tab & return & linefeed\n\t\n\t-- trim start\n\ttry\n\t\tset str to str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\t--return str as text -- don't return yet; still need to trim end\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim start: \" & err_msg number err_num\n\tend try\n\t\n\t-- trim end\n\ttry\n\t\tset str to reverse of str's items\n\t\t--log str\n\t\ttry\n\t\t\trepeat while str's first item is in white_space\n\t\t\t\tset str to rest of str\n\t\t\tend repeat\n\t\t\treturn str's reverse as text\n\t\ton error number -1700 -- empty list or nothing but whitespace\n\t\t\treturn \"\"\n\t\tend try\n\ton error err_msg number err_num\n\t\terror \"Can't trim end: \" & err_msg number err_num\n\tend try\nend trim_whitespace\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"517ed138d2dd2602f64f59f48a7cd89611d387a6","subject":"Get short name from front process (vs. name)","message":"Get short name from front process (vs. name)\n","repos":"jazzhead\/log-page,jazzhead\/log-page","old_file":"log_page.applescript","new_file":"log_page.applescript","new_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Chrome\" -- so it won't be required to run\/compile\n\t\t\tusing terms from application \"Google Chrome\" -- for compilation\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\" -- so it won't be required to run\/compile\n\t\t\ttell application this_app\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to short name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","old_contents":"(*\n\tLog Page - Log categorized web page bookmarks to a text file\n\n\tVersion: @@VERSION@@\n\tDate: 2013-03-03\n\tAuthor: Steve Wheeler\n\n\tGet the title, URL, current date and time, and a user-definable\n\tcategory for the frontmost Safari window and log the info to a text\n\tfile.\n\n\tThis program is free software available under the terms of a\n\tBSD-style (3-clause) open source license detailed below.\n*)\n\n(*\nCopyright (c) 2011-2013 Steve Wheeler\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and\/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n*)\n\n\nproperty __SCRIPT_NAME__ : \"Log Page\"\nproperty __SCRIPT_VERSION__ : \"@@VERSION@@\"\n\nproperty __NAMESPACE__ : \"Jazzhead\"\nproperty __BUNDLE_ID__ : \"net.jazzhead.scpt.LogPage\"\nproperty __PLIST_DIR__ : missing value\n\n-- Debug settings\nproperty __DEBUG_LEVEL__ : 0 -- integer (0 = no event logging)\nproperty __NULL_IO__ : false -- boolean (if true, don't write to URL file)\n\non run\n\t-- Initialize any script properties here that should not be hardcoded\n\tset __PLIST_DIR__ to POSIX path of (path to preferences from user domain)\n\t\n\tset app_controller to make_app_controller()\n\trun app_controller\nend run\n\n(* ==== Main Controller ==== *)\n\n-- This is the main client controller that creates the models and creates\n-- and runs the other controllers.\n\non make_app_controller()\n\tscript this\n\t\tproperty class : \"AppController\" -- the main controller\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t(* == Settings == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- The settings controller is run first to load the saved\n\t\t\t-- settings from disk or show a \"first run\" settings dialog\n\t\t\t-- if there is no existing preferences file.\n\t\t\t--\n\t\t\t\n\t\t\t-- Need the settings model first\n\t\t\tset settings_model to make_page_log_settings()\n\t\t\tsettings_model's init()\n\t\t\t\n\t\t\t-- Main model needs the settings model\n\t\t\tset page_log to make_page_log(settings_model)\n\t\t\t\n\t\t\t-- Settings controller needs both models\n\t\t\tset settings_controller to make_settings_controller(settings_model, page_log)\n\t\t\trun settings_controller\n\t\t\t\n\t\t\t(* == Data Retrieval == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Get the web page info from the web browser\n\t\t\t--\n\t\t\tset browser_model to my WebBrowserFactory's make_browser()\n\t\t\tbrowser_model's fetch_page_info()\n\t\t\t\n\t\t\t--\n\t\t\t-- Load initial data into the main model\n\t\t\t--\n\t\t\ttell page_log\n\t\t\t\t-- Get last-used category read from preferences file\n\t\t\t\tupdate_category_state()\n\t\t\t\t\n\t\t\t\t-- Store the web page info in the main model\n\t\t\t\t--\n\t\t\t\tset_page_url(browser_model's get_url())\n\t\t\t\tset_page_title(browser_model's get_title())\n\t\t\t\t\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_url())\n\t\t\t\tmy debug_log(1, \"[debug] \" & get_page_title())\n\t\t\t\t\n\t\t\t\t-- Parse the categories from the log file\n\t\t\t\t--\n\t\t\t\tparse_log()\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Done with browser. Does this make any difference?\n\t\t\tset browser_model to missing value\n\t\t\t\n\t\t\t(* == Controllers == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create the shared navigation controller\n\t\t\t--\n\t\t\tset nav_controller to make_navigation_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Create shared category base view\n\t\t\t--\n\t\t\tset label_base_view to make_label_base_view(page_log)\n\t\t\t\n\t\t\t--\n\t\t\t-- Create any other needed controllers, passing in whatever\n\t\t\t-- shared models, controllers and\/or views they need.\n\t\t\t--\n\t\t\tset help_controller to make_help_controller(nav_controller, settings_model)\n\t\t\tset file_editor_controller to make_file_editor_controller(nav_controller, settings_model)\n\t\t\tset file_viewer_controller to make_file_viewer_controller(nav_controller, settings_model)\n\t\t\t--\n\t\t\tset title_controller to make_title_controller(nav_controller, page_log)\n\t\t\tset url_controller to make_url_controller(nav_controller, page_log)\n\t\t\t-- \n\t\t\tset label_controller to make_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset sub_label_controller to make_sub_label_controller(nav_controller, page_log, label_base_view)\n\t\t\tset all_label_controller to make_all_label_controller(nav_controller, page_log, label_base_view)\n\t\t\t--\n\t\t\tset label_edit_controller to make_label_edit_controller(nav_controller, page_log)\n\t\t\tset note_controller to make_note_controller(nav_controller, page_log)\n\t\t\t--\n\t\t\tset label_help_controller to make_label_help_controller()\n\t\t\t\n\t\t\t--\n\t\t\t-- Dependency Injection\n\t\t\t--\n\t\t\t-- Each controller needs a reference to any other\n\t\t\t-- controllers that it might add to the navigation stack.\n\t\t\t-- (The injected controllers are referred to by index so for\n\t\t\t-- ease of implementation, add the default action first. For\n\t\t\t-- list dialogs, then add actions in the list order.)\n\t\t\t--\n\t\t\thelp_controller's set_controllers({settings_controller})\n\t\t\ttitle_controller's set_controllers({\n\t\t\t\thelp_controller, \n\t\t\t\turl_controller})\n\t\t\turl_controller's set_controllers({label_controller})\n\t\t\tlabel_controller's set_controllers({\n\t\t\t\tsub_label_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tsub_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tall_label_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tall_label_controller's set_controllers({\n\t\t\t\tlabel_edit_controller, \n\t\t\t\tfile_editor_controller, \n\t\t\t\tfile_viewer_controller, \n\t\t\t\tsettings_controller, \n\t\t\t\thelp_controller, \n\t\t\t\tlabel_help_controller})\n\t\t\tlabel_edit_controller's set_controllers({note_controller})\n\t\t\t\n\t\t\t--\n\t\t\t-- Load the first (root) controller onto the stack\n\t\t\t--\n\t\t\tnav_controller's push_root_controller(title_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\t(* == UI == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- This is the main UI\/View loop. It will loop through the\n\t\t\t-- controller stack until empty, prompting the user for info.\n\t\t\t--\n\t\t\t-- The controller stack can be modified by any controller so\n\t\t\t-- the loop will run as long as controllers keep pushing\n\t\t\t-- other controllers onto the stack in response to user\n\t\t\t-- action.\n\t\t\t--\n\t\t\tif nav_controller's is_empty() then\n\t\t\t\terror \"The navigation controller stack needs at least one controller.\"\n\t\t\tend if\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop()\n\t\t\t\tset ret_val to run this_controller --> returns boolean\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\t\n\t\t\t\tif not ret_val then -- {FileEditor,FileViewer}Controller will return false\n\t\t\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\t\t\t\treturn -- don't do any post-processing\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\t\n\t\t\t(* == Processing == *)\n\t\t\t\n\t\t\t--\n\t\t\t-- All that's left is to append the data to the log file.\n\t\t\t--\n\t\t\tpage_log's write_record()\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class)\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_app_controller\n\n(* ==== Model ==== *)\n\n-- -- -- Main App Models -- -- --\n\non make_page_log(settings_model)\n\tscript this\n\t\tproperty class : \"PageLog\" -- the main model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : settings_model\n\t\tproperty _io : missing value\n\t\t\n\t\t-- Sample categories (labels) if none are found in (or there is\n\t\t-- no) URL file. After sample categories have been written to\n\t\t-- file, any of them can be deleted, modified or added to there.\n\t\t--\n\t\tproperty _sample_categories : \"Development\nDevelopment:AppleScript\nDevelopment:AppleScript:Mail\nDesign\nProductivity:GTD\nApple:Mac OS X\nApple:iOS\nCareer\nEducation\nHealth\nHealth:Diet\nHealth:Fitness\nGeneral\"\n\t\tproperty _log_header_sep : my multiply_text(\"#\", 80)\n\t\t\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _page_note : missing value --> string\n\t\tproperty _log_record : missing value --> string\n\t\tproperty _should_create_file : false --> boolean\n\t\t\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _chosen_root_category : missing value --> string -- label view state\n\t\tproperty _chosen_category : missing value --> string -- label view state\n\t\t\n\t\t(* == Setters == *)\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\tset _page_url to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_url\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\tmy debug_log(1, my class & \".set_page_title(\" & this_value & \")\")\n\t\t\tset _page_title to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_title\n\t\t\n\t\ton set_page_label(this_value) --> void\n\t\t\tset _page_label to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_label\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tset _page_note to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_page_note\n\t\t\n\t\ton set_chosen_root_category(this_value) --> void\n\t\t\tset _chosen_root_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_root_category\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\tset _chosen_category to this_value\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_chosen_category\n\t\t\n\t\t(* == Getters == *)\n\t\t\n\t\ton get_page_url() --> string\n\t\t\treturn _page_url\n\t\tend get_page_url\n\t\t\n\t\ton get_page_title() --> string\n\t\t\treturn _page_title\n\t\tend get_page_title\n\t\t\n\t\ton get_page_label() --> string\n\t\t\treturn _page_label\n\t\tend get_page_label\n\t\t\n\t\ton get_page_note() --> string\n\t\t\treturn _page_note\n\t\tend get_page_note\n\t\t\n\t\ton get_all_categories() --> array\n\t\t\treturn _all_categories\n\t\tend get_all_categories\n\t\t\n\t\ton get_root_categories() --> array\n\t\t\treturn _root_categories\n\t\tend get_root_categories\n\t\t\n\t\ton get_sub_categories() --> array\n\t\t\tlocal sub_categories, this_cat\n\t\t\tset sub_categories to {}\n\t\t\trepeat with this_cat in _all_categories\n\t\t\t\tset this_cat to this_cat's contents -- dereference\n\t\t\t\tif this_cat is _chosen_root_category \n\t\t\t\t\tor this_cat starts with (_chosen_root_category & \":\") then\n\t\t\t\t\tset end of sub_categories to this_cat\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn sub_categories\n\t\tend get_sub_categories\n\t\t\n\t\ton get_chosen_root_category() --> string\n\t\t\treturn _chosen_root_category\n\t\tend get_chosen_root_category\n\t\t\n\t\ton get_chosen_category() --> string\n\t\t\treturn _chosen_category\n\t\tend get_chosen_category\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton write_record() --> void\n\t\t\tlocal log_file_posix, log_file_mac\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\t-- Write last selected category to preferences file (save state)\n\t\t\t_settings's set_pref(_settings's get_last_category_key(), _page_label)\n\t\t\t\n\t\t\t_format_record()\n\t\t\t\n\t\t\t_validate_fields()\n\t\t\t\n\t\t\t-- Create any directories needed in the web page log file path\n\t\t\tcreate_directory(first item of split_path_into_dir_and_file(log_file_posix))\n\t\t\t\n\t\t\tif _should_create_file then _create_log_file()\n\t\t\t\n\t\t\t_io's append_file(log_file_mac, _log_record)\n\t\tend write_record\n\t\t\n\t\ton parse_log() --> void\n\t\t\tmy debug_log(2, my class & \".parse_log()...\")\n\t\t\t\n\t\t\tlocal log_file_posix, log_file_mac, header_items\n\t\t\tlocal all_category_txt, root_category_txt\n\t\t\tlocal all_categories, root_categories, existing_categories\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log(): file = \" & log_file_posix)\n\t\t\t\n\t\t\ttell application \"Finder\"\n\t\t\t\tif (not (exists log_file_mac)) or (_io's read_file(log_file_mac) is \"\") then\n\t\t\t\t\tset _should_create_file to true\n\t\t\t\tend if\n\t\t\tend tell\n\t\t\t\n\t\t\tif _should_create_file then\n\t\t\t\t-- Use sample categories when creating a new file\n\t\t\t\tset all_category_txt to _sample_categories\n\t\t\telse\n\t\t\t\t-- Read manually-entered (and\/or previous sample)\n\t\t\t\t-- categories from existing file header\n\t\t\t\ttry\n\t\t\t\t\tset header_items to split_text(_io's read_file(log_file_mac), _log_header_sep)\n\t\t\t\t\tif header_items's length is 5 then\n\t\t\t\t\t\tset all_category_txt to text 2 thru -2 of header_items's item 3\n\t\t\t\t\telse\n\t\t\t\t\t\terror\n\t\t\t\t\tend if\n\t\t\t\ton error -- file header is bad or missing, or user deleted samples\n\t\t\t\t\tset all_category_txt to missing value\n\t\t\t\tend try\n\t\t\tend if\n\t\t\t\n\t\t\t-- Parse any existing labels from the \"Label\" fields of the URLs file:\n\t\t\t--\n\t\t\tset s to \"LANG=C sed -n 's\/^Label | \/\/p' \" & quoted form of log_file_posix \n\t\t\t\t& \" | sort | uniq\"\n\t\t\tset existing_categories to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Sort those along with the manual\/sample categories\/labels:\n\t\t\t--\n\t\t\tif all_category_txt is not missing value then\n\t\t\t\tset existing_categories to all_category_txt & linefeed & existing_categories\n\t\t\tend if\n\t\t\tset s to \"echo \\\"\" & existing_categories & \"\\\" | egrep -v '^$' | sort | uniq\"\n\t\t\tset all_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset all_categories to paragraphs of all_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until all_categories's last item is not \"\"\n\t\t\t\t\tset all_categories to all_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset all_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\t-- Get root-level categories:\n\t\t\t--\n\t\t\tset s to \"LANG=C echo \\\"\" & all_category_txt \n\t\t\t\t& \"\\\" | sed -n 's\/^\\\\([^:]\\\\{1,\\\\}\\\\).*\/\\\\1\/p' | uniq\"\n\t\t\tset root_category_txt to do shell script s without altering line endings\n\t\t\t\n\t\t\t-- Coerce the lines into a list:\n\t\t\t--\n\t\t\tset root_categories to paragraphs of root_category_txt\n\t\t\ttry -- omit trailing blank lines\n\t\t\t\trepeat until root_categories's last item is not \"\"\n\t\t\t\t\tset root_categories to root_categories's items 1 thru -2\n\t\t\t\tend repeat\n\t\t\ton error -- no categories found\n\t\t\t\tset root_categories to {}\n\t\t\tend try\n\t\t\t\n\t\t\tset _all_categories to all_categories\n\t\t\tset _root_categories to root_categories\n\t\t\tsettings_changed() -- notify observers\n\t\t\t\n\t\t\tmy debug_log(1, get_root_categories())\n\t\t\tmy debug_log(2, get_all_categories())\n\t\t\t\n\t\t\tmy debug_log(2, my class & \".parse_log() done\")\n\t\tend parse_log\n\t\t\n\t\ton update_category_state()\n\t\t\tmy debug_log(1, my class & \".update_category_state()\")\n\t\t\tset _page_label to _settings's get_last_category()\n\t\t\tif _page_label is missing value or _page_label is \"\" then\n\t\t\t\tset _chosen_category to \"\"\n\t\t\telse\n\t\t\t\tset _chosen_category to _page_label\n\t\t\tend if\n\t\t\ttry\n\t\t\t\tset _chosen_root_category to my split_text(_page_label, \":\")'s item 1\n\t\t\ton error\n\t\t\t\tset _chosen_root_category to \"\"\n\t\t\tend try\n\t\tend update_category_state\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\t\tif __DEBUG_LEVEL__ > 0 then identify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _validate_fields() --> void\n\t\t\tif _page_url is missing value then\n\t\t\t\t_error_missing(\"page URL\")\n\t\t\telse if _page_title is missing value then\n\t\t\t\t_error_missing(\"page title\")\n\t\t\telse if _page_label is missing value or _page_label is \"\" then\n\t\t\t\t_error_missing(\"page label (category)\")\n\t\t\telse if _log_record is missing value then\n\t\t\t\t_error_missing(\"formatted page data\")\n\t\t\tend if\n\t\tend _validate_fields\n\t\t\n\t\ton _error_missing(this_field) --> void\n\t\t\terror my class & \": missing value for: \" & this_field & \" - can't append to log\"\n\t\tend _error_missing\n\t\t\n\t\ton _create_log_file() --> void\n\t\t\tlocal log_file_posix, log_file_mac, file_header\n\t\t\t\n\t\t\tset log_file_posix to expand_home_path(_settings's get_log_file())\n\t\t\tset log_file_mac to get_mac_path(log_file_posix)\n\t\t\t\n\t\t\tset file_header to _log_header_sep & \"\n# urls.txt - Timestamped and categorized URL archive vim:ft=conf:\n# ==================================================\n#\n# For use with \\\"Log Page\\\" (AppleScript)\n#\n# When editing this file, take care not to alter the format. The field\n# names, field widths, field delimiters and record delimiters should not\n# be altered or the script will not be able to parse the data. Each URL\n# record consists of a date, label (category), title, URL and optional\n# note:\n#\n# ------+----------------------------------------------------------\n# Date | 2013-02-28 20:14:38\n# Label | Example Category:Subcategory:Another Subcategory\n# Title | Example Web Page Record\n# URL | http:\/\/example.com\n# Note | An optional note\n# ------+----------------------------------------------------------\n#\n# The \\\"Label\\\" field is for categories and subcategories assigned to a\n# URL. A colon (:) is used to separate subcategories. Subcategories\n# delimited in such a way represent a nested hierarchy. For example, a\n# category of \\\"Development:AppleScript:Mail\\\" could be thought of as a\n# nested list as in:\n#\n# - Development\n# - AppleScript\n# - Mail\n#\n# Optionally list some sample categories\/labels below that might not yet\n# be used in any web page records. Any sample categories\/labels listed\n# below will be presented along with categories\/labels parsed from the\n# web page records as a list to select from when saving new URLs.\n#\n# The two sections that are surrounded by '#' characters (this one, and\n# the one that follows the sample category list) should not be deleted.\n#\n# BEGIN: sample category\/label list (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed & _sample_categories & linefeed & _log_header_sep & \"\n# END: sample category\/label list\n#\n# Do not remove this section.\n#\n# BEGIN: Web page records (after the '#' delimiter on the next line)\n\" & _log_header_sep & linefeed\n\t\t\t\n\t\t\t_io's write_file(log_file_mac, file_header)\n\t\tend _create_log_file\n\t\t\n\t\ton _format_record() --> void\n\t\t\tlocal field_sep, record_sep, final_text\n\t\t\tlocal rule_char, rule_width, name_col_width\n\t\t\t\n\t\t\tset field_sep to \" | \"\n\t\t\t\n\t\t\t-- Format the record separator between log entries\n\t\t\tset rule_char to \"-\"\n\t\t\tset rule_width to 80 -- total width\n\t\t\tset name_col_width to 7 -- name column width only\n\t\t\tset record_sep to \"\" & multiply_text(rule_char, name_col_width - 1) & \n\t\t\t\t\"+\" & multiply_text(rule_char, rule_width - name_col_width)\n\t\t\t\n\t\t\tset final_text to join_list({\n\t\t\t\t\"Date \" & field_sep & _format_date(), \n\t\t\t\t\"Label\" & field_sep & _page_label, \n\t\t\t\t\"Title\" & field_sep & _page_title, \n\t\t\t\t\"URL \" & field_sep & _page_url}, linefeed) & linefeed\n\t\t\tif _page_note is not missing value then\n\t\t\t\tset final_text to final_text & _format_note(_page_note)\n\t\t\tend if\n\t\t\t\n\t\t\tset _log_record to final_text & record_sep & linefeed\n\t\tend _format_record\n\t\t\n\t\ton _format_date() --> string (YYYY-MM-DD HH:MM:SS)\n\t\t\tset {year:y, month:m, day:d, hours:hh, minutes:mm, seconds:ss} to current date\n\t\t\tset m to m as integer -- coerce month string\n\t\t\t-- Pad numbers with leading zeros:\n\t\t\tset tmp_list to {}\n\t\t\trepeat with this_item in {m, d, hh, mm, ss}\n\t\t\t\tset this_item to text 2 thru -1 of (100 + this_item as text)\n\t\t\t\tset end of tmp_list to this_item\n\t\t\tend repeat\n\t\t\tset {m, d, hh, mm, ss} to tmp_list\n\t\t\t-- Final string:\n\t\t\treturn join_list({y, m, d}, \"-\") & space & join_list({hh, mm, ss}, \":\")\n\t\tend _format_date\n\t\t\n\t\ton _format_note(this_text) --> string\n\t\t\t-- Line wrap the Note field (and transliterate non-ASCII characters)\n\t\t\tset s to \"LANG=C echo \" & quoted form of convert_to_ascii(this_text) \n\t\t\t\t& \"| fmt -w 72 | sed '1 s\/^\/Note | \/; 2,$ s\/^\/ | \/'\"\n\t\t\tdo shell script s without altering line endings\n\t\tend _format_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\" & return)\n\t\n\tif __NULL_IO__ then\n\t\tset this's _io to make_null_io()\n\telse\n\t\tset this's _io to make_io()\n\tend if\n\t\n\treturn this\nend make_page_log\n\nscript WebBrowserFactory\n\tproperty class : \"WebBrowserFactory\"\n\tproperty supported_browsers : \"Safari, Google Chrome, Firefox\"\n\t\n\ton make_browser() --> WebBrowser\n\t\tmy debug_log(1, \"---> \" & my class & \".make_browser()...\")\n\t\tset cur_app to get_front_app_name()\n\t\tif cur_app is \"Safari\" then\n\t\t\treturn make_safari_browser()\n\t\telse if cur_app is \"Google Chrome\" then\n\t\t\treturn make_chrome_browser()\n\t\telse if cur_app is \"Firefox\" then\n\t\t\treturn make_firefox_browser()\n\t\telse\n\t\t\t_handle_unsupported(cur_app)\n\t\tend if\n\tend make_browser\n\t\n\ton _handle_unsupported(cur_app) --> void -- PRIVATE\n\t\tset err_msg to \"The application \" & cur_app & \" is not a supported web browser. Currently supported browsers are:\" & return & return & tab & supported_browsers\n\t\tset err_num to -2700\n\t\tset t to \"Error: Unsupported Application (\" & err_num & \")\"\n\t\tset m to err_msg\n\t\tif __DEBUG_LEVEL__ > 0 then set m to \"[\" & my class & \"]\" & return & m\n\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t--error err_msg number err_num\n\tend _handle_unsupported\nend script\n\non make_web_browser()\n\tscript\n\t\tproperty class : \"WebBrowser\" -- abstract\n\t\tproperty _page_url : missing value\n\t\tproperty _page_title : missing value\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\terror my class & \".fetch_page_info(): abstract method not overridden\" number -1717\n\t\tend fetch_page_info\n\t\t\n\t\ton get_url() --> string\n\t\t\treturn _page_url\n\t\tend get_url\n\t\t\n\t\ton get_title() --> string\n\t\t\treturn _page_title\n\t\tend get_title\n\t\t\n\t\ton set_values(this_url, this_title) --> void\n\t\t\ttry\n\t\t\t\tset _page_url to this_url\n\t\t\t\tset _page_title to convert_to_ascii(this_title) -- Transliterate non-ASCII\n\t\t\ton error err_msg number err_num\n\t\t\t\thandle_error(err_msg, err_num)\n\t\t\tend try\n\t\tend set_values\n\t\t\n\t\ton handle_error(err_msg, err_num) --> void\n\t\t\tset t to \"Error: Can't get info from web browser\"\n\t\t\tset m to \"[\" & my class & \"] \" & err_msg & \" (\" & err_num & \")\"\n\t\t\tdisplay alert t message m buttons {\"Cancel\"} cancel button 1 as critical\n\t\t\t--display alert t message m buttons {\"OK\"} default button 1 as critical\n\t\t\t--error err_msg number err_num\n\t\tend handle_error\n\tend script\nend make_web_browser\n\non make_safari_browser()\n\tscript this\n\t\tproperty class : \"SafariBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\ttell application \"Safari\"\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_url to URL of front document\n\t\t\t\t\tset this_title to name of first tab of front window whose visible is true\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_safari_browser\n\non make_chrome_browser()\n\tscript this\n\t\tproperty class : \"ChromeBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tset this_app to \"Google Chrome\"\n\t\t\tusing terms from application \"Google Chrome\" -- in case it's not installed\n\t\t\t\ttell application this_app\n\t\t\t\t\tactivate\n\t\t\t\t\ttry\n\t\t\t\t\t\tset this_url to URL of (active tab of window 1)\n\t\t\t\t\t\tset this_title to title of (active tab of window 1)\n\t\t\t\t\ton error err_msg number err_num\n\t\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\t\tend try\n\t\t\t\tend tell\n\t\t\tend using terms from\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_chrome_browser\n\non make_firefox_browser()\n\tscript this\n\t\tproperty class : \"FirefoxBrowser\" -- concrete class\n\t\tproperty parent : make_web_browser() -- extends WebBrowser\n\t\t\n\t\ton fetch_page_info() --> void\n\t\t\tgui_scripting_status()\n\t\t\t\n\t\t\tset this_app to \"Firefox\" -- so it won't be required to run\/compile\n\t\t\ttell application this_app\n\t\t\t\tactivate\n\t\t\t\ttry\n\t\t\t\t\tset this_title to name of front window -- Standard Suite\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\ttry\n\t\t\t\tset old_clipboard to the clipboard\n\t\t\tend try\n\t\t\t\n\t\t\t-- Firefox has very limited AppleScript support, so GUI\n\t\t\t-- scripting is required.\n\t\t\ttell application \"System Events\"\n\t\t\t\ttry\n\t\t\t\t\tkeystroke \"l\" using {command down} -- select the URL field\n\t\t\t\t\tkeystroke \"c\" using {command down} -- copy to clipboard\n\t\t\t\t\tkeystroke tab -- tab focus away\n\t\t\t\t\tkeystroke tab\n\t\t\t\ton error err_msg number err_num\n\t\t\t\t\tmy handle_error(err_msg, err_num)\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\tdelay 1\n\t\t\tset this_url to the clipboard\n\t\t\t\n\t\t\ttry\n\t\t\t\tset the clipboard to old_clipboard\n\t\t\tend try\n\t\t\t\n\t\t\tset_values(this_url, this_title)\n\t\tend fetch_page_info\n\tend script\n\t\n\tmy debug_log(1, \"---> new \" & this's class & \"()\")\n\treturn this\nend make_firefox_browser\n\nscript FileApp\n\tproperty class : \"FileApp\"\n\t\n\ton open_file(this_app, posix_file_path) --> void\n\t\tmy debug_log(1, my class & \".open_file()\")\n\t\t\n\t\tset posix_file_path to expand_home_path(posix_file_path)\n\t\tset mac_file_path to get_mac_path(posix_file_path)\n\t\t\n\t\ttell application this_app\n\t\t\tactivate\n\t\t\topen mac_file_path\n\t\tend tell\n\tend open_file\nend script\n\n-- -- -- Settings Models -- -- --\n\non make_settings()\n\t(*\n\t\tThis class should be subclassed rather than modified to\n\t\tcustomize it for a particular application.\n\n\t\tDependencies:\n\t\t\t* Observable (class)\n\t\t\t* AssociativeList (class)\n\t\t\t* Plist (class)\n\t*)\n\tscript\n\t\tproperty class : \"Settings\" -- model\n\t\tproperty parent : make_observable() -- extends Observable\n\t\tproperty _settings : make_associative_list() --> AssociativeList\n\t\tproperty _default_settings : make_associative_list() --> AssociativeList\n\t\tproperty _plist : missing value --> Plist (object)\n\t\t\n\t\ton init()\n\t\t\tset plist_path to __PLIST_DIR__ & __BUNDLE_ID__ & \".plist\"\n\t\t\tset _plist to make_plist(plist_path, me)\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_item(this_key) --> anything\n\t\t\t_default_settings's get_item(this_key)\n\t\tend get_default_item\n\t\t\n\t\ton get_default_keys() --> list\n\t\t\t_default_settings's get_keys()\n\t\tend get_default_keys\n\t\t\n\t\t(* == Observer Pattern == *)\n\t\t\n\t\ton settings_changed() -- void\n\t\t\tset_changed()\n\t\t\tnotify_observers()\n\t\tend settings_changed\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\t_plist's write_pref(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\t_settings's set_item(this_key, this_value)\n\t\t\tsettings_changed() -- notify observers\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key) --> anything\n\t\t\t_settings's get_item(this_key)\n\t\tend get_item\n\t\t\n\t\ton count_items() --> integer\n\t\t\t_settings's count_items()\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key) --> void\n\t\t\t_settings's delete_item(this_key)\n\t\t\tsettings_changed()\n\t\tend delete_item\n\t\t\n\t\ton get_keys() --> list\n\t\t\t_settings's get_keys()\n\t\tend get_keys\n\t\t\n\t\ton get_values() --> list\n\t\t\t_settings's get_values()\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key) --> boolean\n\t\t\t_settings's key_exists(this_key)\n\t\tend key_exists\n\t\t\n\t\t(* == Plist File Methods (delegate) == *)\n\t\t\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\t_plist's read_settings(plist_keys)\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\t_plist's write_settings()\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_plist's set_and_write_pref(this_key, this_value)\n\t\t\tsettings_changed()\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\t_plist's read_pref(pref_key)\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t_plist's write_pref(pref_key, pref_value)\n\t\tend write_pref\n\tend script\nend make_settings\n\non make_page_log_settings()\n\tscript\n\t\tproperty class : \"PageLogSettings\" -- model\n\t\tproperty parent : make_settings() -- extends Settings\n\t\t\n\t\t-- Define all preference keys here\n\t\tproperty _log_file_key : \"logFile\" -- required pref\n\t\tproperty _text_editor_key : \"textEditor\" -- required pref\n\t\tproperty _file_viewer_key : \"fileViewer\" -- required pref\n\t\t--\n\t\tproperty _warn_before_editing_key : \"warnBeforeEditing\" -- optional state\n\t\tproperty _last_category_key : \"lastCategory\" -- optional state\n\t\t\n\t\tproperty _optional_keys : {_last_category_key, _warn_before_editing_key} --> array\n\t\t\n\t\ton init()\n\t\t\tcontinue init()\n\t\t\t\n\t\t\t-- Initialize default values for required preferences\n\t\t\tmy _default_settings's set_item(_text_editor_key, \"TextEdit\")\n\t\t\tmy _default_settings's set_item(_file_viewer_key, \"Safari\")\n\t\t\tmy _default_settings's set_item(_log_file_key, \n\t\t\t\tPOSIX path of (path to application support folder from user domain) \n\t\t\t\t& __NAMESPACE__ & \"\/\" & __SCRIPT_NAME__ & \"\/urls.txt\")\n\t\tend init\n\t\t\n\t\t(* == Preferences Methods == *)\n\t\t\n\t\ton get_default_log_file() --> string\n\t\t\tmy _default_settings's get_item(_log_file_key)\n\t\tend get_default_log_file\n\t\t\n\t\ton get_default_file_viewer() --> string\n\t\t\tmy _default_settings's get_item(_file_viewer_key)\n\t\tend get_default_file_viewer\n\t\t\n\t\ton get_default_text_editor() --> string\n\t\t\tmy _default_settings's get_item(_text_editor_key)\n\t\tend get_default_text_editor\n\t\t\n\t\ton get_optional_keys() --> list\n\t\t\treturn _optional_keys\n\t\tend get_optional_keys\n\t\t\n\t\ton get_log_file_key() --> string\n\t\t\treturn _log_file_key\n\t\tend get_log_file_key\n\t\t\n\t\ton get_file_viewer_key() --> string\n\t\t\treturn _file_viewer_key\n\t\tend get_file_viewer_key\n\t\t\n\t\ton get_text_editor_key() --> string\n\t\t\treturn _text_editor_key\n\t\tend get_text_editor_key\n\t\t\n\t\ton get_warn_before_editing_key() --> string\n\t\t\treturn _warn_before_editing_key\n\t\tend get_warn_before_editing_key\n\t\t\n\t\ton get_log_file() --> string\n\t\t\tmy _settings's get_item(_log_file_key)\n\t\tend get_log_file\n\t\t\n\t\ton get_file_viewer() --> string\n\t\t\tmy _settings's get_item(_file_viewer_key)\n\t\tend get_file_viewer\n\t\t\n\t\ton get_text_editor() --> string\n\t\t\tmy _settings's get_item(_text_editor_key)\n\t\tend get_text_editor\n\t\t\n\t\ton warn_before_editing() --> boolean\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_warn_before_editing_key)\n\t\t\ton error err_msg number err_num -- set, write and return default\n\t\t\t\tcontinue set_pref(_warn_before_editing_key, true) -- call super\n\t\t\t\t--display alert \"Error (\" & err_num & \")\" message err_msg as warning\n\t\t\t\treturn true -- the default value\n\t\t\tend try\n\t\tend warn_before_editing\n\t\t\n\t\t(* == State Methods == *)\n\t\t\n\t\ton get_last_category_key() --> string\n\t\t\treturn _last_category_key\n\t\tend get_last_category_key\n\t\t\n\t\ton get_last_category() --> string\n\t\t\ttry\n\t\t\t\tmy _settings's get_item(_last_category_key)\n\t\t\ton error\n\t\t\t\treturn missing value\n\t\t\tend try\n\t\tend get_last_category\n\t\t\n\t\t(* == Associative List Methods (delegate) == *)\n\t\t\n\t\ton set_pref(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to both set the associative list item and save\n\t\t\t-- the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_pref(this_key, this_value)\n\t\tend set_pref\n\t\t\n\t\ton set_item(this_key, this_value) --> void\n\t\t\t--\n\t\t\t-- Use this method to only set the associative list item without\n\t\t\t-- saving the preference to disk\n\t\t\t--\n\t\t\tset this_value to _handle_log_file(this_key, this_value)\n\t\t\tcontinue set_item(this_key, this_value)\n\t\tend set_item\n\t\t\n\t\t(* == Utility Methods == *)\n\t\t\n\t\ton _handle_log_file(this_key, this_value) --> string -- PRIVATE\n\t\t\tif this_key is _log_file_key then\n\t\t\t\tset this_value to my shorten_home_path(this_value)\n\t\t\tend if\n\t\t\treturn this_value\n\t\tend _handle_log_file\n\tend script\nend make_page_log_settings\n\non make_plist(plist_path, settings_model)\n\t(*\n\t\tDependencies:\n\t\t\t* Settings (class)\n\t\t\t* split_path_into_dir_and_file() function (supplied by main script)\n\t\t\t* create_directory() function (supplied by main script)\n\t*)\n\tscript\n\t\tproperty class : \"Plist\"\n\t\tproperty _plist_path : plist_path\n\t\tproperty _model : settings_model --> Settings\n\t\t\n\t\t-- Get the values for each key in the given list\n\t\ton read_settings(plist_keys) --> void (modifies associative list)\n\t\t\tmy debug_log(1, \"[debug] read_settings()\")\n\t\t\ttry\n\t\t\t\trepeat with this_key in plist_keys\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\tset this_value to read_pref(this_key)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\t\tmy debug_log(1, \"[debug] read_settings(): done\")\n\t\tend read_settings\n\t\t\n\t\ton write_settings() --> void (writes to file)\n\t\t\ttry\n\t\t\t\trepeat with this_key in _model's get_keys()\n\t\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\t\twrite_pref(this_key, _model's get_item(this_key))\n\t\t\t\tend repeat\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_settings(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_settings\n\t\t\n\t\t(*on set_and_write_pref(this_key, this_value) --> void (modifies ass. list, saves file)\n\t\t\t_model's set_item(this_key, this_value) -- store value in object\n\t\t\twrite_pref(this_key, this_value) -- write value to file\n\t\tend set_and_write_pref*)\n\t\t\n\t\ton read_pref(pref_key) --> anything\n\t\t\tmy debug_log(1, \"[debug] read_pref()\")\n\t\t\tlocal pref_key\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\ttell property list file _plist_path\n\t\t\t\t\t\treturn value of property list item pref_key\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't read_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend read_pref\n\t\t\n\t\ton write_pref(pref_key, pref_value) --> void (writes to file)\n\t\t\t--\n\t\t\t-- :XXX: This function only sets string types now. If need\n\t\t\t-- to set other types, write a function to detect the type\n\t\t\t-- of the given value. (I've already got one somewhere.)\n\t\t\t-- UPDATE: It actually appears to be doing the right thing;\n\t\t\t-- not sure why. It appears that the value type is being\n\t\t\t-- detected and the \"kind\" automatically overridden. I only\n\t\t\t-- tested strings, integers and booleans though.\n\t\t\t--\n\t\t\tmy debug_log(1, \"[debug] write_pref(\" & pref_key & \", \" & pref_value & \")\")\n\t\t\tlocal pref_key, pref_value, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- Make a new plist file if one doesn't exist\n\t\t\t\t\tif not (exists disk item _plist_path) then\n\t\t\t\t\t\t-- Create any missing directories first\n\t\t\t\t\t\tset plist_dir to item 1 of my split_path_into_dir_and_file(_plist_path)\n\t\t\t\t\t\tmy create_directory(plist_dir)\n\t\t\t\t\t\t-- Create the plist\n\t\t\t\t\t\tset this_plistfile to my _new_plist()\n\t\t\t\t\telse\n\t\t\t\t\t\tset this_plistfile to property list file _plist_path\n\t\t\t\t\tend if\n\t\t\t\t\t-- Change key value if keys exists, otherwise add new key\/value\n\t\t\t\t\t-- (This doesn't seem to actually be necessary, but it seems more correct.)\n\t\t\t\t\ttell this_plistfile\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\tmy read_pref(pref_key)\n\t\t\t\t\t\t\tset value of property list item pref_key to pref_value\n\t\t\t\t\t\ton error\n\t\t\t\t\t\t\tmy debug_log(1, tab & \"[debug] write_pref(): writing new item\")\n\t\t\t\t\t\t\tmake new property list item at end of property list items with properties {kind:string, name:pref_key, value:pref_value}\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't write_pref(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend write_pref\n\t\t\n\t\ton _new_plist() -- returns a 'property list file' -- PRIVATE\n\t\t\tmy debug_log(1, \"[debug] _new_plist()\")\n\t\t\tlocal parent_dictionary, this_plistfile\n\t\t\ttry\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\t-- delete any existing property list from memory\n\t\t\t\t\tdelete every property list item\n\t\t\t\t\t-- create an empty property list dictionary item\n\t\t\t\t\tset parent_dictionary to make new property list item with properties {kind:record}\n\t\t\t\t\t-- create a new property list using the empty record\n\t\t\t\t\tset this_plistfile to make new property list file with properties {contents:parent_dictionary, name:_plist_path}\n\t\t\t\t\treturn this_plistfile\n\t\t\t\tend tell\n\t\t\ton error err_msg number err_num\n\t\t\t\terror \"Can't _new_plist(): \" & err_msg number err_num\n\t\t\tend try\n\t\tend _new_plist\n\tend script\nend make_plist\n\n(* ==== Controller ==== *)\n\n-- -- -- Common Controllers -- -- --\n\non make_navigation_controller()\n\tscript this\n\t\tproperty class : \"NavigationController\"\n\t\tproperty controller_stack : make_named_stack(\"ControllerStack\") --> Stack\n\t\tproperty controller_history : make_named_stack(\"ControllerHistory\") --> Stack\n\t\t\n\t\t(* == Private Methods == *)\n\t\t\n\t\ton _push_controller_with_history(controller_array) --> void -- PRIVATE\n\t\t\tset {current_controller, next_controller} to controller_array\n\t\t\tcontroller_history's push(current_controller) -- save this controller in history\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_with_history\n\t\t\n\t\ton _push_controller_without_history(controller_array) --> void -- PRIVATE\n\t\t\tset {next_controller} to controller_array\n\t\t\tcontroller_stack's push(next_controller) -- push next controller onto stack\n\t\tend _push_controller_without_history\n\t\t\n\t\t(* == Convenience Methods == *)\n\t\t\n\t\ton push_controller(controller_array) --> void\n\t\t\tif controller_array's class is not list then\n\t\t\t\terror my class & \".push_controller(): Invalid parameter.\" number -1704\n\t\t\tend if\n\t\t\t-- Simulate method overloading. Delegate to another\n\t\t\t-- method depending on number of items in list.\n\t\t\tif controller_array's length is 2 then\n\t\t\t\t_push_controller_with_history(controller_array)\n\t\t\telse if controller_array's length is 1 then\n\t\t\t\t_push_controller_without_history(controller_array)\n\t\t\telse\n\t\t\t\terror my class & \".push_controller(): More than two items in list.\" number -1704\n\t\t\tend if\n\t\tend push_controller\n\t\t\n\t\ton push_root_controller(next_controller) --> void\n\t\t\tcontroller_history's reset() -- clear the history stack\n\t\t\tcontroller_stack's reset() -- clear the controller stack\n\t\t\tcontroller_stack's push(next_controller) -- push root controller onto stack\n\t\tend push_root_controller\n\t\t\n\t\ton go_back() --> void\n\t\t\t-- Pop the top controller off the history stack and push it\n\t\t\t-- onto the pending controller stack.\n\t\t\tcontroller_stack's push(controller_history's pop())\n\t\tend go_back\n\t\t\n\t\t(* == Controller Stack Methods == *)\n\t\t\n\t\ton pop() --> controller object\n\t\t\tcontroller_stack's pop()\n\t\tend pop\n\t\t\n\t\ton peek() --> controller object\n\t\t\tcontroller_stack's peek()\n\t\tend peek\n\t\t\n\t\ton is_empty() --> boolean\n\t\t\tcontroller_stack's is_empty()\n\t\tend is_empty\n\t\t\n\t\ton to_string() --> string\n\t\t\tcontroller_stack's to_string()\n\t\tend to_string\n\t\t\n\t\t(* == History Stack Methods == *)\n\t\t\n\t\ton push_history(this_controller) --> void\n\t\t\tcontroller_history's push(this_controller)\n\t\tend push_history\n\t\t\n\t\ton pop_history() --> controller object\n\t\t\tcontroller_history's pop()\n\t\tend pop_history\n\t\t\n\t\ton peek_history() --> controller object\n\t\t\tcontroller_history's peek()\n\t\tend peek_history\n\t\t\n\t\ton history_is_empty() --> boolean\n\t\t\tcontroller_history's is_empty()\n\t\tend history_is_empty\n\t\t\n\t\ton history_to_string() --> string\n\t\t\tcontroller_history's to_string()\n\t\tend history_to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_navigation_controller\n\non make_base_controller()\n\tscript\n\t\tproperty class : \"BaseController\"\n\t\tproperty other_controllers : {} --> array\n\t\t\n\t\t-- subclasses must define a '_nav_controller' property\n\t\t\n\t\ton set_controllers(these_controllers) --> void\n\t\t\tset my other_controllers to these_controllers\n\t\tend set_controllers\n\t\t\n\t\ton go_back() --> void\n\t\t\tmy _nav_controller's go_back()\n\t\tend go_back\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\nend make_base_controller\n\n-- -- -- Main App Controllers -- -- --\n\non make_file_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileEditorController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's warn_before_editing() then\n\t\t\t\tif _view is missing value then set _view to make_file_edit_view(me, _model)\n\t\t\t\tset ret_val to _view's create_view() --> returns boolean\n\t\t\telse\n\t\t\t\tlaunch_app()\n\t\t\t\tset ret_val to false\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn ret_val --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_text_editor()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\t\t\n\t\ton disable_warning() --> void\n\t\t\tmy debug_log(1, my class & \".disable_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), false)\n\t\t\tlaunch_app()\n\t\tend disable_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_editor_controller\n\non make_file_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"FileViewerController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app : FileApp\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tlaunch_app()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn false --> false ends controller loop and exits script\n\t\tend run\n\t\t\n\t\ton launch_app() --> void\n\t\t\tmy debug_log(1, my class & \".launch_app()\")\n\t\t\tset this_app to _model's get_file_viewer()\n\t\t\tset this_file to _model's get_log_file()\n\t\t\t_app's open_file(this_app, this_file)\n\t\tend launch_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_file_viewer_controller\n\non make_help_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_help_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend change_settings\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_help_controller\n\non make_label_help_controller()\n\tscript this\n\t\tproperty class : \"LabelHelpController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_help_view()\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_help_controller\n\non make_title_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_title_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton show_help() --> void\n\t\t\t--\n\t\t\t-- We want to return to the current controller after the\n\t\t\t-- help controller is finished, so push this controller back\n\t\t\t-- onto the stack first, then the help controller.\n\t\t\t--\n\t\t\t_nav_controller's push_controller({me})\n\t\t\t_nav_controller's push_controller({my other_controllers's item 1})\n\t\tend show_help\n\t\t\n\t\ton set_page_title(this_value) --> void\n\t\t\t_model's set_page_title(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend set_page_title\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_title_controller\n\non make_url_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_url_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_url(this_value) --> void\n\t\t\t_model's set_page_url(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_page_url\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_url_controller\n\non make_label_base_controller()\n\tscript this\n\t\tproperty class : \"LabelBaseController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton push_controller(i) --> void\n\t\t\tmy _nav_controller's push_controller({me, my other_controllers's item i})\n\t\tend push_controller\n\t\t\n\t\ton push_controller_and_return(i) --> void\n\t\t\t-- Return to current controller after next controller is\n\t\t\t-- finished.\n\t\t\tmy _nav_controller's push_controller({me})\n\t\t\tmy _nav_controller's push_controller({my other_controllers's item i})\n\t\tend push_controller_and_return\n\tend script\nend make_label_base_controller\n\non make_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"LabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_root_categories()'s length < 2 \n\t\t\t\tand _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\t_nav_controller's push_controller({my other_controllers's item 3})\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_root(this_value) --> void\n\t\t\t_model's set_chosen_root_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_root\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_label() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_label\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(4)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(5)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(8)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_controller\n\non make_sub_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"SubLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_sub_categories()'s length < 2 then\n\t\t\t\t_model's set_chosen_category(_model's get_chosen_root_category())\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_sub_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows the root category dialog,\n\t\t\t\t-- so remove that last controller from the navigation\n\t\t\t\t-- history if it also has less than two items.\n\t\t\t\tif _model's get_root_categories()'s length < 2 then pop_history()\n\t\t\t\t\n\t\t\t\t-- Now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton choose_from_all() --> void\n\t\t\tpush_controller(2)\n\t\tend choose_from_all\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(3)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(4)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(7)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_sub_label_controller\n\non make_all_label_controller(navigation_controller, main_model, label_base_view)\n\tscript this\n\t\tproperty class : \"AllLabelController\"\n\t\tproperty parent : make_label_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\tproperty _label_base_view : label_base_view\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _model's get_all_categories()'s length < 2 then\n\t\t\t\t_skip_to_edit_label()\n\t\t\telse\n\t\t\t\tif _view is missing value then set _view to make_all_label_view(me, _label_base_view)\n\t\t\t\t_view's create_view()\n\t\t\tend if\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _skip_to_edit_label() --> void -- PRIVATE\n\t\t\ttell _nav_controller\n\t\t\t\t-- This dialog always follows at least one other list\n\t\t\t\t-- dialog, so remove the last controller from the\n\t\t\t\t-- navigation history.\n\t\t\t\tpop_history()\n\t\t\t\t\n\t\t\t\t-- If the previous list dialog was a subcategory list,\n\t\t\t\t-- then there is still a root category controller that\n\t\t\t\t-- needs to be removed from the history.\n\t\t\t\tif peek_history()'s class is \"LabelController\" then pop_history()\n\t\t\t\t\n\t\t\t\t-- Okay, now go to the next controller w\/o adding this\n\t\t\t\t-- controller to the history.\n\t\t\t\tpush_controller({my other_controllers's item 1})\n\t\t\tend tell\n\t\tend _skip_to_edit_label\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\tpush_controller(1)\n\t\tend set_chosen_category\n\t\t\n\t\ton edit_file() --> void\n\t\t\tpush_controller(2)\n\t\tend edit_file\n\t\t\n\t\ton view_file() --> void\n\t\t\tpush_controller(3)\n\t\tend view_file\n\t\t\n\t\ton change_settings() --> void\n\t\t\tpush_controller_and_return(4)\n\t\tend change_settings\n\t\t\n\t\ton show_help() --> void\n\t\t\tpush_controller_and_return(5)\n\t\tend show_help\n\t\t\n\t\ton show_category_help() --> void\n\t\t\tpush_controller_and_return(6)\n\t\tend show_category_help\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_all_label_controller\n\non make_label_edit_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_label_edit_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_chosen_category(this_value) --> void\n\t\t\t_model's set_page_label(this_value)\n\t\t\t_model's set_chosen_category(this_value)\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend set_chosen_category\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_label_edit_controller\n\non make_note_controller(navigation_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : main_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_note_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_page_note(this_value) --> void\n\t\t\tif this_value is not missing value then _model's set_page_note(this_value)\n\t\tend set_page_note\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_note_controller\n\n-- -- -- Settings Controllers -- -- --\n\non make_settings_controller(settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsController\"\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _is_first_run : missing value --> boolean\n\t\tproperty _has_run_this_session : false --> boolean\n\t\t\n\t\t-- Controllers instantiated during construction:\n\t\tproperty nav_controller : make_navigation_controller()\n\t\tproperty app_settings_controller : missing value\n\t\tproperty file_settings_controller : missing value\n\t\t-- Controllers instantiated on first run:\n\t\tproperty main_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\t\n\t\t\t-- Read required keys\n\t\t\ttry\n\t\t\t\t_model's read_settings(_model's get_default_keys())\n\t\t\t\tset _is_first_run to false\n\t\t\ton error err_msg number err_num\n\t\t\t\tset _is_first_run to true\n\t\t\tend try\n\t\t\t\n\t\t\t-- Read optional keys (such as saved state)\n\t\t\trepeat with this_key in _model's get_optional_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference\n\t\t\t\tmy debug_log(2, my class & \": trying to read \" & this_key & \" pref\")\n\t\t\t\ttry\n\t\t\t\t\tset this_value to _model's read_pref(this_key)\n\t\t\t\t\tmy debug_log(2, my class & \": \" & this_key & \" = \" & this_value)\n\t\t\t\t\t_model's set_item(this_key, this_value)\n\t\t\t\tend try\n\t\t\tend repeat\n\t\t\t\n\t\t\t-- Run the settings user interface only if requested by\n\t\t\t-- the user or if this is the first time running the script\n\t\t\tif _has_run_this_session or _is_first_run then\n\t\t\t\t_show_ui()\n\t\t\telse\n\t\t\t\tset _has_run_this_session to true\n\t\t\t\tmy debug_log(1, my class & \": skipping settings UI at startup\")\n\t\t\tend if\n\t\t\t\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton _show_ui() --> void\n\t\t\tif main_controller is missing value then\n\t\t\t\t-- Create main settings view controller\n\t\t\t\tset main_controller to make_settings_main_controller(nav_controller, _model)\n\t\t\t\t-- Inject any controller dependencies\n\t\t\t\tmain_controller's set_controllers({app_settings_controller, file_settings_controller})\n\t\t\tend if\n\t\t\t\n\t\t\tif _is_first_run then\n\t\t\t\tset root_controller to make_settings_first_controller(nav_controller, _model)\n\t\t\t\troot_controller's set_controllers({main_controller})\n\t\t\telse\n\t\t\t\tset root_controller to main_controller\n\t\t\tend if\n\t\t\t\n\t\t\t-- Load first controller\n\t\t\tnav_controller's push_root_controller(root_controller)\n\t\t\t\n\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\t\n\t\t\trepeat while not nav_controller's is_empty()\n\t\t\t\tset this_controller to nav_controller's pop() -- Pop controller off top of stack\n\t\t\t\trun this_controller -- Call its run() method\n\t\t\t\t\n\t\t\t\tmy debug_log(1, my class & \"'s History Stack: \" & nav_controller's history_to_string())\n\t\t\t\tmy debug_log(1, my class & \"'s Controller Stack: \" & nav_controller's to_string())\n\t\t\tend repeat\n\t\t\t\n\t\t\tif _is_first_run then -- clean-up after first run\n\t\t\t\tset _is_first_run to false\n\t\t\t\tset _has_run_this_session to true\n\t\t\tend if\n\t\tend _show_ui\n\t\t\n\t\ton _create_controllers() --> void -- PRIVATE\n\t\t\t-- Controllers for the preference editing dialogs:\n\t\t\tset app_settings_controller to make_settings_app_controller(nav_controller, _model)\n\t\t\tset file_settings_controller to make_settings_file_controller(nav_controller, _model, _app_model)\n\t\tend _create_controllers\n\t\t\n\t\ton to_string() --> string\n\t\t\treturn my class\n\t\tend to_string\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\tthis's _create_controllers()\n\treturn this\nend make_settings_controller\n\non make_settings_first_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFirstController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_first_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton use_defaults() --> void\n\t\t\t_set_missing_prefs()\n\t\tend use_defaults\n\t\t\n\t\ton change_settings() --> void\n\t\t\t_set_missing_prefs() -- the main view will need the defaults too\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend change_settings\n\t\t\n\t\ton _set_missing_prefs() --> void -- PRIVATE\n\t\t\trepeat with this_key in _model's get_default_keys()\n\t\t\t\tset this_key to this_key's contents -- dereference implicit loop reference\n\t\t\t\ttry\n\t\t\t\t\t_model's get_item(this_key)\n\t\t\t\ton error\n\t\t\t\t\tmy debug_log(1, my class & \".set_missing_prefs(): setting missing pref\")\n\t\t\t\t\t_model's set_pref(this_key, _model's get_default_item(this_key))\n\t\t\t\tend try\n\t\t\tend repeat\n\t\tend _set_missing_prefs\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_first_controller\n\non make_settings_main_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then set _view to make_settings_main_view(me, _model)\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_app() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 1})\n\t\tend choose_app\n\t\t\n\t\ton choose_file() --> void\n\t\t\t_nav_controller's push_controller({me, my other_controllers's item 2})\n\t\tend choose_file\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_main_controller\n\non make_settings_app_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _editor_controller : missing value\n\t\tproperty _viewer_controller : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_app_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton choose_editor() --> void\n\t\t\tif _editor_controller is missing value then -- lazy instantiation\n\t\t\t\tset _editor_controller to make_settings_editor_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _editor_controller})\n\t\tend choose_editor\n\t\t\n\t\ton choose_viewer() --> void\n\t\t\tif _viewer_controller is missing value then -- lazy instantiation\n\t\t\t\tset _viewer_controller to make_settings_viewer_controller(_nav_controller, _model)\n\t\t\tend if\n\t\t\t_nav_controller's push_controller({me, _viewer_controller})\n\t\tend choose_viewer\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_controller\n\non make_settings_app_base_controller()\n\tscript this\n\t\tproperty class : \"SettingsAppBaseController\" -- abstract\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\t\n\t\ton run\n\t\t\t-- subclasses must instantiate a view first here, then call super\n\t\t\tmy _view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_app(_val) --> void\n\t\t\tmy _model's set_pref(my _app_key, _val)\n\t\t\tgo_back()\n\t\tend set_app\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_app_base_controller\n\non make_settings_editor_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_text_editor_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_editor_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_editor_controller\n\non make_settings_viewer_controller(navigation_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerController\" -- concrete\n\t\tproperty parent : make_settings_app_base_controller() -- extends SettingsAppBaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _view : missing value\n\t\tproperty _app_key : _model's get_file_viewer_key()\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_viewer_view(me, _model)\n\t\t\tend if\n\t\t\tcontinue run -- call superclass\n\t\tend run\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_viewer_controller\n\non make_settings_file_controller(navigation_controller, settings_model, app_model)\n\tscript this\n\t\tproperty class : \"SettingsFileController\"\n\t\tproperty parent : make_base_controller() -- extends BaseController\n\t\tproperty _nav_controller : navigation_controller\n\t\tproperty _model : settings_model\n\t\tproperty _app_model : app_model\n\t\tproperty _view : missing value\n\t\t\n\t\ton run\n\t\t\tmy debug_log(1, return & \"---> running \" & my class & \"...\")\n\t\t\tif _view is missing value then\n\t\t\t\tset _view to make_settings_file_view(me, _model)\n\t\t\tend if\n\t\t\t_view's create_view()\n\t\t\tmy debug_log(1, \"---> finished \" & my class & return)\n\t\t\treturn true\n\t\tend run\n\t\t\n\t\ton set_log_file(_val) --> void\n\t\t\t_model's set_pref(_model's get_log_file_key(), _val)\n\t\t\t_app_model's parse_log()\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend set_log_file\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tmy debug_log(1, my class & \".reset_warning()\")\n\t\t\t_model's set_pref(_model's get_warn_before_editing_key(), true)\n\t\t\tdelay 1 -- script needs time to process before next dialog\n\t\t\tgo_back()\n\t\tend reset_warning\n\tend script\n\t\n\tmy debug_log(1, return & \"---> new \" & this's class & \"()\")\n\treturn this\nend make_settings_file_controller\n\n(* ==== View ==== *)\n\n-- -- -- Common Views -- -- --\n\non make_base_view()\n\tscript\n\t\tproperty class : \"BaseView\"\n\t\t\n\t\tproperty _app_description : \"This script will append the URL of the front web browser document to a text file along with the current date\/time, the title of the web page and a user-definable category. The script can also open the file for viewing or editing in the apps of your choice (although care should be taken when editing to not alter the format of the file).\"\n\t\t\n\t\t(* == Unicode Characters for Views == *)\n\t\t\n\t\tproperty u_dash : data utxt2500 as Unicode text -- BOX DRAWINGS LIGHT HORIZONTAL\n\t\t\n\t\tproperty u_back : data utxt276E as Unicode text -- HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT\n\t\t-- property u_back : data utxt25C0 as Unicode text -- BLACK LEFT-POINTING TRIANGLE\n\t\t--property u_back : data utxt2B05 as Unicode text -- LEFTWARDS BLACK ARROW\n\t\t\n\t\tproperty u_bullet : data utxt25CF as Unicode text -- BLACK CIRCLE\n\t\t--property u_bullet : \"\" -- standard bullet, but slightly smaller than Unicode black circle\n\t\t--property u_bullet : data utxt2043 as Unicode text -- HYPHEN BULLET\n\t\t--property u_bullet : data utxt25A0 as Unicode text -- BLACK SQUARE\n\t\t--property u_bullet : data utxt25B6 as Unicode text -- BLACK RIGHT-POINTING TRIANGLE\n\t\t--property u_bullet : data utxt27A1 as Unicode text -- BLACK RIGHTWARDS ARROW\n\t\t\n\t\t(* == View Components == *)\n\t\t\n\t\tproperty u_back_btn : \"\" & u_back & \" Back\" -- for buttons\n\t\t--property u_back_item : \" \" & u_back_btn -- for menu items\n\t\tproperty u_bullet_item : \" \" & u_bullet & \" \" -- for menu items\n\t\t\n\t\t-- Making buttons wider is the only way to widen text input\n\t\t-- fields in AppleScript dialogs. It looks a little stupid, but\n\t\t-- it makes the text input fields a little more functional.\n\t\t--\n\t\tproperty btn_pad : multiply_text(tab, 5)\n\t\tproperty back_btn_pad : u_back_btn & btn_pad\n\t\tproperty ok_btn_pad : \"OK\" & btn_pad\n\t\tproperty next_btn_pad : \"Next...\" & btn_pad\n\t\tproperty save_btn_pad : \"Save\" & btn_pad\n\t\tproperty help_btn_pad : \"Help\" & btn_pad\n\t\t--property cancel_btn_pad : \"Cancel\" & btn_pad -- this prevents cmd-. from working\n\t\t\n\t\t(* == Methods == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\terror my class & \".create_view(): abstract method not overridden\" number -1717\n\t\tend create_view\n\t\t\n\t\ton handle_cancel_as_back(err_msg, err_num) --> void\n\t\t\tif err_num is -128 then -- treat Cancel as \"Back\" button\n\t\t\t\tmy create_view()\n\t\t\telse\n\t\t\t\terror err_msg number err_num\n\t\t\tend if\n\t\tend handle_cancel_as_back\n\tend script\nend make_base_view\n\n-- -- -- Main App Views -- -- --\n\non make_help_view(view_controller, settings_model)\n\tscript this\n\t\tproperty class : \"HelpView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Help\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Preferences...\", \"Cancel\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then _controller's change_settings()\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File: \" & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer: \" & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor: \" & _text_editor & return & return \n\t\t\t\t& \"You can change those settings by clicking \\\"Preferences\\\".\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_help_view\n\non make_label_help_view()\n\tscript\n\t\tproperty class : \"LabelHelpView\"\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" Category Help\"\n\t\tproperty _buttons : {\"Cancel\", \"OK\"}\n\t\tproperty _prompt : \"Assign a category and\/or subcategories to the logged URL by using a colon (:) to separate subcategories. Subcategories delimited in such a way represent a nested hierarchy. For example, a category (also called a label in the URLs file) of \\\"Development:AppleScript:Mail\\\" could be thought of as a nested list as in:\" & return & return \n\t\t\t& tab & \" Development\" & return \n\t\t\t& tab & tab & \" AppleScript\" & return \n\t\t\t& tab & tab & tab & \" Mail\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 1 default button 2\n\t\t\tend timeout\n\t\tend create_view\n\tend script\nend make_label_help_view\n\non make_file_edit_view(view_controller, settings_model)\n\tscript\n\t\tproperty class : \"FileEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : \"Warning: \" & __SCRIPT_NAME__ & \" > Edit Log File\"\n\t\tproperty _buttons : {\"Don't Show This Warning Again\", my u_back_btn, \"Edit File\"}\n\t\tproperty _prompt : \"If manually editing the log file, take care not to alter the format of the file which could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Specifically, don't alter the record separators, the file header (except for the sample categories\/labels, which can be modified), the field names in the records, or the field delimiters in the records.\"\n\t\t\n\t\ton create_view() --> void\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons default button 3 as warning\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event) --> returns boolean\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's disable_warning()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn true --> continue controller loop\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's launch_app()\n\t\t\tend if\n\t\t\treturn false --> stop controller loop\n\t\tend action_performed\n\tend script\nend make_file_edit_view\n\non make_title_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"TitleView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Title\"\n\t\tproperty _buttons : {my help_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_title with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A web page title is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_title(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"To log the URL for:\" & return & return \n\t\t\t\t& tab & \"\\\"\" & _page_title & \"\\\"\" & return & return & \n\t\t\t\t\"first accept or edit the title.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_title_view\n\non make_url_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"URLView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > URL\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _page_url with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A URL is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_url(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return & \"Accept or edit the URL.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_url_view\n\non make_label_base_view(main_model)\n\tscript this\n\t\tproperty class : \"LabelBaseView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_label : missing value --> string\n\t\tproperty _chosen_root : missing value --> string\n\t\tproperty _chosen_category : missing value --> string\n\t\tproperty _root_categories : missing value --> array\n\t\tproperty _sub_categories : missing value --> array\n\t\tproperty _all_categories : missing value --> array\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _ok_btn : \"Next...\"\n\t\tproperty _bullet : my u_bullet_item\n\t\t\n\t\t(*\n\t\t\tSubclasses must define properties for:\n\t\t\t\t_menu_items\n\t\t\t\t_default_item\n\t\t\t\t_title\n\t\t\t\t_prompt\n\t\t\t\t_ok_btn\n\t\t*)\n\t\t\n\t\ton create_view() --> void\n\t\t\tset action_event to choose from list my _menu_items with title _title with prompt my _prompt cancel button name my u_back_btn OK button name _ok_btn default items my _default_item\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed() --> void\n\t\t\terror my class & \".action_performed(): abstract method not overridden\" number -1717\n\t\tend action_performed\n\t\t\n\t\ton show_invalid() --> void\n\t\t\tdisplay alert \"Invalid selection\" message \"Please select a category or an action.\" as warning\n\t\tend show_invalid\n\t\t\n\t\ton get_base_menu_items(menu_rule) --> array\n\t\t\tlocal menu_rule\n\t\t\treturn {\n\t\t\t\t_bullet & \"Edit Log File\", \n\t\t\t\t_bullet & \"View Log File\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Preferences...\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Help\", \n\t\t\t\t_bullet & \"Category Help\", \n\t\t\t\tmenu_rule, \n\t\t\t\t_bullet & \"Quit \" & __SCRIPT_NAME__, \n\t\t\t\tmenu_rule}\n\t\tend get_base_menu_items\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_root to _model's get_chosen_root_category()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\t\tset _root_categories to _model's get_root_categories()\n\t\t\tset _sub_categories to _model's get_sub_categories()\n\t\t\tset _all_categories to _model's get_all_categories()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_base_view\n\non make_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"LabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 18)\n\t\tproperty _prompt : \"Please select a top-level category for the URL you want to log. Next you will be able to select subcategories.\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_root\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's edit_label()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 10 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 12 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to subcategory view\n\t\t\t\t_controller's set_chosen_root(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_bullet & \"New Category...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _root_categories\n\t\tend set_menu\n\tend script\nend make_label_view\n\non make_sub_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"SubLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's choose_from_all()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 8 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 11 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to {\n\t\t\t\t_bullet & \"Show All Categories...\", \n\t\t\t\t_menu_rule} & my get_base_menu_items(_menu_rule) & my _sub_categories\n\t\tend set_menu\n\tend script\nend make_sub_label_view\n\non make_all_label_view(view_controller, label_base_view)\n\tscript\n\t\tproperty class : \"AllLabelView\"\n\t\t--property parent : make_label_base_view() -- extends LabelBaseView\n\t\tproperty parent : label_base_view -- extends LabelBaseView (instance)\n\t\tproperty _controller : view_controller\n\t\t\n\t\tproperty _bullet : my u_bullet_item\n\t\tproperty _menu_rule : multiply_text(my u_dash, 35)\n\t\tproperty _prompt : \"Please select a category or subcategory for the URL you want to log. You will have a chance to edit your choice (to add a new category or subcategory).\"\n\t\t\n\t\tproperty _default_item : missing value\n\t\tproperty _menu_items : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\tset _default_item to my _chosen_category\n\t\t\tset_menu()\n\t\t\tcontinue create_view()\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_rule then\n\t\t\t\tshow_invalid()\n\t\t\t\tcreate_view() -- try again\n\t\t\telse if action_event is _menu_items's item 1 then\n\t\t\t\t_controller's edit_file()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\t_controller's view_file()\n\t\t\telse if action_event is _menu_items's item 4 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _menu_items's item 6 then\n\t\t\t\t_controller's show_help()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\t_controller's show_category_help()\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse -- go to category edit view\n\t\t\t\t_controller's set_chosen_category(action_event)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton set_menu() --> void\n\t\t\tset _menu_items to my get_base_menu_items(_menu_rule) & my _all_categories\n\t\tend set_menu\n\tend script\nend make_all_label_view\n\non make_label_edit_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"LabelEditView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value --> string\n\t\tproperty _page_url : missing value --> string\n\t\tproperty _page_label : missing value --> string\n\t\t\n\t\tproperty _chosen_category : missing value --> string\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Category\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my next_btn_pad}\n\t\tproperty _prompt : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\trepeat\n\t\t\t\tdisplay dialog _prompt default answer _chosen_category with title _title buttons _buttons default button 3\n\t\t\t\tcopy result as list to {text_value, action_event}\n\t\t\t\tset text_value to _chop_trailing_colons(text_value)\n\t\t\t\tif text_value is not \"\" or action_event is _buttons's item 1 then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Empty Text Field\" message \"A category is required.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _chosen_category to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_chosen_category(_chosen_category)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _chop_trailing_colons(text_value) --> string -- PRIVATE\n\t\t\ttry\n\t\t\t\trepeat until text_value does not end with \":\"\n\t\t\t\t\tset text_value to characters 1 thru -2 of text_value as string\n\t\t\t\tend repeat\n\t\t\ton error -- the only remaining character is a colon\n\t\t\t\treturn \"\" -- let the empty field test catch it\n\t\t\tend try\n\t\t\treturn text_value\n\t\tend _chop_trailing_colons\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\t\tset _chosen_category to _model's get_chosen_category()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"Please provide a category and any optional subcategories (or edit your selected category) for the URL. Use a colon to separate subcategories. Example: \\\"Development:AppleScript:Mail\\\"\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_label_edit_view\n\non make_note_view(view_controller, main_model)\n\tscript this\n\t\tproperty class : \"NoteView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : view_controller\n\t\tproperty _model : main_model\n\t\t\n\t\tproperty _page_title : missing value\n\t\tproperty _page_url : missing value\n\t\tproperty _page_label : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Note\"\n\t\tproperty _buttons : {my back_btn_pad, \"Cancel\", my save_btn_pad}\n\t\tproperty _prompt : missing value\n\t\tproperty _text_field : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt default answer \"\" with title _title buttons _buttons default button 3\n\t\t\tcopy result as list to {text_value, action_event}\n\t\t\tif text_value is not \"\" then set _text_field to text_value\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's set_page_note(_text_field)\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _page_title to _model's get_page_title()\n\t\t\tset _page_url to _model's get_page_url()\n\t\t\tset _page_label to _model's get_page_label()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"TITLE:\" & return & tab & _page_title & return & return \n\t\t\t\t& \"URL:\" & return & tab & _page_url & return & return \n\t\t\t\t& \"CATEGORY:\" & return & tab & _page_label & return & return \n\t\t\t\t& \"Optionally add a short note. Just leave the field blank if you don't want to add a note.\"\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_note_view\n\n-- -- -- Settings Views -- -- --\n\non make_settings_first_view(settings_controller, settings_model)\n\tscript\n\t\tproperty class : \"SettingsFirstView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ --& \" (First Run)\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Change Settings...\", \"Cancel\", \"Use Defaults\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\twith timeout of (10 * 60) seconds\n\t\t\t\t--display dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\t\tdisplay alert _title message _prompt buttons _buttons cancel button 2 default button 3\n\t\t\t\tset action_event to result's button returned\n\t\t\t\taction_performed(action_event)\n\t\t\tend timeout\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's change_settings()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's use_defaults()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to my _app_description & \" The defaults are:\" & return & return \n\t\t\t\t& \"\tURLs File:\t\t\" & _model's get_default_log_file() & return & return \n\t\t\t\t& \"\tFile Viewer:\t\" & _model's get_default_file_viewer() & return & return \n\t\t\t\t& \"\tText Editor:\t\" & _model's get_default_text_editor() & return & return \n\t\t\t\t& \"You can continue using those defaults or change the settings now. You can also change the settings later by selecting the \\\"Preferences\\\" item from any list dialog. (You would have to manually move your old URLs file though if you wanted to keep appending to it.)\"\n\t\tend _set_prompt\n\tend script\nend make_settings_first_view\n\non make_settings_main_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsMainView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _file_viewer : missing value\n\t\tproperty _text_editor : missing value\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {\"Choose a File Editor\/Viewer...\", \"Choose a URLs File...\", \"OK\"}\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's choose_app()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_file()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _log_file to _model's get_log_file()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose a different URLs file, file viewer or text editor. The current settings are:\" & return & return \n\t\t\t\t& tab & \"URLs File:\" & tab & _log_file & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_main_view\n\non make_settings_app_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsAppView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose Application\"\n\t\tproperty _prompt : missing value\n\t\tproperty _buttons : {my u_back_btn, \"Choose a Text Editor...\", \"Choose a File Viewer...\"}\n\t\t\n\t\tproperty _text_editor : missing value\n\t\tproperty _file_viewer : missing value\n\t\t\n\t\ton create_view() --> void\n\t\t\t_set_prompt()\n\t\t\tdisplay dialog _prompt with title _title buttons _buttons with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _buttons's item 1 then\n\t\t\t\t_controller's go_back()\n\t\t\telse if action_event is _buttons's item 2 then\n\t\t\t\t_controller's choose_editor()\n\t\t\telse if action_event is _buttons's item 3 then\n\t\t\t\t_controller's choose_viewer()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _text_editor to _model's get_text_editor()\n\t\t\tset _file_viewer to _model's get_file_viewer()\n\t\tend update\n\t\t\n\t\ton _set_prompt() --> void -- PRIVATE\n\t\t\tset _prompt to \"Choose an application for editing or viewing the URLs file. The current settings are:\" & return & return \n\t\t\t\t& tab & \"File Viewer:\" & tab & _file_viewer & return & return \n\t\t\t\t& tab & \"Text Editor:\" & tab & _text_editor & return & return\n\t\tend _set_prompt\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_app_view\n\non make_settings_editor_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsEditorView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Editor\"\n\t\tproperty _prompt : \"Choose a text editor application for editing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default Editor...\", \"Choose Another Editor...\"}\n\t\tproperty _app_type : \"text editor\"\n\t\tproperty _app_usage : \"editing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_text_editor()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_editor_view\n\non make_settings_viewer_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsViewerView\" -- concrete app view\n\t\tproperty parent : make_settings_app_base_view() -- extends SettingsAppBaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose App > Viewer\"\n\t\tproperty _prompt : \"Choose an application for viewing the URLs file.\" & return & return\n\t\tproperty _buttons : {my u_back_btn, \"Use Default App...\", \"Choose Another App...\"}\n\t\tproperty _app_type : \"file viewer\"\n\t\tproperty _app_usage : \"viewing\"\n\t\t\n\t\tproperty _default_app : missing value\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\tset _default_app to _model's get_default_file_viewer()\n\t\tend update\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_viewer_view\n\non make_settings_app_base_view()\n\tscript\n\t\tproperty class : \"SettingsAppBaseView\" -- abstract app view\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tdisplay dialog my _prompt with title my _title buttons my _buttons default button 3 with icon note\n\t\t\tset action_event to result's button returned\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tlocal t, m\n\t\t\tset t to my _title & \" > Default\"\n\t\t\tset m to \"The default \" & my _app_type & \" is:\" & tab & my _default_app & return & return & \"Use this app?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tmy _controller's set_app(my _default_app)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_another() --> void\n\t\t\tlocal _app, t, m\n\t\t\tset t to my _title & \" > Choose Application\"\n\t\t\tset m to \"Select an application to use for \" & my _app_usage & \" the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _app to name of (choose application with title t with prompt m)\n\t\t\t\tmy _controller's set_app(_app)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_another\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then error number -128 -- User canceled\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is my _buttons's item 1 then\n\t\t\t\tmy _controller's go_back()\n\t\t\telse if action_event is my _buttons's item 2 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is my _buttons's item 3 then\n\t\t\t\tchoose_another()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\terror my class & \".update(): abstract method not overridden\" number -1717\n\t\tend update\n\tend script\nend make_settings_app_base_view\n\non make_settings_file_view(settings_controller, settings_model)\n\tscript this\n\t\tproperty class : \"SettingsFileView\"\n\t\tproperty parent : make_base_view() -- extends BaseView\n\t\tproperty _controller : settings_controller\n\t\tproperty _model : settings_model\n\t\t\n\t\tproperty _title : __SCRIPT_NAME__ & \" > Preferences > Choose File\"\n\t\tproperty _prompt : \"Choose a file in which to save URLs:\"\n\t\tproperty _menu_rule : multiply_text(my u_dash, 19)\n\t\tproperty _menu_items_base : {\n\t\t\t\"Use Default File...\", \n\t\t\t\"Choose Existing File...\", \n\t\t\t\"Create New File...\", \n\t\t\t_menu_rule, \n\t\t\t\"Type in File Path...\t\t(Advanced)\", \n\t\t\t_menu_rule, \n\t\t\t\"Quit \" & __SCRIPT_NAME__}\n\t\tproperty _menu_items : missing value\n\t\t\n\t\tproperty _log_file : missing value\n\t\tproperty _warn_before_editing : missing value\n\t\t\n\t\t(* == Main View == *)\n\t\t\n\t\ton create_view() --> void\n\t\t\tupdate_menu()\n\t\t\trepeat -- until a horizontal rule is not selected\n\t\t\t\tset action_event to choose from list _menu_items with title _title with prompt _prompt cancel button name my u_back_btn\n\t\t\t\tif action_event as string is not _menu_rule then\n\t\t\t\t\texit repeat\n\t\t\t\telse\n\t\t\t\t\tdisplay alert \"Invalid selection\" message \"Please select an action.\" as warning\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\taction_performed(action_event)\n\t\tend create_view\n\t\t\n\t\t(* == Subviews == *)\n\t\t\n\t\ton choose_default() --> void\n\t\t\tset t to _title & \" > Default\"\n\t\t\tset m to \"The default URLs file is:\" & return & return & tab & _model's get_default_log_file() & return & return & \"Use this file?\" & return & return\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Use Default\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\tend if\n\t\tend choose_default\n\t\t\n\t\ton choose_existing() --> void\n\t\t\tset m to \"Choose an existing URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file with prompt m default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_existing\n\t\t\n\t\ton choose_new() --> void\n\t\t\tset m to \"Choose a file name and location for the URLs file. (Click \\\"Cancel\\\" to return to the previous dialog.)\"\n\t\t\tset file_name to item 2 of split_path_into_dir_and_file(_model's get_default_log_file())\n\t\t\ttry\n\t\t\t\tset _log_file to POSIX path of (choose file name with prompt m default name file_name default location path to desktop folder from user domain)\n\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\ton error err_msg number err_num\n\t\t\t\tmy handle_cancel_as_back(err_msg, err_num)\n\t\t\tend try\n\t\tend choose_new\n\t\t\n\t\ton enter_path() --> void\n\t\t\tset t to _title & \" > Enter Path\"\n\t\t\tset m to \"Enter a full file path to use for saving the URLs.\" & return & return & \"A '~' (tilde) can be used to indicate your home directory. Example:\" & return & return & tab & \"~\/Desktop\/urls.txt\"\n\t\t\tset b to {my back_btn_pad, \"Cancel\", my ok_btn_pad}\n\t\t\tdisplay dialog m with title t default answer _log_file buttons b default button 3\n\t\t\tcopy result as list to {text_value, btn_pressed}\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\tif text_value is \"\" then\n\t\t\t\t\tdisplay alert \"Empty Field\" message \"Please enter a file path in the text field.\" as warning\n\t\t\t\t\tenter_path() -- recursion\n\t\t\t\telse\n\t\t\t\t\tset _log_file to text_value\n\t\t\t\t\t_controller's set_log_file(_log_file)\n\t\t\t\tend if\n\t\t\tend if\n\t\tend enter_path\n\t\t\n\t\ton reset_warning() --> void\n\t\t\tset t to __SCRIPT_NAME__ & \" > Preferences > Reset Edit File Warning\"\n\t\t\tset m to \"Care should be taken when manually editing the log file because altering the format of the data could result in file corruption and\/or the script no longer being able to use the file.\" & return & return & \"Resetting the warning here will cause a warning to be shown each time the file edit action is invoked.\"\n\t\t\tset b to {my u_back_btn, \"Cancel\", \"Reset Warning\"}\n\t\t\tdisplay dialog m with title t buttons b default button 3 with icon note\n\t\t\tset btn_pressed to button returned of result\n\t\t\tif btn_pressed is b's item 1 then\n\t\t\t\tcreate_view() -- back to main view\n\t\t\telse if btn_pressed is b's item 3 then\n\t\t\t\t_controller's reset_warning()\n\t\t\tend if\n\t\tend reset_warning\n\t\t\n\t\t(* == Actions == *)\n\t\t\n\t\ton action_performed(action_event) --> void -- from main view\n\t\t\tif action_event is false then --error number -128 -- User canceled\n\t\t\t\t_controller's go_back()\n\t\t\t\treturn\n\t\t\tend if\n\t\t\t\n\t\t\tset action_event to action_event as string\n\t\t\tif action_event is _menu_items's item 1 then\n\t\t\t\tchoose_default()\n\t\t\telse if action_event is _menu_items's item 2 then\n\t\t\t\tchoose_existing()\n\t\t\telse if action_event is _menu_items's item 3 then\n\t\t\t\tchoose_new()\n\t\t\telse if action_event is _menu_items's item 5 then\n\t\t\t\tenter_path()\n\t\t\telse if action_event is _menu_items's item 7 then\n\t\t\t\terror number -128 -- User canceled\n\t\t\telse if action_event is _menu_items's item 9 then\n\t\t\t\treset_warning()\n\t\t\tend if\n\t\tend action_performed\n\t\t\n\t\ton update() --> void (Observer Pattern)\n\t\t\ttry\n\t\t\t\tset _log_file to _model's get_log_file()\n\t\t\ton error\n\t\t\t\tset _log_file to _model's get_default_log_file()\n\t\t\tend try\n\t\t\tset _warn_before_editing to _model's warn_before_editing()\n\t\tend update\n\t\t\n\t\ton update_menu() --> void\n\t\t\tif _warn_before_editing then\n\t\t\t\tset _menu_items to _menu_items_base\n\t\t\telse\n\t\t\t\tset _menu_items to _menu_items_base \n\t\t\t\t\t& {_menu_rule, \"Reset File Edit Warning...\"}\n\t\t\tend if\n\t\tend update_menu\n\tend script\n\t\n\tthis's update()\n\tthis's _model's register_observer(this)\n\treturn this\nend make_settings_file_view\n\n(* ==== Helper Classes ==== *)\n\non make_observable()\n\tscript\n\t\tproperty class : \"Observable\"\n\t\tproperty _observers : {}\n\t\tproperty _changed : false\n\t\t\n\t\ton set_changed()\n\t\t\tset _changed to true\n\t\tend set_changed\n\t\t\n\t\ton register_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] register_observer(\" & o's class & \")\")\n\t\t\tset end of my _observers to o\n\t\tend register_observer\n\t\t\n\t\t(* Uncomment if needed. Most of the time, it won't be needed for scripts.\n\t\ton remove_observer(o) -- void\n\t\t\tmy debug_log(1, \" [debug] remove_observer(\" & o's class & \")\")\n\t\t\tset remaining_observers to {}\n\t\t\trepeat with this_observer in _observers\n\t\t\t\tset this_observer to this_observer's contents -- dereference\n\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): comparing \" & this_observer's class)\n\t\t\t\tif this_observer is not o then\n\t\t\t\t\tset end of remaining_observers to this_observer\n\t\t\t\telse\n\t\t\t\t\tmy debug_log(1, \" [debug] remove_observer(): removing \" & this_observer's class)\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tset _observers to remaining_observers\n\t\tend remove_observer\n\t\t*)\n\t\t\n\t\ton notify_observers() -- void -- (no argument = pull method; best practice)\n\t\t\tmy debug_log(1, \" [debug] notify_observers()\")\n\t\t\tif _changed then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".notify_observers(): calling update()\")\n\t\t\t\trepeat with i from 1 to count of _observers\n\t\t\t\t\tset this_observer to _observers's item i\n\t\t\t\t\tthis_observer's update()\n\t\t\t\tend repeat\n\t\t\t\tset _changed to false\n\t\t\tend if\n\t\t\treturn\n\t\tend notify_observers\n\t\t\n\t\t-- Display the class names of the observers (for testing\/debugging)\n\t\ton identify_observers() --> void\n\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers() [\" & _observers's length & \"]...\")\n\t\t\tif _observers's length = 0 then\n\t\t\t\tmy debug_log(1, \" [debug] \" & my class & \".identify_observers(): no observers\")\n\t\t\t\treturn \"\"\n\t\t\telse if _observers's length = 1 then\n\t\t\t\treturn _observers's item 1's class\n\t\t\tend if\n\t\t\tset observers_items to \"\"\n\t\t\trepeat with i from 1 to _observers's length\n\t\t\t\tset this_item to _observers's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset observers_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset observers_items to observers_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\tmy debug_log(2, \" [debug] \" & observers_items)\n\t\tend identify_observers\n\tend script\nend make_observable\n\non make_stack()\n\tscript\n\t\tproperty class : \"Stack\" -- Data Type -- LIFO (last in, first out)\n\t\tproperty _stack : {}\n\t\t\n\t\t-- Push an item onto the top of the stack\n\t\ton push(this_data) --> void\n\t\t\tset _stack's beginning to this_data\n\t\t\treturn\n\t\tend push\n\t\t\n\t\t-- Return the top item of the stack, removing it in the process\n\t\ton pop() --> anything\n\t\t\tif is_empty() then error my class & \": Can't pop(): stack is empty.\" number -1730\n\t\t\tset top_item to _stack's item 1\n\t\t\tset _stack to rest of _stack\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\t-- Return the top item of the stack without removing it\n\t\ton peek() --> anything\n\t\t\tif is_empty() then error my class & \": Can't peek(): stack is empty.\" number -1730\n\t\t\treturn _stack's item 1\n\t\tend peek\n\t\t\n\t\t-- Test if stack is empty\n\t\ton is_empty() --> boolean\n\t\t\treturn _stack's length is 0\n\t\tend is_empty\n\t\t\n\t\t-- Clear the stack\n\t\ton reset() --> void\n\t\t\tset _stack to {}\n\t\tend reset\n\t\t\n\t\t-- Display the names of the classes in the stack (mostly for testing\/debugging)\n\t\ton to_string() --> string\n\t\t\tif _stack's length = 0 then\n\t\t\t\treturn \"\"\n\t\t\telse if _stack's length = 1 then\n\t\t\t\treturn _stack's item 1's class\n\t\t\tend if\n\t\t\tset stack_items to \"\"\n\t\t\trepeat with i from 1 to _stack's length\n\t\t\t\tset this_item to _stack's item i\n\t\t\t\tif i = 1 then\n\t\t\t\t\tset stack_items to this_item's class\n\t\t\t\telse\n\t\t\t\t\tset stack_items to stack_items & \", \" & this_item's class\n\t\t\t\tend if\n\t\t\tend repeat\n\t\t\treturn stack_items\n\t\tend to_string\n\tend script\nend make_stack\n\non make_named_stack(_name)\n\tscript this\n\t\tproperty class : \"Stack (Named)\" -- Data Type\n\t\tproperty parent : make_stack() -- extends Stack\n\t\tproperty _name : missing value\n\t\t\n\t\ton push(this_data) --> void\n\t\t\tcontinue push(this_data)\n\t\t\tmy debug_log(1, \"[debug] pushing \" & this_data's to_string() & \" onto \" & _name)\n\t\t\treturn\n\t\tend push\n\t\t\n\t\ton pop() --> anything\n\t\t\tset top_item to continue pop()\n\t\t\tmy debug_log(1, \"[debug] popping \" & top_item's to_string() & \" off \" & _name)\n\t\t\treturn top_item\n\t\tend pop\n\t\t\n\t\ton set_name(_name) --> void\n\t\t\tset its _name to _name\n\t\tend set_name\n\t\t\n\t\ton identify() --> string\n\t\t\tif _name is not missing value then return _name\n\t\tend identify\n\tend script\n\t\n\tset this's _name to _name\n\treturn this\nend make_named_stack\n\non make_associative_list()\n\t(*\n\tModified and expanded version of associative list class from:\n\t_Learn AppleScript: The Comprehensive Guide to Scripting and Automation on Mac OS X,\n\tThird Edition_ (2010, Apress) by Hamish Sanderson and Hanaan Rosenthal\n\tChapter 19, page 561\n\t*)\n\tscript\n\t\tproperty class : \"AssociativeList\" -- Data Type\n\t\tproperty these_items : {} -- list of two-item key\/value records -- see set_item()\n\t\t\n\t\ton _find_record_for_key(this_key) -- PRIVATE\n\t\t\t(* This is a private handler. Users should not use it directly. *)\n\t\t\tconsidering diacriticals, hyphens, punctuation and white space but ignoring case\n\t\t\t\trepeat with record_ref in my these_items\n\t\t\t\t\tif |key| of record_ref = this_key then return record_ref -- original\n\t\t\t\tend repeat\n\t\t\tend considering\n\t\t\treturn missing value -- The key wasn't found\n\t\tend _find_record_for_key\n\t\t\n\t\ton set_item(this_key, this_value)\n\t\t\t(*\n\t\t\t\tSet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to use\n\t\t\t\tthis_value : anything -- the new value\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\tset end of my these_items to {|key|:this_key, value:this_value} -- original\n\t\t\telse\n\t\t\t\tset value of record_ref to this_value\n\t\t\tend if\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend set_item\n\t\t\n\t\ton get_item(this_key)\n\t\t\t(*\n\t\t\t\tGet the value for the given key in an associative list.\n\n\t\t\t\tthis_key : anything -- the key to search for\n\t\t\t\tResult : anything -- the value, if found\n\n\t\t\t\tNote: Raises error -1728 if the key isn't found.\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref = missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\treturn value of record_ref\n\t\tend get_item\n\t\t\n\t\ton count_items()\n\t\t\t(*\n\t\t\t\tReturn the number of items in an associative list.\n\n\t\t\t\tResult : integer\n\t\t\t*)\n\t\t\treturn count my these_items\n\t\tend count_items\n\t\t\n\t\ton delete_item(this_key)\n\t\t\t(*\n\t\t\t\tDelete the value for the given key.\n\n\t\t\t\tthis_key : anything -- the key to delete\n\t\t\t*)\n\t\t\tset record_ref to _find_record_for_key(this_key)\n\t\t\tif record_ref is missing value then\n\t\t\t\terror \"The key wasn't found.\" number -1728 from this_key\n\t\t\tend if\n\t\t\tset contents of record_ref to missing value\n\t\t\tset my these_items to every record of my these_items\n\t\t\treturn -- No return value; the handler modifies the existing associative list.\n\t\tend delete_item\n\t\t\n\t\t(* == Additional methods == *)\n\t\t\n\t\ton get_keys()\n\t\t\tset these_keys to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_keys to record_ref's |key|\n\t\t\tend repeat\n\t\t\treturn these_keys\n\t\tend get_keys\n\t\t\n\t\ton get_values()\n\t\t\tset these_values to {}\n\t\t\trepeat with record_ref in my these_items\n\t\t\t\tset end of these_values to record_ref's value\n\t\t\tend repeat\n\t\t\treturn these_values\n\t\tend get_values\n\t\t\n\t\ton key_exists(this_key)\n\t\t\tif _find_record_for_key(this_key) = missing value then\n\t\t\t\treturn false\n\t\t\telse\n\t\t\t\treturn true\n\t\t\tend if\n\t\tend key_exists\n\tend script\nend make_associative_list\n\non make_null_io()\n\tscript\n\t\tproperty class : \"NullIO\" -- Utility\n\t\tproperty parent : make_io()\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".write_file(): would write to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend write_file\n\t\t\n\t\ton append_file(file_path, this_data)\n\t\t\tmy debug_log(1, \"[debug] \" & my class & \".append_file(): would append to file\")\n\t\t\tmy debug_log(1, linefeed & this_data)\n\t\tend append_file\n\tend script\nend make_null_io\n\non make_io()\n\tscript\n\t\tproperty class : \"IO\" -- Utility\n\t\t\n\t\t(* == PUBLIC == *)\n\t\t\n\t\ton write_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, false) -- overwrite existing file\n\t\tend write_file\n\n\t\ton append_file(file_path, this_data)\n\t\t\t_write_file(file_path, this_data, string, true) -- append new data to end of existing file\n\t\tend append_file\n\n\t\ton read_file(file_path)\n\t\t\t_read_file(file_path, string)\n\t\tend read_file\n\t\t\n\t\t(* == PRIVATE == *)\n\t\t\n\t\ton _write_file(file_path, this_data, data_class, should_append_data)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tset file_handle to \n\t\t\t\t\topen for access file file_path with write permission\n\t\t\t\tif not should_append_data then \n\t\t\t\t\tset eof of the file_handle to 0\n\t\t\t\twrite this_data as data_class to file_handle starting at eof\n\t\t\t\tclose access file_handle\n\t\t\t\treturn true\n\t\t\ton error err_msg number err_num\n\t\t\t\ttry\n\t\t\t\t\tclose access file file_path\n\t\t\t\tend try\n\t\t\t\terror err_msg number err_num\n\t\t\t\treturn false\n\t\t\tend try\n\t\tend _write_file\n\t\t\n\t\ton _read_file(file_path, data_class)\n\t\t\ttry\n\t\t\t\tset file_path to file_path as text\n\t\t\t\tif (get eof file file_path) is 0 then\n\t\t\t\t\tset file_contents to \"\"\n\t\t\t\telse\n\t\t\t\t\tset file_contents to read file file_path as data_class\n\t\t\t\tend if\n\t\t\t\treturn file_contents\n\t\t\ton error\n\t\t\t\treturn 0\n\t\t\tend try\n\t\tend _read_file\n\tend script\nend make_io\n\n(* ==== Utility Functions (Global) ==== *)\n\non gui_scripting_status()\n\t-- check to see if assistive devices is enabled\n\ttell application \"System Events\"\n\t\tset ui_enabled to UI elements enabled\n\tend tell\n\tif ui_enabled is false then\n\t\ttell application \"System Preferences\"\n\t\t\tactivate\n\t\t\tset current pane to pane id \"com.apple.preference.universalaccess\"\n\t\t\tdisplay dialog \"This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS X which is currently disabled.\" & return & return & \"You can activate GUI Scripting by selecting the checkbox \\\"Enable access for assistive devices\\\" in the Accessibility preference pane.\" with icon 1 buttons {\"Cancel\"} default button 1\n\t\tend tell\n\tend if\nend gui_scripting_status\n\non get_front_app_name()\n\ttell application \"System Events\"\n\t\tif __DEBUG_LEVEL__ is 0 then\n\t\t\tset current_app to name of first process where it is frontmost\n\t\telse\n\t\t\t-- We're most likely running in AppleScript Editor so hide\n\t\t\t-- the front app, get the name of the next app, then return\n\t\t\t-- the original app to the front.\n\t\t\t-- Source: http:\/\/macscripter.net\/viewtopic.php?id=35442\n\t\t\tset frontmost_process to first process where it is frontmost\n\t\t\tset visible of frontmost_process to false\n\t\t\trepeat while (frontmost_process is frontmost)\n\t\t\t\tdelay 0.2\n\t\t\tend repeat\n\t\t\tset current_app to name of first process where it is frontmost\n\t\t\tset frontmost of frontmost_process to true\n\t\tend if\n\tend tell\n\treturn current_app\nend get_front_app_name\n\non convert_to_ascii(non_ascii_txt)\n\t(*\n\t\tTransliterate Unicode characters to ASCII, ignoring any that can't be\n\t\trepresented. Also compress white space since ignoring characters can\n\t\tleave mulitple adjacent spaces.\n\t\n\t\tFrom 'man iconv_open':\n\t\t\n\t\t\tWhen the string \"\/\/TRANSLIT\" is appended to _tocode_,\n\t\t\ttransliteration is activated. This means that when a character\n\t\t\tcannot be represented in the target character set, it can be\n\t\t\tapproximated through one or several characters that look similar to\n\t\t\tthe original character.\n\n\t\t\tWhen the string \"\/\/IGNORE\" is appended to _tocode_, characters that\n\t\t\tcannot be represented in the target character set will be silently\n\t\t\tdiscarded.\n\t*)\n\tset s to \"iconv -f UTF-8 -t US-ASCII\/\/TRANSLIT\/\/IGNORE <<<\" & quoted form of non_ascii_txt & \" | sed 's\/ *\/ \/g'\"\n\tdo shell script s\nend convert_to_ascii\n\non create_directory(posix_dir)\n\tset this_dir to expand_home_path(posix_dir)\n\ttry\n\t\tset s to \"mkdir -pm700 \" & quoted form of this_dir\n\t\tdo shell script s\n\ton error err_msg number err_num\n\t\terror \"Can't create directory: \" & err_msg number err_num\n\t\treturn \"Fatal Error: Can't create directory\"\n\tend try\nend create_directory\n\non split_path_into_dir_and_file(file_path)\n\tset path_parts to split_text(file_path, \"\/\")\n\tset dir_path to join_list(items 1 thru -2 of path_parts, \"\/\")\n\tset file_name to path_parts's last item\n\treturn {dir_path, file_name}\nend split_path_into_dir_and_file\n\non get_mac_path(posix_path)\n\t-- Expand '~\/' or '$HOME\/' at the beginning of a posix file path.\n\tset posix_file to expand_home_path(posix_path)\n\treturn POSIX file posix_file\nend get_mac_path\n\n-- Could alternatively use 'do shell script \"echo\" & space & file_path'\n-- but it might be slower because of the overhead of starting up a shell.\non expand_home_path(posix_path) --> string\n\tlocal posix_path, posix_home, char_length\n\tif posix_path starts with \"~\/\" then\n\t\tset char_length to 3\n\telse if posix_path starts with \"$HOME\/\" then\n\t\tset char_length to 7\n\telse\n\t\treturn posix_path\n\tend if\n\tset posix_home to get_posix_home()\n\tset posix_path to posix_home & characters char_length thru -1 of posix_path as text\n\treturn posix_path\nend expand_home_path\n\non shorten_home_path(posix_path)\n\tlocal posix_path, posix_home\n\tset posix_home to get_posix_home()\n\tif posix_path starts with posix_home then\n\t\tset posix_path to \"~\" & characters (posix_home's length) thru -1 of posix_path as string\n\tend if\n\treturn posix_path\nend shorten_home_path\n\non get_posix_home()\n\treturn POSIX path of (path to home folder from user domain)\nend get_posix_home\n\non multiply_text(str, n)\n\tif n < 1 or str = \"\" then return \"\"\n\tset lst to {}\n\trepeat n times\n\t\tset end of lst to str\n\tend repeat\n\treturn lst as string\nend multiply_text\n\non split_text(txt, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset lst to every text item of (txt as string)\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn lst\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't split_text(): \" & err_msg number err_num\n\tend try\nend split_text\n\non join_list(lst, delim)\n\tset old_tids to AppleScript's text item delimiters\n\ttry\n\t\tset AppleScript's text item delimiters to (delim as string)\n\t\tset txt to lst as string\n\t\tset AppleScript's text item delimiters to old_tids\n\t\treturn txt\n\ton error err_msg number err_num\n\t\tset AppleScript's text item delimiters to old_tids\n\t\terror \"Can't join_list(): \" & err_msg number err_num\n\tend try\nend join_list\n\non debug_log(_level, _msg)\n\tif __DEBUG_LEVEL__ is greater than or equal to _level then log _msg\nend debug_log\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a57f52d221ea10c6b2aa640411e5ff19e3cc5f83","subject":"Revert","message":"Revert\n","repos":"sumipan\/photoshop-jsx.rb","old_file":"bin\/PhotoshopJsx.scpt","new_file":"bin\/PhotoshopJsx.scpt","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"b29fe15e51123bebd52768cce7bbc8acfad982f8","subject":"fixed more typos in comments","message":"fixed more typos in comments\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_file":"Scripts\/fmClip - Smart Paste Functions.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"6e05c22edf3f0769241d9149971fe668579a3b67","subject":"Simple check for warnings","message":"Simple check for warnings\n\nVery naive check to see if message is a warning instead of error.\n\nNeed to revisit to see if this can be done more reliably.\n","repos":"ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,ascarter\/Go.bbpackage,ascarter\/Go-bbpackage,ascarter\/Go-bbpackage,grmartin\/Go-bbpackage,ascarter\/Go-bbpackage","old_file":"src\/Resources\/package.applescript","new_file":"src\/Resources\/package.applescript","new_contents":"-- Go AppleScript library\n\nproperty package : \"Go\"\nproperty packageRoot : missing value\n\n-- Get working directory for a given document\non getWorkingDirectory(doc)\n\ttell application \"Finder\"\n\t\treturn POSIX path of ((container of ((file of doc) as alias) as string))\n\tend tell\nend getWorkingDirectory\n\n-- Find Go.bbpackage root\n-- Assumption: this is *always* run from within the package!\non getPackageRoot()\n\ttell application \"Finder\"\n\t\tset cwd to ((container of (path to me)) as alias)\n\t\trepeat until name of cwd is \"Go.bbpackage\"\n\t\t\tset cwd to (container of cwd as alias)\n\t\tend repeat\n\tend tell\n\treturn POSIX path of (cwd as string)\nend getPackageRoot\n\non exec(doc, cmd)\n\ttell application \"BBEdit\"\n\t\tif source language of doc is not \"Go\" then\n\t\t\terror \"Not a Go source file\"\n\t\tend if\n\tend tell\n\t\n\tif packageRoot is missing value then\n\t\tset packageRoot to getPackageRoot()\n\tend if\n\t\n\tset runner to quoted form of (POSIX path of (packageRoot as string) & \"Contents\/Resources\/gorunner\")\n\tset shellCmd to runner & space & \"-d \" & POSIX path of ((file of doc) as alias) & space & cmd\n\treturn do shell script (shellCmd)\nend exec\n\non execCommands(doc, commands)\n\tset output to {}\n\trepeat with cmd in commands\n\t\tset entry to exec(doc, cmd)\n\t\tif length of entry > 0 then\n\t\t\tcopy entry to the end of output\n\t\tend if\n\tend repeat\n\treturn output\nend execCommands\n\non packagePath(doc)\n\treturn quoted form of exec(doc, \"go list\")\nend packagePath\n\n-- Parse message into result browser entry\n--\n-- Format:\n-- [\/path\/to\/file]:[line]:(col): [message]\non makeEntry(itemData, cwd)\n\ttry\n\t\t-- Get source path\n\t\tset src to text 1 thru ((offset of \":\" in itemData) - 1) of itemData\n\t\tif src starts with \".\/\" then\n\t\t\tset srcFile to POSIX file (cwd & text 3 thru -1 of src)\n\t\telse\n\t\t\tset srcFile to POSIX file (src)\n\t\tend if\n\t\t\n\t\t-- Get line:column\n\t\tset lineColumn to text ((offset of \":\" in itemData) + 1) thru ((offset of \": \" in itemData) - 1) of itemData\n\t\tset lineNumber to (text 1 thru ((offset of \":\" in lineColumn) - 1) of lineColumn) as number\n\t\tset columnNumber to (text ((offset of \":\" in lineColumn) + 1) thru -1 of lineColumn) as number\n\t\t\n\t\t-- Get message\n\t\tset msg to text ((offset of \": \" in itemData) + 2) thru -1 of itemData\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tset resultKind to error_kind\n\t\t\t\n\t\t\t-- TODO: Improve filter for warnings vs errors\n\t\t\tif \"should\" is in msg then\n\t\t\t\tset resultKind to warning_kind\n\t\t\tend if\n\t\t\t\n\t\t\t--\tif resultType is \"note\" then\n\t\t\t--\t\tset resultKind to note_kind\n\t\t\t--\telse if resultType is \"warning\" then\n\t\t\t--\t\tset resultKind to warning_kind\n\t\t\t--\telse\n\t\t\t--\t\tset resultKind to error_kind\n\t\t\t--\tend if\n\t\t\t\n\t\t\tset entry to {result_kind:resultKind, result_file:srcFile, result_line:lineNumber, message:msg}\n\t\tend tell\n\t\treturn entry\n\ton error msg\n\t\tlog \"Error: \" & msg\n\t\treturn missing value\n\tend try\nend makeEntry\n\n-- Filter and sort incoming messages\non prepareMessages(messages)\n\tset prevDelimiter to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to {ASCII character 10}\n\tset filteredString to do shell script (\"echo \" & quoted form of (messages as string) & \" | sort -f | uniq\")\n\tset AppleScript's text item delimiters to prevDelimiter\n\treturn paragraphs of filteredString\nend prepareMessages\n\non showResults(title, doc, messages)\n\ttell application \"Finder\"\n\t\tset cwd to POSIX path of ((container of (doc as alias) as string))\n\tend tell\n\t\n\tset errorList to {}\n\tset messageList to prepareMessages(messages)\n\t\n\trepeat with msg in messageList\n\t\tif msg does not start with \"#\" then\n\t\t\tset entry to makeEntry(msg, cwd)\n\t\t\tif entry is not missing value then\n\t\t\t\tcopy entry to the end of errorList\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\tif (count of errorList) > 0 then\n\t\ttry\n\t\t\ttell application \"BBEdit\"\n\t\t\t\tmake new results browser with data errorList with properties {name:title}\n\t\t\tend tell\n\t\ton error msg\n\t\t\tlog \"Error: \" & msg\n\t\tend try\n\tend if\nend showResults\n\non handleDocumentDidSave(doc)\n\ttry\n\t\tset docPath to POSIX path of ((file of doc) as string)\n\t\tset pkgPath to packagePath(doc)\n\t\tset goCommands to {\"goimports -w \" & quoted form of docPath, \"golint \" & quoted form of docPath, \"go build\", \"go test\"}\n\t\tset output to execCommands(doc, goCommands)\n\t\tif output is not missing value then\n\t\t\tshowResults(\"Save \" & (name of doc), POSIX file (docPath), output)\n\t\tend if\n\ton error msg\n\t\tlog \"Error handleDocumentDidSave: \" & msg\n\tend try\nend handleDocumentDidSave\n\n(*\non run\n\ttell application \"BBEdit\" to set doc to active document of window 1\n\thandleDocumentDidSave(doc)\nend run\n*)\n","old_contents":"-- Go AppleScript library\n\nproperty package : \"Go\"\nproperty packageRoot : missing value\n\n-- Get working directory for a given document\non getWorkingDirectory(doc)\n\ttell application \"Finder\"\n\t\treturn POSIX path of ((container of ((file of doc) as alias) as string))\n\tend tell\nend getWorkingDirectory\n\n-- Find Go.bbpackage root\n-- Assumption: this is *always* run from within the package!\non getPackageRoot()\n\ttell application \"Finder\"\n\t\tset cwd to ((container of (path to me)) as alias)\n\t\trepeat until name of cwd is \"Go.bbpackage\"\n\t\t\tset cwd to (container of cwd as alias)\n\t\tend repeat\n\tend tell\n\treturn POSIX path of (cwd as string)\nend getPackageRoot\n\non exec(doc, cmd)\n\ttell application \"BBEdit\"\n\t\tif source language of doc is not \"Go\" then\n\t\t\terror \"Not a Go source file\"\n\t\tend if\n\tend tell\n\t\n\tif packageRoot is missing value then\n\t\tset packageRoot to getPackageRoot()\n\tend if\n\t\n\tset runner to quoted form of (POSIX path of (packageRoot as string) & \"Contents\/Resources\/gorunner\")\n\tset shellCmd to runner & space & \"-d \" & POSIX path of ((file of doc) as alias) & space & cmd\n\treturn do shell script (shellCmd)\nend exec\n\non execCommands(doc, commands)\n\tset output to {}\n\trepeat with cmd in commands\n\t\tset entry to exec(doc, cmd)\n\t\tif length of entry > 0 then\n\t\t\tcopy entry to the end of output\n\t\tend if\n\tend repeat\n\treturn output\nend execCommands\n\non packagePath(doc)\n\treturn quoted form of exec(doc, \"go list\")\nend packagePath\n\n-- Parse message into result browser entry\n--\n-- Format:\n-- [\/path\/to\/file]:[line]:(col): [message]\non makeEntry(itemData, cwd)\n\ttry\n\t\t-- Get source path\n\t\tset src to text 1 thru ((offset of \":\" in itemData) - 1) of itemData\n\t\tif src starts with \".\/\" then\n\t\t\tset srcFile to POSIX file (cwd & text 3 thru -1 of src)\n\t\telse\n\t\t\tset srcFile to POSIX file (src)\n\t\tend if\n\t\t\n\t\t-- Get line:column\n\t\tset lineColumn to text ((offset of \":\" in itemData) + 1) thru ((offset of \": \" in itemData) - 1) of itemData\n\t\tset lineNumber to (text 1 thru ((offset of \":\" in lineColumn) - 1) of lineColumn) as number\n\t\tset columnNumber to (text ((offset of \":\" in lineColumn) + 1) thru -1 of lineColumn) as number\n\t\t\n\t\t-- Get message\n\t\tset msg to text ((offset of \": \" in itemData) + 2) thru -1 of itemData\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tset resultKind to error_kind\n\t\t\t--\tif resultType is \"note\" then\n\t\t\t--\t\tset resultKind to note_kind\n\t\t\t--\telse if resultType is \"warning\" then\n\t\t\t--\t\tset resultKind to warning_kind\n\t\t\t--\telse\n\t\t\t--\t\tset resultKind to error_kind\n\t\t\t--\tend if\n\t\t\t\n\t\t\tset entry to {result_kind:resultKind, result_file:srcFile, result_line:lineNumber, message:msg}\n\t\tend tell\n\t\treturn entry\n\ton error msg\n\t\tlog \"Error: \" & msg\n\t\treturn missing value\n\tend try\nend makeEntry\n\n-- Filter and sort incoming messages\non prepareMessages(messages)\n\tset prevDelimiter to AppleScript's text item delimiters\n\tset AppleScript's text item delimiters to {ASCII character 10}\n\tset filteredString to do shell script (\"echo \" & quoted form of (messages as string) & \" | sort -f | uniq\")\n\tset AppleScript's text item delimiters to prevDelimiter\n\treturn paragraphs of filteredString\nend prepareMessages\n\non showResults(title, doc, messages)\n\ttell application \"Finder\"\n\t\tset cwd to POSIX path of ((container of (doc as alias) as string))\n\tend tell\n\t\n\tset errorList to {}\n\tset messageList to prepareMessages(messages)\n\t\n\trepeat with msg in messageList\n\t\tif msg does not start with \"#\" then\n\t\t\tset entry to makeEntry(msg, cwd)\n\t\t\tif entry is not missing value then\n\t\t\t\tcopy entry to the end of errorList\n\t\t\tend if\n\t\tend if\n\tend repeat\n\t\n\tif (count of errorList) > 0 then\n\t\ttry\n\t\t\ttell application \"BBEdit\"\n\t\t\t\tmake new results browser with data errorList with properties {name:title}\n\t\t\tend tell\n\t\ton error msg\n\t\t\tlog \"Error: \" & msg\n\t\tend try\n\tend if\nend showResults\n\non handleDocumentDidSave(doc)\n\ttry\n\t\tset docPath to POSIX path of ((file of doc) as string)\n\t\tset pkgPath to packagePath(doc)\n\t\tset goCommands to {\"goimports -w \" & quoted form of docPath, \"golint \" & quoted form of docPath, \"go build\", \"go test\"}\n\t\tset output to execCommands(doc, goCommands)\n\t\tif output is not missing value then\n\t\t\tshowResults(\"Save \" & (name of doc), POSIX file (docPath), output)\n\t\tend if\n\ton error msg\n\t\tlog \"Error handleDocumentDidSave: \" & msg\n\tend try\nend handleDocumentDidSave\n\n(*\non run\n\ttell application \"BBEdit\" to set doc to active document of window 1\n\thandleDocumentDidSave(doc)\nend run\n*)\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"42a2515b311e87f17c2f58f478386f880dd2cfee","subject":"Added shellshock test","message":"Added shellshock test\n\nCleaned up dns cache flushing for Yosemite, made OS version checking clearer, and added function to run some shellshock tests.","repos":"nilness\/mhqtools","old_file":"main.scpt","new_file":"main.scpt","new_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion buttons {\"OK\"}\n\n--display dialog SWUpdateServer buttons {\"OK\"}\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Test for ShellShock vulnerability\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse if theChoice as string is \"Test for ShellShock vulnerability\" then\n\t\ttestForShellShockVulnerability()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name buttons {\"OK\"}\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\" buttons {\"OK\"}\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\ttry\n\t\tif (osVersion as number > 7) then\n\t\t\tdo shell script theSetScript with administrator privileges\n\t\telse\n\t\t\tdo shell script theSetScript\n\t\tend if\n\tend try\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion as number > 7) then\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\telse\n\t\t\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9) dscacheutil -flushcache; sudo killall -HUP mDNSResponder ;;\n 10) dscacheutil -flushcache; sudo discoveryutil mdnsflushcache ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion as number > 7) then\n\t\tdo shell script theSetScript with administrator privileges\n\telse\n\t\tdo shell script theSetScript\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder buttons {\"OK\"}\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n\non testForShellShockVulnerability()\n\t\n\tset test_1 to \"\n#!\/bin\/bash\n\nEXPLOIT_1=`env x='() { :;}; echo vulnerable' bash -c \\\"echo this is a test\\\"`\nif [ \\\"${EXPLOIT_1}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 1 (CVE-2014-6271):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 1 (CVE-2014-6271):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_2 to \"\n#!\/bin\/bash\n\nEXPLOIT_2=`env X='() { (shellshocker.net)=>\\\\' bash -c \\\"echo date\\\"; cat echo; rm .\/echo `\nif [ \\\"${EXPLOIT_2}\\\" != \\\"date\\\" ]; then\n echo \\\"Test 2 (CVE-2014-7169):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 2 (CVE-2014-7169):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\"\n\tset test_3 to \"\n#!\/bin\/bash\n\nEXPLOIT_3=`env X=' () { }; echo hello' bash -c 'date'`\nif [ \\\"${EXPLOIT_3}\\\" = \\\"hello\\\" ]; then\n echo \\\"Test 3 (CVE-??):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 3 (CVE-??):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_4 to \"\n#!\/bin\/bash\n\nEXPLOIT_4=`bash -c 'true <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF <<EOF' || echo \\\"CVE-2014-7186 vulnerable, redir_stack\\\"`\nif [ \\\"${EXPLOIT_4}\\\" = \\\"CVE-2014-7186 vulnerable, redir_stack\\\" ]; then\n echo \\\"Test 4 (CVE-2014-7186):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 4 (CVE-2014-7186):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\tset test_5 to \"\n#!\/bin\/bash\n\nEXPLOIT_5=`(for x in {1..200} ; do echo \\\"for x$x in ; do :\\\"; done; for x in {1..200} ; do echo done ; done) | bash || echo \\\"CVE-2014-7187 vulnerable, word_lineno\\\"`\nif [ \\\"${EXPLOIT_5}\\\" = \\\"CVE-2014-7187 vulnerable, word_lineno\\\" ]; then\n echo \\\"Test 5 (CVE-2014-7187):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 5 (CVE-2014-7187):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_6 to \"\n#!\/bin\/bash\n\nEXPLOIT_6=`shellshocker='() { echo You are vulnerable; }' bash -c shellshocker`\nif [ \\\"${EXPLOIT_6}\\\" = \\\"You are vulnerable\\\" ]; then\n echo \\\"Test 6 (CVE-2014-6278):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 6 (CVE-2014-6278):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\tset test_7 to \"\n#!\/bin\/bash\n\nEXPLOIT_7=`bash -c \\\"f() { x() { _;}; x() { _;} <<a; }\\\" 2>\/dev\/null || echo vulnerable`\nif [ \\\"${EXPLOIT_7}\\\" = \\\"vulnerable\\\" ]; then\n echo \\\"Test 7 (CVE-2014-6277):\t**** Machine appears to be vulnerable ****\\\"\nelse\n echo \\\"Test 7 (CVE-2014-6277):\tMachine doesn't appear to be vulnerable\\\"\nfi\n\n\"\n\t\n\t\n\tset result_1 to do shell script test_1\n\tset result_2 to do shell script test_2\n\tset result_3 to do shell script test_3\n\tset result_4 to do shell script test_4\n\tset result_5 to do shell script test_5\n\tset result_6 to do shell script test_6\n\tset result_7 to do shell script test_7\n\t\n\ttry\n\t\tdisplay dialog result_1 & return & result_2 & return & result_3 & return & result_4 & return & result_6 & return & result_6 & return & result_7 & return buttons {\"OK\"}\n\tend try\nend testForShellShockVulnerability\n","old_contents":"-- This is the master machq script to replace all others!\n-- First find out the version of OS X\n\nglobal osVersion\nglobal externalIP\nglobal SWUpdateServer\nglobal store\n\nset osVersion to do shell script \"\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'\"\n\ntry\n\tset externalIP to do shell script \"\/usr\/bin\/curl http:\/\/icanhazip.com\/\"\n\t\n\tset test1 to do shell script \"\/usr\/bin\/dig +short 001.machq.com\"\n\tset test2 to do shell script \"\/usr\/bin\/dig +short 002.machq.com\"\n\tset test3 to do shell script \"\/usr\/bin\/dig +short 003.machq.com\"\n\t\n\t\n\t\n\tif externalIP is test1 then\n\t\tset store to \"001\"\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if externalIP is test2 then\n\t\tset store to \"002\"\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if externalIP is test3 then\n\t\tset store to \"003\"\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\non error\n\t--can't determine which store automatically\n\tset theStoreList to {\"St. Louis\", \"O'Fallon\", \"Cedar Rapids\"}\n\tset theStore to choose from list theStoreList with title \"Help!\" with prompt \"Where are we?\"\n\t\n\tif theStore as string is \"St. Louis\" then\n\t\tset SWUpdateServer to \"mhq-swupdate.local:8088\"\n\telse if theStore as string is \"O'Fallon\" then\n\t\tset SWUpdateServer to \"xserve.local:8088\"\n\telse if theStore as string is \"Cedar Rapids\" then\n\t\tset SWUpdateServer to \"servercdr.local:8088\"\n\tend if\n\t\nend try\n\n--display dialog osVersion\n\n--display dialog SWUpdateServer\n\n\nset theButtonNames to {\"Set Used Prefs (all *'ed items)\", \"Set SWUpdateServer*\", \"List SWUpdateServer\", \"Remove SWUpdateServer\", \"Set MacHQ homepage*\", \"Disable Sleep*\", \"Rename HD by Size*\", \"Install MHQ Reset Script\", \"Remove MHQ User & Reset CPU\", \"Remove Current User & Reset CPU\", \"Install Tech User Reset Script\", \"Test for Flashback Trojan\", \"Rebuild Launch Services DB\", \"Flush DNS Cache\", \"Reinstall default Fake preferences\", \"Update Fake Workflows from Server\", \"Install SWUpdate StartupItem\", \"Save System Profiler Report to server\"}\n\nrepeat\n\tset theChoice to choose from list theButtonNames\n\tif theChoice is false then\n\t\texit repeat\n\telse if theChoice as string is \"Set SWUpdateServer*\" then\n\t\tsetSWUpdateServer()\n\telse if theChoice as string is \"List SWUpdateServer\" then\n\t\tlistSWUpdateServer()\n\telse if theChoice as string is \"Remove SWUpdateServer\" then\n\t\tresetSWUpdateServer()\n\telse if theChoice as string is \"Set MacHQ homepage*\" then\n\t\tsetHomePage()\n\telse if theChoice as string is \"Set Used Prefs (all *'ed items)\" then\n\t\tsetUsedPrefs()\n\telse if theChoice as string is \"Disable Sleep*\" then\n\t\tdisableSleep()\n\telse if theChoice as string is \"Rename HD by Size*\" then\n\t\trenameHDbySize()\n\telse if theChoice as string is \"Install MHQ Reset Script\" then\n\t\tinstallResetScript()\n\telse if theChoice as string is \"Remove MHQ User & Reset CPU\" then\n\t\tif resetUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Remove Current User & Reset CPU\" then\n\t\tif resetThisUserCPU() = -128 then\n\t\t\treturn\n\t\tend if\n\telse if theChoice as string is \"Install Tech User Reset Script\" then\n\t\tinstallTechResetScript()\n\telse if theChoice as string is \"Test for Flashback Trojan\" then\n\t\ttestForFlashbackTrojan()\n\telse if theChoice as string is \"Rebuild Launch Services DB\" then\n\t\trebuildLaunchServicesDB()\n\telse if theChoice as string is \"Reinstall default Fake preferences\" then\n\t\treinstallDefaultFakePreferences()\n\telse if theChoice as string is \"Reinstall Fake Workflows\" then\n\t\treinstallFakeWorkflows()\n\telse if theChoice as string is \"Install SWUpdate StartupItem\" then\n\t\tInstallSWUpdatePlist()\n\telse if theChoice as string is \"Flush DNS Cache\" then\n\t\tFlushDNSCache()\n\telse if theChoice as string is \"Save System Profiler Report to server\" then\n\t\tSystemProfilerReport()\n\telse if theChoice as string is \"Update Fake Workflows from Server\" then\n\t\tUpdateWorkflowsFromServer()\n\telse\n\t\ttell me to quit\n\tend if\n\t\nend repeat\n\non setUsedPrefs()\n\tdisableSleep()\n\tsetSWUpdateServer()\n\tsetHomePage()\n\trenameHDbySize()\nend setUsedPrefs\n\non setHomePage()\n\tset fileTarget to (path to library folder from user domain as text) & \"Preferences:com.apple.Safari.plist\"\n\t\n\ttry\n\t\t-- we don't really need the alias; we're just checking to see if it exists\n\t\tfileTarget as alias\n\ton error\n\t\ttell application \"Safari\"\n\t\t\tactivate\n\t\tend tell\n\tend try\n\tif running of application \"Safari\" then\n\t\ttell application \"Safari\"\n\t\t\tquit\n\t\tend tell\n\t\trepeat while (running of application \"Safari\")\n\t\t\tdelay 1\n\t\tend repeat\n\t\tdelay 2\n\tend if\n\tdo shell script \"defaults write com.apple.Safari HomePage http:\/\/twitter.com\/machq; defaults write com.apple.Safari NewWindowBehavior 0\"\n\tdelay 2\n\ttell application \"Safari\"\n\t\tactivate\n\t\tdelay 2\n\t\tclose every window\n\t\tquit\n\tend tell\nend setHomePage\n\non listSWUpdateServer()\n\ttry\n\t\tset server_name to do shell script \"defaults read \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\tdisplay dialog \"SW update server is: \" & server_name\n\ton error\n\t\tdisplay dialog \"Using default Apple SW Update Server\"\n\tend try\nend listSWUpdateServer\n\non resetSWUpdateServer()\n\ttry\n\t\t--if running in 10.7 or later we need to supply password\n\t\t\n\t\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\t\tdo shell script \"\/usr\/bin\/defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\t\telse\n\t\t\tdo shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\" with administrator privileges\n\t\tend if\n\t\t\n\t\t--do shell script \"defaults delete \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL\"\n\tend try\nend resetSWUpdateServer\n\non disableSleep()\n\ttry\n\t\tdo shell script \"pmset -c displaysleep 0 sleep 0 disksleep 0\" with administrator privileges\n\tend try\nend disableSleep\n\non renameHDbySize()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nboot_vol=`bless --getBoot`\n\nboot_disk=`diskutil info ${boot_vol} |sed '\/^ *Volume Name: *\/!d;s###'`\n\ndisk_size=`system_profiler SPSerialATADataType |sed '\/^ *Capacity: *\/!d;s###' | awk '{print int($1+0.5) $2\\\" HD\\\"}' | head -n 1 `\n\ndiskutil rename \\\"${boot_disk}\\\" \\\"${disk_size}\\\"\n\n# Show icons for hard drives, servers, and removable media on the desktop\n#defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true\ndefaults write com.apple.finder ShowHardDrivesOnDesktop -bool true\n#defaults write com.apple.finder ShowMountedServersOnDesktop -bool true\n#defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true\n\nkillall Finder\n\t\n\"\n\tdo shell script theSetScript\n\t\nend renameHDbySize\n\non setSWUpdateServer()\n\t\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\nURL1='http:\/\/\" & SWUpdateServer & \"'\n case `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) URL=\\\"${URL1}\/index.sucatalog\\\" ;; \n 5) URL=\\\"${URL1}\/index-leopard.merged-1.sucatalog\\\" ;; \n 6) URL=\\\"${URL1}\/index-leopard-snowleopard.merged-1.sucatalog\\\" ;; \n\t7) URL=\\\"${URL1}\/index-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t8) URL=\\\"${URL1}\/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t9) URL=\\\"${URL1}\/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n\t10) URL=\\\"${URL1}\/index-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog\\\" ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\n esac\n\n\/usr\/bin\/defaults write \/Library\/Preferences\/com.apple.SoftwareUpdate CatalogURL \\\"${URL}\\\"\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tdo shell script theSetScript\n\telse\n\t\tdo shell script theSetScript with administrator privileges\n\tend if\n\t\nend setSWUpdateServer\n\non installResetScript()\n\ttry\n\t\tset TheFile to ((path to me as string) & \"Contents:Resources:mhqreset.sh\") as alias\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to the startup disk with replacing\n\t\tend tell\n\tend try\nend installResetScript\n\non resetUserCPU()\n\ttry\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetUserCPU\n\non resetThisUserCPU()\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tset current_user to get the name of current user\n\t\tend tell\n\t\t\n\t\tdisplay dialog \"This will install the MHQ reset script and restart the computer into single user mode, then run the reset script automatically. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tdisplay dialog \"Are you absolutely certain?. The user \\\"\" & current_user & \"\\\" will be deleted with all it's files. Do you wish to continue?\" buttons {\"Quit\", \"Continue\"} default button \"Continue\" cancel button \"Quit\"\n\t\tinstallResetScript()\n\t\tif osVersion is \"10\" then\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.bashrc\" with administrator privileges\n\t\telse\n\t\t\tdo shell script \"echo \\\"sh \/mhqreset.sh\\\" >> \/private\/var\/root\/.profile\" with administrator privileges\n\t\tend if\n\t\tdo shell script \"nvram boot-args=\\\"-s\\\"\" with administrator privileges\n\t\ttell application \"Finder\" to restart\n\t\treturn -128\n\tend try\nend resetThisUserCPU\n\n\non installTechResetScript()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:techreset.sh\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to the startup disk with replacing\n\tend tell\n\t\nend installTechResetScript\n\n\non InstallSWUpdatePlist()\n\t\n\tset TheFile to ((path to me as string) & \"Contents:Resources:Set SWUpdate Server\") as alias\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tset theScript to \"\n\t\t\n\t\t#!\/bin\/bash\n\n\t\tif [ ! -e '\/Library\/StartupItems\/Set SWUpdate Server' ]; then \n\t\t mkdir '\/Library\/StartupItems\/Set SWUpdate Server' \n\t\tfi \n\t\tcp -R '\" & (the POSIX path of TheFile) & \"' '\/Library\/StartupItems\/Set SWUpdate Server\/.' \n\t\t\"\n\t\tdo shell script theScript with administrator privileges\n\t\t\n\telse\n\t\ttell application \"Finder\"\n\t\t\tduplicate TheFile to (path to startup items from local domain as alias) with replacing\n\t\tend tell\n\tend if\n\t\n\tdo shell script \"chmod -R 755 '\/Library\/StartupItems\/Set SWUpdate Server'; sudo chown -R root:wheel '\/Library\/StartupItems\/Set SWUpdate Server'\" with administrator privileges\n\t\nend InstallSWUpdatePlist\n\n\non testForFlashbackTrojan()\n\tdisplay alert (\"Beginning test\") message \"Testing for presence of Flashback trojan. Keep in mind this is NOT a definitive test!\"\n\t\n\ttry\n\t\tset check1 to do shell script \"defaults read \/Applications\/Safari.app\/Contents\/Info LSEnvironment\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"First check appears okay\"\n\t\tend if\n\tend try\n\t\n\ttry\n\t\tset check2 to do shell script \"defaults read ~\/.MacOSX\/environment DYLD_INSERT_LIBRARIES\"\n\t\tdisplay alert (\"Possible infection!\") message \"Recommend running full antivirus scan with up to date scanner. Please note this test is a first release and may produce false positives.\"\n\t\t\n\ton error error_message number error_number\n\t\tif error_number is equal to 1 then\n\t\t\tdisplay alert (\"Alert!\") message \"Second check appears okay\"\n\t\tend if\n\tend try\nend testForFlashbackTrojan\n\n\non rebuildLaunchServicesDB()\n\tdisplay alert (\"Alert!\") message \"The Finder must be quit and will relaunch when complete.\"\n\t\n\ttry\n\t\ttell application \"Finder\" to quit\n\t\tdo shell script \"\/System\/Library\/Frameworks\/CoreServices.framework\/Frameworks\/LaunchServices.framework\/Support\/lsregister -kill -r -domain local -domain system -domain user\"\n\t\ttell application \"Finder\" to activate\n\t\t\n\tend try\nend rebuildLaunchServicesDB\n\non reinstallDefaultFakePreferences()\n\tset TheFile to ((path to me as string) & \"Contents:Resources:com.fakeapp.Fake.plist\") as alias\n\ttell application \"Finder\"\n\t\tduplicate TheFile to ((path to preferences folder) as alias) with replacing\n\tend tell\n\tset theSetScript to \"\n#!\/bin\/bash\n\ndefaults delete com.fakeapp.Fake \\\"FUWindowFrameString\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame ActionLibrary\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame FUWindow\\\"\ndefaults delete com.fakeapp.Fake \\\"NSWindow Frame Preferences\\\"\ndefaults delete com.fakeapp.Fake \\\"WebDatabaseDirectory\\\"\ndefaults write com.fakeapp.Fake \\\"FakeDelayBetweenRunningActions\\\" '0'\n\"\n\tdo shell script theSetScript\n\t\nend reinstallDefaultFakePreferences\n\n\non reinstallFakeWorkflows()\n\tset oldFolder to (path to application support from user domain as text) & \"Fake:Workflows:\"\n\tset fakeFolder to (path to application support from user domain as text) & \"Fake:\"\n\tset newFolder to ((path to me as string) & \"Contents:Resources:Workflows\") as alias\n\t--\tdisplay dialog oldFolder\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tdelete oldFolder\n\t\tend try\n\t\tduplicate newFolder to fakeFolder\n\tend tell\nend reinstallFakeWorkflows\n\n\non FlushDNSCache()\n\tset theSetScript to \"\n\n#!\/bin\/bash\n\ncase `\/usr\/bin\/sw_vers -productVersion | \/usr\/bin\/awk -F . '{print $2}'` in\n 4) lookupd -flushcache ;; \n [56]) dscacheutil -flushcache ;; \n [78]) sudo killall -HUP mDNSResponder ;;\n 9 | 10) dscacheutil -flushcache;sudo killall -HUP mDNSResponder ;;\n *) echo \\\"Unsupported client OS\\\"; exit 1 ;;\nesac\n\n\t\n\t\"\n\t--if running in 10.7 or 10.8 we need to supply password\n\t\n\tif (osVersion < \"7\" and osVersion > \"3\") then\n\t\tdo shell script theSetScript\n\telse\n\t\tdo shell script theSetScript with administrator privileges\n\tend if\nend FlushDNSCache\n\non SystemProfilerReport()\n\t\n\tif (store = \"001\") then\n\t\tset destination to \"\/Volumes\/MHQ\/Backed Up\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Service\"\n\telse if (store = \"003\") then\n\t\tset destination to \"\/Volumes\/Service\/System Profiler Reports\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Service\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\t--this shell script will generate a system profiler report and save it to the server\n\tdo shell script \"#!\/bin\/sh\n\n# the location includes a folder based on the date in yyyy-mm-dd format\nreport_location=\\\"\" & destination & \"`date \\\"+%Y-%m-%d\\\"`\/\\\"\n\nif [ ! -d \\\"${report_location}\\\" ]; then\n\tmkdir \\\"${report_location}\\\"\nfi\n\nserial=`system_profiler SPHardwareDataType | grep \\\"Serial Number\\\" | awk '{print $4}'`\n\nSPDataTypes=\\\"SPHardwareDataType SPMemoryDataType SPPowerDataType SPSerialATADataType SPSoftwareDataType SPThunderboltDataType SPUSBDataType SPAirPortDataType SPFireWireDataType SPParallelATADataType SPAudioDataType SPBluetoothDataType SPNetworkDataType\\\"\n\nsystem_profiler -xml $SPDataTypes > $report_location$serial\\\".spx\\\"\n\"\n\t\nend SystemProfilerReport\n\non UpdateWorkflowsFromServer()\n\t\n\tset destination to POSIX path of ((path to application support from user domain as text) & \"Fake:Workflows:\")\n\t\n\tif (store = \"001\") then\n\t\tset source to \"\/Volumes\/MHQ\/Backed Up\/Retail Stuff\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/mhq-swupdate.local\/MHQ\"\n\telse if (store = \"002\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/xserve.local\/Retail\"\n\telse if (store = \"003\") then\n\t\tset source to \"\/Volumes\/Retail\/Current Workflows\/\"\n\t\tset dest_volume to \"afp:\/\/servercdr.local\/Retail\"\n\tend if\n\t\n\t--\tdisplay dialog oldFolder\n\t\n\ttell application \"Finder\"\n\t\ttry\n\t\t\tmount volume dest_volume\n\t\ton error\n\t\t\treturn \"Error mounting server volume \\\"\" & dest_volume & \"\\\". Please connect to server manually and try again.\"\n\t\t\ttell me to quit\n\t\tend try\n\tend tell\n\t\n\ttry\n\t\tset theScript to \"\n\t#!\/bin\/bash\n\t\n\t\/usr\/bin\/rsync -a '\" & source & \"' '\" & destination & \"'\n\t\" --shell script\t\n\t\t\n\t\tdo shell script theScript --with administrator privileges\n\ton error\n\t\treturn \"Error syncronizing folders.\"\n\tend try\n\t\nend UpdateWorkflowsFromServer\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fc1d9e0882194c711836b75351221f86be2da4b9","subject":"Fixed first run check.","message":"Fixed first run check.\n\nA typo in the plist file path prevented isTheFirstRun() from returning\nthe correct value.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"property debug : false\nproperty currentVolume : null\nproperty idleTime: 0.3\n\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\non idle\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n\t\t\t\t\tset idleTime to 0.3\n end try\n repeat\n set idleTime to 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n set idleTime to 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n return idleTime\nend idle\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree.plist\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","old_contents":"property debug : false\nproperty currentVolume : null\nproperty idleTime: 0.3\n\n\nif (isTheFirstRun() and not isInLoginItems()) then\n set userAnswer to the button returned of (display dialog \"Hi, thanks for installing Spotifree!\" & \u00ac\n return & \"Just so you know, Spotifree has no interface yet, and will work silently in the background.\" & return & return \u00ac\n & \"BTW, do you want it to run automatically on startup?\" with title \u00ac\n \"You are awesome!\" with icon 1 buttons {\"No, thanks\", \"OK\"} default button 2)\n if (userAnswer = \"OK\") then\n try\n my addToLoginItems()\n end try\n end if\n try\n -- Save in the preferences that Spotifree has already ran.\n do shell script \"defaults write com.ArtemGordinsky.Spotifree 'hasRanBefore' 'true'\"\n end try\nend if\n\non idle\n try\n -- Adding a 5 seconds timeout instead of default 2 min. Prevents long unresponsiveness of the app.\n with timeout of (5) seconds\n if (isRunning() and isPlaying() and isAnAd()) then\n try\n mute()\n\t\t\t\t\tset idleTime to 0.3\n end try\n repeat\n set idleTime to 0.3\n try\n if (isRunning() and not isAnAd()) then\n -- Have to delay a little bit, because Spotify may tell us about the next track too early,\n -- and a user may to hear the last half-second of an ad.\n delay 0.8\n unmute()\n exit repeat\n end if\n end try\n end repeat\n else\n -- Delaying, to get less of the crashing \"connection is invalid\" errors.\n set idleTime to 1\n end if\n end timeout\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"Somewhere in the outer loop.\")\n end try\n -- This is how fast we are polling Spotify.\n -- The only speed at which you will hear almost no sounds passing through.\n -- Fortunately, even combined with the added load on Spotify, the CPU usage is rather miniscule.\n return idleTime\nend idle\n\non mute()\n try\n tell application \"Spotify\"\n set currentVolume to sound volume\n -- This is the only way possible to mute Spotify during an advertisement.\n -- Otherwise it pauses when you mute the sound.\n pause\n set sound volume to 0\n play\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"mute()\")\n end try\n return\nend mute\n\non unmute()\n try\n tell application \"Spotify\"\n -- Restore the volume to the level supplied to the parameter.\n set sound volume to currentVolume\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"unmute()\")\n end try\n return\nend unmute\n\non isAnAd()\n local currentTrackPopularity, currentTrackDuration\n set currentTrackPopularity to null\n set currentTrackDuration to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n try\n tell application \"Spotify\"\n set currentTrackPopularity to popularity of current track\n set currentTrackDuration to duration of current track\n end tell\n on error number -1728\n # Ignoring \"can't get current track\" error\n end try\n on error number -609\n # Ignoring the \"invalid connection errors\"\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isAnAd()\")\n return false\n end try\n if ((currentTrackPopularity \u2260 null and currentTrackDuration \u2260 null) and (currentTrackPopularity = 0 and currentTrackDuration \u2264 40)) then\n return true\n else\n return false\n end if\nend isAnAd\n\non isPlaying()\n local playerState\n set playerState to null\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"Spotify\"\n set playerState to player state\n end tell\n on error -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if (playerState \u2260 null and playerState = \u00abconstant ****kPSP\u00bb) then\n return true\n else\n return false\n end if\nend isPlaying\n\non isRunning()\n local spotifyProcesses\n # Nesting \"try\" blocks is the only way to handle multiple errors in AppleScript\n try\n try\n tell application \"System Events\"\n set spotifyProcesses to (count of (every process whose name is \"Spotify\"))\n end tell\n on error number -609\n # Ignoring the \"invalid connection\" errors\n end try\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isRunning()\")\n return false\n end try\n if spotifyProcesses is 1 then\n return true\n else\n return false\n end if\nend isRunning\n\non addToLoginItems()\n try\n tell application \"System Events\"\n -- Add Spotifree to the Login Items.\n make login item at end with properties {name:\"Spotifree\", path:\"\/Applications\/Spotifree.app\", hidden:true}\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"addToLoginItems()\")\n return\n end try\nend addToLoginItems\n\non isTheFirstRun()\n local isPrefFileExists, prefFilePath\n set prefFilePath to \"~\/Library\/Preferences\/com.ArtemGordinsky.Spotifree\"\n try\n tell application \"System Events\"\n if exists file prefFilePath then\n set isPrefFileExists to true\n else\n set isPrefFileExists to false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isTheFirstRun()\")\n return true\n end try\n # \"not\" works like a bang sign here\n return not isPrefFileExists\nend isTheFirstRun\n\non isInLoginItems()\n try\n tell application \"System Events\"\n if login item \"Spotifree\" exists then\n return true\n else\n return false\n end if\n end tell\n on error errorMessage number errorNumber\n my log_error(errorNumber, errorMessage, \"isInLoginItems()\")\n return false\n end try\nend isInLoginItems\n\non log_message(message)\n local content\n set content to (return & \u00ac\n \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & message & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\nend log_message\n\non log_error(error_number, error_message, _where)\n local content\n if (debug) then\n set content to (return & \"-----------------------------------------------------------\" & \u00ac\n return & my dateAndTime() & return & \"Error number: \" & error_number \u00ac\n & return & \"Error message: \" & error_message & return & \u00ac\n \"Where: \" & _where & return \u00ac\n & \"-----------------------------------------------------------\" & return)\n set log_file to (\"Mountain Lion:Users:Mephistopelus:Developer:The Stuff:AppleScript:SpotiFree:Spotifree_log.txt\")\n my write_to_file(content, log_file, true)\n end if\nend log_error\n\non write_to_file(this_data, target_file, append_data) -- (string, file path as string, boolean)\n try\n set the target_file to the target_file as text\n set the open_target_file to \u00ac\n open for access file target_file with write permission\n if append_data is false then \u00ac\n set eof of the open_target_file to 0\n write this_data to the open_target_file starting at eof\n close access the open_target_file\n return true\n on error\n try\n close access file target_file\n end try\n end try\nend write_to_file\n\non dateAndTime()\n set currentDateAndTime to (current date) as string\n return currentDateAndTime\nend dateAndTime","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"2208e219493bba595b631828d75213f96e6a0164","subject":"Modifying the script to actually show the entourage icon","message":"Modifying the script to actually show the entourage icon\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40474\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Entourage.scpt","new_file":"Examples\/AppleScripts\/Entourage.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000\u0000\n\n\tDisplay a notification of email in Growl. This is designed to be added as a rule that applies to all messages. It will be processed after spam has been filtered.\n\t\n\tMade by Cowboy - www.cowboyscripts.org\n\n\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002l\u0000\u0002\u0000\u0000\u00005\u0000\u000e\r\u0000\u000e\u0000\u0002O\u0000\u0000\u0000\u0000\u00005\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0004\u00004\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\r\u0000\u0019\u0000\u0002l\u0000\u0005\u0000\u0004\u0000\b\u0000\u001b\r\u0000\u001b\u0000\u0001e\u0000\u0000\u0000\u0004\u0000\b\u0000\u001c\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0004\u0000\b\n\u0000\u0004\nCMgs\u0001\u0000\u0000\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0013\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0001\u0000\u0000\u000e\u0000\u0011\u0000!\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0011\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\nsubj\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0001\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000&\u0000'\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000(\u0000)\r\u0000(\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\ndspn\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\nsndr\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\u0002\u0000%\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002O\u0000\u0000\u0000\u001c\u00002\u00000\u00001\r\u00000\u0000\u0003I\u0000\u0002\u0000 \u00001\u00002\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u00002\u0000\u0003\u00003\u00004\n\u0000\u0004\ntitl\r\u00003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u00005\f\u00005\u0000\u0013\u0000\rIncoming Mail\u0000\u0002\u0000\u0000\u0006\u00004\u0000\u0003\u00006\u00007\n\u0000\u0004\ndesc\r\u00006\u0000\u0002b\u0000\u0000\u0000$\u0000)\u00008\u00009\r\u00008\u0000\u0002b\u0000\u0000\u0000$\u0000'\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\r\u0000;\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000<\f\u0000<\u0000\t\u0000\u0003: \u0000\u0002\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\u0006\u00007\u0000\u0003\u0000=\n\u0000\u0004\niapp\r\u0000=\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000>\f\u0000>\u0000\u0019\u0000\u0013Microsoft Entourage\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u00001\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000?\u000f\u0000?\u0002F\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0019;l\u0012GrowlHelperApp.app\b\u00007\u0010\u0770\u0000\u00000\u0000 P\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(\u0007 \u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0006kremit\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000=)H+\u0000\u0000\u0000\u0019;l\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019;npi\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000\u00c3y\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000p\u0000\u0000\u0000\u0001\u0000\u001c\u0000\u0019;l\u0000\u0019;k\u0000\u0019;j\u0000\b\u0000\u0002P\u0000\u0002O\u0000\u0000\u001d|\u0000\u0002\u0000_kremit:Users:chris:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000k\u0000r\u0000e\u0000m\u0000i\u0000t\u0000\u0012\u0000XUsers\/chris\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\f\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000@\r\u0000@\u0000\u0002l\u0000\u0000\u00003\u00003\u0000A\u0001\u0000\u0000\f\u0000A\u0000y\u0000s\n\tdisplay dialog \"from: \" & theSender & \", subject: \" & theSubject with icon 2 buttons \"Bloops!\" default button 1\n\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000B\u000f\u0000B\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\t\u0013Microsoft Entourageapplies to all messages. It will be processeOPIM\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0006kremit\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000=)H+\u0000\u0000\u0000\t\u0013Microsoft Entourage\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u0011bAPPLOPIM\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015Microsoft Office 2004\u0000\u0000\u0010\u0000\b\u0000\u0000\u00c3y\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u0000\t\u0000\u0000\u0003^\u0000\u0002\u0000=kremit:Applications:Microsoft Office 2004:Microsoft Entourage\u0000\u0000\u000e\u0000(\u0000\u0013\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000E\u0000n\u0000t\u0000o\u0000u\u0000r\u0000a\u0000g\u0000e\u0000\u000f\u0000\u000e\u0000\u0006\u0000k\u0000r\u0000e\u0000m\u0000i\u0000t\u0000\u0012\u00006Applications\/Microsoft Office 2004\/Microsoft Entourage\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000C\r\u0000C\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u00005\u0000I\u0002\u0000I\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0012\u0000B\u0000?\u00005\u0000<\u0000>\n\u0000\u0004\nCMgs\n\u0000\u0004\ncobj\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\u0004\nsubj\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\n\u0000\u0004\nsndr\n\u0000\u0004\ndspn\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\niapp\u0003\u0000\u0006\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u00006\u0012\u00002*,Ek\/EO,EO,,EO\u0012\u0000\u0013*%%a\u0000\u0010\f\u0000\u0011UOPU\u000fascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\f\u0000\u0007\u0000\u0000\n\n\tDisplay a notification of email in Growl. This is designed to be added as a rule that applies to all messages. It will be processed after spam has been filtered.\n\t\n\tMade by Cowboy - www.cowboyscripts.org\n\n\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\b\u0000\t\r\u0000\b\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0002l\u0000\u0002\u0000\u0000\u00005\u0000\u000e\r\u0000\u000e\u0000\u0002O\u0000\u0000\u0000\u0000\u00005\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u0004\u00004\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002l\u0000\u0002\u0000\u0004\u0000\u0004\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0002r\u0000\u0000\u0000\u0004\u0000\r\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u000b\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u00024\u0000\u0000\u0000\b\u0000\u000b\u0000\u001a\n\u0000\u0004\ncobj\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0003\u0000\u0001\r\u0000\u0019\u0000\u0002l\u0000\u0005\u0000\u0004\u0000\b\u0000\u001b\r\u0000\u001b\u0000\u0001e\u0000\u0000\u0000\u0004\u0000\b\u0000\u001c\r\u0000\u001c\u0000\u00011\u0000\u0000\u0000\u0004\u0000\b\n\u0000\u0004\nCMgs\u0001\u0000\u0000\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0002\u0000\u0015\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0013\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002l\u0001\u0000\u0000\u000e\u0000\u0011\u0000!\r\u0000!\u0000\u0002n\u0000\u0000\u0000\u000e\u0000\u0011\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u000f\u0000\u0011\n\u0000\u0004\nsubj\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u000e\u0000\u000f\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\u0001\u0000\u0000\r\u0000 \u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0002r\u0000\u0000\u0000\u0014\u0000\u001b\u0000&\u0000'\r\u0000&\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0019\u0000(\u0000)\r\u0000(\u0000\u00011\u0000\u0000\u0000\u0017\u0000\u0019\n\u0000\u0004\ndspn\r\u0000)\u0000\u0002n\u0000\u0000\u0000\u0014\u0000\u0017\u0000*\u0000+\r\u0000*\u0000\u00011\u0000\u0000\u0000\u0015\u0000\u0017\n\u0000\u0004\nsndr\r\u0000+\u0000\u0001o\u0000\u0000\u0000\u0014\u0000\u0015\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\u0002\u0000%\u0000\u0002\u0000,\u0000-\r\u0000,\u0000\u0002l\u0000\u0002\u0000\u001c\u0000\u001c\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000-\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0002O\u0000\u0000\u0000\u001c\u00002\u00000\u00001\r\u00000\u0000\u0003I\u0000\u0002\u0000 \u00001\u00002\n\u0000\u0018.notifygrnull\u0000\u0000null\u0001\u0000\u0000\u0006\u00002\u0000\u0003\u00003\u00004\n\u0000\u0004\ntitl\r\u00003\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u00005\f\u00005\u0000\u0013\u0000\rIncoming Mail\u0000\u0002\u0000\u0000\u0006\u00004\u0000\u0003\u00006\u00007\n\u0000\u0004\ndesc\r\u00006\u0000\u0002b\u0000\u0000\u0000$\u0000)\u00008\u00009\r\u00008\u0000\u0002b\u0000\u0000\u0000$\u0000'\u0000:\u0000;\r\u0000:\u0000\u0001o\u0000\u0000\u0000$\u0000%\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\r\u0000;\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000<\f\u0000<\u0000\t\u0000\u0003: \u0000\u0002\u0000\u0000\r\u00009\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\u0006\u00007\u0000\u0003\u0000=\n\u0000\u0004\niapp\r\u0000=\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0000>\f\u0000>\u0000\u001d\u0000\u0017Microsoft Entourage.app\u0000\u0002\u0000\u0000\u0006\u0000\u0000\r\u00001\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0000?\u000f\u0000?\u0002F\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0019;l\u0012GrowlHelperApp.app\b\u00007\u0010\u0770\u0000\u00000\u0000 P\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0002\u0005(\u0007 \u0000GRRR\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\u0006kremit\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000=)H+\u0000\u0000\u0000\u0019;l\u0012GrowlHelperApp.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019;npi\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\tResources\u0000\u0000\u0010\u0000\b\u0000\u0000\u00c3y\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000p\u0000\u0000\u0000\u0001\u0000\u001c\u0000\u0019;l\u0000\u0019;k\u0000\u0019;j\u0000\b\u0000\u0002P\u0000\u0002O\u0000\u0000\u001d|\u0000\u0002\u0000_kremit:Users:chris:Library:PreferencePanes:Growl.prefPane:Contents:Resources:GrowlHelperApp.app\u0000\u0000\u000e\u0000&\u0000\u0012\u0000G\u0000r\u0000o\u0000w\u0000l\u0000H\u0000e\u0000l\u0000p\u0000e\u0000r\u0000A\u0000p\u0000p\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u000e\u0000\u0006\u0000k\u0000r\u0000e\u0000m\u0000i\u0000t\u0000\u0012\u0000XUsers\/chris\/Library\/PreferencePanes\/Growl.prefPane\/Contents\/Resources\/GrowlHelperApp.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\f\u0000\u0000\u0002\u0000\/\u0000\u0002\u0000@\r\u0000@\u0000\u0002l\u0000\u0000\u00003\u00003\u0000A\u0001\u0000\u0000\f\u0000A\u0000y\u0000s\n\tdisplay dialog \"from: \" & theSender & \", subject: \" & theSubject with icon 2 buttons \"Bloops!\" default button 1\n\t\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000B\u000f\u0000B\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\t\u0013Microsoft Entourageapplies to all messages. It will be processeOPIM\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0000\u0006kremit\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000=)H+\u0000\u0000\u0000\t\u0013Microsoft Entourage\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u0011bAPPLOPIM\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0015Microsoft Office 2004\u0000\u0000\u0010\u0000\b\u0000\u0000\u00c3y\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0000\u0000\u0000\u0001\u0000\b\u0000\t\u0000\u0000\u0003^\u0000\u0002\u0000=kremit:Applications:Microsoft Office 2004:Microsoft Entourage\u0000\u0000\u000e\u0000(\u0000\u0013\u0000M\u0000i\u0000c\u0000r\u0000o\u0000s\u0000o\u0000f\u0000t\u0000 \u0000E\u0000n\u0000t\u0000o\u0000u\u0000r\u0000a\u0000g\u0000e\u0000\u000f\u0000\u000e\u0000\u0006\u0000k\u0000r\u0000e\u0000m\u0000i\u0000t\u0000\u0012\u00006Applications\/Microsoft Office 2004\/Microsoft Entourage\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000C\r\u0000C\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000D\u0000E\u0001\u0000\u0000\u0010\u0000D\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000E\u0000\u0007\u0010\u0000F\u0000G\u0000H\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000F\u0000\u0001k\u0000\u0000\u0000\u0000\u00005\u0000I\u0002\u0000I\u0000\u0002\u0000\f\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000G\u0000\u0000\u0010\u0000H\u0000\u0012\u0000B\u0000?\u00005\u0000<\u0000>\n\u0000\u0004\nCMgs\n\u0000\u0004\ncobj\u000b\u0000\u00070\u0000\u0003msg\u0000\u0000\n\u0000\u0004\nsubj\u000b\u0000\u00180\u0000\nthesubject\u0000\ntheSubject\n\u0000\u0004\nsndr\n\u0000\u0004\ndspn\u000b\u0000\u00160\u0000\tthesender\u0000\ttheSender\n\u0000\u0004\ntitl\n\u0000\u0004\ndesc\n\u0000\u0004\niapp\u0003\u0000\u0006\n\u0000\u0018.notifygrnull\u0000\u0000null\u0011\u00006\u0012\u00002*,Ek\/EO,EO,,EO\u0012\u0000\u0013*%%a\u0000\u0010\f\u0000\u0011UOPU\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7d88ca19bcdf8fd24421c83cbd3e3924409d7f0d","subject":"fixed bugs where the other layers name would be appended","message":"fixed bugs where the other layers name would be appended\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportAllLayers\/ExportAllLayers.applescript","new_file":"ExportAllLayers\/ExportAllLayers.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\tset canvas_filename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset canvas_filename to canvasNumber & \"- \"\n\t\tend if\n\t\tset canvas_filename to canvas_filename & canvas_name\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_filename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\tset filename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset filename to canvasNumber & \"- \"\n\t\tend if\n\t\tset filename to filename & canvas_name\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to filename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"bcffd0c608f4163be51bad80658ed753ad04122b","subject":"change file path","message":"change file path\n","repos":"dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios,socialize\/socialize-sdk-ios,dontfallisleep\/socialize-sdk-ios,socialize\/socialize-sdk-ios","old_file":"SampleSdkApp\/testrunner\/gui-autoscript.scpt","new_file":"SampleSdkApp\/testrunner\/gui-autoscript.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000x\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0001k\u0000\u0000\u0000\u0003\u0000k\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b\u0000\u000f\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u00008\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0013\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u0016\u000f\u0000\u0016\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002O\u0000\u0000\u0000\u0014\u0000X\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002O\u0000\u0000\u0000\u0018\u0000W\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u001f\u0000V\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\u001f\u0000?\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000&\u0000>\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000-\u0000=\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u00004\u0000<\u0000&\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000&\u0000\u00024\u0000\u0000\u00004\u00008\u0000'\n\u0000\u0004\nmenI\r\u0000'\u0000\u0001m\u0000\u0000\u00006\u00007\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u00006\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000a\u0000n\u0000d\u0000 \u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s &\u0002\u0000\u0000\r\u0000%\u0000\u00024\u0000\u0000\u0000-\u00001\u0000*\n\u0000\u0004\nmenE\r\u0000*\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000#\u0000\u00024\u0000\u0000\u0000&\u0000*\u0000-\n\u0000\u0004\nmbri\r\u0000-\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001f\u0000#\u00000\n\u0000\u0004\nmbar\r\u00000\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\u0002\u0000\u001f\u0000\u0002\u00001\r\u00001\u0000\u0002O\u0000\u0000\u0000@\u0000V\u00002\u00003\r\u00002\u0000\u0001k\u0000\u0000\u0000G\u0000U\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000G\u0000S\u00007\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u00007\u0000\u00024\u0000\u0000\u0000G\u0000O\u00008\n\u0000\u0004\nbutT\r\u00008\u0000\u0001m\u0000\u0000\u0000K\u0000N\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\n\u0000R\u0000e\u0000s\u0000e\u0000t\u0002\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000T\u0000T\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00003\u0000\u00024\u0000\u0000\u0000@\u0000D\u0000<\n\u0000\u0004\ncwin\r\u0000<\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u001c\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000=\n\u0000\u0004\nprcs\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000@\u000f\u0000@\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002O\u0000\u0000\u0000Y\u0000c\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000]\u0000b\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\u0000E\u000f\u0000E\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000B\u0000\u0002\u0000F\r\u0000F\u0000\u0003I\u0000\u0002\u0000d\u0000k\u0000G\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000G\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u00008\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000R\u0000E\u0000S\u0000E\u0000T\u0000 \u0000S\u0000I\u0000M\u0000U\u0000L\u0000A\u0000T\u0000O\u0000R\u0000 \u0000&\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000s\u0000x\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000R\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0000T\u0002\u0000T\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000W\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0000X\u0000Y\r\u0000X\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\\\u000e\u0000\\\u0000\u0001\u0000]\u0011\u0000]\u0000\u0012\u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000[\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000h\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000g\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000j\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000%\u0000m\u0000n\u0000o\r\u0000m\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0018\u0000p\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\n\u0000s\u0000t\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0000y\u0000z\r\u0000y\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000r\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0012\u0000}\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000o\u0000e\u0000p\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u00008\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000f\u00007\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0016\u00006\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001d\u00005\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000$\u00004\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000+\u00003\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000+\u0000\/\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u001d\u0000!\u0000\n\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0000\n\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000\n\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000B\u0000e\u0000g\u0000i\u0000n\u0000:\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\b\u0000\r\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000\u0019\u0000u\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001e\u0000p\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\"\u0000o\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000)\u0000n\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00000\u0000m\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00007\u0000l\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000>\u0000k\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000>\u0000a\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000>\u0000F\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000>\u0000D\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000>\u0000D\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000>\u0000D\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000C\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000>\u0000A\n\u0000\u0004\nmenI\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000I\u0000]\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000I\u0000Q\u0000~\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000I\u0000M}\u0000\n}\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L|\u000b|\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000R\u0000[{\u0000z\n{\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000Vy\u000by\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002z\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0000S\u0000\u0000\u0000\\\u0000]\u0002x\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0003I\u0000\u0002\u0000b\u0000kv\u0000u\nv\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000b\u0000g\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000b\u0000e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000o\u0000r\u0000 \u0000.\u0000.\u0000.\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000ft\u000bt\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00007\u0000;s\u0000\ns\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u00000\u00004r\u0000\nr\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-q\u0000\nq\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000+\u0000,p\u0003p\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000&o\u0000\no\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u0001\u000f\u0001\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0003l\u0000\u0002\u0000v\u0000vnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004k\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000v\u0000vjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0001\t\u0001\n\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000dcb\u000bd\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002c\u0000\u0000\u0002b\u0000\u0000\r\u0001\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\ta`_\na\u0000\u0018.miscactvnull\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0002O\u0000\u0000\u0000\u000b\u0000O\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002O\u0000\u0000\u0000\u000f\u0000N\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001k\u0000\u0000\u0000\u0016\u0000M\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b^\u0001\u001a]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u001b\b\u0001\u001b\u0000\b?\u0659\u0002]\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001c\\\r\u0001\u001c\u0000\u0002O\u0000\u0000\u0000\u001c\u0000M\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0002O\u0000\u0000\u0000#\u0000L\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002O\u0000\u0000\u0000*\u0000K\u0001!\u0001\"\r\u0001!\u0000\u0001k\u0000\u0000\u00001\u0000J\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003I\u0000\u0002\u00001\u00009[\u0001&Z\n[\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001&\u0000\u00024\u0000\u0000\u00001\u00005Y\u0001'\nY\u0000\u0004\nmenI\r\u0001'\u0000\u0001m\u0000\u0000\u00003\u00004\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002Z\u0000\u0000\u0002\u0001%\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000:\u0000?X\u0001,W\nX\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001,\u0000\u0001m\u0000\u0000\u0000:\u0000;V\u0003V\u0000\u0006\u0002W\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-U\r\u0001-\u0000\u0003I\u0000\u0002\u0000@\u0000JT\u0001.S\nT\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001.\u0000\u00024\u0000\u0000\u0000@\u0000FR\u0001\/\nR\u0000\u0004\nmenI\r\u0001\/\u0000\u0001m\u0000\u0000\u0000B\u0000E\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002S\u0000\u0000\u0002U\u0000\u0000\r\u0001\"\u0000\u00024\u0000\u0000\u0000*\u0000.Q\u00012\nQ\u0000\u0004\nmenE\r\u00012\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00013\u000e\u00013\u0000\u0001\u00014\u0011\u00014\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001 \u0000\u00024\u0000\u0000\u0000#\u0000'P\u00015\nP\u0000\u0004\nmbri\r\u00015\u0000\u0001m\u0000\u0000\u0000%\u0000&\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001\u001e\u0000\u00024\u0000\u0000\u0000\u001c\u0000 O\u00018\nO\u0000\u0004\nmbar\r\u00018\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\u0003N\u0000\u0001\u0002\\\u0000\u0000\r\u0001\u0016\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013M\u00019\nM\u0000\u0004\nprcs\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001<\u000f\u0001<\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001=L\r\u0001=\u0000\u0003l\u0000\u0002\u0000P\u0000PKJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002L\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000HGF\u000bH\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002G\u0000\u0000\u0002F\u0000\u0000\r\u0001A\u0000\u0002O\u0000\u0000\u0000\u0000\u0000.\u0001B\u0001C\r\u0001B\u0000\u0002O\u0000\u0000\u0000\u0004\u0000-\u0001D\u0001E\r\u0001D\u0000\u0001k\u0000\u0000\u0000\u000b\u0000,\u0001F\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010E\u0001ID\nE\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001I\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001J\b\u0001J\u0000\b?\u0659\u0002D\u0000\u0000\u0002\u0001H\u0000\u0002\u0001KC\r\u0001K\u0000\u0002O\u0000\u0000\u0000\u0011\u0000,\u0001L\u0001M\r\u0001L\u0000\u0002O\u0000\u0000\u0000\u0018\u0000+\u0001N\u0001O\r\u0001N\u0000\u0001k\u0000\u0000\u0000\u001f\u0000*\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002O\u0000\u0000\u0000\u001f\u0000(\u0001S\u0001T\r\u0001S\u0000\u0003l\u0000\u0006\u0000&\u0000&B\u0001U\u0001V\u0001B\u0000\u0000\f\u0001U\u0000\u001c\u0000\u0016click menu item \"Zoom\"\u0000\u0002\u0000\u0000\u000e\u0001V\u0000\u0001\u0001W\u0011\u0001W\u0000,\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000\"\u0000Z\u0000o\u0000o\u0000m\u0000\"\r\u0001T\u0000\u00024\u0000\u0000\u0000\u001f\u0000#A\u0001X\nA\u0000\u0004\nmenE\r\u0001X\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0001R\u0000\u0002\u0001[@\r\u0001[\u0000\u0003l\u0000\u0002\u0000)\u0000)?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002@\u0000\u0000\r\u0001O\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c<\u0001\\\n<\u0000\u0004\nmbri\r\u0001\\\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\r\u0001M\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015;\u0001_\n;\u0000\u0004\nmbar\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014:\u0003:\u0000\u0001\u0002C\u0000\u0000\r\u0001E\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b9\u0001`\n9\u0000\u0004\nprcs\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0001a\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001C\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001c\u000f\u0001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001?\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f\u0001h\u0001i\r\u0001h\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000543\u000b5\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u00024\u0000\u0000\u00023\u0000\u0000\r\u0001i\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t210\n2\u0000\u0018.miscactvnull\u0000\u0000null\u00011\u0000\u0000\u00020\u0000\u0000\r\u0001n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001o\u000f\u0001o\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002O\u0000\u0000\u0000\u000b\u0000F\u0001r\u0001s\r\u0001r\u0000\u0002O\u0000\u0000\u0000\u000f\u0000E\u0001t\u0001u\r\u0001t\u0000\u0001k\u0000\u0000\u0000\u0016\u0000D\u0001v\u0002\u0001v\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u0016\u0000*\/\u0001y.\n\/\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001y\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0001z\u0001{\r\u0001z\u0000\u00024\u0000\u0000\u0000#\u0000&-\u0001|\n-\u0000\u0004\nbutT\r\u0001|\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000.\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000l\u0000l\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000N\u0000o\u0000w &\r\u0001{\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000 \u0000#,\u0001\n,\u0000\u0004\nscra\r\u0001\u0000\u0001m\u0000\u0000\u0000!\u0000\"+\u0003+\u0000\u0003\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001d\u0000 *\u0001\n*\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f)\u0003)\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d(\u0001\n(\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c'\u0003'\u0000\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a&\u0001\n&\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002.\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000+\u00000%\u0001$\n%\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\b\u0001\u0000\b?333333\u0002$\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00001\u0000<#\u0001\"\n#\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u00001\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u00005\u00008!\u0001\n!\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u00006\u00007\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000O\u0000p\u0000e\u0000n\r\u0001\u0000\u00024\u0000\u0000\u00001\u00005 \u0001\n \u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u00003\u00004\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0002\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0003I\u0000\u0002\u0000=\u0000D\u001e\u0001\u001d\n\u001e\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000 \u0000l\u0000o\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r\u0001u\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\u0001\n\u001c\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001q\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000G\u0000M\u001b\u0001\u001a\u000b\u001b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0019\r\u0001\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0018\u0003\u0018\u0000\u0001\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000N\u0000Z\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000R\u0000Y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000R\u0000W\u0017\u0016\u0015\n\u0017\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0016\u0000\u0000\u0002\u0015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0014\r\u0001\u0000\u0003l\u0000\u0002\u0000X\u0000X\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0014\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000[\u0000\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000_\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000h\u0000\u0010\u0001\u000f\n\u0010\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000z\u0000\u000e\u0001\n\u000e\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000D\u0000o\u0000n \u0019\u0000t\u0000 \u0000S\u0000a\u0000v\u0000e\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000z\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000u\u0000z\r\u0001\n\r\u0000\u0004\nsheE\r\u0001\u0000\u0001m\u0000\u0000\u0000x\u0000y\f\u0003\f\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000u\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000p\u0000u\u000b\u0001\n\u000b\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000p\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000i\u0000p\n\u0001\n\n\u0000\u0004\npcap\r\u0001\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000f\u0000\u0000\r\u0001\u0000\u00024\u0000\u0000\u0000_\u0000e\t\u0001\n\t\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000q\u0000u\u0000i\u0000t\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0006\u0000\u0000\u0002\b\u0000\u0000\u0002\u0001g\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000 \u0000#\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u000b\u0002\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000b\u0000Q\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000f\u0000P\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0016\u0000O\u0001\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0016\u0000O\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000)\u0000N\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001T\u0000\u0000\u0000)\u0000L\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000.\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000.\u00003\u0001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00004\u00004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u00004\u0000G\u0001\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0000\u00004\u00009\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\nenaB\r\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\b\u000bboovfals\r\u0001\u0000\u0000S\u0000\u0000\u0000<\u0000=\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000@\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000@\u0000E\u0001\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000.\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00003\u0000 \u0000s\u0000e\u0000c\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0002\u0001\u0002\u0002\r\u0002\u0001\u0000\u0003l\u0000\u0006\u0000M\u0000M\u0002\u0003\u0002\u0004\u0001\u0000\u0000\f\u0002\u0003\u0000,\u0000&click button \"Open\" of window \"Export\"\u0000\u0002\u0000\u0000\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000L\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000\"\u0000O\u0000p\u0000e\u0000n\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000\"\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000\"\u0002\u0002\u0002\u0000\u0002\u0002\u0006\r\u0002\u0006\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0002\u0007\u0002\b\r\u0002\u0007\u0000\u00024\u0000\u0000\u0000#\u0000&\u0002\t\n\u0000\u0004\nbutT\r\u0002\t\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0016\u0000S\u0000t\u0000o\u0000p\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0002\b\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0002\f\u0002\r\r\u0002\f\u0000\u00024\u0000\u0000\u0000 \u0000#\u0002\u000e\n\u0000\u0004\nscra\r\u0002\u000e\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0003\r\u0002\r\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0002\u0011\n\u0000\u0004\nsplg\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0002\u0010\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u0014\n\u0000\u0004\nsplg\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0002\u0013\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0002\u0015\n\u0000\u0004\ncwin\r\u0002\u0015\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\f\u0001\u0000\u0012\u0000\f stop script\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0000\u0018\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0001\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0002\u0019\n\u0000\u0004\nprcs\r\u0002\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0002\u001a\u000e\u0002\u001a\u0000\u0001\u0002\u001b\u0011\u0002\u001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002\u001c\u000f\u0002\u001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u001d\r\u0002\u001d\u0000\u0003I\u0000\u0000\u0000R\u0000X\u0002\u001e\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0002\u001e\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002!\u0000\u0002\u0002\"\u0002#\r\u0002\"\u0000\u0002i\u0000\u0000\u0000$\u0000'\u0002$\u0002%\r\u0002$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0002&\u0002\u0002&\u0000\u0002\u0002'\u0002(\r\u0002'\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002)\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u0000,\u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0000\u0000\u0002\u0002(\u0000\u0002\u0002,\r\u0002,\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0015\u0002-\u0002.\r\u0002-\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0014\u0002\/\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0000\u0000\u0006\u0002\/\u0000\u0003\u00020\n\u0000\u0004\ninsh\r\u00020\u0000\u0001J\u0000\u0000\u0000\f\u0000\u0010\u00021\u0002\u00021\u0000\u0002\u00022\u00023\r\u00022\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0003\u0002\u00023\u0000\u0002\u00024\r\u00024\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0003\u0001m\u0002\u0000\u0000\u0006\u0000\u0000\r\u0002.\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u00025\u000f\u00025\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0002#\u0000\u0002\u00026\u00027\r\u00026\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00027\u0000\u0002\u00028\u00029\r\u00028\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0002:\r\u0002:\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002;\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002<\u000e\u0002<\u0000\u0001\u0002=\u0011\u0002=\u0000(\u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000g\u0000u\u0000i\u0000-\u0000a\u0000u\u0000t\u0000o\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00029\u0000\u0002\u0002>\u0002?\r\u0002>\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0002@\r\u0002@\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u000b\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002?\u0000\u0002\u0002A\u0002B\r\u0002A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002B\u0000\u0002\u0002C\u0002D\r\u0002C\u0000\u0003l\u0000\u0006\u0000\u0000\u0000\u0000\u0002E\u0002F\u0001\u0000\u0000\f\u0002E\u0000\u0000set filepath to POSIX path of \"Macintosh HD:Users:blue:work:socialize:socialize-sdk-ios:SampleSdkApp:testrunner:sampleApp_instruments.trace\"\u0000\u0002\u0000\u0000\u000e\u0002F\u0000\u0001\u0002G\u0011\u0002G\u0001\u0018\u0000s\u0000e\u0000t\u0000 \u0000f\u0000i\u0000l\u0000e\u0000p\u0000a\u0000t\u0000h\u0000 \u0000t\u0000o\u0000 \u0000P\u0000O\u0000S\u0000I\u0000X\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000o\u0000f\u0000 \u0000\"\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000b\u0000l\u0000u\u0000e\u0000:\u0000w\u0000o\u0000r\u0000k\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000:\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000:\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000:\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\u0000\"\u0002\u0002D\u0000\u0002\u0002H\u0002I\r\u0002H\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0002J\r\u0002J\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0002K\u0002L\r\u0002K\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0002M\u0002N\r\u0002M\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u0002N\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0002O\u000e\u0002O\u0000\u0001\u0002P\u0011\u0002P\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000p\u0000o\u0000i\u0000n\u0000t\u0000a\u0000b\u0000o\u0000u\u0000t\u0000:\u0000c\u0000h\u0000a\u0000m\u0000p\u0000-\u0000t\u0000e\u0000s\u0000t\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000:\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000:\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000:\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\r\u0002L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002I\u0000\u0002\u0002Q\u0002R\r\u0002Q\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002R\u0000\u0002\u0002S\u0002T\r\u0002S\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0018\u0002U\r\u0002U\u0000\u0003I\u0000\u0000\u0000\u0012\u0000\u0018\u0002V\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0002V\u0000\u0002\u0002W\r\u0002W\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002T\u0000\u0002\u0002X\u0002Y\r\u0002X\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001e\u0002Z\r\u0002Z\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0002[\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0002[\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002Y\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0002\u0000\u001f\u0000%\u0002^\r\u0002^\u0000\u0003I\u0000\u0000\u0000\u001f\u0000%\u0002_\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002_\u0000\u0002\u0002`\r\u0002`\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0002a\u000e\u0002a\u0000\u0001\u0002b\u0011\u0002b\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002]\u0000\u0002\u0002c\u0002d\r\u0002c\u0000\u0003l\u0000\u0002\u0000&\u0000+\u0002e\r\u0002e\u0000\u0003I\u0000\u0000\u0000&\u0000+\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002d\u0000\u0002\u0002f\u0002g\r\u0002f\u0000\u0003l\u0000\u0002\u0000,\u00001\u0002h\r\u0002h\u0000\u0003I\u0000\u0000\u0000,\u00001\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002g\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0003l\u0000\u0002\u00002\u00008\u0002k\r\u0002k\u0000\u0003I\u0000\u0000\u00002\u00008\u0002l\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002l\u0000\u0002\u0002m\r\u0002m\u0000\u0001m\u0000\u0000\u00003\u00004\u0002n\u000e\u0002n\u0000\u0001\u0002o\u0011\u0002o\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002j\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0003l\u0000\u0002\u00009\u0000?\u0002r\r\u0002r\u0000\u0003I\u0000\u0000\u00009\u0000?\u0002s\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002s\u0000\u0002\u0002t\r\u0002t\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0002u\u000e\u0002u\u0000\u0001\u0002v\u0011\u0002v\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002q\u0000\u0002\u0002w\u0002x\r\u0002w\u0000\u0003l\u0000\u0002\u0000@\u0000E\u0002y\r\u0002y\u0000\u0003I\u0000\u0000\u0000@\u0000E\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002x\u0000\u0002\u0002z\u0002{\r\u0002z\u0000\u0003l\u0000\u0002\u0000F\u0000K\u0002|\r\u0002|\u0000\u0003I\u0000\u0000\u0000F\u0000K\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002{\u0000\u0002\u0002}\u0002~\r\u0002}\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002~\u0000\u0002\u0002~\r\u0002\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000}|{\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002~\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\rz\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0002\u0001z\u0000\u0000\u0010\u0002\u0000\u000byxwvutsrqpo\u000by\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u000bx\u0000\b0\u0000\u0004wait\u0000\u0000\u000bw\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000bv\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000bu\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000bt\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u000bs\u0000\b0\u0000\u0004zoom\u0000\u0000\u000br\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u000bq\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000bp\u0000\u00100\u0000\fclick_ignore\u0000\u0000\no\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0002\u0000\u0007\u0010n\u0000\bml\u0002\u0002k\u000bn\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002m\u0000\u0000\u0002l\u0000\u0000\u0010\u0002\u0000\u0001j\u000bj\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\u0016\u0000\u0010i\u0000\u0016h\u0000@g\u0000>fe\u0000.d\u0000+c\u0000(ba`\u00009_\u0000H^]\ni\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nh\u0000\u0018.miscactvnull\u0000\u0000null\ng\u0000\u0004\nprcs\nf\u0000\u0004\nmbar\ne\u0000\u0004\nmbri\nd\u0000\u0004\nmenE\nc\u0000\u0004\nmenI\nb\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\na\u0000\u0004\ncwin\n`\u0000\u0004\nbutT\n_\u0000\u0018.aevtquitnull\u0000\u0000null\u000b^\u0000\u00050\u0000\u0001e\u0000\u0000\u0002]\u0000\u0000\u0011k\u0000y\u0014\u0000mj\f\u0000\u0001O\u0012\u0000\u0007*j\f\u0000\u0003UO\u0012\u0000A*\/\u0012\u00009*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000eUUUO*k\/\u0012\u0000\u0010*a\u0000\u0010a\u0000\u0011\/j\f\u0000\u000eOPUUUO\u0012\u0000\u0007*j\f\u0000\u0012UOa\u0000\u0013j\f\u0000\u0001W\u0000\fX\u0000\u0014\u0000\u0015j\f\u0000\u0001\u000f\u000e\u0002\u0000\u0007\u0010\\\u0000Q[Z\u0002\u0002Y\u000b\\\u0000\b0\u0000\u0004wait\u0000\u0000\u000e[\u0000\u0002\u0004X\u0002\u0003X\u0000\u0001\u000e\u0002\u0000\u0001\u0000W\u000bW\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002Z\u0000\u0000\u0010\u0002\u0000\u0001V\u000bV\u0000\u00070\u0000\u0003sec\u0000\u0000\u0010\u0002\u0000\u0004\u0000\\\u0000^UT\nU\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nT\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011Y\u0000\u0010%%j\f\u0000\u0002Oj\f\u0000\u0003\u000f\u000e\u0002\u0000\u0007\u0010S\u0000gRQ\u0002\u0002P\u000bS\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000eR\u0000\u0002\u0004O\u0002\u0003O\u0000\u0001\u000e\u0002\u0000\u0001\u0000N\u000bN\u0000\f0\u0000\bfilepath\u0000\u0000\u0002Q\u0000\u0000\u0010\u0002\u0000\u0003MLK\u000bM\u0000\f0\u0000\bfilepath\u0000\u0000\u000bL\u0000\u000b0\u0000\u0007command\u0000\u0000\u000bK\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\b\u0000wJ\u0000IHGF\u0000\nJ\u0000\u0004\nstrq\nI\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nH\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000bG\u0000\u00050\u0000\u0001e\u0000\u0000\u0002F\u0000\u0000\u0011P\u0000,\u0014\u0000\u001a,%EO%j\f\u0000\u0003Oj\f\u0000\u0004W\u0000\fX\u0000\u0005\u0000\u0006j\f\u0000\u0003Oj\f\u0000\u0003\u000f\u000e\u0002\u0000\u0007\u0010E\u0000DC\u0002\u0002B\u000bE\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000eD\u0000\u0002\u0004A\u0002\u0003A\u0000\u0001\u000e\u0002\u0000\u0001\u0000@\u000b@\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002C\u0000\u0000\u0010\u0002\u0000\u0001?\u000b?\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\f\u0000>\u0000=\u0000<;\u0000:\u000098\n>\u0000\u0018.miscactvnull\u0000\u0000null\n=\u0000\u0004\nprcs\n<\u0000\u0004\nmbar\n;\u0000\u0004\nmbri\n:\u0000\u0004\nmenE\n9\u0000\u0004\nmenI\n8\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011B\u00009\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000**\/\u0012\u0000\"*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000bUUUUU\u000f\u000e\u0002\u0000\u0007\u00107\u000065\u0002\u00024\u000b7\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000e6\u0000\u0002\u00043\u0002\u00033\u0000\u0001\u000e\u0002\u0000\u0001\u00002\u000b2\u0000\r0\u0000\tmenu_item\u0000\u0000\u00025\u0000\u0000\u0010\u0002\u0000\u00011\u000b1\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\u0012\u00000\/\u0000.\u0001\u0001-\u0000,+\u0000*\u0000)('\u0000\u0000\n0\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\/\u0000\u0018.sysodelanull\u0000\u0000nmbr\n.\u0000\u0018.miscactvnull\u0000\u0000null\n-\u0000\u0004\nprcs\n,\u0000\u0004\nmbar\n+\u0000\u0004\nmbri\n*\u0000\u0004\nmenE\n)\u0000\u0004\nmenI\n(\u0000\u0004\npnam\n'\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u00114\u0000x%j\f\u0000\u0001Okj\f\u0000\u0002O\u0012\u0000\u0007*j\f\u0000\u0004UO\u0017\u0000[hZ\u0012\u0000O*\/\u0012\u0000G*k\/\u0012\u0000?*\/\u0012\u00007*\/\u0012\u0000\/*-,E\b\u001d\u0000\u0019*\/j\f\u0000\u000fOa\u0000\u0010%j\f\u0000\u0001O\u0016Y\u0000\u0003hOa\u0000\u0011%j\f\u0000\u0001UUUUU[OYOP\u000f\u000e\u0002\u0000\u0007\u0010&\u0001\n%$\u0002\u0002#\u000b&\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002%\u0000\u0000\u0002$\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0011\u0001\u0010\"\u0001<!\u0001:\u0001\u001b \u001f\u001e\u00016\u001d\u00013\u001c\u0001(\u001b\u001a\u00010\n\"\u0000\u0018.miscactvnull\u0000\u0000null\n!\u0000\u0004\nprcs\n \u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u001f\u0000\u0004\nmbar\n\u001e\u0000\u0004\nmbri\n\u001d\u0000\u0004\nmenE\n\u001c\u0000\u0004\nmenI\n\u001b\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0003\u001a\u0000\u0006\u0011#\u0000R\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000A*\/\u0012\u00009j\f\u0000\u0006O*k\/\u0012\u0000+*\/\u0012\u0000#*\/\u0012\u0000\u001b*\/j\f\u0000\u000eOj\f\u0000\u0006O*a\u0000\u0010\/j\f\u0000\u000eUUUUUOP\u000f\u000e\u0002\u0000\u0007\u0010\u0019\u0001A\u0018\u0017\u0002\u0002\u0016\u000b\u0019\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002\u0018\u0000\u0000\u0002\u0017\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\n\u0001c\u0015\u0001a\u0001J\u0014\u0013\u0012\u0001]\u0011\u0001Y\n\u0015\u0000\u0004\nprcs\n\u0014\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0013\u0000\u0004\nmbar\n\u0012\u0000\u0004\nmbri\n\u0011\u0000\u0004\nmenE\u0011\u0016\u0000\/\u0012\u0000+*\/\u0012\u0000#j\f\u0000\u0004O*k\/\u0012\u0000\u0015*\/\u0012\u0000\r*\/\u0012\u0000\u0003hUOPUUUU\u000f\u000e\u0002\u0000\u0007\u0010\u0010\u0001i\u000f\u000e\u0002\u0002\r\u000b\u0010\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u000f\u0000\u0000\u0002\u000e\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u001b\u0001o\f\u0001\u000b\u0001\n\u0001\t\b\u0007\u0001}\u0006\u0001\u0005\u0001\u0001\u0001\u0004\u0003\u0002\u0001\u0001\u0001\u0001\u0000\u0001\u0001\n\f\u0000\u0018.miscactvnull\u0000\u0000null\n\u000b\u0000\u0004\nprcs\n\n\u0000\u0004\ncwin\n\t\u0000\u0004\nsplg\n\b\u0000\u0004\nscra\n\u0007\u0000\u0004\nbutT\n\u0006\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\u0005\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0004\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0003\u0000\b0\u0000\u0004wait\u0000\u0000\n\u0002\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0001\u0000\u0004\npcap\n\u0000\u0000\u0004\nsheE\u0011\r\u0000\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u00008*\/\u0012\u00000*\/k\/k\/m\/\/j\f\u0000\u000bOj\f\u0000\rO*\/\/j\f\u0000\u000bOa\u0000\u0010j\f\u0000\u0011UUO*kk+\u0000\u0012O\u0012\u0000\t*j\f\u0000\u0013OPUO\u0012\u0000'*a\u0000\u0014\/\u0012\u0000\u001da\u0000\u0015a\u0000\u0016\/a\u0000\u0017\/a\u0000\u0018k\/a\u0000\u0019\/j\f\u0000\u000bUUOa\u0000\u001aj\f\u0000\u0011\u000f\u000e\u0002\u0000\u0007\u0010\u0001\u0002\u0002\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0010\u0001\u0002\u001c\u0002\u001a\u0002\u0016\u0002\n\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nenaB\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0011\u0000Y\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000C*\/\u0012\u0000;*\/k\/k\/m\/\/\u0012\u0000'\u0017\u0000\"hZlj\f\u0000\u000bO*,f\u0000\u001d\u0000\u0006\u0016Y\u0000\tj\f\u0000\u000eOP[OYOPUUUO*kk+\u0000\u000f\u000f\u000e\u0002\u0000\u0007\u0010\u0002%\u0002\u0002\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0007\u0002*\u00025\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ninsh\u0003\u0003\u0003\u0001m\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011\u0000\u0016j\f\u0000\u0001O\u0012\u0000\f*lvl\f\u0000\u0006U\u000f\u000e\u0002\u0000\u0007\u0010\u0002\u0002\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0002\u0002\u0002\u0000\u0002\u00028\u0002\u0002\u0002\u0000\u0002\u0002>\u0002\u0002\u0002\u0000\u0002\u0002H\u0002\u0002\u0002\u0000\u0002\u0002S\u0002\u0002\u0002\u0000\u0002\u0002X\u0002\u0002\u0002\u0000\u0002\u0002\\\u0002\u0002\u0002\u0000\u0002\u0002c\u0002\u0002\u0002\u0000\u0002\u0002f\u0002\u0002\u0002\u0000\u0002\u0002i\u0002\u0002\u0002\u0000\u0002\u0002p\u0002\u0002\u0002\u0000\u0002\u0002w\u0002\u0002\u0002\u0000\u0002\u0002z\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u000f\u0002<\u0002O\u0002a\u0002n\u0002u\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\n\u0000\u0004\npsxp\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0011\u0000Lj\f\u0000\u0001O*j+\u0000\u0002O,EO*k+\u0000\u0006Okj\f\u0000\u0007O*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000bO*k+\u0000\tO*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000e\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000x\u0000\t\u0000\n\u0000\u000b\r\u0000\t\u0000\u0001k\u0000\u0000\u0000\u0003\u0000k\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0003I\u0000\u0002\u0000\u0003\u0000\b\u0000\u000f\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u000f\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u00008\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0002\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\t\u0000\u0013\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000\u0016\u000f\u0000\u0016\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0013\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002O\u0000\u0000\u0000\u0014\u0000X\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0002O\u0000\u0000\u0000\u0018\u0000W\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0001k\u0000\u0000\u0000\u001f\u0000V\u0000\u001d\u0002\u0000\u001d\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0002O\u0000\u0000\u0000\u001f\u0000?\u0000 \u0000!\r\u0000 \u0000\u0002O\u0000\u0000\u0000&\u0000>\u0000\"\u0000#\r\u0000\"\u0000\u0002O\u0000\u0000\u0000-\u0000=\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u00004\u0000<\u0000&\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000&\u0000\u00024\u0000\u0000\u00004\u00008\u0000'\n\u0000\u0004\nmenI\r\u0000'\u0000\u0001m\u0000\u0000\u00006\u00007\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u00006\u0000R\u0000e\u0000s\u0000e\u0000t\u0000 \u0000C\u0000o\u0000n\u0000t\u0000e\u0000n\u0000t\u0000 \u0000a\u0000n\u0000d\u0000 \u0000S\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s &\u0002\u0000\u0000\r\u0000%\u0000\u00024\u0000\u0000\u0000-\u00001\u0000*\n\u0000\u0004\nmenE\r\u0000*\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000+\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000#\u0000\u00024\u0000\u0000\u0000&\u0000*\u0000-\n\u0000\u0004\nmbri\r\u0000-\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0000.\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\u001a\u0000i\u0000O\u0000s\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000!\u0000\u00024\u0000\u0000\u0000\u001f\u0000#\u00000\n\u0000\u0004\nmbar\r\u00000\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0001\u0002\u0000\u001f\u0000\u0002\u00001\r\u00001\u0000\u0002O\u0000\u0000\u0000@\u0000V\u00002\u00003\r\u00002\u0000\u0001k\u0000\u0000\u0000G\u0000U\u00004\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003I\u0000\u0002\u0000G\u0000S\u00007\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u00007\u0000\u00024\u0000\u0000\u0000G\u0000O\u00008\n\u0000\u0004\nbutT\r\u00008\u0000\u0001m\u0000\u0000\u0000K\u0000N\u00009\u000e\u00009\u0000\u0001\u0000:\u0011\u0000:\u0000\n\u0000R\u0000e\u0000s\u0000e\u0000t\u0002\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\r\u0000;\u0000\u0003l\u0000\u0002\u0000T\u0000T\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00003\u0000\u00024\u0000\u0000\u0000@\u0000D\u0000<\n\u0000\u0004\ncwin\r\u0000<\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0001\u0002\u0000\u0000\r\u0000\u001c\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c\u0000=\n\u0000\u0004\nprcs\r\u0000=\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000>\u000e\u0000>\u0000\u0001\u0000?\u0011\u0000?\u0000 \u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\u0000@\u000f\u0000@\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0018\u0000\u0002\u0000A\u0000B\r\u0000A\u0000\u0002O\u0000\u0000\u0000Y\u0000c\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000]\u0000b\n\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000D\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\u0000E\u000f\u0000E\u0002P\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0014iPhone Simulator.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0019w3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0663\u0000\u0000\u0000\u0001\u0000\u0014\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0000\u0019\u0013L\u0000\u0002\u0000eMacintosh HD:Developer:Platforms:iPhoneSimulator.platform:Developer:Applications:iPhone Simulator.app\u0000\u0000\u000e\u0000*\u0000\u0014\u0000i\u0000P\u0000h\u0000o\u0000n\u0000e\u0000 \u0000S\u0000i\u0000m\u0000u\u0000l\u0000a\u0000t\u0000o\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000XDeveloper\/Platforms\/iPhoneSimulator.platform\/Developer\/Applications\/iPhone Simulator.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000B\u0000\u0002\u0000F\r\u0000F\u0000\u0003I\u0000\u0002\u0000d\u0000k\u0000G\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000G\u0000\u0001m\u0000\u0000\u0000d\u0000g\u0000H\u000e\u0000H\u0000\u0001\u0000I\u0011\u0000I\u00008\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000R\u0000E\u0000S\u0000E\u0000T\u0000 \u0000S\u0000I\u0000M\u0000U\u0000L\u0000A\u0000T\u0000O\u0000R\u0000 \u0000&\u0000 \u0000Q\u0000U\u0000I\u0000T\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000J\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000s\u0000x\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u0000s\u0000t\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000R\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Q\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u000f\u0000T\u0002\u0000T\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000W\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000W\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0005\u0000X\u0000Y\r\u0000X\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\\\u000e\u0000\\\u0000\u0001\u0000]\u0011\u0000]\u0000\u0012\u0000w\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000[\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\r\u0000Y\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000^\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u000e\u0000s\u0000e\u0000c\u0000o\u0000n\u0000d\u0000s\u0002\u0000\u0000\u0002\u0000V\u0000\u0002\u0000`\r\u0000`\u0000\u0003I\u0000\u0002\u0000\n\u0000\u000f\u0000a\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000a\u0000\u0001o\u0000\u0000\u0000\n\u0000\u000b\u000b\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000O\u0000\u0002\u0000b\u0000c\r\u0000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000c\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000f\u0000g\r\u0000f\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000h\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0000h\u0000\u0002\u0000i\r\u0000i\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000g\u0000\u0001k\u0000\u0000\u0000\u0000\u0000+\u0000j\u0002\u0000j\u0000\u0002\u0000k\u0000l\r\u0000k\u0000\u0003Q\u0000\u0000\u0000\u0000\u0000%\u0000m\u0000n\u0000o\r\u0000m\u0000\u0001k\u0000\u0000\u0000\u0003\u0000\u0018\u0000p\u0002\u0000p\u0000\u0002\u0000q\u0000r\r\u0000q\u0000\u0002r\u0000\u0000\u0000\u0003\u0000\n\u0000s\u0000t\r\u0000s\u0000\u0002b\u0000\u0000\u0000\u0003\u0000\b\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0000w\u000e\u0000w\u0000\u0001\u0000x\u0011\u0000x\u0000\n\u0000o\u0000p\u0000e\u0000n\u0000 \r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\u0007\u0000y\u0000z\r\u0000y\u0000\u00011\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nstrq\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\r\u0000t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000r\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0012\u0000}\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000}\u0000\u0002b\u0000\u0000\u0000\u000b\u0000\u000e\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000J\u0000B\u0000E\u0000G\u0000I\u0000N\u0000:\u0000 \u0000O\u0000p\u0000e\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000c\u0000o\u0000m\u0000m\u0000a\u0000n\u0000d\u0000:\r\u0000\u0000\u0001o\u0000\u0000\u0000\f\u0000\r\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000|\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0013\u0000\u0018\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000n\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\r\u0000o\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000 \u0000!\u000b\u0000\u00050\u0000\u0001e\u0000\u0000\u0002\u0000\u0000\u0002\u0000l\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000&\u0000+\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000D\u0000O\u0000N\u0000E\u0000:\u0000 \u0000o\u0000e\u0000p\u0000n\u0000 \u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\f\u0000\u000f\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u00008\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000b\u00008\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000f\u00007\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u0016\u00006\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001d\u00005\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000$\u00004\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000+\u00003\u0000\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000+\u0000\/\u0000\n\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000-\u0000.\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u0000$\u0000(\u0000\n\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u001d\u0000!\u0000\n\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001f\u0000 \u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0000\n\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000\n\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002i\u0000\u0000\u0000\u0010\u0000\u0013\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000w\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0007\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000B\u0000e\u0000g\u0000i\u0000n\u0000:\u0000 \u0000W\u0000a\u0000i\u0000t\u0000 \u0000f\u0000o\u0000r\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\b\u0000\b\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\b\u0000\r\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u000e\u0000\u0018\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0017\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001T\u0000\u0000\u0000\u0019\u0000u\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\u001e\u0000p\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000\"\u0000o\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000)\u0000n\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00000\u0000m\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u00007\u0000l\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000>\u0000k\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000>\u0000a\u0000\u0000\r\u0000\u0000\u0002E\u0000\u0000\u0000>\u0000F\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000>\u0000D\u0000\r\u0000\u0000\u0001e\u0000\u0000\u0000>\u0000D\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000>\u0000D\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000A\u0000C\n\u0000\u0004\npnam\r\u0000\u0000\u00012\u0000\u0001\u0000>\u0000A\n\u0000\u0004\nmenI\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000D\u0000E\u000b\u0000\r0\u0000\tmenu_item\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000I\u0000]\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000I\u0000I\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000I\u0000Q\u0000~\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0000\u0000\u00024\u0000\u0000\u0000I\u0000M}\u0000\n}\u0000\u0004\nmenI\r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L|\u000b|\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000R\u0000[{\u0000z\n{\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000R\u0000W\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000R\u0000U\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000Vy\u000by\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002z\u0000\u0000\u0002\u0000\u0000\u0002\u0000x\r\u0000\u0000\u0000S\u0000\u0000\u0000\\\u0000]\u0002x\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0003I\u0000\u0002\u0000b\u0000kv\u0000u\nv\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0002b\u0000\u0000\u0000b\u0000g\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000b\u0000e\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000,\u0000s\u0000t\u0000i\u0000l\u0000l\u0000 \u0000w\u0000a\u0000i\u0000t\u0000i\u0000n\u0000g\u0000 \u0000f\u0000o\u0000r\u0000 \u0000.\u0000.\u0000.\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000e\u0000ft\u000bt\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002u\u0000\u0000\u0002w\u0000\u0000\r\u0000\u0000\u00024\u0000\u0000\u00007\u0000;s\u0000\ns\u0000\u0004\nmenE\r\u0000\u0000\u0001m\u0000\u0000\u00009\u0000:\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u00000\u00004r\u0000\nr\u0000\u0004\nmbri\r\u0000\u0000\u0001m\u0000\u0000\u00002\u00003\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0000\u0000\u00024\u0000\u0000\u0000)\u0000-q\u0000\nq\u0000\u0004\nmbar\r\u0000\u0000\u0001m\u0000\u0000\u0000+\u0000,p\u0003p\u0000\u0001\r\u0000\u0000\u00024\u0000\u0000\u0000\"\u0000&o\u0000\no\u0000\u0004\nprcs\r\u0000\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000\u000e\u0000\u0000\u0001\u0001\u0000\u0011\u0001\u0000\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0000\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0001\u0001\u000f\u0001\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0002\u0001\u0003\r\u0001\u0002\u0000\u0003l\u0000\u0002\u0000v\u0000vnml\u0001n\u0000\u0000\u0001m\u0000\u0000\u0001l\u0000\u0000\u0002\u0001\u0003\u0000\u0002\u0001\u0004k\r\u0001\u0004\u0000\u0003l\u0000\u0002\u0000v\u0000vjih\u0001j\u0000\u0000\u0001i\u0000\u0000\u0001h\u0000\u0000\u0002k\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0005\u0001\u0006\r\u0001\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000gfe\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0002\u0001\u0006\u0000\u0002\u0001\u0007\u0001\b\r\u0001\u0007\u0000\u0002i\u0000\u0000\u0000\u0014\u0000\u0017\u0001\t\u0001\n\r\u0001\t\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000dcb\u000bd\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002c\u0000\u0000\u0002b\u0000\u0000\r\u0001\n\u0000\u0001k\u0000\u0000\u0000\u0000\u0000Q\u0001\u000b\u0002\u0001\u000b\u0000\u0002\u0001\f\u0001\r\r\u0001\f\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u000e\u0001\u000f\r\u0001\u000e\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\ta`_\na\u0000\u0018.miscactvnull\u0000\u0000null\u0001`\u0000\u0000\u0002_\u0000\u0000\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u0010\u000f\u0001\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\r\u0000\u0002\u0001\u0011\u0001\u0012\r\u0001\u0011\u0000\u0002O\u0000\u0000\u0000\u000b\u0000O\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0002O\u0000\u0000\u0000\u000f\u0000N\u0001\u0015\u0001\u0016\r\u0001\u0015\u0000\u0001k\u0000\u0000\u0000\u0016\u0000M\u0001\u0017\u0002\u0001\u0017\u0000\u0002\u0001\u0018\u0001\u0019\r\u0001\u0018\u0000\u0003I\u0000\u0002\u0000\u0016\u0000\u001b^\u0001\u001a]\n^\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0001\u001b\b\u0001\u001b\u0000\b?\u0659\u0002]\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001c\\\r\u0001\u001c\u0000\u0002O\u0000\u0000\u0000\u001c\u0000M\u0001\u001d\u0001\u001e\r\u0001\u001d\u0000\u0002O\u0000\u0000\u0000#\u0000L\u0001\u001f\u0001 \r\u0001\u001f\u0000\u0002O\u0000\u0000\u0000*\u0000K\u0001!\u0001\"\r\u0001!\u0000\u0001k\u0000\u0000\u00001\u0000J\u0001#\u0002\u0001#\u0000\u0002\u0001$\u0001%\r\u0001$\u0000\u0003I\u0000\u0002\u00001\u00009[\u0001&Z\n[\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001&\u0000\u00024\u0000\u0000\u00001\u00005Y\u0001'\nY\u0000\u0004\nmenI\r\u0001'\u0000\u0001m\u0000\u0000\u00003\u00004\u0001(\u000e\u0001(\u0000\u0001\u0001)\u0011\u0001)\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002Z\u0000\u0000\u0002\u0001%\u0000\u0002\u0001*\u0001+\r\u0001*\u0000\u0003I\u0000\u0002\u0000:\u0000?X\u0001,W\nX\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001,\u0000\u0001m\u0000\u0000\u0000:\u0000;V\u0003V\u0000\u0006\u0002W\u0000\u0000\u0002\u0001+\u0000\u0002\u0001-U\r\u0001-\u0000\u0003I\u0000\u0002\u0000@\u0000JT\u0001.S\nT\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001.\u0000\u00024\u0000\u0000\u0000@\u0000FR\u0001\/\nR\u0000\u0004\nmenI\r\u0001\/\u0000\u0001m\u0000\u0000\u0000B\u0000E\u00010\u000e\u00010\u0000\u0001\u00011\u0011\u00011\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002S\u0000\u0000\u0002U\u0000\u0000\r\u0001\"\u0000\u00024\u0000\u0000\u0000*\u0000.Q\u00012\nQ\u0000\u0004\nmenE\r\u00012\u0000\u0001m\u0000\u0000\u0000,\u0000-\u00013\u000e\u00013\u0000\u0001\u00014\u0011\u00014\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001 \u0000\u00024\u0000\u0000\u0000#\u0000'P\u00015\nP\u0000\u0004\nmbri\r\u00015\u0000\u0001m\u0000\u0000\u0000%\u0000&\u00016\u000e\u00016\u0000\u0001\u00017\u0011\u00017\u0000\b\u0000F\u0000i\u0000l\u0000e\r\u0001\u001e\u0000\u00024\u0000\u0000\u0000\u001c\u0000 O\u00018\nO\u0000\u0004\nmbar\r\u00018\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001fN\u0003N\u0000\u0001\u0002\\\u0000\u0000\r\u0001\u0016\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013M\u00019\nM\u0000\u0004\nprcs\r\u00019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001:\u000e\u0001:\u0000\u0001\u0001;\u0011\u0001;\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0014\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001<\u000f\u0001<\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0012\u0000\u0002\u0001=L\r\u0001=\u0000\u0003l\u0000\u0002\u0000P\u0000PKJI\u0001K\u0000\u0000\u0001J\u0000\u0000\u0001I\u0000\u0000\u0002L\u0000\u0000\u0002\u0001\b\u0000\u0002\u0001>\u0001?\r\u0001>\u0000\u0002i\u0000\u0000\u0000\u0018\u0000\u001b\u0001@\u0001A\r\u0001@\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000HGF\u000bH\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002G\u0000\u0000\u0002F\u0000\u0000\r\u0001A\u0000\u0002O\u0000\u0000\u0000\u0000\u0000.\u0001B\u0001C\r\u0001B\u0000\u0002O\u0000\u0000\u0000\u0004\u0000-\u0001D\u0001E\r\u0001D\u0000\u0001k\u0000\u0000\u0000\u000b\u0000,\u0001F\u0002\u0001F\u0000\u0002\u0001G\u0001H\r\u0001G\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010E\u0001ID\nE\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001I\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001J\b\u0001J\u0000\b?\u0659\u0002D\u0000\u0000\u0002\u0001H\u0000\u0002\u0001KC\r\u0001K\u0000\u0002O\u0000\u0000\u0000\u0011\u0000,\u0001L\u0001M\r\u0001L\u0000\u0002O\u0000\u0000\u0000\u0018\u0000+\u0001N\u0001O\r\u0001N\u0000\u0001k\u0000\u0000\u0000\u001f\u0000*\u0001P\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0002O\u0000\u0000\u0000\u001f\u0000(\u0001S\u0001T\r\u0001S\u0000\u0003l\u0000\u0006\u0000&\u0000&B\u0001U\u0001V\u0001B\u0000\u0000\f\u0001U\u0000\u001c\u0000\u0016click menu item \"Zoom\"\u0000\u0002\u0000\u0000\u000e\u0001V\u0000\u0001\u0001W\u0011\u0001W\u0000,\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u0000\"\u0000Z\u0000o\u0000o\u0000m\u0000\"\r\u0001T\u0000\u00024\u0000\u0000\u0000\u001f\u0000#A\u0001X\nA\u0000\u0004\nmenE\r\u0001X\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0001Y\u000e\u0001Y\u0000\u0001\u0001Z\u0011\u0001Z\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\u0002\u0001R\u0000\u0002\u0001[@\r\u0001[\u0000\u0003l\u0000\u0002\u0000)\u0000)?>=\u0001?\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002@\u0000\u0000\r\u0001O\u0000\u00024\u0000\u0000\u0000\u0018\u0000\u001c<\u0001\\\n<\u0000\u0004\nmbri\r\u0001\\\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0001]\u000e\u0001]\u0000\u0001\u0001^\u0011\u0001^\u0000\f\u0000W\u0000i\u0000n\u0000d\u0000o\u0000w\r\u0001M\u0000\u00024\u0000\u0000\u0000\u0011\u0000\u0015;\u0001_\n;\u0000\u0004\nmbar\r\u0001_\u0000\u0001m\u0000\u0000\u0000\u0013\u0000\u0014:\u0003:\u0000\u0001\u0002C\u0000\u0000\r\u0001E\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b9\u0001`\n9\u0000\u0004\nprcs\r\u0001`\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0001a\u000e\u0001a\u0000\u0001\u0001b\u0011\u0001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001C\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001c\u000f\u0001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001?\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000876\u00018\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u0001g\r\u0001f\u0000\u0002i\u0000\u0000\u0000\u001c\u0000\u001f\u0001h\u0001i\r\u0001h\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000543\u000b5\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u00024\u0000\u0000\u00023\u0000\u0000\r\u0001i\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0001j\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001m\u0001n\r\u0001m\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t210\n2\u0000\u0018.miscactvnull\u0000\u0000null\u00011\u0000\u0000\u00020\u0000\u0000\r\u0001n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001o\u000f\u0001o\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001l\u0000\u0002\u0001p\u0001q\r\u0001p\u0000\u0002O\u0000\u0000\u0000\u000b\u0000F\u0001r\u0001s\r\u0001r\u0000\u0002O\u0000\u0000\u0000\u000f\u0000E\u0001t\u0001u\r\u0001t\u0000\u0001k\u0000\u0000\u0000\u0016\u0000D\u0001v\u0002\u0001v\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0003I\u0000\u0002\u0000\u0016\u0000*\/\u0001y.\n\/\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001y\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0001z\u0001{\r\u0001z\u0000\u00024\u0000\u0000\u0000#\u0000&-\u0001|\n-\u0000\u0004\nbutT\r\u0001|\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0001}\u000e\u0001}\u0000\u0001\u0001~\u0011\u0001~\u0000.\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000 \u0000A\u0000l\u0000l\u0000 \u0000R\u0000e\u0000s\u0000u\u0000l\u0000t\u0000s\u0000 \u0000N\u0000o\u0000w &\r\u0001{\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000 \u0000#,\u0001\n,\u0000\u0004\nscra\r\u0001\u0000\u0001m\u0000\u0000\u0000!\u0000\"+\u0003+\u0000\u0003\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001d\u0000 *\u0001\n*\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f)\u0003)\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d(\u0001\n(\u0000\u0004\nsplg\r\u0001\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c'\u0003'\u0000\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a&\u0001\n&\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002.\u0000\u0000\u0002\u0001x\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000+\u00000%\u0001$\n%\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0001\b\u0001\u0000\b?333333\u0002$\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u00001\u0000<#\u0001\"\n#\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u00001\u00008\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u00005\u00008!\u0001\n!\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u00006\u00007\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\b\u0000O\u0000p\u0000e\u0000n\r\u0001\u0000\u00024\u0000\u0000\u00001\u00005 \u0001\n \u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u00003\u00004\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0002\"\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u001f\r\u0001\u0000\u0003I\u0000\u0002\u0000=\u0000D\u001e\u0001\u001d\n\u001e\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000=\u0000@\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000e\u0000x\u0000p\u0000o\u0000r\u0000t\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000 \u0000l\u0000o\u0000g\u0000 \u0000f\u0000i\u0000l\u0000e\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\r\u0001u\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u001c\u0001\n\u001c\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001s\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001q\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000G\u0000M\u001b\u0001\u001a\u000b\u001b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0019\r\u0001\u0000\u0001m\u0000\u0000\u0000H\u0000I\u0018\u0003\u0018\u0000\u0001\u0002\u0019\u0000\u0000\u0002\u001a\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000N\u0000Z\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000R\u0000Y\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000R\u0000W\u0017\u0016\u0015\n\u0017\u0000\u0018.aevtquitnull\u0000\u0000null\u0001\u0016\u0000\u0000\u0002\u0015\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0014\r\u0001\u0000\u0003l\u0000\u0002\u0000X\u0000X\u0013\u0012\u0011\u0001\u0013\u0000\u0000\u0001\u0012\u0000\u0000\u0001\u0011\u0000\u0000\u0002\u0014\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000N\u0000O\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000[\u0000\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000_\u0000\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000h\u0000\u0010\u0001\u000f\n\u0010\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000z\u0000\u000e\u0001\n\u000e\u0000\u0004\nbutT\r\u0001\u0000\u0001m\u0000\u0000\u0000{\u0000~\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0014\u0000D\u0000o\u0000n \u0019\u0000t\u0000 \u0000S\u0000a\u0000v\u0000e\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000z\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000u\u0000z\r\u0001\n\r\u0000\u0004\nsheE\r\u0001\u0000\u0001m\u0000\u0000\u0000x\u0000y\f\u0003\f\u0000\u0001\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000u\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000p\u0000u\u000b\u0001\n\u000b\u0000\u0004\ncwin\r\u0001\u0000\u0001m\u0000\u0000\u0000q\u0000t\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0002n\u0000\u0000\u0000h\u0000p\u0001\u0001\r\u0001\u0000\u00024\u0000\u0000\u0000i\u0000p\n\u0001\n\n\u0000\u0004\npcap\r\u0001\u0000\u0001m\u0000\u0000\u0000l\u0000o\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000h\u0000i\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u000f\u0000\u0000\r\u0001\u0000\u00024\u0000\u0000\u0000_\u0000e\t\u0001\n\t\u0000\u0004\nprcs\r\u0001\u0000\u0001m\u0000\u0000\u0000a\u0000d\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000[\u0000\\\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\b\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0000\u0007\u0001\u0006\n\u0007\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u00008\u0000q\u0000u\u0000i\u0000t\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0002\u0006\u0000\u0000\u0002\b\u0000\u0000\u0002\u0001g\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0004\u0003\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0001\u0003\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002i\u0000\u0000\u0000 \u0000#\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0001\u0000\u000b\u0002\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0001\u0000\u0000\u0002\u0000\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000X\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0000\u0000\n\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0001\u000f\u0001\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000@\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001x\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0019\u0013^\u000fInstruments.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00195I\u03f3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u0016l\u0000\u0000\u0000\u0001\u0000\b\u0000\u0019\u0013^\u0000\u0019\u0013L\u0000\u0002\u00003Macintosh HD:Developer:Applications:Instruments.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&Developer\/Applications\/Instruments.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000b\u0000Q\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u000f\u0000P\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0001\u0000\u0016\u0000O\u0001\u0001\u0001\r\u0001\u0000\u0002O\u0000\u0000\u0000\u0016\u0000O\u0001\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000)\u0000N\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001T\u0000\u0000\u0000)\u0000L\u0001\r\u0001\u0000\u0001k\u0000\u0000\u0000.\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000.\u00003\u0001\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0001\u0000\u0001m\u0000\u0000\u0000.\u0000\/\u0003\u0000\u0002\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u00004\u00004\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0004Z\u0000\u0000\u00004\u0000G\u0001\u0001\u0001\r\u0001\u0000\u0002=\u0000\u0000\u00004\u00009\u0001\u0001\r\u0001\u0000\u00011\u0000\u0000\u00004\u00007\n\u0000\u0004\nenaB\r\u0001\u0000\u0001m\u0000\u0000\u00007\u00008\n\u0000\b\u000bboovfals\r\u0001\u0000\u0000S\u0000\u0000\u0000<\u0000=\u0002\u0000\u0000\r\u0001\u0000\u0001k\u0000\u0000\u0000@\u0000G\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0002\u0000@\u0000E\u0001\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001m\u0000\u0000\u0000@\u0000A\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000P\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000i\u0000s\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000.\u0000.\u0000.\u0000 \u0000t\u0000r\u0000y\u0000 \u0000a\u0000g\u0000a\u0000i\u0000n\u0000 \u0000i\u0000n\u0000 \u00003\u0000 \u0000s\u0000e\u0000c\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0000F\u0000F\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0002\u0000\r\u0001\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002\u0000\u0000\u0002\u0002\u0001\u0002\u0002\r\u0002\u0001\u0000\u0003l\u0000\u0006\u0000M\u0000M\u0002\u0003\u0002\u0004\u0001\u0000\u0000\f\u0002\u0003\u0000,\u0000&click button \"Open\" of window \"Export\"\u0000\u0002\u0000\u0000\u000e\u0002\u0004\u0000\u0001\u0002\u0005\u0011\u0002\u0005\u0000L\u0000c\u0000l\u0000i\u0000c\u0000k\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0000 \u0000\"\u0000O\u0000p\u0000e\u0000n\u0000\"\u0000 \u0000o\u0000f\u0000 \u0000w\u0000i\u0000n\u0000d\u0000o\u0000w\u0000 \u0000\"\u0000E\u0000x\u0000p\u0000o\u0000r\u0000t\u0000\"\u0002\u0002\u0002\u0000\u0002\u0002\u0006\r\u0002\u0006\u0000\u0003l\u0000\u0002\u0000M\u0000M\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0001\u0000\u0002n\u0000\u0000\u0000\u0016\u0000&\u0002\u0007\u0002\b\r\u0002\u0007\u0000\u00024\u0000\u0000\u0000#\u0000&\u0002\t\n\u0000\u0004\nbutT\r\u0002\t\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0002\n\u000e\u0002\n\u0000\u0001\u0002\u000b\u0011\u0002\u000b\u0000\u0016\u0000S\u0000t\u0000o\u0000p\u0000 \u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0002\b\u0000\u0002n\u0000\u0000\u0000\u0016\u0000#\u0002\f\u0002\r\r\u0002\f\u0000\u00024\u0000\u0000\u0000 \u0000#\u0002\u000e\n\u0000\u0004\nscra\r\u0002\u000e\u0000\u0001m\u0000\u0000\u0000!\u0000\"\u0003\u0000\u0003\r\u0002\r\u0000\u0002n\u0000\u0000\u0000\u0016\u0000 \u0002\u000f\u0002\u0010\r\u0002\u000f\u0000\u00024\u0000\u0000\u0000\u001d\u0000 \u0002\u0011\n\u0000\u0004\nsplg\r\u0002\u0011\u0000\u0001m\u0000\u0000\u0000\u001e\u0000\u001f\u0003\u0000\u0001\r\u0002\u0010\u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001d\u0002\u0012\u0002\u0013\r\u0002\u0012\u0000\u00024\u0000\u0000\u0000\u001a\u0000\u001d\u0002\u0014\n\u0000\u0004\nsplg\r\u0002\u0014\u0000\u0001m\u0000\u0000\u0000\u001b\u0000\u001c\u0003\u0000\u0001\r\u0002\u0013\u0000\u00024\u0000\u0000\u0000\u0016\u0000\u001a\u0002\u0015\n\u0000\u0004\ncwin\r\u0002\u0015\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0002\u0016\u000e\u0002\u0016\u0000\u0001\u0002\u0017\u0011\u0002\u0017\u0000*\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\f\u0001\u0000\u0012\u0000\f stop script\u0000\u0002\u0000\u0000\u000e\u0001\u0000\u0001\u0002\u0018\u0011\u0002\u0018\u0000\u0018\u0000 \u0000s\u0000t\u0000o\u0000p\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\r\u0001\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0002\u0019\n\u0000\u0004\nprcs\r\u0002\u0019\u0000\u0001m\u0000\u0000\u0000\u0011\u0000\u0012\u0002\u001a\u000e\u0002\u001a\u0000\u0001\u0002\u001b\u0011\u0002\u001b\u0000\u0016\u0000I\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\r\u0001\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0002\u001c\u000f\u0002\u001c\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0002\u001d\r\u0002\u001d\u0000\u0003I\u0000\u0000\u0000R\u0000X\u0002\u001e\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0002\u0002\u001e\u0000\u0002\u0002\u001f\r\u0002\u001f\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0002 \u0002!\r\u0002 \u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002!\u0000\u0002\u0002\"\u0002#\r\u0002\"\u0000\u0002i\u0000\u0000\u0000$\u0000'\u0002$\u0002%\r\u0002$\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0002%\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0015\u0002&\u0002\u0002&\u0000\u0002\u0002'\u0002(\r\u0002'\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002)\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002)\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002*\u000e\u0002*\u0000\u0001\u0002+\u0011\u0002+\u0000,\u0000C\u0000l\u0000i\u0000c\u0000k\u0000 \u0000o\u0000n\u0000 \u0000i\u0000g\u0000n\u0000o\u0000r\u0000e\u0000 \u0000b\u0000u\u0000t\u0000t\u0000o\u0000n\u0002\u0000\u0000\u0002\u0002(\u0000\u0002\u0002,\r\u0002,\u0000\u0002O\u0000\u0000\u0000\u0006\u0000\u0015\u0002-\u0002.\r\u0002-\u0000\u0003I\u0000\u0002\u0000\n\u0000\u0014\u0002\/\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0001\u0000\u0000\u0006\u0002\/\u0000\u0003\u00020\n\u0000\u0004\ninsh\r\u00020\u0000\u0001J\u0000\u0000\u0000\f\u0000\u0010\u00021\u0002\u00021\u0000\u0002\u00022\u00023\r\u00022\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0003\u0003\u0002\u00023\u0000\u0002\u00024\r\u00024\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0003\u0001m\u0002\u0000\u0000\u0006\u0000\u0000\r\u0002.\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u00025\u000f\u00025\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000uH+\u0000\u0000\u0000\u0004\u036a\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0005<'u\u0366\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000v@J\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000v>&\u0000\u0000\u0000\u0001\u0000\f\u0000\u0004\u036a\u0000\u0004f\u0000\u0004f\u0000\u0002\u0000:Macintosh HD:System:Library:CoreServices:System Events.app\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0002#\u0000\u0002\u00026\u00027\r\u00026\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00027\u0000\u0002\u00028\u00029\r\u00028\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0005\u0002:\r\u0002:\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0002;\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002;\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0002<\u000e\u0002<\u0000\u0001\u0002=\u0011\u0002=\u0000(\u0000S\u0000t\u0000a\u0000r\u0000t\u0000 \u0000g\u0000u\u0000i\u0000-\u0000a\u0000u\u0000t\u0000o\u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00029\u0000\u0002\u0002>\u0002?\r\u0002>\u0000\u0003l\u0000\u0002\u0000\u0006\u0000\u000b\u0002@\r\u0002@\u0000\u0003I\u0000\u0000\u0000\u0006\u0000\u000b\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002?\u0000\u0002\u0002A\u0002B\r\u0002A\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002B\u0000\u0002\u0002C\u0002D\r\u0002C\u0000\u0003l\u0000\u0002\u0000\f\u0000\u0011\u0002E\r\u0002E\u0000\u0002r\u0000\u0000\u0000\f\u0000\u0011\u0002F\u0002G\r\u0002F\u0000\u0002n\u0000\u0000\u0000\f\u0000\u000f\u0002H\u0002I\r\u0002H\u0000\u00011\u0000\u0000\u0000\r\u0000\u000f\n\u0000\u0004\npsxp\r\u0002I\u0000\u0001m\u0000\u0000\u0000\f\u0000\r\u0002J\u000e\u0002J\u0000\u0001\u0002K\u0011\u0002K\u0000\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000:\u0000U\u0000s\u0000e\u0000r\u0000s\u0000:\u0000b\u0000l\u0000u\u0000e\u0000:\u0000w\u0000o\u0000r\u0000k\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000:\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000:\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000:\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000:\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\r\u0002G\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002D\u0000\u0002\u0002L\u0002M\r\u0002L\u0000\u0003l\u0000\u0002\u0000\u0012\u0000\u0018\u0002N\r\u0002N\u0000\u0003I\u0000\u0000\u0000\u0012\u0000\u0018\u0002O\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u0002\u0002O\u0000\u0002\u0002P\r\u0002P\u0000\u0001o\u0000\u0000\u0000\u0013\u0000\u0014\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002M\u0000\u0002\u0002Q\u0002R\r\u0002Q\u0000\u0003l\u0000\u0002\u0000\u0019\u0000\u001e\u0002S\r\u0002S\u0000\u0003I\u0000\u0002\u0000\u0019\u0000\u001e\u0002T\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0002T\u0000\u0001m\u0000\u0000\u0000\u0019\u0000\u001a\u0003\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002R\u0000\u0002\u0002U\u0002V\r\u0002U\u0000\u0003l\u0000\u0002\u0000\u001f\u0000%\u0002W\r\u0002W\u0000\u0003I\u0000\u0000\u0000\u001f\u0000%\u0002X\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002X\u0000\u0002\u0002Y\r\u0002Y\u0000\u0001m\u0000\u0000\u0000 \u0000!\u0002Z\u000e\u0002Z\u0000\u0001\u0002[\u0011\u0002[\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002V\u0000\u0002\u0002\\\u0002]\r\u0002\\\u0000\u0003l\u0000\u0002\u0000&\u0000+\u0002^\r\u0002^\u0000\u0003I\u0000\u0000\u0000&\u0000+\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002]\u0000\u0002\u0002_\u0002`\r\u0002_\u0000\u0003l\u0000\u0002\u0000,\u00001\u0002a\r\u0002a\u0000\u0003I\u0000\u0000\u0000,\u00001\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002`\u0000\u0002\u0002b\u0002c\r\u0002b\u0000\u0003l\u0000\u0002\u00002\u00008\u0002d\r\u0002d\u0000\u0003I\u0000\u0000\u00002\u00008\u0002e\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002e\u0000\u0002\u0002f\r\u0002f\u0000\u0001m\u0000\u0000\u00003\u00004\u0002g\u000e\u0002g\u0000\u0001\u0002h\u0011\u0002h\u0000\u0014\u0000S\u0000t\u0000o\u0000p\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002c\u0000\u0002\u0002i\u0002j\r\u0002i\u0000\u0003l\u0000\u0002\u00009\u0000?\u0002k\r\u0002k\u0000\u0003I\u0000\u0000\u00009\u0000?\u0002l\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u0002\u0002l\u0000\u0002\u0002m\r\u0002m\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0002n\u000e\u0002n\u0000\u0001\u0002o\u0011\u0002o\u0000\u0018\u0000R\u0000e\u0000c\u0000o\u0000r\u0000d\u0000 \u0000T\u0000r\u0000a\u0000c\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002j\u0000\u0002\u0002p\u0002q\r\u0002p\u0000\u0003l\u0000\u0002\u0000@\u0000E\u0002r\r\u0002r\u0000\u0003I\u0000\u0000\u0000@\u0000E\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002q\u0000\u0002\u0002s\u0002t\r\u0002s\u0000\u0003l\u0000\u0002\u0000F\u0000K\u0002u\r\u0002u\u0000\u0003I\u0000\u0000\u0000F\u0000K\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002t\u0000\u0002\u0002v\u0002w\r\u0002v\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0002w\u0000\u0002\u0002x\r\u0002x\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0018~\u0002y\u0002z\u0002{\u0002|\u0002}\u0002~\u0002\u0002\u0002\u0002\u0002\u0002\u0002}|{zyxwvut\u0001~\u0000\u0000\u0010\u0002y\u0000\u0016srqponmlkjihgfedcba`_^\u000bs\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u000br\u0000\b0\u0000\u0004wait\u0000\u0000\u000bq\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000bp\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000bo\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000bn\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u000bm\u0000\b0\u0000\u0004zoom\u0000\u0000\u000bl\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u000bk\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000bj\u0000\u00100\u0000\fclick_ignore\u0000\u0000\ni\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000bh\u0000\f0\u0000\bfilepath\u0000\u0000\u0001g\u0000\u0000\u0001f\u0000\u0000\u0001e\u0000\u0000\u0001d\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0001a\u0000\u0000\u0001`\u0000\u0000\u0001_\u0000\u0000\u0001^\u0000\u0000\u000e\u0002z\u0000\u0007\u0010]\u0000\b\\[\u0002\u0002Z\u000b]\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\u0002\\\u0000\u0000\u0002[\u0000\u0000\u0010\u0002\u0000\u0001Y\u000bY\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\u0016\u0000\u0010X\u0000\u0016W\u0000@V\u0000>UT\u0000.S\u0000+R\u0000(QPO\u00009N\u0000HML\nX\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nW\u0000\u0018.miscactvnull\u0000\u0000null\nV\u0000\u0004\nprcs\nU\u0000\u0004\nmbar\nT\u0000\u0004\nmbri\nS\u0000\u0004\nmenE\nR\u0000\u0004\nmenI\nQ\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\nP\u0000\u0004\ncwin\nO\u0000\u0004\nbutT\nN\u0000\u0018.aevtquitnull\u0000\u0000null\u000bM\u0000\u00050\u0000\u0001e\u0000\u0000\u0002L\u0000\u0000\u0011Z\u0000y\u0014\u0000mj\f\u0000\u0001O\u0012\u0000\u0007*j\f\u0000\u0003UO\u0012\u0000A*\/\u0012\u00009*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000eUUUO*k\/\u0012\u0000\u0010*a\u0000\u0010a\u0000\u0011\/j\f\u0000\u000eOPUUUO\u0012\u0000\u0007*j\f\u0000\u0012UOa\u0000\u0013j\f\u0000\u0001W\u0000\fX\u0000\u0014\u0000\u0015j\f\u0000\u0001\u000f\u000e\u0002{\u0000\u0007\u0010K\u0000QJI\u0002\u0002H\u000bK\u0000\b0\u0000\u0004wait\u0000\u0000\u000eJ\u0000\u0002\u0004G\u0002\u0003G\u0000\u0001\u000e\u0002\u0000\u0001\u0000F\u000bF\u0000\u00070\u0000\u0003sec\u0000\u0000\u0002I\u0000\u0000\u0010\u0002\u0000\u0001E\u000bE\u0000\u00070\u0000\u0003sec\u0000\u0000\u0010\u0002\u0000\u0004\u0000\\\u0000^DC\nD\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\nC\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011H\u0000\u0010%%j\f\u0000\u0002Oj\f\u0000\u0003\u000f\u000e\u0002|\u0000\u0007\u0010B\u0000gA@\u0002\u0002?\u000bB\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\u000eA\u0000\u0002\u0004>\u0002\u0003>\u0000\u0001\u000e\u0002\u0000\u0001\u0000=\u000b=\u0000\f0\u0000\bfilepath\u0000\u0000\u0002@\u0000\u0000\u0010\u0002\u0000\u0003<;:\u000b<\u0000\f0\u0000\bfilepath\u0000\u0000\u000b;\u0000\u000b0\u0000\u0007command\u0000\u0000\u000b:\u0000\u00050\u0000\u0001e\u0000\u0000\u0010\u0002\u0000\b\u0000w9\u00008765\u0000\n9\u0000\u0004\nstrq\n8\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n7\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u000b6\u0000\u00050\u0000\u0001e\u0000\u0000\u00025\u0000\u0000\u0011?\u0000,\u0014\u0000\u001a,%EO%j\f\u0000\u0003Oj\f\u0000\u0004W\u0000\fX\u0000\u0005\u0000\u0006j\f\u0000\u0003Oj\f\u0000\u0003\u000f\u000e\u0002}\u0000\u0007\u00104\u000032\u0002\u00021\u000b4\u0000\u001a0\u0000\u0016click_instruments_menu\u0000\u0000\u000e3\u0000\u0002\u00040\u0002\u00030\u0000\u0001\u000e\u0002\u0000\u0001\u0000\/\u000b\/\u0000\r0\u0000\tmenu_item\u0000\u0000\u00022\u0000\u0000\u0010\u0002\u0000\u0001.\u000b.\u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\f\u0000-\u0000,\u0000+*\u0000)\u0000('\n-\u0000\u0018.miscactvnull\u0000\u0000null\n,\u0000\u0004\nprcs\n+\u0000\u0004\nmbar\n*\u0000\u0004\nmbri\n)\u0000\u0004\nmenE\n(\u0000\u0004\nmenI\n'\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u00111\u00009\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000**\/\u0012\u0000\"*k\/\u0012\u0000\u001a*\/\u0012\u0000\u0012*\/\u0012\u0000\n*\/j\f\u0000\u000bUUUUU\u000f\u000e\u0002~\u0000\u0007\u0010&\u0000%$\u0002\u0002#\u000b&\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000e%\u0000\u0002\u0004\"\u0002\u0003\"\u0000\u0001\u000e\u0002\u0000\u0001\u0000!\u000b!\u0000\r0\u0000\tmenu_item\u0000\u0000\u0002$\u0000\u0000\u0010\u0002\u0000\u0001 \u000b \u0000\r0\u0000\tmenu_item\u0000\u0000\u0010\u0002\u0000\u0012\u0000\u001f\u001e\u0000\u001d\u0001\u0001\u001c\u0000\u001b\u001a\u0000\u0019\u0000\u0018\u0017\u0016\u0000\u0000\n\u001f\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u001e\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u001d\u0000\u0018.miscactvnull\u0000\u0000null\n\u001c\u0000\u0004\nprcs\n\u001b\u0000\u0004\nmbar\n\u001a\u0000\u0004\nmbri\n\u0019\u0000\u0004\nmenE\n\u0018\u0000\u0004\nmenI\n\u0017\u0000\u0004\npnam\n\u0016\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011#\u0000x%j\f\u0000\u0001Okj\f\u0000\u0002O\u0012\u0000\u0007*j\f\u0000\u0004UO\u0017\u0000[hZ\u0012\u0000O*\/\u0012\u0000G*k\/\u0012\u0000?*\/\u0012\u00007*\/\u0012\u0000\/*-,E\b\u001d\u0000\u0019*\/j\f\u0000\u000fOa\u0000\u0010%j\f\u0000\u0001O\u0016Y\u0000\u0003hOa\u0000\u0011%j\f\u0000\u0001UUUUU[OYOP\u000f\u000e\u0002\u0000\u0007\u0010\u0015\u0001\n\u0014\u0013\u0002\u0002\u0012\u000b\u0015\u0000\u00180\u0000\u0014restart_record_trace\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0013\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0011\u0001\u0010\u0011\u0001<\u0010\u0001:\u0001\u001b\u000f\u000e\r\u00016\f\u00013\u000b\u0001(\n\t\u00010\n\u0011\u0000\u0018.miscactvnull\u0000\u0000null\n\u0010\u0000\u0004\nprcs\n\u000f\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u000e\u0000\u0004\nmbar\n\r\u0000\u0004\nmbri\n\f\u0000\u0004\nmenE\n\u000b\u0000\u0004\nmenI\n\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0003\t\u0000\u0006\u0011\u0012\u0000R\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000A*\/\u0012\u00009j\f\u0000\u0006O*k\/\u0012\u0000+*\/\u0012\u0000#*\/\u0012\u0000\u001b*\/j\f\u0000\u000eOj\f\u0000\u0006O*a\u0000\u0010\/j\f\u0000\u000eUUUUUOP\u000f\u000e\u0002\u0000\u0007\u0010\b\u0001A\u0007\u0006\u0002\u0002\u0005\u000b\b\u0000\b0\u0000\u0004zoom\u0000\u0000\u0002\u0007\u0000\u0000\u0002\u0006\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\n\u0001c\u0004\u0001a\u0001J\u0003\u0002\u0001\u0001]\u0000\u0001Y\n\u0004\u0000\u0004\nprcs\n\u0003\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0002\u0000\u0004\nmbar\n\u0001\u0000\u0004\nmbri\n\u0000\u0000\u0004\nmenE\u0011\u0005\u0000\/\u0012\u0000+*\/\u0012\u0000#j\f\u0000\u0004O*k\/\u0012\u0000\u0015*\/\u0012\u0000\r*\/\u0012\u0000\u0003hUOPUUUU\u000f\u000e\u0002\u0000\u0007\u0010\u0001i\u0002\u0002\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u001b\u0001o\u0001\u0001\u0001\u0001}\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\n\u0000\u0018.aevtquitnull\u0000\u0000null\n\u0000\u0004\npcap\n\u0000\u0004\nsheE\u0011\u0000\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u00008*\/\u0012\u00000*\/k\/k\/m\/\/j\f\u0000\u000bOj\f\u0000\rO*\/\/j\f\u0000\u000bOa\u0000\u0010j\f\u0000\u0011UUO*kk+\u0000\u0012O\u0012\u0000\t*j\f\u0000\u0013OPUO\u0012\u0000'*a\u0000\u0014\/\u0012\u0000\u001da\u0000\u0015a\u0000\u0016\/a\u0000\u0017\/a\u0000\u0018k\/a\u0000\u0019\/j\f\u0000\u000bUUOa\u0000\u001aj\f\u0000\u0011\u000f\u000e\u0002\u0000\u0007\u0010\u0001\u0002\u0002\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0010\u0001\u0002\u001c\u0002\u001a\u0002\u0016\u0002\n\u0001\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\nsplg\n\u0000\u0004\nscra\n\u0000\u0004\nbutT\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nenaB\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004wait\u0000\u0000\u0011\u0000Y\u0012\u0000\u0007*j\f\u0000\u0001UO\u0012\u0000C*\/\u0012\u0000;*\/k\/k\/m\/\/\u0012\u0000'\u0017\u0000\"hZlj\f\u0000\u000bO*,f\u0000\u001d\u0000\u0006\u0016Y\u0000\tj\f\u0000\u000eOP[OYOPUUUO*kk+\u0000\u000f\u000f\u000e\u0002\u0000\u0007\u0010\u0002%\u0002\u0002\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u0007\u0002*\u00025\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\n\u0000\u0004\ninsh\u0003\u0003\u0003\u0001m\n\u0000\u0018.prcsclicuiel\u0000\u0000\u0000\u0000\u0000uiel\u0011\u0000\u0016j\f\u0000\u0001O\u0012\u0000\f*lvl\f\u0000\u0006U\u000f\u000e\u0002\u0000\u0007\u0010\u0002\u0002\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0002\u0000\u0001k\u0000\u0000\u0000\u0000\u0000K\u0002\u0002\u0002\u0000\u0002\u00028\u0002\u0002\u0002\u0000\u0002\u0002>\u0002\u0002\u0002\u0000\u0002\u0002C\u0002\u0002\u0002\u0000\u0002\u0002L\u0002\u0002\u0002\u0000\u0002\u0002Q\u0002\u0002\u0002\u0000\u0002\u0002U\u0002\u0002\u0002\u0000\u0002\u0002\\\u0002\u0002\u0002\u0000\u0002\u0002_\u0002\u0002\u0002\u0000\u0002\u0002b\u0002\u0002\u0002\u0000\u0002\u0002i\u0002\u0002\u0002\u0000\u0002\u0002p\u0002\u0002\u0002\u0000\u0002\u0002s\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0002\u0000\u0000\u0010\u0002\u0000\u000f\u0002<\u0002J\u0002Z\u0002g\u0002n\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00130\u0000\u000freset_simulator\u0000\u0000\n\u0000\u0004\npsxp\u000b\u0000\f0\u0000\bfilepath\u0000\u0000\u000b\u0000\u00140\u0000\u0010open_instruments\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\u000b\u0000\u001b0\u0000\u0017wait_for_menu_and_click\u0000\u0000\u000b\u0000\u001d0\u0000\u0019wait_for_script_to_finish\u0000\u0000\u000b\u0000\u00100\u0000\fclick_ignore\u0000\u0000\u000b\u0000\u001a0\u0000\u0016export_instruments_log\u0000\u0000\u0011\u0000Lj\f\u0000\u0001O*j+\u0000\u0002O,EO*k+\u0000\u0006Okj\f\u0000\u0007O*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000bO*k+\u0000\tO*k+\u0000\tO*j+\u0000\nO*j+\u0000\u000e\u000f\u000e\u0002\u0000\u0001\u0002\u0011\u0002\u0000\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000b\u0000l\u0000u\u0000e\u0000\/\u0000w\u0000o\u0000r\u0000k\u0000\/\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000\/\u0000s\u0000o\u0000c\u0000i\u0000a\u0000l\u0000i\u0000z\u0000e\u0000-\u0000s\u0000d\u0000k\u0000-\u0000i\u0000o\u0000s\u0000\/\u0000S\u0000a\u0000m\u0000p\u0000l\u0000e\u0000S\u0000d\u0000k\u0000A\u0000p\u0000p\u0000\/\u0000t\u0000e\u0000s\u0000t\u0000r\u0000u\u0000n\u0000n\u0000e\u0000r\u0000\/\u0000s\u0000a\u0000m\u0000p\u0000l\u0000e\u0000A\u0000p\u0000p\u0000_\u0000i\u0000n\u0000s\u0000t\u0000r\u0000u\u0000m\u0000e\u0000n\u0000t\u0000s\u0000.\u0000t\u0000r\u0000a\u0000c\u0000e\u0001}\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0001z\u0000\u0000\u0001y\u0000\u0000\u0001x\u0000\u0000\u0001w\u0000\u0000\u0001v\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000ascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"8a682469b5011ac1e8d90dbf856abce7104e3857","subject":"more whitespace removal in Query updater","message":"more whitespace removal in Query updater\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.8 - 2020-02-20 ( dshockley ): Added ExtraSpacesWithinSQLWhere. \n\t1.7 - 2019-04-25 ( dshockley ): Added error-trapping and handling. The param for the handler is now named prefs instead of accidentally being an empty list. Disabled potentially-problematic \"convert to using List for query whitespace formatting\" code! \n\t1.6 - 2019-04-17 ( dshockley ): Added ExecuteOLD2. Added SemicolonPilcrowLine. \n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format(prefs)\n\t\n\ttry\n\t\t\n\t\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\t\n\t\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\t\n\t\t\n\t\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\t\n\t\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\t\n\t\t\n\t\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\t\n\t\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\t\n\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\n\t\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\t\n\t\t\n\t\tset regexSearch_ExtraSpacesWithinSQLWhere to \"([a-z0-9]) [ ]*; \\\"=\\\" ; ([^ ]+) [ ]*\\\\)\"\n\t\tset regexReplace_ExtraSpacesWithinSQLWhere to \"\\\\1 ; \\\"=\\\" ; \\\\2 )\"\n\t\t\n\t\tset regexSearch_ExtraSpacesBeforeClosingParen to \"([^ ]+) [ ]*\\\\)([ ]*)\\\\r\"\n\t\tset regexReplace_ExtraSpacesBeforeClosingParen to \"\\\\1 )\\\\2\\\\r\"\n\t\t\n\t\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\t\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\t\n\t\t\n\t\t\n\t\t-- LITERAL SECTION:\n\t\t\n\t\tset literalSearch_SpacesToTabs to \" \"\n\t\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\t\n\t\tset literalSearch_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\t\n\t\tset literalSearch_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; Char ( 9 ); \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; Char ( 9 ) ; Char ( 13 ) )\"\n\t\t\n\t\t\n\t\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\t\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\t\n\t\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\t\n\t\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\t\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-- FINAL CLEANUP REGEX:\n\t\t\n\t\tset regexSearch_SemicolonPilcrowLine to \"^\\\\t+; [ \\\\t]*\\\\r\"\n\t\tset regexReplace_SemicolonPilcrowLine to \"\"\n\t\t\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tactivate\n\t\t\tdelay 0.1 -- make sure script has time to start??\n\t\t\t\n\t\t\ttell window 1\n\t\t\t\t\n\t\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t\t(*\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\treplace regexSearch_ExtraSpacesWithinSQLWhere using regexReplace_ExtraSpacesWithinSQLWhere options {search mode:grep, starting at top:true}\n\n\t\t\t\treplace regexSearch_ExtraSpacesBeforeClosingParen using regexReplace_ExtraSpacesBeforeClosingParen options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace literalSearch_ExecuteOLD1 using literalReplace_ExecuteOLD1 options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_ExecuteOLD2 using literalReplace_ExecuteOLD2 options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(* DISABLED, SINCE IT CAN MANGLE INTERNAL 'IF' blocks:\n\t\t\t\tEXAMPLE (the IF line SQL_Where gets put as the ELSE, instead of staying with \" AND \"!!!!): \n\t; sqlQuery = \n\t\t\"SELECT \" \n\t\t\t\t& SQL_Field ( LR_LOCAL_REPORT::aLR__PrimaryKey ) \n\t\t\t\t\n\t\t\t& \" FROM \" \n\t\t\t\t& SQL_Table ( LR_LOCAL_REPORT::zAuto1 ) \n\t\t\t\n\t\t\t& \" WHERE \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_UID ; \"=\" ; UID ) \n\t\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_LocalKey ; \"=\" ; localKey ) \n\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateReportFor_Month1st ; \">=\" ; dateMonthFor ) \n\t\t\t\t\t\t\n\t\t\t& If ( not IsEmpty ( dateAcctPeriod )\n\t\t\t\t; \" AND \" \n\t\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateAccountingPeriod_Month1st ; \">=\" ; dateAcctPeriod ) \n\t\t\t\t)\n\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\t\n\t\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\t\n\t\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\t\n\t\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\t\n\t\t\t\tend try\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace regexSearch_SemicolonPilcrowLine using regexReplace_SemicolonPilcrowLine options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\ton error errMsg number errNum\n\t\ttell application \"BBEdit\" to display dialog \"Upgrade SQL Query: ERROR: \" & errMsg & \" - number: \" & errNum\n\tend try\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.7 - 2019-04-25 ( dshockley ): Added error-trapping and handling. The param for the handler is now named prefs instead of accidentally being an empty list. Disabled potentially-problematic \"convert to using List for query whitespace formatting\" code! \n\t1.6 - 2019-04-17 ( dshockley ): Added ExecuteOLD2. Added SemicolonPilcrowLine. \n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format(prefs)\n\t\n\ttry\n\t\t\n\t\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\t\n\t\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\t\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\t\n\t\t\n\t\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\t\n\t\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\t\n\t\t\n\t\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\t\n\t\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\t\n\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\t\n\t\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\t\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\t\n\t\t\n\t\t\n\t\t-- LITERAL SECTION:\n\t\t\n\t\tset literalSearch_SpacesToTabs to \" \"\n\t\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\t\n\t\tset literalSearch_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\t\n\t\tset literalSearch_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; Char ( 9 ); \\\"\\\" )\"\n\t\tset literalReplace_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; Char ( 9 ) ; Char ( 13 ) )\"\n\t\t\n\t\t\n\t\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\t\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\t\n\t\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\t\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\t\n\t\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\t\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t-- FINAL CLEANUP REGEX:\n\t\t\n\t\tset regexSearch_SemicolonPilcrowLine to \"^\\\\t+; [ \\\\t]*\\\\r\"\n\t\tset regexReplace_SemicolonPilcrowLine to \"\"\n\t\t\n\t\t\n\t\ttell application \"BBEdit\"\n\t\t\tactivate\n\t\t\tdelay 0.1 -- make sure script has time to start??\n\t\t\t\n\t\t\ttell window 1\n\t\t\t\t\n\t\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\treplace literalSearch_ExecuteOLD1 using literalReplace_ExecuteOLD1 options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_ExecuteOLD2 using literalReplace_ExecuteOLD2 options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t(* DISABLED, SINCE IT CAN MANGLE INTERNAL 'IF' blocks:\n\t\t\t\tEXAMPLE (the IF line SQL_Where gets put as the ELSE, instead of staying with \" AND \"!!!!): \n\t; sqlQuery = \n\t\t\"SELECT \" \n\t\t\t\t& SQL_Field ( LR_LOCAL_REPORT::aLR__PrimaryKey ) \n\t\t\t\t\n\t\t\t& \" FROM \" \n\t\t\t\t& SQL_Table ( LR_LOCAL_REPORT::zAuto1 ) \n\t\t\t\n\t\t\t& \" WHERE \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_UID ; \"=\" ; UID ) \n\t\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::aLR_LocalKey ; \"=\" ; localKey ) \n\t\t\n\t\t\t& \" AND \" \n\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateReportFor_Month1st ; \">=\" ; dateMonthFor ) \n\t\t\t\t\t\t\n\t\t\t& If ( not IsEmpty ( dateAcctPeriod )\n\t\t\t\t; \" AND \" \n\t\t\t\t\t& SQL_Where ( LR_LOCAL_REPORT::bLR_DateAccountingPeriod_Month1st ; \">=\" ; dateAcctPeriod ) \n\t\t\t\t)\n\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\t\n\t\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\t\n\t\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\t\n\t\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\t\n\t\t\t\tend try\n\t\t\t\t*)\n\t\t\t\t\n\t\t\t\t\n\t\t\t\treplace regexSearch_SemicolonPilcrowLine using regexReplace_SemicolonPilcrowLine options {search mode:grep, starting at top:true}\n\t\t\t\t\n\t\t\t\t\n\t\t\tend tell\n\t\t\t\n\t\tend tell\n\t\t\n\t\t\n\ton error errMsg number errNum\n\t\ttell application \"BBEdit\" to display dialog \"Upgrade SQL Query: ERROR: \" & errMsg & \" - number: \" & errNum\n\tend try\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fa0ce7e54ff8d4860875b50b8518cf739216019e","subject":"Remove unused script","message":"Remove unused script\n","repos":"hpoydar\/dotfiles,hpoydar\/dotfiles,hpoydar\/dotfiles","old_file":"toggleFullScreen.applescript","new_file":"toggleFullScreen.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"fe29d4a1af1fcaacf11bae539e48065bb9b5c778","subject":"Newline at end of file.","message":"Newline at end of file.\n","repos":"CarlosCD\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste\n","old_contents":"on run -- for testing in script editor\n\tprocess_disk_image(\"Growl\", \"\/Users\/evands\/growl\/Release\/Artwork\")\nend run\n\non process_disk_image(volumeName, artPath)\n\ttell application \"Finder\"\n\t\ttell disk volumeName\n\t\t\topen\n\t\t\ttell container window\n\t\t\t\tset current view to icon view\n\t\t\t\tset toolbar visible to false\n\t\t\t\tset statusbar visible to false\n\t\t\t\t--set the bounds to {30, 50, 579, 600}\n\t\t\tend tell\n\t\t\tclose\n\t\t\tset opts to the icon view options of container window\n\t\t\ttell opts\n\t\t\t\tset icon size to 64\n\t\t\t\tset arrangement to not arranged\n\t\t\tend tell\n\t\t\tset background picture of opts to file \".background:growlDMGBackground.png\"\n\t\t\tset position of item \"Growl.mpkg\" to {147, 75}\n\t\t\tset position of item \"Extras\" to {100, 320}\n\t\t\t--set position of item \"Scripts\" to {36, 153}\n\t\t\tset position of item \"Growl Documentation.webloc\" to {100, 218}\n\t\t\tset position of item \"Growl version history.webloc\" to {275, 218}\n\t\t\tset position of item \"Get more styles.webloc\" to {415, 218}\n\t\t\tset position of item \"Uninstall Growl.app\" to {415, 320}\n\t\t\t\n\t\t\t-- Custom icons\n\t\t\tmy copyIconOfTo(artPath & \"\/GrowlIcon\", \"\/Volumes\/\" & volumeName & \"\/Growl.mpkg\")\n\t\t\t\n\t\t\tupdate without registering applications\n\t\t\ttell container window\n\t\t\t\topen\n\t\t\t\tset the_window_id to id\n\t\t\tend tell\n\t\t\tupdate without registering applications\n\t\tend tell\n\t\tset bounds of window id the_window_id to {30, 50, 575, 450}\n\t\t--give the finder some time to write the .DS_Store file\n\t\tdelay 5\n\tend tell\nend process_disk_image\n\non copyIconOfTo(aFileOrFolderWithIcon, aFileOrFolder)\n\ttell application \"Finder\" to set f to POSIX file aFileOrFolderWithIcon as alias\n\t-- grab the file's icon\n\tmy CopyOrPaste(f, \"c\")\n\t-- now the icon is in the clipboard\n\ttell application \"Finder\" to set c to POSIX file aFileOrFolder as alias\n\tmy CopyOrPaste(result, \"v\")\nend copyIconOfTo\n\non CopyOrPaste(i, cv)\n\ttell application \"Finder\"\n\t\tactivate\n\t\topen information window of i\n\tend tell\n\ttell application \"System Events\" to tell process \"Finder\" to tell window 1\n\t\tkeystroke tab -- select icon button\n\t\tkeystroke (cv & \"w\") using command down (* (copy or paste) + close window *)\n\tend tell -- window 1 then process Finder then System Events\nend CopyOrPaste","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b44ae65018d81512255150fe57009c6bc2b1e9d3","subject":"Commenting out scripts","message":"Commenting out scripts\n","repos":"chashion\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,nochkin\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,chashion\/growl,nochkin\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,nagyistoce\/growl,tectronics\/growl,SalrJupiter\/growl,ylian\/growl,CarlosCD\/growl,SalrJupiter\/growl,an0nym0u5\/growl,xhruso00\/growl,timbck2\/growl,an0nym0u5\/growl,timbck2\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,xhruso00\/growl,ylian\/growl,SalrJupiter\/growl,nagyistoce\/growl,ylian\/growl,nkhorman\/archive-growl,CarlosCD\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,chashion\/growl,CarlosCD\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,chashion\/growl,chashion\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,tectronics\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,tectronics\/growl,ylian\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,SalrJupiter\/growl,nochkin\/growl,ylian\/growl,nochkin\/growl,timbck2\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,nochkin\/growl,tectronics\/growl,SalrJupiter\/growl,tectronics\/growl,SalrJupiter\/growl,nagyistoce\/growl,CarlosCD\/growl,timbck2\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,nochkin\/growl,timbck2\/growl","old_file":"Release\/dmg_growl.scpt","new_file":"Release\/dmg_growl.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u00013\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u00013\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u00012\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0004\u0001*\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u000b\u0001)\u0000\u000f\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\u0011\u00004\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001k\u0000\u0000\u0000\u0017\u00003\u0000\u0016\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000becvwicnv\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\npvew\u0002\u0000\u0018\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\b\u000bboovfals\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u001e\u0000!\n\u0000\u0004\ntbvi\u0002\u0000\u001c\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000#\u0000(\u0000!\u0000\"\r\u0000!\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovfals\r\u0000\"\u0000\u00011\u0000\u0000\u0000$\u0000'\n\u0000\u0004\nstvi\u0002\u0000 \u0000\u0002\u0000#\r\u0000#\u0000\u0002r\u0000\u0000\u0000)\u00003\u0000$\u0000%\r\u0000$\u0000\u0001J\u0000\u0000\u0000)\u0000\/\u0000&\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u001e\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u00002\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0001\u0002\u0000,\u0000\u0002\u0000-\r\u0000-\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0001^\u0002\u0000\u0000\r\u0000%\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000.\r\u0000.\u0000\u00011\u0000\u0000\u0000\/\u00002\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0014\n\u0000\u0004\ncwnd\u0002\u0000\u0013\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003I\u0000\u0002\u00005\u0000:\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000;\u0000F\u00003\u00004\r\u00003\u0000\u0002l\u0001\u0000\u0000;\u0000B\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000;\u0000B\u00006\u00007\r\u00006\u0000\u0001m\u0000\u0000\u0000>\u0000B\n\u0000\u0004\nicop\r\u00007\u0000\u00011\u0000\u0000\u0000;\u0000>\n\u0000\u0004\ncwnd\u0001\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u00002\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002O\u0000\u0000\u0000G\u0000a\u0000:\u0000;\r\u0000:\u0000\u0001k\u0000\u0000\u0000M\u0000`\u0000<\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002r\u0000\u0000\u0000M\u0000V\u0000?\u0000@\r\u0000?\u0000\u0001m\u0000\u0000\u0000M\u0000P\u0003\u00008\r\u0000@\u0000\u00011\u0000\u0000\u0000P\u0000U\n\u0000\u0004\nlvis\u0002\u0000>\u0000\u0002\u0000A\r\u0000A\u0000\u0002r\u0000\u0000\u0000W\u0000`\u0000B\u0000C\r\u0000B\u0000\u0001m\u0000\u0000\u0000W\u0000Z\n\u0000\b\u000bearrnarr\r\u0000C\u0000\u00011\u0000\u0000\u0000Z\u0000_\n\u0000\u0004\niarr\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000G\u0000J\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u00009\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002r\u0000\u0000\u0000b\u0000r\u0000F\u0000G\r\u0000F\u0000\u00024\u0000\u0000\u0000b\u0000j\u0000H\n\u0000\u0004\nfile\r\u0000H\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0000I\f\u0000I\u0000*\u0000$.background:growl08DMGBackground.png\u0000\u0002\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u0000K\r\u0000J\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nibkg\r\u0000K\u0000\u0001o\u0000\u0000\u0000j\u0000m\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000E\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002r\u0000\u0000\u0000s\u0000\u0000N\u0000O\r\u0000N\u0000\u0001J\u0000\u0000\u0000s\u0000{\u0000P\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000-\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0003\u0000)\u0002\u0000\u0000\r\u0000O\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000T\u0000U\r\u0000T\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000U\u0000\u00024\u0000\u0000\u0000{\u0000\u0000V\n\u0000\u0004\ncobj\r\u0000V\u0000\u0001m\u0000\u0000\u0000\u0000\u0000W\f\u0000W\u0000\u0014\u0000\u000eGrowl.prefPane\u0000\u0002\u0000\u0000\u0002\u0000M\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0002r\u0000\u0000\u0000\u0000\u0000Z\u0000[\r\u0000Z\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000^\u0000\u0002\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000!\u0002\u0000\u0000\r\u0000[\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000`\u0000a\r\u0000`\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000a\u0000\u00024\u0000\u0000\u0000\u0000\u0000b\n\u0000\u0004\ncobj\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000c\f\u0000c\u0000\f\u0000\u0006Extras\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002l\u0000\u0001\u0000\u0000\u0000f\u0001\u0000\u0000\f\u0000f\u00001\u0000+set position of item \"Scripts\" to {36, 153}\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000g\u0000h\r\u0000g\u0000\u0002r\u0000\u0000\u0000\u0000\u0000i\u0000j\r\u0000i\u0000\u0001J\u0000\u0000\u0000\u0000\u0000k\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000m\u0000\u0002\u0000n\r\u0000n\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000{\u0002\u0000\u0000\r\u0000j\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000o\u0000p\r\u0000o\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000p\u0000\u00024\u0000\u0000\u0000\u0000\u0000q\n\u0000\u0004\ncobj\r\u0000q\u0000\u0001m\u0000\u0000\u0000\u0000\u0000r\f\u0000r\u0000 \u0000\u001aGrowl Documentation.webloc\u0000\u0002\u0000\u0000\u0002\u0000h\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0002r\u0000\u0000\u0000\u0000\u0000u\u0000v\r\u0000u\u0000\u0001J\u0000\u0000\u0000\u0000\u0000w\u0002\u0000w\u0000\u0002\u0000x\u0000y\r\u0000x\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\t\u0002\u0000y\u0000\u0002\u0000z\r\u0000z\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000)\u0002\u0000\u0000\r\u0000v\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000{\u0000|\r\u0000{\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000|\u0000\u00024\u0000\u0000\u0000\u0000\u0000}\n\u0000\u0004\ncobj\r\u0000}\u0000\u0001m\u0000\u0000\u0000\u0000\u0000~\f\u0000~\u0000\"\u0000\u001cGrowl version history.webloc\u0000\u0002\u0000\u0000\u0002\u0000t\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016Get more styles.webloc\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000{\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0019\u0000\u0013Uninstall Growl.app\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0001\u0000\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001\u0001\u0001\u001f\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u0007\u0001\u001e\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0007\u0001\u0013\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001\u0007\u0001\u000f\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0007\u0001\n\u0003\u0000\u001f\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\n\u0001\u000b\u0003\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u000b\u0001\f\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\f\u0001\r\u0003\u0001^\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u000f\u0001\u0012\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u0014\u0001\u001e\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001\u0014\u0001\u001a\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0014\u0001\u0015\u0003\u0000\u001e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0015\u0001\u0016\u0003\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0016\u0001\u0017\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0017\u0001\u0018\u0003\u0001^\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u001a\u0001\u001d\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0001\u0001\u0004\n\u0000\u0004\ncwnd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001 \u0001)\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0001$\u0001%\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u000e\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000\n\u0000\u0004\ncdis\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\f\u0000\u0000\u000b\u0000\u0005Growl\u0000\u0002\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001+\u0001+\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005give the finder some time to write the .DS_Store file\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001+\u00012\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001+\u0001.\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\f\nFinder.app\u0000\u0000O$j\r gd$ \u0000\u0000\u0000\u0001\u0001~0\u001c\u0000\u0000\u0000)\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000e\u0001<(i9P\u0001MACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017gH+\u0000\u0000\u0000\u0000\f\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000Cpgp%\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000]\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000g\u0105\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\f\u0000\u0000\f\u0000\u0000\f\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u00013\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u0000.\u0000\u0000~}\u0000I|{zy\u0000Wxwv\u0000cut\u0000rs\u0000~r\u0000\u0000qponm\n\u0000\u0004\ncdis\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\ncwnd\n\u0000\b\u000becvwicnv\n\u0000\u0004\npvew\n\u0000\u0004\ntbvi\n\u0000\u0004\nstvi\u0003\u0000\u001e\u0003\u00002\u0003\u0001\u0003\u0001^\u0003\u0000\u0004\n\u0000\u0004\npbnd\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \n\u0000\u0004\nicop\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0003\u00008\n\u0000\u0004\nlvis\n\u0000\b\u000bearrnarr\n~\u0000\u0004\niarr\n}\u0000\u0004\nfile\n|\u0000\u0004\nibkg\u0003{\u0000-\u0003z\u0000)\ny\u0000\u0004\ncobj\nx\u0000\u0004\nposn\u0003w\u0000\u0003v\u0000!\u0003u\u0000\u0003t\u0000{\u0003s\u0001\t\u0003r\u0001\nq\u0000\u0004\nreg?\np\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0003o\u0000\u001f\u0003n\u0000\u0005\nm\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u00014\u0012\u00010*\/\u0012\u0001 *j\f\u0000\u0003O*,\u0012\u0000\u001e*,FOf*,FOf*,FOv*,FUO*j\f\u0000\u000fO*,a\u0000\u0010,E`\u0000\u0011O_\u0000\u0011\u0012\u0000\u0015a\u0000\u0012*a\u0000\u0013,FOa\u0000\u0014*a\u0000\u0015,FUO*a\u0000\u0016a\u0000\u0017\/_\u0000\u0011a\u0000\u0018,FOa\u0000\u0019a\u0000\u001alv*a\u0000\u001ba\u0000\u001c\/a\u0000\u001d,FOa\u0000\u001ea\u0000\u001flv*a\u0000\u001ba\u0000 \/a\u0000\u001d,FOa\u0000!a\u0000\"lv*a\u0000\u001ba\u0000#\/a\u0000\u001d,FOa\u0000$a\u0000\u001alv*a\u0000\u001ba\u0000%\/a\u0000\u001d,FOa\u0000&a\u0000\u001alv*a\u0000\u001ba\u0000'\/a\u0000\u001d,FOa\u0000&a\u0000\"lv*a\u0000\u001ba\u0000(\/a\u0000\u001d,FO*a\u0000)fl\f\u0000*O*,\u0012\u0000\u0019a\u0000+v*,FOv*,FUO*a\u0000)fl\f\u0000*UOa\u0000,j\f\u0000-U\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002l\u0000\u0002\u0000\u0000\u0001I\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0001I\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0001H\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0002O\u0000\u0000\u0000\u0004\u0001@\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001k\u0000\u0000\u0000\u000b\u0001?\u0000\u000f\u0002\u0000\u000f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003I\u0000\u0002\u0000\u000b\u0000\u0010\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0002O\u0000\u0000\u0000\u0011\u00004\u0000\u0014\u0000\u0015\r\u0000\u0014\u0000\u0001k\u0000\u0000\u0000\u0017\u00003\u0000\u0016\u0002\u0000\u0016\u0000\u0002\u0000\u0017\u0000\u0018\r\u0000\u0017\u0000\u0002r\u0000\u0000\u0000\u0017\u0000\u001c\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001m\u0000\u0000\u0000\u0017\u0000\u0018\n\u0000\b\u000becvwicnv\r\u0000\u001a\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\npvew\u0002\u0000\u0018\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u001d\u0000\"\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\n\u0000\b\u000bboovfals\r\u0000\u001e\u0000\u00011\u0000\u0000\u0000\u001e\u0000!\n\u0000\u0004\ntbvi\u0002\u0000\u001c\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0002r\u0000\u0000\u0000#\u0000(\u0000!\u0000\"\r\u0000!\u0000\u0001m\u0000\u0000\u0000#\u0000$\n\u0000\b\u000bboovfals\r\u0000\"\u0000\u00011\u0000\u0000\u0000$\u0000'\n\u0000\u0004\nstvi\u0002\u0000 \u0000\u0002\u0000#\r\u0000#\u0000\u0002r\u0000\u0000\u0000)\u00003\u0000$\u0000%\r\u0000$\u0000\u0001J\u0000\u0000\u0000)\u0000\/\u0000&\u0002\u0000&\u0000\u0002\u0000'\u0000(\r\u0000'\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u001e\u0002\u0000(\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0001m\u0000\u0000\u0000*\u0000+\u0003\u00002\u0002\u0000*\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0003\u0001\u0002\u0000,\u0000\u0002\u0000-\r\u0000-\u0000\u0001m\u0000\u0000\u0000,\u0000-\u0003\u0001^\u0002\u0000\u0000\r\u0000%\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000.\r\u0000.\u0000\u00011\u0000\u0000\u0000\/\u00002\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0015\u0000\u00011\u0000\u0000\u0000\u0011\u0000\u0014\n\u0000\u0004\ncwnd\u0002\u0000\u0013\u0000\u0002\u0000\/\u00000\r\u0000\/\u0000\u0003I\u0000\u0002\u00005\u0000:\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0001\u0000\u0000\u0002\u0000\u0000\u0002\u00000\u0000\u0002\u00001\u00002\r\u00001\u0000\u0002r\u0000\u0000\u0000;\u0000F\u00003\u00004\r\u00003\u0000\u0002l\u0001\u0000\u0000;\u0000B\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000;\u0000B\u00006\u00007\r\u00006\u0000\u0001m\u0000\u0000\u0000>\u0000B\n\u0000\u0004\nicop\r\u00007\u0000\u00011\u0000\u0000\u0000;\u0000>\n\u0000\u0004\ncwnd\u0001\u0000\u0000\r\u00004\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u00002\u0000\u0002\u00008\u00009\r\u00008\u0000\u0002O\u0000\u0000\u0000G\u0000a\u0000:\u0000;\r\u0000:\u0000\u0001k\u0000\u0000\u0000M\u0000`\u0000<\u0002\u0000<\u0000\u0002\u0000=\u0000>\r\u0000=\u0000\u0002r\u0000\u0000\u0000M\u0000V\u0000?\u0000@\r\u0000?\u0000\u0001m\u0000\u0000\u0000M\u0000P\u0003\u00008\r\u0000@\u0000\u00011\u0000\u0000\u0000P\u0000U\n\u0000\u0004\nlvis\u0002\u0000>\u0000\u0002\u0000A\r\u0000A\u0000\u0002r\u0000\u0000\u0000W\u0000`\u0000B\u0000C\r\u0000B\u0000\u0001m\u0000\u0000\u0000W\u0000Z\n\u0000\b\u000bearrnarr\r\u0000C\u0000\u00011\u0000\u0000\u0000Z\u0000_\n\u0000\u0004\niarr\u0002\u0000\u0000\r\u0000;\u0000\u0001o\u0000\u0000\u0000G\u0000J\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u00009\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0002r\u0000\u0000\u0000b\u0000r\u0000F\u0000G\r\u0000F\u0000\u00024\u0000\u0000\u0000b\u0000j\u0000H\n\u0000\u0004\nfile\r\u0000H\u0000\u0001m\u0000\u0000\u0000f\u0000i\u0000I\f\u0000I\u0000*\u0000$.background:growl08DMGBackground.png\u0000\u0002\u0000\u0000\r\u0000G\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000J\u0000K\r\u0000J\u0000\u00011\u0000\u0000\u0000m\u0000q\n\u0000\u0004\nibkg\r\u0000K\u0000\u0001o\u0000\u0000\u0000j\u0000m\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u0002\u0000E\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0002r\u0000\u0000\u0000s\u0000\u0000N\u0000O\r\u0000N\u0000\u0001J\u0000\u0000\u0000s\u0000{\u0000P\u0002\u0000P\u0000\u0002\u0000Q\u0000R\r\u0000Q\u0000\u0001m\u0000\u0000\u0000s\u0000v\u0003\u0000-\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001m\u0000\u0000\u0000v\u0000y\u0003\u0000)\u0002\u0000\u0000\r\u0000O\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000T\u0000U\r\u0000T\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000U\u0000\u00024\u0000\u0000\u0000{\u0000\u0000V\n\u0000\u0004\ncobj\r\u0000V\u0000\u0001m\u0000\u0000\u0000\u0000\u0000W\f\u0000W\u0000\u0014\u0000\u000eGrowl.prefPane\u0000\u0002\u0000\u0000\u0002\u0000M\u0000\u0002\u0000X\u0000Y\r\u0000X\u0000\u0002r\u0000\u0000\u0000\u0000\u0000Z\u0000[\r\u0000Z\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\\\u0002\u0000\\\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000^\u0000\u0002\u0000_\r\u0000_\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000!\u0002\u0000\u0000\r\u0000[\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000`\u0000a\r\u0000`\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000a\u0000\u00024\u0000\u0000\u0000\u0000\u0000b\n\u0000\u0004\ncobj\r\u0000b\u0000\u0001m\u0000\u0000\u0000\u0000\u0000c\f\u0000c\u0000\f\u0000\u0006Extras\u0000\u0002\u0000\u0000\u0002\u0000Y\u0000\u0002\u0000d\u0000e\r\u0000d\u0000\u0002r\u0000\u0000\u0000\u0000\u0000f\u0000g\r\u0000f\u0000\u0001J\u0000\u0000\u0000\u0000\u0000h\u0002\u0000h\u0000\u0002\u0000i\u0000j\r\u0000i\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000$\u0002\u0000j\u0000\u0002\u0000k\r\u0000k\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000\u0000\r\u0000g\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000l\u0000m\r\u0000l\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000m\u0000\u00024\u0000\u0000\u0000\u0000\u0000n\n\u0000\u0004\ncobj\r\u0000n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000o\f\u0000o\u0000\r\u0000\u0007Scripts\u0000\u0002\u0000\u0000\u0002\u0000e\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0002r\u0000\u0000\u0000\u0000\u0000r\u0000s\r\u0000r\u0000\u0001J\u0000\u0000\u0000\u0000\u0000t\u0002\u0000t\u0000\u0002\u0000u\u0000v\r\u0000u\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0002\u0000v\u0000\u0002\u0000w\r\u0000w\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000{\u0002\u0000\u0000\r\u0000s\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000x\u0000y\r\u0000x\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000y\u0000\u00024\u0000\u0000\u0000\u0000\u0000z\n\u0000\u0004\ncobj\r\u0000z\u0000\u0001m\u0000\u0000\u0000\u0000\u0000{\f\u0000{\u0000 \u0000\u001aGrowl Documentation.webloc\u0000\u0002\u0000\u0000\u0002\u0000q\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000\u0000\u0000~\u0000\r\u0000~\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\t\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\"\u0000\u001cGrowl version history.webloc\u0000\u0002\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000)\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u001c\u0000\u0016Get more styles.webloc\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0001\f\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000{\u0002\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0007\u0001\u000b\n\u0000\u0004\nposn\r\u0000\u0000\u00024\u0000\u0000\u0000\u0001\u0007\u0000\n\u0000\u0004\ncobj\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0003\u0001\u0006\u0000\f\u0000\u0000\u0019\u0000\u0013Uninstall Growl.app\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001\r\u0001\u0016\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0001\u0011\u0001\u0012\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0001\u0017\u00015\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0001\u001d\u00014\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001\u001d\u0001)\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001\u001d\u0001%\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0003\u0000\u001f\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001 \u0001!\u0003\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001!\u0001\"\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001\"\u0001#\u0003\u0001^\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001%\u0001(\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0001*\u00014\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0001*\u00010\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001*\u0001+\u0003\u0000\u001e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001+\u0001,\u0003\u00002\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001,\u0001-\u0003\u0001\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0001-\u0001.\u0003\u0001^\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u00010\u00013\n\u0000\u0004\npbnd\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0001\u0017\u0001\u001a\n\u0000\u0004\ncwnd\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u00016\u0001?\u0000\n\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0001\u0000\u0000\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nreg?\r\u0000\u0000\u0001m\u0000\u0000\u0001:\u0001;\n\u0000\b\u000bboovfals\u0006\u0000\u0000\u0002\u0000\u0000\r\u0000\u000e\u0000\u00024\u0000\u0000\u0000\u0004\u0000\b\u0000\n\u0000\u0004\ncdis\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\f\u0000\u0000\u000b\u0000\u0005Growl\u0000\u0002\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002l\u0000\u0001\u0001A\u0001A\u0000\u0001\u0000\u0000\f\u0000\u0000;\u00005give the finder some time to write the .DS_Store file\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0001A\u0001H\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0001A\u0001D\u0003\u0000\u0005\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u0000\u0001\bnull\u0000\u0000\u0000\u0000\u0000\u0001\u07c0\u0000\u0000\r;\nFinder.app0(\"$r$\u001f0 \u001f\u0710\u0000\u0000\u0000\u0000\u001d\u0014\u0000\u000e\u0000\u0001FNDRMAMACS\u0000\u0000\u0011\u0000alis\u0000\u0000\u0000\u0000\u0001r\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000g\fH+\u0000\u0000\u0000\u0000\r;\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000C?ok\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000f\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000?a[\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\r;\u0000\u0000\r\u0013\u0000\u0000\r\u0012\u0000\u0002\u00003Macintosh HD:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0002l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004opts\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0001I\u0000\u0002\u0000\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0010\u0000\u00001\u0000\u0000~}|{zyx\u0000Iwvut\u0000Wsrq\u0000cpo\u0000onm\u0000{l\u0000k\u0000\u0000jihgf\n\u0000\u0004\ncdis\n\u0000\u0018.aevtodocnull\u0000\u0000\u0000\u0000\u0000\u0010\u0000alis\n\u0000\u0004\ncwnd\n\u0000\b\u000becvwicnv\n\u0000\u0004\npvew\n\u0000\u0004\ntbvi\n\u0000\u0004\nstvi\u0003\u0000\u001e\u0003\u00002\u0003\u0001\u0003\u0001^\u0003\u0000\u0004\n\u0000\u0004\npbnd\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \n~\u0000\u0004\nicop\u000b}\u0000\b0\u0000\u0004opts\u0000\u0000\u0003|\u00008\n{\u0000\u0004\nlvis\nz\u0000\b\u000bearrnarr\ny\u0000\u0004\niarr\nx\u0000\u0004\nfile\nw\u0000\u0004\nibkg\u0003v\u0000-\u0003u\u0000)\nt\u0000\u0004\ncobj\ns\u0000\u0004\nposn\u0003r\u0000\u0003q\u0000!\u0003p\u0000$\u0003o\u0000\u0003n\u0000\u0003m\u0000{\u0003l\u0001\t\u0003k\u0001\nj\u0000\u0004\nreg?\ni\u0000\u0018.fndrfupdnull\u0000\u0000\u0000\u0000\u0000obj \u0003h\u0000\u001f\u0003g\u0000\u0005\nf\u0000\u0018.sysodelanull\u0000\u0000nmbr\u0011\u0001J\u0012\u0001F*\/\u0012\u00016*j\f\u0000\u0003O*,\u0012\u0000\u001e*,FOf*,FOf*,FOv*,FUO*j\f\u0000\u000fO*,a\u0000\u0010,E`\u0000\u0011O_\u0000\u0011\u0012\u0000\u0015a\u0000\u0012*a\u0000\u0013,FOa\u0000\u0014*a\u0000\u0015,FUO*a\u0000\u0016a\u0000\u0017\/_\u0000\u0011a\u0000\u0018,FOa\u0000\u0019a\u0000\u001alv*a\u0000\u001ba\u0000\u001c\/a\u0000\u001d,FOa\u0000\u001ea\u0000\u001flv*a\u0000\u001ba\u0000 \/a\u0000\u001d,FOa\u0000!a\u0000\"lv*a\u0000\u001ba\u0000#\/a\u0000\u001d,FOa\u0000$a\u0000%lv*a\u0000\u001ba\u0000&\/a\u0000\u001d,FOa\u0000'a\u0000\u001alv*a\u0000\u001ba\u0000(\/a\u0000\u001d,FOa\u0000)a\u0000\u001alv*a\u0000\u001ba\u0000*\/a\u0000\u001d,FOa\u0000)a\u0000%lv*a\u0000\u001ba\u0000+\/a\u0000\u001d,FO*a\u0000,fl\f\u0000-O*,\u0012\u0000\u0019a\u0000.v*,FOv*,FUO*a\u0000,fl\f\u0000-UOa\u0000\/j\f\u00000U\u000f\u000e\u0000\u0000\u0001\u0014\u0000\u000e\u0000\u0000\u0002\u0015\u0000e\u000e\u0000\u0000\u0002\u0015\u0000d\u000e\u0000\u0000\u0003\u0018\u0000c\u0000\nc\u0000\u0004\ncdis\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000G\u0000r\u0000o\u0000w\u0000l\nd\u0000\u0004\ncwnd\ne\u0000\u0004\nicopascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"489f27fa74f32c3709e4d7a831f917e49930a299","subject":"data viewer open window name update for FM16","message":"data viewer open window name update for FM16\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_FMATools\/fmGUI_DataViewer_Open.applescript","new_file":"library\/fmGUI_FMATools\/fmGUI_DataViewer_Open.applescript","new_contents":"-- fmGUI_DataViewer_Open({fullAccessAccountName:\"\", fullAccessPassword:\"\"})\n-- Erik Shagdar, NYHTC\n-- Open FileMaker's Inspector window\n\n\n(*\nHISTORY:\n\t1.0.2 - 2017-10-20 ( eshagdar ): FM16 renamed window, just look for a dialog box that begins with 'authenticate'\n\t1.0.1 - 2017-10-19 ( eshagdar ): get button ref by description, not number. auth if unable to get the scroll area, not always.\n\t1.0 - 2017-10-18 ( eshagdar ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ClickMenuItem\n*)\n\n\non run\n\tfmGUI_DataViewer_Open({fullAccessAccountName:\"\", fullAccessPassword:\"\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_DataViewer_Open(prefs)\n\t-- version 1.0\n\ttry\n\t\tset defaultPrefs to {fullAccessAccountName:null, fullAccessPassword:null}\n\t\tset prefs to prefs & defaultPrefs\n\t\tset dvName to \"Data Viewer\"\n\t\t\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t-- select data viewer window\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\ttry\n\t\t\t\t\tset dvWindow to first window whose name is equal to dvName\n\t\t\t\t\tset dataViewerMenuItem to null\n\t\t\t\ton error\n\t\t\t\t\tset dataViewerMenuItem to menu item dvName of menu \"Tools\" of menu bar item \"Tools\" of menu bar 1\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t\n\t\t-- window does not exist, so open it\n\t\tif dataViewerMenuItem is not null then\n\t\t\tfmGUI_ClickMenuItem({menuItemRef:dataViewerMenuItem})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset dvWindow to first window whose name is equal to dvName\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend if\n\t\t\n\t\t\n\t\t-- authenticate viewer if needed\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tget scroll area 1 of tab group 1 of window 1\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset authButton to first button of tab group 1 of dvWindow whose description contains \"Auth\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tclickObjectByCoords(authButton)\n\t\t\tfmGUI_AuthenticateDialog({accountName:fullAccessAccountName of prefs, pwd:fullAccessPassword of prefs, windowname:\"Authenticate\"})\n\t\tend try\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_DataViewer_Open - \" & errMsg number errNum\n\tend try\nend fmGUI_DataViewer_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_AuthenticateDialog(prefs)\n\ttell application \"htcLib\" to fmGUI_AuthenticateDialog(prefs)\nend fmGUI_AuthenticateDialog\n\non fmGUI_ClickMenuItem(prefs)\n\tset prefs to {menuItemRef:my coerceToString(menuItemRef of prefs)} & prefs\n\ttell application \"htcLib\" to fmGUI_ClickMenuItem(prefs)\nend fmGUI_ClickMenuItem\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_DataViewer_Open({fullAccessAccountName:\"\", fullAccessPassword:\"\"})\n-- Erik Shagdar, NYHTC\n-- Open FileMaker's Inspector window\n\n\n(*\nHISTORY:\n\t1.0.1 - 2017-10-19 ( eshagdar ): get button ref by description, not number. auth if unable to get the scroll area, not always.\n\t1.0 - 2017-10-18 ( eshagdar ): first created\n\n\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_ClickMenuItem\n*)\n\n\non run\n\tfmGUI_DataViewer_Open({fullAccessAccountName:\"\", fullAccessPassword:\"\"})\nend run\n\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_DataViewer_Open(prefs)\n\t-- version 1.0\n\ttry\n\t\tset defaultPrefs to {fullAccessAccountName:null, fullAccessPassword:null}\n\t\tset prefs to prefs & defaultPrefs\n\t\tset dvName to \"Data Viewer\"\n\t\t\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t-- select data viewer window\n\t\ttell application \"System Events\"\n\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\ttry\n\t\t\t\t\tset dvWindow to first window whose name is equal to dvName\n\t\t\t\t\tset dataViewerMenuItem to null\n\t\t\t\ton error\n\t\t\t\t\tset dataViewerMenuItem to menu item dvName of menu \"Tools\" of menu bar item \"Tools\" of menu bar 1\n\t\t\t\tend try\n\t\t\tend tell\n\t\tend tell\n\t\t\n\t\t\n\t\t-- window does not exist, so open it\n\t\tif dataViewerMenuItem is not null then\n\t\t\tfmGUI_ClickMenuItem({menuItemRef:dataViewerMenuItem})\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset dvWindow to first window whose name is equal to dvName\n\t\t\t\tend tell\n\t\t\tend tell\n\t\tend if\n\t\t\n\t\t\n\t\t-- authenticate viewer if needed\n\t\ttry\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tget scroll area 1 of tab group 1 of window 1\n\t\t\t\tend tell\n\t\t\tend tell\n\t\ton error\n\t\t\ttell application \"System Events\"\n\t\t\t\ttell application process \"FileMaker Pro Advanced\"\n\t\t\t\t\tset authButton to first button of tab group 1 of dvWindow whose description contains \"Auth\"\n\t\t\t\tend tell\n\t\t\tend tell\n\t\t\tclickObjectByCoords(authButton)\n\t\t\tfmGUI_AuthenticateDialog({accountName:fullAccessAccountName of prefs, pwd:fullAccessPassword of prefs, windowname:\"Authenticate Script Debugging\"})\n\t\tend try\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to fmGUI_DataViewer_Open - \" & errMsg number errNum\n\tend try\nend fmGUI_DataViewer_Open\n\n--------------------\n-- END OF CODE\n--------------------\n\non clickObjectByCoords(prefs)\n\ttell application \"htcLib\" to clickObjectByCoords(my coerceToString(prefs))\nend clickObjectByCoords\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_AuthenticateDialog(prefs)\n\ttell application \"htcLib\" to fmGUI_AuthenticateDialog(prefs)\nend fmGUI_AuthenticateDialog\n\non fmGUI_ClickMenuItem(prefs)\n\tset prefs to {menuItemRef:my coerceToString(menuItemRef of prefs)} & prefs\n\ttell application \"htcLib\" to fmGUI_ClickMenuItem(prefs)\nend fmGUI_ClickMenuItem\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"9a0416031e93bb4fbacefaa0d634d2ad7b6c42b9","subject":"bug-fix in replicate","message":"bug-fix in replicate\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_file":"Scripts\/fmClip - Replicate FM Objects.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"b9c9aeda0352a18ff8db1d4f9cfd5a32004f1198","subject":"Fix chrome tab reuse (#1035)","message":"Fix chrome tab reuse (#1035)\n\n* Correctly checks site url to tab url in reuse check\r\n\r\n* Bring chrome to foreground focused after tab reuse\r\n","repos":"DivineGod\/create-react-app,Bogala\/create-react-app-awesome-ts,Timer\/create-react-app,just-boris\/create-preact-app,TondaHack\/create-react-app,reedsa\/create-react-app,Psychwire\/create-react-app,shrynx\/react-super-scripts,xiaohu-developer\/create-react-app,digitalorigin\/create-react-app,jayphelps\/create-react-app,IamJoseph\/create-react-app,dsopel94\/create-react-app,xiaohu-developer\/create-react-app,romaindso\/create-react-app,brysgo\/create-react-app,cr101\/create-react-app,ontruck\/create-react-app,ConnectedHomes\/create-react-web-app,in2core\/create-react-app,facebookincubator\/create-react-app,mangomint\/create-react-app,emvu\/create-react-app,devex-web-frontend\/create-react-app-dx,matart15\/create-react-app,Exocortex\/create-react-app,Sonu-sj\/cardMatcher,accurat\/accurapp,Clearcover\/web-build,1Body\/prayer-app,romaindso\/create-react-app,infernojs\/create-inferno-app,jayphelps\/create-react-app,just-boris\/create-preact-app,kst404\/e8e-react-scripts,powerreviews\/create-react-app,christiantinauer\/create-react-app,kst404\/e8e-react-scripts,accurat\/accurapp,IamJoseph\/create-react-app,devex-web-frontend\/create-react-app-dx,mangomint\/create-react-app,paweljedrzejczyk\/create-react-app,lopezator\/create-react-app,ro-savage\/create-react-app,josephfinlayson\/create-react-app,picter\/create-react-app,shrynx\/react-super-scripts,picter\/create-react-app,1Body\/prayer-app,ontruck\/create-react-app,Bogala\/create-react-app-awesome-ts,digitalorigin\/create-react-app,jdcrensh\/create-react-app,Place1\/create-react-app-typescript,andrewmaudsley\/create-react-app,GreenGremlin\/create-react-app,lopezator\/create-react-app,christiantinauer\/create-react-app,mikechau\/create-react-app,maletor\/create-react-app,ro-savage\/create-react-app,christiantinauer\/create-react-app,yosharepoint\/react-scripts-ts-sp,peopleticker\/create-react-app,svrcekmichal\/react-scripts,timlogemann\/create-react-app,DivineGod\/create-react-app,IamJoseph\/create-react-app,timlogemann\/create-react-app,whobutsb\/create-redux-app,RobzDoom\/frame_trap,1Body\/prayer-app,Timer\/create-react-app,timlogemann\/create-react-app,iamdoron\/create-react-app,iamdoron\/create-react-app,viankakrisna\/create-react-app,brysgo\/create-react-app,in2core\/create-react-app,cr101\/create-react-app,Clearcover\/web-build,appier\/create-react-app,paweljedrzejczyk\/create-react-app,johnslay\/create-react-app,andrewmaudsley\/create-react-app,Timer\/create-react-app,jdcrensh\/create-react-app,0xaio\/create-react-app,RobzDoom\/frame_trap,dpoineau\/create-react-app,bttf\/create-react-app,powerreviews\/create-react-app,devex-web-frontend\/create-react-app-dx,ConnectedHomes\/create-react-web-app,emvu\/create-react-app,facebookincubator\/create-react-app,kst404\/e8e-react-scripts,DivineGod\/create-react-app,whobutsb\/create-redux-app,TryKickoff\/create-kickoff-app,josephfinlayson\/create-react-app,in2core\/create-react-app,maletor\/create-react-app,liamhu\/create-react-app,emvu\/create-react-app,yosharepoint\/react-scripts-ts-sp,lolaent\/create-react-app,ConnectedHomes\/create-react-web-app,flybayer\/create-react-webextension,christiantinauer\/create-react-app,prontotools\/create-react-app,sigmacomputing\/create-react-app,GreenGremlin\/create-react-app,mangomint\/create-react-app,timlogemann\/create-react-app,HelpfulHuman\/helpful-react-scripts,svrcekmichal\/react-scripts,paweljedrzejczyk\/create-react-app,0xaio\/create-react-app,d3ce1t\/create-react-app,gutenye\/create-react-app,TryKickoff\/create-kickoff-app,Sonu-sj\/cardMatcher,ontruck\/create-react-app,matart15\/create-react-app,Place1\/create-react-app-typescript,bttf\/create-react-app,lopezator\/create-react-app,appier\/create-react-app,Clearcover\/web-build,CodingZeal\/create-react-app,devex-web-frontend\/create-react-app-dx,TondaHack\/create-react-app,lolaent\/create-react-app,mikechau\/create-react-app,g3r4n\/create-esri-react-app,dpoineau\/create-react-app,g3r4n\/create-esri-react-app,Place1\/create-react-app-typescript,digitalorigin\/create-react-app,josephfinlayson\/create-react-app,TryKickoff\/create-kickoff-app,1Body\/prayer-app,lolaent\/create-react-app,accurat\/accurapp,jdcrensh\/create-react-app,Sonu-sj\/cardMatcher,viankakrisna\/create-react-app,ConnectedHomes\/create-react-web-app,Exocortex\/create-react-app,dpoineau\/create-react-app,Psychwire\/create-react-app,xiaohu-developer\/create-react-app,dsopel94\/create-react-app,bttf\/create-react-app,infernojs\/create-inferno-app,powerreviews\/create-react-app,andrewmaudsley\/create-react-app,stockspiking\/create-react-app,tharakawj\/create-react-app,Exocortex\/create-react-app,flybayer\/create-react-webextension,amido\/create-react-app,peopleticker\/create-react-app,johnslay\/create-react-app,d3ce1t\/create-react-app,prometheusresearch\/create-react-app,prontotools\/create-react-app,svrcekmichal\/react-scripts,peopleticker\/create-react-app,iamdoron\/create-react-app,picter\/create-react-app,tharakawj\/create-react-app,stockspiking\/create-react-app,scyankai\/create-react-app,0xaio\/create-react-app,prometheusresearch\/create-react-app,amido\/create-react-app,jdcrensh\/create-react-app,HelpfulHuman\/helpful-react-scripts,reedsa\/create-react-app,Bogala\/create-react-app-awesome-ts,Bogala\/create-react-app-awesome-ts,CodingZeal\/create-react-app,sigmacomputing\/create-react-app,johnslay\/create-react-app,accurat\/accurapp,maletor\/create-react-app,reedsa\/create-react-app,sigmacomputing\/create-react-app,stockspiking\/create-react-app,amido\/create-react-app,cr101\/create-react-app,scyankai\/create-react-app,prontotools\/create-react-app,tharakawj\/create-react-app,romaindso\/create-react-app,HelpfulHuman\/helpful-react-scripts,appier\/create-react-app,d3ce1t\/create-react-app,yosharepoint\/react-scripts-ts-sp,igetgames\/spectacle-create-react-app,matart15\/create-react-app,mangomint\/create-react-app,prometheusresearch\/create-react-app,igetgames\/spectacle-create-react-app,CodingZeal\/create-react-app,facebookincubator\/create-react-app,Place1\/create-react-app-typescript,dsopel94\/create-react-app,ro-savage\/create-react-app,flybayer\/create-react-webextension,liamhu\/create-react-app,TondaHack\/create-react-app,yosharepoint\/react-scripts-ts-sp,viankakrisna\/create-react-app,liamhu\/create-react-app,gutenye\/create-react-app,shrynx\/react-super-scripts,brysgo\/create-react-app,scyankai\/create-react-app,infernojs\/create-inferno-app,Timer\/create-react-app,RobzDoom\/frame_trap,igetgames\/spectacle-create-react-app,jayphelps\/create-react-app,just-boris\/create-preact-app,Psychwire\/create-react-app,gutenye\/create-react-app,mikechau\/create-react-app,g3r4n\/create-esri-react-app,GreenGremlin\/create-react-app,d3ce1t\/create-react-app,GreenGremlin\/create-react-app","old_file":"packages\/react-dev-utils\/openChrome.applescript","new_file":"packages\/react-dev-utils\/openChrome.applescript","new_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\n\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL as string contains theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n tell theWindow to activate\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","old_contents":"(*\nCopyright (c) 2015-present, Facebook, Inc.\nAll rights reserved.\n\nThis source code is licensed under the BSD-style license found in the\n-- LICENSE file in the root directory of this source tree. An additional grant\nof patent rights can be found in the PATENTS file in the same directory.\n*)\n\non run argv\n set theURL to item 1 of argv\n\n tell application \"Chrome\"\n\n if (count every window) = 0 then\n make new window\n end if\n\n -- Find a tab currently running the debugger\n set found to false\n set theTabIndex to -1\n repeat with theWindow in every window\n set theTabIndex to 0\n repeat with theTab in every tab of theWindow\n set theTabIndex to theTabIndex + 1\n if theTab's URL is theURL then\n set found to true\n exit repeat\n end if\n end repeat\n\n if found then\n exit repeat\n end if\n end repeat\n\n if found then\n tell theTab to reload\n set index of theWindow to 1\n set theWindow's active tab index to theTabIndex\n else\n tell window 1\n activate\n make new tab with properties {URL:theURL}\n end tell\n end if\n end tell\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a88f53c8a3c3929c9119ea6beeac1f88aa386575","subject":"added option to add canvas number","message":"added option to add canvas number\n","repos":"charlax\/OmnigraffleScripts","old_file":"ExportAllLayers\/ExportAllLayers.applescript","new_file":"ExportAllLayers\/ExportAllLayers.applescript","new_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\nproperty ADD_CANVAS_NUMBER : true\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\tset filename to \"\"\n\t\tif ADD_CANVAS_NUMBER then\n\t\t\tset filename to canvasNumber & \"- \"\n\t\tend if\n\t\tset filename to filename & canvas_name\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to filename & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","old_contents":"-- export all layers to image files\n-- Copyright (c) 2011, Charles-Axel Dein\n\n-- Settings\nproperty exportFileExtension : \"png\"\n-- End of Settings\n\non file_exists(FileOrFolderToCheckString)\n try\n alias FileOrFolderToCheckString\n return true\n on error\n return false\n end try\nend file_exists\n\ntell application \"OmniGraffle Professional 5\"\n\tset theWindow to front window\n\tset theDocument to document of theWindow\n\tset theFilename to name of theDocument\n -- remove .graffle\n set theFilename to text 1 thru ((offset of \".\" in theFilename) - 1) of theFilename\n\t\n\tset export_folder to (choose folder with prompt \"Pick the destination folder\") as string\n\tset export_folder to export_folder & theFilename & \":\"\n\t\n\t-- create folder\n\tif file_exists(export_folder) of me then\n\t\ttry\n\t\t\tdisplay alert \"The file already exists. Do you want to replace it?\" buttons {\"Cancel\", \"Erase\"} cancel button 1\n\t\ton error errText number errNum\n\t\t\tif (errNum is equal to -128) then\n\t\t\t\treturn\n\t\t\tend if\n\t\tend try\n\n\t\t-- deletes the folder (necessary because some layers may have been renamed\n\t\tdo shell script \"rm -rf \" & quoted form of POSIX path of export_folder\n\n\telse\n\t\t-- creates the folder\n\t\tdo shell script \"mkdir -p \" & quoted form of POSIX path of export_folder\n\tend if\n\n\tset canvasCount to count of canvases of theDocument\n\t\n\tset i to 0\n\trepeat with canvasNumber from 1 to canvasCount\n\t\tset theCanvas to canvas canvasNumber of theDocument\n\t\tset canvas_name to name of theCanvas\n\t\tset canvas of theWindow to theCanvas\n\t\tset layerCount to count of layers of theCanvas\n\t\t\n\t\t-- hide all layers, except those beginning with \"*\"\n\t\t-- also check if there is only one layer to be exported\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\tset number_of_layer_to_be_exported to 0\n\t\t\t\n\t\t\tif theLayer is prints and class of theLayer is not shared layer then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\t\tset number_of_layer_to_be_exported to number_of_layer_to_be_exported + 1\n\t\t\t\telse\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\tend if\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\t\tset area type of current export settings to current canvas\n set draws background of current export settings to false\n set include border of current export settings to false\n\n\t\trepeat with layerNumber from 1 to layerCount\n\t\t\tset theLayer to layer layerNumber of theCanvas\n\t\t\t\n\t\t\tif (theLayer is prints) and (class of theLayer is not shared layer) then\n\t\t\t\tset layer_name to name of theLayer as string\n\t\t\t\tset filename to canvas_name & \" - \" & layer_name & \".\" & exportFileExtension\n\t\t\t\tset export_filename to export_folder & filename\n\t\t\t\t\n\t\t\t\t-- show the layer, export, then hide the layer\n\t\t\t\tif character 1 of layer_name is not \"*\" then\n\t\t\t\t\tset visible of theLayer to true\n\t\t\t\t\tsave theDocument in export_filename\n\t\t\t\t\tset visible of theLayer to false\n\t\t\t\tend if\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend repeat\n\t\t\n\tend repeat\nend tell\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"02ef9d476142f54d931ccade1dac5e62f0d4777b","subject":"Solving the variable mishap. Reverting the delay addition back to 1s.","message":"Solving the variable mishap. Reverting the delay addition back to 1s.\n","repos":"ArtemGordinsky\/Spotifree,ArtemGordinsky\/Spotifree","old_file":"SpotiFree.applescript","new_file":"SpotiFree.applescript","new_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\nglobal currentVolume, currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign the result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\n-- Repeat this entire block every .3 seconds. As set at the end.\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying()) then -- Is Spotify running? Is it playing?\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\tend try\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad. Then go forward.\n\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration) = false) then -- Check if current track is not an advertisement.\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tdelay currentTrackDuration - currentTrackPosition + 1\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend if\n\tend try\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level it was before muting.\n\t\t\tset sound volume to volume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(trackPopularity, trackDuration)\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal allLoginItems\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif appName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal posixAppPath\n\ttry\n\t\t-- Get the POSIX (Portable Operating System Interface) path of inputted appPath.\n\t\tset posixAppPath to POSIX path of alias appPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","old_contents":"-- Setting the \"playing\" property to the constant returned by Spotify as a \"player state\" when it's playing.\nproperty playing : constant ****kPSP\n\nif (isInLoginItems(\"SpotiFree\", \":Applications:SpotiFree.app\") = false) then -- Check if SpotiFree is login items.\n\tlocal dialogTitle, dialogMessage, dialogButtonYes, dialogButtonYes, spotifreeAppName, spotifreeAppPath\n\tset spotifreeAppName to \"SpotiFree\"\n\tset spotifreeAppPath to \":Applications:SpotiFree.app\"\n\tset dialogTitle to \"Open SpotiFree at login\"\n\tset dialogMessage to \"Do you want SpotiFree to run automatically on startup? You'll never notice it, seriously.\"\n\tset dialogButtonNo to \"No, thanks\"\n\tset dialogButtonYes to \"OK\"\n\t\n\t-- Run the dialog to a user.\n\tset runAtStartupQuestion to (display dialog dialogMessage with title dialogTitle with icon 1 buttons {dialogButtonNo, dialogButtonYes} default button 2)\n\t-- Assign the result to the variable runAtStartupAnswer.\n\tset runAtStartupAnswer to the button returned of runAtStartupQuestion\n\t-- Check if user agreed.\n\tif (runAtStartupAnswer = dialogButtonYes) then\n\t\ttry\n\t\t\t-- Add SpotiFree to the Login Items.\n\t\t\tmy addToLoginItems(spotifreeAppName, spotifreeAppPath)\n\t\tend try\n\tend if\nend if\n\n-- Repeat this entire block every .3 seconds. As set at the end.\nrepeat\n\ttry\n\t\tif (isRunning() and isPlaying()) then -- Is Spotify running? Is it playing?\n\t\t\tglobal currentVolume\n\t\t\tlocal currentTrackPopularity, currentTrackDuration, currentTrackPosition\n\t\t\ttell application \"Spotify\"\n\t\t\t\ttry\n\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\tset currentTrackPopularity to popularity of current track\n\t\t\t\tend try\n\t\t\t\ttry\n\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\tset currentTrackDuration to duration of current track\n\t\t\t\tend try\n\t\t\tend tell\n\t\t\t\n\t\t\t-- Check if current track is an advertisement.\n\t\t\tif (isAnAd(currentTrackPopularity, currentTrackDuration)) then\n\t\t\t\ttry\n\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current sound volume from Spotify and save it in a variable currentVolume.\n\t\t\t\t\t\t\tset currentVolume to sound volume\n\t\t\t\t\t\tend try\n\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\tset currentTrackPosition to player position\n\t\t\t\t\t\tend try\n\t\t\t\t\tend tell\n\t\t\t\t\t\n\t\t\t\t\t-- Mute Spotify.\n\t\t\t\t\tmute()\n\t\t\t\t\t\n\t\t\t\t\t-- Wait until the end of an ad. Then go forward.\n\t\t\t\t\tdelay currentDuration - currentPosition + 0.5\n\t\t\t\tend try\n\t\t\t\t\n\t\t\t\ttry\n\t\t\t\t\trepeat\n\t\t\t\t\t\tlocal trackPopularity, trackDuration, trackPosition\n\t\t\t\t\t\ttell application \"Spotify\"\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the popularity of a current track and save it in a variable currentTrackPopularity.\n\t\t\t\t\t\t\t\tset trackPopularity to popularity of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the duration of current track and save it in a variable currentTrackDuration.\n\t\t\t\t\t\t\t\tset trackDuration to duration of current track\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\t\ttry\n\t\t\t\t\t\t\t\t-- Get the current track position and save it in a variable currentTrackPosition.\n\t\t\t\t\t\t\t\tset trackPosition to player position\n\t\t\t\t\t\t\tend try\n\t\t\t\t\t\tend tell\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (isAnAd(trackPopularity, trackDuration) = false) then -- Check if current track is not an advertisement.\n\t\t\t\t\t\t\tunmute(currentVolume)\n\t\t\t\t\t\t\texit repeat\n\t\t\t\t\t\telse\n\t\t\t\t\t\t\tdelay trackDuration - trackPosition + 0.5\n\t\t\t\t\t\tend if\n\t\t\t\t\tend repeat\n\t\t\t\tend try\n\t\t\t\t\n\t\t\tend if\n\t\t\t\n\t\tend if\n\tend try\n\tdelay 0.3\nend repeat\n\non mute()\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\tpause\n\t\t\t\tset sound volume to 0\n\t\t\t\tplay\n\t\t\tend try\n\t\tend tell\n\tend try\nend mute\n\non unmute(volume)\n\ttell application \"Spotify\"\n\t\ttry\n\t\t\t-- Restore the volume to the level it was before muting.\n\t\t\tset sound volume to volume\n\t\tend try\n\tend tell\nend unmute\n\non isAnAd(trackPopularity, trackDuration)\n\ttry\n\t\t-- If current track's popularity is 0 and its duration is less then 40, then it's almost certainly an ad.\n\t\tif (trackPopularity = 0 and trackDuration < 40) then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isAnAd\n\non isPlaying()\n\tlocal playerState\n\ttry\n\t\ttell application \"Spotify\"\n\t\t\ttry\n\t\t\t\t-- Hook the variable playerState to Spotify's state (playing, paused etc.).\n\t\t\t\tset playerState to player state\n\t\t\tend try\n\t\tend tell\n\t\t-- Compare Spotify's state with a constant saved in the property on line 1.\n\t\tif playerState = playing then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\n\t\nend isPlaying\n\non isRunning()\n\tlocal spotifyProcesses\n\ttry\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Check if there are any Spotify processes. Set to variable spotifyProcesses\n\t\t\t\tset spotifyProcesses to (count of (every process whose bundle identifier is \"com.spotify.client\"))\n\t\t\tend try\n\t\tend tell\n\t\t-- Check the variable spotifyProcesses, to see is Spotify running.\n\t\tif spotifyProcesses 0 then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isRunning\n\non isInLoginItems(appName)\n\tlocal allLoginItems\n\ttry\n\t\t-- Get all apps in Login Items.\n\t\ttell application \"System Events\" to set allLoginItems to name of every login item as string\n\t\t-- Check if inputted app is in there.\n\t\tif appName is in allLoginItems then\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend if\n\tend try\nend isInLoginItems\n\non addToLoginItems(appName, appPath)\n\tlocal posixAppPath\n\ttry\n\t\t-- Get the POSIX (Portable Operating System Interface) path of inputted appPath.\n\t\tset posixAppPath to POSIX path of alias appPath\n\t\ttell application \"System Events\"\n\t\t\ttry\n\t\t\t\t-- Add inputted app to the Login Items.\n\t\t\t\tmake login item at end with properties {path:posixAppPath, hidden:true}\n\t\t\tend try\n\t\tend tell\n\tend try\nend addToLoginItems","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"534c361d861d1fbf61544183dade4e7ba71d2ba8","subject":"more delay for button click in fmGUI_AuthenticateDialog","message":"more delay for button click in fmGUI_AuthenticateDialog\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_file":"library\/fmGUI_Database\/fmGUI_AuthenticateDialog.applescript","new_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.2 - 2020-04-09 ( dshockley ): made 0.5 second delay before clicking buttons, since slower machines didn't quite work.\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until the window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.5\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tdelay 0.5\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro Advanced\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_ObjectClick_SignInButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_SignInButton(prefs)\nend fmGUI_ObjectClick_SignInButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","old_contents":"-- fmGUI_AuthenticateDialog({accountName:null, pwd:null, windowName:null})\n-- Erik Shagdar, NYHTC\n-- authenticate with the provided credentials\n\n\n(*\nREQUIRES:\n\tfmGUI_AppFrontMost\n\tfmGUI_NameOfFrontmostWindow\n\tfmGUI_ObjectClick_OkButton\n\tfmGUI_TextFieldSet\n\twindowWaitUntil\n\t\n\nHISTORY:\n\t1.2.1 - 2017-11-14 ( dshockley ): added 0.1 second delay after setting fields before clicking button. \n\t1.2 - 2017-11-10 ( eshagdar ): wait until the window renders\n\t1.1 - 2017-10-20 ( eshagdar ): FM16 changed object names - determine fields by their description. button name changed from 'OK' to 'Sign In'.\n\t1.0 - 2017-10-07 ( eshagdar ): created\n*)\n\n\non run\n\t\n\tfmGUI_AuthenticateDialog({accountName:\"admin\", pwd:\"test\", windowName:\"Open\"})\n\t\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non fmGUI_AuthenticateDialog(prefs)\n\t-- version 1.2.1\n\t\n\tset defaultPrefs to {accountName:\"admin\", pwd:\"test\", windowName:\"Open\"}\n\tset prefs to prefs & defaultPrefs\n\t\n\tset pwdFieldDesc to \"secure text field\"\n\t\n\t\n\ttry\n\t\tfmGUI_AppFrontMost()\n\t\t\n\t\t\n\t\t-- wait for window to render\n\t\twindowWaitUntil({windowName:windowName of prefs, windowNameTest:\"starts with\", whichWindow:\"front\"})\n\t\t\n\t\t\n\t\t-- enter credentials\n\t\ttell application \"System Events\"\n\t\t\ttell process \"FileMaker Pro Advanced\"\n\t\t\t\tset objAccount to first text field of window 1 whose description is not pwdFieldDesc\n\t\t\t\tset objPassword to first text field of window 1 whose description is pwdFieldDesc\n\t\t\tend tell\n\t\tend tell\n\t\tfmGUI_TextFieldSet({objRef:objAccount, objValue:accountName of prefs})\n\t\tfmGUI_TextFieldSet({objRef:objPassword, objValue:pwd of prefs})\n\t\t\n\t\t\n\t\t-- delay a bit, then click to confirm\n\t\tdelay 0.1\n\t\ttry\n\t\t\tfmGUI_ObjectClick_OkButton({})\n\t\ton error\n\t\t\tfmGUI_ObjectClick_SignInButton({})\n\t\tend try\n\t\t\n\t\t\n\t\t-- wait for window to close\n\t\tif fmGUI_NameOfFrontmostWindow() is equal to \"FileMaker Pro Advanced\" then error \"incorrect credentials\" number -1024\n\t\t\n\t\treturn windowWaitUntil({windowName:windowName of prefs, windowNameTest:\"does not start with\", whichWindow:\"front\"})\n\ton error errMsg number errNum\n\t\terror \"Unable to fmGUI_AuthenticateDialog - \" & errMsg number errNum\n\tend try\nend fmGUI_AuthenticateDialog\n\n--------------------\n-- END OF CODE\n--------------------\n\non fmGUI_AppFrontMost()\n\ttell application \"htcLib\" to fmGUI_AppFrontMost()\nend fmGUI_AppFrontMost\n\non fmGUI_NameOfFrontmostWindow()\n\ttell application \"htcLib\" to fmGUI_NameOfFrontmostWindow()\nend fmGUI_NameOfFrontmostWindow\n\non fmGUI_ObjectClick_OkButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_OkButton(prefs)\nend fmGUI_ObjectClick_OkButton\n\non fmGUI_ObjectClick_SignInButton(prefs)\n\ttell application \"htcLib\" to fmGUI_ObjectClick_SignInButton(prefs)\nend fmGUI_ObjectClick_SignInButton\n\non fmGUI_TextFieldSet(prefs)\n\tset objRefStr to coerceToString(objRef of prefs)\n\ttell application \"htcLib\" to fmGUI_TextFieldSet({objRef:objRefStr} & prefs)\nend fmGUI_TextFieldSet\n\non windowWaitUntil(prefs)\n\ttell application \"htcLib\" to windowWaitUntil(prefs)\nend windowWaitUntil\n\n\n\non coerceToString(incomingObject)\n\t-- 2017-07-12 ( eshagdar ): bootstrap code to bring a coerceToString into this file for the sample to run ( instead of having a copy of the handler locally ).\n\t\n\ttell application \"Finder\" to set coercePath to (container of (container of (path to me)) as text) & \"text parsing:coerceToString.applescript\"\n\tset codeCoerce to read file coercePath as text\n\ttell application \"htcLib\" to set codeCoerce to \"script codeCoerce \" & return & getTextBetween({sourceText:codeCoerce, beforeText:\"-- START OF CODE\", afterText:\"-- END OF CODE\"}) & return & \"end script\" & return & \"return codeCoerce\"\n\tset codeCoerce to run script codeCoerce\n\ttell codeCoerce to coerceToString(incomingObject)\nend coerceToString\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"5c0c3790d0b872962391abffc7ea82d9b643d0f1","subject":"[NEW] Xmo'd: model comments that start with -- are passed as args to mogenerator (David LeBer) i.e: Comments that look like:","message":"[NEW] Xmo'd: model comments that start with -- are passed as args to mogenerator (David LeBer)\ni.e: Comments that look like:\n\nxmod\n--base-class 'MYMOBase'\nBlah blah, other comments, etc blah\n\nWill result in:\ndo shell script \/usr\/bin\/mogenerator --model 'PATH_TO_MODEL' --output-dir 'OUTPUT_PATH' --base-class 'MYMOBase'\n","repos":"willowtreeapps\/mattgenerator,casademora\/mogenerator,fizker\/mogenerator,mjasa\/mogenerator,bgulanowski\/mogenerator,bgulanowski\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,adozenlines\/mogenerator,VladimirGoncharov\/mogenerator,willowtreeapps\/mattgenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,skywinder\/mogenerator,kostiakoval\/mogenerator,VladimirGoncharov\/mogenerator,bewebste\/mogenerator,bgulanowski\/mogenerator,Erin-Mounts\/mogenerator,untitledstartup\/mogenerator,otaran\/mogenerator,rentzsch\/mogenerator,hardikdevios\/mogenerator,seanm\/mogenerator,VladimirGoncharov\/mogenerator,fizker\/mogenerator,kostiakoval\/mogenerator,mjasa\/mogenerator,Erin-Mounts\/mogenerator,adozenlines\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,rentzsch\/mogenerator,willowtreeapps\/mattgenerator,mjasa\/mogenerator,bewebste\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,Erin-Mounts\/mogenerator,rentzsch\/mogenerator,untitledstartup\/mogenerator,iv-mexx\/mogenerator,skywinder\/mogenerator,seanm\/mogenerator,bewebste\/mogenerator,bewebste\/mogenerator,seanm\/mogenerator,anton-matosov\/mogenerator,anton-matosov\/mogenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,hardikdevios\/mogenerator,untitledstartup\/mogenerator,casademora\/mogenerator,anton-matosov\/mogenerator,iv-mexx\/mogenerator,hardikdevios\/mogenerator,ef-ctx\/mogenerator,pronebird\/mogenerator,casademora\/mogenerator,fizker\/mogenerator,skywinder\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tset theComments to the comments of modelItr\n\t\t\tif theComments contains \"xmod\" then\n\t\t\t\t\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr)\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))) then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\tmake new group with properties {full path:(srcDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t-- Create the do shell script string and append any custom per model options to it\n\t\t\t\tset theScript to \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --output-dir '\" & (srcDirPath of modelInfo) & \"'\"\n\t\t\t\tset theParagraphs to every paragraph of theComments\n\t\t\t\trepeat with theParagraph in theParagraphs\n\t\t\t\t\tif (length of the characters of theParagraph) is greater than 2 then\n\t\t\t\t\t\tset theToken to the first character of theParagraph & the second character of theParagraph\n\t\t\t\t\t\tif theToken is \"--\" then\n\t\t\t\t\t\t\tset theScript to theScript & \" \" & the text of theParagraph\n\t\t\t\t\t\tend if\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script theScript\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file (srcDirPath of modelInfo) as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\trepeat with pathItr in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\tif not (exists folder modelName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\tend tell\n\tset srcDirPath to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\n\treturn {name:modelName, isBundle:isModelBundle, srcDirPath:srcDirPath}\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","old_contents":"tell application \"Xcode\"\n\tif not (exists active project document) then \n\t\terror \"No active project. Please open an Xcode project and re-run the script.\"\n\ttry\n\t\tmy updateProjectXmod(project of active project document)\n\ton error errMsg\n\t\tmy logger(\"Xmod.scpt exception: \" & errMsg)\n\tend try\nend tell\n\non updateProjectXmod(_project)\n\ttell application \"Xcode\"\n\t\t-- Iterate over every .xcdatamodel in the project.\n\t\tset modelList to every file reference of _project whose file kind is \"wrapper.xcdatamodel\"\n\t\trepeat with modelItr in modelList\n\t\t\tif comments of modelItr contains \"xmod\" then\n\t\t\t\tset modelInfo to my getModelInfo(full path of modelItr)\n\t\t\t\t\n\t\t\t\t-- Figure out the model's parent group.\n\t\t\t\t-- Unversioned models are simple files so their group is the answer.\n\t\t\t\t-- Version models are bundles, which are represented as pseudo-groups in Xcode. You can't ask a pseudo-group for its parent group,\n\t\t\t\t-- so we discover it by querying project-wide all groups that contain the pseudo-group and using the first result.\n\t\t\t\tset modelItemRef to item 1 of (every item reference of _project whose full path is (full path of modelItr))\n\t\t\t\tset modelGroupRef to group of modelItemRef\n\t\t\t\tif isBundle of modelInfo then\n\t\t\t\t\tset modelGroupRef to item 1 of (every group of _project whose groups contains modelGroupRef)\n\t\t\t\tend if\n\t\t\t\t\n\t\t\t\t-- Create the .xcdatamodel related source group if necessary.\n\t\t\t\tif not (exists (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))) then\n\t\t\t\t\ttell modelGroupRef\n\t\t\t\t\t\tmake new group with properties {full path:(srcDirPath of modelInfo), name:(name of modelInfo)}\n\t\t\t\t\tend tell\n\t\t\t\tend if\n\t\t\t\tset modelSrcGroup to item 1 of (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))\n\t\t\t\ttell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it\n\t\t\t\t\n\t\t\t\t--\tMeat.\n\t\t\t\tdo shell script \"\/usr\/bin\/mogenerator --model '\" & full path of modelItr & \"' --output-dir '\" & (srcDirPath of modelInfo) & \"'\"\n\t\t\t\t\n\t\t\t\t--\tBuild a list of resulting source files.\n\t\t\t\ttell application \"System Events\"\n\t\t\t\t\tset modelSrcDirAlias to POSIX file (srcDirPath of modelInfo) as alias\n\t\t\t\t\tset humanHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name does not start with \"_\")\n\t\t\t\t\tset humanSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name does not start with \"_\")\n\t\t\t\t\tset machineHeaderFileList to (every file of modelSrcDirAlias whose name ends with \".h\" and name starts with \"_\")\n\t\t\t\t\tset machineSourceFileList to (every file of modelSrcDirAlias whose (name ends with \".m\" or name ends with \".mm\") and name starts with \"_\")\n\t\t\t\t\tset fileList to humanSourceFileList & humanHeaderFileList & machineSourceFileList & machineHeaderFileList\n\t\t\t\t\tset pathList to {}\n\t\t\t\t\trepeat with fileItem in fileList\n\t\t\t\t\t\tset pathList to pathList & POSIX path of fileItem\n\t\t\t\t\tend repeat\n\t\t\t\tend tell\n\t\t\t\t\n\t\t\t\t--\tAdd the source files to the model's source group and the model's targets.\n\t\t\t\tset targetList to my everyTargetWithBuildFilePath(_project, full path of modelItr)\n\t\t\t\trepeat with pathItr in pathList\n\t\t\t\t\ttell modelSrcGroup\n\t\t\t\t\t\tset modelSrcFileRef to make new file reference with properties {full path:pathItr, name:name of (info for POSIX file pathItr)}\n\t\t\t\t\t\trepeat with targetIndex from 1 to (count of targetList)\n\t\t\t\t\t\t\tset targetItr to item targetIndex of targetList\n\t\t\t\t\t\t\tadd modelSrcFileRef to targetItr\n\t\t\t\t\t\tend repeat\n\t\t\t\t\tend tell\n\t\t\t\tend repeat\n\t\t\tend if\n\t\tend repeat\n\tend tell\nend updateProjectXmod\n\non everyTargetWithBuildFilePath(_project, _buildFilePath)\n\tset theResult to {}\n\ttell application \"Xcode\"\n\t\trepeat with targetItr in (every target of _project)\n\t\t\trepeat with buildFileItr in build files of targetItr\n\t\t\t\tif full path of file reference of buildFileItr is _buildFilePath then set theResult to theResult & {(targetItr as anything)}\n\t\t\tend repeat\n\t\tend repeat\n\tend tell\n\treturn theResult\nend everyTargetWithBuildFilePath\n\non getModelInfo(modelFileUnixPath)\n\tset modelFilePosixRef to POSIX file modelFileUnixPath\n\tset modelFileAlias to modelFilePosixRef as alias\n\t\n\ttell application \"Finder\"\n\t\tset modelFileFolder to folder of modelFileAlias\n\t\t\n\t\tset isModelBundle to name of modelFileFolder ends with \".xcdatamodeld\"\n\t\tif isModelBundle then\n\t\t\tset modelFileAlias to (folder of modelFileAlias) as alias -- it's a bundle, go up one folder\n\t\t\tset modelFileFolder to folder of modelFileAlias\n\t\tend if\n\t\t\n\t\tset modelFileName to name of modelFileAlias\n\t\tif isModelBundle then\n\t\t\tset extensionLength to length of \".xcdatamodeld\"\n\t\telse\n\t\t\tset extensionLength to length of \".xcdatamodel\"\n\t\tend if\n\t\t\n\t\tset modelName to text 1 thru -(extensionLength + 1) of modelFileName -- pull off the extension\n\t\tif not (exists folder modelName of modelFileFolder) then\n\t\t\tmake folder at modelFileFolder with properties {name:modelName}\n\t\tend if\n\t\tset modelSrcFolder to folder modelName of modelFileFolder\n\tend tell\n\tset srcDirPath to text 1 thru -2 of (POSIX path of (modelSrcFolder as alias)) -- kill the trailing slash\n\treturn {name:modelName, isBundle:isModelBundle, srcDirPath:srcDirPath}\nend getModelInfo\n\non logger(msg)\n\tdo shell script \"logger '\" & msg & \"'\"\nend logger\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"787c33e6df60477ec6c9b59c5405578da3bf1604","subject":"* fix string concatenation by surrounding strings with round braces","message":"* fix string concatenation by surrounding strings with round braces","repos":"Dica-Developer\/generator-node-webkit,teoria\/generator-node-webkit,j-hernandez\/generator-node-webkit,Dica-Developer\/generator-node-webkit,ace68723\/generator-node-webkit,j-hernandez\/generator-node-webkit,Dica-Developer\/generator-node-webkit,ace68723\/generator-node-webkit,j-hernandez\/generator-node-webkit,daemonchen\/generator-node-webkit,napalmdev\/generator-node-webkit,napalmdev\/generator-node-webkit,daemonchen\/generator-node-webkit,ace68723\/generator-node-webkit,napalmdev\/generator-node-webkit,teoria\/generator-node-webkit,daemonchen\/generator-node-webkit,teoria\/generator-node-webkit","old_file":"app\/templates\/mac\/dmgStyler.applescript","new_file":"app\/templates\/mac\/dmgStyler.applescript","new_contents":"set appName to (system attribute \"APP_NAME\")\ntell application \"Finder\"\n tell disk appName\n open\n set current view of container window to icon view\n set toolbar visible of container window to false\n set statusbar visible of container window to false\n set the bounds of container window to {100, 100, 640, 250}\n set theViewOptions to the icon view options of container window\n set arrangement of theViewOptions to not arranged\n set icon size of theViewOptions to 64\n set background picture of theViewOptions to POSIX file (\"\/Volumes\/\" & appName & \"\/.background\/background.png\")\n set position of item (appName & \".app\") of container window to {225, 40}\n set position of item \"Applications\" of container window to {375, 40}\n set position of item \".DS_Store\" of container window to {400, 400}\n set position of item \".Trashes\" of container window to {400, 400}\n set position of item \".fseventsd\" of container window to {400, 400}\n set position of item \".background\" of container window to {400, 400}\n update without registering applications\n close\n end tell\nend tell\n","old_contents":"set appName to (system attribute \"APP_NAME\")\ntell application \"Finder\"\n tell disk appName\n open\n set current view of container window to icon view\n set toolbar visible of container window to false\n set statusbar visible of container window to false\n set the bounds of container window to {100, 100, 640, 250}\n set theViewOptions to the icon view options of container window\n set arrangement of theViewOptions to not arranged\n set icon size of theViewOptions to 64\n set background picture of theViewOptions to POSIX file \"\/Volumes\/\" & appName & \"\/.background\/background.png\"\n set position of item (appName & \".app\") of container window to {225, 40}\n set position of item \"Applications\" of container window to {375, 40}\n set position of item \".DS_Store\" of container window to {400, 400}\n set position of item \".Trashes\" of container window to {400, 400}\n set position of item \".fseventsd\" of container window to {400, 400}\n set position of item \".background\" of container window to {400, 400}\n update without registering applications\n close\n end tell\nend tell\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"6787917ffefa92afb3c9bbcefb9c927152838eb4","subject":"updated EasyCompile.","message":"updated EasyCompile.\n","repos":"Streamlyne\/website,Streamlyne\/website","old_file":"EasyCompile.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"EasyCompile.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\t\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\r\u0000\n\u0000\u000b\n\u0000\u0018.gtqpchltns \u0000\u0000@\u0000\u0000\u0000@\u0000ns \r\u0000\n\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0005\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\b\u0000H\u0000T\u0000M\u0000L\u0002\u0000\u000e\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0006\u0000C\u0000S\u0000S\u0002\u0000\u0012\u0000\u0002\u0000\u0015\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000\u0014\u0000J\u0000a\u0000v\u0000a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0006\u0000\u000b\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nprmp\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u001a\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000P\u0000P\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000.\u0006\u0000\u0019\u0000\u0003\u0000\u001c\n\u0000\u0004\nmlsl\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u001a\u0000\u001f\r\u0000\u001f\u0000\u0004Z\u0000\u0000\u0000\u000e\u0000\u001a\u0000 \u0000!\r\u0000 \u0000\u0002=\u0000\u0003\u0000\u000e\u0000\u0011\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u000f\n\u0000\u0004\nrslt\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\b\u000bboovfals\r\u0000!\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u0016\u0000$\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000\u0014\u0000\u000e say \"Exiting\"\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u001c\u0000 \u0000s\u0000a\u0000y\u0000 \u0000\"\u0000E\u0000x\u0000i\u0000t\u0000i\u0000n\u0000g\u0000\"\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\/\u00000\u0001\u0000\u0000\f\u0000\/\u0000\u001b\u0000\u0015 Compile the selected\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000*\u0000 \u0000C\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0002\u0000.\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000\u001b\u0000$\u00004\r\u00004\u0000\u0002r\u0000\u0000\u0000\u001b\u0000$\u00005\u00006\r\u00005\u0000\u0002c\u0000\u0000\u0000\u001b\u0000\"\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0005\u0000\u001b\u0000 \u00009\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001b\u0000 \u0000:\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000:\u0000\u0000f\u0000\u0000\u0000\u001b\u0000\u001c\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00008\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nalis\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000%\u00001\u0000=\r\u0000=\u0000\u0002O\u0000\u0000\u0000%\u00001\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000)\u00000\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0005\u0000)\u0000.\u0000B\r\u0000B\u0000\u0002n\u0000\u0000\u0000)\u0000.\u0000C\u0000D\r\u0000C\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\nposx\r\u0000D\u0000\u0002n\u0000\u0000\u0000)\u0000,\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000*\u0000,\n\u0000\u0004\nctnr\r\u0000F\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\r\u0000?\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000G\u000f\u0000G\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TH+\u0000\u0000\u0000\u0000\u00000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00033lb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000c\u001d\u0010\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00000\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u00002\u00007\u0000J\r\u0000J\u0000\u0003I\u0000\u0002\u00002\u00007\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0002\u00008\u0000?\u0000P\r\u0000P\u0000\u0002r\u0000\u0000\u00008\u0000?\u0000Q\u0000R\r\u0000Q\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000S\u000e\u0000S\u0000\u0001\u0000T\u0011\u0000T\u0000\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000.\u0000p\u0000y\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000t\u0000m\u0000l\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000e\u0000a\u0000d\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000f\u0000o\u0000o\u0000t\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000c\u0000s\u0000s\u0000\n\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000O\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0002\u0000@\u0000\u0000W\r\u0000W\u0000\u0003X\u0000\u0000\u0000@\u0000\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000T\u0000\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0003l\u0000\u0005\u0000T\u0000Y\u0000]\r\u0000]\u0000\u0002=\u0000\u0001\u0000T\u0000Y\u0000^\u0000_\r\u0000^\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000_\u0000\u0001m\u0000\u0000\u0000U\u0000X\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000\b\u0000H\u0000T\u0000M\u0000L\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000[\u0000\u0002r\u0000\u0000\u0000\\\u0000g\u0000b\u0000c\r\u0000b\u0000\u0002b\u0000\u0000\u0000\\\u0000c\u0000d\u0000e\r\u0000d\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000e\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0018\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000t\u0000m\u0000l\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0005\u0000j\u0000o\u0000j\r\u0000j\u0000\u0002=\u0000\u0001\u0000j\u0000o\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000j\u0000k\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000l\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000m\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000\u0006\u0000C\u0000S\u0000S\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000r\u0000}\u0000q\u0000r\r\u0000q\u0000\u0002b\u0000\u0000\u0000r\u0000y\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000r\u0000u\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u0016\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000c\u0000s\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000p\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0005\u0000\u0000\u0000y\r\u0000y\u0000\u0002=\u0000\u0001\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u0000\u0000|\u000e\u0000|\u0000\u0001\u0000}\u0011\u0000}\u0000\u0014\u0000J\u0000a\u0000v\u0000a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000e\u0000a\u0000d\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000f\u0000o\u0000o\u0000t\u0000_\u0000j\u0000s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000Y\u0000\u0003l\u0001\u0000\u0000C\u0000D\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000C\u0000D\n\u0000\u0004\nrslt\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000V\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000C\u0000o\u0000m\u0000p\u0000i\u0000l\u0000i\u0000n\u0000g\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000;\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000D\u0000o\u0000n\u0000e\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000\u0000\u0000\u0000\u0000S\u0001\u0000\u0000\u0010\u0000\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0007\u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u0000\u0002\u00002\u0000\u0002\u0000\u0000\u0002\u0000;\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000\u0000\u0002\u0000N\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\u0010\u0000\u0000#\u0000\u000f\u0000\u0013\u0000\u0016\u0000\u001a\u0000G\u0000S\u0000`\u0000f\u0000m\u0000u\u0000|\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nprmp\n\u0000\u0004\nmlsl\u0003\u0000\u0004\n\u0000\u0018.gtqpchltns \u0000\u0000@\u0000\u0000\u0000@\u0000ns \n\u0000\u0004\nrslt\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nalis\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\n\u0000\u0004\nctnr\n\u0000\u0004\nposx\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000mve\f\u0000\u0007Of\u0000\u001d\u0000\u0007h\u000fY\u0000\u0003hO)j\f\u0000\t&EO\u0012\u0000\t,,EUOj\f\u0000\u0010Oa\u0000\u0011E`\u0000\u0012O\u0017\u0000[[a\u0000\u0013a\u0000\u0014l\f\u0000\u0015kh\u001b\u0000\u0000a\u0000\u0016\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u0017%E`\u0000\u0018Y\u0000\/a\u0000\u0019\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u001a%E`\u0000\u0018Y\u0000\u0019a\u0000\u001b\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u001c%E`\u0000\u0018Y\u0000\u0003h[OYO_\u0000\u0012j\f\u0000\u0010Oa\u0000\u001dj\f\u0000\u001eOa\u0000\u001f%a\u0000 %_\u0000\u0012%j\f\u0000!Oa\u0000\"j\f\u0000\u001e\u000f\u000f\u0000\u0001\ralis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TH+\u0000\u0000\u0000A`\u000fEasyCompile.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000D\nXK\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0007website\u0000\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000K\u0000\u0000\u0000\u0001\u0000\u0010\u0000A`\u0000\u000b\u0585\u0000\u0005\u0000\u0002\u0006:\u0000\u0002\u0000AMacintosh HD:Users:\u0000glavin:\u0000Development:\u0000website:\u0000EasyCompile.app\u0000\u0000\u000e\u0000 \u0000\u000f\u0000E\u0000a\u0000s\u0000y\u0000C\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u00000Users\/glavin\/Development\/website\/EasyCompile.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0015\u0000\u0002\u0000\r\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000B\u0000\/\u0000U\u0000s\u0000e\u0000r\u0000s\u0000\/\u0000g\u0000l\u0000a\u0000v\u0000i\u0000n\u0000\/\u0000D\u0000e\u0000v\u0000e\u0000l\u0000o\u0000p\u0000m\u0000e\u0000n\u0000t\u0000\/\u0000w\u0000e\u0000b\u0000s\u0000i\u0000t\u0000e\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\t\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\r\u0000\n\u0000\u000b\n\u0000\u0018.gtqpchltns \u0000\u0000@\u0000\u0000\u0000@\u0000ns \r\u0000\n\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0005\u0000\f\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000f\u000e\u0000\u000f\u0000\u0001\u0000\u0010\u0011\u0000\u0010\u0000\b\u0000H\u0000T\u0000M\u0000L\u0002\u0000\u000e\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0013\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000\u0006\u0000C\u0000S\u0000S\u0002\u0000\u0012\u0000\u0002\u0000\u0015\r\u0000\u0015\u0000\u0001m\u0000\u0000\u0000\u0002\u0000\u0003\u0000\u0016\u000e\u0000\u0016\u0000\u0001\u0000\u0017\u0011\u0000\u0017\u0000\u0014\u0000J\u0000a\u0000v\u0000a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0002\u0000\u0000\u0006\u0000\u000b\u0000\u0003\u0000\u0018\u0000\u0019\n\u0000\u0004\nprmp\r\u0000\u0018\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u001a\u000e\u0000\u001a\u0000\u0001\u0000\u001b\u0011\u0000\u001b\u0000P\u0000P\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000 \u0000w\u0000h\u0000i\u0000c\u0000h\u0000 \u0000y\u0000o\u0000u\u0000 \u0000w\u0000a\u0000n\u0000t\u0000 \u0000t\u0000o\u0000 \u0000c\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000.\u0006\u0000\u0019\u0000\u0003\u0000\u001c\n\u0000\u0004\nmlsl\r\u0000\u001c\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\b\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u001a\u0000\u001f\r\u0000\u001f\u0000\u0004Z\u0000\u0000\u0000\u000e\u0000\u001a\u0000 \u0000!\r\u0000 \u0000\u0002=\u0000\u0003\u0000\u000e\u0000\u0011\u0000\"\u0000#\r\u0000\"\u0000\u00011\u0000\u0000\u0000\u000e\u0000\u000f\n\u0000\u0004\nrslt\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\n\u0000\b\u000bboovfals\r\u0000!\u0000\u0001k\u0000\u0000\u0000\u0014\u0000\u0016\u0000$\u0002\u0000$\u0000\u0002\u0000%\u0000&\r\u0000%\u0000\u0003l\u0000\u0001\u0000\u0014\u0000\u0014\u0000'\u0000(\u0001\u0000\u0000\f\u0000'\u0000\u0014\u0000\u000e say \"Exiting\"\u0000\u0002\u0000\u0000\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000\u001c\u0000 \u0000s\u0000a\u0000y\u0000 \u0000\"\u0000E\u0000x\u0000i\u0000t\u0000i\u0000n\u0000g\u0000\"\u0002\u0000&\u0000\u0002\u0000*\r\u0000*\u0000\u0001L\u0000\u0000\u0000\u0014\u0000\u0016\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000,\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\/\u00000\u0001\u0000\u0000\f\u0000\/\u0000\u001b\u0000\u0015 Compile the selected\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000*\u0000 \u0000C\u0000o\u0000m\u0000p\u0000i\u0000l\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000l\u0000e\u0000c\u0000t\u0000e\u0000d\u0002\u0000.\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0002\u0000\u001b\u0000$\u00004\r\u00004\u0000\u0002r\u0000\u0000\u0000\u001b\u0000$\u00005\u00006\r\u00005\u0000\u0002c\u0000\u0000\u0000\u001b\u0000\"\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0005\u0000\u001b\u0000 \u00009\r\u00009\u0000\u0003I\u0000\u0002\u0000\u001b\u0000 \u0000:\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000:\u0000\u0000f\u0000\u0000\u0000\u001b\u0000\u001c\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u00008\u0000\u0001m\u0000\u0000\u0000 \u0000!\n\u0000\u0004\nalis\r\u00006\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00003\u0000\u0002\u0000;\u0000<\r\u0000;\u0000\u0003l\u0000\u0002\u0000%\u00001\u0000=\r\u0000=\u0000\u0002O\u0000\u0000\u0000%\u00001\u0000>\u0000?\r\u0000>\u0000\u0002r\u0000\u0000\u0000)\u00000\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0005\u0000)\u0000.\u0000B\r\u0000B\u0000\u0002n\u0000\u0000\u0000)\u0000.\u0000C\u0000D\r\u0000C\u0000\u00011\u0000\u0000\u0000,\u0000.\n\u0000\u0004\nposx\r\u0000D\u0000\u0002n\u0000\u0000\u0000)\u0000,\u0000E\u0000F\r\u0000E\u0000\u00011\u0000\u0000\u0000*\u0000,\n\u0000\u0004\nctnr\r\u0000F\u0000\u0001o\u0000\u0000\u0000)\u0000*\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000A\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\r\u0000?\u0000\u0001m\u0000\u0000\u0000%\u0000&\u0000G\u000f\u0000G\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TH+\u0000\u0000\u0000\u0000\u00000\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00033lb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0018\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000c\u001d\u0010\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u00000\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000<\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0003l\u0000\u0002\u00002\u00007\u0000J\r\u0000J\u0000\u0003I\u0000\u0002\u00002\u00007\u0000K\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000K\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000I\u0000\u0002\u0000L\u0000M\r\u0000L\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000M\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0003l\u0000\u0002\u00008\u0000?\u0000P\r\u0000P\u0000\u0002r\u0000\u0000\u00008\u0000?\u0000Q\u0000R\r\u0000Q\u0000\u0001m\u0000\u0000\u00008\u0000;\u0000S\u000e\u0000S\u0000\u0001\u0000T\u0011\u0000T\u0000\u0000p\u0000y\u0000t\u0000h\u0000o\u0000n\u0000 \u0000s\u0000e\u0000t\u0000u\u0000p\u0000.\u0000p\u0000y\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000t\u0000m\u0000l\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000e\u0000a\u0000d\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000f\u0000o\u0000o\u0000t\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000c\u0000s\u0000s\u0000\n\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000O\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0003l\u0000\u0002\u0000@\u0000\u0000W\r\u0000W\u0000\u0003X\u0000\u0000\u0000@\u0000\u0000X\u0000Y\r\u0000X\u0000\u0004Z\u0000\u0000\u0000T\u0000\u0000Z\u0000[\u0000\\\r\u0000Z\u0000\u0003l\u0000\u0005\u0000T\u0000Y\u0000]\r\u0000]\u0000\u0002=\u0000\u0001\u0000T\u0000Y\u0000^\u0000_\r\u0000^\u0000\u0001o\u0000\u0000\u0000T\u0000U\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000_\u0000\u0001m\u0000\u0000\u0000U\u0000X\u0000`\u000e\u0000`\u0000\u0001\u0000a\u0011\u0000a\u0000\b\u0000H\u0000T\u0000M\u0000L\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000[\u0000\u0002r\u0000\u0000\u0000\\\u0000g\u0000b\u0000c\r\u0000b\u0000\u0002b\u0000\u0000\u0000\\\u0000c\u0000d\u0000e\r\u0000d\u0000\u0001o\u0000\u0000\u0000\\\u0000_\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000e\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000f\u000e\u0000f\u0000\u0001\u0000g\u0011\u0000g\u0000\u0018\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000t\u0000m\u0000l\r\u0000c\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0005\u0000j\u0000o\u0000j\r\u0000j\u0000\u0002=\u0000\u0001\u0000j\u0000o\u0000k\u0000l\r\u0000k\u0000\u0001o\u0000\u0000\u0000j\u0000k\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000l\u0000\u0001m\u0000\u0000\u0000k\u0000n\u0000m\u000e\u0000m\u0000\u0001\u0000n\u0011\u0000n\u0000\u0006\u0000C\u0000S\u0000S\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000o\u0000p\r\u0000o\u0000\u0002r\u0000\u0000\u0000r\u0000}\u0000q\u0000r\r\u0000q\u0000\u0002b\u0000\u0000\u0000r\u0000y\u0000s\u0000t\r\u0000s\u0000\u0001o\u0000\u0000\u0000r\u0000u\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000t\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000u\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u0016\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000c\u0000s\u0000s\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000p\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0005\u0000\u0000\u0000y\r\u0000y\u0000\u0002=\u0000\u0001\u0000\u0000\u0000z\u0000{\r\u0000z\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000{\u0000\u0001m\u0000\u0000\u0000\u0000\u0000|\u000e\u0000|\u0000\u0001\u0000}\u0011\u0000}\u0000\u0014\u0000J\u0000a\u0000v\u0000a\u0000S\u0000c\u0000r\u0000i\u0000p\u0000t\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000x\u0000\u0002\u0000~\r\u0000~\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000h\u0000e\u0000a\u0000d\u0000_\u0000j\u0000s\u0000 \u0000r\u0000e\u0000n\u0000d\u0000e\u0000r\u0000_\u0000f\u0000o\u0000o\u0000t\u0000_\u0000j\u0000s\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\r\u0000Y\u0000\u0003l\u0001\u0000\u0000C\u0000D\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000C\u0000D\n\u0000\u0004\nrslt\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000V\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0014\u0000C\u0000o\u0000m\u0000p\u0000i\u0000l\u0000i\u0000n\u0000g\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0006\u0000c\u0000d\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0004\u0000;\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000D\u0000o\u0000n\u0000e\u0000.\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0007\u0000\u0002\u0000\u0000\u0002\u0000\u001d\u0000\u0002\u0000\u0000\u0002\u00002\u0000\u0002\u0000\u0000\u0002\u0000;\u0000\u0002\u0000\u0000\u0002\u0000H\u0000\u0002\u0000\u0000\u0002\u0000N\u0000\u0002\u0000\u0000\u0002\u0000U\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00070\u0000\u0003val\u0000\u0000\u0010\u0000\u0000#\u0000\u000f\u0000\u0013\u0000\u0016\u0000\u001a\u0000G\u0000S\u0000`\u0000f\u0000m\u0000u\u0000|\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nprmp\n\u0000\u0004\nmlsl\u0003\u0000\u0004\n\u0000\u0018.gtqpchltns \u0000\u0000@\u0000\u0000\u0000@\u0000ns \n\u0000\u0004\nrslt\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\n\u0000\u0004\nalis\u000b\u0000\u00140\u0000\bpathtome\u0000\bpathToMe\n\u0000\u0004\nctnr\n\u0000\u0004\nposx\u000b\u0000\u00100\u0000\u0006mypath\u0000\u0006myPath\n\u0000\u0018.ascrcmnt****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u000b0\u0000\u0007command\u0000\u0000\n\u0000\u0004\nkocl\n\u0000\u0004\ncobj\n\u0000\u0018.corecnte****\u0000\u0000\u0000\u0000\u0000\u0000\u0010\u0000****\u000b\u0000\f0\u0000\bcommmand\u0000\u0000\n\u0000\u0018.sysottosnull\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000mve\f\u0000\u0007Of\u0000\u001d\u0000\u0007h\u000fY\u0000\u0003hO)j\f\u0000\t&EO\u0012\u0000\t,,EUOj\f\u0000\u0010Oa\u0000\u0011E`\u0000\u0012O\u0017\u0000[[a\u0000\u0013a\u0000\u0014l\f\u0000\u0015kh\u001b\u0000\u0000a\u0000\u0016\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u0017%E`\u0000\u0018Y\u0000\/a\u0000\u0019\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u001a%E`\u0000\u0018Y\u0000\u0019a\u0000\u001b\u0000\u001d\u0000\u0010_\u0000\u0012a\u0000\u001c%E`\u0000\u0018Y\u0000\u0003h[OYO_\u0000\u0012j\f\u0000\u0010Oa\u0000\u001dj\f\u0000\u001eOa\u0000\u001f%a\u0000 %_\u0000\u0012%j\f\u0000!Oa\u0000\"j\f\u0000\u001e\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"f58ae30f81df2957562e4b1329afdc41f957377b","subject":"Alfred checkpoint","message":"Alfred checkpoint\n","repos":"maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config,maxrothman\/config","old_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_file":"Alfred.alfredpreferences\/workflows\/user.workflow.F17986AF-1C5F-4852-A375-4C6EF531AEEF\/execute.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u0000&\u000e\u0000%\u0000\u0003\u0018\u0000'\u0000(\u000e\u0000'\u0000\u0003\u0018\u0000)\u0000*\u000e\u0000)\u0000\u0003\u0018\u0000+\u0000,\u000e\u0000+\u0000\u0003\u0018\u0000-\u000e\u0000-\u0000\u0003\u0018\u0000.\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000\f\u0000i\u0000T\u0000e\u0000r\u0000m\u00002\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000,\u0000\u0001\u00000\u0011\u00000\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenE\u000e\u0000*\u0000\u0001\u00001\u0011\u00001\u0000\b\u0000E\u0000d\u0000i\u0000t\n\u0000\u0004\nmenI\u000e\u0000(\u0000\u0001\u00002\u0011\u00002\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenE\u000e\u0000&\u0000\u0001\u00003\u0011\u00003\u0000*\u0000M\u0000a\u0000r\u0000k\u0000s\u0000 \u0000a\u0000n\u0000d\u0000 \u0000A\u0000n\u0000n\u0000o\u0000t\u0000a\u0000t\u0000i\u0000o\u0000n\u0000s\n\u0000\u0004\nmenI\u000e\u0000$\u0000\u0001\u00004\u0011\u00004\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u00005\u0011\u00005\u0000\f\u0000A\u0000l\u0000e\u0000r\u0000t\u0000s\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u00006\u0011\u00006\u0000$\u0000A\u0000l\u0000e\u0000r\u0000t\u0000 \u0000o\u0000n\u0000 \u0000N\u0000e\u0000x\u0000t\u0000 \u0000M\u0000a\u0000r\u0000k\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u00007\u0011\u00007\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0004\r\u0000\u0004\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\u0007\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\u0006\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u000e\u0000\b\u0000\t\r\u0000\b\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\f\u0000\n\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\r\u0000\n\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\b\u0000\u000b\r\u0000\u000b\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\b\u0000\f\u0000\r\r\u0000\f\u0000\u0002b\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000e\u0000\u0010\u0000\u0001\u0000\u0011\u0011\u0000\u0011\u0001L\u0000 \u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000s\u0000e\u0000t\u0000 \u0000_\u0000a\u0000p\u0000p\u0000 \u0000t\u0000o\u0000 \u0000i\u0000t\u0000e\u0000m\u0000 \u00001\u0000 \u0000o\u0000f\u0000 \u0000(\u0000e\u0000v\u0000e\u0000r\u0000y\u0000 \u0000p\u0000r\u0000o\u0000c\u0000e\u0000s\u0000s\u0000 \u0000w\u0000h\u0000o\u0000s\u0000e\u0000 \u0000f\u0000r\u0000o\u0000n\u0000t\u0000m\u0000o\u0000s\u0000t\u0000 \u0000i\u0000s\u0000 \u0000t\u0000r\u0000u\u0000e\u0000)\u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000\n\u0000\n\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000a\u0000p\u0000p\u0000l\u0000i\u0000c\u0000a\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000\"\u0000 \u0000\n\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \u0000_\u0000a\u0000p\u0000p\u0000\n\u0000\t\u0000\t\u0000\t\u0000t\u0000e\u0000l\u0000l\u0000 \r\u0000\u000f\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u0000\u0014\n\u0000\u0004\ncobj\r\u0000\u0014\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u0000\u0013\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\r\u0000\r\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0000\n\u0000\t\u0000\t\u0000\t\u0000\t\u0000i\u0000f\u0000 \u0000(\u0000i\u0000t\u0000 \u0000e\u0000x\u0000i\u0000s\u0000t\u0000s\u0000)\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000p\u0000e\u0000r\u0000f\u0000o\u0000r\u0000m\u0000 \u0000a\u0000c\u0000t\u0000i\u0000o\u0000n\u0000 \u0000\"\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000s\u0000\"\u0000\n\u0000\t\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0000 \u0000\n\u0000\t\u0000e\u0000n\u0000d\u0000 \u0000t\u0000e\u0000l\u0000l\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0017\u0000\u0018\u0000\u0019\u0001\u0000\u0000\u0010\u0000\u0017\u0000\u0002\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u000e\u0000\u0018\u0000\u0007\u0010\u0000\u0006\u0000\u001a\u0000\u001b\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u001a\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u001b\u0000\u0005\u0000\u0010\u0000\u0015\n\u0000\u0004\ncobj\n\u0000\u0018.sysodsct****\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000scpt\u000b\u0000\b0\u0000\u0004scpt\u0000\u0000\u0011\u0000\u000fk\/%%j\f\u0000\u0003E\u000f\u000e\u0000\u0019\u0000\u0001\u0014\u0000\u001c\u000e\u0000\u001c\u0000\u0003\u0018\u0000\u001d\u0000\u001e\u000e\u0000\u001d\u0000\u0003\u0018\u0000\u001f\u0000 \u000e\u0000\u001f\u0000\u0003\u0018\u0000!\u0000\"\u000e\u0000!\u0000\u0003\u0018\u0000#\u0000$\u000e\u0000#\u0000\u0003\u0018\u0000%\u000e\u0000%\u0000\u0003\u0018\u0000&\n\u0000\b\u000bmisccura\n\u0000\u0004\npcap\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000\n\u0000X\u0000c\u0000o\u0000d\u0000e\n\u0000\u0004\nmbar\u0003\u0000\u0001\n\u0000\u0004\nmbri\u000e\u0000$\u0000\u0001\u0000(\u0011\u0000(\u0000\u001c\u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000C\u0000o\u0000n\u0000t\u0000r\u0000o\u0000l\n\u0000\u0004\nmenE\u000e\u0000\"\u0000\u0001\u0000)\u0011\u0000)\u0000\u001c\u0000S\u0000o\u0000u\u0000r\u0000c\u0000e\u0000 \u0000C\u0000o\u0000n\u0000t\u0000r\u0000o\u0000l\n\u0000\u0004\nmenI\u000e\u0000 \u0000\u0001\u0000*\u0011\u0000*\u0000\u000e\u0000C\u0000o\u0000m\u0000m\u0000i\u0000t &\n\u0000\u0004\nactT\u000e\u0000\u001e\u0000\u0001\u0000+\u0011\u0000+\u0000\u000e\u0000A\u0000X\u0000P\u0000r\u0000e\u0000s\u0000sascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"cc0-1.0","lang":"AppleScript"} {"commit":"aeadcf71f93e970a6f1a44da8de3791fad26ad50","subject":"Scripts update","message":"Scripts update\n","repos":"nicksergeant\/dotfiles,nicksergeant\/dotfiles","old_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_file":"scripts\/arrange-windows-for-2560x1440.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000B\u0000o\u0000o\u0000k\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000?\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000?\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000@\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000@\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000]\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000]\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000h\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000^\u0000h\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000i\u0000s\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000i\u0000s\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000n\u0000o}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000t\u0000~\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000t\u0000~z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000x\u0000yx\u000bx\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001o\u0000\u0000\u0000y\u0000zv\u000bv\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002w\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ut\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000s\u0000r\u000bs\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u000f\u0002\u0000\u0000\u0002\u0000p\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000(\u0002p\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0002\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002r\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0007\u0002\u0001\u0007\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0006\"\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0003\u0002U\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0001\u0002\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0001\u0002.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\b\u0000R\u0000o\u0000o\u0000n\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001J\u0000\u0000\u0000\u0000\u0001M\u0002\u0001M\u0000\u0002\u0001N\u0001O\r\u0001N\u0000\u0001m\u0000\u0000\u0000\u0000*\u0003*\u0006\"\u0002\u0001O\u0000\u0002\u0001P)\r\u0001P\u0000\u0001m\u0000\u0000\u0000\u0000(\u0003(\u0003\u0002)\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0003l\u0000\u0002\u0001\u0003\u0001\r\u0001S'&\r\u0001S\u0000\u0003I\u0000\u0000\u0001\u0003\u0001\r%\u0001T$\u000b%\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001T\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001m\u0000\u0000\u0001\u0004\u0001\u0007\u0001W\u000e\u0001W\u0000\u0001\u0001X\u0011\u0001X\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001V\u0000\u0002\u0001Y\u0001Z\r\u0001Y\u0000\u0001o\u0000\u0000\u0001\u0007\u0001\b#\u000b#\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001Z\u0000\u0002\u0001[\"\r\u0001[\u0000\u0001o\u0000\u0000\u0001\b\u0001\t!\u000b!\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\"\u0000\u0000\u0002$\u0000\u0000\u0001'\u0000\u0000\u0001&\u0000\u0000\u0002\u0001R\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0003l\u0000\u0002\u0001\u000e\u0001\u0018\u0001^ \u001f\r\u0001^\u0000\u0003I\u0000\u0000\u0001\u000e\u0001\u0018\u001e\u0001_\u001d\u000b\u001e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001_\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u0001b\u000e\u0001b\u0000\u0001\u0001c\u0011\u0001c\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001a\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0001o\u0000\u0000\u0001\u0012\u0001\u0013\u001c\u000b\u001c\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001e\u0000\u0002\u0001f\u001b\r\u0001f\u0000\u0001o\u0000\u0000\u0001\u0013\u0001\u0014\u001a\u000b\u001a\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\u0001 \u0000\u0000\u0001\u001f\u0000\u0000\u0002\u0001]\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003l\u0000\u0002\u0001\u0019\u0001(\u0001i\u0019\u0018\r\u0001i\u0000\u0003I\u0000\u0000\u0001\u0019\u0001(\u0017\u0001j\u0016\u000b\u0017\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001m\u000e\u0001m\u0000\u0001\u0001n\u0011\u0001n\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001l\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0001o\u0000\u0000\u0001\u001d\u0001\u001e\u0015\u000b\u0015\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001p\u0000\u0002\u0001q\u0014\r\u0001q\u0000\u0001J\u0000\u0000\u0001\u001e\u0001$\u0001r\u0002\u0001r\u0000\u0002\u0001s\u0001t\r\u0001s\u0000\u0001m\u0000\u0000\u0001\u001e\u0001\u001f\u0013\u0003\u0013\u0006\"\u0002\u0001t\u0000\u0002\u0001u\u0012\r\u0001u\u0000\u0001m\u0000\u0000\u0001\u001f\u0001\"\u0011\u0003\u0011\u0003\u0002\u0012\u0000\u0000\u0002\u0014\u0000\u0000\u0002\u0016\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0001h\u0000\u0002\u0001v\u0001w\r\u0001v\u0000\u0003l\u0000\u0002\u0001)\u0001A\u0001x\u0010\u000f\r\u0001x\u0000\u0003I\u0000\u0000\u0001)\u0001A\u000e\u0001y\r\u000b\u000e\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001y\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0001m\u0000\u0000\u0001*\u0001-\u0001|\u000e\u0001|\u0000\u0001\u0001}\u0011\u0001}\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001{\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001J\u0000\u0000\u0001-\u00015\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001-\u00010\f\u0003\f\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u000b\r\u0001\u0000\u0001m\u0000\u0000\u00010\u00013\n\u0003\n\u0003]\u0002\u000b\u0000\u0000\u0002\u0001\u0000\u0002\u0001\t\r\u0001\u0000\u0001J\u0000\u0000\u00015\u0001=\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00015\u00018\b\u0003\b\u0003R\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00018\u0001;\u0006\u0003\u0006\u00024\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002\r\u0000\u0000\u0001\u0010\u0000\u0000\u0001\u000f\u0000\u0000\u0002\u0001w\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001B\u0001Q\u0001\u0005\u0004\r\u0001\u0000\u0003I\u0000\u0000\u0001B\u0001Q\u0003\u0001\u0002\u000b\u0003\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001F\u0001G\u0001\u000b\u0001\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001J\u0000\u0000\u0001G\u0001M\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001G\u0001H\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001H\u0001K\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0000\u0002\u0002\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001R\u0001a\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001R\u0001a\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001S\u0001V\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\n\u0000T\u0000I\u0000D\u0000A\u0000L\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001V\u0001W\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001W\u0001]\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001W\u0001X\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001X\u0001[\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001b\u0001x\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001b\u0001x\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001c\u0001f\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001f\u0001l\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001f\u0001i\u0003\u0000\u000f\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001i\u0001j\u0003\u0000(\u0002\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001l\u0001t\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001l\u0001o\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001o\u0001r\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001y\u0001\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001y\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001z\u0001}\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001}\u0001~\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001~\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001~\u0001\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001\u0001\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001Q\u0001\u0002\u0001\u0000\u0002\u0001\\\u0001\u0002\u0001\u0000\u0002\u0001g\u0001\u0002\u0001\u0000\u0002\u0001v\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000,\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001W\u0001b\u0001m\u0001|\u0001\u0001\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001lvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014m+\u0000\u000bO*a\u0000\u0015a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001aa\u0000\u0010lvm+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 a\u0000\u0010lvm+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"m+\u0000\u000bO*a\u0000#a\u0000\u0010lvm+\u0000\u000bO*a\u0000$a\u0000\u0016a\u0000%lva\u0000&a\u0000'lvm+\u0000\u000bO*a\u0000(a\u0000\u0010lvm+\u0000\u000bO*a\u0000)a\u0000\u0010lvm+\u0000\u000bO*a\u0000*a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000+a\u0000\u0010lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\t\u0000\u0002\u0000\n\u0000\u000b\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u0002\u0000\u000b\u0000\u0002\u0000\f\u0000\r\r\u0000\f\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\r\u0000\u0002\u0000\u000e\r\u0000\u000e\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0004Z\u0000\u0000\u0000\u0000\u0000=\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0002\u0000\u0000\u0000\b\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u0004\u0000\u0006\n\u0000\u0004\nprun\r\u0000\u0014\u0000\u00024\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0015\n\u0000\u0004\ncapp\r\u0000\u0015\u0000\u0001o\u0000\u0000\u0000\u0002\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\u0006\u0000\u0007\n\u0000\b\u000bboovtrue\r\u0000\u0010\u0000\u0002O\u0000\u0001\u0000\u000b\u00009\u0000\u0016\u0000\u0017\r\u0000\u0016\u0000\u0002O\u0000\u0000\u0000\u000f\u00008\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0001k\u0000\u0000\u0000\u0016\u00007\u0000\u001a\u0002\u0000\u001a\u0000\u0002\u0000\u001b\u0000\u001c\r\u0000\u001b\u0000\u0002r\u0000\u0000\u0000\u0016\u0000&\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0001J\u0000\u0000\u0000\u0016\u0000 \u0000\u001f\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002n\u0000\u0000\u0000\u0016\u0000\u001a\u0000\"\u0000#\r\u0000\"\u0000\u00024\u0000\u0000\u0000\u0017\u0000\u001a\u0000$\n\u0000\u0004\ncobj\r\u0000$\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0003\u0000\u0001\r\u0000#\u0000\u0001o\u0000\u0000\u0000\u0016\u0000\u0017\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000!\u0000\u0002\u0000%\r\u0000%\u0000\u0002n\u0000\u0000\u0000\u001a\u0000\u001e\u0000&\u0000'\r\u0000&\u0000\u00024\u0000\u0000\u0000\u001b\u0000\u001e\u0000(\n\u0000\u0004\ncobj\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\u0003\u0000\u0002\r\u0000'\u0000\u0001o\u0000\u0000\u0000\u001a\u0000\u001b\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u0002\u0000\u0000\r\u0000\u001e\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u0000)\u0000*\r\u0000)\u0000\u00011\u0000\u0000\u0000#\u0000%\n\u0000\u0004\nposn\r\u0000*\u0000\u0003l\u0000\u0005\u0000 \u0000#\u0000+\r\u0000+\u0000\u00012\u0000\u0000\u0000 \u0000#\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001c\u0000\u0002\u0000,\r\u0000,\u0000\u0002r\u0000\u0000\u0000'\u00007\u0000-\u0000.\r\u0000-\u0000\u0001J\u0000\u0000\u0000'\u00001\u0000\/\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002n\u0000\u0000\u0000'\u0000+\u00002\u00003\r\u00002\u0000\u00024\u0000\u0000\u0000(\u0000+\u00004\n\u0000\u0004\ncobj\r\u00004\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u00001\u0000\u0002\u00005\r\u00005\u0000\u0002n\u0000\u0000\u0000+\u0000\/\u00006\u00007\r\u00006\u0000\u00024\u0000\u0000\u0000,\u0000\/\u00008\n\u0000\u0004\ncobj\r\u00008\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0002\r\u00007\u0000\u0001o\u0000\u0000\u0000+\u0000,\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\r\u0000.\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00004\u00006\n\u0000\u0004\nptsz\r\u0000:\u0000\u0003l\u0000\u0005\u00001\u00004\u0000;\r\u0000;\u0000\u00012\u0000\u0000\u00001\u00004\n\u0000\u0004\ncwin\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0019\u0000\u00024\u0000\u0000\u0000\u000f\u0000\u0013\u0000<\n\u0000\u0004\nprcs\r\u0000<\u0000\u0001o\u0000\u0000\u0000\u0011\u0000\u0012\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000b\u0000\f\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\\\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000BD\u0000\u0001\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n cu\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0002\u00000\/:System:Library:CoreServices:System Events.app\/\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000?\u0000\u0002\u0000@\u0000A\r\u0000@\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0006\u0000B\r\u0000B\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0006\u0000C\u0000D\r\u0000C\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0004\u0000E\u0002\u0000E\u0000\u0002\u0000F\u0000G\r\u0000F\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0001\u0002\u0000G\u0000\u0002\u0000H\r\u0000H\u0000\u0001m\u0000\u0000\u0000\u0001\u0000\u0002\u0003\u0000(\u0002\u0000\u0000\r\u0000D\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000A\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0003l\u0000\u0002\u0000\u0007\u0000\r\u0000K\r\u0000K\u0000\u0002r\u0000\u0000\u0000\u0007\u0000\r\u0000L\u0000M\r\u0000L\u0000\u0001J\u0000\u0000\u0000\u0007\u0000\u000b\u0000N\u0002\u0000N\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0001m\u0000\u0000\u0000\u0007\u0000\b\u0003\u0006\"\u0002\u0000P\u0000\u0002\u0000Q\r\u0000Q\u0000\u0001m\u0000\u0000\u0000\b\u0000\t\u0003\u0005m\u0002\u0000\u0000\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000J\u0000\u0002\u0000R\u0000S\r\u0000R\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000S\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0003l\u0000\u0002\u0000\u000e\u0000\u0014\u0000V\r\u0000V\u0000\u0002r\u0000\u0000\u0000\u000e\u0000\u0014\u0000W\u0000X\r\u0000W\u0000\u0001J\u0000\u0000\u0000\u000e\u0000\u0012\u0000Y\u0002\u0000Y\u0000\u0002\u0000Z\u0000[\r\u0000Z\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0003\u0000\u0002\u0000[\u0000\u0002\u0000\\\r\u0000\\\u0000\u0001m\u0000\u0000\u0000\u000f\u0000\u0010\u0003\u0000(\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000U\u0000\u0002\u0000]\u0000^\r\u0000]\u0000\u0003l\u0000\u0002\u0000\u0015\u0000\u001b\u0000_\r\u0000_\u0000\u0002r\u0000\u0000\u0000\u0015\u0000\u001b\u0000`\u0000a\r\u0000`\u0000\u0001J\u0000\u0000\u0000\u0015\u0000\u0019\u0000b\u0002\u0000b\u0000\u0002\u0000c\u0000d\r\u0000c\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0003\b\u0002\u0002\u0000d\u0000\u0002\u0000e\r\u0000e\u0000\u0001m\u0000\u0000\u0000\u0016\u0000\u0017\u0003\u0005m\u0002\u0000\u0000\r\u0000a\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000^\u0000\u0002\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0002\u0000\u001c\u0000$\u0000j\r\u0000j\u0000\u0003I\u0000\u0000\u0000\u001c\u0000$\u0000k\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000k\u0000\u0002\u0000l\u0000m\r\u0000l\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000n\u000e\u0000n\u0000\u0001\u0000o\u0011\u0000o\u0000\u0012\u00001\u0000P\u0000a\u0000s\u0000s\u0000w\u0000o\u0000r\u0000d\u0002\u0000m\u0000\u0002\u0000p\u0000q\r\u0000p\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000q\u0000\u0002\u0000r\r\u0000r\u0000\u0001o\u0000\u0000\u0000\u001f\u0000 \u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000i\u0000\u0002\u0000s\u0000t\r\u0000s\u0000\u0003l\u0000\u0002\u0000%\u0000-\u0000u\r\u0000u\u0000\u0003I\u0000\u0000\u0000%\u0000-\u0000v\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000v\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000y\u000e\u0000y\u0000\u0001\u0000z\u0011\u0000z\u0000\u0012\u0000A\u0000p\u0000p\u0000 \u0000S\u0000t\u0000o\u0000r\u0000e\u0002\u0000x\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0001o\u0000\u0000\u0000'\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\r\u0000}\u0000\u0001o\u0000\u0000\u0000(\u0000)\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000t\u0000\u0002\u0000~\u0000\r\u0000~\u0000\u0003l\u0000\u0002\u0000.\u00006\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000.\u00006\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\/\u00000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000B\u0000o\u0000o\u0000k\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00001\u00002\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u00007\u0000?\u0000\r\u0000\u0000\u0003I\u0000\u0000\u00007\u0000?\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00008\u00009\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000C\u0000a\u0000l\u0000e\u0000n\u0000d\u0000a\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00009\u0000:\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000@\u0000M\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000@\u0000M\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000A\u0000B\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000C\u0000A\u0000R\u0000R\u0000O\u0000T\u0000w\u0000e\u0000a\u0000t\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000B\u0000C\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000C\u0000I\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000C\u0000D\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000D\u0000G\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000N\u0000]\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000N\u0000]\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000O\u0000R\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u000e\u0000D\u0000i\u0000s\u0000c\u0000o\u0000r\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000R\u0000S\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000S\u0000Y\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000S\u0000T\u0003\u0006\"\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000T\u0000W\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000^\u0000h\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000^\u0000h\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000_\u0000b\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000F\u0000a\u0000n\u0000t\u0000a\u0000s\u0000t\u0000i\u0000c\u0000a\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000b\u0000c\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000c\u0000d\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000i\u0000s\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000i\u0000s\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000j\u0000m\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u001a\u0000G\u0000o\u0000o\u0000g\u0000l\u0000e\u0000 \u0000C\u0000h\u0000r\u0000o\u0000m\u0000e\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000m\u0000n\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\r\u0000\u0000\u0001o\u0000\u0000\u0000n\u0000o}\u000b}\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002~\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000t\u0000~\u0000|{\r\u0000\u0000\u0003I\u0000\u0000\u0000t\u0000~z\u0000y\u000bz\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000u\u0000x\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000M\u0000a\u0000i\u0000l\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000x\u0000yx\u000bx\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000w\r\u0000\u0000\u0001o\u0000\u0000\u0000y\u0000zv\u000bv\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002w\u0000\u0000\u0002y\u0000\u0000\u0001|\u0000\u0000\u0001{\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ut\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000s\u0000r\u000bs\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0010\u0000M\u0000e\u0000s\u0000s\u0000a\u0000g\u0000e\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000q\u0003q\u0000\u000f\u0002\u0000\u0000\u0002\u0000p\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000o\u0003o\u0000(\u0002p\u0000\u0000\u0002\u0000\u0000\u0002\u0000n\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000m\u0003m\u0002\u0002\u0000\u0000\u0002\u0000l\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000k\u0003k\u0003\u0002l\u0000\u0000\u0002n\u0000\u0000\u0002r\u0000\u0000\u0001u\u0000\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000ji\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000h\u0000g\u000bh\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\n\u0000M\u0000u\u0000s\u0000i\u0000c\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000f\u000bf\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000e\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000d\u000bd\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002e\u0000\u0000\u0002g\u0000\u0000\u0001j\u0000\u0000\u0001i\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000cb\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000a\u0000`\u000ba\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\b\u0000N\u0000e\u0000w\u0000s\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000_\u000b_\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0000\u0000\u0002\u0000^\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000]\u000b]\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002^\u0000\u0000\u0002`\u0000\u0000\u0001c\u0000\u0000\u0001b\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\\[\r\u0000\u0000\u0003I\u0000\u0000\u0000\u0000Z\u0000Y\u000bZ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u0000\u0001\u0001\r\u0001\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0002\u000e\u0001\u0002\u0000\u0001\u0001\u0003\u0011\u0001\u0003\u0000\n\u0000N\u0000o\u0000t\u0000e\u0000s\u0002\u0001\u0001\u0000\u0002\u0001\u0004\u0001\u0005\r\u0001\u0004\u0000\u0001o\u0000\u0000\u0000\u0000X\u000bX\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0005\u0000\u0002\u0001\u0006W\r\u0001\u0006\u0000\u0001J\u0000\u0000\u0000\u0000\u0001\u0007\u0002\u0001\u0007\u0000\u0002\u0001\b\u0001\t\r\u0001\b\u0000\u0001m\u0000\u0000\u0000\u0000V\u0003V\u0006\"\u0002\u0001\t\u0000\u0002\u0001\nU\r\u0001\n\u0000\u0001m\u0000\u0000\u0000\u0000T\u0003T\u0003\u0002U\u0000\u0000\u0002W\u0000\u0000\u0002Y\u0000\u0000\u0001\\\u0000\u0000\u0001[\u0000\u0000\u0002\u0000\u0000\u0002\u0001\u000b\u0001\f\r\u0001\u000b\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\rSR\r\u0001\r\u0000\u0003I\u0000\u0000\u0000\u0000Q\u0001\u000eP\u000bQ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u000e\u0000\u0002\u0001\u000f\u0001\u0010\r\u0001\u000f\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u0011\u000e\u0001\u0011\u0000\u0001\u0001\u0012\u0011\u0001\u0012\u0000\f\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0002\u0001\u0010\u0000\u0002\u0001\u0013\u0001\u0014\r\u0001\u0013\u0000\u0001o\u0000\u0000\u0000\u0000O\u000bO\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0014\u0000\u0002\u0001\u0015N\r\u0001\u0015\u0000\u0001o\u0000\u0000\u0000\u0000M\u000bM\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002N\u0000\u0000\u0002P\u0000\u0000\u0001S\u0000\u0000\u0001R\u0000\u0000\u0002\u0001\f\u0000\u0002\u0001\u0016\u0001\u0017\r\u0001\u0016\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0018LK\r\u0001\u0018\u0000\u0003I\u0000\u0000\u0000\u0000J\u0001\u0019I\u000bJ\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0019\u0000\u0002\u0001\u001a\u0001\u001b\r\u0001\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0001\u001c\u000e\u0001\u001c\u0000\u0001\u0001\u001d\u0011\u0001\u001d\u0000\u0012\u0000P\u0000h\u0000o\u0000t\u0000o\u0000s\u0000h\u0000o\u0000p\u0002\u0001\u001b\u0000\u0002\u0001\u001e\u0001\u001f\r\u0001\u001e\u0000\u0001o\u0000\u0000\u0000\u0000H\u000bH\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u001f\u0000\u0002\u0001 G\r\u0001 \u0000\u0001o\u0000\u0000\u0000\u0000F\u000bF\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002G\u0000\u0000\u0002I\u0000\u0000\u0001L\u0000\u0000\u0001K\u0000\u0000\u0002\u0001\u0017\u0000\u0002\u0001!\u0001\"\r\u0001!\u0000\u0003l\u0000\u0002\u0000\u0000\u0001#ED\r\u0001#\u0000\u0003I\u0000\u0000\u0000\u0000C\u0001$B\u000bC\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001$\u0000\u0002\u0001%\u0001&\r\u0001%\u0000\u0001m\u0000\u0000\u0000\u0000\u0001'\u000e\u0001'\u0000\u0001\u0001(\u0011\u0001(\u0000\u000e\u0000P\u0000r\u0000e\u0000v\u0000i\u0000e\u0000w\u0002\u0001&\u0000\u0002\u0001)\u0001*\r\u0001)\u0000\u0001o\u0000\u0000\u0000\u0000A\u000bA\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001*\u0000\u0002\u0001+@\r\u0001+\u0000\u0001o\u0000\u0000\u0000\u0000?\u000b?\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002@\u0000\u0000\u0002B\u0000\u0000\u0001E\u0000\u0000\u0001D\u0000\u0000\u0002\u0001\"\u0000\u0002\u0001,\u0001-\r\u0001,\u0000\u0003l\u0000\u0002\u0000\u0000\u0001.>=\r\u0001.\u0000\u0003I\u0000\u0000\u0000\u0000<\u0001\/;\u000b<\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\/\u0000\u0002\u00010\u00011\r\u00010\u0000\u0001m\u0000\u0000\u0000\u0000\u00012\u000e\u00012\u0000\u0001\u00013\u0011\u00013\u0000\u0014\u0000R\u0000a\u0000d\u0000a\u0000r\u0000S\u0000c\u0000o\u0000p\u0000e\u0002\u00011\u0000\u0002\u00014\u00015\r\u00014\u0000\u0001o\u0000\u0000\u0000\u0000:\u000b:\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u00015\u0000\u0002\u000169\r\u00016\u0000\u0001o\u0000\u0000\u0000\u00008\u000b8\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00029\u0000\u0000\u0002;\u0000\u0000\u0001>\u0000\u0000\u0001=\u0000\u0000\u0002\u0001-\u0000\u0002\u00017\u00018\r\u00017\u0000\u0003l\u0000\u0002\u0000\u0000\u0001976\r\u00019\u0000\u0003I\u0000\u0000\u0000\u00005\u0001:4\u000b5\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001:\u0000\u0002\u0001;\u0001<\r\u0001;\u0000\u0001m\u0000\u0000\u0000\u0000\u0001=\u000e\u0001=\u0000\u0001\u0001>\u0011\u0001>\u0000\u000e\u0000R\u0000e\u0000f\u0000l\u0000e\u0000c\u0000t\u0002\u0001<\u0000\u0002\u0001?\u0001@\r\u0001?\u0000\u0001o\u0000\u0000\u0000\u00003\u000b3\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001@\u0000\u0002\u0001A2\r\u0001A\u0000\u0001o\u0000\u0000\u0000\u00001\u000b1\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u00022\u0000\u0000\u00024\u0000\u0000\u00017\u0000\u0000\u00016\u0000\u0000\u0002\u00018\u0000\u0002\u0001B\u0001C\r\u0001B\u0000\u0003l\u0000\u0002\u0000\u0000\u0001D0\/\r\u0001D\u0000\u0003I\u0000\u0000\u0000\u0000.\u0001E-\u000b.\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001E\u0000\u0002\u0001F\u0001G\r\u0001F\u0000\u0001m\u0000\u0000\u0000\u0000\u0001H\u000e\u0001H\u0000\u0001\u0001I\u0011\u0001I\u0000\f\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0002\u0001G\u0000\u0002\u0001J\u0001K\r\u0001J\u0000\u0001o\u0000\u0000\u0000\u0000,\u000b,\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001K\u0000\u0002\u0001L+\r\u0001L\u0000\u0001o\u0000\u0000\u0000\u0000*\u000b*\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002+\u0000\u0000\u0002-\u0000\u0000\u00010\u0000\u0000\u0001\/\u0000\u0000\u0002\u0001C\u0000\u0002\u0001M\u0001N\r\u0001M\u0000\u0003l\u0000\u0002\u0000\u0001\b\u0001O)(\r\u0001O\u0000\u0003I\u0000\u0000\u0000\u0001\b'\u0001P&\u000b'\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001P\u0000\u0002\u0001Q\u0001R\r\u0001Q\u0000\u0001m\u0000\u0000\u0000\u0001\u0002\u0001S\u000e\u0001S\u0000\u0001\u0001T\u0011\u0001T\u0000\f\u0000S\u0000i\u0000f\u0000t\u0000i\u0000e\u0002\u0001R\u0000\u0002\u0001U\u0001V\r\u0001U\u0000\u0001o\u0000\u0000\u0001\u0002\u0001\u0003%\u000b%\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001V\u0000\u0002\u0001W$\r\u0001W\u0000\u0001o\u0000\u0000\u0001\u0003\u0001\u0004#\u000b#\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0002$\u0000\u0000\u0002&\u0000\u0000\u0001)\u0000\u0000\u0001(\u0000\u0000\u0002\u0001N\u0000\u0002\u0001X\u0001Y\r\u0001X\u0000\u0003l\u0000\u0002\u0001\t\u0001\u0018\u0001Z\"!\r\u0001Z\u0000\u0003I\u0000\u0000\u0001\t\u0001\u0018 \u0001[\u001f\u000b \u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001[\u0000\u0002\u0001\\\u0001]\r\u0001\\\u0000\u0001m\u0000\u0000\u0001\n\u0001\r\u0001^\u000e\u0001^\u0000\u0001\u0001_\u0011\u0001_\u0000\n\u0000S\u0000l\u0000a\u0000c\u0000k\u0002\u0001]\u0000\u0002\u0001`\u0001a\r\u0001`\u0000\u0001o\u0000\u0000\u0001\r\u0001\u000e\u001e\u000b\u001e\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001a\u0000\u0002\u0001b\u001d\r\u0001b\u0000\u0001J\u0000\u0000\u0001\u000e\u0001\u0014\u0001c\u0002\u0001c\u0000\u0002\u0001d\u0001e\r\u0001d\u0000\u0001m\u0000\u0000\u0001\u000e\u0001\u000f\u001c\u0003\u001c\u0006\"\u0002\u0001e\u0000\u0002\u0001f\u001b\r\u0001f\u0000\u0001m\u0000\u0000\u0001\u000f\u0001\u0012\u001a\u0003\u001a\u0003\u0002\u001b\u0000\u0000\u0002\u001d\u0000\u0000\u0002\u001f\u0000\u0000\u0001\"\u0000\u0000\u0001!\u0000\u0000\u0002\u0001Y\u0000\u0002\u0001g\u0001h\r\u0001g\u0000\u0003l\u0000\u0002\u0001\u0019\u00011\u0001i\u0019\u0018\r\u0001i\u0000\u0003I\u0000\u0000\u0001\u0019\u00011\u0017\u0001j\u0016\u000b\u0017\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001j\u0000\u0002\u0001k\u0001l\r\u0001k\u0000\u0001m\u0000\u0000\u0001\u001a\u0001\u001d\u0001m\u000e\u0001m\u0000\u0001\u0001n\u0011\u0001n\u0000\u0010\u0000T\u0000e\u0000x\u0000t\u0000E\u0000d\u0000i\u0000t\u0002\u0001l\u0000\u0002\u0001o\u0001p\r\u0001o\u0000\u0001J\u0000\u0000\u0001\u001d\u0001%\u0001q\u0002\u0001q\u0000\u0002\u0001r\u0001s\r\u0001r\u0000\u0001m\u0000\u0000\u0001\u001d\u0001 \u0015\u0003\u0015\u0000\u000f\u0002\u0001s\u0000\u0002\u0001t\u0014\r\u0001t\u0000\u0001m\u0000\u0000\u0001 \u0001#\u0013\u0003\u0013\u0003]\u0002\u0014\u0000\u0000\u0002\u0001p\u0000\u0002\u0001u\u0012\r\u0001u\u0000\u0001J\u0000\u0000\u0001%\u0001-\u0001v\u0002\u0001v\u0000\u0002\u0001w\u0001x\r\u0001w\u0000\u0001m\u0000\u0000\u0001%\u0001(\u0011\u0003\u0011\u0003R\u0002\u0001x\u0000\u0002\u0001y\u0010\r\u0001y\u0000\u0001m\u0000\u0000\u0001(\u0001+\u000f\u0003\u000f\u00024\u0002\u0010\u0000\u0000\u0002\u0012\u0000\u0000\u0002\u0016\u0000\u0000\u0001\u0019\u0000\u0000\u0001\u0018\u0000\u0000\u0002\u0001h\u0000\u0002\u0001z\u0001{\r\u0001z\u0000\u0003l\u0000\u0002\u00012\u0001A\u0001|\u000e\r\r\u0001|\u0000\u0003I\u0000\u0000\u00012\u0001A\f\u0001}\u000b\u000b\f\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001}\u0000\u0002\u0001~\u0001\r\u0001~\u0000\u0001m\u0000\u0000\u00013\u00016\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\f\u0000T\u0000h\u0000i\u0000n\u0000g\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u00016\u00017\n\u000b\n\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\t\r\u0001\u0000\u0001J\u0000\u0000\u00017\u0001=\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u00017\u00018\b\u0003\b\u0006\"\u0002\u0001\u0000\u0002\u0001\u0007\r\u0001\u0000\u0001m\u0000\u0000\u00018\u0001;\u0006\u0003\u0006\u0003\u0002\u0007\u0000\u0000\u0002\t\u0000\u0000\u0002\u000b\u0000\u0000\u0001\u000e\u0000\u0000\u0001\r\u0000\u0000\u0002\u0001{\u0000\u0002\u0001\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001B\u0001X\u0001\u0005\u0004\r\u0001\u0000\u0003I\u0000\u0000\u0001B\u0001X\u0003\u0001\u0002\u000b\u0003\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001C\u0001F\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u0010\u0000T\u0000w\u0000e\u0000e\u0000t\u0000b\u0000o\u0000t\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001F\u0001L\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001F\u0001I\u0001\u0003\u0001\u0000\u000f\u0002\u0001\u0000\u0002\u0001\u0000\r\u0001\u0000\u0001m\u0000\u0000\u0001I\u0001J\u0003\u0000(\u0002\u0000\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001L\u0001T\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001L\u0001O\u0003\u0002\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001O\u0001R\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0002\u0000\u0000\u0001\u0005\u0000\u0000\u0001\u0004\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0003l\u0000\u0002\u0001Y\u0001h\u0001\r\u0001\u0000\u0003I\u0000\u0000\u0001Y\u0001h\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001Z\u0001]\u0001\u000e\u0001\u0000\u0001\u0001\u0011\u0001\u0000\u000e\u0000z\u0000o\u0000o\u0000m\u0000.\u0000u\u0000s\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001o\u0000\u0000\u0001]\u0001^\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001J\u0000\u0000\u0001^\u0001d\u0001\u0002\u0001\u0000\u0002\u0001\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001^\u0001_\u0003\u0006\"\u0002\u0001\u0000\u0002\u0001\r\u0001\u0000\u0001m\u0000\u0000\u0001_\u0001b\u0003\u0003\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\n\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0010\u0001\u0000\b\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u000e\u0001\u0000\u0007\u0010\u0000\b\u0001\u0001\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u000e\u0000\u0002\u0004\u0001\u0003\u0000\u0003\u000e\u0001\u0000\u0003\u0000\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0003\u000b\u0000\f0\u0000\bapp_name\u0000\u0000\u000b\u0000\u00100\u0000\fwin_position\u0000\u0000\u000b\u0000\f0\u0000\bwin_size\u0000\u0000\u0010\u0001\u0000\b\u0000=\n\u0000\u0004\ncapp\n\u0000\u0004\nprun\n\u0000\u0004\nprcs\n\u0000\u0004\ncobj\n\u0000\u0004\ncwin\n\u0000\u0004\nposn\n\u0000\u0004\nptsz\u0011\u0000>*\/,e\u0000\u001d\u00003\u0012\u0000+*\/\u0012\u0000#k\/l\/lv*-,FOk\/l\/lv*-,FUUY\u0000\u0003h\u000f\u000e\u0001\u0000\u0007\u0010\u0001\u0001\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0001h\u0001\u0002\u0001\u0000\u0002\u0000@\u0001\u0002\u0001\u0000\u0002\u0000I\u0001\u0002\u0001\u0000\u0002\u0000T\u0001\u0002\u0001\u0000\u0002\u0000]\u0001\u0002\u0001\u0000\u0002\u0000h\u0001\u0002\u0001\u0000\u0002\u0000s\u0001\u0002\u0001\u0000\u0002\u0000~\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0000\u0001\u0002\u0001\u0000\u0002\u0001\u000b\u0001\u0002\u0001\u0000\u0002\u0001\u0016\u0001\u0002\u0001\u0000\u0002\u0001!\u0001\u0002\u0001\u0000\u0002\u0001,\u0001\u0002\u0001\u0000\u0002\u00017\u0001\u0002\u0001\u0000\u0002\u0001B\u0001\u0002\u0001\u0000\u0002\u0001M\u0001\u0002\u0001\u0000\u0002\u0001X\u0001\u0002\u0001\u0000\u0002\u0001g\u0001\u0002\u0001\u0000\u0002\u0001z\u0001\u0002\u0001\u0000\u0002\u0001\u0001\u0002\u0001\u0000\u0002\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0001\u0000\u0000\u0010\u0001\u0000*\u0000n\u0000y\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0001\u0011\u0001\u001c\u0001'\u00012\u0001=\u0001H\u0001S\u0001^\u0001m\u0001\u0001\u0001\u0003\u0001\u0003\u0000(\u000b\u0000\u001a0\u0000\u0016narrow_center_position\u0000\u0000\u0003\u0006\"\u0003\u0005m\u000b\u0000\u00160\u0000\u0012narrow_center_size\u0000\u0000\u0003\u0000\u000b\u0000\u00180\u0000\u0014wide_center_position\u0000\u0000\u0003\b\u0002\u000b\u0000\u00140\u0000\u0010wide_center_size\u0000\u0000\u000b\u0000\u00150\u0000\u0011resize_app_window\u0000\u0000\u0003\u0003\u0003\u0000\u000f\u0003\u0002\u0003\u0003]\u0003\u0003R\u0003\u00024\u0011\u0001ilvEOlvEOlvEOlvEO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*m+\u0000\u000bO*a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0011a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0012m+\u0000\u000bO*a\u0000\u0013m+\u0000\u000bO*a\u0000\u0014m+\u0000\u000bO*a\u0000\u0015a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000\u0018m+\u0000\u000bO*a\u0000\u0019m+\u0000\u000bO*a\u0000\u001aa\u0000\u0010lvm+\u0000\u000bO*a\u0000\u001bm+\u0000\u000bO*a\u0000\u001cm+\u0000\u000bO*a\u0000\u001dm+\u0000\u000bO*a\u0000\u001em+\u0000\u000bO*a\u0000\u001fm+\u0000\u000bO*a\u0000 m+\u0000\u000bO*a\u0000!m+\u0000\u000bO*a\u0000\"a\u0000\u0010lvm+\u0000\u000bO*a\u0000#a\u0000\u0016a\u0000$lva\u0000%a\u0000&lvm+\u0000\u000bO*a\u0000'a\u0000\u0010lvm+\u0000\u000bO*a\u0000(a\u0000\u0016lva\u0000\u0017a\u0000\u0010lvm+\u0000\u000bO*a\u0000)a\u0000\u0010lvm+\u0000\u000b\u000f\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0001\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0006\"\u0003\u0005m\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\u0000\u0003\u0000(\u000e\u0001\u0000\u0002\u0004\u0001\u0003\u0000\u0002\u000e\u0001\u0000\u0002\u0000\u0003\b\u0002\u0003\u0005m\u0001\u0000\u0000\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"ef67a33a25a2914cff230001ef76890e5e0a0ce1","subject":"added credentials authenticate process.","message":"added credentials authenticate process.\n","repos":"NYHTC\/HTC_sous-dev","old_file":"src\/Scripts\/main.applescript","new_file":"src\/Scripts\/main.applescript","new_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-11-08 ( eshagdar ): renamed script library 'database' to 'fmDatabase'.\n\t2017-11-02 ( eshagdar ): pass prefs thru to sub-handlers. enabled new table process. added 'database' script library\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty appPath : \"\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\nproperty newTableAndFields : \"NewTable.xml\"\nproperty fmObjTrans : \"\"\n\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse fmSecurity : script \"fmSecurity\"\nuse fmDatabase : script \"fmDatabase\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-11-08 ( eshagdar ): no need to activate. the show error handler already does it.\n\t-- 2017-11-01 ( eshagdar ): don't bother showing error stack if user canceled\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t\n\t\t-- get app path\n\t\ttell application \"Finder\" to set appPath to (path to me) as string\n\t\t\n\t\t\n\t\t-- init dependencies\n\t\tlaunchHtcLib({})\n\t\tinitFmObjTrans({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\tif errNum is not -128 then htcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non initFmObjTrans(prefs)\n\t-- init fmObjectTranslator\n\t\n\t-- 2017-11-02 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset defaultPrefs to {}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tset appPath to path to me as string\n\t\tend tell\n\t\tset fmObjPath to appPath & \"Contents:Resources:Scripts:fmObjectTranslator.applescript\"\n\t\tset fmObjTrans to run script (alias fmObjPath)\n\t\t--tell fmObjTransScript to set fmObjTrans to fmObjectTranslator_Instantiate({})\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to initFmObjTrans - \" & errMsg number errNum\n\tend try\nend initFmObjTrans\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-11-20 ( eshagdar ): rename 'Table Copy Security' to 'Table Duplicate Security'\n\t-- 2017-11-02 ( eshagdar ): enabled create table process\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"Table Create\", \n\t\t\t\"Table Duplicate Security\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Authenticate\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Create\" then\n\t\t\treturn process_TableNew({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Duplicate Security\" then\n\t\t\treturn process_TableSecurityDuplicate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Authenticate\" then\n\t\t\treturn process_credentialsAuth({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tset processResult to fmGUI_Menu_OpenDB(prefs)\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(prefs & fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmSecurity's copyPrivSetToOthers(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_TableNew(prefs)\n\t-- create a new table\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's newTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_NewTable - \" & errMsg number errNum\n\tend try\nend process_TableNew\n\n\n\non process_TableSecurityDuplicate(prefs)\n\t-- copy privSet access settings from one table into another.\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's copyPrivSetSettingsForOneTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_TableSecurityDuplicate - \" & errMsg number errNum\n\tend try\nend process_TableSecurityDuplicate\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsAuth(prefs)\n\t-- authenticate using current credentials\n\t\n\t-- 2017-11-20 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset whichCredential to button returned of htcBasic's showDialog({msg:\"Which credentials do you want to authenticate with?\", buttonList:{\"User\", \"Full Access\", \"Cancel\"}})\n\t\tif whichCredential is \"User\" then\n\t\t\ttell application \"htcLib\" to return fmGUI_AuthenticateDialog({accountName:userAccountName of userCredentials, pwd:userPassword of userCredentials})\n\t\telse if whichCredential is \"Full Access\" then\n\t\t\ttell application \"htcLib\" to return fmGUI_AuthenticateDialog({accountName:fullAccessAccountName of fullAccessCredentials, pwd:fullAccessPassword of fullAccessCredentials})\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsAuth\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck(prefs & {forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit\n","old_contents":"-- HTC sous-dev\n-- 2017-05-03, Erik Shagdar, NYHTC\n\n-- written against OS X 10.10.5 and FileMaker 15.0.3\n\n(*\n\t2017-11-08 ( eshagdar ): renamed script library 'database' to 'fmDatabase'.\n\t2017-11-02 ( eshagdar ): pass prefs thru to sub-handlers. enabled new table process. added 'database' script library\n\t2017-10-19 ( eshagdar ): open data viewer. open manage DB. 'added Functions Open' process\n\t2017-10-17 ( eshagdar ): update 'promptProcess' to show credential expiration TS.\n\t2017-10-16 ( eshagdar ): converted app to source files.\n\t2017-05-03 ( eshagdar ): created.\n*)\n\n\nproperty AppletName : \"HTC sous-dev\"\nproperty appPath : \"\"\nproperty htcLibURL : \"https:\/\/github.com\/NYHTC\/applescript-fm-helper\"\n\n\nproperty debugMode : false\nproperty logging : false\n\nproperty orgNumLIST : {1, 2}\n\nproperty idleTime : 5 * minutes\n\nproperty credentialsTimeout : 2 * hours\nproperty credentialsUpdatedTS : (current date) - credentialsTimeout\nproperty fullAccessCredentials : {}\nproperty userCredentials : {}\n\nproperty newTableAndFields : \"NewTable.xml\"\nproperty fmObjTrans : \"\"\n\n\n\n\nuse htcBasic : script \"htcBasic\"\nuse credentialsLib : script \"credentials\"\nuse fmSecurity : script \"fmSecurity\"\nuse fmDatabase : script \"fmDatabase\"\nuse scripting additions\n\n\n\non run prefs\n\tif logging then htcBasic's logToConsole(\"Here I am\")\n\tmainScript(prefs)\nend run\n\n\non reopen prefs\n\tmainScript(prefs)\nend reopen\n\n\non idle\n\tcredentialsLib's credentialsCheck({})\n\treturn idleTime -- sets idle time to specified time ( instead of the default of 30 seconds )\nend idle\n\n\non quit\n\tprocess_quit({})\nend quit\n\n\n\non mainScript(prefs)\n\t-- main script to determine what to run\n\t\n\t-- 2017-11-08 ( eshagdar ): no need to activate. the show error handler already does it.\n\t-- 2017-11-01 ( eshagdar ): don't bother showing error stack if user canceled\n\t-- 2017-10-23 ( eshagdar ): added prefs. moved processes into separate handlers.\n\t-- 2017-xx-xx ( eshagdar ): created\n\t\n\t\n\ttry\n\t\t-- pick up prefs, if specified\n\t\tset defaultPrefs to {null}\n\t\ttry\n\t\t\tif class of prefs is script or prefs is equal to {} then set prefs to defaultPrefs\n\t\ton error\n\t\t\tset prefs to defaultPrefs\n\t\tend try\n\t\t\n\t\t\n\t\t-- get app path\n\t\ttell application \"Finder\" to set appPath to (path to me) as string\n\t\t\n\t\t\n\t\t-- init dependencies\n\t\tlaunchHtcLib({})\n\t\tinitFmObjTrans({})\n\t\t\n\t\t\n\t\t-- credentials debugging\n\t\tif debugMode then htcBasic's debugMsg(\"mainScript ---\" & return & \n\t\t\t\"fullAccessCredentials: \" & htcBasic's coerceToString(fullAccessCredentials) & return & \n\t\t\t\"userCredentials: \" & htcBasic's coerceToString(userCredentials))\n\t\t\n\t\t\n\t\t-- ensure credentials are not outdated\n\t\tcredentialsLib's credentialsEnsure({})\n\t\t\n\t\t\n\t\t-- prompt user what to do\n\t\tset process to item 1 of prefs\n\t\treturn runProcess({process:process})\n\ton error errMsg number errNum\n\t\ttell application \"htcLib\" to set errStack to replaceSimple({sourceTEXT:errMsg, oldChars:\" - \", newChars:return})\n\t\tset ignoreErrorNumList to {-128, -1024, -1719}\n\t\t(*\n\t\t\t-128: user cancel\n\t\t\t-1024: generic error\n\t\t\t-1719: assistive device\n\t\t*)\n\t\tif errNum is not in ignoreErrorNumList then set errStack to errStack & \" ( errNum: \" & errNum & \" )\"\n\t\tif errNum is not -128 then htcBasic's showUserError(errStack)\n\tend try\nend mainScript\n\n\n\non launchHtcLib(prefs)\n\t-- attempt to open htcLib. if it doesn't exist, navigate user to github\n\t\n\t-- 2017-06-28 ( eshagdar ): create\n\t\n\t\n\tset openName to \"Get it!\"\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"launching htcLib\")\n\t\ttell application \"htcLib\" to launch\n\ton error errMsg number errNum\n\t\tset missingAppDialog to display dialog \"You do Not have the htcLib installed.\" with title AppletName buttons {\"Cancel\", openName} default button openName\n\t\tif button returned of missingAppDialog is openName then open location htcLibURL\n\t\terror \"unable to launchHtcLib - \" & errMsg number errNum\n\tend try\nend launchHtcLib\n\n\n\non initFmObjTrans(prefs)\n\t-- init fmObjectTranslator\n\t\n\t-- 2017-11-02 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset defaultPrefs to {}\n\t\tset prefs to prefs & defaultPrefs\n\t\t\n\t\t\n\t\ttell application \"Finder\"\n\t\t\tset appPath to path to me as string\n\t\tend tell\n\t\tset fmObjPath to appPath & \"Contents:Resources:Scripts:fmObjectTranslator.applescript\"\n\t\tset fmObjTrans to run script (alias fmObjPath)\n\t\t--tell fmObjTransScript to set fmObjTrans to fmObjectTranslator_Instantiate({})\n\t\t\n\t\t\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to initFmObjTrans - \" & errMsg number errNum\n\tend try\nend initFmObjTrans\n\n\n\non promptProcess(prefs)\n\t-- user user for which process to do\n\t\n\t-- 2017-10-17 ( eshagdar ): add expiration TS to prompt.\n\t-- 2017-06-28 ( eshagdar ): created\n\t\n\t\n\tset defaultPrefs to {processList:{}}\n\tset prefs to prefs & defaultPrefs\n\t\n\ttry\n\t\tif logging then htcBasic's logToConsole(\"About to ask user to process\")\n\t\tset promptProcessDialog to (choose from list processList of prefs with title AppletName with prompt \"Creds expire: \" & time string of (credentialsUpdatedTS + credentialsTimeout) & return & return & \"Select a process to run:\" OK button name \"Run\" without multiple selections allowed and empty selection allowed)\n\t\tif promptProcessDialog is false then return promptProcessDialog\n\t\tset processName to item 1 of promptProcessDialog\n\t\tif logging then htcBasic's logToConsole(\"Process: \" & processName)\n\t\treturn processName\n\t\t\n\ton error errMsg number errNum\n\t\terror \"unable to promptProcess - \" & errMsg number errNum\n\tend try\nend promptProcess\n\n\n\non runProcess(prefs)\n\t-- run process specified by the user\n\t\n\t-- 2017-11-20 ( eshagdar ): rename 'Table Copy Security' to 'Table Duplicate Security'\n\t-- 2017-11-02 ( eshagdar ): enabled create table process\n\t-- 2017-10-18 ( eshagdar ): added quit process\n\t-- 2017-06-28 ( eshagdar ): created.\n\t\n\t\n\ttry\n\t\tset processList to {\n\t\t\t\"DO NOTHING\", \n\t\t\t\"Full Access Toggle\", \n\t\t\t\"Db Manage\", \n\t\t\t\"Functions Open\", \n\t\t\t\"Security Open\", \n\t\t\t\"Security Save\", \n\t\t\t\"PrivSet - copy settings to other PrivSets\", \n\t\t\t\"Table Create\", \n\t\t\t\"Table Duplicate Security\", \n\t\t\t\"Data Viewer\", \n\t\t\t\"Clipboard Clear\", \n\t\t\t\"Credentials Update\", \n\t\t\t\"QUIT\"}\n\t\tset oneProcess to promptProcess({processList:processList})\n\t\t\n\t\t\n\t\tif oneProcess is equal to \"DO NOTHING\" or oneProcess is equal to false then\n\t\t\treturn true\n\t\t\t\n\t\telse if oneProcess is equal to \"Full Access Toggle\" then\n\t\t\treturn process_fullAccessToggle({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Db Manage\" then\n\t\t\treturn process_manageDB({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Functions Open\" then\n\t\t\treturn process_functionsOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Open\" then\n\t\t\treturn process_securityOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Security Save\" then\n\t\t\treturn process_securitySave({})\n\t\t\t\n\t\telse if oneProcess is equal to \"PrivSet - copy settings to other PrivSets\" then\n\t\t\treturn process_PrivSetCopy({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Create\" then\n\t\t\treturn process_TableNew({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Table Duplicate Security\" then\n\t\t\treturn process_TableSecurityDuplicate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Data Viewer\" then\n\t\t\treturn process_dataViewerOpen({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Clipboard Clear\" then\n\t\t\treturn process_ClipboardClear({})\n\t\t\t\n\t\telse if oneProcess is equal to \"Credentials Update\" then\n\t\t\treturn process_credentialsUpdate({})\n\t\t\t\n\t\telse if oneProcess is equal to \"QUIT\" then\n\t\t\treturn process_quit({})\n\t\t\t\n\t\telse\n\t\t\terror \"unknown process '\" & oneProcess & \"'\" number -1024\n\t\tend if\n\ton error errMsg number errNum\n\t\terror \"unable to runProcess - \" & errMsg number errNum\n\tend try\nend runProcess\n\n\n\non process_fullAccessToggle(prefs)\n\t-- wrapper for htcLib handler that toggles between full access and user account\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-17 ( eshagdar ): moved function into htcLib and converted this to a wrapper\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_fullAccessToggle(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_fullAccessToggle - \" & errMsg number errNum\n\tend try\nend process_fullAccessToggle\n\n\n\non process_manageDB(prefs)\n\t-- wrapper for opening manage DB\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\"\n\t\t\tset processResult to fmGUI_Menu_OpenDB(prefs)\n\t\t\twindowWaitUntil({windowName:\"Manage Database for\", whichWindow:\"front\", windowNameTest:\"does not contain\", waitCycleDelaySeconds:1, waitCycleMax:30 * minutes})\n\t\tend tell\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_manageDB - \" & errMsg number errNum\n\tend try\nend process_manageDB\n\n\n\non process_functionsOpen(prefs)\n\t-- wrapper for opening custom functions\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_CustomFunctions_Open(prefs)\n\ton error errMsg number errNum\n\t\terror \"unable to process_functionsOpen - \" & errMsg number errNum\n\tend try\nend process_functionsOpen\n\n\n\non process_securityOpen(prefs)\n\t-- wrapper for opening security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tprocess_fullAccessToggle({ensureMode:\"full\"})\n\t\ttell application \"htcLib\" to return fmGUI_ManageSecurity_GoToTab_PrivSets(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_securityOpen - \" & errMsg number errNum\n\tend try\nend process_securityOpen\n\n\n\non process_securitySave(prefs)\n\t-- wrapper for saving security\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\"\n\t\t\tfmGUI_AppFrontMost()\n\t\t\treturn fmGUI_ManageSecurity_Save(prefs & fullAccessCredentials)\n\t\tend tell\n\ton error errMsg number errNum\n\t\terror \"unable to process_securitySave - \" & errMsg number errNum\n\tend try\nend process_securitySave\n\n\n\non process_PrivSetCopy(prefs)\n\t-- wrapper for copying a selected privSet\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmSecurity's copyPrivSetToOthers(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_PrivSetCopy - \" & errMsg number errNum\n\tend try\nend process_PrivSetCopy\n\n\n\non process_TableNew(prefs)\n\t-- create a new table\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's newTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_NewTable - \" & errMsg number errNum\n\tend try\nend process_TableNew\n\n\n\non process_TableSecurityDuplicate(prefs)\n\t-- copy privSet access settings from one table into another.\n\t\n\t-- 2017-11-20 ( eshagdar ): return process result. go into full access mode if needed\n\t-- 2017-11-01 ( eshagdar ): created\n\t\n\t\n\ttry\n\t\tset fullAccessToggle to process_fullAccessToggle({ensureMode:\"full\"})\n\t\tset processResult to fmDatabase's copyPrivSetSettingsForOneTable(prefs)\n\t\tif modeSwitch of fullAccessToggle then process_fullAccessToggle({})\n\t\t\n\t\treturn processResult\n\ton error errMsg number errNum\n\t\terror \"unable to process_TableSecurityDuplicate - \" & errMsg number errNum\n\tend try\nend process_TableSecurityDuplicate\n\n\n\non process_dataViewerOpen(prefs)\n\t-- wrapper for opening the data viewer\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\ttell application \"htcLib\" to return fmGUI_DataViewer_Open(prefs & fullAccessCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_dataViewerOpen - \" & errMsg number errNum\n\tend try\nend process_dataViewerOpen\n\n\n\non process_ClipboardClear(prefs)\n\t-- wrapper for clearing the clipboard\n\t\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tset the clipboard to null\n\t\treturn true\n\ton error errMsg number errNum\n\t\terror \"unable to process_ClipboardClear - \" & errMsg number errNum\n\tend try\nend process_ClipboardClear\n\n\n\non process_credentialsUpdate(prefs)\n\t-- wrapper for updating credentials\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\treturn credentialsLib's credentialsUpdate(prefs & fullAccessCredentials & userCredentials)\n\ton error errMsg number errNum\n\t\terror \"unable to process_credentialsUpdate - \" & errMsg number errNum\n\tend try\nend process_credentialsUpdate\n\n\n\non process_quit(prefs)\n\t-- wrapper for quiting applet\n\t\n\t-- 2017-11-02 ( eshagdar ): pass prefs thru\n\t-- 2017-10-23 ( eshagdar ): moved from runProcess into a separate handler\n\t\n\t\n\ttry\n\t\tcredentialsLib's credentialsCheck(prefs & {forceClear:true})\n\t\tcontinue quit\n\ton error errMsg number errNum\n\t\terror \"unable to process_quit - \" & errMsg number errNum\n\tend try\nend process_quit\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"7d3ecb535f3f0cc64047d63fef34b80aed30cda7","subject":"Update for iTunes 10","message":"Update for iTunes 10\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_file":"macosx\/scripts\/iTunes\/mobile-speakers.applescript","new_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Find the remote speakers button\n\ton findCorrectButton()\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\tset in_buttons to (get buttons of window 1)\n\t\t\t\t\n\t\t\t\trepeat with a_button in in_buttons\n\t\t\t\t\tset the_desc to (get description of a_button)\n\t\t\t\t\tif the_desc is equal to \"remote speakers\" then\n\t\t\t\t\t\treturn a_button\n\t\t\t\t\tend if\n\t\t\t\tend repeat\n\t\t\tend tell\n\t\tend tell\n\tend findCorrectButton\n\t\n\ton setRemoteSpeakersTo(item_index)\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton())\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick the_speaker_button\n\t\t\t\tkey code 115 -- Home Key (first speaker in list)\n\t\t\t\t\n\t\t\t\trepeat item_index times\n\t\t\t\t\tkey code 125 -- Down Arrow\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\tkey code 36 -- Return Key\n\t\t\t\t\n\t\t\t\t-- Wait for iTunes to connect to the speakers\n\t\t\t\tdelay 5\n\t\t\tend tell\n\t\tend tell\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\non handle_string(s)\n\ttell application \"iTunes\" to stop\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(s)\n\tremoteSpeakerFinder's resetWindow()\n\tset volume 1\n\ttell application \"iTunes\" to play (get the first item of (get every track where database ID is 24759))\nend handle_string\n\non run\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(2)\n\tremoteSpeakerFinder's resetWindow()\nend run\n","old_contents":"(*\n Script object to make calling a defined function easier while in the\n iTunes and System Events name space.\n*)\nscript remoteSpeakerFinder\n\tglobal the_bwindow, the_state\n\t\n\t-- Given a list of buttons, find the remote speakers button\n\t-- by finding the first button with a name that isn't in a \n\t-- rejection list.\n\ton findCorrectButton(in_buttons)\n\t\tset buttons_to_skip to {\"Burn Disc\"}\n\t\t\n\t\trepeat with a_button in in_buttons\n\t\t\ttry -- some buttons don't have names\n\t\t\t\tset the_name to name of a_button\n\t\t\t\tif buttons_to_skip does not contain {the_name} then\n\t\t\t\t\treturn the_name\n\t\t\t\tend if\n\t\t\tend try\n\t\tend repeat\n\t\t\n\t\treturn 16 -- default response\n\tend findCorrectButton\n\t\n\ton setRemoteSpeakersTo(item_index)\n\t\ttell application \"System Events\"\n\t\t\ttell process \"iTunes\"\n\t\t\t\t\n\t\t\t\tset the_buttons to (get buttons of window 1)\n\t\t\t\tset the_speaker_button to (remoteSpeakerFinder's findCorrectButton(the_buttons))\n\t\t\t\t\n\t\t\t\t-- Switch to the speakers in my bedroom\n\t\t\t\tset frontmost to true\n\t\t\t\tclick button the_speaker_button of window 1\n\t\t\t\tkey code 115 -- Home Key (first speaker in list)\n\t\t\t\t\n\t\t\t\trepeat item_index times\n\t\t\t\t\tkey code 125 -- Down Arrow\n\t\t\t\tend repeat\n\t\t\t\t\n\t\t\t\tkey code 36 -- Return Key\n\t\t\t\t\n\t\t\t\t-- Wait for iTunes to connect to the speakers\n\t\t\t\tdelay 5\n\t\t\tend tell\n\t\tend tell\n\tend setRemoteSpeakersTo\n\t\n\ton prepareWindow()\n\t\ttell application \"iTunes\"\n\t\t\tset the_bwindow to (get first browser window)\n\t\t\tset the_state to (get minimized of the_bwindow)\n\t\t\tset visible of the_bwindow to true\n\t\t\tset minimized of the_bwindow to false\n\t\tend tell\n\tend prepareWindow\n\t\n\ton resetWindow()\n\t\ttell application \"iTunes\"\n\t\t\t-- Return window to previous state\n\t\t\tset minimized of the_bwindow to the_state\n\t\tend tell\n\tend resetWindow\nend script\n\non handle_string(s)\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(s)\n\tremoteSpeakerFinder's resetWindow()\n\tset volume 1\n\ttell application \"iTunes\"\n\t\tplay (get the first item of (get every track where database ID is 24759))\n\tend tell\nend handle_string\n\non run\n\tremoteSpeakerFinder's prepareWindow()\n\tremoteSpeakerFinder's setRemoteSpeakersTo(2)\n\tremoteSpeakerFinder's resetWindow()\nend run\n","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f6180b96943b077d88e7eb218831e7a37a8a7790","subject":"Add printer select feature","message":"Add printer select feature\n","repos":"sumipan\/safari-print.rb","old_file":"bin\/PrintSafari.scpt","new_file":"bin\/PrintSafari.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\t\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000\t\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u000e\u0001\u0000\u0000\f\u0000\r\u0000\u0015\u0000\u000f printer ??????\u0000\u0002\u0000\u0000\u000e\u0000\u000e\u0000\u0001\u0000\u000f\u0011\u0000\u000f\u0000\u001e\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000e\u0000r\u0000 0o_\u0015ep0gn!0Y\u0002\u0000\f\u0000\u0002\u0000\u0010\u0000\u0011\r\u0000\u0010\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0012\u0000\u0013\u0001\u0000\u0000\f\u0000\u0012\u0000\u001a\u0000\u0014 1. last use printer\u0000\u0002\u0000\u0000\u000e\u0000\u0013\u0000\u0001\u0000\u0014\u0011\u0000\u0014\u0000(\u0000 \u00001\u0000.\u0000 \u0000l\u0000a\u0000s\u0000t\u0000 \u0000u\u0000s\u0000e\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000e\u0000r\u0002\u0000\u0011\u0000\u0002\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0017\u0000\u0018\u0001\u0000\u0000\f\u0000\u0017\u0000\u000e\u0000\b 2. none\u0000\u0002\u0000\u0000\u000e\u0000\u0018\u0000\u0001\u0000\u0019\u0011\u0000\u0019\u0000\u0010\u0000 \u00002\u0000.\u0000 \u0000n\u0000o\u0000n\u0000e\u0002\u0000\u0016\u0000\u0002\u0000\u001a\u0000\u001b\r\u0000\u001a\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001c\u0000\u001d\u0001\u0000\u0000\f\u0000\u001c\u0000\u0018\u0000\u0012 3. your printer 1\u0000\u0002\u0000\u0000\u000e\u0000\u001d\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u0000$\u0000 \u00003\u0000.\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000e\u0000r\u0000 \u00001\u0002\u0000\u001b\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000!\u0000\"\u0001\u0000\u0000\f\u0000!\u0000\u0018\u0000\u0012 4. your printer 2\u0000\u0002\u0000\u0000\u000e\u0000\"\u0000\u0001\u0000#\u0011\u0000#\u0000$\u0000 \u00004\u0000.\u0000 \u0000y\u0000o\u0000u\u0000r\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000e\u0000r\u0000 \u00002\u0002\u0000 \u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000&\u0000'\u0001\u0000\u0000\f\u0000&\u0000\u0010\u0000\n and so on\u0000\u0002\u0000\u0000\u000e\u0000'\u0000\u0001\u0000(\u0011\u0000(\u0000\u0014\u0000 \u0000a\u0000n\u0000d\u0000 \u0000s\u0000o\u0000 \u0000o\u0000n\u0002\u0000%\u0000\u0002\u0000)\u0000*\r\u0000)\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\b\u0000+\u0000,\r\u0000+\u0000\u0002[\u0000\u0000\u0000\u0000\u0000\u0006\u0000-\u0000.\r\u0000-\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0003\u0000\u0000\r\u0000.\u0000\u0003l\u0000\u0005\u0000\u0001\u0000\u0005\u0000\/\r\u0000\/\u0000\u0002n\u0000\u0000\u0000\u0001\u0000\u0005\u00000\u00001\r\u00000\u0000\u00024\u0000\u0000\u0000\u0002\u0000\u0005\u00002\n\u0000\u0004\ncobj\r\u00002\u0000\u0001m\u0000\u0000\u0000\u0003\u0000\u0004\u0003\u0000\u0001\r\u00001\u0000\u0001o\u0000\u0000\u0000\u0001\u0000\u0002\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000,\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007printer\u0000\u0000\u0002\u0000*\u0000\u0002\u00003\u00004\r\u00003\u0000\u0003l\u0000\u0002\u0000\t\u0000\t\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u00004\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002O\u0000\u0000\u0000\t\u0000`\u00007\u00008\r\u00007\u0000\u0001k\u0000\u0000\u0000\r\u0000_\u00009\u0002\u00009\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003I\u0000\u0002\u0000\r\u0000\u0012\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000;\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u0000\u0013\u0000\u001c\u0000>\u0000?\r\u0000>\u0000\u00035\u0000\u0000\u0000\u0013\u0000\u0018\u0000@\n\u0000\u0004\nxppb\r\u0000@\u0000\u0001m\u0000\u0000\u0000\u0015\u0000\u0016\u0000A\u000e\u0000A\u0000\u0001\u0000B\u0011\u0000B\u0000:\u0000c\u0000o\u0000m\u0000.\u0000a\u0000p\u0000p\u0000l\u0000e\u0000.\u0000p\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000.\u0000p\u0000r\u0000i\u0000n\u0000t\u0000f\u0000a\u0000x\n\u0000\b\u000bkfrmID \r\u0000?\u0000\u00011\u0000\u0000\u0000\u0018\u0000\u001b\n\u0000\u0004\nxpcp\u0002\u0000=\u0000\u0002\u0000C\u0000D\r\u0000C\u0000\u0003I\u0000\u0002\u0000\u001d\u0000\"\u0000E\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000E\u0000\u0001m\u0000\u0000\u0000\u001d\u0000\u001e\u0000F\b\u0000F\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000D\u0000\u0002\u0000G\u0000H\r\u0000G\u0000\u0003l\u0000\u0002\u0000#\u0000#\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000H\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002O\u0000\u0000\u0000#\u0000]\u0000K\u0000L\r\u0000K\u0000\u0002O\u0000\u0000\u0000'\u0000\\\u0000M\u0000N\r\u0000M\u0000\u0001k\u0000\u0000\u0000.\u0000[\u0000O\u0002\u0000O\u0000\u0002\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0002\u0000.\u00009\u0000R\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0000R\u0000\u0002n\u0000\u0000\u0000.\u00005\u0000S\u0000T\r\u0000S\u0000\u00024\u0000\u0000\u00002\u00005\u0000U\n\u0000\u0004\npopB\r\u0000U\u0000\u0001m\u0000\u0000\u00003\u00004\u0003\u0000\u0001\r\u0000T\u0000\u00024\u0000\u0000\u0000.\u00002\u0000V\n\u0000\u0004\ncwin\r\u0000V\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000Q\u0000\u0002\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0002\u0000:\u0000?\u0000Y\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000Y\u0000\u0001m\u0000\u0000\u0000:\u0000;\u0000Z\b\u0000Z\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000X\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0003l\u0000\u0001\u0000@\u0000@\u0000]\u0000^\u0001\u0000\u0000\f\u0000]\u0000\u0011\u0000\u000b 1????????3\u0000\u0002\u0000\u0000\u000e\u0000^\u0000\u0001\u0000_\u0011\u0000_\u0000\u0016\u0000 \u000010dv0n00000o\u00003\u0002\u0000\\\u0000\u0002\u0000`\u0000a\r\u0000`\u0000\u0003l\u0000\u0001\u0000@\u0000@\u0000b\u0000c\u0001\u0000\u0000\f\u0000b\u0000\u001d\u0000\u0017 2????????4 ????2??????\u0000\u0002\u0000\u0000\u000e\u0000c\u0000\u0001\u0000d\u0011\u0000d\u0000.\u0000 \u000020dv0n00000o\u00004\u0000 0n00F0k\u000020d0Z0d0Z00\u0002\u0000a\u0000\u0002\u0000e\u0000f\r\u0000e\u0000\u0003I\u0000\u0002\u0000@\u0000U\u0000g\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\r\u0000g\u0000\u0002n\u0000\u0000\u0000@\u0000Q\u0000h\u0000i\r\u0000h\u0000\u00024\u0000\u0000\u0000L\u0000Q\u0000j\n\u0000\u0004\nmenI\r\u0000j\u0000\u0001o\u0000\u0000\u0000O\u0000P\u000b\u0000\u000b0\u0000\u0007printer\u0000\u0000\r\u0000i\u0000\u0002n\u0000\u0000\u0000@\u0000L\u0000k\u0000l\r\u0000k\u0000\u00024\u0000\u0000\u0000G\u0000L\u0000m\n\u0000\u0004\nmenE\r\u0000m\u0000\u0001m\u0000\u0000\u0000J\u0000K\u0003\u0000\u0001\r\u0000l\u0000\u0002n\u0000\u0000\u0000@\u0000G\u0000n\u0000o\r\u0000n\u0000\u00024\u0000\u0000\u0000D\u0000G\u0000p\n\u0000\u0004\npopB\r\u0000p\u0000\u0001m\u0000\u0000\u0000E\u0000F\u0003\u0000\u0001\r\u0000o\u0000\u00024\u0000\u0000\u0000@\u0000D\u0000q\n\u0000\u0004\ncwin\r\u0000q\u0000\u0001m\u0000\u0000\u0000B\u0000C\u0003\u0000\u0001\u0002\u0000\u0000\u0002\u0000f\u0000\u0002\u0000r\r\u0000r\u0000\u0003I\u0000\u0002\u0000V\u0000[\u0000s\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000s\u0000\u0001m\u0000\u0000\u0000V\u0000W\u0000t\b\u0000t\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000N\u0000\u00024\u0000\u0000\u0000'\u0000+\u0000u\n\u0000\u0004\nprcs\r\u0000u\u0000\u0001m\u0000\u0000\u0000)\u0000*\u0000v\u000e\u0000v\u0000\u0001\u0000w\u0011\u0000w\u0000$\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\r\u0000L\u0000\u0001m\u0000\u0000\u0000#\u0000$\u0000x\u000f\u0000x\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001p5-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0001li\u0001liz\u0001liy\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000J\u0000\u0002\u0000y\r\u0000y\u0000\u0003l\u0000\u0002\u0000^\u0000^\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\r\u00008\u0000\u0001m\u0000\u0000\u0000\t\u0000\n\u0000z\u000f\u0000z\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sprf\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001~\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\u0016System Preferences.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001pAF\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A=\u0000\u0000\u0000\u0001\u0000\u0004\u0001li\u0000\u0002\u00001Macintosh HD:Applications:\u0000System Preferences.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/System Preferences.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u00006\u0000\u0002\u0000{\u0000|\r\u0000{\u0000\u0003l\u0000\u0002\u0000a\u0000a\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000|\u0000\u0002\u0000}\u0000~\r\u0000}\u0000\u0003I\u0000\u0002\u0000a\u0000f\u0000\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000\u0000\u0001m\u0000\u0000\u0000a\u0000b\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sprf\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001~\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\u0016System Preferences.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001pAF\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000A=\u0000\u0000\u0000\u0001\u0000\u0004\u0001li\u0000\u0002\u00001Macintosh HD:Applications:\u0000System Preferences.app\u0000\u0000\u000e\u0000.\u0000\u0016\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000P\u0000r\u0000e\u0000f\u0000e\u0000r\u0000e\u0000n\u0000c\u0000e\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000#Applications\/System Preferences.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000~\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000g\u0000l\u0000\n\u0000\u0018.aevtquitnull\u0000\u0000null\r\u0000\u0000\u0001m\u0000\u0000\u0000g\u0000h\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001p5-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0001li\u0001liz\u0001liy\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000m\u0000m\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000m\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000s\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000s\u0000x\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000y\u0000y\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002O\u0000\u0000\u0000y\u0000\u0000\u0000\r\u0000\u0000\u0001k\u0000\u0000\u0000}\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000}\u0000\u0000\u0000\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u0000\u0001m\u0000\u0000\u0000}\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0002\u0000p\u0006\u0000\u0000\u0003\u0000\n\u0000\u0004\nfaal\r\u0000\u0000\u0001J\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\b\u0000\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\n\u0000\u0004\nret \u0002\u0000\u0000\f\u0000\u0000\f\u0000\u0006 print\u0000\u0002\u0000\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\f\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\b\u0000\u0000\b@\u0014\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000y\u0000z\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001p5-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u00005\"\u0000\u0000\u0000\u0001\u0000\f\u0001li\u0001liz\u0001liy\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00024\u0000\u0001\u0000\u0000\u0000\n\u0000\u0004\ncwin\r\u0000\u0000\u0001m\u0000\u0000\u0000\u0000\u0003\u0000\u0001\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000\u0000\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\n\u0000\u0004\ncTab\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000m\u0000p\u0000\u000f\u0000\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001N\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0001li\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001lR\b_\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\by\u0000\u0000\u0000\u0001\u0000\u0004\u0001li\u0000\u0002\u0000%Macintosh HD:Applications:\u0000Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\b0\u0000\u0004argv\u0000\u0000\u0010\u0000\u0000\u001e\u0000z\u0000A\u0000F\u0000x\u0000v~\u0000\u0000}|{z\u0000yxwv\n\u0000\u0004\ncobj\u000b\u0000\u000b0\u0000\u0007printer\u0000\u0000\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nxppb\n\u0000\b\u000bkfrmID \n\u0000\u0004\nxpcp\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nprcs\n\u0000\u0004\ncwin\n\u0000\u0004\npopB\n\u0000\u0018.prcsclicnull\u0000\u0000uiel\n\u0000\u0004\nmenE\n\u0000\u0004\nmenI\n~\u0000\u0018.aevtquitnull\u0000\u0000null\n}\u0000\u0004\nfaal\n|\u0000\b\u000beMdsKcmd\n{\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\nz\u0000\u0004\nret \u000by\u0000\u00050\u0000\u0001w\u0000\u0000\nx\u0000\u0004\ncTab\u000bw\u0000\u00050\u0000\u0001t\u0000\u0000\nv\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000jk\/\u001eEO\u0012\u0000T*j\f\u0000\u0003O*0*,FOj\f\u0000\tO\u0012\u00007*\/\u0012\u0000\/*k\/k\/j\f\u0000\u000fOj\f\u0000\tO*k\/k\/a\u0000\u0010k\/a\u0000\u0011\/j\f\u0000\u000fOj\f\u0000\tUUOPUOj\f\u0000\u0012Oj\f\u0000\u0012Oa\u0000\u0013\u0012\u0000O*j\f\u0000\u0003O\u0012\u0000'a\u0000\u0014a\u0000\u0015a\u0000\u0016kvl\f\u0000\u0017Oj\f\u0000\tO_\u0000\u0018j\f\u0000\u0017Oa\u0000\u0019j\f\u0000\tUO*k\/E`\u0000\u001aO_\u0000\u001aa\u0000\u001b,E`\u0000\u001cO_\u0000\u001cj\f\u0000\u001dUOP\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000>\u0000\u0007\r\u0000\u0007\u0000\u0002O\u0000\u0000\u0000\u0000\u0000>\u0000\b\u0000\t\r\u0000\b\u0000\u0001k\u0000\u0000\u0000\u0004\u0000=\u0000\n\u0002\u0000\n\u0000\u0002\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\n\u0000\u0018.miscactvnull\u0000\u0000null\u0001\u0000\u0000\u0002\u0000\u0000\u0002\u0000\f\u0000\u0002\u0000\r\u0000\u000e\r\u0000\r\u0000\u0002O\u0000\u0000\u0000\n\u0000*\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0001k\u0000\u0000\u0000\u000e\u0000)\u0000\u0011\u0002\u0000\u0011\u0000\u0002\u0000\u0012\u0000\u0013\r\u0000\u0012\u0000\u0003l\u0000\u0001\u0000\u000e\u0000\u0017\u0000\u0014\u0000\u0015\u0000\u0016\r\u0000\u0014\u0000\u0003I\u0000\u0002\u0000\u000e\u0000\u0017\u0000\u0017\u0000\u0018\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000\u0017\u0000\u0001m\u0000\u0000\u0000\u000e\u0000\u000f\u0000\u0019\u000e\u0000\u0019\u0000\u0001\u0000\u001a\u0011\u0000\u001a\u0000\u0002\u0000p\u0006\u0000\u0018\u0000\u0003\u0000\u001b\n\u0000\u0004\nfaal\r\u0000\u001b\u0000\u0001J\u0000\u0000\u0000\u0010\u0000\u0013\u0000\u001c\u0002\u0000\u001c\u0000\u0002\u0000\u001d\r\u0000\u001d\u0000\u0001m\u0000\u0000\u0000\u0010\u0000\u0011\n\u0000\b\u000beMdsKcmd\u0002\u0000\u0000\u0006\u0000\u0000\f\u0000\u0015\u0000\u001f\u0000\u0019 activate print menu item\u0000\u0002\u0000\u0000\u000e\u0000\u0016\u0000\u0001\u0000\u001e\u0011\u0000\u001e\u00002\u0000 \u0000a\u0000c\u0000t\u0000i\u0000v\u0000a\u0000t\u0000e\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0000 \u0000m\u0000e\u0000n\u0000u\u0000 \u0000i\u0000t\u0000e\u0000m\u0002\u0000\u0013\u0000\u0002\u0000\u001f\u0000 \r\u0000\u001f\u0000\u0003I\u0000\u0002\u0000\u0018\u0000\u001d\u0000!\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000!\u0000\u0001m\u0000\u0000\u0000\u0018\u0000\u0019\u0000\"\b\u0000\"\u0000\b?\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000 \u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0001\u0000\u001e\u0000#\u0000%\u0000&\u0000'\r\u0000%\u0000\u0003I\u0000\u0002\u0000\u001e\u0000#\u0000(\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\r\u0000(\u0000\u0001o\u0000\u0000\u0000\u001e\u0000\u001f\n\u0000\u0004\nret \u0002\u0000\u0000\f\u0000&\u0000\f\u0000\u0006 print\u0000\u0002\u0000\u0000\u000e\u0000'\u0000\u0001\u0000)\u0011\u0000)\u0000\f\u0000 \u0000p\u0000r\u0000i\u0000n\u0000t\u0002\u0000$\u0000\u0002\u0000*\r\u0000*\u0000\u0003I\u0000\u0002\u0000$\u0000)\u0000+\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\r\u0000+\u0000\u0001m\u0000\u0000\u0000$\u0000%\u0000,\b\u0000,\u0000\b@\u0014\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0010\u0000\u0001m\u0000\u0000\u0000\n\u0000\u000b\u0000-\u000f\u0000-\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sevs\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0000\u0000\u0000-\u0011System Events.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003jX|\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000X\r\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0000-\u0000\u0000\u0000*\u0000\u0000\u0000)\u0000\u0002\u0000=Macintosh HD:System:\u0000Library:\u0000CoreServices:\u0000System Events.app\u0000\u0000\u000e\u0000$\u0000\u0011\u0000S\u0000y\u0000s\u0000t\u0000e\u0000m\u0000 \u0000E\u0000v\u0000e\u0000n\u0000t\u0000s\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000-System\/Library\/CoreServices\/System Events.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u000e\u0000\u0002\u0000.\u0000\/\r\u0000.\u0000\u0003l\u0000\u0002\u0000+\u0000+\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\/\u0000\u0002\u00000\u00001\r\u00000\u0000\u0002r\u0000\u0000\u0000+\u00001\u00002\u00003\r\u00002\u0000\u00024\u0000\u0001\u0000+\u0000\/\u00004\n\u0000\u0004\ncwin\r\u00004\u0000\u0001m\u0000\u0000\u0000-\u0000.\u0003\u0000\u0001\r\u00003\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\u0002\u00001\u0000\u0002\u00005\u00006\r\u00005\u0000\u0002r\u0000\u0000\u00002\u00007\u00007\u00008\r\u00007\u0000\u0002n\u0000\u0000\u00002\u00005\u00009\u0000:\r\u00009\u0000\u00011\u0000\u0000\u00003\u00005\n\u0000\u0004\ncTab\r\u0000:\u0000\u0001o\u0000\u0000\u00002\u00003\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\r\u00008\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u00006\u0000\u0002\u0000;\r\u0000;\u0000\u0003I\u0000\u0002\u00008\u0000=\u0000<\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \r\u0000<\u0000\u0001o\u0000\u0000\u00008\u00009\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\t\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000=\u000f\u0000=\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000sfri\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001N\u0000\u0002\u0000\u0001\fMacintosh HD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0398*SH+\u0000\u0000\u0000\u0000\u0000O\nSafari.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000!G\u035d\rr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fApplications\u0000\u0010\u0000\b\u0000\u0000\u0397\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u035c\u0000\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0000O\u0000\u0002\u0000%Macintosh HD:Applications:\u0000Safari.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000S\u0000a\u0000f\u0000a\u0000r\u0000i\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\u001a\u0000\f\u0000M\u0000a\u0000c\u0000i\u0000n\u0000t\u0000o\u0000s\u0000h\u0000 \u0000H\u0000D\u0000\u0012\u0000\u0017Applications\/Safari.app\u0000\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000>\r\u0000>\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0006\u0000?\u0000@\u0000A\u0000B\u0001\u0000\u0000\u0010\u0000?\u0000\u0004\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\u0001\u0000\u0000\u000e\u0000@\u0000\u0007\u0010\u0000C\u0000D\u0000E\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000C\u0000\u0001k\u0000\u0000\u0000\u0000\u0000>\u0000F\u0002\u0000F\u0000\u0002\u0000\u0005\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000D\u0000\u0000\u0010\u0000E\u0000\u0010\u0000=\u0000-\u0000\u0019\u0000\"\u0000,\n\u0000\u0018.miscactvnull\u0000\u0000null\n\u0000\u0004\nfaal\n\u0000\b\u000beMdsKcmd\n\u0000\u0018.prcskprsnull\u0000\u0000\u0000\u0000\u0000ctxt\n\u0000\u0018.sysodelanull\u0000\u0000nmbr\n\u0000\u0004\nret \n\u0000\u0004\ncwin\u000b\u0000\u00050\u0000\u0001w\u0000\u0000\n\u0000\u0004\ncTab\u000b\u0000\u00050\u0000\u0001t\u0000\u0000\n\u0000\u0018.coreclosnull\u0000\u0000\u0000\u0010\u0000obj \u0011\u0000?\u0012\u0000;*j\f\u0000\u0001O\u0012\u0000\u001dkvl\f\u0000\u0006Oj\f\u0000\bOj\f\u0000\u0006Oj\f\u0000\bUO*k\/EO,EOj\f\u0000\u000fU\u000f\u000e\u0000A\u0000\u0001\u0014\u0000G\u000e\u0000G\u0000\u0004\u0019\u0000=\n\u0000\u0004\ncwin\u0007\u0000\u0004\u0000\u0000\u05a1\n\u0000\b\u000bkfrmID \u000e\u0000B\u0000\u0001\u0014\u0000H\u000e\u0000H\u0000\u0003\u0018\u0000I\u000e\u0000I\u0000\u0004\u0019\u0000=\n\u0000\u0004\ncwin\u0007\u0000\u0004\u0000\u0000\u05a1\n\u0000\b\u000bkfrmID \n\u0000\u0004\nbTab\u0003\u0000\u0001\u0001\u0000\u0000\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"0b3e1a1cf066d3f13a947233bfc52244f6710afc","subject":"Add longer delay before adding TOC","message":"Add longer delay before adding TOC","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n -- Apparently fails if file is accessed too quickly\n -- https:\/\/bugs.launchpad.net\/maxosx\/+bug\/368342\n delay 2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n set the clipboard to tocText\n display dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & therror & \": \" & error_number & \" The TOC has been copied to the clipboard instead.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script\n","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n property tocToLyrics : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n property tocToLyricsValue : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property mediaType : \"\"\n property theAddedTrack : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property quitme : 0\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n set ffmpegmissing to 1\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if ffmpegmissing is 1 then\n set missingPackages to \"FFMPEG MP4v2\"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\\\";brew update;brew prune;brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n set quitme to 1 -- Exit if we couldn't install!\n end try\n else if result = {button returned:\"Quit\"} then\n set quitme to 1\n return current application's NSTerminateNow\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n set tocToLyricsValue to (tocToLyrics's state())\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n -- Initialize some variables\n set errorHappened to false\n set notaac to false\n set bitrate to 0\n -- Check if the audio files are all aac \/ mp4a\n progressField's setStringValue_(\"Determining filetypes...\")\n delay 0.2\n repeat with theIndex in the_index\n set thefile to (quoted form of POSIX path of (item theIndex of these_files as text))\n if not notaac\n try\n do shell script (cmdPrefix & \"if [ `ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep -c \\\"mp4a\\\\|aac\\\"` -gt 0 ]; then exit 0; else exit 1; fi\")\n on error number error_number\n set notaac to true\n end try\n end if\n try\n set newbitrate to (do shell script (cmdPrefix & \"ffprobe -show_streams -select_streams a \" & thefile & \" 2>\/dev\/null | grep '^bit_rate=' | sed 's\/bit_rate=\\\\([0-9][0-9]*\\\\)\/\\\\1\/' | sed 's\/\\\\(.*\\\\).\\\\{3\\\\}\/\\\\1\/'\") as text)\n if (newbitrate as number) is greater than (bitrate as number) then set bitrate to (newbitrate as number)\n end try\n end repeat\n set bitrate to bitrate as number\n if bitrate = 0 then set bitrate to 256\n -- Create the concatenated intermediate file\n if not notaac then\n -- Concatenation routine for mp4\/aac files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. An error occured when preparing the intermediate files. The error code was \" & therror & \": \" & error_number\n end try\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n else\n -- Concatenation routine for non-mp4\/aac audio files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n -- No spaces allowed in paths for the script...\n do shell script (\"\/bin\/cp \" & (quoted form of POSIX path of (item theIndex of these_files as text)) & \" \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. The error code was \" & therror & \": \" & error_number\n end try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \" \"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n try\n set scriptpath to (quoted form of POSIX path of (current application's NSBundle's mainBundle()'s bundlePath() as text & \"\/Contents\/Resources\/mmcat.sh\")) & \" \"\n do shell script (\"cd \/private\/tmp && \" & scriptpath & (bitrate as text) & \" \" & (disp_thepipes as text) & \" cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined. An error occured during the reencoding. The error code was \" & therror & \": \" & error_number\n end try\n set AppleScript's text item delimiters to olddelimeters\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \" & quoted form of (pcatName as text) & \" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \" & quoted form of (pcatAlbum as text) & \" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \" & quoted form of (pcatArtist as text) & \" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \" & quoted form of (pcatComposer as text) & \" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \" & quoted form of (pcatGenre as text) & \" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \" & quoted form of (pcatAlbumArtist as text) & \" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file. The error code was \" & therror & \": \" & error_number\n end try\n end if\n -- Grab the TOC, if needed\n if not errorHappened then\n if tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Getting TOC...\")\n delay 0.2\n try\n set tocText to (do shell script \"\/bin\/cat \/private\/tmp\/cat.chapters.txt\")\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The TOC could not be processed. The error code was \" & therror & \": \" & error_number\n end try\n end if\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\" as text\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\" as text\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n set aliasPath to POSIX file (\"\/private\/tmp\/cat.\" & mediaType as text) as alias\n set theAddedTrack to (add aliasPath)\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes. The error code was \" & therror & \": \" & error_number\n end try\n end if\n if not errorHappened and tocToLyricsValue is 1 then\n progressField's setStringValue_(\"Adding TOC...\")\n delay 0.2\n try\n tell application \"iTunes\"\n set lyrics of theAddedTrack to tocText\n end tell\n on error error_number number therror\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n set the clipboard to tocText\n display dialog \"The lyrics tag for the TOC could not be set in iTunes. The error code was \" & therror & \": \" & error_number & \" The TOC has been copied to the clipboard instead.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n if quitme is 1 then\n tell me to quit\n end if\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"cf9d22b99459c0e19fab3510845486d509cd19ef","subject":"Add track to iTunes","message":"Add track to iTunes\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Add the finished track to iTunes\n do shell script \"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.m4a\"\n tell application \"iTunes\"\n try\n add \"\/private\/tmp\/cat.mp4\"\n end try\n end tell\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n --\n -- Check for FFMPEG and MP4v2\n --\n -- (This works, but it's ugly!)\n --\n --\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG and MP4v2 to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n If button returned of result is \"Install\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg mp4v2;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n repeat with theIndex in the_index\n -- TODO: Needs error checking!\n -- TODO: We need to check what kind of audio files we have, then adjust accordingly\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -bsf:v h264_mp4toannexb -f mpegts \/private\/tmp\/concat\" & theIndex & \".ts 2> \/dev\/null\" as text)\n log (\"Processed file number\" & theIndex) as text\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc \/private\/tmp\/cat.mp4\")\n set AppleScript's text item delimiters to olddelimeters\n -- Now let's create the chapter file\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n log \"theNewCounter is \" & theNewCounter\n set theCounter to (theCounter + theNewCounter)\n log (\"Post-addition, theCounter is \" & theCounter) as text\n end if\n end repeat\n -- Chapterize cat.mp4\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n -- Add tags\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n -- Clean up\n do shell script \"\/bin\/rm \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt #\/private\/tmp\/cat.mp4\"\n set theCounter to \"\"\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"a49fa74918e96daff665a11b12a8b55fac3f2da5","subject":"Make slauncher_helper.app able to exit before the process it launches finishes.","message":"Make slauncher_helper.app able to exit before the process it launches finishes.\n\nslauncher_helper.app was relying on the 'do shell script'\nfunctionality to detect errors when launching slauncher. Instead, just\nfind the slauncher binary manually and assume we can get it to\nrun. Run the binary in the background so we don't tie the lifetimes of\nthe two apps.\n","repos":"sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata,sirikata\/sirikata","old_file":"tools\/slauncher\/slauncher_helper.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"tools\/slauncher\/slauncher_helper.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001L\u0000\u0000\u0000\u0004\u0000\t\u0000\r\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\b\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nctnr\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0004Home\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u063fH+\u0000\u0000\u0000\u0000\u0001-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01df1t\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000=I?\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u01df\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0001-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000+Home:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000H\u0000o\u0000m\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\u0002\u0000\u0017\u0000\u0002\u0000\u0018\r\u0000\u0018\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0016\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\u000b\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0001L\u0000\u0000\u0000\u0004\u0000\n\u0000\u001b\r\u0000\u001b\u0000\u0003I\u0000\u0002\u0000\u0004\u0000\t\u0000\u001c\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \r\u0000\u001c\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\r\u0000\u001a\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u001d\u000f\u0000\u001d\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0004Home\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u063fH+\u0000\u0000\u0000\u0000\u0001-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01df1t\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000=I?\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u01df\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0001-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000+Home:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000H\u0000o\u0000m\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u001f\u0000\u0002\u0000 \u0000!\r\u0000 \u0000\u0002i\u0000\u0000\u0000\b\u0000\u000b\u0000\"\u0000#\r\u0000\"\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000$\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000$\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000#\u0000\u0001k\u0000\u0000\u0000\u0000\u0000j\u0000%\u0002\u0000%\u0000\u0002\u0000&\u0000'\r\u0000&\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000(\u0000)\u0001\u0000\u0000\f\u0000(\u00000\u0000* display dialog \"handling url \" & this_URL\u0000\u0002\u0000\u0000\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000T\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000h\u0000a\u0000n\u0000d\u0000l\u0000i\u0000n\u0000g\u0000 \u0000u\u0000r\u0000l\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000U\u0000R\u0000L\u0002\u0000'\u0000\u0002\u0000+\u0000,\r\u0000+\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000-\u0000.\u0001\u0000\u0000\f\u0000-\u00000\u0000* try running with release mode, then debug\u0000\u0002\u0000\u0000\u000e\u0000.\u0000\u0001\u0000\/\u0011\u0000\/\u0000T\u0000 \u0000t\u0000r\u0000y\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000m\u0000o\u0000d\u0000e\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0002\u0000,\u0000\u0002\u00000\u00001\r\u00000\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00002\u00003\u0001\u0000\u0000\f\u00002\u00009\u00003 the installed path for the slauncher_helper.app is\u0000\u0002\u0000\u0000\u000e\u00003\u0000\u0001\u00004\u0011\u00004\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0002\u00001\u0000\u0002\u00005\u00006\r\u00005\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00007\u00008\u0001\u0000\u0000\f\u00007\u00002\u0000, base_dir\/lib\/sirikata\/slauncher_helper.app\u0000\u0002\u0000\u0000\u000e\u00008\u0000\u0001\u00009\u0011\u00009\u0000X\u0000 \u0000 \u0000b\u0000a\u0000s\u0000e\u0000_\u0000d\u0000i\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000\/\u0000s\u0000i\u0000r\u0000i\u0000k\u0000a\u0000t\u0000a\u0000\/\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0002\u00006\u0000\u0002\u0000:\u0000;\r\u0000:\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000<\u0000=\u0001\u0000\u0000\f\u0000<\u0000,\u0000& but we need to run the wrapper binary\u0000\u0002\u0000\u0000\u000e\u0000=\u0000\u0001\u0000>\u0011\u0000>\u0000L\u0000 \u0000b\u0000u\u0000t\u0000 \u0000w\u0000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000r\u0000a\u0000p\u0000p\u0000e\u0000r\u0000 \u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0002\u0000;\u0000\u0002\u0000?\u0000@\r\u0000?\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000A\u0000B\u0001\u0000\u0000\f\u0000A\u0000\u001d\u0000\u0017 basedir\/bin\/slauncher\u0000\u0002\u0000\u0000\u000e\u0000B\u0000\u0001\u0000C\u0011\u0000C\u0000.\u0000 \u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000i\u0000r\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0002\u0000@\u0000\u0002\u0000D\u0000E\r\u0000D\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000F\u0000G\u0001\u0000\u0000\f\u0000F\u00007\u00001 so we get a base path, then construct full paths\u0000\u0002\u0000\u0000\u000e\u0000G\u0000\u0001\u0000H\u0011\u0000H\u0000b\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000b\u0000a\u0000s\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000o\u0000n\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000 \u0000f\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000s\u0002\u0000E\u0000\u0002\u0000I\u0000J\r\u0000I\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000K\u0000L\r\u0000K\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000M\r\u0000M\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000N\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000N\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000L\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000J\u0000\u0002\u0000O\u0000P\r\u0000O\u0000\u0002r\u0000\u0000\u0000\b\u0000\u0010\u0000Q\u0000R\r\u0000Q\u0000\u0003I\u0000\u0000\u0000\b\u0000\u000e\u0000S\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000S\u0000\u0002\u0000T\r\u0000T\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000R\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u0002\u0000P\u0000\u0002\u0000U\u0000V\r\u0000U\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0019\u0000W\u0000X\r\u0000W\u0000\u0003I\u0000\u0000\u0000\u0011\u0000\u0017\u0000Y\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000Y\u0000\u0002\u0000Z\r\u0000Z\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000X\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u0002\u0000V\u0000\u0002\u0000[\u0000\\\r\u0000[\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\"\u0000]\u0000^\r\u0000]\u0000\u0003I\u0000\u0000\u0000\u001a\u0000 \u0000_\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000_\u0000\u0002\u0000`\r\u0000`\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000^\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\u0002\u0000\\\u0000\u0002\u0000a\u0000b\r\u0000a\u0000\u0002r\u0000\u0000\u0000#\u0000*\u0000c\u0000d\r\u0000c\u0000\u0003l\u0000\u0005\u0000#\u0000(\u0000e\r\u0000e\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000f\u0000g\r\u0000f\u0000\u0003l\u0000\u0005\u0000#\u0000&\u0000h\r\u0000h\u0000\u0002c\u0000\u0000\u0000#\u0000&\u0000i\u0000j\r\u0000i\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\r\u0000j\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000g\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000k\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000\b\u0000b\u0000i\u0000n\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000d\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u0002\u0000b\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0003l\u0000\u0001\u0000+\u0000+\u0000o\u0000p\u0001\u0000\u0000\f\u0000o\u0000>\u00008 You need to be careful to get all the settings right to\u0000\u0002\u0000\u0000\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000p\u0000 \u0000Y\u0000o\u0000u\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000b\u0000e\u0000 \u0000c\u0000a\u0000r\u0000e\u0000f\u0000u\u0000l\u0000 \u0000t\u0000o\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000l\u0000l\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000e\u0000t\u0000t\u0000i\u0000n\u0000g\u0000s\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000t\u0000o\u0002\u0000n\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0001\u0000+\u0000+\u0000t\u0000u\u0001\u0000\u0000\f\u0000t\u0000?\u00009 make the shell script run in the background and let this\u0000\u0002\u0000\u0000\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000r\u0000 \u0000m\u0000a\u0000k\u0000e\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000h\u0000e\u0000l\u0000l\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000r\u0000u\u0000n\u0000 \u0000i\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000b\u0000a\u0000c\u0000k\u0000g\u0000r\u0000o\u0000u\u0000n\u0000d\u0000 \u0000a\u0000n\u0000d\u0000 \u0000l\u0000e\u0000t\u0000 \u0000t\u0000h\u0000i\u0000s\u0002\u0000s\u0000\u0002\u0000w\u0000x\r\u0000w\u0000\u0003l\u0000\u0001\u0000+\u0000+\u0000y\u0000z\u0001\u0000\u0000\f\u0000y\u0000 \u0000\u001a script finish up and exit\u0000\u0002\u0000\u0000\u000e\u0000z\u0000\u0001\u0000{\u0011\u0000{\u00004\u0000 \u0000s\u0000c\u0000r\u0000i\u0000p\u0000t\u0000 \u0000f\u0000i\u0000n\u0000i\u0000s\u0000h\u0000 \u0000u\u0000p\u0000 \u0000a\u0000n\u0000d\u0000 \u0000e\u0000x\u0000i\u0000t\u0002\u0000x\u0000\u0002\u0000|\u0000}\r\u0000|\u0000\u0002r\u0000\u0000\u0000+\u0000.\u0000~\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u0000+\u0000,\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000(\u0000 \u0000>\u0000 \u0000\/\u0000d\u0000e\u0000v\u0000\/\u0000n\u0000u\u0000l\u0000l\u0000 \u00002\u0000>\u0000&\u00001\u0000 \u0000&\u0000 \r\u0000\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012background_process\u0000\u0000\u0002\u0000}\u0000\u0002\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000\/\u0000j\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000\/\u00007\u0000\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u00000\u00003\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0012\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000:\u0000G\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000:\u0000C\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000:\u0000A\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000:\u0000?\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000:\u0000=\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000:\u0000=\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000;\u0000=\n\u0000\u0004\npsxp\r\u0000\u0000\u0001o\u0000\u0000\u0000:\u0000;\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000=\u0000>\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000 \u0000-\u0000-\u0000u\u0000r\u0000i\u0000=\r\u0000\u0000\u0001o\u0000\u0000\u0000?\u0000@\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\r\u0000\u0000\u0001o\u0000\u0000\u0000A\u0000B\u000b\u0000\u00160\u0000\u0012background_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0004Z\u0000\u0000\u0000J\u0000j\u0000\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0000\u0000J\u0000R\u0000\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\u0002\u0000\u0000\u0002\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000K\u0000N\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000K\u0000L\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000L\u0000M\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000\u0016\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000d\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000U\u0000b\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000U\u0000^\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000U\u0000\\\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000U\u0000Z\u0000\u0000\r\u0000\u0000\u0003l\u0000\u0005\u0000U\u0000X\u0000\r\u0000\u0000\u0002n\u0000\u0000\u0000U\u0000X\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000V\u0000X\n\u0000\u0004\npsxp\r\u0000\u0000\u0001o\u0000\u0000\u0000U\u0000V\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000X\u0000Y\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000d\u0000 \u0000-\u0000-\u0000u\u0000r\u0000i\u0000=\r\u0000\u0000\u0001o\u0000\u0000\u0000Z\u0000[\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\r\u0000\u0000\u0001o\u0000\u0000\u0000\\\u0000]\u000b\u0000\u00160\u0000\u0012background_process\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000e\u0000j\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000e\u0000f\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000>\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000f\u0000i\u0000n\u0000d\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000 \u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000!\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0005\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0003\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0010\u0000\u0000\u0002\u0000\u0010\n\u0000\u0004\nctnr\u0011\u0000\u000b\u0012\u0000\u0007,E\u000fU\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0016\u0000\u0000\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0010\u0000\u0000\u0002\u0000\u001d\n\u0000\u0018.coredoexbool\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000obj \u0011\u0000\f\u0012\u0000\bj\f\u0000\u0001\u000fU\u000f\u000e\u0000\u0000\u0007\u0010\u0000#\u0000\u0000\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\u0010\u0000\u0000\u0007\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u000b\u0000\u00160\u0000\u0012background_process\u0000\u0000\u0010\u0000\u0000\u000e\u0000k\u0000\u0000~\u0000}\u0000\u0000\u0000|\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\n\u0000\u0004\nctxt\u000b\u0000\u001a0\u0000\u000bcheckexists\u0000\u000bCheckExists\n~\u0000\u0004\npsxp\n}\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n|\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000k)j\f\u0000\u0000EO*k+\u0000\u0001EO*k+\u0000\u0001EO*k+\u0000\u0001EO&%EOEO*%k+\u0000\u0006\u001d\u0000\u0012,%%%j\f\u0000\tY\u0000\"*%k+\u0000\u0006\u001d\u0000\u0012,%%%j\f\u0000\tY\u0000\u0007j\f\u0000\r\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0002i\u0000\u0000\u0000\u0000\u0000\u0003\u0000\u0007\u0000\b\r\u0000\u0007\u0000\u0003I\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000\t\u0000\u0002\u0000\n\r\u0000\n\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000\b\u0000\u0002O\u0000\u0001\u0000\u0000\u0000\n\u0000\u000b\u0000\f\r\u0000\u000b\u0000\u0001L\u0000\u0000\u0000\u0004\u0000\t\u0000\r\r\u0000\r\u0000\u0002n\u0000\u0000\u0000\u0004\u0000\b\u0000\u000e\u0000\u000f\r\u0000\u000e\u0000\u0001m\u0000\u0000\u0000\u0005\u0000\u0007\n\u0000\u0004\nctnr\r\u0000\u000f\u0000\u0001o\u0000\u0000\u0000\u0004\u0000\u0005\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\r\u0000\f\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0010\u000f\u0000\u0010\u0001\b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000MACS\u0000\u0002\u0001\u0000alis\u0000\u0000\u0000\u0000\u0001Z\u0000\u0002\u0000\u0001\u0004Home\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000<\u063fH+\u0000\u0000\u0000\u0000\u0001-\nFinder.app\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u01df1t\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\t \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\fCoreServices\u0000\u0010\u0000\b\u0000\u0000=I?\u0000\u0000\u0000\u0011\u0000\b\u0000\u0000\u01df\u0000\u0000\u0000\u0001\u0000\f\u0000\u0000\u0001-\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000+Home:System:Library:CoreServices:Finder.app\u0000\u0000\u000e\u0000\u0016\u0000\n\u0000F\u0000i\u0000n\u0000d\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000\u000f\u0000\n\u0000\u0004\u0000H\u0000o\u0000m\u0000e\u0000\u0012\u0000&System\/Library\/CoreServices\/Finder.app\u0000\u0013\u0000\u0001\/\u0000\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0012\u0000\u0002\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u0002i\u0000\u0000\u0000\u0004\u0000\u0007\u0000\u0015\u0000\u0016\r\u0000\u0015\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0017\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\r\u0000\u0017\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000\u0016\u0000\u0001k\u0000\u0000\u0000\u0000\u0000^\u0000\u0018\u0002\u0000\u0018\u0000\u0002\u0000\u0019\u0000\u001a\r\u0000\u0019\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u001b\u0000\u001c\u0001\u0000\u0000\f\u0000\u001b\u00000\u0000* display dialog \"handling url \" & this_URL\u0000\u0002\u0000\u0000\u000e\u0000\u001c\u0000\u0001\u0000\u001d\u0011\u0000\u001d\u0000T\u0000 \u0000d\u0000i\u0000s\u0000p\u0000l\u0000a\u0000y\u0000 \u0000d\u0000i\u0000a\u0000l\u0000o\u0000g\u0000 \u0000\"\u0000h\u0000a\u0000n\u0000d\u0000l\u0000i\u0000n\u0000g\u0000 \u0000u\u0000r\u0000l\u0000 \u0000\"\u0000 \u0000&\u0000 \u0000t\u0000h\u0000i\u0000s\u0000_\u0000U\u0000R\u0000L\u0002\u0000\u001a\u0000\u0002\u0000\u001e\u0000\u001f\r\u0000\u001e\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000 \u0000!\u0001\u0000\u0000\f\u0000 \u00000\u0000* try running with release mode, then debug\u0000\u0002\u0000\u0000\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000T\u0000 \u0000t\u0000r\u0000y\u0000 \u0000r\u0000u\u0000n\u0000n\u0000i\u0000n\u0000g\u0000 \u0000w\u0000i\u0000t\u0000h\u0000 \u0000r\u0000e\u0000l\u0000e\u0000a\u0000s\u0000e\u0000 \u0000m\u0000o\u0000d\u0000e\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000d\u0000e\u0000b\u0000u\u0000g\u0002\u0000\u001f\u0000\u0002\u0000#\u0000$\r\u0000#\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000%\u0000&\u0001\u0000\u0000\f\u0000%\u00009\u00003 the installed path for the slauncher_helper.app is\u0000\u0002\u0000\u0000\u000e\u0000&\u0000\u0001\u0000'\u0011\u0000'\u0000f\u0000 \u0000t\u0000h\u0000e\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000p\u0000a\u0000t\u0000h\u0000 \u0000f\u0000o\u0000r\u0000 \u0000t\u0000h\u0000e\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0002\u0000$\u0000\u0002\u0000(\u0000)\r\u0000(\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000*\u0000+\u0001\u0000\u0000\f\u0000*\u00002\u0000, base_dir\/lib\/sirikata\/slauncher_helper.app\u0000\u0002\u0000\u0000\u000e\u0000+\u0000\u0001\u0000,\u0011\u0000,\u0000X\u0000 \u0000 \u0000b\u0000a\u0000s\u0000e\u0000_\u0000d\u0000i\u0000r\u0000\/\u0000l\u0000i\u0000b\u0000\/\u0000s\u0000i\u0000r\u0000i\u0000k\u0000a\u0000t\u0000a\u0000\/\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0002\u0000)\u0000\u0002\u0000-\u0000.\r\u0000-\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u0000\/\u00000\u0001\u0000\u0000\f\u0000\/\u0000,\u0000& but we need to run the wrapper binary\u0000\u0002\u0000\u0000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000L\u0000 \u0000b\u0000u\u0000t\u0000 \u0000w\u0000e\u0000 \u0000n\u0000e\u0000e\u0000d\u0000 \u0000t\u0000o\u0000 \u0000r\u0000u\u0000n\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000r\u0000a\u0000p\u0000p\u0000e\u0000r\u0000 \u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0002\u0000.\u0000\u0002\u00002\u00003\r\u00002\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00004\u00005\u0001\u0000\u0000\f\u00004\u0000\u001d\u0000\u0017 basedir\/bin\/slauncher\u0000\u0002\u0000\u0000\u000e\u00005\u0000\u0001\u00006\u0011\u00006\u0000.\u0000 \u0000 \u0000b\u0000a\u0000s\u0000e\u0000d\u0000i\u0000r\u0000\/\u0000b\u0000i\u0000n\u0000\/\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0002\u00003\u0000\u0002\u00007\u00008\r\u00007\u0000\u0003l\u0000\u0001\u0000\u0000\u0000\u0000\u00009\u0000:\u0001\u0000\u0000\f\u00009\u00007\u00001 so we get a base path, then construct full paths\u0000\u0002\u0000\u0000\u000e\u0000:\u0000\u0001\u0000;\u0011\u0000;\u0000b\u0000 \u0000s\u0000o\u0000 \u0000w\u0000e\u0000 \u0000g\u0000e\u0000t\u0000 \u0000a\u0000 \u0000b\u0000a\u0000s\u0000e\u0000 \u0000p\u0000a\u0000t\u0000h\u0000,\u0000 \u0000t\u0000h\u0000e\u0000n\u0000 \u0000c\u0000o\u0000n\u0000s\u0000t\u0000r\u0000u\u0000c\u0000t\u0000 \u0000f\u0000u\u0000l\u0000l\u0000 \u0000p\u0000a\u0000t\u0000h\u0000s\u0002\u00008\u0000\u0002\u0000<\u0000=\r\u0000<\u0000\u0002r\u0000\u0000\u0000\u0000\u0000\u0007\u0000>\u0000?\r\u0000>\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000@\r\u0000@\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000A\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\r\u0000A\u0000\u0000f\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000?\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000=\u0000\u0002\u0000B\u0000C\r\u0000B\u0000\u0002r\u0000\u0000\u0000\b\u0000\u0010\u0000D\u0000E\r\u0000D\u0000\u0003I\u0000\u0000\u0000\b\u0000\u000e\u0000F\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000F\u0000\u0002\u0000G\r\u0000G\u0000\u0001o\u0000\u0000\u0000\t\u0000\n\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000E\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u0002\u0000C\u0000\u0002\u0000H\u0000I\r\u0000H\u0000\u0002r\u0000\u0000\u0000\u0011\u0000\u0019\u0000J\u0000K\r\u0000J\u0000\u0003I\u0000\u0000\u0000\u0011\u0000\u0017\u0000L\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000L\u0000\u0002\u0000M\r\u0000M\u0000\u0001o\u0000\u0000\u0000\u0012\u0000\u0013\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000K\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u0002\u0000I\u0000\u0002\u0000N\u0000O\r\u0000N\u0000\u0002r\u0000\u0000\u0000\u001a\u0000\"\u0000P\u0000Q\r\u0000P\u0000\u0003I\u0000\u0000\u0000\u001a\u0000 \u0000R\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u0002\u0000R\u0000\u0002\u0000S\r\u0000S\u0000\u0001o\u0000\u0000\u0000\u001b\u0000\u001c\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\r\u0000Q\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\u0002\u0000O\u0000\u0002\u0000T\u0000U\r\u0000T\u0000\u0002r\u0000\u0000\u0000#\u0000,\u0000V\u0000W\r\u0000V\u0000\u0003l\u0000\u0005\u0000#\u0000*\u0000X\r\u0000X\u0000\u0002n\u0000\u0000\u0000#\u0000*\u0000Y\u0000Z\r\u0000Y\u0000\u00011\u0000\u0000\u0000(\u0000*\n\u0000\u0004\npsxp\r\u0000Z\u0000\u0003l\u0000\u0005\u0000#\u0000(\u0000[\r\u0000[\u0000\u0002b\u0000\u0000\u0000#\u0000(\u0000\\\u0000]\r\u0000\\\u0000\u0003l\u0000\u0005\u0000#\u0000&\u0000^\r\u0000^\u0000\u0002c\u0000\u0000\u0000#\u0000&\u0000_\u0000`\r\u0000_\u0000\u0001o\u0000\u0000\u0000#\u0000$\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\r\u0000`\u0000\u0001m\u0000\u0000\u0000$\u0000%\n\u0000\u0004\nctxt\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000]\u0000\u0001m\u0000\u0000\u0000&\u0000'\u0000a\u000e\u0000a\u0000\u0001\u0000b\u0011\u0000b\u0000\b\u0000b\u0000i\u0000n\u0000:\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\r\u0000W\u0000\u0001o\u0000\u0000\u0000\u0000\u0000\u0000\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u0002\u0000U\u0000\u0002\u0000c\r\u0000c\u0000\u0003Q\u0000\u0000\u0000-\u0000^\u0000d\u0000e\u0000f\r\u0000d\u0000\u0001k\u0000\u0000\u00000\u0000;\u0000g\u0002\u0000g\u0000\u0002\u0000h\u0000i\r\u0000h\u0000\u0003l\u0000\u0001\u00000\u00000\u0000j\u0000k\u0001\u0000\u0000\f\u0000j\u0000B\u0000< installed version: slauncher_helper.app is in lib\/sirikata\/\u0000\u0002\u0000\u0000\u000e\u0000k\u0000\u0001\u0000l\u0011\u0000l\u0000x\u0000 \u0000i\u0000n\u0000s\u0000t\u0000a\u0000l\u0000l\u0000e\u0000d\u0000 \u0000v\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000:\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000h\u0000e\u0000l\u0000p\u0000e\u0000r\u0000.\u0000a\u0000p\u0000p\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000l\u0000i\u0000b\u0000\/\u0000s\u0000i\u0000r\u0000i\u0000k\u0000a\u0000t\u0000a\u0000\/\u0002\u0000i\u0000\u0002\u0000m\u0000n\r\u0000m\u0000\u0003l\u0000\u0001\u00000\u00000\u0000o\u0000p\u0001\u0000\u0000\f\u0000o\u0000C\u0000= and the wrapper for slauncher that sets up DYLD_LIBRARY_PATH\u0000\u0002\u0000\u0000\u000e\u0000p\u0000\u0001\u0000q\u0011\u0000q\u0000z\u0000 \u0000a\u0000n\u0000d\u0000 \u0000t\u0000h\u0000e\u0000 \u0000w\u0000r\u0000a\u0000p\u0000p\u0000e\u0000r\u0000 \u0000f\u0000o\u0000r\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000 \u0000t\u0000h\u0000a\u0000t\u0000 \u0000s\u0000e\u0000t\u0000s\u0000 \u0000u\u0000p\u0000 \u0000D\u0000Y\u0000L\u0000D\u0000_\u0000L\u0000I\u0000B\u0000R\u0000A\u0000R\u0000Y\u0000_\u0000P\u0000A\u0000T\u0000H\u0002\u0000n\u0000\u0002\u0000r\u0000s\r\u0000r\u0000\u0003l\u0000\u0001\u00000\u00000\u0000t\u0000u\u0001\u0000\u0000\f\u0000t\u0000\u0011\u0000\u000b is in bin\/\u0000\u0002\u0000\u0000\u000e\u0000u\u0000\u0001\u0000v\u0011\u0000v\u0000\u0016\u0000 \u0000i\u0000s\u0000 \u0000i\u0000n\u0000 \u0000b\u0000i\u0000n\u0000\/\u0002\u0000s\u0000\u0002\u0000w\r\u0000w\u0000\u0002r\u0000\u0000\u00000\u0000;\u0000x\u0000y\r\u0000x\u0000\u0003I\u0000\u0002\u00000\u00009\u0000z\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000z\u0000\u0002b\u0000\u0000\u00000\u00005\u0000{\u0000|\r\u0000{\u0000\u0002b\u0000\u0000\u00000\u00003\u0000}\u0000~\r\u0000}\u0000\u0001o\u0000\u0000\u00000\u00001\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\r\u0000~\u0000\u0001m\u0000\u0000\u00001\u00002\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000 \u0000-\u0000-\u0000u\u0000r\u0000i\u0000=\r\u0000|\u0000\u0001o\u0000\u0000\u00003\u00004\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000y\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\u0002\u0000\u0000\r\u0000e\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000f\u0000\u0003Q\u0000\u0000\u0000C\u0000^\u0000\u0000\u0000\r\u0000\u0000\u0002r\u0000\u0000\u0000F\u0000Q\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000F\u0000O\u0000\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000K\u0000\u0000\r\u0000\u0000\u0002b\u0000\u0000\u0000F\u0000I\u0000\u0000\r\u0000\u0000\u0001o\u0000\u0000\u0000F\u0000G\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\r\u0000\u0000\u0001m\u0000\u0000\u0000G\u0000H\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000$\u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000_\u0000d\u0000 \u0000-\u0000-\u0000u\u0000r\u0000i\u0000=\r\u0000\u0000\u0001o\u0000\u0000\u0000I\u0000J\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\r\u0000\u0000\u00011\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0004\nrslt\r\u0000\u0000\u0003R\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0018.ascrerr ****\u0000\u0000\u0000\u0000\u0000\u0000\u0000****\u0001\u0000\u0000\u0002\u0000\u0000\r\u0000\u0000\u0003I\u0000\u0002\u0000Y\u0000^\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u0000\u0001m\u0000\u0000\u0000Y\u0000Z\u0000\u000e\u0000\u0000\u0001\u0000\u0011\u0000\u0000<\u0000C\u0000o\u0000u\u0000l\u0000d\u0000n\u0000'\u0000t\u0000 \u0000r\u0000u\u0000n\u0000 \u0000s\u0000l\u0000a\u0000u\u0000n\u0000c\u0000h\u0000e\u0000r\u0000 \u0000b\u0000i\u0000n\u0000a\u0000r\u0000y\u0000.\u0002\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0014\u0000\u0002\u0000\r\u0000\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0004\u0000\u0000\u0000\u0001\u0000\u0000\u0010\u0000\u0000\u0002\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000e\u0000\u0000\u0007\u0010\u0000\b\u0000\u0000\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\u000e\u0000\u0002\u0004\u0000\u0003\u0000\u0001\u000e\u0000\u0000\u0001\u0000\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0002\u0000\u0000\u0010\u0000\u0000\u0001\u000b\u0000\u00120\u0000\u0007thefile\u0000\u0007theFile\u0010\u0000\u0000\u0002\u0000\u0010\n\u0000\u0004\nctnr\u0011\u0000\u000b\u0012\u0000\u0007,E\u000fU\u000f\u000e\u0000\u0000\u0007\u0010\u0000\u0016\u0000\u0000\n\u0000\u0018.GURLGURLnull\u0000\u0000TEXT\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u0002\u0000\u0000\u0010\u0000\u0000\u0006\u000b\u0000\u00140\u0000\bthis_url\u0000\bthis_URL\u000b\u0000\u000b0\u0000\u0007my_path\u0000\u0000\u000b\u0000\u00150\u0000\u0011lib_sirikata_path\u0000\u0000\u000b\u0000\f0\u0000\blib_path\u0000\u0000\u000b\u0000\r0\u0000\tbase_path\u0000\u0000\u000b\u0000\u00160\u0000\u0012installed_bin_path\u0000\u0000\u0010\u0000\u0000\r\u0000a\u0000\u0000\u0000\n\u0000\u0018.earsffdralis\u0000\u0000\u0000\u0000\u0000\u0000 \u0000afdr\u000b\u0000\u001e0\u0000\rgetparentpath\u0000\rGetParentPath\n\u0000\u0004\nctxt\n\u0000\u0004\npsxp\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\u0001\u0000\u0000\u0002\u0000\u0000\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\u0011\u0000_)j\f\u0000\u0000EO*k+\u0000\u0001EO*k+\u0000\u0001EO*k+\u0000\u0001EO&%,EO\u0014\u0000\u0010%%j\f\u0000\u0006EW\u0000\"X\u0000\b\u0000\t\u0014\u0000\u0010%%j\f\u0000\u0006EW\u0000\fX\u0000\b\u0000\tj\f\u0000\f\u000fascr\u0000\u0001\u0000\f\u07ad","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"0cfd9cdb33d148edf819aa69ea6a171a475b7e73","subject":"added fmClip - Custom Function Paste As Needed","message":"added fmClip - Custom Function Paste As Needed\n","repos":"DanShockley\/FmClipTools","old_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_file":"Scripts\/fmClip - Custom Function Paste As Needed.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"e6f3470e676b83cb0ae775e9fee9956f6de685c0","subject":"We can now install FFMPEG if it is not present\u2026 but it\u2019s ugly..","message":"We can now install FFMPEG if it is not present\u2026 but it\u2019s ugly..\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Run NSTask to see if ffmpeg is installed...\n on awakeFromNib()\n -- Check for FFMPEG\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Quit\",\"Install FFMPEG\"} default button 2\n If button returned of result is \"Install FFMPEG\" then\n try\n tell application \"Terminal\"\n -- TODO: This should be cleaner -- Terminal in front, only one window, focus back to the cat'er afterwards\n set newTab to do script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;if [[ -x `which brew` ]];then brew install ffmpeg;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\";brew install ffmpeg;fi\"\n delay 4\n repeat\n delay 0.1\n if not busy of newTab then exit repeat\n end repeat\n end tell\n -- TODO: This needs a better test, i.e., check if ffmpeg is actually accessible on the path\n display dialog \"FFMPEG was successfully installed\"\n -- TODO: This should actually work! (Bring us back to the foreground)\n activate current application\n on error number error_number\n display dialog \"FFMPEG did not successfully install\"\n end try\n end If\n If button returned of result is \"Quit\" then\n -- Fix!\n current application's NSApp's terminate()\n end If\n end try\n\n \n \n end awakeFromNib\n \n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\nproperty NSMutableArray : class \"NSMutableArray\"\n\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n \n -- Run NSTask to see if ffmpeg is installed...\n on awakeFromNib()\n -- Check for FFMPEG\n try\n do shell script \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi; if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n display dialog \"You must install FFMPEG to continue. \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG, ensure that it is in your bash path.\" buttons {\"Cancel\",\"Install FFMPEG\"} default button 2\n end try\n \n end awakeFromNib\n \n\t\n\ton applicationWillFinishLaunching_(aNotification)\n\t\t-- Insert code here to initialize your application before any files are opened \n\tend applicationWillFinishLaunching_\n\t\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits \n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\t\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"18d927caed675ce4aab0b6fbda9c355fff54dec7","subject":"updated BBEdit_upgrade_SQL_Query_to_newer_format","message":"updated BBEdit_upgrade_SQL_Query_to_newer_format\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_file":"library\/standalone\/BBEdit_upgrade_SQL_Query_to_newer_format.applescript","new_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.6 - 2019-04-17 ( dshockley ): Added ExecuteOLD2. Added SemicolonPilcrowLine. \n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\n\t\n\t\n\t-- LITERAL SECTION:\n\t\n\tset literalSearch_SpacesToTabs to \" \"\n\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\n\tset literalSearch_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD1 to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\n\tset literalSearch_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; Char ( 9 ); \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD2 to \"HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; Char ( 9 ) ; Char ( 13 ) )\"\n\t\n\t\n\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\n\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\n\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\n\t\n\t\n\t\n\t-- FINAL CLEANUP REGEX:\n\t\n\tset regexSearch_SemicolonPilcrowLine to \"^\\\\t+; [ \\\\t]*\\\\r\"\n\tset regexReplace_SemicolonPilcrowLine to \"\"\n\t\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace literalSearch_ExecuteOLD1 using literalReplace_ExecuteOLD1 options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_ExecuteOLD2 using literalReplace_ExecuteOLD2 options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\n\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\treplace regexSearch_SemicolonPilcrowLine using regexReplace_SemicolonPilcrowLine options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","old_contents":"-- BBEdit_upgrade_SQL_Query_to_newer_format({})\n-- Dan Shockley, NYHTC\n-- BBEdit - upgrade SQL Query to newer format\n\n(*\nHISTORY:\n\t1.5 - 2019-04-05 ( dshockley ): Added literalSearch_SpacesToTabs. Fixed \"using List for query\". Other minor changes. Disabled RemoveExtraSpacesBeforeSemicolon. Added RemoveSpacesBetweenLeadingTabsAndSemicolon. \n\t1.4 - 2019-01-02 ( dshockley ): Added ExecuteOLD, QuotedPilcrow, IfSqlResultOLD, queryDebugOLD. \n\t1.3 - 2018-09-04 ( dshockley ): Added regex to remove extra spaces before semicolons. Fix for optional space at end of SQL_Field line in whereEqualsClause regex search. \n\t1.2 - 2018-05-22 ( dshockley ): modified to also convert the query to use List to separate the components of the query. \n\t1.1 - 2017-12-11 ( dshockley ): disable the usually no-longer-needed SQL_EscapeString, but WARN and comment, since it might sitll be needed when using with something OTHER THAN SQL_Where criteria. \n\t1.0 - 2017-09-15 ( dshockley ): first created. \n*)\n\n\non run\n\tBBEdit_upgrade_SQL_Query_to_newer_format({})\nend run\n\n--------------------\n-- START OF CODE\n--------------------\n\non BBEdit_upgrade_SQL_Query_to_newer_format({})\n\t\n\tset regexSearch_SQL_Table to \"Quote *\\\\( *TableNameOfField *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Table to \"SQL_Table ( \\\\1 )\"\n\t\n\tset regexSearch_SQL_Field to \"Quote *\\\\( ?FieldNameShort *\\\\( *([^\\\\)]+) *\\\\) *\\\\)\"\n\tset regexReplace_SQL_Field to \"SQL_Field ( \\\\1 )\"\n\t\n\t\n\tset regexSearch_WhereEqualsClause to \"^([\\\\t ]*)& *SQL_Field *\\\\( *([^\\\\)]+) *\\\\) *\\\\r[\\\\t ]*& \\\" *([=<>]+) *\\\" ?\\\\r[\\\\t ]*& ([^\\\\r\\\\n]+)\\\\r\"\n\t\n\tset regexReplace_WhereEqualsClause to \"\\\\1\\\\& SQL_Where ( \\\\2 ; \\\"\\\\3\\\" ; \\\\4 )\\\\r\"\n\t\n\t\n\tset regexSearch_EscapeStringWARN to \"SQL_EscapeString *\\\\( *([^\\\\)]+) *\\\\)\"\n\t\n\tset regexReplace_EscapeStringWARN to \"\\\\1 \/* WARNING!! Had SQL_EscapeString probably NO LONGER NEEDED, so DISABLED! *\/\"\n\t\n\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\t\n\t--\tset regexSearch_RemoveExtraSpacesBeforeSemicolon to \"([^;]) +;\"\n\t--\tset regexReplace_RemoveExtraSpacesBeforeSemicolon to \"\\\\1 ;\"\n\t\n\tset regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"^([\t]+)[ ]+;\"\n\tset regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon to \"\\\\1;\"\n\t\n\tset literalSearch_SpacesToTabs to \" \"\n\tset literalReplace_SpacesToTabs to ASCII character 9\n\t\n\tset literalSearch_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery; \\\"\\\"; \\\";\\\"; \\\"\\\" )\"\n\tset literalReplace_ExecuteOLD to \"sqlResult = HTC_ExecuteFileSQL ( sqlQuery ; \\\"\\\" ; \\\";\\\" ; Char ( 13 ) )\"\n\t\n\tset literalSearch_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\"; \\\"\\\"; sqlResult )\"\n\tset literalReplace_IfSqlResultOLD to \"If ( sqlResult = \\\"?\\\" ; \\\"\\\" ; sqlResult )\"\n\t\n\tset literalSearch_queryDebugOLD1 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalSearch_queryDebugOLD2 to \"sqlQuery & \\\"==========\\\" &\"\n\tset literalReplace_queryDebugOLD to \"sqlQuery & Char ( 13 ) & \\\"==========\\\" & Char ( 13 ) &\" & return\n\t\n\tset literalSearch_QuotedPilcrow to \"\\\"\\\"\"\n\tset literalReplace_QuotedPilcrow to \"Char ( 13 )\"\n\t\n\t\n\ttell application \"BBEdit\"\n\t\tactivate\n\t\t\n\t\ttell window 1\n\t\t\t\n\t\t\treplace literalSearch_SpacesToTabs using literalReplace_SpacesToTabs options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Table using regexReplace_SQL_Table options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_SQL_Field using regexReplace_SQL_Field options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_WhereEqualsClause using regexReplace_WhereEqualsClause options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_EscapeStringWARN using regexReplace_EscapeStringWARN options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace regexSearch_RemoveSpacesBetweenLeadingTabsAndSemicolon using regexReplace_RemoveSpacesBetweenLeadingTabsAndSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t-- NOT SURE THIS IS NEEDED (or a good idea, since there might be matching DESIRED patterns inside quotes):\t\t\t\n\t\t\t--\t\t\treplace regexSearch_RemoveExtraSpacesBeforeSemicolon using regexReplace_RemoveExtraSpacesBeforeSemicolon options {search mode:grep, starting at top:true}\n\t\t\t\n\t\t\treplace literalSearch_ExecuteOLD using literalReplace_ExecuteOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_IfSqlResultOLD using literalReplace_IfSqlResultOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD1 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_queryDebugOLD2 using literalReplace_queryDebugOLD options {search mode:literal, starting at top:true}\n\t\t\treplace literalSearch_QuotedPilcrow using literalReplace_QuotedPilcrow options {search mode:literal, starting at top:true}\n\t\t\t\n\t\t\ttry\n\t\t\t\t(* convert to using List for query whitespace formatting: *)\n\t\t\t\tset stringStartQuery to \";? ?sqlQuery = \"\n\t\t\t\tset stringEndQuery to \"^([\\\\t ]+); sqlResult = \"\n\t\t\t\tset posQueryStart to characterOffset of found object of (find stringStartQuery options {search mode:grep, starting at top:true})\n\t\t\t\tset posQueryEnd to (characterOffset of found object of (find stringEndQuery options {search mode:grep, starting at top:true})) - 1\n\t\t\t\tselect (characters posQueryStart through posQueryEnd)\n\t\t\t\t\n\t\t\t\treplace \"\\\"SELECT\" using \"List ( \\\\r\\\\t\\\\t\\\\t \\\"SELECT\" searching in selection options {search mode:grep}\n\t\t\t\treplace \"^([\\\\t ]+)& \" using \"\\\\t\\\\t\\\\t; \" searching in selection options {search mode:grep}\n\t\t\t\t\n\t\t\t\t-- because changing the contents of the selection changes the position of the end, get the new end:\n\t\t\t\tset posQueryEnd_NEW to (characterOffset of selection) + (length of selection) - 1\n\t\t\t\t\n\t\t\t\tset character posQueryEnd_NEW to return & tab & tab & tab & \")\" & (contents of character posQueryEnd_NEW) & return\n\t\t\t\t\n\t\t\tend try\n\t\t\t\n\t\tend tell\n\t\t\n\tend tell\n\t\n\t\nend BBEdit_upgrade_SQL_Query_to_newer_format\n\n--------------------\n-- END OF CODE\n--------------------\n","returncode":0,"stderr":"","license":"mit","lang":"AppleScript"} {"commit":"707baed9748392e254d03c85404a36c82a0ea65f","subject":"also removing GPGService from local service menu","message":"also removing GPGService from local service menu\n","repos":"derikk\/GPGServices,jasonchaffee\/GPGServices","old_file":"Installer\/Uninstall.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Installer\/Uninstall.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000\t\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\n\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000b\u000e\u0000\u000b\u0000\u0001\u0000\f\u0011\u0000\f\u0000\n\u0000t\u0000i\u0000t\u0000l\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\n\u00009\u0000\u000e\r\u0000\u000e\u0000\u0004Z\u0000\u0000\u0000\n\u00009\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0000\u0000\n\u0000\u000f\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\n\u0000\r\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\nbhit\r\u0000\u0014\u0000\u00011\u0000\u0000\u0000\n\u0000\u000b\n\u0000\u0004\nrslt\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0004\u0000O\u0000K\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0012\u00005\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0012\u0000\u001a\u0000\u001b\u0001\u0000\u0000\f\u0000\u001a\u0000\u0011\u0000\u000bGPGServices\u0000\u0002\u0000\u0000\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0016\u0000G\u0000P\u0000G\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0019\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u001f\u0000 \n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000!\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000X\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000G\u0000P\u0000G\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000.\u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0006\u0000 \u0000\u0003\u0000#\n\u0000\u0004\nbadm\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000$\u0000%\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u001a\u0000!\u0000&\u0000'\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000&\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000(\u000e\u0000(\u0000\u0001\u0000)\u0011\u0000)\u0000Z\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000~\u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000G\u0000P\u0000G\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000.\u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0006\u0000'\u0000\u0003\u0000*\n\u0000\u0004\nbadm\r\u0000*\u0000\u0001m\u0000\u0000\u0000\u001c\u0000\u001d\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0002\u0000%\u0000\u0002\u0000+\r\u0000+\u0000\u0003I\u0000\u0002\u0000\"\u00005\u0000,\u0000-\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000,\u0000\u0003l\u0000\u0005\u0000\"\u0000'\u0000.\r\u0000.\u0000\u0003I\u0000\u0002\u0000\"\u0000'\u0000\/\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\/\u0000\u0001m\u0000\u0000\u0000\"\u0000#\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000\u0012\u0000s\u0000u\u0000c\u0000c\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000-\u0000\u0003\u00002\u00003\n\u0000\u0004\nbtns\r\u00002\u0000\u0001J\u0000\u0000\u0000(\u0000\/\u00004\u0002\u00004\u0000\u0002\u00005\r\u00005\u0000\u0003I\u0000\u0002\u0000(\u0000-\u00006\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u00006\u0000\u0001m\u0000\u0000\u0000(\u0000)\u00007\u000e\u00007\u0000\u0001\u00008\u0011\u00008\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\u0006\u00003\u0000\u0003\u00009\n\u0000\u0004\ndflt\r\u00009\u0000\u0001m\u0000\u0000\u00000\u00001\u0003\u0000\u0001\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u0000:\u0000;\u0001\u0000\u0000\u0010\u0000:\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u0000;\u0000\u0007\u0010\u0000<\u0000=\u0000>\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u0000<\u0000\u0001k\u0000\u0000\u0000\u0000\u00009\u0000?\u0002\u0000?\u0000\u0002\u0000\u0005\u0000@\u0002\u0000@\u0000\u0002\u0000\r\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u0000=\u0000\u0000\u0010\u0000>\u0000\u000f\u0000\u000b\u0000\u0015\u0000!\u0000(\u00000\u00007\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nbhit\n\u0000\u0004\nbadm\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\u0003\u0000\u0004\u0011\u0000:j\f\u0000\u0001j\f\u0000\u0002O,\u0000\u001d\u0000(el\f\u0000\bOel\f\u0000\bOj\f\u0000\u0001j\f\u0000\u0001kvk\f\u0000\u0002Y\u0000\u0003h\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","old_contents":"FasdUAS 1.101.10\u000e\u0000\u0000\u0000\u0004\u000f\u0000\u0001\u0000\u0002\u0000\u0003\u0001\u0000\u0000\r\u0000\u0001\u0000\u0001k\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0002\u0000\u0004\u0000\u0002\u0000\u0005\u0000\u0006\r\u0000\u0005\u0000\u0003l\u0000\u0002\u0000\u0000\u0000\t\u0000\u0007\r\u0000\u0007\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\t\u0000\b\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\b\u0000\u0003l\u0000\u0005\u0000\u0000\u0000\u0005\u0000\t\r\u0000\t\u0000\u0003I\u0000\u0002\u0000\u0000\u0000\u0005\u0000\n\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\n\u0000\u0001m\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u000b\u000e\u0000\u000b\u0000\u0001\u0000\f\u0011\u0000\f\u0000\n\u0000t\u0000i\u0000t\u0000l\u0000e\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0006\u0000\u0002\u0000\r\r\u0000\r\u0000\u0003l\u0000\u0002\u0000\n\u00001\u0000\u000e\r\u0000\u000e\u0000\u0004Z\u0000\u0000\u0000\n\u00001\u0000\u000f\u0000\u0010\r\u0000\u000f\u0000\u0002=\u0000\u0000\u0000\n\u0000\u000f\u0000\u0011\u0000\u0012\r\u0000\u0011\u0000\u0002n\u0000\u0000\u0000\n\u0000\r\u0000\u0013\u0000\u0014\r\u0000\u0013\u0000\u00011\u0000\u0000\u0000\u000b\u0000\r\n\u0000\u0004\nbhit\r\u0000\u0014\u0000\u00011\u0000\u0000\u0000\n\u0000\u000b\n\u0000\u0004\nrslt\r\u0000\u0012\u0000\u0001m\u0000\u0000\u0000\r\u0000\u000e\u0000\u0015\u000e\u0000\u0015\u0000\u0001\u0000\u0016\u0011\u0000\u0016\u0000\u0004\u0000O\u0000K\r\u0000\u0010\u0000\u0001k\u0000\u0000\u0000\u0012\u0000-\u0000\u0017\u0002\u0000\u0017\u0000\u0002\u0000\u0018\u0000\u0019\r\u0000\u0018\u0000\u0003l\u0000\u0001\u0000\u0012\u0000\u0012\u0000\u001a\u0000\u001b\u0001\u0000\u0000\f\u0000\u001a\u0000\u0011\u0000\u000bGPGServices\u0000\u0002\u0000\u0000\u000e\u0000\u001b\u0000\u0001\u0000\u001c\u0011\u0000\u001c\u0000\u0016\u0000G\u0000P\u0000G\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0002\u0000\u0019\u0000\u0002\u0000\u001d\u0000\u001e\r\u0000\u001d\u0000\u0003I\u0000\u0002\u0000\u0012\u0000\u0019\u0000\u001f\u0000 \n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\u001f\u0000\u0001m\u0000\u0000\u0000\u0012\u0000\u0013\u0000!\u000e\u0000!\u0000\u0001\u0000\"\u0011\u0000\"\u0000X\u0000r\u0000m\u0000 \u0000-\u0000r\u0000f\u0000 \u0000\/\u0000L\u0000i\u0000b\u0000r\u0000a\u0000r\u0000y\u0000\/\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000\/\u0000G\u0000P\u0000G\u0000S\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0000s\u0000.\u0000s\u0000e\u0000r\u0000v\u0000i\u0000c\u0000e\u0006\u0000 \u0000\u0003\u0000#\n\u0000\u0004\nbadm\r\u0000#\u0000\u0001m\u0000\u0000\u0000\u0014\u0000\u0015\n\u0000\b\u000bboovtrue\u0006\u0000\u0000\u0002\u0000\u001e\u0000\u0002\u0000$\r\u0000$\u0000\u0003I\u0000\u0002\u0000\u001a\u0000-\u0000%\u0000&\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000%\u0000\u0003l\u0000\u0005\u0000\u001a\u0000\u001f\u0000'\r\u0000'\u0000\u0003I\u0000\u0002\u0000\u001a\u0000\u001f\u0000(\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000(\u0000\u0001m\u0000\u0000\u0000\u001a\u0000\u001b\u0000)\u000e\u0000)\u0000\u0001\u0000*\u0011\u0000*\u0000\u0012\u0000s\u0000u\u0000c\u0000c\u0000e\u0000e\u0000d\u0000e\u0000d\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0006\u0000&\u0000\u0003\u0000+\u0000,\n\u0000\u0004\nbtns\r\u0000+\u0000\u0001J\u0000\u0000\u0000 \u0000'\u0000-\u0002\u0000-\u0000\u0002\u0000.\r\u0000.\u0000\u0003I\u0000\u0002\u0000 \u0000%\u0000\/\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\r\u0000\/\u0000\u0001m\u0000\u0000\u0000 \u0000!\u00000\u000e\u00000\u0000\u0001\u00001\u0011\u00001\u0000\u0004\u0000O\u0000K\u0002\u0000\u0000\u0002\u0000\u0000\u0006\u0000,\u0000\u0003\u00002\n\u0000\u0004\ndflt\r\u00002\u0000\u0001m\u0000\u0000\u0000(\u0000)\u0003\u0000\u0001\u0006\u0000\u0000\u0002\u0000\u0000\u0002\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u000e\u0000\u0002\u0000\u0000\u000f\u0010\u0000\u0003\u0000\u0003\u00003\u00004\u0001\u0000\u0000\u0010\u00003\u0000\u0001\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\u000e\u00004\u0000\u0007\u0010\u00005\u00006\u00007\n\u0000\u0018.aevtoappnull\u0000\u0000\u0000\u0000\u0000\u0000****\r\u00005\u0000\u0001k\u0000\u0000\u0000\u0000\u00001\u00008\u0002\u00008\u0000\u0002\u0000\u0005\u00009\u0002\u00009\u0000\u0002\u0000\r\u0002\u0000\u0000\u0001\u0000\u0000\u0002\u0000\u0000\u0010\u00006\u0000\u0000\u0010\u00007\u0000\u000e\u0000\u000b\u0000\u0015\u0000!\u0000)\u00000\n\u0000\u0018.sysolocSutxt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0018.sysodlogaskr\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nrslt\n\u0000\u0004\nbhit\n\u0000\u0004\nbadm\n\u0000\u0018.sysoexecTEXT\u0000\u0000\u0000\u0000\u0000TEXT\n\u0000\u0004\nbtns\n\u0000\u0004\ndflt\u0003\u0000\u0004\u0011\u00002j\f\u0000\u0001j\f\u0000\u0002O,\u0000\u001d\u0000 el\f\u0000\bOj\f\u0000\u0001j\f\u0000\u0001kvk\f\u0000\u0002Y\u0000\u0003h\u000f\u0000ascr\u0000\u0001\u0000\r\u07ad","returncode":0,"stderr":"","license":"artistic-2.0","lang":"AppleScript"} {"commit":"798ae353734ea377abb61651092935b75e87b64b","subject":"Checks for missing tag values. Fixes #10","message":"Checks for missing tag values. Fixes #10\n","repos":"davidschlachter\/itunes-concatenator,davidschlachter\/itunes-concatenator","old_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_file":"itunes-concatenator\/itunes-concatenator\/DASAppDelegate.applescript","new_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- This set is for the tags\n property fcatName : \"\"\n property fcatArtist : \"\"\n property fcatAlbum : \"\"\n property fcatComposer : \"\"\n property fcatGenre : \"\"\n property fcatTrack : \"\"\n property fcatTracks : \"\"\n property fcatDisc : \"\"\n property fcatDiscs : \"\"\n property fcatAlbumArtist : \"\"\n property fcatYear : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n if catName's stringValue() is not \"\" then set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Prepare tags\n if pcatName is not \"\" then set fcatName to (\" -song \\\"\" & pcatName & \"\\\" \")\n if fcatName contains \"\\\"\\\"\" then set fcatName to \"\"\n if pcatAlbum is not \"\" then set fcatAlbum to (\" -album \\\"\" & pcatAlbum & \"\\\" \")\n if fcatAlbum contains \"\\\"\\\"\" then set fcatAlbum to \"\"\n if pcatArtist is not \"\" then set fcatArtist to (\" -artist \\\"\" & pcatArtist & \"\\\" \")\n if fcatArtist contains \"\\\"\\\"\" then set fcatArtist to \"\"\n if pcatComposer is not \"\" then set fcatComposer to (\" -writer \\\"\" & pcatComposer & \"\\\" \")\n if fcatComposer contains \"\\\"\\\"\" then set fcatComposer to \"\"\n if pcatGenre is not \"\" then set fcatGenre to (\" -genre \\\"\" & pcatGenre & \"\\\" \")\n if fcatGenre contains \"\\\"\\\"\" then set fcatGenre to \"\"\n if pcatTrack is not \"\" then set fcatTrack to (\" -track \\\"\" & pcatTrack & \"\\\" \")\n if fcatTrack contains \"\\\"\\\"\" then set fcatTrack to \"\"\n if pcatTracks is not \"\" then set fcatTracks to (\" -tracks \\\"\" & pcatTracks & \"\\\" \")\n if fcatTracks contains \"\\\"\\\"\" then set fcatTracks to \"\"\n if pcatDisc is not \"\" then set fcatDisc to (\" -disk \\\"\" & pcatDisc & \"\\\" \")\n if fcatDisc contains \"\\\"\\\"\" then set fcatDisc to \"\"\n if pcatDiscs is not \"\" then set fcatDiscs to (\" -disks \\\"\" & pcatDiscs & \"\\\" \")\n if fcatDiscs contains \"\\\"\\\"\" then set fcatDiscs to \"\"\n if pcatAlbumArtist is not \"\" then set fcatAlbumArtist to (\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" \")\n if fcatAlbumArtist contains \"\\\"\\\"\" then set fcatAlbumArtist to \"\"\n if pcatYear is not \"\" then set fcatYear to (\" -year \\\"\" & pcatYear & \"\\\" \")\n if fcatYear contains \"\\\"\\\"\" then set fcatYear to \"\"\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags \" & fcatName & fcatAlbum & fcatArtist & fcatComposer & fcatGenre & fcatTrack & fcatTracks & fcatDisc & fcatDiscs & fcatAlbumArtist & fcatYear & \" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","old_contents":"--\n-- DASAppDelegate.applescript\n-- itunes-concatenator\n--\n-- Created by David Schlachter on 2014-08-26.\n-- Copyright (c) 2014 Red Eft Software. All rights reserved.\n--\n\n-- via http:\/\/macscripter.net\/viewtopic.php?pid=173787 ; apparently needed for using arrays\n\nscript DASAppDelegate\n\tproperty parent : class \"NSObject\"\n\t\n global these_files, these_times, these_titles, the_index, the_pipes, theCounter, cmdPrefix\n \n\t-- IBOutlets\n\tproperty window : missing value\n property trackTable : missing value\n property catName : missing value\n property catArtist : missing value\n property catAlbum : missing value\n property catComposer : missing value\n property catGenre : missing value\n property catTrack : missing value\n property catTracks : missing value\n property catDisc : missing value\n property catDiscs : missing value\n property catAlbumArtist : missing value\n property catYear : missing value\n property radioType : missing value\n property progressField : missing value\n \n -- Again, per macscripter, we'll set up bindings for the options\n property pcatName : \"\"\n property pcatArtist : \"\"\n property pcatAlbum : \"\"\n property pcatComposer : \"\"\n property pcatGenre : \"\"\n property pcatTrack : \"\"\n property pcatTracks : \"\"\n property pcatDisc : \"\"\n property pcatDiscs : \"\"\n property pcatAlbumArtist : \"\"\n property pcatYear : \"\"\n property missingPackages : \"\"\n property mediaTypeText : \"\"\n \n -- Empty strings for each file name and location\n property pEachName : \"\"\n property pEachLocation : \"\"\n \n property these_titles : {}\n property these_files : {}\n property these_times: {}\n property the_index: {}\n property the_pipes: {}\n \n property theCounter : \"\"\n property cmdPrefix : \"if [[ -r \/etc\/profile ]];then . \/etc\/profile;fi;if [[ -r ~\/.bashrc ]];then . ~\/.bashrc;fi;if [[ -r ~\/.bash_profile ]];then . ~\/.bash_profile;fi;\"\n \n on awakeFromNib()\n -- Check for FFMPEG in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n set missingPackages to \"FFMPEG \"\n end try\n \n -- Check for MP4v2 in the path\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n on error number error_number\n if missingPackages is \"FFMPEG\" then\n set the end of missingPackages to \"MP4v2 \"\n else\n set missingPackages to \"MP4v2 \"\n end if\n end try\n \n if missingPackages is not \"\" then\n display dialog \"You must install the following programs to continue: \\n\\t\" & missingPackages & \" \\n\\nYou may have to install Xcode Command Line Tools and Homebrew first. If you continue, we'll attempt to install them for you if they are not already present. \\n\\nIf you have already installed FFMPEG and MP4v2, ensure that they are in your bash path.\" buttons {\"Quit\",\"Install\"} default button 2\n if result = {button returned:\"Install\"} then\n tell application \"Terminal\"\n set newTab to do script cmdPrefix & \"if [[ -x `which brew` ]];then brew install ffmpeg mp4v2 && exit 0;else \/usr\/bin\/ruby -e \\\"$(\/usr\/bin\/curl -fsSL https:\/\/raw.github.com\/Homebrew\/homebrew\/go\/install)\\\"; brew install ffmpeg mp4v2 && exit 0;fi\"\n delay 1\n activate\n -- Check for when the Terminal is done\n try\n repeat\n delay 0.2\n if not busy of newTab then exit repeat\n end repeat\n end try\n end tell\n -- Check if installation was successful\n try\n do shell script cmdPrefix & \" if [ -x \\\"`\/usr\/bin\/which ffmpeg`\\\" -a -x \\\"`\/usr\/bin\/which mp4chaps`\\\" ];then exit 0;else exit 1;fi\"\n tell application \"Terminal\" to quit\n activate\n display dialog \"Installation was successful!\" buttons {\"OK\"} default button \"OK\"\n on error error_number\n activate\n display dialog \"Homebrew, FFMPEG and\/or MP4v2 could not be installed.\"\n end try\n else if result = {button returned:\"Quit\"} then\n tell me to quit\n end if\n end if\n end awakeFromNib\n\n\n on btnGetTracks_(sender)\n -- Code to add iTunes tracks to our list\n -- via http:\/\/dougscripts.com\/itunes\/itinfo\/info02.php and http:\/\/www.randomsequence.com\/articles\/applescript-to-send-selected-itunes-tracks-using-mail\/\n tell application \"iTunes\"\n set these_titles to {}\n set these_times to {}\n set these_files to {}\n set the_index to {}\n if selection is not {} then -- there ARE tracks selected...\n set mySelection to selection\n set i to 1\n repeat with aTrack in mySelection\n if class of aTrack is file track then\n set end of these_titles to ((name of aTrack) as string)\n set end of these_times to ((time of aTrack) as string)\n set end of these_files to (posix path of (get location of aTrack))\n set end of the_index to (count of these_titles)\n -- Get metadata from the first track\n if i is 1 then\n set pcatArtist to ((artist of aTrack) as string)\n set pcatAlbum to ((album of aTrack) as string)\n set pcatComposer to ((composer of aTrack) as string)\n set pcatGenre to ((genre of aTrack) as string)\n set pcatDisc to ((disc number of aTrack) as string)\n set pcatDiscs to ((disc count of aTrack) as string)\n set pcatAlbumArtist to ((album artist of aTrack) as string)\n set pcatYear to ((year of aTrack) as string)\n end if\n set i to (i + 1)\n end if\n end repeat\n end if\n end tell\n -- Display the songs to be concatenated\n -- via http:\/\/stackoverflow.com\/questions\/25537750\/setstringvalue-with-applescript-list\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"\\n\"\n set disp_titles to these_titles as string\n trackTable's setStringValue_(disp_titles)\n set AppleScript's text item delimiters to olddelimeters\n -- Update the default metadata\n catArtist's setStringValue_(pcatArtist)\n catAlbum's setStringValue_(pcatAlbum)\n catComposer's setStringValue_(pcatComposer)\n catGenre's setStringValue_(pcatGenre)\n catDisc's setStringValue_(pcatDisc)\n catDiscs's setStringValue_(pcatDiscs)\n catAlbumArtist's setStringValue_(pcatAlbumArtist)\n catYear's setStringValue_(pcatYear)\n -- Reset the name and track fields\n catName's setStringValue_(\"\")\n catTrack's setStringValue_(\"\")\n catTracks's setStringValue_(\"\")\n end btnGetTracks_\n\n on btnConcatenate_(sender)\n -- Update the metadata variables with the user's input\n set pcatName to catName's stringValue()\n set pcatArtist to catArtist's stringValue()\n set pcatAlbum to catAlbum's stringValue()\n set pcatComposer to catComposer's stringValue()\n set pcatGenre to catGenre's stringValue()\n set pcatTrack to catTrack's stringValue()\n set pcatTracks to catTracks's stringValue()\n set pcatDisc to catDisc's stringValue()\n set pcatDiscs to catDiscs's stringValue()\n set pcatAlbumArtist to catAlbumArtist's stringValue()\n set pcatYear to catYear's stringValue()\n set the_pipes to {}\n set mediaTypeText to (radioType's titleOfSelectedItem()) as string\n \n try\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4* \/private\/tmp\/cat.mp4\"\n end try\n set errorHappened to false\n -- Create the intermediate files\n try\n repeat with theIndex in the_index\n progressField's setStringValue_(\"Preparing track \" & (theIndex as text) & \"...\" as text)\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -i \\\"\" & (item theIndex of these_files as text) & \"\\\" -c copy -f mpegts -loglevel fatal -vn \/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n set end of the_pipes to (\"\/private\/tmp\/concat\" & theIndex & \".ts\" as text)\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat*\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks you selected could not be joined. Only mp4 files encoded as AAC can be joined presently.\"\n end try\n -- Run the actual concatenation command in ffmpeg (for mp4\/AAC files only!)\n -- via https:\/\/trac.ffmpeg.org\/wiki\/How%20to%20concatenate%20(join,%20merge)%20media%20files\n if not errorHappened then\n try\n set olddelimeters to AppleScript's text item delimiters\n set AppleScript's text item delimiters to \"|\"\n set disp_thepipes to the_pipes as string\n progressField's setStringValue_(\"Concatenating tracks...\")\n delay 0.2\n do shell script (cmdPrefix & \"ffmpeg -f mpegts -i \\\"concat:\" & (disp_thepipes as text) & \"\\\" -c copy -bsf:a aac_adtstoasc -loglevel fatal \/private\/tmp\/cat.mp4\" as text)\n set AppleScript's text item delimiters to olddelimeters\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4\"\n progressField's setStringValue_(\"\")\n display dialog \"The tracks could not be joined.\"\n end try\n end if\n -- Now let's create the chapter file\n if not errorHappened then\n progressField's setStringValue_(\"Preparing chapters...\")\n delay 0.2\n try\n repeat with theIndex in the_index\n if theIndex < 2 then\n do shell script (\"\/bin\/echo \\\"00:00:00.000 \" & (item theIndex of these_titles as text) & \"\\\" > \/private\/tmp\/cat.chapters.txt\" as text)\n set theCounter to (do shell script (cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theCounter to (do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string)\n else\n set theDateStamp to do shell script (cmdPrefix & \"t=\"& (theCounter as text) & \";((msec=t%1000, t\/=1000, sec=t%60, t\/=60, min=t%60, hrs=t\/60));timestamp=$(printf \\\"%02d:%02d:%02d.%03d\\\" $hrs $min $sec $msec);\/bin\/echo $timestamp\" as text)\n do shell script (\"\/bin\/echo \\\"\" & (theDateStamp as text) & \" \" & (item theIndex of these_titles as text) & \"\\\" >> \/private\/tmp\/cat.chapters.txt\" as text)\n set theNewCounter to do shell script ((cmdPrefix & \"ffprobe -loglevel panic -show_streams \/private\/tmp\/concat\" & (theIndex as text) & \".ts | egrep -m 1 'duration=[0-9]+\\\\.' | sed 's\/duration=\\\\([0-9]*[0-9]\\\\.[0-9]*\\\\)\/\\\\1\/'\" as text) as string)\n set theNewCounter to do shell script (\"\/bin\/echo $(\/usr\/bin\/printf %.$2f $(\/bin\/echo \\\"`\/usr\/bin\/printf %.3f \" & theNewCounter & \"` * 1000\\\" | \/usr\/bin\/bc))\") as string\n set theCounter to (theCounter + theNewCounter)\n end if\n end repeat\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be read from the tracks you had selected.\"\n end try\n end if\n -- Chapterize cat.mp4\n if not errorHappened then\n try\n progressField's setStringValue_(\"Chapterizing...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4chaps -i \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The chapters could not be added to concatenated file.\"\n end try\n end if\n -- Add tags\n if not errorHappened then\n try\n progressField's setStringValue_(\"Adding tags...\")\n delay 0.2\n do shell script (cmdPrefix & \"mp4tags -song \\\"\" & pcatName & \"\\\" -album \\\"\" & pcatAlbum & \"\\\" -artist \\\"\" & pcatArtist & \"\\\" -writer \\\"\" & pcatComposer & \"\\\" -genre \\\"\" & pcatGenre & \"\\\" -track \\\"\" & pcatTrack & \"\\\" -tracks \\\"\" & pcatTracks & \"\\\" -disk \\\"\" & pcatDisc & \"\\\" -disks \\\"\" & pcatDiscs & \"\\\" -albumartist \\\"\" & pcatAlbumArtist & \"\\\" -year \\\"\" & pcatYear & \"\\\" \/private\/tmp\/cat.mp4\" as text)\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt\"\n progressField's setStringValue_(\"\")\n display dialog \"The tags could not be added to the concatenated audio file.\"\n end try\n end if\n -- Add the finished track to iTunes\n if not errorHappened then\n progressField's setStringValue_(\"Adding to iTunes...\")\n delay 0.2\n try\n if mediaTypeText is \"Music track\" then\n set mediaType to \"m4a\"\n else if mediaTypeText is \"Audiobook track\" then\n set mediaType to \"m4b\"\n end if\n do shell script (\"\/bin\/mv \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.\" & mediaType as text)\n tell application \"iTunes\"\n add file (\":private:tmp:cat.\" & mediaType as text)\n end tell\n on error error_number\n set errorHappened to true\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.mp4 \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.\" & mediaType\n progressField's setStringValue_(\"\")\n display dialog \"The concatenated file could not be added to iTunes.\"\n end try\n end if\n -- Clean up\n do shell script \"\/bin\/rm -f \/private\/tmp\/concat* \/private\/tmp\/cat.chapters.txt \/private\/tmp\/cat.m4*\"\n set theCounter to \"\"\n progressField's setStringValue_(\"\")\n end btnConcatenate_\n\n\n\ton applicationWillFinishLaunching_(aNotification)\n -- Insert code here to initialize your application before any files are opened\n\tend applicationWillFinishLaunching_\n\n\ton applicationShouldTerminate_(sender)\n\t\t-- Insert code here to do any housekeeping before your application quits\n\t\treturn current application's NSTerminateNow\n\tend applicationShouldTerminate_\n\nend script","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"bef957feea5aa401f934bcc82e8227c010fc2e77","subject":"extend uninstaller to also remove named login item \"TotalFinder\"","message":"extend uninstaller to also remove named login item \"TotalFinder\"\n","repos":"binaryage\/totalfinder-installer","old_file":"Uninstall.applescript","new_file":"Uninstall.applescript","new_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\t-- we created unnamed login item up to version 1.4.18 (TotalFinder.app is filename)\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\t\t-- since 1.4.19 we are creating named login item \"TotalFinder\"\n\t\t\tif login item \"TotalFinder\" exists then\n\t\t\t\tdelete login item \"TotalFinder\"\n\t\t\tend if\n\t\tend tell\t\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalFinder uninstallation done\" & newline\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","old_contents":"property stdout : \"\"\non run\n\tset newline to ASCII character 10\n\t\n\tset stdout to stdout & \" shutdown TotalFinderCrashWatcher ...\" & newline\n\ttry\n\t\tdo shell script \"killall -SIGINT TotalFinderCrashWatcher\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinderCrashWatcher was not running\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" shutdown Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to quit\n\ton error\n\t\tset stdout to stdout & \" Finder was not running prior uninstallation\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app from login items ...\" & newline\n\ttry\n\t\ttell application \"System Events\"\n\t\t\tget the name of every login item\n\t\t\tif login item \"TotalFinder.app\" exists then\n\t\t\t\tdelete login item \"TotalFinder.app\"\n\t\t\tend if\n\t\tend tell\n\ton error\n\t\tset stdout to stdout & \" Encountered problems when removing TotalFinder.app from login items\"\n\tend try\n\t\n\t-- old version\n\tset stdout to stdout & \" removing the old TotalFinder files (0.8.2 and earlier) ...\" & newline\n\ttry\n\t\tdo shell script \"sudo launchctl unload -w \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -f \\\"\/Library\/LaunchDaemons\/com.binaryage.echelon.launcher.plist\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/echelon.kext\\\"\" with administrator privileges\n\tend try\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/Application Support\/SIMBL\/Plugins\/TotalFinder.bundle\\\"\" with administrator privileges\n\tend try\n\t\n\t\n\t-- new version\n\tset stdout to stdout & \" unload TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo kextunload \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" TotalFinder.kext not loaded\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.app ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Applications\/TotalFinder.app\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Applications\/TotalFinder.app\" & newline\n\tend try\n\t\n\t\n\tset stdout to stdout & \" remove TotalFinder.kext ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/System\/Library\/Extensions\/TotalFinder.kext\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/System\/Library\/Extensions\/TotalFinder.kext\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" remove TotalFinder.osax ...\" & newline\n\ttry\n\t\tdo shell script \"sudo rm -rf \\\"\/Library\/ScriptingAdditions\/TotalFinder.osax\\\"\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to remove \/Library\/ScriptingAdditions\/TotalFinder.osax\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" enable Finder animations again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder DisableAllAnimations -bool false\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder AnimateWindowZoom -bool true\" with administrator privileges\n\t\tdo shell script \"defaults write com.apple.finder FXDisableFancyWindowTransition -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" unable to enable animations back\" & newline\n\tend try\n\n\tset stdout to stdout & \" hide system files in Finder again ...\" & newline\n\ttry\n\t\tdo shell script \"defaults write com.apple.finder AppleShowAllFiles -bool false\" with administrator privileges\n\ton error\n\t\tset stdout to stdout & \" hide system files in Finder back\" & newline\n\tend try\n\t\n\tset stdout to stdout & \" relaunch Finder ...\" & newline\n\ttry\n\t\ttell application \"Finder\" to launch\n\ton error\n\t\tset stdout to stdout & \" failed to relaunch Finder\" & newline\n\tend try\n\t\n\tset stdout to stdout & \"TotalFinder uninstallation done\" & newline\n\t\n\t-- at this point Finder should start cleanly and with no signs of TotalFinder\n\t-- you may check Events\/Replies tab to see if there were no issues with uninstallation\n\t\n\tstdout -- this is needed for platypus to display output in details window\nend run","returncode":0,"stderr":"","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2dcae77eac45481e123a793203b47c78c637068f","subject":"add script to reset simulator","message":"add script to reset simulator\n","repos":"blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant","old_file":"Scripts\/reset-simulator.applescript","new_file":"Scripts\/reset-simulator.applescript","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"AppleScript"} {"commit":"5a1a891c99c6ae2faa573ce77b31caaaf85d7468","subject":"commit_mac_auto_update.180919134535","message":"commit_mac_auto_update.180919134535\n","repos":"jtraver\/dev,jtraver\/dev,jtraver\/dev,jtraver\/dev,jtraver\/dev,jtraver\/dev,jtraver\/dev,jtraver\/dev","old_file":"applescript\/parents.applescript","new_file":"applescript\/parents.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jtraver\/dev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"24de430164f378f2f81df90d5d4bc2e6bdd7cc00","subject":"updates","message":"updates\n","repos":"eliram\/dotfiles","old_file":"applescripts\/rdio.scpt","new_file":"applescripts\/rdio.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/eliram\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0d1f99250deddde36938e71c43d185c3f41e158d","subject":"fixed issue where variable was occasionally undefined in supermerge 3 script","message":"fixed issue where variable was occasionally undefined in supermerge 3 script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b01c335ebed7e11c67aa5130a830fb8ecb86c7b1","subject":"You name it, you have it. Execute this script to update to latest source and be notified. Change appName, sourcePath and svnPath according to your setup. Duplicate it and use it for different repositories at will. rejoice!","message":"You name it, you have it. Execute this script to update to latest source and be notified. Change appName, sourcePath and svnPath according to your setup. Duplicate it and use it for different repositories at will. rejoice!\n","repos":"SalrJupiter\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,nochkin\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,xhruso00\/growl,chashion\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,SalrJupiter\/growl,nagyistoce\/growl,ylian\/growl,morganestes\/morganestes-growl,nochkin\/growl,nkhorman\/archive-growl,timbck2\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,timbck2\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,timbck2\/growl,xhruso00\/growl,ylian\/growl,xhruso00\/growl,tectronics\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,SalrJupiter\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,chashion\/growl,nagyistoce\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,ylian\/growl,Shalaco\/shalzers-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,xhruso00\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,ylian\/growl,morganestes\/morganestes-growl,nochkin\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,xhruso00\/growl,chashion\/growl,nagyistoce\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,chashion\/growl,nochkin\/growl,morganestes\/morganestes-growl,timbck2\/growl,CarlosCD\/growl,nochkin\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,tectronics\/growl,CarlosCD\/growl","old_file":"Examples\/AppleScripts\/SVN update.scpt","new_file":"Examples\/AppleScripts\/SVN update.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7c2e5c894d42c1a6741a5ecc9f0b6c999b451965","subject":"add ubersicht test script","message":"add ubersicht test script\n","repos":"issmirnov\/dotfiles,issmirnov\/dotfiles,issmirnov\/dotfiles,issmirnov\/dotfiles","old_file":"ubersicht\/test.scpt","new_file":"ubersicht\/test.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/issmirnov\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8485f42067c8b21f6ae783dcb47ef40a0458056e","subject":"ensureObjectRef - change to sample code","message":"ensureObjectRef - change to sample code\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/ensureObjectRef.applescript","new_file":"library\/text parsing\/ensureObjectRef.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"53c9e7f290e9bdf3f323399a547826385ef72ec0","subject":"Add iMessage spam sender","message":"Add iMessage spam sender\n","repos":"rileyjshaw\/littlescripts,rileyjshaw\/littlescripts","old_file":"applescript\/imessage-spam.scpt","new_file":"applescript\/imessage-spam.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rileyjshaw\/littlescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"379d2b751047ac524412484ce9f608c36fba5086","subject":"NEW: Script to run npm with selected package.json","message":"NEW: Script to run npm with selected package.json\n","repos":"meengit\/bbdev","old_file":"Scripts\/npm run cmd.scpt","new_file":"Scripts\/npm run cmd.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"055bd8fce1330c0037c37425f21390fd6542c73f","subject":"Add a script for getting the currently selected track's ID","message":"Add a script for getting the currently selected track's ID\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iTunes\/get-track-id.applescript","new_file":"macosx\/scripts\/iTunes\/get-track-id.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pjones\/emacsrc.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a801f5c7ce83aff4da708cd25aaedccf5332724a","subject":"Make sure we're checking the artwork count of the current track","message":"Make sure we're checking the artwork count of the current track\n","repos":"CarlosCD\/growl,tectronics\/growl,nochkin\/growl,ylian\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,tectronics\/growl,CarlosCD\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,tectronics\/growl,an0nym0u5\/growl,CarlosCD\/growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,xhruso00\/growl,chashion\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,timbck2\/growl,nochkin\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,chashion\/growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,tectronics\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,xhruso00\/growl,an0nym0u5\/growl,SalrJupiter\/growl,chashion\/growl,xhruso00\/growl,nagyistoce\/growl,nagyistoce\/growl,nagyistoce\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,nagyistoce\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,an0nym0u5\/growl,xhruso00\/growl,timbck2\/growl,an0nym0u5\/growl,SalrJupiter\/growl,nochkin\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,xhruso00\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,SalrJupiter\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,timbck2\/growl,an0nym0u5\/growl,ylian\/growl,timbck2\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl","old_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_file":"Examples\/GrowlTunes\/Scripts\/jackItunesInfo.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"73d61a85199a525986bb6651b5da5765bafe7007","subject":"Add applescript to toggle Terminal.app profile","message":"Add applescript to toggle Terminal.app profile\n","repos":"mk12\/scripts,mk12\/scripts,mk12\/scripts,mk12\/scripts","old_file":"darklight.applescript","new_file":"darklight.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mk12\/scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"85e78a856f0c3c0c84c349a0f3584aa47e660dce","subject":"removed duplicate line in log to file function that made it log data twice in the Supermerge 3 script","message":"removed duplicate line in log to file function that made it log data twice in the Supermerge 3 script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8163f4cf0b6cc3730207ad3907ca5bd7ba408266","subject":"commits script again - commit log text extraction also needed changing for Tiger.","message":"commits script again - commit log text extraction also needed changing for Tiger.\n","repos":"CarlosCD\/growl,nochkin\/growl,chashion\/growl,chashion\/growl,tectronics\/growl,Shalaco\/shalzers-growl,chashion\/growl,nochkin\/growl,timbck2\/growl,an0nym0u5\/growl,SalrJupiter\/growl,CarlosCD\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,ylian\/growl,nagyistoce\/growl,nochkin\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,chashion\/growl,tectronics\/growl,ylian\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,SalrJupiter\/growl,CarlosCD\/growl,xhruso00\/growl,tectronics\/growl,xhruso00\/growl,an0nym0u5\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,tectronics\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,nochkin\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,an0nym0u5\/growl,xhruso00\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,ylian\/growl,nkhorman\/archive-growl,xhruso00\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,timbck2\/growl,ylian\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,nagyistoce\/growl,nochkin\/growl,tectronics\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,nochkin\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nkhorman\/archive-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,CarlosCD\/growl,an0nym0u5\/growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7398f32aaadcd01db85443f390eb48f5a091d202","subject":"remove export name badge script becuase it was unsed. The version of it that is used is in \/Volumes\/HOM\/PRODUCTS\/NAME BADGES\/ Automation Resources","message":"remove export name badge script becuase it was unsed. The version of it that is used is in \/Volumes\/HOM\/PRODUCTS\/NAME BADGES\/ Automation Resources\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Export Name Badge.applescript","new_file":"Export Name Badge.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"44edf4e2d478127a9e5ed1d274bd090c2b05cefc","subject":"New Notes note","message":"New Notes note\n","repos":"EvanLovely\/clipboard-actions,EvanLovely\/clipboard-actions,EvanLovely\/clipboard-actions","old_file":"New Notes note.applescript","new_file":"New Notes note.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/EvanLovely\/clipboard-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5dddbf03cede05773098ad3cbd16b825c68a8330","subject":"add script to poen safari tabs in firefox","message":"add script to poen safari tabs in firefox\n","repos":"NewAlexandria\/dotfiles,NewAlexandria\/dotfiles,NewAlexandria\/dotfiles","old_file":"mac\/applescripts\/open Safari window tabs in Firefox.scpt","new_file":"mac\/applescripts\/open Safari window tabs in Firefox.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NewAlexandria\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"aa58ba7f57fdeea46fbd64715ec9b43787f95e7c","subject":"add original QuickStats script","message":"add original QuickStats script\n\nSee:\nhttps:\/\/github.com\/RobTrew\/tree-tools\/blob\/master\/OmniFocus%20scripts\/Statistics\/QuickStats.applescript\n","repos":"brettporter\/omnifocus-tools","old_file":"QuickStats\/QuickStats.applescript","new_file":"QuickStats\/QuickStats.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brettporter\/omnifocus-tools.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"1833570fb95ac1833715e9c7a3f8b0a680c525a5","subject":":green_apple: add do not disturb applescript","message":":green_apple: add do not disturb applescript\n","repos":"mistadikay\/dotfiles","old_file":"applescript\/dnd.applescript","new_file":"applescript\/dnd.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mistadikay\/dotfiles.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"dcfa30ef09f25ddead28c95be3971017f5fcbdcc","subject":"Update Render & Fade script","message":"Update Render & Fade script\n\nWait properly until render completes.\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"05a327acf0bba257d60e7e374223fd592a40745e","subject":"Typo","message":"Typo\n\nAdded $ to variable name\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"60dd33eb393a552acad2bf49c6bfb35ef7a835ca","subject":"languages\/littecode\/applescript\/tmp\/split_newWindow.scpt","message":"languages\/littecode\/applescript\/tmp\/split_newWindow.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/split_newWindow.scpt","new_file":"languages\/littecode\/applescript\/tmp\/split_newWindow.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"d5d099e642f21c641587c97cec0840b1c1944ef5","subject":"add osx driver fix","message":"add osx driver fix\n","repos":"jeremywrnr\/wampum,jeremywrnr\/wampum,jeremywrnr\/wampum","old_file":"arduino\/ref\/apple_vcp_unload.scpt","new_file":"arduino\/ref\/apple_vcp_unload.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jeremywrnr\/wampum.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a2f642b4cdb0ec5a43107dfec06e13f252878e09","subject":"dmg release script to work with jpackage jdk 16","message":"dmg release script to work with jpackage jdk 16\n","repos":"torakiki\/pdfsam,torakiki\/pdfsam,torakiki\/pdfsam,torakiki\/pdfsam","old_file":"pdfsam-basic\/src\/dmg\/resources\/PDFsam Basic-dmg-setup.scpt","new_file":"pdfsam-basic\/src\/dmg\/resources\/PDFsam Basic-dmg-setup.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/torakiki\/pdfsam.git\/': The requested URL returned error: 403\n","license":"agpl-3.0","lang":"AppleScript"} {"commit":"0c1b39873c839ecfa65a8f6b0c5b8a3cfdefbcfc","subject":"added script to disable OSX sd slot drivers (preventing sd card from ejecting on sleep). This causes the storage on the card to be exposed directly","message":"added script to disable OSX sd slot drivers (preventing sd card from ejecting on sleep). This causes the storage on the card to be exposed directly\n","repos":"charlesdaniels\/dotfiles,charlesdaniels\/dotfiles,charlesdaniels\/dotfiles","old_file":"bin\/bin\/unloadSDDrivers.scpt","new_file":"bin\/bin\/unloadSDDrivers.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/charlesdaniels\/dotfiles.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e3f8de530f103a8533a1a50b6960641dde064a08","subject":"support running script directly","message":"support running script directly\n","repos":"Joilence\/launchbar,prenagha\/launchbar,prenagha\/launchbar,prenagha\/launchbar","old_file":"Dismiss Notifications.lbaction\/Contents\/Scripts\/dismiss.applescript","new_file":"Dismiss Notifications.lbaction\/Contents\/Scripts\/dismiss.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/prenagha\/launchbar.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"485e9a76d18297d37be4f4f7d4abf1d84ca5667d","subject":"updated CopyValuesFromViewIndexWindow to provide visual feedback","message":"updated CopyValuesFromViewIndexWindow to provide visual feedback\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/Copy Values from View Index Window.applescript","new_file":"library\/standalone\/Copy Values from View Index Window.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5bbb677dcb0781fd6eb74f2c9c7b617329e84fcf","subject":"Create emailWithAttachmentAirmail.scpt","message":"Create emailWithAttachmentAirmail.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"emailWithAttachmentAirmail.scpt","new_file":"emailWithAttachmentAirmail.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"987008d900b113d880e02c702fa539e1cd7b6ab4","subject":"another fix for bug in supermerge3 script where folders from previous rows were being copied. copyvar should've been reset to true not false. also added more safeguards, resetting the values of the path to copy on each iteration","message":"another fix for bug in supermerge3 script where folders from previous rows were being copied. copyvar should've been reset to true not false. also added more safeguards, resetting the values of the path to copy on each iteration\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6c6d0d430e2f556e2aac49b930cc33bd18376b7b","subject":"18 Page...: added dialog to pick files to work on; added dynamic selection of destination folder based on file path of current file","message":"18 Page...: added dialog to pick files to work on; added dynamic selection of destination folder based on file path of current file\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"18 Page&coversheet PDFs.applescript","new_file":"18 Page&coversheet PDFs.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"805d31b3ef6872d77dd13a325c8b13cad621df53","subject":"Delete Start Screensaver.applescript","message":"Delete Start Screensaver.applescript","repos":"chrisiona\/OSX-Actions","old_file":"Start Screensaver.applescript","new_file":"Start Screensaver.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/chrisiona\/OSX-Actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f1d3ea00c5631872afbe773e6264ca2f88682f14","subject":"added getTextUntilLast","message":"added getTextUntilLast\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/getTextUntilLast.applescript","new_file":"library\/text parsing\/getTextUntilLast.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6b2b3331d09eb862595156ec297105078c3ccfd5","subject":"added script for hiding mpv","message":"added script for hiding mpv\n","repos":"Bilalh\/MediaKeyHelper","old_file":"hide_mpv.applescript","new_file":"hide_mpv.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Bilalh\/MediaKeyHelper.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"3950a2918860bde1329ebf2c6837cc4a0d77ad83","subject":"Rid of terminal output for proxy script","message":"Rid of terminal output for proxy script\n","repos":"libec\/dotfiles","old_file":".scripts\/proxy.scpt","new_file":".scripts\/proxy.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/libec\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a68cd3f79c4d5dfc921881404e2f1f611ebc0dc1","subject":"Fix \u2018Add to Safari Reading List\u2019 plugin","message":"Fix \u2018Add to Safari Reading List\u2019 plugin\n\nModify AppleScript to handle articles with empty body","repos":"Eitot\/vienna-rss,ViennaRSS\/vienna-rss,ViennaRSS\/vienna-rss,barijaona\/vienna-rss,josh64x2\/vienna-rss,ViennaRSS\/vienna-rss,josh64x2\/vienna-rss,barijaona\/vienna-rss,josh64x2\/vienna-rss,josh64x2\/vienna-rss,josh64x2\/vienna-rss,barijaona\/vienna-rss,Eitot\/vienna-rss,ViennaRSS\/vienna-rss,Eitot\/vienna-rss,barijaona\/vienna-rss,ViennaRSS\/vienna-rss,Eitot\/vienna-rss,barijaona\/vienna-rss","old_file":"Vienna\/SharedSupport\/Plugins\/ShareWithSafariReadingList\/Vienna to Safari Reading List.scpt","new_file":"Vienna\/SharedSupport\/Plugins\/ShareWithSafariReadingList\/Vienna to Safari Reading List.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/barijaona\/vienna-rss.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"a977d3c37d59bef6d1f009cc9715b04386e52926","subject":"Add Split Vertical script","message":"Add Split Vertical script\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Scripts\/SplitVertical.applescript","new_file":"Scripts\/SplitVertical.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0058759c43dcde9060e83d6b25f63f254912510f","subject":"godoc script","message":"godoc script\n\nRuns godoc on the selected item and puts the output in a new text\nwindow.\n\nBetter option is really to use dash though\n","repos":"ascarter\/Go.bbpackage,ascarter\/Go.bbpackage,grmartin\/Go-bbpackage,ascarter\/Go-bbpackage,grmartin\/Go-bbpackage,grmartin\/Go-bbpackage,ascarter\/Go.bbpackage,ascarter\/Go-bbpackage,ascarter\/Go-bbpackage","old_file":"Contents\/Scripts\/godoc.applescript","new_file":"Contents\/Scripts\/godoc.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/grmartin\/Go-bbpackage.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fe78329c3b3cc867918bd8e8029a51586ca6e592","subject":"Update AppDelegate.applescript","message":"Update AppDelegate.applescript","repos":"wahlmanj\/OpenPlex,wahlmanj\/OpenPlex","old_file":"OpenPlex 0.2\/AppDelegate.applescript","new_file":"OpenPlex 0.2\/AppDelegate.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/wahlmanj\/OpenPlex.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6c79af9152c7994be98feb39d4976a8c04fa877a","subject":"test cert fix","message":"test cert fix","repos":"wahlmanj\/OpenPlex,wahlmanj\/OpenPlex","old_file":"OpenPlex 0.2\/AppDelegate.applescript","new_file":"OpenPlex 0.2\/AppDelegate.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/wahlmanj\/OpenPlex.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4f63c3bcb1f0bd902f26e1c74f32c3b7a75d2bf5","subject":"added 18 page & coversheet PDFs script","message":"added 18 page & coversheet PDFs script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"18 Page&coversheet PDFs.applescript","new_file":"18 Page&coversheet PDFs.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7a182dfa158a0a1148643a101cdd403ec0ab468f","subject":"Nuked a dead script.","message":"Nuked a dead script.\n","repos":"xeger\/launssh,xeger\/launssh","old_file":"resources\/RightScale_SSH_Launcher.scpt","new_file":"resources\/RightScale_SSH_Launcher.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/xeger\/launssh.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d801220ed063d32ade7729b09a916dc6859b8128","subject":"Create pictureit.scpt","message":"Create pictureit.scpt\n\nThis too way too long to figure out. It uses several undocumented features. For example, you *can* test screencapture to capture a given area of a screen. You also have to use a helper function for any hope of clicking somewhere. Also remember to delay before doing some commands or they just don't work.","repos":"scarrico\/BayAreaFresh,scarrico\/BayAreaFresh,scarrico\/BayAreaFresh","old_file":"automation\/mac\/pictureit.scpt","new_file":"automation\/mac\/pictureit.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/scarrico\/BayAreaFresh.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"4a827ea7fc14aa83f5388dc9cb84c1e05e0b4732","subject":"Moved update checking to function","message":"Moved update checking to function\n\nAllows easier addition of files\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/updater.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/updater.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"dead43eaefbb6270783f073948b85e8bec69604c","subject":"First attempt at AppleScript for building labels #22","message":"First attempt at AppleScript for building labels #22\n","repos":"vanda\/DigitalLabels,vanda\/DigitalLabels","old_file":"application\/Build Digital Labels.scpt","new_file":"application\/Build Digital Labels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/vanda\/DigitalLabels.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6902d594e4d247c72991c94e58a5fe3a20ba0ff3","subject":"Save before committing!","message":"Save before committing!\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401576\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"d4a9d0591cf368a8606cf0902463e7563f216ebf","subject":"added Import Custom Calendar Backs script","message":"added Import Custom Calendar Backs script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Import Custom Calendar Backs.applescript","new_file":"Import Custom Calendar Backs.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ffc914763ceef290bcd4413d8ef97b2edf96b602","subject":"Fix bug in Make Someday\/Maybe script.","message":"Fix bug in Make Someday\/Maybe script.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Make Someday-Maybe.applescript","new_file":"OmniFocus\/Make Someday-Maybe.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"17401cb0c393ccdceec6e9f388f518c112823f5d","subject":"Add clearcache action","message":"Add clearcache action\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"actions\/clearcache.applescript","new_file":"actions\/clearcache.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/caleb531\/play-song.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7d7722c35e87ca983049659af5dba84a18c6bc3a","subject":"bug-fix to work in Script Workspace window","message":"bug-fix to work in Script Workspace window\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/Script Step Specify Calc.applescript","new_file":"library\/standalone\/Script Step Specify Calc.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"bc5ed776802a3e373061e71ea29ba783bed3a60d","subject":"languages\/littecode\/applescript\/a.scpt","message":"languages\/littecode\/applescript\/a.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/a.scpt","new_file":"languages\/littecode\/applescript\/a.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"09b4ab2a70911872779b9ef9ac1b3bde0975b0b1","subject":"Add Inserts A-E script","message":"Add Inserts A-E script\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Inserts A-E.applescript","new_file":"AppleScripts for Pro Tools\/Inserts A-E.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6a87d6fa34080ccdb7b30e6b64f1242bdef59ff3","subject":"Create menuClick.scpt","message":"Create menuClick.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"menuClick.scpt","new_file":"menuClick.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"900bc5e5490c9bc6203cd02c154d6ca14fc8ede4","subject":"fix incorrect destination path in 18 pg pdf script","message":"fix incorrect destination path in 18 pg pdf script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"18 Page&coversheet PDFs.applescript","new_file":"18 Page&coversheet PDFs.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9cc30a0b25027cac0d2c899e7923d5d1ecda0ee5","subject":"add uninstaller.applescript","message":"add uninstaller.applescript\n","repos":"e-gaulue\/Karabiner,e-gaulue\/Karabiner,wataash\/Karabiner,tekezo\/Karabiner,e-gaulue\/Karabiner,tekezo\/Karabiner,wataash\/Karabiner,wataash\/Karabiner,e-gaulue\/Karabiner,tekezo\/Karabiner,wataash\/Karabiner,tekezo\/Karabiner","old_file":"files\/extra\/uninstaller.applescript","new_file":"files\/extra\/uninstaller.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/wataash\/Karabiner.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"013fdb48af6a5971084af693b5bd0b178a17c13d","subject":"Verify document type","message":"Verify document type\n\nFor documentDidSave, only update tags and run scripts if it is a text document\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7f49e372d68c758e1af94c398ebbb7d9c9b77edb","subject":"adds a test for the close all notifications command","message":"adds a test for the close all notifications command\n","repos":"CarlosCD\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,CarlosCD\/growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl","old_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"16ebc110474bc1b390c1ce193305e1cf56dfd24f","subject":"Add boot2docker AppleScript","message":"Add boot2docker AppleScript\n","repos":"jawshooah\/dotfiles,jawshooah\/dotfiles","old_file":"script\/boot2docker.scpt","new_file":"script\/boot2docker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jawshooah\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f1949f7d142a141165fa7a856b3a5527ed5e1910","subject":"Script to attempt to configure apple mail","message":"Script to attempt to configure apple mail\n","repos":"pjones\/emacsrc","old_file":"macosx\/after\/mail.applescript","new_file":"macosx\/after\/mail.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pjones\/emacsrc.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"512242dce881aa50d0f3b826bd4ab75bc9cc3499","subject":"Create vpnCheck.scpt","message":"Create vpnCheck.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"vpnCheck.scpt","new_file":"vpnCheck.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"368d47aeeb58d98625f612b0cdaacf00ff3b8563","subject":"Initial commit of osa\/ directory.","message":"Initial commit of osa\/ directory.\n","repos":"alb3rtuk\/scripts,alb3rtuk\/scripts,alb3rtuk\/scripts","old_file":"osa\/close-all-windows.scpt","new_file":"osa\/close-all-windows.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/alb3rtuk\/scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9900ec5d2e799b29df0273f3851239d60e2231a4","subject":"Updated script to change notification title based on affected repository","message":"Updated script to change notification title based on affected repository\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40293\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9e7b895a172b02c1173ff2b5a61c2d1faff628fd","subject":"Fixed an incorrect boolean test","message":"Fixed an incorrect boolean test\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40291\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1554c99788b98ea287c9e0239f27051e035516da","subject":"improved open in LS","message":"improved open in LS\n","repos":"adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles","old_file":"applescripts\/Applications\/Google Chrome\/Open in LS.scpt","new_file":"applescripts\/Applications\/Google Chrome\/Open in LS.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adagios\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"816449ab7eda6173a06a8a4d3c140a4456842955","subject":"Make Someday-Maybe: improve so it also works on full projects.","message":"Make Someday-Maybe: improve so it also works on full projects.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Make Someday-Maybe.applescript","new_file":"OmniFocus\/Make Someday-Maybe.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ccb84be29e90b641dfba6998b063013516f6b078","subject":"New script to use growl when I receive chat messages","message":"New script to use growl when I receive chat messages\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/iChat\/growl.scpt","new_file":"macosx\/scripts\/iChat\/growl.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pjones\/emacsrc.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1510cae9b807c69a92d441c53def7f6d8e9e9e17","subject":"fixing error that hides the uninstaller window after running it from a downloaded dmg","message":"fixing error that hides the uninstaller window after running it from a downloaded dmg\n","repos":"derikk\/GPGServices,jasonchaffee\/GPGServices","old_file":"Installer\/Uninstall.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Installer\/Uninstall.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jasonchaffee\/GPGServices.git\/': The requested URL returned error: 403\n","license":"artistic-2.0","lang":"AppleScript"} {"commit":"3d056948fe6cc04004c8ba380e92fa3c37bd3ce5","subject":"Reverting, looks like this just doesn't work beyond that one test I did. *sigh*","message":"Reverting, looks like this just doesn't work beyond that one test I did. *sigh*\n","repos":"chashion\/growl,tectronics\/growl,ylian\/growl,nagyistoce\/growl,nagyistoce\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,tectronics\/growl,tectronics\/growl,nochkin\/growl,nagyistoce\/growl,chashion\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,timbck2\/growl,chashion\/growl,nochkin\/growl,nkhorman\/archive-growl,ylian\/growl,timbck2\/growl,SalrJupiter\/growl,timbck2\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,CarlosCD\/growl,an0nym0u5\/growl,CarlosCD\/growl,CarlosCD\/growl,CarlosCD\/growl,tectronics\/growl,CarlosCD\/growl,SalrJupiter\/growl,nagyistoce\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,ylian\/growl,nkhorman\/archive-growl,xhruso00\/growl,nochkin\/growl,xhruso00\/growl,nkhorman\/archive-growl,timbck2\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,tectronics\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,ylian\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nochkin\/growl,chashion\/growl,SalrJupiter\/growl,chashion\/growl,Shalaco\/shalzers-growl,tectronics\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,nagyistoce\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,nochkin\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e8f6822ed3c869108903dbbbf0445f68662390a3","subject":"Follow Link: improve regex.","message":"Follow Link: improve regex.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Follow Link.applescript","new_file":"OmniFocus\/Follow Link.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a88de184ab5a3755b766da45d0042ddcbe9b0f6e","subject":"Beautifier script for BBEdit.","message":"Beautifier script for BBEdit.\n\nCourtesy of Andreas Schneider.\n","repos":"amacdougall\/js-beautify,FezVrasta\/js-beautify,mmsqe\/js-beautify,foreni-packages\/js-beautify,wodim\/js-beautify,foreni-packages\/js-beautify,dinesh-it\/js-beautify-old,timothyeburke\/js-beautify,bitwiseman\/js-beautify,J2TeaM\/js-beautify,amacdougall\/js-beautify,blackmiaool\/js-beautify,goelmo\/js-beautify,ephox-luke\/js-beautify,J2TeaM\/js-beautify,Coburn37\/js-beautify,tmarchant\/js-beautify,mmsqe\/js-beautify,glennimoss\/js-beautify,BobJavascript\/js-beautify,blackmiaool\/js-beautify,aecepoglu\/js-beautify,melck\/js-beautify,gujiman\/js-beautify,amacdougall\/js-beautify,olsonpm\/js-beautify,AmesianX\/js-beautify,glennimoss\/js-beautify,aecepoglu\/js-beautify,amacdougall\/js-beautify,BobJavascript\/js-beautify,foreni-packages\/js-beautify,BobJavascript\/js-beautify,Infocatcher\/js-beautify,eric6356\/js-beautify,timothyeburke\/js-beautify,gujiman\/js-beautify,aecepoglu\/js-beautify,tmarchant\/js-beautify,eric6356\/js-beautify,odetinin\/Pretty-Code,FezVrasta\/js-beautify,Coburn37\/js-beautify,goelmo\/js-beautify,Infocatcher\/js-beautify,gujiman\/js-beautify,melck\/js-beautify,jaichandra\/js-beautify,olsonpm\/js-beautify,gujiman\/js-beautify,tmarchant\/js-beautify,olsonpm\/js-beautify,dinesh-it\/js-beautify-old,evocateur\/js-beautify,beautify-web\/js-beautify,beautify-web\/js-beautify,odetinin\/Pretty-Code,tmarchant\/js-beautify,odetinin\/Pretty-Code,melck\/js-beautify,bitwiseman\/js-beautify,goelmo\/js-beautify,AmesianX\/js-beautify,beautify-web\/js-beautify,eric6356\/js-beautify,Infocatcher\/js-beautify,ephox-luke\/js-beautify,timothyeburke\/js-beautify,jaichandra\/js-beautify,jaichandra\/js-beautify,ddunlop\/js-beautify-node,glennimoss\/js-beautify,timothyeburke\/js-beautify,Coburn37\/js-beautify,blackmiaool\/js-beautify,foreni-packages\/js-beautify,blackmiaool\/js-beautify,evocateur\/js-beautify,aecepoglu\/js-beautify,J2TeaM\/js-beautify,olsonpm\/js-beautify,dinesh-it\/js-beautify-old,jaichandra\/js-beautify,goelmo\/js-beautify,mmsqe\/js-beautify,wodim\/js-beautify,glennimoss\/js-beautify,eric6356\/js-beautify,melck\/js-beautify,Infocatcher\/js-beautify,wodim\/js-beautify,beautify-web\/js-beautify,FezVrasta\/js-beautify,J2TeaM\/js-beautify,mmsqe\/js-beautify,bitwiseman\/js-beautify,wodim\/js-beautify,ephox-luke\/js-beautify,AmesianX\/js-beautify,bitwiseman\/js-beautify,BobJavascript\/js-beautify,Coburn37\/js-beautify,evocateur\/js-beautify,AmesianX\/js-beautify,ephox-luke\/js-beautify","old_file":"bbedit\/jsBeautify_BBED.scpt","new_file":"bbedit\/jsBeautify_BBED.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/olsonpm\/js-beautify.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"da1082db97851790d5819e97b883b6519ba612ac","subject":"Create pdfLaTeX.@r.applescript","message":"Create pdfLaTeX.@r.applescript","repos":"coteditor\/SampleScripts,coteditor\/SampleScripts,coteditor\/SampleScripts,coteditor\/SampleScripts,coteditor\/SampleScripts","old_file":"AppleScript\/Extras\/LaTeX\/pdfLaTeX.@r.applescript","new_file":"AppleScript\/Extras\/LaTeX\/pdfLaTeX.@r.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/coteditor\/SampleScripts.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"7c4c200b575fef9ef58c44b445f6d1d080cbda39","subject":"settings changed","message":"settings changed\n","repos":"geigi\/loopjongen","old_file":"mountVolume.scpt","new_file":"mountVolume.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/geigi\/loopjongen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"21cfba3f5b149f1a1ee26a14ce024c1a32f8ec5d","subject":"Adding a powermail script.","message":"Adding a powermail script.\n","repos":"chashion\/growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,an0nym0u5\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,CarlosCD\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,timbck2\/growl,nagyistoce\/growl,an0nym0u5\/growl,chashion\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nochkin\/growl,tectronics\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,CarlosCD\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,tectronics\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,nagyistoce\/growl,tectronics\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,SalrJupiter\/growl,nagyistoce\/growl,chashion\/growl,nkhorman\/archive-growl,CarlosCD\/growl,timbck2\/growl,xhruso00\/growl,timbck2\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl,nochkin\/growl,Shalaco\/shalzers-growl,ylian\/growl,nkhorman\/archive-growl,timbck2\/growl,ylian\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,an0nym0u5\/growl,ylian\/growl,ylian\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,chashion\/growl,nkhorman\/archive-growl,nochkin\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,timbck2\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,xhruso00\/growl,xhruso00\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,SalrJupiter\/growl,xhruso00\/growl","old_file":"Scripts\/Email\/PowerMail.scpt","new_file":"Scripts\/Email\/PowerMail.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"756890c33787a0dbc40a44b142c4214523d632cc","subject":"Chrome tabs: don't lose track of windows when switching tabs","message":"Chrome tabs: don't lose track of windows when switching tabs\n","repos":"hlissner\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,hlissner\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions","old_file":"actions\/Chrome Tabs.lbaction\/Contents\/Scripts\/switch_tab.applescript","new_file":"actions\/Chrome Tabs.lbaction\/Contents\/Scripts\/switch_tab.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lordlycastle\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a35c9e21dadfd905bfe926a02c509e89d1e863f7","subject":"Create Safari-OpenAllStarredArticles.applescript","message":"Create Safari-OpenAllStarredArticles.applescript\n","repos":"brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen","old_file":"AppleScript\/Safari-OpenAllStarredArticles.applescript","new_file":"AppleScript\/Safari-OpenAllStarredArticles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brentsimmons\/Evergreen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f0978ad961ba68eaecb4a5ab9ddea3424599ed4d","subject":"Remove applescript (kept in dropbox)","message":"Remove applescript (kept in dropbox)\n","repos":"hlissner\/dotfiles,hlissner\/dotfiles,cthachuk\/dotfiles,hlissner\/dotfiles,hlissner\/dotfiles,cthachuk\/dotfiles,hlissner\/dotfiles","old_file":"apple\/Rate Current Song.scpt","new_file":"apple\/Rate Current Song.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/hlissner\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e1f20244b804281278d36c55992adc0ac2f78b7b","subject":"updated inspector close and fields pick table. added clear contents handler","message":"updated inspector close and fields pick table. added clear contents handler\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_Menus\/fmGUI_ClearContents.applescript","new_file":"library\/fmGUI_Menus\/fmGUI_ClearContents.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a22db0bb5825c79671a15a2351bfa9efccfa6939","subject":"Create maximizer.scpt","message":"Create maximizer.scpt","repos":"nicolindemann\/apploader","old_file":"maximizer.scpt","new_file":"maximizer.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nicolindemann\/apploader.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"24c4428d860208102917629ac3ba66d87b0094d4","subject":"getTextBetween - removed extra debug code","message":"getTextBetween - removed extra debug code\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/getTextBetween.applescript","new_file":"library\/text parsing\/getTextBetween.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d6b187ba0e5da698d2b305f7448b4a9ba495c348","subject":"languages\/littecode\/applescript\/start_to_run.scpt","message":"languages\/littecode\/applescript\/start_to_run.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/start_to_run.scpt","new_file":"languages\/littecode\/applescript\/start_to_run.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"1294e2866a453cfec3c8c406563462ccb762816a","subject":"OmniFocus waiting: clear any defer date set","message":"OmniFocus waiting: clear any defer date set\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Waiting.applescript","new_file":"OmniFocus\/Waiting.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e3220670c342ad5c2360c19e4dfd4c4e9fea6b7a","subject":"Add script to convert current task in OmniFocus to a waiting for task.","message":"Add script to convert current task in OmniFocus to a waiting for task.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Waiting.applescript","new_file":"OmniFocus\/Waiting.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"571be832ed241e8bfee7bbd3d27c493213e7458e","subject":"removed Save Namebadge GP script. It was merged with the export name badge script previously","message":"removed Save Namebadge GP script. It was merged with the export name badge script previously\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Save Namebadge GP.applescript","new_file":"Save Namebadge GP.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0fa8b934fbe9b29bfec68860ca9f730d6c6f39ee","subject":"\tnew file: GetBearURL.scpt","message":"\tnew file: GetBearURL.scpt\n","repos":"bblinder\/home-brews,bblinder\/home-brews","old_file":"GetBearURL.scpt","new_file":"GetBearURL.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/bblinder\/home-brews.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cc4591571e2619617ef4e5ab1c948f9d8a098dda","subject":"Create main.applescript","message":"Create main.applescript\n\nChanging name to support using simple text file. Attempting to make the app auto-updating.","repos":"nilness\/mhqtools","old_file":"main.applescript","new_file":"main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ab5287899991b81cf4f414c881c8d275ae97d98b","subject":"Added missing arguments to the second notify command. Moved 'application name' up in the first notify command. Corrected file: URLs.","message":"Added missing arguments to the second notify command.\nMoved 'application name' up in the first notify command.\nCorrected file: URLs.\n","repos":"CarlosCD\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,chashion\/growl,SalrJupiter\/growl,ylian\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,nagyistoce\/growl,nochkin\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,timbck2\/growl,xhruso00\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,ylian\/growl,CarlosCD\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,SalrJupiter\/growl,CarlosCD\/growl,an0nym0u5\/growl,ylian\/growl,chashion\/growl,an0nym0u5\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,ylian\/growl,nochkin\/growl,nkhorman\/archive-growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,chashion\/growl,CarlosCD\/growl,nkhorman\/archive-growl,timbck2\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,Shalaco\/shalzers-growl,tectronics\/growl,an0nym0u5\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,ylian\/growl,tectronics\/growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,xhruso00\/growl,timbck2\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,xhruso00\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,CarlosCD\/growl,nochkin\/growl,timbck2\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"9823d6106b833c01f529bf3c8bc0c98fd1a9bd64","subject":"Add \"Set Pomodoro Timer\" AppleScript example","message":"Add \"Set Pomodoro Timer\" AppleScript example\n","repos":"kristopherjohnson\/MenubarCountdown","old_file":"Scripts\/AppleScript\/Start Pomodoro Timer.applescript","new_file":"Scripts\/AppleScript\/Start Pomodoro Timer.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kristopherjohnson\/MenubarCountdown.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c95463e12508a40747178a7b8638ab9165dbde21","subject":"Tweak script to not notify on replies to messages on the list","message":"Tweak script to not notify on replies to messages on the list\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401034\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"60c4e337ec587600ac3425d30e44aee2a6419c99","subject":"test commit","message":"test commit\n\ngit-svn-id: c87f87383e9e570476b37173748f840982b11a31@140 a0cc1e66-070c-0410-9f8a-b213d8d4c38a\n","repos":"joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters","old_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/joemaller\/joesfilters.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1500a0e41545eb1a7d53f385085f103d2dcf2457","subject":"JasonLeyba: Uncomment line from last commit.","message":"JasonLeyba: Uncomment line from last commit.\n\nr16479\n","repos":"krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/krosenvold\/selenium-git-release-candidate.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"58443e71235849bf9ca82d811f9b1bfa9fc8273c","subject":"Streamline Document attachment script","message":"Streamline Document attachment script\n\n* Reduce to minimal code\n* Run attachment shell script in the BBEdit block (hoping that helps with it picking up changes)\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f960fdf4439628594f62a855ac93a6aba867a891","subject":"Added a script that exports only pages with comments","message":"Added a script that exports only pages with comments\n","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kolovos\/scriptbar.git\/': The requested URL returned error: 403\n","license":"epl-1.0","lang":"AppleScript"} {"commit":"bffbdd653ef0b98f5178d5c1a5f839a1c7e5c2a4","subject":"checkpointing some working code snippets","message":"checkpointing some working code snippets\n","repos":"rjacoby\/pebblepoint_server,rjacoby\/pebblepoint_server","old_file":"routes\/working_applescript.scpt","new_file":"routes\/working_applescript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rjacoby\/pebblepoint_server.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c2b46c3674a7eea2dc840ba00d8c34825842f05e","subject":"Update Suspend Automation.applescript","message":"Update Suspend Automation.applescript","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d8cb42ad824d4549aba6bed70344bdfe39b056d6","subject":"update","message":"update\n","repos":"LinusLing\/LNCodeSet,LinusLing\/LNCodeSet","old_file":"HexoServer.scpt","new_file":"HexoServer.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/LinusLing\/LNCodeSet.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d82d899008119a6fa9f776c2522eb60060df0728","subject":"Add raycast script to toggle airpods NC","message":"Add raycast script to toggle airpods NC\n","repos":"mikumi\/dotfiles,mikumi\/dotfiles,mikumi\/dotfiles,mikumi\/dotfiles","old_file":"bin\/raycast-scripts\/toggle-noise-cancellation.applescript","new_file":"bin\/raycast-scripts\/toggle-noise-cancellation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mikumi\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c96cb84154fd58d31aa926cb2343b4958a699b9e","subject":"Create Excel-CreateFeedStatisticsSpreadsheet.applescript","message":"Create Excel-CreateFeedStatisticsSpreadsheet.applescript\n\nAnother sample script, this time targeting Excel and building a spreadsheet with simple statistics about feeds.\n","repos":"brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen","old_file":"AppleScript\/Excel-CreateFeedStatisticsSpreadsheet.applescript","new_file":"AppleScript\/Excel-CreateFeedStatisticsSpreadsheet.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brentsimmons\/Evergreen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cb527f93a57e6499ba318b1e92b1c4baf15a6ff3","subject":"Create dns.scpt","message":"Create dns.scpt","repos":"kkirsche\/textual-applescrits","old_file":"dns.scpt","new_file":"dns.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kkirsche\/textual-applescrits.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"df9c2aed8014511944a5da5fb0520abe640c12f8","subject":"Removed old SpeedDownload support script","message":"Removed old SpeedDownload support script\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402360\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Scripts\/Finder Folder Actions\/download growl alert.scpt","new_file":"Scripts\/Finder Folder Actions\/download growl alert.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1e0de56a7e3aed7c2d5538bcf7a063482e0f4638","subject":"Disable vulnerability tests","message":"Disable vulnerability tests\n\nDisabled flashback trojan and shellshock tests. These are not really\nused and better handled by dedicated software.\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0ccad431e86f16030b7ea8c5dc29e1165cb84eca","subject":"JasonLeyba: Make reinstall.scpt system language independent.","message":"JasonLeyba: Make reinstall.scpt system language independent.\n\nr16964\n","repos":"krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate,krosenvold\/selenium-git-release-candidate","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/krosenvold\/selenium-git-release-candidate.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"0968597614673cb59cd42fe72581c8d2b233e470","subject":"Added a \"format java code\" script","message":"Added a \"format java code\" script\n","repos":"drbr\/dotfiles","old_file":"appleScript\/Format Java Code.scpt","new_file":"appleScript\/Format Java Code.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/drbr\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fa8137189633891d25add0d9206487f2789b0325","subject":"Put paths in quotes","message":"Put paths in quotes\n","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kolovos\/scriptbar.git\/': The requested URL returned error: 403\n","license":"epl-1.0","lang":"AppleScript"} {"commit":"1eebd50545bdd6f1a85157cc36c16f591ab5148a","subject":"Create DeleteCommentHistoryOnReddit.scpt","message":"Create DeleteCommentHistoryOnReddit.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"AppleScript\/DeleteCommentHistoryOnReddit.scpt","new_file":"AppleScript\/DeleteCommentHistoryOnReddit.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"4679b55ccdacb957c4a9147f1dfcac2318f066e9","subject":"adds a test for the close all notifications command","message":"adds a test for the close all notifications command\n","repos":"morganestes\/morganestes-growl,ylian\/growl,SalrJupiter\/growl,timbck2\/growl,nagyistoce\/growl,nkhorman\/archive-growl,ylian\/growl,timbck2\/growl,nagyistoce\/growl,nochkin\/growl,tectronics\/growl,tectronics\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,nochkin\/growl,timbck2\/growl,chashion\/growl,nochkin\/growl,nagyistoce\/growl,nkhorman\/archive-growl,nagyistoce\/growl,an0nym0u5\/growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,nagyistoce\/growl,xhruso00\/growl,nagyistoce\/growl,SalrJupiter\/growl,ylian\/growl,xhruso00\/growl,nkhorman\/archive-growl,nochkin\/growl,nochkin\/growl,nkhorman\/archive-growl,tectronics\/growl,morganestes\/morganestes-growl,tectronics\/growl,ylian\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,timbck2\/growl,morganestes\/morganestes-growl,chashion\/growl,an0nym0u5\/growl,chashion\/growl,xhruso00\/growl,xhruso00\/growl,chashion\/growl,timbck2\/growl,SalrJupiter\/growl,an0nym0u5\/growl,ylian\/growl,morganestes\/morganestes-growl,timbck2\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,SalrJupiter\/growl,xhruso00\/growl,chashion\/growl,tectronics\/growl,an0nym0u5\/growl,nochkin\/growl,tectronics\/growl,ylian\/growl,chashion\/growl","old_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tectronics\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"84b4662a886b4a011f83fd310573dbaf8c5448e2","subject":"A tystrings apple script","message":"A tystrings apple script\n","repos":"luckytianyiyan\/TyStrings,luckytianyiyan\/TyStrings","old_file":"script\/tystrings.scpt","new_file":"script\/tystrings.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/luckytianyiyan\/TyStrings.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"64b2b86ae72dd9d8241953347e3f05ce1c946804","subject":"Create main.scpt","message":"Create main.scpt","repos":"nilness\/mhqtools","old_file":"main.scpt","new_file":"main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a3b80ef8efc3fbf7279f93ab9d105674b02433b3","subject":"applescript to launch a terminal showing the celeryd logs for a set of workers.","message":"applescript to launch a terminal showing the celeryd logs for a set of workers.\n","repos":"WoLpH\/celery,cbrepo\/celery,frac\/celery,ask\/celery,cbrepo\/celery,ask\/celery,WoLpH\/celery,frac\/celery,mitsuhiko\/celery,mitsuhiko\/celery","old_file":"contrib\/mac\/watch-workers.applescript","new_file":"contrib\/mac\/watch-workers.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/WoLpH\/celery.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"0420670d34c8faaf085a27096db44aae5d90a083","subject":"Quoting AppleScript folder input","message":"Quoting AppleScript folder input\n","repos":"vanda\/DigitalLabels,vanda\/DigitalLabels","old_file":"application\/Build Digital Labels.scpt","new_file":"application\/Build Digital Labels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/vanda\/DigitalLabels.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"86ac140e5f468978c3520e01dd14f497e344b025","subject":"You name it, you have it. Execute this script to update to latest source and be notified. Change appName, sourcePath and svnPath according to your setup. Duplicate it and use it for different repositories at will. rejoice!","message":"You name it, you have it. Execute this script to update to latest source and be notified. Change appName, sourcePath and svnPath according to your setup. Duplicate it and use it for different repositories at will. rejoice!\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40409\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/SVN update.scpt","new_file":"Examples\/AppleScripts\/SVN update.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e41b728e1633fda7f0a5051e7bb8bc0214ee0d7d","subject":"Added Applescript","message":"Added Applescript\n","repos":"lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world,lovejavaee\/my-hello-world","old_file":"applescript.scpt","new_file":"applescript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lovejavaee\/my-hello-world.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f7b6c1219a356c15a3c6f69943923cd3c4907180","subject":"New Send with Outlook script","message":"New Send with Outlook script\n","repos":"kotfu\/applescripts","old_file":"src\/Send with Outlook.applescript","new_file":"src\/Send with Outlook.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kotfu\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"57c1c2b61baed72d2687bb37c52755a733183b88","subject":"First pass at an AppleScript for filtering .bib files for public release.","message":"First pass at an AppleScript for filtering .bib files for public release.\n","repos":"kurtraschke\/htmlbib,kurtraschke\/htmlbib","old_file":"Filterer.applescript","new_file":"Filterer.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kurtraschke\/htmlbib.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ea2a7560818140ad54164bb080ecc5dcbe5e838d","subject":"Add AppleScript for sophistory.py","message":"Add AppleScript for sophistory.py\n","repos":"pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff","old_file":"python\/pdblatex\/sophistory.applescript","new_file":"python\/pdblatex\/sophistory.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pdbartlett\/misc-stuff.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"a63435b9137b7933ff58de622f6be7ac753b478c","subject":"Another file for previous fix","message":"Another file for previous fix\n","repos":"jamiekowalski\/foldingtext-extra,jamiekowalski\/foldingtext-extra","old_file":"wikilink.ftplugin\/Open document with filter.scpt","new_file":"wikilink.ftplugin\/Open document with filter.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jamiekowalski\/foldingtext-extra.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"01c3392fbd0932d7a59479b51f672c39d2799af7","subject":"Add script to open 5 tabs and ssh","message":"Add script to open 5 tabs and ssh\n","repos":"mk12\/scripts,mk12\/scripts,mk12\/scripts,mk12\/scripts","old_file":"snow.applescript","new_file":"snow.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mk12\/scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a7a5fda929dc09685849ba5bf1e879bbb69d1038","subject":"Created growl.scpt so that I can easily growl from scripts (aliases don't work in scripts).","message":"Created growl.scpt so that I can easily growl from scripts (aliases don't work in scripts).\n","repos":"stiemannkj1\/liferay-tools,stiemannkj1\/liferay-tools,stiemannkj1\/liferay-tools","old_file":"Tools\/growl.scpt","new_file":"Tools\/growl.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stiemannkj1\/liferay-tools.git\/': The requested URL returned error: 403\n","license":"lgpl-2.1","lang":"AppleScript"} {"commit":"2b22a6bae5ee79ec91e1ba33702ad6df9c80302d","subject":"Add tunes script","message":"Add tunes script\n","repos":"mkxml\/dotfiles,mkxml\/dotfiles","old_file":"applescripts\/tunes.scpt","new_file":"applescripts\/tunes.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mkxml\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"08c58ab2d9e09c5714dae521164975e168534003","subject":"fixed issue in 'copy old job...' script where it would try to copy from multiple locations, even if it found the old job already.","message":"fixed issue in 'copy old job...' script where it would try to copy from multiple locations, even if it found the old job already.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Copy Old Job to New Folder.applescript","new_file":"Copy Old Job to New Folder.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2f1b2bb252e33e0b99543b49a28e2e47c5044bfa","subject":"Create menuBarAppWithIcon.scpt","message":"Create menuBarAppWithIcon.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"menuBarAppWithIcon.scpt","new_file":"menuBarAppWithIcon.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"02cbdb623d99ad608fdaf590a8b26be16df51a8b","subject":"Register whether or not an iPod is found.","message":"Register whether or not an iPod is found.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401573\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1897db788c07769758ba91b158306b195eaa6279","subject":"simplified to only work on single filetype now that all bgs are consistent for calendars","message":"simplified to only work on single filetype now that all bgs are consistent for calendars\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Determine Image Orientation.applescript","new_file":"Determine Image Orientation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3e34612aad8428402926b2cdb5e119bc06f3f7c7","subject":"Thanks to Johann Richard and Ingmar J. Stein, this script is hopefully now more efficient. woo","message":"Thanks to Johann Richard and Ingmar J. Stein, this script is hopefully now more efficient. woo\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40562\n","repos":"incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b2294177f7b6bdc85fbad74223640a37b3335224","subject":"Fixed clear notes format","message":"Fixed clear notes format\n","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/feedback\/Clear notes.applescript","new_file":"io.dimitris.scriptbar\/scripts\/feedback\/Clear notes.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kolovos\/scriptbar.git\/': The requested URL returned error: 403\n","license":"epl-1.0","lang":"AppleScript"} {"commit":"8c092476a1d8c5e5328f49db78375a2b8a4a4241","subject":"update applescript (forgot what)","message":"update applescript (forgot what)\n","repos":"adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles","old_file":"applescripts\/CoB\/daily log with nvALT.scpt","new_file":"applescripts\/CoB\/daily log with nvALT.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adagios\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"761950e6d72e4b7f0454af0f91310731f72d604f","subject":"Get buddy info out of iMessage and into JSON","message":"Get buddy info out of iMessage and into JSON\n","repos":"chainsawsalad\/imessage-liberator,chainsawsalad\/imessage-liberator,chainsawsalad\/imessage-liberator","old_file":"Contacts.applescript","new_file":"Contacts.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/chainsawsalad\/imessage-liberator.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0831162ba86aa52a4b66dc8550f15bb9597dcbfa","subject":"Adding a script courtesy of Johann Richard of mycvs.org. Icon files need to be set. I don't have an iPod to test this with. Also, this looks like it could check if a firewire or usb disk is also in place.","message":"Adding a script courtesy of Johann Richard of mycvs.org. Icon files need to be set. I don't have an iPod to test this with. Also, this looks like it could check if a firewire or usb disk is also in place.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40543\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/iPod Checker.scpt","new_file":"Examples\/AppleScripts\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"24f3398bf2b8be0d33d9ecb5a5144b9a90857609","subject":"getTextBetween added option to behaveAsExpectedByIgnoringAdditionalBeforeTextOccurrences","message":"getTextBetween added option to behaveAsExpectedByIgnoringAdditionalBeforeTextOccurrences\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/getTextBetween.applescript","new_file":"library\/text parsing\/getTextBetween.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4e92276135d213ddc0b279138a13dfbe42899849","subject":"added Calendar Pad Printfiles script","message":"added Calendar Pad Printfiles script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"304a480f2fc8a98620e401a7d51f881f7cfeb67b","subject":"added preliminary impose script","message":"added preliminary impose script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"impose CCHP:CCCP.applescript","new_file":"impose CCHP:CCCP.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"40f3d13f0b208b15ca738e8d3335fb38641ab1d1","subject":"Fixed up AppleScript import]","message":"Fixed up AppleScript import]\n","repos":"brymck\/translazen","old_file":"Import Tags.scpt","new_file":"Import Tags.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brymck\/translazen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"51466677edb971bc81505ac7ec3590384623a2e4","subject":"Greitens navbar updates","message":"Greitens navbar updates\n","repos":"stlpublicradio\/dailygraphics,stlpublicradio\/dailygraphics,stlpublicradio\/dailygraphics,stlpublicradio\/dailygraphics","old_file":"iterm_dailygraphics.scpt","new_file":"iterm_dailygraphics.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stlpublicradio\/dailygraphics.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"dbf7349a3c1ebfcdcf430f5e82083433c62756f4","subject":"Create open_services.scpt","message":"Create open_services.scpt","repos":"dillo\/dotfiles","old_file":"open_services.scpt","new_file":"open_services.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/dillo\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d9fffaa5288f91c478bf8b0c6cfd11e9e54afcad","subject":"Add AppleScript for opening journal file in Vim to a random entry","message":"Add AppleScript for opening journal file in Vim to a random entry\n","repos":"mk12\/scripts,mk12\/scripts,mk12\/scripts,mk12\/scripts","old_file":"recall.applescript","new_file":"recall.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mk12\/scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"31d39f7f94ccc20bc95f0fabd682fe3ac2e5af3e","subject":"[Modify] iterm splits script","message":"[Modify] iterm splits script\n","repos":"blodely\/Mac-Configurations","old_file":"AS_iTerm_2018-10-18.scpt","new_file":"AS_iTerm_2018-10-18.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/blodely\/Mac-Configurations.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8346123b03284bf3331bf701287616de4ef00832","subject":"show now playing from spotify in tmux","message":"show now playing from spotify in tmux\n","repos":"thiagodebastos\/dotfiles","old_file":"applescripts\/tunes.scpt","new_file":"applescripts\/tunes.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/thiagodebastos\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"90f0bc057cac8cd5c24ec5cc0d02dd764dad01cd","subject":"draft of applescript to add a title to final output.docx","message":"draft of applescript to add a title to final output.docx","repos":"foliant-docs\/foliant","old_file":"scripts\/add_title.applescript","new_file":"scripts\/add_title.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/foliant-docs\/foliant.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"76d39e8ae01a8b42f548e8ef7c358470ef394a49","subject":"Added coalescing example to test script","message":"Added coalescing example to test script\n","repos":"doshinirav\/doshinirav-myversion,nagyistoce\/growl,ylian\/growl,nochkin\/growl,ylian\/growl,nochkin\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,xhruso00\/growl,chashion\/growl,an0nym0u5\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,an0nym0u5\/growl,CarlosCD\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,timbck2\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,CarlosCD\/growl,timbck2\/growl,tectronics\/growl,Shalaco\/shalzers-growl,chashion\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,an0nym0u5\/growl,CarlosCD\/growl,chashion\/growl,timbck2\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nochkin\/growl,nochkin\/growl,tectronics\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,tectronics\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,ylian\/growl,chashion\/growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,xhruso00\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,chashion\/growl,Shalaco\/shalzers-growl,ylian\/growl,ylian\/growl,xhruso00\/growl,morganestes\/morganestes-growl","old_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f9d974f7916ac964b73c39cb2fdb2093ce8a7218","subject":"Create new Things todos from Mail.","message":"Create new Things todos from Mail.\n","repos":"tsnow\/dotfiles,tsnow\/dotfiles,tsnow\/dotfiles","old_file":"applescripts\/new-todo-from-mail.applescript","new_file":"applescripts\/new-todo-from-mail.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tsnow\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"98d2d5c685b1902b9a000c3b396918064e3596f7","subject":"Fixed a bug I just created","message":"Fixed a bug I just created\n","repos":"an0nym0u5\/growl,chashion\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,timbck2\/growl,nkhorman\/archive-growl,nochkin\/growl,an0nym0u5\/growl,xhruso00\/growl,SalrJupiter\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,tectronics\/growl,SalrJupiter\/growl,chashion\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,timbck2\/growl,tectronics\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,chashion\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,ylian\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,nochkin\/growl,nochkin\/growl,nagyistoce\/growl,an0nym0u5\/growl,an0nym0u5\/growl,xhruso00\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,CarlosCD\/growl,chashion\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,chashion\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,timbck2\/growl,ylian\/growl,ylian\/growl,nochkin\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,xhruso00\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,nkhorman\/archive-growl,ylian\/growl,nkhorman\/archive-growl,tectronics\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,CarlosCD\/growl,nochkin\/growl,tectronics\/growl,timbck2\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"09e5ad7ee6a6f7e8f0d932280ce51aa904c13bf5","subject":"Added Tweetbot Tweet","message":"Added Tweetbot Tweet\n","repos":"EvanLovely\/alfred--actions,EvanLovely\/alfred--actions","old_file":"actions\/Tweet using Tweetbot.applescript","new_file":"actions\/Tweet using Tweetbot.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/EvanLovely\/alfred--actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f5317b92ac99b1349de69d931a5cae871621f775","subject":"added patternCount","message":"added patternCount\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/patternCount.applescript","new_file":"library\/text parsing\/patternCount.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f05f6470b718b78f1615189ad71e038533189dd4","subject":"NEW: Run Grunt script","message":"NEW: Run Grunt script\n","repos":"meengit\/bbdev","old_file":"Scripts\/run grunt cmd.scpt","new_file":"Scripts\/run grunt cmd.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"36462816b3a5c6d1fc9ea5963d53bc944e34e513","subject":"commits script again - commit log text extraction also needed changing for Tiger.","message":"commits script again - commit log text extraction also needed changing for Tiger.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402543\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b5a80719de8693c8acd91236781b395ef418b328","subject":"add script to select iPhone 5 simulator","message":"add script to select iPhone 5 simulator\n","repos":"blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant","old_file":"Scripts\/select-iPhone5-simulator.applescript","new_file":"Scripts\/select-iPhone5-simulator.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/blazingcloud\/sealant.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1a5f6c65f0d76c32702be7999ba64c63a9d5c071","subject":"fixed issue where script failed if you only had one box selected.","message":"fixed issue where script failed if you only had one box selected.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"93bacffddba6f9861c023d4f29f6cf2016298703","subject":"Added.","message":"Added.\n","repos":"jfsicilia\/dotfiles","old_file":"mac\/applescript\/evernote_find_and_replace.scpt","new_file":"mac\/applescript\/evernote_find_and_replace.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jfsicilia\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3be2f974727a8879cf30d2a945571da27c76f6c7","subject":"added check to make sure that quark is open, has a document open, and has something selected","message":"added check to make sure that quark is open, has a document open, and has something selected\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6ebec23a85a43cdc734848c9e0b3651a2dc14874","subject":"Chrome 'open tab' reuse an empty tab when possible (#1165)","message":"Chrome 'open tab' reuse an empty tab when possible (#1165)\n\n* Reuse empty tab on open chrome apple script\r\n\r\n* Break find tab into function\r\n\r\n* Use property to store found\r\n\r\n* Fix minor issues that caused window to not get active\r\n","repos":"liamhu\/create-react-app,infernojs\/create-inferno-app,yosharepoint\/react-scripts-ts-sp,in2core\/create-react-app,0xaio\/create-react-app,mangomint\/create-react-app,DivineGod\/create-react-app,igetgames\/spectacle-create-react-app,Place1\/create-react-app-typescript,just-boris\/create-preact-app,d3ce1t\/create-react-app,prometheusresearch\/create-react-app,Timer\/create-react-app,facebookincubator\/create-react-app,Sonu-sj\/cardMatcher,Timer\/create-react-app,romaindso\/create-react-app,1Body\/prayer-app,jayphelps\/create-react-app,flybayer\/create-react-webextension,RobzDoom\/frame_trap,iamdoron\/create-react-app,ontruck\/create-react-app,scyankai\/create-react-app,tharakawj\/create-react-app,stockspiking\/create-react-app,jdcrensh\/create-react-app,dpoineau\/create-react-app,svrcekmichal\/react-scripts,d3ce1t\/create-react-app,infernojs\/create-inferno-app,TryKickoff\/create-kickoff-app,Psychwire\/create-react-app,gutenye\/create-react-app,Bogala\/create-react-app-awesome-ts,facebookincubator\/create-react-app,svrcekmichal\/react-scripts,andrewmaudsley\/create-react-app,liamhu\/create-react-app,1Body\/prayer-app,kst404\/e8e-react-scripts,jayphelps\/create-react-app,josephfinlayson\/create-react-app,andrewmaudsley\/create-react-app,sigmacomputing\/create-react-app,romaindso\/create-react-app,lolaent\/create-react-app,christiantinauer\/create-react-app,lolaent\/create-react-app,just-boris\/create-preact-app,kst404\/e8e-react-scripts,johnslay\/create-react-app,mangomint\/create-react-app,yosharepoint\/react-scripts-ts-sp,Bogala\/create-react-app-awesome-ts,stockspiking\/create-react-app,Sonu-sj\/cardMatcher,romaindso\/create-react-app,xiaohu-developer\/create-react-app,just-boris\/create-preact-app,IamJoseph\/create-react-app,jdcrensh\/create-react-app,timlogemann\/create-react-app,maletor\/create-react-app,mangomint\/create-react-app,sigmacomputing\/create-react-app,peopleticker\/create-react-app,scyankai\/create-react-app,Clearcover\/web-build,iamdoron\/create-react-app,Place1\/create-react-app-typescript,dpoineau\/create-react-app,igetgames\/spectacle-create-react-app,kst404\/e8e-react-scripts,jayphelps\/create-react-app,Timer\/create-react-app,1Body\/prayer-app,ConnectedHomes\/create-react-web-app,amido\/create-react-app,flybayer\/create-react-webextension,lolaent\/create-react-app,TryKickoff\/create-kickoff-app,Sonu-sj\/cardMatcher,andrewmaudsley\/create-react-app,lopezator\/create-react-app,christiantinauer\/create-react-app,viankakrisna\/create-react-app,TondaHack\/create-react-app,devex-web-frontend\/create-react-app-dx,TondaHack\/create-react-app,maletor\/create-react-app,GreenGremlin\/create-react-app,DivineGod\/create-react-app,johnslay\/create-react-app,picter\/create-react-app,HelpfulHuman\/helpful-react-scripts,ro-savage\/create-react-app,GreenGremlin\/create-react-app,jdcrensh\/create-react-app,Clearcover\/web-build,Place1\/create-react-app-typescript,Exocortex\/create-react-app,picter\/create-react-app,bttf\/create-react-app,maletor\/create-react-app,in2core\/create-react-app,gutenye\/create-react-app,brysgo\/create-react-app,Exocortex\/create-react-app,prometheusresearch\/create-react-app,lopezator\/create-react-app,christiantinauer\/create-react-app,scyankai\/create-react-app,xiaohu-developer\/create-react-app,d3ce1t\/create-react-app,ontruck\/create-react-app,picter\/create-react-app,appier\/create-react-app,viankakrisna\/create-react-app,Psychwire\/create-react-app,liamhu\/create-react-app,christiantinauer\/create-react-app,0xaio\/create-react-app,Exocortex\/create-react-app,prontotools\/create-react-app,facebookincubator\/create-react-app,HelpfulHuman\/helpful-react-scripts,bttf\/create-react-app,lopezator\/create-react-app,gutenye\/create-react-app,GreenGremlin\/create-react-app,RobzDoom\/frame_trap,amido\/create-react-app,jdcrensh\/create-react-app,cr101\/create-react-app,stockspiking\/create-react-app,sigmacomputing\/create-react-app,bttf\/create-react-app,dsopel94\/create-react-app,tharakawj\/create-react-app,IamJoseph\/create-react-app,dsopel94\/create-react-app,paweljedrzejczyk\/create-react-app,digitalorigin\/create-react-app,cr101\/create-react-app,timlogemann\/create-react-app,iamdoron\/create-react-app,devex-web-frontend\/create-react-app-dx,xiaohu-developer\/create-react-app,digitalorigin\/create-react-app,svrcekmichal\/react-scripts,ConnectedHomes\/create-react-web-app,HelpfulHuman\/helpful-react-scripts,mikechau\/create-react-app,d3ce1t\/create-react-app,brysgo\/create-react-app,g3r4n\/create-esri-react-app,prontotools\/create-react-app,powerreviews\/create-react-app,prometheusresearch\/create-react-app,paweljedrzejczyk\/create-react-app,Bogala\/create-react-app-awesome-ts,amido\/create-react-app,DivineGod\/create-react-app,CodingZeal\/create-react-app,viankakrisna\/create-react-app,ro-savage\/create-react-app,1Body\/prayer-app,ro-savage\/create-react-app,in2core\/create-react-app,johnslay\/create-react-app,peopleticker\/create-react-app,matart15\/create-react-app,appier\/create-react-app,mikechau\/create-react-app,mangomint\/create-react-app,matart15\/create-react-app,Bogala\/create-react-app-awesome-ts,IamJoseph\/create-react-app,timlogemann\/create-react-app,shrynx\/react-super-scripts,mikechau\/create-react-app,digitalorigin\/create-react-app,GreenGremlin\/create-react-app,brysgo\/create-react-app,cr101\/create-react-app,matart15\/create-react-app,josephfinlayson\/create-react-app,Timer\/create-react-app,shrynx\/react-super-scripts,devex-web-frontend\/create-react-app-dx,igetgames\/spectacle-create-react-app,infernojs\/create-inferno-app,josephfinlayson\/create-react-app,ConnectedHomes\/create-react-web-app,shrynx\/react-super-scripts,reedsa\/create-react-app,0xaio\/create-react-app,yosharepoint\/react-scripts-ts-sp,powerreviews\/create-react-app,TryKickoff\/create-kickoff-app,reedsa\/create-react-app,TondaHack\/create-react-app,Place1\/create-react-app-typescript,g3r4n\/create-esri-react-app,Psychwire\/create-react-app,ontruck\/create-react-app,paweljedrzejczyk\/create-react-app,dpoineau\/create-react-app,reedsa\/create-react-app,CodingZeal\/create-react-app,timlogemann\/create-react-app,flybayer\/create-react-webextension,RobzDoom\/frame_trap,g3r4n\/create-esri-react-app,CodingZeal\/create-react-app,peopleticker\/create-react-app,devex-web-frontend\/create-react-app-dx,powerreviews\/create-react-app,ConnectedHomes\/create-react-web-app,Clearcover\/web-build,tharakawj\/create-react-app,yosharepoint\/react-scripts-ts-sp,dsopel94\/create-react-app,appier\/create-react-app,prontotools\/create-react-app","old_file":"packages\/react-dev-utils\/openChrome.applescript","new_file":"packages\/react-dev-utils\/openChrome.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Psychwire\/create-react-app.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"983b4445ad620b6af3d8eb683c4a388355f8e366","subject":"languages\/littecode\/applescript\/tmp\/example.scpt","message":"languages\/littecode\/applescript\/tmp\/example.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/example.scpt","new_file":"languages\/littecode\/applescript\/tmp\/example.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"66aab217f39ccf591bf0258e2488834011f846f1","subject":"Create MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX.scpt","message":"Create MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX.scpt","repos":"macmule\/MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX","old_file":"MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX.scpt","new_file":"MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/macmule\/MapDrivesAndPrintersBasedOnADGroupMembershipOnOSX.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"edf4798be48b8f02115368214fed11a38baf9c12","subject":"updated Open in LS","message":"updated Open in LS\n","repos":"adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles","old_file":"applescripts\/Applications\/Google Chrome\/Open in LS.scpt","new_file":"applescripts\/Applications\/Google Chrome\/Open in LS.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adagios\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fbe6b35dc680028e7ce5b696f41380cc24a5f693","subject":"Update Script Step Specify Calc.applescript","message":"Update Script Step Specify Calc.applescript\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/Script Step Specify Calc.applescript","new_file":"library\/standalone\/Script Step Specify Calc.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f5b786efb169dd2d193da5da72a8ba9e6cb9efe2","subject":"style(fig): normalize whitespace","message":"style(fig): normalize whitespace\n\nNo mixed tabs\/spaces here (these were created by Apple's ScriptEditor\napp).\n","repos":"wincent\/wincent,wincent\/wincent,wincent\/wincent,wincent\/wincent,wincent\/wincent,wincent\/wincent,wincent\/wincent,wincent\/wincent","old_file":"aspects\/automator\/support\/Open in Terminal Vim.applescript","new_file":"aspects\/automator\/support\/Open in Terminal Vim.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/wincent\/wincent.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"2bbb660028b4cc35aafc4c00bd4ed8c495759533","subject":"Additional support for 10.14","message":"Additional support for 10.14\n\nUpdated Flush DNS cache and set SWUpdate server components to support Mojave","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7066614a24030a64c8242f31df01a0a0f28fa954","subject":"adding imessage notify script","message":"adding imessage notify script\n","repos":"clarkda\/build-ci-scripts,dustywusty\/build-ci-scripts","old_file":"iMessage.scpt","new_file":"iMessage.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/clarkda\/build-ci-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5d5d6eb0ec1d67fa1c42605b7d811f3e8b6175c1","subject":"OmniFocus follow link: add evernote links","message":"OmniFocus follow link: add evernote links\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Follow Link.applescript","new_file":"OmniFocus\/Follow Link.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fdc0c5ce4864dd1010258b8b401969019db3a12b","subject":"New mail notification for Entourage. Thanks to Cowboy - www.cowboyscripts.org This needs to be added as a rule for all messages. Read the script for more information on this.","message":"New mail notification for Entourage. Thanks to Cowboy - www.cowboyscripts.org\nThis needs to be added as a rule for all messages. Read the script for more information on this.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40472\n","repos":"incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Entourage.scpt","new_file":"Examples\/AppleScripts\/Entourage.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a2c09da0acd1e0519053b632395bcf9104b7c7af","subject":"Update location of reset script","message":"Update location of reset script\n\nInstead of trying to copy the reset script to the root of the drive, we\nsimply use the current location in the bash profile to run it.\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c3eec5e21475ff61a20526dff94ac5b4cf032f1a","subject":"escape url keyword","message":"escape url keyword\n","repos":"marcomasser\/launchbar-prenagha,mlinzner\/LaunchBar-Actions-Padraic,mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar,prenagha\/launchbar,marcomasser\/launchbar-prenagha,Joilence\/launchbar,prenagha\/launchbar","old_file":"Share Safari Link.lbaction\/Contents\/Scripts\/default.scpt","new_file":"Share Safari Link.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mlinzner\/LaunchBar-Actions-Padraic.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"57813cec7c640a5bfd0bb6c40c02fac80b402802","subject":"Mute Skype: Rewrote applescript","message":"Mute Skype: Rewrote applescript\n","repos":"lordlycastle\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions","old_file":"actions\/Mute Skype.lbaction\/Contents\/Scripts\/default.applescript","new_file":"actions\/Mute Skype.lbaction\/Contents\/Scripts\/default.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/hlissner\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cd545a24e20016aec48d36c000d2201a1f711612","subject":"Added the apple script","message":"Added the apple script\n","repos":"cynikl\/mac-scripts,cynikl\/mac-scripts","old_file":"Mail-archive\/archive.scpt","new_file":"Mail-archive\/archive.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/cynikl\/mac-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"14a72462bf725c3d6b83dbfb45986895c53422a2","subject":"moved copy of excel doc to merged folder to end of script. In case it fails, I want it to at least finish saving and logging first.","message":"moved copy of excel doc to merged folder to end of script. In case it fails, I want it to at least finish saving and logging first.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"06513791b65fa29f837c9f8feff813ad269d737e","subject":"Added script for iTunes.","message":"Added script for iTunes.\n","repos":"neonichu\/watched,neonichu\/watched","old_file":"iTunes_Log.scpt","new_file":"iTunes_Log.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/neonichu\/watched.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c8a0669c321843ee2bdcea906b5720977bbc46df","subject":"[bbedit] show warnings in alert","message":"[bbedit] show warnings in alert","repos":"stevenschobert\/dotfiles,stevenschobert\/dotfiles,stevenschobert\/dotfiles","old_file":".bbedit\/Attachment Scripts\/Document.documentDidSave.scpt","new_file":".bbedit\/Attachment Scripts\/Document.documentDidSave.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stevenschobert\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"39d17322cd9fdb1c69cef5d1b2b741560de8b56f","subject":"add loop to increment pdf output names in PDF Name badge script","message":"add loop to increment pdf output names in PDF Name badge script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"PDF name badge.applescript","new_file":"PDF name badge.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a7fdacab31038732baf40013b9888c79abcc2b36","subject":"whitespace changes","message":"whitespace changes\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"37c6c7dd46f904f0ee7a590148813442ddd12ebe","subject":"Save before committing!","message":"Save before committing!\n","repos":"CarlosCD\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,chashion\/growl,nagyistoce\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,timbck2\/growl,ylian\/growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,ylian\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,chashion\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,nkhorman\/archive-growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,xhruso00\/growl,chashion\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,nochkin\/growl,tectronics\/growl,nochkin\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,CarlosCD\/growl,chashion\/growl,chashion\/growl,nochkin\/growl,nochkin\/growl,CarlosCD\/growl,xhruso00\/growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,an0nym0u5\/growl,nkhorman\/archive-growl,timbck2\/growl,tectronics\/growl,an0nym0u5\/growl,tectronics\/growl,nagyistoce\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,ylian\/growl,nagyistoce\/growl,nagyistoce\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,xhruso00\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,SalrJupiter\/growl,timbck2\/growl,ylian\/growl,SalrJupiter\/growl,chashion\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,ylian\/growl","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a7c1d78257632d4250a33e56ed6887e90c1feedd","subject":"Restored script","message":"Restored script\n\nOops! Deleted during updater testing!","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/test_shellshock.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/test_shellshock.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1e66df05a1f1f997e14c7268df6a6a48c769d697","subject":"Same script as commit 1528.","message":"Same script as commit 1528.\n","repos":"xhruso00\/growl,ylian\/growl,chashion\/growl,xhruso00\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,CarlosCD\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,chashion\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,tectronics\/growl,nagyistoce\/growl,SalrJupiter\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,ylian\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,chashion\/growl,timbck2\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,nochkin\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,timbck2\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,timbck2\/growl,tectronics\/growl,Shalaco\/shalzers-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,an0nym0u5\/growl,ylian\/growl,Shalaco\/shalzers-growl,timbck2\/growl,xhruso00\/growl,nagyistoce\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,nochkin\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,morganestes\/morganestes-growl,ylian\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nochkin\/growl,chashion\/growl,CarlosCD\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,nkhorman\/archive-growl,xhruso00\/growl,CarlosCD\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,xhruso00\/growl,chashion\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl","old_file":"Scripts\/Email\/Entourage Advanced.scpt","new_file":"Scripts\/Email\/Entourage Advanced.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"467c3c315d45e366d5dd94c8432347f7643231a8","subject":"added dateToFileMakerTimestamp (and folder for date functions)","message":"added dateToFileMakerTimestamp (and folder for date functions)\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/date functions\/dateToFileMakerTimestamp.applescript","new_file":"library\/date functions\/dateToFileMakerTimestamp.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4fd4c12c1e05e7bd1830cb544c3ac5d83d0c21c1","subject":"Add support for documentWillSave","message":"Add support for documentWillSave\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"720bf9a60e242ab5c2d8ff05e35567a56bc599f4","subject":"Modifying the script to actually show the entourage icon","message":"Modifying the script to actually show the entourage icon\n","repos":"an0nym0u5\/growl,ylian\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,SalrJupiter\/growl,CarlosCD\/growl,ylian\/growl,xhruso00\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,ylian\/growl,ylian\/growl,chashion\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,timbck2\/growl,timbck2\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,ylian\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nochkin\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,CarlosCD\/growl,nochkin\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,nochkin\/growl,chashion\/growl,xhruso00\/growl,xhruso00\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,CarlosCD\/growl,nagyistoce\/growl,tectronics\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,tectronics\/growl,CarlosCD\/growl,chashion\/growl,CarlosCD\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,tectronics\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,timbck2\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,xhruso00\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nkhorman\/archive-growl,nagyistoce\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,chashion\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,nagyistoce\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl","old_file":"Examples\/AppleScripts\/Entourage.scpt","new_file":"Examples\/AppleScripts\/Entourage.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"aba78ab99c06d0b861d19875ee773806933d12cd","subject":"added fmGUI_ManageLayouts_Layout_CreateOrUpdate","message":"added fmGUI_ManageLayouts_Layout_CreateOrUpdate\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_file":"library\/fmGUI_ManageLayouts\/fmGUI_ManageLayouts_Layout_CreateOrUpdate.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d83f20ea30d99fcbd2e2208322b964bf39387486","subject":"renamed to deal with accidental capital letter in name","message":"renamed to deal with accidental capital letter in name\n","repos":"DanShockley\/FmClipTools","old_file":"Clipboard FileMAker Objects to Multi-Objects.applescript","new_file":"Clipboard FileMAker Objects to Multi-Objects.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/DanShockley\/FmClipTools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"dcfca871edc4dad58b3ac29c4309753173c05661","subject":"added listSubtract","message":"added listSubtract\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/listSubtract.applescript","new_file":"library\/text parsing\/listSubtract.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"debf57ef0751218cec836596ae86d35e0b767d9f","subject":"put chrome.applescript back in tools\/","message":"put chrome.applescript back in tools\/\n","repos":"AndrewGibson27\/react-scoreboard","old_file":"tools\/chrome.applescript","new_file":"tools\/chrome.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AndrewGibson27\/react-scoreboard.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"60826a643d5ef72fef342a33ccec78bcf4b6eb67","subject":"show song rating stars in the growl notification","message":"show song rating stars in the growl notification\n","repos":"jcs\/itrc","old_file":"iTRC Main.applescript","new_file":"iTRC Main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jcs\/itrc.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"891392b2f5c168d2bd2f54a2f71dcf923b4ec3a1","subject":"Added prefix to each file change with the letter denoting the change type (ex. M, A)","message":"Added prefix to each file change with the letter denoting the change type (ex. M, A)\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40298\n","repos":"PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"65f7c4e0ee5362cc9adab180a8e21830a8fc1454","subject":"added try block to prevent errors","message":"added try block to prevent errors","repos":"soundcloudlabs\/soundcloud-global-keys","old_file":"toggle_sc.scpt","new_file":"toggle_sc.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/soundcloudlabs\/soundcloud-global-keys.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a240e344f595a4e80b8701a2c948133145ebe2f1","subject":"Fixed icon positioning, but it's still not setting height, even with the new setting. If anyone else has luck with this, let me know, I give up on it.","message":"Fixed icon positioning, but it's still not setting height, even with the new setting. If anyone else has luck with this, let me know, I give up on it.\n","repos":"chashion\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,xhruso00\/growl,timbck2\/growl,CarlosCD\/growl,SalrJupiter\/growl,nochkin\/growl,morganestes\/morganestes-growl,tectronics\/growl,xhruso00\/growl,chashion\/growl,Shalaco\/shalzers-growl,tectronics\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,tectronics\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,nochkin\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,CarlosCD\/growl,nagyistoce\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,nochkin\/growl,nagyistoce\/growl,tectronics\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,chashion\/growl,timbck2\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,Shalaco\/shalzers-growl,ylian\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,nagyistoce\/growl,SalrJupiter\/growl,timbck2\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,timbck2\/growl,CarlosCD\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,nochkin\/growl,an0nym0u5\/growl,nagyistoce\/growl,chashion\/growl,ylian\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,SalrJupiter\/growl,an0nym0u5\/growl,ylian\/growl,morganestes\/morganestes-growl,nochkin\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"fe80be18e201ad010d3df966ee5956d560bbb18a","subject":"Updated for new GitHub layout","message":"Updated for new GitHub layout\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4542a0b7b3dc4cf55f8378e097e86f2b48d4a8e8","subject":"Applescript for Mail.app rule.","message":"Applescript for Mail.app rule.\n","repos":"ragnar-johannsson\/ring-my-bell","old_file":"scripts\/mail_rule.scpt","new_file":"scripts\/mail_rule.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ragnar-johannsson\/ring-my-bell.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"bb8db1c2c5cdeba93086d66349c275e56172dde9","subject":"Delete obsolete script","message":"Delete obsolete script\n","repos":"stig\/dot-files","old_file":"termcolours.scpt","new_file":"termcolours.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stig\/dot-files.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5f9ff6c8c4aab38c7bd5ff735252b2910153c1c5","subject":"Remove showResults for documentDidSave","message":"Remove showResults for documentDidSave\n\nRemove calling showResults method if output from documentDidSave\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b618d4030afee76476746f865be7c9e9925dbbef","subject":"languages\/littecode\/applescript\/tmp\/split_iterm.scpt","message":"languages\/littecode\/applescript\/tmp\/split_iterm.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/split_iterm.scpt","new_file":"languages\/littecode\/applescript\/tmp\/split_iterm.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"bc80c1a01e3dcc107a28fb43f719a21bc479a4b3","subject":"Adding account name support from adam(nanovivid)","message":"Adding account name support from adam(nanovivid)\n","repos":"doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,chashion\/growl,SalrJupiter\/growl,nagyistoce\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,timbck2\/growl,Shalaco\/shalzers-growl,timbck2\/growl,chashion\/growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,CarlosCD\/growl,ylian\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,tectronics\/growl,an0nym0u5\/growl,timbck2\/growl,tectronics\/growl,ylian\/growl,xhruso00\/growl,nochkin\/growl,CarlosCD\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,xhruso00\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,xhruso00\/growl,xhruso00\/growl,nagyistoce\/growl,SalrJupiter\/growl,chashion\/growl,an0nym0u5\/growl,CarlosCD\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,nagyistoce\/growl,ylian\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,chashion\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nkhorman\/archive-growl,tectronics\/growl,ylian\/growl,chashion\/growl,morganestes\/morganestes-growl,timbck2\/growl,CarlosCD\/growl,nochkin\/growl,ylian\/growl,SalrJupiter\/growl,an0nym0u5\/growl,nochkin\/growl,nochkin\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e2558d8817a4111f3ada4d383c0753ff72e718e0","subject":"Send to Active Adium chat","message":"Send to Active Adium chat\n","repos":"EvanLovely\/clipboard-actions,EvanLovely\/clipboard-actions,EvanLovely\/clipboard-actions","old_file":"Send Message to active Adium chat.applescript","new_file":"Send Message to active Adium chat.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/EvanLovely\/clipboard-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c83c877f09a4c7036f1333d6bb4cd25a40199a58","subject":"added parallels script","message":"added parallels script\n","repos":"danijeljames\/remparallels","old_file":"Remove Parallels.scpt","new_file":"Remove Parallels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/danijeljames\/remparallels.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c4211d3ab1c067db27e739c5d0083d96bfbb1b75","subject":"put placeholder file for future project: fmObjectDeployer","message":"put placeholder file for future project: fmObjectDeployer\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/utilities\/fmObjectDeployer.applescript","new_file":"library\/utilities\/fmObjectDeployer.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"77cc553e0b20e2fc248987887237e02b3aae86d1","subject":"Added plain-text applescript for easier reading online","message":"Added plain-text applescript for easier reading online\n","repos":"Deph0\/CSP-applescript","old_file":"playingMedia.applescript","new_file":"playingMedia.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Deph0\/CSP-applescript.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"503f017f66f848976427e9d1b2571b96eb6fa1ac","subject":"pass identifier to growlhelperapp","message":"pass identifier to growlhelperapp\n\nnow when skipping a bunch of tracks, multiple track notifications will coalesce instead of flooding the screen\n","repos":"jcs\/itrc","old_file":"iTRC Main.applescript","new_file":"iTRC Main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jcs\/itrc.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"51d702f2fa8ceb593381876d17c9c070a01f7bf4","subject":"Show results","message":"Show results\n\nCapture results and show them if they are returned from document scripts\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"50d3f98723bb661f23cc6385bda6331ee2c93d47","subject":"open spotlight search","message":"open spotlight search\n","repos":"epochblue\/annoy-a-tron,epochblue\/annoy-a-tron","old_file":"scripts\/spotlight.applescript","new_file":"scripts\/spotlight.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/epochblue\/annoy-a-tron.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"f2bc6a1db761275c89279d4a64e16cee5bc62203","subject":"Add new applescript example This one uses Growl to display new messages from the commits list Requires the \"Bubbles - Limit\" hidden Growl pref to be set to False","message":"Add new applescript example\nThis one uses Growl to display new messages from the commits list\nRequires the \"Bubbles - Limit\" hidden Growl pref to be set to False\n","repos":"timbck2\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,chashion\/growl,an0nym0u5\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nkhorman\/archive-growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,nochkin\/growl,chashion\/growl,CarlosCD\/growl,an0nym0u5\/growl,an0nym0u5\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,ylian\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,tectronics\/growl,morganestes\/morganestes-growl,nochkin\/growl,Shalaco\/shalzers-growl,nochkin\/growl,tectronics\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,tectronics\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,Shalaco\/shalzers-growl,timbck2\/growl,morganestes\/morganestes-growl,timbck2\/growl,SalrJupiter\/growl,CarlosCD\/growl,CarlosCD\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,nagyistoce\/growl,tectronics\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nochkin\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,timbck2\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,an0nym0u5\/growl,ylian\/growl,nkhorman\/archive-growl,xhruso00\/growl,nkhorman\/archive-growl,timbck2\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nochkin\/growl,xhruso00\/growl,ylian\/growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f3741c430fbcefe9f24e705c1a5c930dc0b5fb11","subject":"reminders-adjust-timezone.applescript","message":"reminders-adjust-timezone.applescript\n","repos":"gurdiga\/dotfiles,gurdiga\/dotfiles","old_file":"reminders-adjust-timezone.applescript","new_file":"reminders-adjust-timezone.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gurdiga\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cac589547956db735fa898f6180dbcc043f52013","subject":"changed quark layout to JPG in Gluon BC Creator script","message":"changed quark layout to JPG in Gluon BC Creator script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Gluon BC Creator Webimage.applescript","new_file":"Gluon BC Creator Webimage.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9be46688fdcc2dcad8f9a2cbc7e58e6196dd039f","subject":"Rate Song: Clean up applescript","message":"Rate Song: Clean up applescript\n","repos":"ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions","old_file":"actions\/Rate Current Song.lbaction\/Contents\/Scripts\/default.scpt","new_file":"actions\/Rate Current Song.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lordlycastle\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f8fe8c96e5c7a102b1e5037847972a3e69c822ce","subject":"Wikilink: Fix opening files in FoldingText","message":"Wikilink: Fix opening files in FoldingText\n\nFiles with extensions listed in ft_extensions in wikilink_search.rb will\nnow correctly open in FoldingText\n","repos":"jamiekowalski\/foldingtext-extra,jamiekowalski\/foldingtext-extra","old_file":"wikilink.ftplugin\/Open document with filter.scpt","new_file":"wikilink.ftplugin\/Open document with filter.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jamiekowalski\/foldingtext-extra.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2b8abf22a184b4bdadfe728af570eda11e4c7154","subject":"Adding applescripts","message":"Adding applescripts\n","repos":"SouthernBlackNerd\/dotfiles,SouthernBlackNerd\/dotfiles,SouthernBlackNerd\/dotfiles,SouthernBlackNerd\/dotfiles,SouthernBlackNerd\/dotfiles,SouthernBlackNerd\/dotfiles","old_file":"applescripts\/safari_cache_clean.scpt","new_file":"applescripts\/safari_cache_clean.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/SouthernBlackNerd\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b33ad12bcf49163b45f259094a52e7c207e0d6c1","subject":"Add AppleScript","message":"Add AppleScript\n","repos":"henrikhodne\/Classy,henrikhodne\/Classy","old_file":"launchSimulator.scpt","new_file":"launchSimulator.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/henrikhodne\/Classy.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a082b00fdc66ad3aba1ccc1889f8c182ac629d8d","subject":"added \/misc direcotry and removeExtraAppsFromDock handler","message":"added \/misc direcotry and removeExtraAppsFromDock handler\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/misc\/removeExtraAppsFromDock.applescript","new_file":"library\/misc\/removeExtraAppsFromDock.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"09ff8ddad7890a928ddba77ff50979f199824b45","subject":"Add Automator AppleScript for running simplicitey.py.","message":"Add Automator AppleScript for running simplicitey.py.\n","repos":"pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff,pdbartlett\/misc-stuff","old_file":"python\/pdblatex\/simplicitey.applescript","new_file":"python\/pdblatex\/simplicitey.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pdbartlett\/misc-stuff.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"7a6b4d45bc80b12c38467b8375914dadb866480e","subject":"JasonLeyba: Uncomment line from last commit.","message":"JasonLeyba: Uncomment line from last commit.\n\nr16479\n","repos":"p0deje\/selenium,aluedeke\/chromedriver,jabbrwcky\/selenium,Tom-Trumper\/selenium,sankha93\/selenium,MCGallaspy\/selenium,alexec\/selenium,tkurnosova\/selenium,slongwang\/selenium,knorrium\/selenium,uchida\/selenium,anshumanchatterji\/selenium,sag-enorman\/selenium,minhthuanit\/selenium,tkurnosova\/selenium,chrisblock\/selenium,blackboarddd\/selenium,lukeis\/selenium,xsyntrex\/selenium,aluedeke\/chromedriver,onedox\/selenium,uchida\/selenium,carlosroh\/selenium,sri85\/selenium,SevInf\/IEDriver,valfirst\/selenium,sankha93\/selenium,amar-sharma\/selenium,markodolancic\/selenium,stupidnetizen\/selenium,telefonicaid\/selenium,s2oBCN\/selenium,bmannix\/selenium,oddui\/selenium,anshumanchatterji\/selenium,bmannix\/selenium,HtmlUnit\/selenium,sri85\/selenium,Ardesco\/selenium,livioc\/selenium,rovner\/selenium,stupidnetizen\/selenium,sankha93\/selenium,dkentw\/selenium,rplevka\/selenium,gurayinan\/selenium,quoideneuf\/selenium,isaksky\/selenium,o-schneider\/selenium,jsakamoto\/selenium,gabrielsimas\/selenium,chrsmithdemos\/selenium,kalyanjvn1\/selenium,TheBlackTuxCorp\/selenium,dkentw\/selenium,alexec\/selenium,davehunt\/selenium,freynaud\/selenium,orange-tv-blagnac\/selenium,yukaReal\/selenium,davehunt\/selenium,blackboarddd\/selenium,arunsingh\/selenium,tarlabs\/selenium,houchj\/selenium,titusfortner\/selenium,orange-tv-blagnac\/selenium,p0deje\/selenium,joshuaduffy\/selenium,titusfortner\/selenium,doungni\/selenium,Tom-Trumper\/selenium,tkurnosova\/selenium,asashour\/selenium,SevInf\/IEDriver,rovner\/selenium,sebady\/selenium,temyers\/selenium,Dude-X\/selenium,gotcha\/selenium,o-schneider\/selenium,eric-stanley\/selenium,pulkitsinghal\/selenium,vinay-qa\/vinayit-android-server-apk,gemini-testing\/selenium,thanhpete\/selenium,gemini-testing\/selenium,AutomatedTester\/selenium,temyers\/selenium,clavery\/selenium,tarlabs\/selenium,DrMarcII\/selenium,denis-vilyuzhanin\/selenium-fastview,wambat\/selenium,gorlemik\/selenium,SouWilliams\/selenium,jabbrwcky\/selenium,lmtierney\/selenium,Sravyaksr\/selenium,denis-vilyuzhanin\/selenium-fastview,asashour\/selenium,eric-stanley\/selenium,krosenvold\/selenium,pulkitsinghal\/selenium,jerome-jacob\/selenium,TheBlackTuxCorp\/selenium,BlackSmith\/selenium,titusfortner\/selenium,SeleniumHQ\/selenium,petruc\/selenium,jsarenik\/jajomojo-selenium,stupidnetizen\/selenium,o-schneider\/selenium,blackboarddd\/selenium,thanhpete\/selenium,dkentw\/selenium,dkentw\/selenium,dcjohnson1989\/selenium,tbeadle\/selenium,yukaReal\/selenium,dandv\/selenium,freynaud\/selenium,gregerrag\/selenium,clavery\/selenium,gregerrag\/selenium,thanhpete\/selenium,dcjohnson1989\/selenium,uchida\/selenium,clavery\/selenium,joshmgrant\/selenium,krmahadevan\/selenium,krosenvold\/selenium,5hawnknight\/selenium,MeetMe\/selenium,carlosroh\/selenium,carsonmcdonald\/selenium,RamaraoDonta\/ramarao-clone,bartolkaruza\/selenium,anshumanchatterji\/selenium,blueyed\/selenium,minhthuanit\/selenium,SeleniumHQ\/selenium,MeetMe\/selenium,gorlemik\/selenium,blueyed\/selenium,markodolancic\/selenium,Sravyaksr\/selenium,clavery\/selenium,vinay-qa\/vinayit-android-server-apk,SouWilliams\/selenium,freynaud\/selenium,uchida\/selenium,xsyntrex\/selenium,uchida\/selenium,rovner\/selenium,DrMarcII\/selenium,mach6\/selenium,sri85\/selenium,SouWilliams\/selenium,dandv\/selenium,lrowe\/selenium,aluedeke\/chromedriver,jabbrwcky\/selenium,p0deje\/selenium,blackboarddd\/selenium,Jarob22\/selenium,5hawnknight\/selenium,lukeis\/selenium,tkurnosova\/selenium,SevInf\/IEDriver,joshbruning\/selenium,misttechnologies\/selenium,chrisblock\/selenium,knorrium\/selenium,Jarob22\/selenium,JosephCastro\/selenium,TikhomirovSergey\/selenium,sevaseva\/selenium,blueyed\/selenium,tkurnosova\/selenium,denis-vilyuzhanin\/selenium-fastview,vinay-qa\/vinayit-android-server-apk,actmd\/selenium,krmahadevan\/selenium,bmannix\/selenium,valfirst\/selenium,amar-sharma\/selenium,joshmgrant\/selenium,joshuaduffy\/selenium,oddui\/selenium,petruc\/selenium,gabrielsimas\/selenium,freynaud\/selenium,jerome-jacob\/selenium,mach6\/selenium,rovner\/selenium,JosephCastro\/selenium,lmtierney\/selenium,gorlemik\/selenium,lilredindy\/selenium,manuelpirez\/selenium,BlackSmith\/selenium,p0deje\/selenium,xsyntrex\/selenium,misttechnologies\/selenium,Ardesco\/selenium,krosenvold\/selenium,HtmlUnit\/selenium,gotcha\/selenium,sebady\/selenium,joshbruning\/selenium,krmahadevan\/selenium,rrussell39\/selenium,dkentw\/selenium,rovner\/selenium,lummyare\/lummyare-lummy,jknguyen\/josephknguyen-selenium,davehunt\/selenium,zenefits\/selenium,thanhpete\/selenium,asolntsev\/selenium,chrsmithdemos\/selenium,lukeis\/selenium,jerome-jacob\/selenium,jerome-jacob\/selenium,alb-i986\/selenium,oddui\/selenium,chrisblock\/selenium,houchj\/selenium,kalyanjvn1\/selenium,sebady\/selenium,asashour\/selenium,dcjohnson1989\/selenium,actmd\/selenium,Dude-X\/selenium,blueyed\/selenium,Herst\/selenium,jsarenik\/jajomojo-selenium,dibagga\/selenium,tarlabs\/selenium,oddui\/selenium,gotcha\/selenium,dkentw\/selenium,gemini-testing\/selenium,manuelpirez\/selenium,livioc\/selenium,bayandin\/selenium,arunsingh\/selenium,valfirst\/selenium,zenefits\/selenium,gabrielsimas\/selenium,s2oBCN\/selenium,Ardesco\/selenium,clavery\/selenium,gemini-testing\/selenium,gurayinan\/selenium,asashour\/selenium,kalyanjvn1\/selenium,telefonicaid\/selenium,amar-sharma\/selenium,asashour\/selenium,isaksky\/selenium,asolntsev\/selenium,alexec\/selenium,gurayinan\/selenium,aluedeke\/chromedriver,joshbruning\/selenium,gemini-testing\/selenium,stupidnetizen\/selenium,Ardesco\/selenium,onedox\/selenium,titusfortner\/selenium,actmd\/selenium,gemini-testing\/selenium,temyers\/selenium,telefonicaid\/selenium,telefonicaid\/selenium,MCGallaspy\/selenium,juangj\/selenium,tarlabs\/selenium,HtmlUnit\/selenium,denis-vilyuzhanin\/selenium-fastview,valfirst\/selenium,jknguyen\/josephknguyen-selenium,gabrielsimas\/selenium,twalpole\/selenium,denis-vilyuzhanin\/selenium-fastview,livioc\/selenium,wambat\/selenium,lummyare\/lummyare-lummy,lummyare\/lummyare-lummy,kalyanjvn1\/selenium,jabbrwcky\/selenium,dcjohnson1989\/selenium,bmannix\/selenium,blueyed\/selenium,joshmgrant\/selenium,zenefits\/selenium,lilredindy\/selenium,sag-enorman\/selenium,gregerrag\/selenium,Ardesco\/selenium,tarlabs\/selenium,dcjohnson1989\/selenium,temyers\/selenium,MeetMe\/selenium,Dude-X\/selenium,sag-enorman\/selenium,vveliev\/selenium,bayandin\/selenium,wambat\/selenium,freynaud\/selenium,AutomatedTester\/selenium,joshbruning\/selenium,houchj\/selenium,knorrium\/selenium,rrussell39\/selenium,lilredindy\/selenium,xsyntrex\/selenium,sankha93\/selenium,alexec\/selenium,valfirst\/selenium,yukaReal\/selenium,BlackSmith\/selenium,jknguyen\/josephknguyen-selenium,soundcloud\/selenium,joshuaduffy\/selenium,thanhpete\/selenium,HtmlUnit\/selenium,joshmgrant\/selenium,slongwang\/selenium,jsakamoto\/selenium,twalpole\/selenium,kalyanjvn1\/selenium,quoideneuf\/selenium,gorlemik\/selenium,dbo\/selenium,kalyanjvn1\/selenium,titusfortner\/selenium,vinay-qa\/vinayit-android-server-apk,slongwang\/selenium,i17c\/selenium,Appdynamics\/selenium,vveliev\/selenium,gemini-testing\/selenium,pulkitsinghal\/selenium,tbeadle\/selenium,twalpole\/selenium,sebady\/selenium,krosenvold\/selenium,dandv\/selenium,TikhomirovSergey\/selenium,davehunt\/selenium,TikhomirovSergey\/selenium,p0deje\/selenium,GorK-ChO\/selenium,chrisblock\/selenium,JosephCastro\/selenium,o-schneider\/selenium,bayandin\/selenium,Dude-X\/selenium,Jarob22\/selenium,bayandin\/selenium,5hawnknight\/selenium,dcjohnson1989\/selenium,customcommander\/selenium,arunsingh\/selenium,orange-tv-blagnac\/selenium,knorrium\/selenium,Jarob22\/selenium,AutomatedTester\/selenium,rrussell39\/selenium,TikhomirovSergey\/selenium,Jarob22\/selenium,tbeadle\/selenium,gregerrag\/selenium,aluedeke\/chromedriver,anshumanchatterji\/selenium,AutomatedTester\/selenium,sebady\/selenium,gotcha\/selenium,BlackSmith\/selenium,sri85\/selenium,soundcloud\/selenium,rrussell39\/selenium,lummyare\/lummyare-lummy,thanhpete\/selenium,lummyare\/lummyare-lummy,mestihudson\/selenium,sri85\/selenium,minhthuanit\/selenium,vinay-qa\/vinayit-android-server-apk,soundcloud\/selenium,onedox\/selenium,Tom-Trumper\/selenium,gurayinan\/selenium,sankha93\/selenium,mestihudson\/selenium,skurochkin\/selenium,s2oBCN\/selenium,lukeis\/selenium,isaksky\/selenium,jsarenik\/jajomojo-selenium,Dude-X\/selenium,aluedeke\/chromedriver,orange-tv-blagnac\/selenium,GorK-ChO\/selenium,chrsmithdemos\/selenium,rplevka\/selenium,gabrielsimas\/selenium,valfirst\/selenium,jerome-jacob\/selenium,jerome-jacob\/selenium,lmtierney\/selenium,minhthuanit\/selenium,p0deje\/selenium,davehunt\/selenium,bmannix\/selenium,livioc\/selenium,joshbruning\/selenium,krosenvold\/selenium,gotcha\/selenium,SeleniumHQ\/selenium,mojwang\/selenium,asashour\/selenium,joshmgrant\/selenium,MeetMe\/selenium,MCGallaspy\/selenium,bayandin\/selenium,soundcloud\/selenium,isaksky\/selenium,s2oBCN\/selenium,lukeis\/selenium,JosephCastro\/selenium,misttechnologies\/selenium,tbeadle\/selenium,gregerrag\/selenium,bartolkaruza\/selenium,isaksky\/selenium,skurochkin\/selenium,onedox\/selenium,compstak\/selenium,rovner\/selenium,anshumanchatterji\/selenium,jknguyen\/josephknguyen-selenium,clavery\/selenium,davehunt\/selenium,SouWilliams\/selenium,aluedeke\/chromedriver,xsyntrex\/selenium,mestihudson\/selenium,temyers\/selenium,mach6\/selenium,quoideneuf\/selenium,lummyare\/lummyare-test,knorrium\/selenium,5hawnknight\/selenium,Tom-Trumper\/selenium,xmhubj\/selenium,sevaseva\/selenium,RamaraoDonta\/ramarao-clone,wambat\/selenium,doungni\/selenium,jsakamoto\/selenium,bayandin\/selenium,carsonmcdonald\/selenium,Jarob22\/selenium,mach6\/selenium,sankha93\/selenium,o-schneider\/selenium,carsonmcdonald\/selenium,lrowe\/selenium,krmahadevan\/selenium,dandv\/selenium,tkurnosova\/selenium,rovner\/selenium,TheBlackTuxCorp\/selenium,sankha93\/selenium,AutomatedTester\/selenium,krmahadevan\/selenium,lummyare\/lummyare-lummy,yukaReal\/selenium,alb-i986\/selenium,anshumanchatterji\/selenium,Dude-X\/selenium,alb-i986\/selenium,jerome-jacob\/selenium,vveliev\/selenium,jknguyen\/josephknguyen-selenium,twalpole\/selenium,quoideneuf\/selenium,jknguyen\/josephknguyen-selenium,JosephCastro\/selenium,jsakamoto\/selenium,tkurnosova\/selenium,i17c\/selenium,amikey\/selenium,carlosroh\/selenium,s2oBCN\/selenium,pulkitsinghal\/selenium,gemini-testing\/selenium,Tom-Trumper\/selenium,gotcha\/selenium,minhthuanit\/selenium,joshuaduffy\/selenium,juangj\/selenium,tarlabs\/selenium,oddui\/selenium,customcommander\/selenium,s2oBCN\/selenium,houchj\/selenium,5hawnknight\/selenium,amikey\/selenium,Herst\/selenium,stupidnetizen\/selenium,pulkitsinghal\/selenium,dibagga\/selenium,oddui\/selenium,juangj\/selenium,GorK-ChO\/selenium,juangj\/selenium,houchj\/selenium,Herst\/selenium,DrMarcII\/selenium,asolntsev\/selenium,DrMarcII\/selenium,SouWilliams\/selenium,zenefits\/selenium,pulkitsinghal\/selenium,carsonmcdonald\/selenium,dimacus\/selenium,twalpole\/selenium,Ardesco\/selenium,chrisblock\/selenium,jsakamoto\/selenium,petruc\/selenium,lukeis\/selenium,skurochkin\/selenium,Jarob22\/selenium,livioc\/selenium,oddui\/selenium,Herst\/selenium,carlosroh\/selenium,manuelpirez\/selenium,soundcloud\/selenium,RamaraoDonta\/ramarao-clone,rplevka\/selenium,xmhubj\/selenium,JosephCastro\/selenium,quoideneuf\/selenium,SevInf\/IEDriver,HtmlUnit\/selenium,o-schneider\/selenium,lrowe\/selenium,jabbrwcky\/selenium,twalpole\/selenium,houchj\/selenium,i17c\/selenium,bartolkaruza\/selenium,sevaseva\/selenium,joshmgrant\/selenium,gurayinan\/selenium,arunsingh\/selenium,rplevka\/selenium,bartolkaruza\/selenium,meksh\/selenium,Appdynamics\/selenium,sebady\/selenium,xmhubj\/selenium,eric-stanley\/selenium,amikey\/selenium,mojwang\/selenium,petruc\/selenium,zenefits\/selenium,orange-tv-blagnac\/selenium,blackboarddd\/selenium,chrisblock\/selenium,juangj\/selenium,TheBlackTuxCorp\/selenium,Appdynamics\/selenium,lummyare\/lummyare-test,amar-sharma\/selenium,skurochkin\/selenium,customcommander\/selenium,lilredindy\/selenium,jsakamoto\/selenium,valfirst\/selenium,blueyed\/selenium,doungni\/selenium,krosenvold\/selenium,stupidnetizen\/selenium,joshbruning\/selenium,lummyare\/lummyare-test,lummyare\/lummyare-lummy,mojwang\/selenium,vveliev\/selenium,joshuaduffy\/selenium,tbeadle\/selenium,RamaraoDonta\/ramarao-clone,JosephCastro\/selenium,DrMarcII\/selenium,compstak\/selenium,misttechnologies\/selenium,telefonicaid\/selenium,bmannix\/selenium,mestihudson\/selenium,tarlabs\/selenium,o-schneider\/selenium,tbeadle\/selenium,carsonmcdonald\/selenium,krosenvold\/selenium,amikey\/selenium,mojwang\/selenium,meksh\/selenium,lilredindy\/selenium,sebady\/selenium,dimacus\/selenium,gabrielsimas\/selenium,vinay-qa\/vinayit-android-server-apk,BlackSmith\/selenium,p0deje\/selenium,mestihudson\/selenium,misttechnologies\/selenium,markodolancic\/selenium,uchida\/selenium,manuelpirez\/selenium,wambat\/selenium,Sravyaksr\/selenium,blueyed\/selenium,pulkitsinghal\/selenium,sri85\/selenium,rplevka\/selenium,freynaud\/selenium,joshbruning\/selenium,jknguyen\/josephknguyen-selenium,mestihudson\/selenium,dibagga\/selenium,arunsingh\/selenium,GorK-ChO\/selenium,titusfortner\/selenium,blackboarddd\/selenium,titusfortner\/selenium,alexec\/selenium,bartolkaruza\/selenium,houchj\/selenium,sag-enorman\/selenium,dbo\/selenium,bmannix\/selenium,arunsingh\/selenium,dimacus\/selenium,JosephCastro\/selenium,asolntsev\/selenium,thanhpete\/selenium,dandv\/selenium,5hawnknight\/selenium,rovner\/selenium,MCGallaspy\/selenium,valfirst\/selenium,gotcha\/selenium,eric-stanley\/selenium,krmahadevan\/selenium,knorrium\/selenium,customcommander\/selenium,i17c\/selenium,dibagga\/selenium,slongwang\/selenium,misttechnologies\/selenium,twalpole\/selenium,orange-tv-blagnac\/selenium,Sravyaksr\/selenium,dcjohnson1989\/selenium,MeetMe\/selenium,carsonmcdonald\/selenium,titusfortner\/selenium,onedox\/selenium,dbo\/selenium,Appdynamics\/selenium,doungni\/selenium,petruc\/selenium,meksh\/selenium,misttechnologies\/selenium,SevInf\/IEDriver,orange-tv-blagnac\/selenium,AutomatedTester\/selenium,TikhomirovSergey\/selenium,kalyanjvn1\/selenium,skurochkin\/selenium,sankha93\/selenium,TikhomirovSergey\/selenium,rrussell39\/selenium,temyers\/selenium,kalyanjvn1\/selenium,carsonmcdonald\/selenium,jsarenik\/jajomojo-selenium,uchida\/selenium,lmtierney\/selenium,pulkitsinghal\/selenium,gotcha\/selenium,dibagga\/selenium,lrowe\/selenium,amar-sharma\/selenium,arunsingh\/selenium,xsyntrex\/selenium,Herst\/selenium,5hawnknight\/selenium,alb-i986\/selenium,skurochkin\/selenium,zenefits\/selenium,DrMarcII\/selenium,skurochkin\/selenium,dandv\/selenium,amikey\/selenium,alb-i986\/selenium,joshbruning\/selenium,manuelpirez\/selenium,GorK-ChO\/selenium,freynaud\/selenium,petruc\/selenium,SouWilliams\/selenium,carsonmcdonald\/selenium,tkurnosova\/selenium,soundcloud\/selenium,markodolancic\/selenium,Tom-Trumper\/selenium,Appdynamics\/selenium,markodolancic\/selenium,amikey\/selenium,denis-vilyuzhanin\/selenium-fastview,RamaraoDonta\/ramarao-clone,amar-sharma\/selenium,dimacus\/selenium,onedox\/selenium,Herst\/selenium,mojwang\/selenium,compstak\/selenium,amikey\/selenium,bartolkaruza\/selenium,o-schneider\/selenium,wambat\/selenium,SouWilliams\/selenium,krosenvold\/selenium,asolntsev\/selenium,alb-i986\/selenium,Sravyaksr\/selenium,actmd\/selenium,lummyare\/lummyare-test,dbo\/selenium,gabrielsimas\/selenium,juangj\/selenium,temyers\/selenium,valfirst\/selenium,sevaseva\/selenium,valfirst\/selenium,dimacus\/selenium,SevInf\/IEDriver,mach6\/selenium,lmtierney\/selenium,HtmlUnit\/selenium,p0deje\/selenium,lrowe\/selenium,lummyare\/lummyare-lummy,dbo\/selenium,vinay-qa\/vinayit-android-server-apk,eric-stanley\/selenium,HtmlUnit\/selenium,xsyntrex\/selenium,asolntsev\/selenium,vinay-qa\/vinayit-android-server-apk,lrowe\/selenium,jsarenik\/jajomojo-selenium,mach6\/selenium,doungni\/selenium,dkentw\/selenium,lmtierney\/selenium,isaksky\/selenium,misttechnologies\/selenium,lummyare\/lummyare-test,SeleniumHQ\/selenium,wambat\/selenium,lilredindy\/selenium,titusfortner\/selenium,krmahadevan\/selenium,compstak\/selenium,sri85\/selenium,jabbrwcky\/selenium,customcommander\/selenium,pulkitsinghal\/selenium,carlosroh\/selenium,TheBlackTuxCorp\/selenium,sevaseva\/selenium,slongwang\/selenium,yukaReal\/selenium,mojwang\/selenium,Tom-Trumper\/selenium,markodolancic\/selenium,i17c\/selenium,Sravyaksr\/selenium,dandv\/selenium,lmtierney\/selenium,chrsmithdemos\/selenium,bartolkaruza\/selenium,i17c\/selenium,doungni\/selenium,titusfortner\/selenium,dimacus\/selenium,gurayinan\/selenium,gregerrag\/selenium,jsakamoto\/selenium,minhthuanit\/selenium,actmd\/selenium,alexec\/selenium,eric-stanley\/selenium,jsakamoto\/selenium,SevInf\/IEDriver,joshuaduffy\/selenium,jsarenik\/jajomojo-selenium,xsyntrex\/selenium,Herst\/selenium,isaksky\/selenium,zenefits\/selenium,MCGallaspy\/selenium,joshuaduffy\/selenium,SevInf\/IEDriver,sri85\/selenium,alexec\/selenium,soundcloud\/selenium,twalpole\/selenium,jsarenik\/jajomojo-selenium,gemini-testing\/selenium,clavery\/selenium,telefonicaid\/selenium,customcommander\/selenium,eric-stanley\/selenium,minhthuanit\/selenium,p0deje\/selenium,petruc\/selenium,dcjohnson1989\/selenium,dimacus\/selenium,sebady\/selenium,petruc\/selenium,aluedeke\/chromedriver,actmd\/selenium,SeleniumHQ\/selenium,misttechnologies\/selenium,Tom-Trumper\/selenium,joshmgrant\/selenium,RamaraoDonta\/ramarao-clone,davehunt\/selenium,gorlemik\/selenium,dimacus\/selenium,livioc\/selenium,tarlabs\/selenium,Dude-X\/selenium,alexec\/selenium,sebady\/selenium,tbeadle\/selenium,MCGallaspy\/selenium,Sravyaksr\/selenium,lrowe\/selenium,temyers\/selenium,carlosroh\/selenium,dbo\/selenium,chrisblock\/selenium,telefonicaid\/selenium,mestihudson\/selenium,slongwang\/selenium,meksh\/selenium,livioc\/selenium,lmtierney\/selenium,petruc\/selenium,lrowe\/selenium,asolntsev\/selenium,Herst\/selenium,TikhomirovSergey\/selenium,stupidnetizen\/selenium,eric-stanley\/selenium,slongwang\/selenium,lukeis\/selenium,dibagga\/selenium,knorrium\/selenium,AutomatedTester\/selenium,GorK-ChO\/selenium,dkentw\/selenium,yukaReal\/selenium,i17c\/selenium,alexec\/selenium,blueyed\/selenium,rplevka\/selenium,amar-sharma\/selenium,sevaseva\/selenium,gabrielsimas\/selenium,SeleniumHQ\/selenium,SeleniumHQ\/selenium,GorK-ChO\/selenium,TikhomirovSergey\/selenium,xmhubj\/selenium,mojwang\/selenium,knorrium\/selenium,s2oBCN\/selenium,xmhubj\/selenium,oddui\/selenium,dimacus\/selenium,manuelpirez\/selenium,customcommander\/selenium,s2oBCN\/selenium,lmtierney\/selenium,gabrielsimas\/selenium,mach6\/selenium,davehunt\/selenium,tarlabs\/selenium,AutomatedTester\/selenium,gregerrag\/selenium,joshmgrant\/selenium,gregerrag\/selenium,vveliev\/selenium,jsarenik\/jajomojo-selenium,5hawnknight\/selenium,blackboarddd\/selenium,blackboarddd\/selenium,stupidnetizen\/selenium,slongwang\/selenium,asolntsev\/selenium,rrussell39\/selenium,meksh\/selenium,dbo\/selenium,manuelpirez\/selenium,manuelpirez\/selenium,chrsmithdemos\/selenium,lummyare\/lummyare-test,wambat\/selenium,sevaseva\/selenium,HtmlUnit\/selenium,xmhubj\/selenium,GorK-ChO\/selenium,xmhubj\/selenium,TikhomirovSergey\/selenium,SeleniumHQ\/selenium,actmd\/selenium,eric-stanley\/selenium,Appdynamics\/selenium,Jarob22\/selenium,lummyare\/lummyare-test,yukaReal\/selenium,dkentw\/selenium,blackboarddd\/selenium,aluedeke\/chromedriver,uchida\/selenium,actmd\/selenium,sankha93\/selenium,asashour\/selenium,quoideneuf\/selenium,dibagga\/selenium,joshuaduffy\/selenium,onedox\/selenium,thanhpete\/selenium,xsyntrex\/selenium,arunsingh\/selenium,telefonicaid\/selenium,Sravyaksr\/selenium,rrussell39\/selenium,orange-tv-blagnac\/selenium,carlosroh\/selenium,onedox\/selenium,zenefits\/selenium,skurochkin\/selenium,gurayinan\/selenium,lukeis\/selenium,tkurnosova\/selenium,vveliev\/selenium,rplevka\/selenium,JosephCastro\/selenium,lilredindy\/selenium,minhthuanit\/selenium,alb-i986\/selenium,jsakamoto\/selenium,amikey\/selenium,chrsmithdemos\/selenium,minhthuanit\/selenium,telefonicaid\/selenium,alb-i986\/selenium,DrMarcII\/selenium,mojwang\/selenium,gorlemik\/selenium,MeetMe\/selenium,gotcha\/selenium,compstak\/selenium,freynaud\/selenium,slongwang\/selenium,gorlemik\/selenium,juangj\/selenium,BlackSmith\/selenium,meksh\/selenium,dbo\/selenium,isaksky\/selenium,MeetMe\/selenium,markodolancic\/selenium,lummyare\/lummyare-test,RamaraoDonta\/ramarao-clone,gorlemik\/selenium,rplevka\/selenium,Ardesco\/selenium,lilredindy\/selenium,valfirst\/selenium,dibagga\/selenium,MCGallaspy\/selenium,rrussell39\/selenium,markodolancic\/selenium,twalpole\/selenium,dandv\/selenium,rplevka\/selenium,Jarob22\/selenium,vveliev\/selenium,manuelpirez\/selenium,sag-enorman\/selenium,meksh\/selenium,asashour\/selenium,lummyare\/lummyare-test,gurayinan\/selenium,livioc\/selenium,quoideneuf\/selenium,uchida\/selenium,TheBlackTuxCorp\/selenium,joshmgrant\/selenium,s2oBCN\/selenium,chrisblock\/selenium,asolntsev\/selenium,jabbrwcky\/selenium,meksh\/selenium,amar-sharma\/selenium,arunsingh\/selenium,TheBlackTuxCorp\/selenium,tbeadle\/selenium,isaksky\/selenium,wambat\/selenium,alb-i986\/selenium,compstak\/selenium,customcommander\/selenium,krmahadevan\/selenium,temyers\/selenium,Herst\/selenium,bayandin\/selenium,Ardesco\/selenium,rrussell39\/selenium,bayandin\/selenium,anshumanchatterji\/selenium,meksh\/selenium,carlosroh\/selenium,clavery\/selenium,bayandin\/selenium,jknguyen\/josephknguyen-selenium,SeleniumHQ\/selenium,MCGallaspy\/selenium,BlackSmith\/selenium,carlosroh\/selenium,kalyanjvn1\/selenium,sevaseva\/selenium,Ardesco\/selenium,AutomatedTester\/selenium,vinay-qa\/vinayit-android-server-apk,denis-vilyuzhanin\/selenium-fastview,sag-enorman\/selenium,lummyare\/lummyare-lummy,bartolkaruza\/selenium,o-schneider\/selenium,mestihudson\/selenium,mestihudson\/selenium,BlackSmith\/selenium,orange-tv-blagnac\/selenium,stupidnetizen\/selenium,doungni\/selenium,thanhpete\/selenium,dbo\/selenium,quoideneuf\/selenium,houchj\/selenium,Appdynamics\/selenium,dibagga\/selenium,sevaseva\/selenium,TheBlackTuxCorp\/selenium,dandv\/selenium,titusfortner\/selenium,livioc\/selenium,Dude-X\/selenium,MeetMe\/selenium,soundcloud\/selenium,quoideneuf\/selenium,chrsmithdemos\/selenium,GorK-ChO\/selenium,HtmlUnit\/selenium,Sravyaksr\/selenium,jabbrwcky\/selenium,denis-vilyuzhanin\/selenium-fastview,compstak\/selenium,krosenvold\/selenium,DrMarcII\/selenium,lilredindy\/selenium,i17c\/selenium,Appdynamics\/selenium,gurayinan\/selenium,xmhubj\/selenium,oddui\/selenium,HtmlUnit\/selenium,chrsmithdemos\/selenium,joshbruning\/selenium,gregerrag\/selenium,i17c\/selenium,tbeadle\/selenium,rovner\/selenium,sag-enorman\/selenium,SeleniumHQ\/selenium,krmahadevan\/selenium,amar-sharma\/selenium,5hawnknight\/selenium,mach6\/selenium,asashour\/selenium,markodolancic\/selenium,juangj\/selenium,houchj\/selenium,bmannix\/selenium,Tom-Trumper\/selenium,mojwang\/selenium,amikey\/selenium,joshmgrant\/selenium,jerome-jacob\/selenium,SeleniumHQ\/selenium,vveliev\/selenium,anshumanchatterji\/selenium,SouWilliams\/selenium,RamaraoDonta\/ramarao-clone,actmd\/selenium,vveliev\/selenium,juangj\/selenium,dcjohnson1989\/selenium,denis-vilyuzhanin\/selenium-fastview,jknguyen\/josephknguyen-selenium,MeetMe\/selenium,bmannix\/selenium,TheBlackTuxCorp\/selenium,compstak\/selenium,sag-enorman\/selenium,freynaud\/selenium,compstak\/selenium,chrisblock\/selenium,lrowe\/selenium,joshuaduffy\/selenium,lukeis\/selenium,chrsmithdemos\/selenium,carsonmcdonald\/selenium,joshmgrant\/selenium,gorlemik\/selenium,doungni\/selenium,SouWilliams\/selenium,jerome-jacob\/selenium,xmhubj\/selenium,knorrium\/selenium,clavery\/selenium,mach6\/selenium,doungni\/selenium,DrMarcII\/selenium,SevInf\/IEDriver,soundcloud\/selenium,customcommander\/selenium,zenefits\/selenium,RamaraoDonta\/ramarao-clone,jabbrwcky\/selenium,skurochkin\/selenium,onedox\/selenium,anshumanchatterji\/selenium,sri85\/selenium,jsarenik\/jajomojo-selenium,yukaReal\/selenium,bartolkaruza\/selenium,BlackSmith\/selenium,Dude-X\/selenium,davehunt\/selenium,yukaReal\/selenium,Appdynamics\/selenium,MCGallaspy\/selenium,blueyed\/selenium,sag-enorman\/selenium","old_file":"javascript\/safari-driver\/reinstall.scpt","new_file":"javascript\/safari-driver\/reinstall.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/joshuaduffy\/selenium.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"3e64b6059b0bc88f4d6e089f204a1633ea83ed94","subject":"finish file move","message":"finish file move\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Field_Edit.applescript","new_file":"library\/fmGUI_ManageDatabase\/fmGUI_ManageDb_Field_Edit.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d066a8831f2b6457513fb698e6ee61c9ae0e4f46","subject":"Fix Commits script to use the *correct* application icon","message":"Fix Commits script to use the *correct* application icon\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40688\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"6aa413a0ebc1534a7aa72a962a042aac75813c55","subject":"Added OS X stop script for iTunes\/VLC.","message":"Added OS X stop script for iTunes\/VLC.\n","repos":"jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles,jaymcgavren\/dotfiles","old_file":"bin\/osx\/stop.scpt","new_file":"bin\/osx\/stop.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jaymcgavren\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7eed69312ce0b619f1eccc89c1565123f8608110","subject":"Fixed deprecated property size","message":"Fixed deprecated property size\n","repos":"shaunstanislaus\/termtile,apaszke\/termtile,josecolella\/termtile,Ribeiro\/termtile,gibsjose\/termtile,marhar\/termtile,catfist\/termtile,ezig\/termtile,jskulski\/termtile,gaurav1981\/termtile,kevinSuttle\/termtile,alessandrostone\/termtile,nordineb\/termtile,sun2rise\/termtile","old_file":"src\/resize.applescript","new_file":"src\/resize.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gibsjose\/termtile.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2008611f21d8c0d9111876da2c34583003b19e97","subject":"added copy to for 4over functionality to Generic Printfile scrip","message":"added copy to for 4over functionality to Generic Printfile scrip\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Generic Printfile from Selection.applescript","new_file":"Generic Printfile from Selection.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"783b98d194e45913ed9d7ce3789c6372f867a064","subject":"Create urlOfEveryTabSafari.scpt","message":"Create urlOfEveryTabSafari.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"urlOfEveryTabSafari.scpt","new_file":"urlOfEveryTabSafari.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"c892dda216bdc962a94c3b3223ff7800aca35db8","subject":"Export pages now prompts for the location of the exported file","message":"Export pages now prompts for the location of the exported file\n","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_file":"io.dimitris.scriptbar\/scripts\/feedback\/Export Pages.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kolovos\/scriptbar.git\/': The requested URL returned error: 403\n","license":"epl-1.0","lang":"AppleScript"} {"commit":"7204872950fae62a8ceeeb108533347b7cbb195d","subject":"Added a new AppleScript - getTodaysiCalEvents (this time without changing the xCode project..)","message":"Added a new AppleScript - getTodaysiCalEvents (this time without changing the xCode project..)\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401328\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"df267dcd8022b1b347b7f63c2a652e165be968c8","subject":"languages\/littecode\/applescript\/tmp\/test_3.scpt","message":"languages\/littecode\/applescript\/tmp\/test_3.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/test_3.scpt","new_file":"languages\/littecode\/applescript\/tmp\/test_3.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"593c478f47986d3cf34a913a11caa93488469c78","subject":"Create alwaysListening.applescript","message":"Create alwaysListening.applescript","repos":"gskielian\/Jarvis","old_file":"alwaysListening.applescript","new_file":"alwaysListening.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gskielian\/Jarvis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e29d74052d66649c68dffd3f271c34d4c162f12c","subject":"Add Applescript to toggle KDAB accounts.","message":"Add Applescript to toggle KDAB accounts.\n","repos":"mikemcquaid\/scripts,mikemcquaid\/scripts","old_file":"kdab-toggle.applescript","new_file":"kdab-toggle.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mikemcquaid\/scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"13d0342df442b7ee91991a0bfec84ec0a6b4c0e4","subject":"Delete unused script","message":"Delete unused script\n","repos":"hlissner\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions","old_file":"Send to Hastebin.lbaction\/Contents\/Scripts\/default.scpt","new_file":"Send to Hastebin.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lordlycastle\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"92fd4e2fdc92f5a61f58b9cdc444c88293a91018","subject":"updated to latest SoundCloud token and API, clenaup","message":"updated to latest SoundCloud token and API, clenaup","repos":"soundcloudlabs\/soundcloud-global-keys","old_file":"toggle_sc.scpt","new_file":"toggle_sc.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/soundcloudlabs\/soundcloud-global-keys.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a0c29bee64fb6889df833231094f27f304a38cb2","subject":"added an AppleScript to batch compile all of the Mac externals at once","message":"added an AppleScript to batch compile all of the Mac externals at once\n\n\ngit-svn-id: b18dba2047b9fb1ea23d86b96c26263e9a58d38f@309 464221e2-0a0f-0410-983b-f8d57d210c17\n","repos":"eriser\/JamomaCore,jamoma\/JamomaCore,jamoma\/JamomaCore,jamoma\/JamomaCore,eriser\/JamomaCore,eriser\/JamomaCore,jamoma\/JamomaCore,jamoma\/JamomaCore,jamoma\/JamomaCore,eriser\/JamomaCore,eriser\/JamomaCore,jamoma\/JamomaCore,eriser\/JamomaCore,eriser\/JamomaCore,eriser\/JamomaCore","old_file":"Jamoma\/library\/externals\/Batch_Compile_Mac.scpt","new_file":"Jamoma\/library\/externals\/Batch_Compile_Mac.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jamoma\/JamomaCore.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c0805d309e56783a6562b22cd879387209853157","subject":"Add quit-confirmation-for-safari.scpt","message":"Add quit-confirmation-for-safari.scpt\n\nPops up a confirmation dialog when quitting Safari.\n","repos":"stevenberg\/dotfiles,stevenberg\/dotfiles,stevenberg\/dotfiles","old_file":"tag-mac\/scripts\/quit-confirmation-for-safari.scpt","new_file":"tag-mac\/scripts\/quit-confirmation-for-safari.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stevenberg\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"035964f1a625fd36a1232c409500e3dc8a555b75","subject":"Added system version check to uninstaller script to enabled localized strings on 10.4 or later","message":"Added system version check to uninstaller script to enabled localized strings on 10.4 or later\n","repos":"tectronics\/growl,nkhorman\/archive-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,xhruso00\/growl,chashion\/growl,SalrJupiter\/growl,CarlosCD\/growl,xhruso00\/growl,nkhorman\/archive-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,nochkin\/growl,chashion\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,CarlosCD\/growl,chashion\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nkhorman\/archive-growl,tectronics\/growl,nochkin\/growl,nagyistoce\/growl,timbck2\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,tectronics\/growl,morganestes\/morganestes-growl,chashion\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,chashion\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,an0nym0u5\/growl,nagyistoce\/growl,ylian\/growl,ylian\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,xhruso00\/growl,nochkin\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,SalrJupiter\/growl,tectronics\/growl,nkhorman\/archive-growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,ylian\/growl,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,CarlosCD\/growl,ylian\/growl,nochkin\/growl,tectronics\/growl,chashion\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,SalrJupiter\/growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"928b34cd4b57318c7ab2eaec7a6322a8bebdbc4c","subject":"AppleScript checked in as text using git filter","message":"AppleScript checked in as text using git filter\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf.scpt","new_file":"src\/openpdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c19091d043663624f5f35380d9af283a9d8f8479","subject":"applescript to read 'today' list","message":"applescript to read 'today' list\n","repos":"natoverse\/things-service,natoverse\/things-service","old_file":"applescript\/things.applescript","new_file":"applescript\/things.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/natoverse\/things-service.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"7c970f0dff32f99edf67b4ec105b234412f83ac4","subject":"added StartChironLog script","message":"added StartChironLog script\n\nan AppleScript to open a new xterm window with a countdown log\ninforming the user that the beginning on night calibrations\nwill start in five minutes.\n","repos":"mattgiguere\/shellScripts","old_file":"CHIRON\/ctimac\/StartChironLog.scpt","new_file":"CHIRON\/ctimac\/StartChironLog.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mattgiguere\/shellScripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"956f54ae87daeb358f1b621a6bdcc5c7a00bb9ee","subject":"added handling several more useful script steps","message":"added handling several more useful script steps\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/standalone\/Script Step Specify Calc.applescript","new_file":"library\/standalone\/Script Step Specify Calc.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0a0f056fdae891d10d193e4c8affbfc020c7be61","subject":"Update to new server","message":"Update to new server\n","repos":"geigi\/loopjongen","old_file":"mountVolume.scpt","new_file":"mountVolume.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/geigi\/loopjongen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cf7ffd5164c4614796e2830d5f1d91133c410aae","subject":"Salling Clicker script: - fixed spelling typo - tried to fix #193","message":"Salling Clicker script:\n- fixed spelling typo\n- tried to fix #193\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402243\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl","old_file":"Scripts\/Salling Clicker\/Growl Calling Information.scpt","new_file":"Scripts\/Salling Clicker\/Growl Calling Information.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4680dbed5796d7330c5a90813615ac80d21266a7","subject":"Added a new test case to ensure the 'fail' case issue is (and remains) fixed.","message":"Added a new test case to ensure the 'fail' case issue is (and remains) fixed.\n","repos":"TooTallNate\/node-applescript,dfernandez79\/node-applescript","old_file":"samples\/fail-case.applescript","new_file":"samples\/fail-case.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/TooTallNate\/node-applescript.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c2fd0392c95c0191067040e37fc569d263fe45c6","subject":"update","message":"update\n","repos":"siye1982\/kafkey,siye1982\/kafkey,siye1982\/kafkey","old_file":"app\/static\/test.scpt","new_file":"app\/static\/test.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/siye1982\/kafkey.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"1644e866e8dd7090ed098655150f6e3ba96c2f3e","subject":"stronger pwd","message":"stronger pwd\n","repos":"Joilence\/launchbar,marcomasser\/launchbar-prenagha,prenagha\/launchbar,mlinzner\/LaunchBar-Actions-Padraic,marcomasser\/launchbar-prenagha,prenagha\/launchbar,mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar","old_file":"Generate Password.lbaction\/Contents\/Scripts\/default.scpt","new_file":"Generate Password.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mlinzner\/LaunchBar-Actions-Padraic.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"0b5688c40439d3c03c0d3c958a7625abca16d38b","subject":"Updated applescript","message":"Updated applescript\n","repos":"eramdam\/random-wallpaper","old_file":"applescripts\/change-wallpaper.scpt","new_file":"applescripts\/change-wallpaper.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/eramdam\/random-wallpaper.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"711580e01654f9ef2787132e3df60dd022af3870","subject":"Added coalescing example to test script","message":"Added coalescing example to test script\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402554\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7ed9bfab4fdf3a555cfc25f3f2a78f5805aed860","subject":"Better FileVault Description","message":"Better FileVault Description\n","repos":"Myl0g\/Mac-Security-Assistant","old_file":"Mac Security Assistant.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Mac Security Assistant.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Myl0g\/Mac-Security-Assistant.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c25a3194a029ca6a156a557e7bbd96785e036d01","subject":"update Suspend Auto","message":"update Suspend Auto\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"send to RX\/Suspend Automation.applescript","new_file":"send to RX\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6513f4faeaef36214791aa6732ea501d6458d9a5","subject":"first clumsy version of the Mail meta data logger","message":"first clumsy version of the Mail meta data logger\n\nChange-Id: I3517576ebd55c45d3425271210ed520bef07463a\nSigned-off-by: Falko Zurell <553d907fcdd96929d5363dc3b6e443669c7e54a8@zurell.de>\n","repos":"maxheadroom\/helpers,maxheadroom\/helpers,maxheadroom\/helpers","old_file":"AppleScript\/LogOutlookMetaData.applescript","new_file":"AppleScript\/LogOutlookMetaData.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/maxheadroom\/helpers.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"74f8b2e870d88b83b95a76ef60262f2f74a1184f","subject":"Create newEmptyFile.scpt","message":"Create newEmptyFile.scpt","repos":"rodolfosantos\/applescripts","old_file":"newEmptyFile.scpt","new_file":"newEmptyFile.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rodolfosantos\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5c52b94764c31d780d071800f69ed993bdf1af36","subject":"Reverting, looks like this just doesn't work beyond that one test I did. *sigh*","message":"Reverting, looks like this just doesn't work beyond that one test I did. *sigh*\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40561\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"397045d1dd7bfb3112143ef8c7548b271122337f","subject":"Added Someday-Maybe service.","message":"Added Someday-Maybe service.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Services\/Check Someday-Maybe Projects.applescript","new_file":"OmniFocus\/Services\/Check Someday-Maybe Projects.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8222995edd865893c164903fa3f779bb3a792393","subject":"Update Suspend Automation script","message":"Update Suspend Automation script","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"656c7f0720edc965488ddef4c1ab4afefb8a8b9b","subject":"Script to restore sudo rights on macOS","message":"Script to restore sudo rights on macOS\n","repos":"jalanb\/jab,jalanb\/dotjab,jalanb\/dotjab,jalanb\/jab","old_file":"src\/applescript\/restore_sudo.scpt","new_file":"src\/applescript\/restore_sudo.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jalanb\/dotjab.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4c6720a72113e28468c3b8bc9550d8e1e7a514e3","subject":"Add the EnableGCov script","message":"Add the EnableGCov script\n\n","repos":"tonyarnold\/CoverStory,tonyarnold\/CoverStory,tonyarnold\/CoverStory,tonyarnold\/CoverStory,tonyarnold\/CoverStory,tonyarnold\/CoverStory,tonyarnold\/CoverStory","old_file":"EnableGCov.scpt","new_file":"EnableGCov.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tonyarnold\/CoverStory.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"3a275080cdde0464513582cadb617e73a019ec72","subject":"Deprecating click-to-execute","message":"Deprecating click-to-execute","repos":"Bwoe\/Resume","old_file":"ResumeExec.scpt","new_file":"ResumeExec.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Bwoe\/Resume.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4709587ba61cd3ae53cd20448c28815aa1c9c61c","subject":"Create openQnA.scpt","message":"Create openQnA.scpt\n\ncode derived from here: http:\/\/stackoverflow.com\/questions\/23975239\/applescript-to-open-terminal-run-command-and-show-not-working","repos":"jgstew\/tools,jgstew\/tools,jgstew\/tools,jgstew\/tools","old_file":"AppleScript\/openQnA.scpt","new_file":"AppleScript\/openQnA.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jgstew\/tools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"73483012321b901f688e1b237a31e1a68db9da54","subject":"Add omnifocus links to Follow Link script.","message":"Add omnifocus links to Follow Link script.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Follow Link.applescript","new_file":"OmniFocus\/Follow Link.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1cd699d31661e56173e439429fb4add7f86fc848","subject":"Not found title.scpt, uploaded.","message":"Not found title.scpt, uploaded.\n","repos":"atpons\/saytunes","old_file":"title.scpt","new_file":"title.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/atpons\/saytunes.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"34a353d992114997cc77478afe8208dcc381f2dc","subject":"Adding a script which should fairly reliably reproduce the Queuing display crash. May this never rear its ugly head ever again.","message":"Adding a script which should fairly reliably reproduce the Queuing display crash. May this never rear its ugly head ever again.\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"scripts\/Bezel Crash.scpt","new_file":"scripts\/Bezel Crash.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/PersonifyInc\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2c464c7dcb68e17def70d1439ebca7ea096c6cdf","subject":"update","message":"update\n","repos":"rcmdnk\/AppleScript","old_file":"windowSize.applescript","new_file":"windowSize.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rcmdnk\/AppleScript.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3471485dd9573cdf5672ab4635878e3ecc2004b4","subject":"added logging routine","message":"added logging routine\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"883477554ed05836a29e8dca4c358b3961bc7871","subject":"Add new applescript example This one uses Growl to display new messages from the commits list Requires the \"Bubbles - Limit\" hidden Growl pref to be set to False","message":"Add new applescript example\nThis one uses Growl to display new messages from the commits list\nRequires the \"Bubbles - Limit\" hidden Growl pref to be set to False\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40289\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7460adb7396e6d050f66febf776acc3e9d166b63","subject":"getScreenWithCoordinates is now less strict","message":"getScreenWithCoordinates is now less strict\n","repos":"apaszke\/termtile,catfist\/termtile","old_file":"src\/screenUtils.applescript","new_file":"src\/screenUtils.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/apaszke\/termtile.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"427024dd797fdfbe62a0c1bde5ced45633d5bddd","subject":"Adding a scripts directory, and a mailsmith script. Whee","message":"Adding a scripts directory, and a mailsmith script. Whee\n","repos":"nkhorman\/archive-growl,chashion\/growl,xhruso00\/growl,nagyistoce\/growl,xhruso00\/growl,nagyistoce\/growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,nkhorman\/archive-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,CarlosCD\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,chashion\/growl,SalrJupiter\/growl,CarlosCD\/growl,timbck2\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nochkin\/growl,timbck2\/growl,SalrJupiter\/growl,ylian\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,tectronics\/growl,ylian\/growl,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,nochkin\/growl,ylian\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,morganestes\/morganestes-growl,xhruso00\/growl,timbck2\/growl,timbck2\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,tectronics\/growl,nochkin\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,SalrJupiter\/growl,SalrJupiter\/growl,chashion\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,an0nym0u5\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,tectronics\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,chashion\/growl,an0nym0u5\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,morganestes\/morganestes-growl,nochkin\/growl,doshinirav\/doshinirav-myversion","old_file":"Scripts\/MailSmith.scpt","new_file":"Scripts\/MailSmith.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"b5222659c1a60a9560406b9e0f39f0f9f2029c65","subject":"Added a new AppleScript - getTodaysiCalEvents (this time without changing the xCode project..)","message":"Added a new AppleScript - getTodaysiCalEvents (this time without changing the xCode project..)\n","repos":"nochkin\/growl,nochkin\/growl,Shalaco\/shalzers-growl,chashion\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,chashion\/growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,nagyistoce\/growl,tectronics\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,SalrJupiter\/growl,nagyistoce\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,nochkin\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,tectronics\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,tectronics\/growl,nagyistoce\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,Shalaco\/shalzers-growl,nochkin\/growl,morganestes\/morganestes-growl,timbck2\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,ylian\/growl,timbck2\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,timbck2\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,ylian\/growl,xhruso00\/growl,an0nym0u5\/growl,xhruso00\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,timbck2\/growl,ylian\/growl,morganestes\/morganestes-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,CarlosCD\/growl,chashion\/growl,nagyistoce\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,nochkin\/growl,timbck2\/growl,an0nym0u5\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl","old_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_file":"Scripts\/iCal\/getTodaysiCalEvents.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1c7bb42d9f981fd26da7849f52f95a8be2a77896","subject":"Create checkIfMenuItemEnable.scpt","message":"Create checkIfMenuItemEnable.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"checkIfMenuItemEnable.scpt","new_file":"checkIfMenuItemEnable.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"4e52002b3429958271efeb68cba753fe7366b1e7","subject":"Create jLinuxInstaller.scpt","message":"Create jLinuxInstaller.scpt","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_file":"Launcher\/Mac\/jLinuxInstaller.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brendanmanning\/jLinux.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c5d911225e1507cb337a457b24434c939e71e96f","subject":"El Capitan Update","message":"El Capitan Update\n\n10.11 reverts to using ~\/.profile in single user mode\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c8192b85275916034c82897f90ca609848979f9e","subject":"Update 'Open in Chrome' action","message":"Update 'Open in Chrome' action\n","repos":"cypher\/dotfiles,gdm\/dotfiles,cypher\/dotfiles,cypher\/dotfiles,cypher\/dotfiles,cypher\/dotfiles,gdm\/dotfiles,cypher\/dotfiles,gdm\/dotfiles,gdm\/dotfiles","old_file":"launchbar-actions\/Open In Chrome.scpt","new_file":"launchbar-actions\/Open In Chrome.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/cypher\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b633e996ac1822961e35a100cf2d2a789eb8f915","subject":"Try to separate open all applescript action to external script","message":"Try to separate open all applescript action to external script\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf_sql.scpt","new_file":"src\/openpdf_sql.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"46ef84a152700190f877a3c74522b779384fadb4","subject":"applescript editor auto fix spacing","message":"applescript editor auto fix spacing\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5527a3d26092c11438f711393afa9ed16330bcae","subject":"Add photos-album-extract","message":"Add photos-album-extract\n","repos":"ithinkihaveacat\/dotfiles,ithinkihaveacat\/dotfiles,ithinkihaveacat\/dotfiles","old_file":"applescript\/photos-album-extract.applescript","new_file":"applescript\/photos-album-extract.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ithinkihaveacat\/dotfiles.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"e4b68787e75fe3ca93cdac349fc39f9bfb67d4d8","subject":"ipy in OSX","message":"ipy in OSX\n","repos":"tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise","old_file":"ipy.scpt","new_file":"ipy.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tebeka\/pythonwise.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"fed655704cf9c2cd76d203ac16c1a9996b143bc8","subject":"NEW: ESLint for BBEdit script","message":"NEW: ESLint for BBEdit script\n","repos":"meengit\/bbdev","old_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run eslint.scpt","new_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run eslint.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"52608a24e2e9da73a8ac3d4e42212bc8e9922ffc","subject":"added dialog at end of script to alert user if errors occured","message":"added dialog at end of script to alert user if errors occured\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"02a6b708950c7b20aae0a927802f73d49e03e05d","subject":"Fixed a bug I just created","message":"Fixed a bug I just created\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40294\n","repos":"PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"418040fe3624c69f2f60305967f3f6502ca881a6","subject":"Adding a scripts directory, and a mailsmith script. Whee","message":"Adding a scripts directory, and a mailsmith script. Whee\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40642\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Scripts\/MailSmith.scpt","new_file":"Scripts\/MailSmith.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"0198257a30289ab6fd9386995d59ee03d39218eb","subject":"Update name of the window","message":"Update name of the window\n\nReplace \"Audio Suite:\" with \"Audio Suite: RX Connect\"","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"Send to RX\/Send to RX.applescript","new_file":"Send to RX\/Send to RX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8d8bcd8b6a182f3325f1128c966e88908200f91d","subject":"Add the EnableGCov script","message":"Add the EnableGCov script\n\n","repos":"pombreda\/coverstory,pombreda\/coverstory,thethirduniverse\/coverstory,crystalying33\/coverstory,luzhao\/coverstory,pombreda\/coverstory,crystalying33\/coverstory,thethirduniverse\/coverstory,eckhartcke\/coverstory,eckhartcke\/coverstory,tectronics\/coverstory,adib\/coverstory,eckhartcke\/coverstory,tectronics\/coverstory,luzhao\/coverstory,eckhartcke\/coverstory,adib\/coverstory,luzhao\/coverstory,crystalying33\/coverstory,crystalying33\/coverstory,tectronics\/coverstory,luzhao\/coverstory,eckhartcke\/coverstory,eckhartcke\/coverstory,adib\/coverstory,adib\/coverstory,thethirduniverse\/coverstory,tectronics\/coverstory,crystalying33\/coverstory,thethirduniverse\/coverstory,pombreda\/coverstory,crystalying33\/coverstory,eckhartcke\/coverstory,pombreda\/coverstory,pombreda\/coverstory,adib\/coverstory,luzhao\/coverstory,thethirduniverse\/coverstory,adib\/coverstory,thethirduniverse\/coverstory,tectronics\/coverstory,luzhao\/coverstory,adib\/coverstory,tectronics\/coverstory,thethirduniverse\/coverstory,luzhao\/coverstory,pombreda\/coverstory,crystalying33\/coverstory,tectronics\/coverstory","old_file":"EnableGCov.scpt","new_file":"EnableGCov.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adib\/coverstory.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"9dc52740147c6a7377a3a651571c69f7bf8ad57c","subject":"make it work with two args","message":"make it work with two args\n","repos":"helaili\/thumbscrew,azizshamim\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/azizshamim\/thumbscrew.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fe06424c9600c820bbbb9137e33e70f1b2ac79ab","subject":"Create keyUpDownEventsGuiScript.scpt","message":"Create keyUpDownEventsGuiScript.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"keyUpDownEventsGuiScript.scpt","new_file":"keyUpDownEventsGuiScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"dd979937f5648085fd82a8f2ccf52755f63fe796","subject":"Add missing add_to_iTunes AppleScript","message":"Add missing add_to_iTunes AppleScript\n","repos":"phtagn\/sickbeard_mp4_automator,Filechaser\/sickbeard_mp4_automator,phtagn\/sickbeard_mp4_automator,Filechaser\/sickbeard_mp4_automator,Collisionc\/sickbeard_mp4_automator,Collisionc\/sickbeard_mp4_automator","old_file":"post_process\/resources\/add_to_iTunes.scpt","new_file":"post_process\/resources\/add_to_iTunes.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Filechaser\/sickbeard_mp4_automator.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"613b70d103a9688e066d3f45e8ac12165b095ca0","subject":"Add script to copy finder path to clipboard.","message":"Add script to copy finder path to clipboard.\n","repos":"adjohnson916\/applescripts","old_file":"Scripts\/Copy Finder Path to Clipboard.applescript","new_file":"Scripts\/Copy Finder Path to Clipboard.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adjohnson916\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c092e315dbdb3916c33e475bad2839f61cbc3df4","subject":"Update Suspend Automation.applescript","message":"Update Suspend Automation.applescript","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"send to RX\/Suspend Automation.applescript","new_file":"send to RX\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6f6dd06d2927fab937274347a55f5463d9784eae","subject":"removed rounding from get box sizing script","message":"removed rounding from get box sizing script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Get Box Sizing Info from Quark.applescript","new_file":"Get Box Sizing Info from Quark.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"759b3c9c8eaa8cd5d7bcc62c42cffed45bb706f1","subject":"Create eventHandlerRemote.scpt","message":"Create eventHandlerRemote.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"eventHandlerRemote.scpt","new_file":"eventHandlerRemote.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"69741c04934b7eb06904eb69e8e1f03514f49c7a","subject":"Remove strange symbol","message":"Remove strange symbol","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts\/Track Renamer.applescript","new_file":"AppleScripts\/Track Renamer.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0648f2f26ca329a49aba641164cc1e58bc18624e","subject":"Create rtmpDump.scpt","message":"Create rtmpDump.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"AppleScript\/rtmpDump.scpt","new_file":"AppleScript\/rtmpDump.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"21031eb4a570182bf3cc466af0500b610baa8625","subject":"demo recorder","message":"demo recorder\n","repos":"eendroroy\/alien","old_file":"alien.scpt","new_file":"alien.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/eendroroy\/alien.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ab839f0105dd2340f541891dada88a9833f4c508","subject":"capitalization fix","message":"capitalization fix\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"71787fa4b519cfa797ca66053147d234dec03cfe","subject":"Simplified attachment interface","message":"Simplified attachment interface\n\nGiving up on the replacing contents approach. It's not reliable. Switched to simple trigger methods where a script if present for the attachment point is there for the source language package, it is run with the BB_DOC_PATH and BB_DOC_LANGUAGE environment variables set.\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9515477df0883d896ae52c5376b07fcb2e3af4ee","subject":"yes in AppleScript","message":"yes in AppleScript\n","repos":"mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes,mubaris\/yes","old_file":"yes.applescript","new_file":"yes.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mubaris\/yes.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"203e18a4787ea34a8dc9d7baedcff63bbcc42a72","subject":"improved logging functionality further. Included date in log, removed labels from every log entry and moved to single row at top of log.","message":"improved logging functionality further. Included date in log, removed labels from every log entry and moved to single row at top of log.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"381d3eb49fd702ba2619c02c696116c7cb441d89","subject":"Domino modes","message":"Domino modes\n","repos":"mikegrb\/p5-Misc-MacLoggerDX,mikegrb\/p5-Misc-MacLoggerDX","old_file":"Lookup.applescript","new_file":"Lookup.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mikegrb\/p5-Misc-MacLoggerDX.git\/': The requested URL returned error: 403\n","license":"artistic-2.0","lang":"AppleScript"} {"commit":"f1437ba5e2b61de41ae25ad3512d8ab78b5dd6a1","subject":"AutoBoot Enable\/Disable","message":"AutoBoot Enable\/Disable\n\nAdd functions to enable or disable the AutoBoot feature on newer models.\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8e412d939da2b7407d3a042b29119efac85f1404","subject":"Fix Commits script to use the *correct* application icon","message":"Fix Commits script to use the *correct* application icon\n","repos":"chashion\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,an0nym0u5\/growl,timbck2\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,ylian\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,SalrJupiter\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,ylian\/growl,chashion\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,nagyistoce\/growl,tectronics\/growl,chashion\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,chashion\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,CarlosCD\/growl,tectronics\/growl,CarlosCD\/growl,tectronics\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,timbck2\/growl,an0nym0u5\/growl,tectronics\/growl,timbck2\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,nagyistoce\/growl,chashion\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,timbck2\/growl,tectronics\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nochkin\/growl,timbck2\/growl,nochkin\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,nagyistoce\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,chashion\/growl,Shalaco\/shalzers-growl,tectronics\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,nochkin\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,xhruso00\/growl,xhruso00\/growl,nkhorman\/archive-growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"35e479e1bdcd774d73082960999da1b738b68398","subject":"fixed bugs with Pad Printfile Script","message":"fixed bugs with Pad Printfile Script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d11965cdab30ed2a527d5f76431c5dda008d73c5","subject":"Create screensaverStart.scpt","message":"Create screensaverStart.scpt","repos":"rodolfosantos\/applescripts","old_file":"screensaverStart.scpt","new_file":"screensaverStart.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rodolfosantos\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"92bf64ed3d2d7e2488c7c252ea5660ab9d0739a8","subject":"Create Render & Fades.applescript","message":"Create Render & Fades.applescript","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"be2b953f1d5d630a43f64f0ca10a1d1d8c3a1555","subject":"","message":"\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40566\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"990a42a46979575e77c89c602e47835c0fa03821","subject":"The width now fits the image","message":"The width now fits the image\n","repos":"ylian\/growl,chashion\/growl,SalrJupiter\/growl,xhruso00\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,chashion\/growl,nkhorman\/archive-growl,nochkin\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,timbck2\/growl,nochkin\/growl,SalrJupiter\/growl,timbck2\/growl,SalrJupiter\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,nochkin\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,an0nym0u5\/growl,tectronics\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,nkhorman\/archive-growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,CarlosCD\/growl,SalrJupiter\/growl,nagyistoce\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,timbck2\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,ylian\/growl,SalrJupiter\/growl,ylian\/growl,morganestes\/morganestes-growl,timbck2\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,chashion\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,ylian\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,tectronics\/growl,ylian\/growl,ylian\/growl,nagyistoce\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"bb5316323b5ed6b2f5633860c06d61e14da97145","subject":"Follow link: update regex to improve matching capability.","message":"Follow link: update regex to improve matching capability.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Follow Link.applescript","new_file":"OmniFocus\/Follow Link.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"02328312c1946afdf1e5312a6e86b76183cc75d0","subject":"Added Send Attachments to Evernote script.","message":"Added Send Attachments to Evernote script.\n","repos":"amcneeney\/osx-scripts","old_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b9db5a0494729d1ccb4fe18e0c3df181e1353bbc","subject":"added reset of previous job\/info\/art numbers in Supermerge 3 script to avoid copying jobs from previous row","message":"added reset of previous job\/info\/art numbers in Supermerge 3 script to avoid copying jobs from previous row\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e301729179e24a83bfc3f1682164da7335b80e27","subject":"Improved logging capabilities. added a log function for use throughout the script. Added a new error check to log errors if previous job folder fails to copy","message":"Improved logging capabilities. added a log function for use throughout the script. Added a new error check to log errors if previous job folder fails to copy\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"57ffd506d7085ebe53e6e51441100f81d0810571","subject":"[NEW] Another Xcode 2.5 compatibility tweak.","message":"[NEW] Another Xcode 2.5 compatibility tweak.\n","repos":"adozenlines\/mogenerator,anton-matosov\/mogenerator,skywinder\/mogenerator,bewebste\/mogenerator,ef-ctx\/mogenerator,skywinder\/mogenerator,rentzsch\/mogenerator,otaran\/mogenerator,iv-mexx\/mogenerator,seanm\/mogenerator,ef-ctx\/mogenerator,otaran\/mogenerator,Erin-Mounts\/mogenerator,iv-mexx\/mogenerator,pronebird\/mogenerator,kostiakoval\/mogenerator,fizker\/mogenerator,bewebste\/mogenerator,anton-matosov\/mogenerator,adozenlines\/mogenerator,mjasa\/mogenerator,casademora\/mogenerator,iv-mexx\/mogenerator,willowtreeapps\/mattgenerator,casademora\/mogenerator,fizker\/mogenerator,bgulanowski\/mogenerator,untitledstartup\/mogenerator,kostiakoval\/mogenerator,untitledstartup\/mogenerator,ef-ctx\/mogenerator,willowtreeapps\/mattgenerator,rentzsch\/mogenerator,kostiakoval\/mogenerator,rentzsch\/mogenerator,mjasa\/mogenerator,VladimirGoncharov\/mogenerator,Erin-Mounts\/mogenerator,hardikdevios\/mogenerator,VladimirGoncharov\/mogenerator,bgulanowski\/mogenerator,casademora\/mogenerator,fizker\/mogenerator,bewebste\/mogenerator,anton-matosov\/mogenerator,VladimirGoncharov\/mogenerator,bewebste\/mogenerator,seanm\/mogenerator,iv-mexx\/mogenerator,untitledstartup\/mogenerator,hardikdevios\/mogenerator,pronebird\/mogenerator,otaran\/mogenerator,seanm\/mogenerator,bgulanowski\/mogenerator,adozenlines\/mogenerator,pronebird\/mogenerator,skywinder\/mogenerator,Erin-Mounts\/mogenerator,hardikdevios\/mogenerator,willowtreeapps\/mattgenerator,mjasa\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kostiakoval\/mogenerator.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d4b8294bf8ecea54d9566d120c1655c373556084","subject":"image rotation applescript","message":"image rotation applescript\n","repos":"Sw0rdstream\/appium,appium\/appium,appium\/appium,appium\/appium,appium\/appium,appium\/appium,appium\/appium","old_file":"app\/uiauto\/Rotate.applescript","new_file":"app\/uiauto\/Rotate.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/appium\/appium.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"a957d292f4c1a8a9b2c11f617bc80cc7c439108d","subject":"wrong project, removed","message":"wrong project, removed","repos":"proctorio\/FixMyMicrophone,proctorio\/FixMyMicrophone","old_file":"OS X\/Fix My Webcam .scpt","new_file":"OS X\/Fix My Webcam .scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/proctorio\/FixMyMicrophone.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2f2002a7c904dbfd92235358e9a6eabf60d7b45e","subject":"Terminating newline.","message":"Terminating newline.\n","repos":"SalrJupiter\/growl,morganestes\/morganestes-growl,tectronics\/growl,nochkin\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,tectronics\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nagyistoce\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,chashion\/growl,nkhorman\/archive-growl,tectronics\/growl,nkhorman\/archive-growl,tectronics\/growl,xhruso00\/growl,SalrJupiter\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,nkhorman\/archive-growl,nagyistoce\/growl,nochkin\/growl,CarlosCD\/growl,CarlosCD\/growl,ylian\/growl,an0nym0u5\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,ylian\/growl,nochkin\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,timbck2\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,timbck2\/growl,CarlosCD\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,tectronics\/growl,an0nym0u5\/growl,ylian\/growl,SalrJupiter\/growl,an0nym0u5\/growl,SalrJupiter\/growl,chashion\/growl,timbck2\/growl,xhruso00\/growl,morganestes\/morganestes-growl,xhruso00\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,timbck2\/growl,timbck2\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,ylian\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8f9d309e2fdd6db88400d07a09cd6fdca5fd1ad0","subject":"[osx] Make minor consistency improvements","message":"[osx] Make minor consistency improvements\n","repos":"makabde\/dotfiles,zlot\/dotfiles,b-boogaard\/dotfiles,pbrooks\/dotfiles,christophermoura\/dotfiles,girishramnani\/dotfiles,christophermoura\/dotfiles,makabde\/dotfiles,wingy3181\/dotfiles,AlbertoElias\/dotfiles,girishramnani\/dotfiles,oddlord\/dotfiles,wingy3181\/dotfiles,mickael83\/ubuntu-dotfiles,newtonne\/dotfiles,mickael83\/ubuntu-dotfiles,EDiLD\/dotfiles,AlbertoElias\/dotfiles,wingy3181\/dotfiles,EDiLD\/dotfiles,zlot\/dotfiles,newtonne\/dotfiles","old_file":"os\/os_x\/preferences\/set_custom_terminal_theme.scpt","new_file":"os\/os_x\/preferences\/set_custom_terminal_theme.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/EDiLD\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"22cbc180cd9f346f10305cf70acc3e95024f02ee","subject":"change mdLink to use applescript","message":"change mdLink to use applescript\n","repos":"bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,dreki\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,dreki\/PopClip-Extensions,onecrayon\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,a-b\/PopClip-Extensions,Kapeli\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,onecrayon\/PopClip-Extensions,onecrayon\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,dreki\/PopClip-Extensions,bopo\/PopClip-Extensions,a-b\/PopClip-Extensions,onecrayon\/PopClip-Extensions,a-b\/PopClip-Extensions,bopo\/PopClip-Extensions,Kapeli\/PopClip-Extensions,chenruixuan\/PopClip-Extensions,Kapeli\/PopClip-Extensions","old_file":"source\/mdLink\/mdLink.applescript","new_file":"source\/mdLink\/mdLink.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/a-b\/PopClip-Extensions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"199325bfa367a73f030a685ed0e4df010f171106","subject":"Added prefix to each file change with the letter denoting the change type (ex. M, A)","message":"Added prefix to each file change with the letter denoting the change type (ex. M, A)\n","repos":"doshinirav\/doshinirav-myversion,timbck2\/growl,an0nym0u5\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,xhruso00\/growl,timbck2\/growl,nagyistoce\/growl,nochkin\/growl,CarlosCD\/growl,tectronics\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,nochkin\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,ylian\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,xhruso00\/growl,chashion\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,an0nym0u5\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,SalrJupiter\/growl,tectronics\/growl,nagyistoce\/growl,SalrJupiter\/growl,tectronics\/growl,chashion\/growl,chashion\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,chashion\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,ylian\/growl,chashion\/growl,nagyistoce\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,timbck2\/growl,timbck2\/growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,nkhorman\/archive-growl,ylian\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,ylian\/growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,tectronics\/growl,nochkin\/growl,an0nym0u5\/growl,CarlosCD\/growl,an0nym0u5\/growl,CarlosCD\/growl,ylian\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,tectronics\/growl,ylian\/growl,xhruso00\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,timbck2\/growl,nochkin\/growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"cffa04e1434ea15e7160d776bddaa8b0facb232c","subject":"Adding a script courtesy of Johann Richard of mycvs.org. Icon files need to be set. I don't have an iPod to test this with. Also, this looks like it could check if a firewire or usb disk is also in place.","message":"Adding a script courtesy of Johann Richard of mycvs.org. Icon files need to be set. I don't have an iPod to test this with. Also, this looks like it could check if a firewire or usb disk is also in place.\n","repos":"nkhorman\/archive-growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,xhruso00\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,nochkin\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,morganestes\/morganestes-growl,ylian\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,SalrJupiter\/growl,tectronics\/growl,timbck2\/growl,xhruso00\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,CarlosCD\/growl,SalrJupiter\/growl,an0nym0u5\/growl,nochkin\/growl,CarlosCD\/growl,CarlosCD\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,CarlosCD\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,Shalaco\/shalzers-growl,tectronics\/growl,chashion\/growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,chashion\/growl,Shalaco\/shalzers-growl,ylian\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,chashion\/growl,an0nym0u5\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,xhruso00\/growl,nagyistoce\/growl,nochkin\/growl,xhruso00\/growl,nagyistoce\/growl,ylian\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,timbck2\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,chashion\/growl,SalrJupiter\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,chashion\/growl,nkhorman\/archive-growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,nkhorman\/archive-growl","old_file":"Examples\/AppleScripts\/iPod Checker.scpt","new_file":"Examples\/AppleScripts\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"732db01a1edd670b2b87b0c36157b8477f68faa0","subject":"Credit for AppleScript.","message":"Credit for AppleScript.\n","repos":"maxandersen\/dk.xam.launchbar","old_file":"Toggle VPN.lbaction\/Contents\/Scripts\/toggle.scpt","new_file":"Toggle VPN.lbaction\/Contents\/Scripts\/toggle.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/maxandersen\/dk.xam.launchbar.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2c5ad7787bd4fc66914af292e1188c7e1af1e768","subject":"improved time calculation for logging","message":"improved time calculation for logging\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4e1999003744048ee4bd659d5173dc5de104ab9f","subject":"date added to new note","message":"date added to new note\n","repos":"devainandor\/notes-enhance","old_file":"Create Note.scpt","new_file":"Create Note.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/devainandor\/notes-enhance.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a352a66fe9f74071695f91f711dd61a97272d781","subject":"Create jLinuxLauncher.scpt","message":"Create jLinuxLauncher.scpt","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxLauncher.scpt","new_file":"Launcher\/Mac\/jLinuxLauncher.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brendanmanning\/jLinux.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c180e365f9640bc0ecd60d071f6ada2097e10d45","subject":"added fmSousDev and Copy Values from View Index Window","message":"added fmSousDev and Copy Values from View Index Window\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/fmSousDev\/Copy Values from View Index Window.applescript","new_file":"library\/fmSousDev\/Copy Values from View Index Window.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"61f86c7fef63f6ae19920104bd4a8b48111bdc13","subject":"add applescript","message":"add applescript\n","repos":"azizshamim\/thumbscrew,helaili\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/azizshamim\/thumbscrew.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1387e833c370dabf3a9e1976546b9dca26f64a76","subject":"Create jLinuxUpdater.scpt","message":"Create jLinuxUpdater.scpt","repos":"brendanmanning\/jLinux","old_file":"Launcher\/Mac\/jLinuxUpdater.scpt","new_file":"Launcher\/Mac\/jLinuxUpdater.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brendanmanning\/jLinux.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"94682249485b4df79cd779a437afca049e6c37c5","subject":"Remove unused openpdf.scpt","message":"Remove unused openpdf.scpt\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf.scpt","new_file":"src\/openpdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1f07d73b2a9ebe2a466e36cca35c1858e86ee544","subject":"Add the EnableGCov script","message":"Add the EnableGCov script\n\n\n\ngit-svn-id: 8163936547057a72a4a563b0c6faa1ca53cb6c9b@6 c192c14b-6038-0410-9fcd-4bb9978d2467\n","repos":"svn2github\/CoverStory,svn2github\/CoverStory,kimhunter\/CoverStory,kimhunter\/CoverStory,svn2github\/CoverStory,kimhunter\/CoverStory,kimhunter\/CoverStory,svn2github\/CoverStory,svn2github\/CoverStory,kimhunter\/CoverStory,svn2github\/CoverStory","old_file":"EnableGCov.scpt","new_file":"EnableGCov.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/svn2github\/CoverStory.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"ba88346eb8c45f6cece4621f264918d0b3c9c023","subject":"Supermerge Move Script: Fixed issues with logging, fixed issue where certain previous jobs were not being copied to current job.","message":"Supermerge Move Script: Fixed issues with logging, fixed issue where certain previous jobs were not being copied to current job.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"073a60cd55def2f28baae8a73ffaf99bb5202f97","subject":"Fix indentation & colour in AppleScript snippet","message":"Fix indentation & colour in AppleScript snippet\n","repos":"stig\/dot-files","old_file":"termcolours.scpt","new_file":"termcolours.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stig\/dot-files.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a33797eada1c5c1a7f4da5581ed241e5814b56da","subject":"Engagement reminders","message":"Engagement reminders\n\nAdded a hacky script to create engagement reminders for\n car\n plane\n hotel\n expenses\n trip report\n time sheet\n","repos":"binford2k\/fingerpuppet","old_file":"Create Engagement Reminders.scpt","new_file":"Create Engagement Reminders.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/binford2k\/fingerpuppet.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6f401dd63d141503fa87a0d7f3d34592ecca6fdf","subject":"Create Solo-Mute Track.applescript","message":"Create Solo-Mute Track.applescript\n\nAdd Solo-Mute Track script\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts\/Applications\/Pro Tools\/Solo-Mute Track.applescript","new_file":"AppleScripts\/Applications\/Pro Tools\/Solo-Mute Track.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"472d5ae18b7fa5ae990ceb34c1f88a5768b6720a","subject":"Add applescripts","message":"Add applescripts\n","repos":"hlissner\/dotfiles,hlissner\/dotfiles,hlissner\/dotfiles,hlissner\/dotfiles,cthachuk\/dotfiles,hlissner\/dotfiles,cthachuk\/dotfiles","old_file":"applescripts\/Rate Current Song.scpt","new_file":"applescripts\/Rate Current Song.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/hlissner\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9744a2f407490a80c106d0e9abc90c7a0f600a64","subject":"removed behaveAsExpectedByIgnoringAdditionalBeforeTextOccurrences param from getTextBetween - the function should work by getting everything between the specified params.","message":"removed behaveAsExpectedByIgnoringAdditionalBeforeTextOccurrences param from getTextBetween - the function should work by getting everything between the specified params.\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/getTextBetween.applescript","new_file":"library\/text parsing\/getTextBetween.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a8e551b74541fb4e36fe7b3cbfdb149d34dc99fa","subject":"added compiled handlers code, bug-fixes","message":"added compiled handlers code, bug-fixes\n","repos":"NYHTC\/applescript-fm-helper","old_file":"main_compileFunctionLib.applescript","new_file":"main_compileFunctionLib.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f739d8e899163bb60e39bf0dab9d698f9a1020de","subject":"added delay to reminders script","message":"added delay to reminders script\n","repos":"adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles,adagios\/dotfiles","old_file":"applescripts\/add clipboard to Shopping list.scpt","new_file":"applescripts\/add clipboard to Shopping list.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/adagios\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"eac4230871ae4b3eb8e0ca12a6cabe48253a19e6","subject":"Add decompiled script source","message":"Add decompiled script source\n","repos":"craig-davis\/tyme2-standup","old_file":"daily-standup.applescript","new_file":"daily-standup.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/craig-davis\/tyme2-standup.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"dba52cc2111913972f0e1f076db32997527ce6d8","subject":"Fix application name for notification","message":"Fix application name for notification\n","repos":"timbck2\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,nochkin\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,chashion\/growl,nagyistoce\/growl,nkhorman\/archive-growl,ylian\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,xhruso00\/growl,SalrJupiter\/growl,timbck2\/growl,ylian\/growl,CarlosCD\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,SalrJupiter\/growl,tectronics\/growl,xhruso00\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,timbck2\/growl,nkhorman\/archive-growl,CarlosCD\/growl,ylian\/growl,chashion\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,ylian\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,xhruso00\/growl,SalrJupiter\/growl,nochkin\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,nochkin\/growl,tectronics\/growl,chashion\/growl,xhruso00\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,SalrJupiter\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,timbck2\/growl,chashion\/growl,an0nym0u5\/growl,chashion\/growl,ylian\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,an0nym0u5\/growl,tectronics\/growl,CarlosCD\/growl,ylian\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,tectronics\/growl,CarlosCD\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,chashion\/growl,nochkin\/growl,timbck2\/growl,morganestes\/morganestes-growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,SalrJupiter\/growl","old_file":"Scripts\/Email\/Mail Notification.scpt","new_file":"Scripts\/Email\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7b6b109e69296a6da9d58b3852f0ced257d2fdb1","subject":"add Viscosity auto-connect script","message":"add Viscosity auto-connect script\n","repos":"kfox\/dotfiles,kfox\/dotfiles,kfox\/dotfiles","old_file":"bin\/viscosity.applescript","new_file":"bin\/viscosity.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kfox\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"876cdbb49f6578af13d986113be777993acfae31","subject":"INTEGRATION: CWS macosxversioning01 (1.1.2); FILE ADDED 2007\/01\/06 22:27:34 mox 1.1.2.3: Change versioning strings to match the rest of the OOo code 2006\/12\/30 10:00:54 mox 1.1.2.2: Issue number: #72835# Make the Mac OS X specific application files to automatically get the appropriate OpenOffice.org version. 2006\/12\/29 22:07:19 mox 1.1.2.1: Issue number: #72835# Insert the files moved from desktop module to here, instsetoo_native. Create and adjust makefiles accordingly. Put the files that need versioning in a separate folder, this makes it possible to handle installer stuff (that also needs versioning) in the instsetoo_native\/macosx\/ -folder.","message":"INTEGRATION: CWS macosxversioning01 (1.1.2); FILE ADDED\n2007\/01\/06 22:27:34 mox 1.1.2.3: Change versioning strings to match the rest of the OOo code\n2006\/12\/30 10:00:54 mox 1.1.2.2: Issue number: #72835#\nMake the Mac OS X specific application files to automatically get the\nappropriate OpenOffice.org version.\n2006\/12\/29 22:07:19 mox 1.1.2.1: Issue number: #72835#\nInsert the files moved from desktop module to here, instsetoo_native.\nCreate and adjust makefiles accordingly.\nPut the files that need versioning in a separate folder, this makes it\npossible to handle installer stuff (that also needs versioning) in the\ninstsetoo_native\/macosx\/ -folder.\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/PostInstall.applescript","new_file":"instsetoo_native\/macosx\/application\/PostInstall.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/JurassicWordExcel\/core.git\/': The requested URL returned error: 403\n","license":"mpl-2.0","lang":"AppleScript"} {"commit":"dcb7324e3b35fa0437910071fd0f870787706065","subject":"Add reload-chrome.applescript","message":"Add reload-chrome.applescript\n","repos":"jez\/bin,jez\/bin","old_file":"reload-chrome.applescript","new_file":"reload-chrome.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jez\/bin.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3456b4d28b66ca4874e8664ba450537470e075d1","subject":"need to escape the path into DropDMG, that might be the last thing","message":"need to escape the path into DropDMG, that might be the last thing\n\ngit-svn-id: c87f87383e9e570476b37173748f840982b11a31@231 a0cc1e66-070c-0410-9f8a-b213d8d4c38a\n","repos":"joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters","old_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/joemaller\/joesfilters.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fbb81cc7cf9fec824642dcb2d947aafeaf99e4bd","subject":"Removed pre-Tiger compatibility code, since the part that quits GHA and GrowlMenu won't work before Leopard anyway.","message":"Removed pre-Tiger compatibility code, since the part that quits GHA and GrowlMenu won't work before Leopard anyway.\n","repos":"nagyistoce\/growl,tectronics\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,SalrJupiter\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,xhruso00\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,an0nym0u5\/growl,CarlosCD\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,Shalaco\/shalzers-growl,chashion\/growl,timbck2\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,nkhorman\/archive-growl,timbck2\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,chashion\/growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,xhruso00\/growl,SalrJupiter\/growl,ylian\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,ylian\/growl,tectronics\/growl,xhruso00\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,CarlosCD\/growl,nochkin\/growl,nochkin\/growl,an0nym0u5\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,timbck2\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,xhruso00\/growl,tectronics\/growl,nagyistoce\/growl,tectronics\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,ylian\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,CarlosCD\/growl,nagyistoce\/growl,timbck2\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,ylian\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,timbck2\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,chashion\/growl,nochkin\/growl,chashion\/growl,nochkin\/growl,nkhorman\/archive-growl,chashion\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,chashion\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"4e817c0f759edc70c5df5dc3ef71ce246dbffa78","subject":"sn works correctly with Terminal.app (fixes #25)","message":"sn works correctly with Terminal.app (fixes #25)\n","repos":"apaszke\/termtile,catfist\/termtile","old_file":"src\/changeScreen.applescript","new_file":"src\/changeScreen.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/apaszke\/termtile.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"91c5b50f739e615e037a537f596d607795830a0a","subject":"Add Chrome reload script","message":"Add Chrome reload script\n","repos":"chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox","old_file":"applescript\/chrome_reload.applescript","new_file":"applescript\/chrome_reload.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/chbrown\/sandbox.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9458e931b74130cd07cf145334cd91e2766dc1dc","subject":"Create notif.scpt","message":"Create notif.scpt","repos":"yu-george\/Connect","old_file":"notif.scpt","new_file":"notif.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/yu-george\/Connect.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"9f1a2cf99aad874ebb06dc919143510cd0bd2aa8","subject":"Added an AppleScript that works!","message":"Added an AppleScript that works!\n","repos":"cynikl\/mac-scripts,cynikl\/mac-scripts","old_file":"Mail-archive\/Inbox_mail_archive.scpt","new_file":"Mail-archive\/Inbox_mail_archive.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/cynikl\/mac-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"53cefeafd069381e6dee1977da6a75ccedd50c6a","subject":"Add playsongby filter","message":"Add playsongby filter\n\nThe filter shows all songs by the artist matching the query.\n","repos":"caleb531\/play-song,caleb531\/play-song","old_file":"filters\/playsongby.applescript","new_file":"filters\/playsongby.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/caleb531\/play-song.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"dd2257b1de2860bfbe78f639d03a99dcbec54842","subject":"Only quit GHA and GrowlMenu if they are actually running","message":"Only quit GHA and GrowlMenu if they are actually running\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402767\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"7b2156f4ba93614142917d3eb0d7d9dacbd0664d","subject":"Updated pdf generation script","message":"Updated pdf generation script\n","repos":"AnomalyInnovations\/serverless-stack-com,AnomalyInnovations\/serverless-stack-com","old_file":"etc\/pdf.scpt","new_file":"etc\/pdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AnomalyInnovations\/serverless-stack-com.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5dacc82de116cc23ce45f55558fec0e08e8ee710","subject":"added apple script for automating things","message":"added apple script for automating things\n","repos":"gtrdp\/cs-rug-internship,gtrdp\/cs-rug-internship,gtrdp\/cs-rug-internship,gtrdp\/cs-rug-internship,gtrdp\/cs-rug-internship,gtrdp\/cs-rug-internship","old_file":"LogBook\/automate-copy.scpt","new_file":"LogBook\/automate-copy.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gtrdp\/cs-rug-internship.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8fd7d1068fa4ca8c81fcc0158c6f3b49b18c89ff","subject":"HOM setup: added delete of 8.5\" x 11\" box, now tries to open the previous job document when run","message":"HOM setup: added delete of 8.5\" x 11\" box, now tries to open the previous job document when run\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"HOM setup.applescript","new_file":"HOM setup.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"385674c6f2a87be7e1df225e6e480eb2ffdcde98","subject":"MOD: Copy some code to other scripts","message":"MOD: Copy some code to other scripts\n","repos":"meengit\/bbdev","old_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs.scpt","new_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9c8ced330a475facf37f1f3569d1422086241fea","subject":"Adding account name support from adam(nanovivid)","message":"Adding account name support from adam(nanovivid)\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40565\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e59c8d420d1f23ec91f892a2ef8eb01fd4e68651","subject":"removed extra string manipulation","message":"removed extra string manipulation\n","repos":"binford2k\/fingerpuppet","old_file":"Create Engagement Reminders.scpt","new_file":"Create Engagement Reminders.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/binford2k\/fingerpuppet.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4b04f1a7ed9cfefb1b7b201f3857509c3d4d96bd","subject":"Add new script","message":"Add new script\n\nThis script attached the selected records from DEVONthink to the currently open draft message window in Outlook\n","repos":"kotfu\/DEVONthink-scripts","old_file":"src\/Attach Selected from DEVONthink.applescript","new_file":"src\/Attach Selected from DEVONthink.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kotfu\/DEVONthink-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2cbb516fe53b6594aba08f868f04b565c7221e01","subject":"Removed pre-Tiger compatibility code, since the part that quits GHA and GrowlMenu won't work before Leopard anyway.","message":"Removed pre-Tiger compatibility code, since the part that quits GHA and GrowlMenu won't work before Leopard anyway.\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"42f5b9fe857855bbabdf5aa9858c1544bcde3543","subject":"another fix for bug in supermerge3 script where folders from previous rows were being copied. copyvar should've been reset to true not false. also added more safeguards, resetting the values of the path to copy on each iteration. also removed testlog portion that was used for debugging the folder copy bug.","message":"another fix for bug in supermerge3 script where folders from previous rows were being copied. copyvar should've been reset to true not false. also added more safeguards, resetting the values of the path to copy on each iteration. also removed testlog portion that was used for debugging the folder copy bug.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c9767371b193c738308c8a8cfcc8248fdd6a44c6","subject":"New mail notification for Entourage. Thanks to Cowboy - www.cowboyscripts.org This needs to be added as a rule for all messages. Read the script for more information on this.","message":"New mail notification for Entourage. Thanks to Cowboy - www.cowboyscripts.org\nThis needs to be added as a rule for all messages. Read the script for more information on this.\n","repos":"an0nym0u5\/growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,tectronics\/growl,CarlosCD\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nochkin\/growl,nkhorman\/archive-growl,chashion\/growl,nagyistoce\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,tectronics\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,chashion\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,ylian\/growl,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,tectronics\/growl,timbck2\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,ylian\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,an0nym0u5\/growl,SalrJupiter\/growl,chashion\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,xhruso00\/growl,timbck2\/growl,ylian\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,chashion\/growl,SalrJupiter\/growl,nagyistoce\/growl,nkhorman\/archive-growl,chashion\/growl,nochkin\/growl,chashion\/growl,Shalaco\/shalzers-growl,timbck2\/growl,nochkin\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,xhruso00\/growl,nkhorman\/archive-growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,nkhorman\/archive-growl,ylian\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,timbck2\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nochkin\/growl","old_file":"Examples\/AppleScripts\/Entourage.scpt","new_file":"Examples\/AppleScripts\/Entourage.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1a38e86933809127b6437419651d9274eb025c8c","subject":"iMessages","message":"iMessages\n","repos":"EvanLovely\/alfred--actions,EvanLovely\/alfred--actions","old_file":"actions\/Send iMessage.applescript","new_file":"actions\/Send iMessage.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/EvanLovely\/alfred--actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8a974a733f71261d2fe0a829c6a7e5604ee752aa","subject":"languages\/littecode\/applescript\/tmp\/test_6.scpt","message":"languages\/littecode\/applescript\/tmp\/test_6.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/test_6.scpt","new_file":"languages\/littecode\/applescript\/tmp\/test_6.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"65339f93b0f282937d586476e0594568ad4658a8","subject":"Modifying build script as part of #27 refactor","message":"Modifying build script as part of #27 refactor\n","repos":"vanda\/DigitalLabels,vanda\/DigitalLabels","old_file":"Build Digital Labels.scpt","new_file":"Build Digital Labels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/vanda\/DigitalLabels.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"3a0c252eadaa0aae5d060a142984683d358f333f","subject":"[FIX] osacompile complaint: \"The ASDScriptUniqueIdentifier property is specified more than once. (-2751)\".","message":"[FIX] osacompile complaint: \"The ASDScriptUniqueIdentifier property is specified more than once. (-2751)\".\n\nDon't know what's really going on here, but this works.","repos":"anton-matosov\/mogenerator,bewebste\/mogenerator,pronebird\/mogenerator,adozenlines\/mogenerator,iv-mexx\/mogenerator,Erin-Mounts\/mogenerator,ef-ctx\/mogenerator,fizker\/mogenerator,fizker\/mogenerator,bgulanowski\/mogenerator,pronebird\/mogenerator,VladimirGoncharov\/mogenerator,Erin-Mounts\/mogenerator,adozenlines\/mogenerator,casademora\/mogenerator,seanm\/mogenerator,bewebste\/mogenerator,mjasa\/mogenerator,rentzsch\/mogenerator,skywinder\/mogenerator,iv-mexx\/mogenerator,mjasa\/mogenerator,otaran\/mogenerator,pronebird\/mogenerator,ef-ctx\/mogenerator,kostiakoval\/mogenerator,seanm\/mogenerator,anton-matosov\/mogenerator,mjasa\/mogenerator,ef-ctx\/mogenerator,untitledstartup\/mogenerator,Erin-Mounts\/mogenerator,untitledstartup\/mogenerator,willowtreeapps\/mattgenerator,willowtreeapps\/mattgenerator,bewebste\/mogenerator,hardikdevios\/mogenerator,skywinder\/mogenerator,VladimirGoncharov\/mogenerator,willowtreeapps\/mattgenerator,rentzsch\/mogenerator,fizker\/mogenerator,anton-matosov\/mogenerator,casademora\/mogenerator,hardikdevios\/mogenerator,casademora\/mogenerator,bgulanowski\/mogenerator,kostiakoval\/mogenerator,iv-mexx\/mogenerator,bgulanowski\/mogenerator,bewebste\/mogenerator,otaran\/mogenerator,untitledstartup\/mogenerator,otaran\/mogenerator,rentzsch\/mogenerator,VladimirGoncharov\/mogenerator,seanm\/mogenerator,hardikdevios\/mogenerator,skywinder\/mogenerator,kostiakoval\/mogenerator,adozenlines\/mogenerator,iv-mexx\/mogenerator","old_file":"Xmod\/Xmod.applescript","new_file":"Xmod\/Xmod.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/bgulanowski\/mogenerator.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"562f99949a07c103ac089d6cf6bfd5a3f358a65f","subject":"initial checkin","message":"initial checkin\n","repos":"ThomPatterson\/Photos-Video-Archiver","old_file":"PhotosDTRename.scpt","new_file":"PhotosDTRename.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ThomPatterson\/Photos-Video-Archiver.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ce9fcfc81c279348cfd33a5a9bec3e345af02b70","subject":"adding c&p of keynote to evernote extraction script","message":"adding c&p of keynote to evernote extraction script\n\n\nFormer-commit-id: 051b138303e70244af8e270509686d3860540d19\nFormer-commit-id: 9605363f138fb10340de63f4487214abff6b4780","repos":"StanfordHCI\/cs247,StanfordHCI\/cs247,StanfordHCI\/cs247","old_file":"lab\/keynote_extraction_appl.scpt","new_file":"lab\/keynote_extraction_appl.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/StanfordHCI\/cs247.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f97f4dea786db670da2150603ec23d55d89694c2","subject":"added fallback to other playing tracks or any soundcloud page if not found","message":"added fallback to other playing tracks or any soundcloud page if not found","repos":"soundcloudlabs\/soundcloud-global-keys","old_file":"toggle_sc.scpt","new_file":"toggle_sc.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/soundcloudlabs\/soundcloud-global-keys.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"44603820a89dad55b83857e2165adfd67c88cf21","subject":"Tweak Growl commits AppleScript No longer show changed files - this was taking up too much room and was not very useful No longer show Date - not useful Change \"New Revision:\" to \"Revision:\" to match \"Author:\" better","message":"Tweak Growl commits AppleScript\nNo longer show changed files - this was taking up too much room and was not very useful\nNo longer show Date - not useful\nChange \"New Revision:\" to \"Revision:\" to match \"Author:\" better\n","repos":"doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,tectronics\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,nochkin\/growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,Shalaco\/shalzers-growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,chashion\/growl,Shalaco\/shalzers-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,tectronics\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,tectronics\/growl,xhruso00\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,timbck2\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,an0nym0u5\/growl,ylian\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,xhruso00\/growl,timbck2\/growl,chashion\/growl,nagyistoce\/growl,timbck2\/growl,an0nym0u5\/growl,tectronics\/growl,tectronics\/growl,SalrJupiter\/growl,nochkin\/growl,chashion\/growl,CarlosCD\/growl,tectronics\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,xhruso00\/growl,nochkin\/growl,CarlosCD\/growl,nagyistoce\/growl,ylian\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,chashion\/growl,ylian\/growl,nochkin\/growl,SalrJupiter\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,an0nym0u5\/growl,timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,nochkin\/growl,CarlosCD\/growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,xhruso00\/growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nagyistoce\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e6d39c4799b6707ed683fe3a06e440870d674d5e","subject":"Mail to Evernote: Add proper link to original message.","message":"Mail to Evernote: Add proper link to original message.\n","repos":"amcneeney\/osx-scripts","old_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"18b2da4683520bb2ece342c5051aee2fefe67514","subject":"added Growl AppleScript Test Script - tests various AppleScript Commands","message":"added Growl AppleScript Test Script - tests various AppleScript Commands\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402374\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e117334bfc574f118617f39e0aebe3997ad067f6","subject":"Update Switch Trim Tool.applescript","message":"Update Switch Trim Tool.applescript\n\nUpdate to Pro Tools 2020.5 with Scrub Trim Tool","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts\/Applications\/Pro Tools\/Switch Trim Tool.applescript","new_file":"AppleScripts\/Applications\/Pro Tools\/Switch Trim Tool.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"11d07fb1575deeef30f71fc95ab07b5eab029bad","subject":"adds a test for the close all notifications command","message":"adds a test for the close all notifications command\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_file":"Bindings\/applescript\/Test GrowlControl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"da88080b5bcf81adee8519e44e44223a355bca8f","subject":"Removed old SpeedDownload support script","message":"Removed old SpeedDownload support script\n","repos":"Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,ylian\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,nochkin\/growl,SalrJupiter\/growl,nochkin\/growl,nochkin\/growl,xhruso00\/growl,chashion\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nagyistoce\/growl,nochkin\/growl,chashion\/growl,chashion\/growl,xhruso00\/growl,nkhorman\/archive-growl,ylian\/growl,CarlosCD\/growl,chashion\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nochkin\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,xhruso00\/growl,ylian\/growl,timbck2\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,tectronics\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,ylian\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,timbck2\/growl,chashion\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,timbck2\/growl,xhruso00\/growl,nagyistoce\/growl,an0nym0u5\/growl,tectronics\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,tectronics\/growl,an0nym0u5\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,nkhorman\/archive-growl,timbck2\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,ylian\/growl,xhruso00\/growl,nagyistoce\/growl,SalrJupiter\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,timbck2\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,CarlosCD\/growl,CarlosCD\/growl","old_file":"Scripts\/Finder Folder Actions\/download growl alert.scpt","new_file":"Scripts\/Finder Folder Actions\/download growl alert.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"19a0fc00f27cc0dde764e6ebce96346f2d6cff14","subject":"ff tab opener creates a new window, first","message":"ff tab opener creates a new window, first\n","repos":"NewAlexandria\/dotfiles,NewAlexandria\/dotfiles,NewAlexandria\/dotfiles","old_file":"mac\/applescripts\/open Safari window tabs in Firefox.scpt","new_file":"mac\/applescripts\/open Safari window tabs in Firefox.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NewAlexandria\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8d37756e7fa124e4d8ea343ed0fc0a9eb7aadb42","subject":"AppleScript checked in as text using git filter","message":"AppleScript checked in as text using git filter\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf.scpt","new_file":"src\/openpdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b6c9eb890106ceebe7befee117da5557154834a5","subject":"Create Excel-CreateFeedStatisticsSpreadsheet.applescript","message":"Create Excel-CreateFeedStatisticsSpreadsheet.applescript\n\nAnother sample script, this time targeting Excel and building a spreadsheet with simple statistics about feeds.\n","repos":"brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen,brentsimmons\/Evergreen","old_file":"AppleScript\/Excel-CreateFeedStatisticsSpreadsheet.applescript","new_file":"AppleScript\/Excel-CreateFeedStatisticsSpreadsheet.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/brentsimmons\/Evergreen.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e7b5c47ac13bb9418cac2d7a29381f84099f94fe","subject":"Added system version check to uninstaller script to enabled localized strings on 10.4 or later","message":"Added system version check to uninstaller script to enabled localized strings on 10.4 or later\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%402693\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c8ffc72dc3da454c9b1a5c519998ff3692256b30","subject":"Add applescript to add tracks to iTunes playlist","message":"Add applescript to add tracks to iTunes playlist\n\nPass the name of the playlist as an argument to `osascript` -- the\napplescript cannot be run directly.\n\nThis is useful in combination with BetterTouchTool etc. for quick\nbuilding of playlists.\n","repos":"montchr\/dotfiles,montchr\/dotfiles,montchr\/dotfiles,montchr\/dotfiles","old_file":"scripts\/itunes\/addToPlaylist.scpt","new_file":"scripts\/itunes\/addToPlaylist.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/montchr\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0af8d24d4c9fd0c54373cd42dc1cde472e72b077","subject":"Eject all disks AppleScript that can be turned into an App too","message":"Eject all disks AppleScript that can be turned into an App too\n","repos":"github\/training-utils,github\/training-utils,githubtraining\/training-utils,jaw6\/training-utils,githubtraining\/training-utils,jaw6\/training-utils,brntbeer\/training-utils,brntbeer\/training-utils","old_file":"ejectalldisks.scpt","new_file":"ejectalldisks.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/github\/training-utils.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"87429f42f1b2595937403656af105444c2273d1e","subject":"fixed issue where if the images weren't in their job folder, the variable fileToDelete was never set, and rm() was called on a undefined variable. Added a conditional to check value of fileToDelete before calling rm().","message":"fixed issue where if the images weren't in their job folder, the variable fileToDelete was never set, and rm() was called on a undefined variable. Added a conditional to check value of fileToDelete before calling rm().\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d4b38a3a18daf0f020259944fc8f69bde09c1ce8","subject":"FIX: Errorhandling","message":"FIX: Errorhandling\n\nIf jscs return nothing: Display dialog \"everything is ok ...\"\nIf jscs data can't be proceed in script: Display dialog \"Oh-oh ... error\"\n","repos":"meengit\/bbdev","old_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs.scpt","new_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"50b513b627826eaa591fefc9928124dd11a32005","subject":"moved into folder","message":"moved into folder\n","repos":"danijeljames\/remparallels","old_file":"Remove Parallels.scpt","new_file":"Remove Parallels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/danijeljames\/remparallels.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3fbc14fa0300f0dd88abe5a65279600831f26217","subject":"Updated Uninstall Tool","message":"Updated Uninstall Tool\n\n- Now removes all of CommandPost\u2019s permissions when you uninstall on\nCatalina.\n","repos":"CommandPost\/CommandPost,CommandPost\/CommandPost,CommandPost\/CommandPost,fcpxhacks\/fcpxhacks,fcpxhacks\/fcpxhacks","old_file":"scripts\/inc\/uninstall\/Uninstall CommandPost.scpt","new_file":"scripts\/inc\/uninstall\/Uninstall CommandPost.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fcpxhacks\/fcpxhacks.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4f09df74179b25d36a37f61a6748d114b74b4214","subject":"added delays to grap the correct titile","message":"added delays to grap the correct titile","repos":"soundcloudlabs\/soundcloud-global-keys","old_file":"toggle_sc.scpt","new_file":"toggle_sc.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/soundcloudlabs\/soundcloud-global-keys.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"756bc2153937c148239a34cb03f4aec71b73e57b","subject":"Change music delimiter","message":"Change music delimiter\n","repos":"anhari\/dotfiles-local,anhari\/dotfiles-local,anhari\/dotfiles-local","old_file":"applescripts\/music.scpt","new_file":"applescripts\/music.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/anhari\/dotfiles-local.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d186650a29ce5184eb5a59eeba358f1eedd9484c","subject":"Update Suspend Automation.applescript","message":"Update Suspend Automation.applescript","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"send to RX\/Suspend Automation.applescript","new_file":"send to RX\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"00561ea33771f07d560db527609890189cdfa8cc","subject":"Create e.scpt","message":"Create e.scpt","repos":"Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e,Aroltd\/e","old_file":"e.scpt","new_file":"e.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Aroltd\/e.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fd12e21bdcc44539c31b0209580d0f2e6fff216e","subject":"Add script to toggle OSX' DND","message":"Add script to toggle OSX' DND\n","repos":"rmehner\/workflow","old_file":"osx-dnd.applescript","new_file":"osx-dnd.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rmehner\/workflow.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"319193115465ae80431fb69e9a9ac3bce992c3a2","subject":"Adding a script which should fairly reliably reproduce the Queuing display crash. May this never rear its ugly head ever again.","message":"Adding a script which should fairly reliably reproduce the Queuing display crash. May this never rear its ugly head ever again.\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl","old_file":"scripts\/Bezel Crash.scpt","new_file":"scripts\/Bezel Crash.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"30b3792c607c56185b53680a96a9648882eb4e0c","subject":"Adding junk ignore if loop. It is only 2 lines to remove if you dislike this.","message":"Adding junk ignore if loop. It is only 2 lines to remove if you dislike this.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40568\n","repos":"PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8c8d16b8d8eaccf16157f3da056118ee80f5c214","subject":"removed unnecessary styling from note creation script","message":"removed unnecessary styling from note creation script\n","repos":"devainandor\/notes-enhance","old_file":"Create Note.scpt","new_file":"Create Note.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/devainandor\/notes-enhance.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b7401e7ccde6d8c029727edcb99bcbdcfdd811cd","subject":"Initall commit of py2app-OSX.scpt","message":"Initall commit of py2app-OSX.scpt\n","repos":"walshie4\/py2app-OSX,walshie4\/py2app-OSX","old_file":"py2app-OSX.scpt","new_file":"py2app-OSX.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/walshie4\/py2app-OSX.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f93a82473aa96b8ccf79e94bc1781ff19674f5f4","subject":"Adding some very modest amount of feedback to the uninstall script to indicate when it is done.","message":"Adding some very modest amount of feedback to the uninstall script to indicate when it is done.\n","repos":"BluePhoenix\/Soundflower,pje\/WavTap,CarlosRDomin\/Soundflower,anthonylauzon\/Soundflower,BluePhoenix\/Soundflower,CarlosRDomin\/Soundflower,RogueAmoeba\/Soundflower-Original,anthonylauzon\/Soundflower,crmne\/Soundflower,anthonylauzon\/Soundflower,CarlosRDomin\/Soundflower,ajrulez\/Soundflower,SiPiggles\/Soundflower,RogueAmoeba\/Soundflower,ajrulez\/Soundflower,wancharle\/Soundflower,pje\/WavTap,anthonylauzon\/Soundflower,RogueAmoeba\/Soundflower,SiPiggles\/Soundflower,ajrulez\/Soundflower,larstobi\/Soundflower,derekjanni\/WavTap,mattingalls\/Soundflower,tahoeRobbo\/Soundflower,mattingalls\/Soundflower,RogueAmoeba\/Soundflower-Original,derekjanni\/WavTap,SiPiggles\/Soundflower,wancharle\/Soundflower,BluePhoenix\/Soundflower,larstobi\/Soundflower,wancharle\/Soundflower,tahoeRobbo\/Soundflower,martijnpieters\/Soundflower,pje\/WavTap,CarlosRDomin\/Soundflower,BluePhoenix\/Soundflower,RogueAmoeba\/Soundflower,martijnpieters\/Soundflower,RogueAmoeba\/Soundflower,martijnpieters\/Soundflower,RogueAmoeba\/Soundflower-Original,crmne\/Soundflower,kawauso\/Soundflower-2x4,tahoeRobbo\/Soundflower,mattingalls\/Soundflower,RogueAmoeba\/Soundflower-Original,tahoeRobbo\/Soundflower,SiPiggles\/Soundflower,mLupine\/SoundflowerBed,martijnpieters\/Soundflower,larstobi\/Soundflower,larstobi\/Soundflower,ajrulez\/Soundflower,mattingalls\/Soundflower,crmne\/Soundflower,crmne\/Soundflower,wancharle\/Soundflower,kawauso\/Soundflower-2x4","old_file":"Tools\/Uninstall Soundflower.scpt","new_file":"Tools\/Uninstall Soundflower.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/SiPiggles\/Soundflower.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"32ab05d1939b597b3401adc5bcd389b1a5ff1e03","subject":"Create oldtrash.applescript","message":"Create oldtrash.applescript","repos":"Mausy5043\/OSX-EmptyTrash","old_file":"oldtrash.applescript","new_file":"oldtrash.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Mausy5043\/OSX-EmptyTrash.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1ba914e4803a0e25326a7258eb84db3cb6793032","subject":"fixed error with if block starting with 'if else' instead of 'if'","message":"fixed error with if block starting with 'if else' instead of 'if'\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Copy Archived Job For Pick & Prints.applescript","new_file":"Copy Archived Job For Pick & Prints.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4fc2ee875c323e13605817e8a86d2f56d6dfc53f","subject":"Add limit for skipping playlists","message":"Add limit for skipping playlists\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts\/Backup to playlist.applescript","new_file":"AppleScripts\/Backup to playlist.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e58a949fda4675d13e98dbc91a94a28c18cea426","subject":"added more advanced mail.app notification applescript (uses sender's picture and tries to avoid notifying spam)","message":"added more advanced mail.app notification applescript (uses sender's picture and tries to avoid notifying spam)\n","repos":"coltonfisher\/coltonfisher-growl,chashion\/growl,CarlosCD\/growl,chashion\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,nkhorman\/archive-growl,chashion\/growl,timbck2\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,tectronics\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nochkin\/growl,xhruso00\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,timbck2\/growl,chashion\/growl,CarlosCD\/growl,SalrJupiter\/growl,tectronics\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,SalrJupiter\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,an0nym0u5\/growl,xhruso00\/growl,nkhorman\/archive-growl,ylian\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,an0nym0u5\/growl,an0nym0u5\/growl,nochkin\/growl,morganestes\/morganestes-growl,xhruso00\/growl,nochkin\/growl,SalrJupiter\/growl,CarlosCD\/growl,ylian\/growl,timbck2\/growl,CarlosCD\/growl,nochkin\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,ylian\/growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,ylian\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,SalrJupiter\/growl,ylian\/growl,nochkin\/growl,ylian\/growl,tectronics\/growl,timbck2\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl","old_file":"Scripts\/Email\/Mail Advanced.scpt","new_file":"Scripts\/Email\/Mail Advanced.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"ec72e369c934bef03867da8ac79282f65105415f","subject":"moved rm out of finder tell block--throws error if inside; fixed problem with old job not getting copied. Forgot to add asterisk when switching to functions","message":"moved rm out of finder tell block--throws error if inside; fixed problem with old job not getting copied. Forgot to add asterisk when switching to functions\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ac4c2671613c26a749b78e942c5c2232301f27ae","subject":"applescript for restarting finder","message":"applescript for restarting finder\n","repos":"jmoody\/LJS,jmoody\/LJS","old_file":"scripts\/restart-finder.applescript","new_file":"scripts\/restart-finder.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jmoody\/LJS.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"3416ba2802bca2d62ab173e829b82d1f822d1572","subject":"Fix - openChrome won't open default browser (using Canary) (#1215)","message":"Fix - openChrome won't open default browser (using Canary) (#1215)\n\n- Use \u201cChrome\u201d instead of \"Google Chrome\", It will try to use current active browser.\r\n otherwise, use default.\r\n- If \u201cChrome\u201ds aren\u2019t running, will fallback to opn(url)","repos":"peopleticker\/create-react-app,reedsa\/create-react-app,HelpfulHuman\/helpful-react-scripts,facebookincubator\/create-react-app,prontotools\/create-react-app,gutenye\/create-react-app,Bogala\/create-react-app-awesome-ts,flybayer\/create-react-webextension,Clearcover\/web-build,jdcrensh\/create-react-app,timlogemann\/create-react-app,HelpfulHuman\/helpful-react-scripts,infernojs\/create-inferno-app,GreenGremlin\/create-react-app,bttf\/create-react-app,IamJoseph\/create-react-app,infernojs\/create-inferno-app,d3ce1t\/create-react-app,viankakrisna\/create-react-app,amido\/create-react-app,appier\/create-react-app,paweljedrzejczyk\/create-react-app,1Body\/prayer-app,CodingZeal\/create-react-app,RobzDoom\/frame_trap,yosharepoint\/react-scripts-ts-sp,timlogemann\/create-react-app,infernojs\/create-inferno-app,TryKickoff\/create-kickoff-app,Timer\/create-react-app,cr101\/create-react-app,igetgames\/spectacle-create-react-app,lopezator\/create-react-app,jayphelps\/create-react-app,DivineGod\/create-react-app,lolaent\/create-react-app,mikechau\/create-react-app,paweljedrzejczyk\/create-react-app,romaindso\/create-react-app,picter\/create-react-app,1Body\/prayer-app,g3r4n\/create-esri-react-app,shrynx\/react-super-scripts,devex-web-frontend\/create-react-app-dx,dpoineau\/create-react-app,Place1\/create-react-app-typescript,picter\/create-react-app,igetgames\/spectacle-create-react-app,ConnectedHomes\/create-react-web-app,Exocortex\/create-react-app,andrewmaudsley\/create-react-app,ro-savage\/create-react-app,kst404\/e8e-react-scripts,iamdoron\/create-react-app,digitalorigin\/create-react-app,sigmacomputing\/create-react-app,liamhu\/create-react-app,Psychwire\/create-react-app,brysgo\/create-react-app,facebookincubator\/create-react-app,TondaHack\/create-react-app,devex-web-frontend\/create-react-app-dx,appier\/create-react-app,prometheusresearch\/create-react-app,maletor\/create-react-app,flybayer\/create-react-webextension,Timer\/create-react-app,mangomint\/create-react-app,TryKickoff\/create-kickoff-app,dsopel94\/create-react-app,sigmacomputing\/create-react-app,0xaio\/create-react-app,Clearcover\/web-build,kst404\/e8e-react-scripts,Exocortex\/create-react-app,ConnectedHomes\/create-react-web-app,jdcrensh\/create-react-app,iamdoron\/create-react-app,TryKickoff\/create-kickoff-app,dpoineau\/create-react-app,romaindso\/create-react-app,jayphelps\/create-react-app,mikechau\/create-react-app,powerreviews\/create-react-app,andrewmaudsley\/create-react-app,just-boris\/create-preact-app,prometheusresearch\/create-react-app,IamJoseph\/create-react-app,Psychwire\/create-react-app,johnslay\/create-react-app,cr101\/create-react-app,yosharepoint\/react-scripts-ts-sp,matart15\/create-react-app,liamhu\/create-react-app,CodingZeal\/create-react-app,TondaHack\/create-react-app,just-boris\/create-preact-app,IamJoseph\/create-react-app,DivineGod\/create-react-app,Exocortex\/create-react-app,mangomint\/create-react-app,Psychwire\/create-react-app,ro-savage\/create-react-app,GreenGremlin\/create-react-app,ontruck\/create-react-app,Sonu-sj\/cardMatcher,TondaHack\/create-react-app,HelpfulHuman\/helpful-react-scripts,jdcrensh\/create-react-app,flybayer\/create-react-webextension,d3ce1t\/create-react-app,cr101\/create-react-app,paweljedrzejczyk\/create-react-app,GreenGremlin\/create-react-app,g3r4n\/create-esri-react-app,appier\/create-react-app,josephfinlayson\/create-react-app,liamhu\/create-react-app,ontruck\/create-react-app,mikechau\/create-react-app,scyankai\/create-react-app,christiantinauer\/create-react-app,Bogala\/create-react-app-awesome-ts,dpoineau\/create-react-app,DivineGod\/create-react-app,tharakawj\/create-react-app,mangomint\/create-react-app,shrynx\/react-super-scripts,prontotools\/create-react-app,tharakawj\/create-react-app,iamdoron\/create-react-app,d3ce1t\/create-react-app,christiantinauer\/create-react-app,Timer\/create-react-app,christiantinauer\/create-react-app,viankakrisna\/create-react-app,ConnectedHomes\/create-react-web-app,0xaio\/create-react-app,prometheusresearch\/create-react-app,svrcekmichal\/react-scripts,Bogala\/create-react-app-awesome-ts,gutenye\/create-react-app,in2core\/create-react-app,andrewmaudsley\/create-react-app,amido\/create-react-app,1Body\/prayer-app,0xaio\/create-react-app,just-boris\/create-preact-app,peopleticker\/create-react-app,matart15\/create-react-app,xiaohu-developer\/create-react-app,kst404\/e8e-react-scripts,CodingZeal\/create-react-app,Sonu-sj\/cardMatcher,josephfinlayson\/create-react-app,svrcekmichal\/react-scripts,dsopel94\/create-react-app,Place1\/create-react-app-typescript,shrynx\/react-super-scripts,yosharepoint\/react-scripts-ts-sp,tharakawj\/create-react-app,timlogemann\/create-react-app,g3r4n\/create-esri-react-app,lolaent\/create-react-app,GreenGremlin\/create-react-app,in2core\/create-react-app,jayphelps\/create-react-app,brysgo\/create-react-app,svrcekmichal\/react-scripts,peopleticker\/create-react-app,Timer\/create-react-app,igetgames\/spectacle-create-react-app,in2core\/create-react-app,prontotools\/create-react-app,lopezator\/create-react-app,yosharepoint\/react-scripts-ts-sp,xiaohu-developer\/create-react-app,RobzDoom\/frame_trap,gutenye\/create-react-app,maletor\/create-react-app,Place1\/create-react-app-typescript,devex-web-frontend\/create-react-app-dx,stockspiking\/create-react-app,stockspiking\/create-react-app,picter\/create-react-app,timlogemann\/create-react-app,Bogala\/create-react-app-awesome-ts,1Body\/prayer-app,sigmacomputing\/create-react-app,lolaent\/create-react-app,facebookincubator\/create-react-app,reedsa\/create-react-app,Sonu-sj\/cardMatcher,maletor\/create-react-app,d3ce1t\/create-react-app,scyankai\/create-react-app,digitalorigin\/create-react-app,christiantinauer\/create-react-app,scyankai\/create-react-app,josephfinlayson\/create-react-app,bttf\/create-react-app,mangomint\/create-react-app,dsopel94\/create-react-app,romaindso\/create-react-app,ConnectedHomes\/create-react-web-app,stockspiking\/create-react-app,ontruck\/create-react-app,ro-savage\/create-react-app,powerreviews\/create-react-app,jdcrensh\/create-react-app,Place1\/create-react-app-typescript,xiaohu-developer\/create-react-app,lopezator\/create-react-app,brysgo\/create-react-app,reedsa\/create-react-app,viankakrisna\/create-react-app,bttf\/create-react-app,devex-web-frontend\/create-react-app-dx,amido\/create-react-app,matart15\/create-react-app,RobzDoom\/frame_trap,johnslay\/create-react-app,powerreviews\/create-react-app,Clearcover\/web-build,digitalorigin\/create-react-app,johnslay\/create-react-app","old_file":"packages\/react-dev-utils\/openChrome.applescript","new_file":"packages\/react-dev-utils\/openChrome.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Psychwire\/create-react-app.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c674439d951104562c1b295cbc917610f5df9396","subject":"Removed debug logging","message":"Removed debug logging\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/updater.applescript","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/updater.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fe7db236c15cd3091ceb0425a111232b66f600d5","subject":"Removed \"localized string\" from uninstaller script because it's only available on 10.4 or later.","message":"Removed \"localized string\" from uninstaller script because it's only available on 10.4 or later.\n","repos":"nagyistoce\/growl,tectronics\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,morganestes\/morganestes-growl,xhruso00\/growl,timbck2\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,chashion\/growl,CarlosCD\/growl,nkhorman\/archive-growl,chashion\/growl,nkhorman\/archive-growl,xhruso00\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,ylian\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,chashion\/growl,SalrJupiter\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,timbck2\/growl,timbck2\/growl,nkhorman\/archive-growl,tectronics\/growl,chashion\/growl,SalrJupiter\/growl,nagyistoce\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,CarlosCD\/growl,SalrJupiter\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,xhruso00\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,CarlosCD\/growl,chashion\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,timbck2\/growl,nkhorman\/archive-growl,CarlosCD\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,ylian\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,SalrJupiter\/growl,nochkin\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,xhruso00\/growl,nochkin\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,tectronics\/growl,tectronics\/growl,CarlosCD\/growl,tectronics\/growl,Shalaco\/shalzers-growl,ylian\/growl,xhruso00\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"eb42da0334b91cd7b2b52862f642500cbb4e0c2d","subject":"Adding a powermail script.","message":"Adding a powermail script.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40650\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Scripts\/Email\/PowerMail.scpt","new_file":"Scripts\/Email\/PowerMail.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f8edc275124815c72f04c62645f6d30bfa48c6f8","subject":"Quoting AppleScript folder input for #22","message":"Quoting AppleScript folder input for #22\n","repos":"vanda\/DigitalLabels,vanda\/DigitalLabels","old_file":"application\/Build Digital Labels.scpt","new_file":"application\/Build Digital Labels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/vanda\/DigitalLabels.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a07cd3f00d30d98136d7c0060900654464e993b0","subject":"languages\/littecode\/applescript\/call_finder.scpt","message":"languages\/littecode\/applescript\/call_finder.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/call_finder.scpt","new_file":"languages\/littecode\/applescript\/call_finder.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"cccdfda5211aa810867ccae98984bb34863e6239","subject":"removed old commented out code from supermerge 1 script","message":"removed old commented out code from supermerge 1 script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b1e6d0dbd2a17afef11d1668dabe4d40d36fe330","subject":"Create DirectJarvis.applescript","message":"Create DirectJarvis.applescript","repos":"gskielian\/Jarvis","old_file":"DirectJarvis.applescript","new_file":"DirectJarvis.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gskielian\/Jarvis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1a9e1ed6e495a759ae8ba4d245160c6d3be63fb2","subject":"Added loop to replace newlines with spaces in the art instructions column of the DB","message":"Added loop to replace newlines with spaces in the art instructions column of the DB\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"57348a4028c33c227f31de6c5cf0f93369bd4a86","subject":"Fixed name of Chome window, Connects to #297","message":"Fixed name of Chome window, Connects to #297\n\nSummary:\nHi!\n\nI have the same problem as described here https:\/\/github.com\/facebook\/react-native\/issues\/297\nIt could occurs after restarting `packager.sh` or `debuger-ui` page.\n\nI found simple solution that works for me, but I am not 100% sure it will works for any user with this problem.\n\nHow could this be tested automatically?\nCloses https:\/\/github.com\/facebook\/react-native\/pull\/1101\nGithub Author: Evgen Filatov <evgen.filatov@gmail.com>\n\nTest Plan: Imported from GitHub, without a `Test Plan:` line.\n","repos":"cpunion\/react-native,MattFoley\/react-native,hharnisc\/react-native,sospartan\/react-native,strwind\/react-native,mcanthony\/react-native,olivierlesnicki\/react-native,LytayTOUCH\/react-native,bogdantmm92\/react-native,eliagrady\/react-native,hoangpham95\/react-native,pengleelove\/react-native,a2\/react-native,janicduplessis\/react-native,pglotov\/react-native,cosmith\/react-native,exponentjs\/react-native,Purii\/react-native,mcrooks88\/react-native,hwsyy\/react-native,bsansouci\/react-native,maskkid\/react-native,makadaw\/react-native,Applied-Duality\/react-native,elliottsj\/react-native,josebalius\/react-native,zvona\/react-native,chirag04\/react-native,bright-sparks\/react-native,taydakov\/react-native,wangyzyoga\/react-native,christopherdro\/react-native,manhvvhtth\/react-native,tsjing\/react-native,catalinmiron\/react-native,chnfeeeeeef\/react-native,doochik\/react-native,imjerrybao\/react-native,tmwoodson\/react-native,jeffchienzabinet\/react-native,genome21\/react-native,quyixia\/react-native,liuhong1happy\/react-native,bowlofstew\/react-native,mukesh-kumar1905\/react-native,BretJohnson\/react-native,roy0914\/react-native,levic92\/react-native,hanxiaofei\/react-native,rwwarren\/react-native,goodheart\/react-native,devknoll\/react-native,averted\/react-native,steben\/react-native,mironiasty\/react-native,gilesvangruisen\/react-native,tszajna0\/react-native,pjcabrera\/react-native,appersonlabs\/react-native,christopherdro\/react-native,liufeigit\/react-native,yelled3\/react-native,liangmingjie\/react-native,futbalguy\/react-native,skevy\/react-native,sjchakrav\/react-native,Emilios1995\/react-native,enaqx\/react-native,hassanabidpk\/react-native,Tredsite\/react-native,booxood\/react-native,Andreyco\/react-native,programming086\/react-native,javache\/react-native,guanghuili\/react-native,ehd\/react-native,shinate\/react-native,spicyj\/react-native,evansolomon\/react-native,dikaiosune\/react-native,ehd\/react-native,shrutic123\/react-native,sixtomay\/react-native,jabinwang\/react-native,liduanw\/react-native,puf\/react-native,liufeigit\/react-native,hanxiaofei\/react-native,zuolangguo\/react-native,aziz-boudi4\/react-native,andrewljohnson\/react-native,Maxwell2022\/react-native,bradbumbalough\/react-native,leopardpan\/react-native,cez213\/react-native,krock01\/react-native,carcer\/react-native,imDangerous\/react-native,lstNull\/react-native,chapinkapa\/react-native,vincentqiu\/react-native,christer155\/react-native,yimouleng\/react-native,Loke155\/react-native,programming086\/react-native,csudanthi\/react-native,JulienThibeaut\/react-native,shrutic\/react-native,evilemon\/react-native,ehd\/react-native,marlonandrade\/react-native,pvinis\/react-native-desktop,jibonpab\/react-native,pallyoung\/react-native,ramoslin02\/react-native,ludaye123\/react-native,alinz\/react-native,neeraj-singh\/react-native,skevy\/react-native,exponentjs\/react-native,unknownexception\/react-native,j27cai\/react-native,gitim\/react-native,common2015\/react-native,dabit3\/react-native,srounce\/react-native,catalinmiron\/react-native,soxunyi\/react-native,androidgilbert\/react-native,elliottsj\/react-native,mway08\/react-native,rantianhua\/react-native,edward\/react-native,guanghuili\/react-native,DannyvanderJagt\/react-native,waynett\/react-native,taydakov\/react-native,udnisap\/react-native,lprhodes\/react-native,ipmobiletech\/react-native,codejet\/react-native,dubert\/react-native,kamronbatman\/react-native,mosch\/react-native,aziz-boudi4\/react-native,jackeychens\/react-native,neeraj-singh\/react-native,billhello\/react-native,gauribhoite\/react-native,jbaumbach\/react-native,Hkmu\/react-native,lloydho\/react-native,evansolomon\/react-native,formatlos\/react-native,huangsongyan\/react-native,clozr\/react-native,formatlos\/react-native,wangcan2014\/react-native,Poplava\/react-native,alvarojoao\/react-native,wesley1001\/react-native,BossKing\/react-native,mcanthony\/react-native,janicduplessis\/react-native,huip\/react-native,rodneyss\/react-native,ipmobiletech\/react-native,yjyi\/react-native,booxood\/react-native,dvcrn\/react-native,bouk\/react-native,sahrens\/react-native,nbcnews\/react-native,Zagorakiss\/react-native,alin23\/react-native,farazs\/react-native,pvinis\/react-native-desktop,eddiemonge\/react-native,Poplava\/react-native,alantrrs\/react-native,yusefnapora\/react-native,jaggs6\/react-native,roy0914\/react-native,supercocoa\/react-native,popovsh6\/react-native,Flickster42490\/react-native,Iragne\/react-native,kesha-antonov\/react-native,fw1121\/react-native,imjerrybao\/react-native,chetstone\/react-native,rodneyss\/react-native,emodeqidao\/react-native,apprennet\/react-native,nsimmons\/react-native,bradbumbalough\/react-native,pcottle\/react-native,woshili1\/react-native,vjeux\/react-native,zuolangguo\/react-native,spicyj\/react-native,Iragne\/react-native,mrngoitall\/react-native,eduardinni\/react-native,sahat\/react-native,pandiaraj44\/react-native,tgoldenberg\/react-native,glovebx\/react-native,shlomiatar\/react-native,hzgnpu\/react-native,forcedotcom\/react-native,Hkmu\/react-native,bradbumbalough\/react-native,qingsong-xu\/react-native,machard\/react-native,jadbox\/react-native,imWildCat\/react-native,Emilios1995\/react-native,YinshawnRao\/react-native,lokilandon\/react-native,lwansbrough\/react-native,tadeuzagallo\/react-native,liangmingjie\/react-native,andrewljohnson\/react-native,patoroco\/react-native,abdelouahabb\/react-native,misakuo\/react-native,dalinaum\/react-native,timfpark\/react-native,dikaiosune\/react-native,ptmt\/react-native-macos,bouk\/react-native,heyjim89\/react-native,dylanchann\/react-native,Bhullnatik\/react-native,foghina\/react-native,roth1002\/react-native,darkrishabh\/react-native,prathamesh-sonpatki\/react-native,NZAOM\/react-native,WilliamRen\/react-native,chirag04\/react-native,hassanabidpk\/react-native,F2EVarMan\/react-native,quuack\/react-native,waynett\/react-native,wlrhnh-David\/react-native,kesha-antonov\/react-native,ndejesus1227\/react-native,woshili1\/react-native,Suninus\/react-native,imWildCat\/react-native,ChiMarvine\/react-native,tsdl2013\/react-native,NunoEdgarGub1\/react-native,cosmith\/react-native,wenpkpk\/react-native,hike2008\/react-native,luqin\/react-native,negativetwelve\/react-native,noif\/react-native,doochik\/react-native,pallyoung\/react-native,bestwpw\/react-native,leeyeh\/react-native,jevakallio\/react-native,csudanthi\/react-native,shrimpy\/react-native,Applied-Duality\/react-native,doochik\/react-native,myntra\/react-native,noif\/react-native,yangchengwork\/react-native,folist\/react-native,Reparadocs\/react-native,Guardiannw\/react-native,sekouperry\/react-native,jhen0409\/react-native,skatpgusskat\/react-native,adrie4mac\/react-native,Heart2009\/react-native,jhen0409\/react-native,myntra\/react-native,hike2008\/react-native,josebalius\/react-native,kamronbatman\/react-native,jacobbubu\/react-native,CntChen\/react-native,CntChen\/react-native,jackeychens\/react-native,qq644531343\/react-native,kushal\/react-native,wdxgtsh\/react-native,qingfeng\/react-native,kfiroo\/react-native,jmstout\/react-native,johnv315\/react-native,xiaoking\/react-native,Poplava\/react-native,nanpian\/react-native,rollokb\/react-native,fw1121\/react-native,cosmith\/react-native,jonesgithub\/react-native,yzarubin\/react-native,corbt\/react-native,ivanph\/react-native,chiefr\/react-native,yushiwo\/react-native,Bhullnatik\/react-native,almost\/react-native,adamterlson\/react-native,rxb\/react-native,wustxing\/react-native,popovsh6\/react-native,monyxie\/react-native,csatf\/react-native,quyixia\/react-native,cosmith\/react-native,shadow000902\/react-native,Tredsite\/react-native,sonnylazuardi\/react-native,Shopify\/react-native,Reparadocs\/react-native,olivierlesnicki\/react-native,rkumar3147\/react-native,alinz\/react-native,htc2u\/react-native,Intellicode\/react-native,orenklein\/react-native,negativetwelve\/react-native,roy0914\/react-native,21451061\/react-native,aljs\/react-native,zyvas\/react-native,kentaromiura\/react-native,oren\/react-native,geoffreyfloyd\/react-native,woshili1\/react-native,shadow000902\/react-native,leopardpan\/react-native,taydakov\/react-native,kfiroo\/react-native,Suninus\/react-native,DerayGa\/react-native,jeromjoy\/react-native,liuhong1happy\/react-native,yangchengwork\/react-native,nktpro\/react-native,common2015\/react-native,dalinaum\/react-native,Applied-Duality\/react-native,MonirAbuHilal\/react-native,jasonnoahchoi\/react-native,brentvatne\/react-native,lokilandon\/react-native,exponent\/react-native,soxunyi\/react-native,dralletje\/react-native,waynett\/react-native,garrows\/react-native,PhilippKrone\/react-native,fengshao0907\/react-native,liuzechen\/react-native,HSFGitHub\/react-native,boopathi\/react-native,onesfreedom\/react-native,udnisap\/react-native,eddiemonge\/react-native,liuzechen\/react-native,j27cai\/react-native,zenlambda\/react-native,dfala\/react-native,urvashi01\/react-native,liduanw\/react-native,pglotov\/react-native,nickhudkins\/react-native,Poplava\/react-native,Guardiannw\/react-native,hesling\/react-native,j27cai\/react-native,frantic\/react-native,dubert\/react-native,ide\/react-native,negativetwelve\/react-native,pletcher\/react-native,shrimpy\/react-native,jaggs6\/react-native,lmorchard\/react-native,dut3062796s\/react-native,Reparadocs\/react-native,Applied-Duality\/react-native,rkumar3147\/react-native,dralletje\/react-native,negativetwelve\/react-native,mway08\/react-native,vjeux\/react-native,ajwhite\/react-native,rantianhua\/react-native,edward\/react-native,sixtomay\/react-native,abdelouahabb\/react-native,dvcrn\/react-native,maskkid\/react-native,lelandrichardson\/react-native,imDangerous\/react-native,gitim\/react-native,sonnylazuardi\/react-native,yushiwo\/react-native,machard\/react-native,PlexChat\/react-native,wenpkpk\/react-native,patoroco\/react-native,dubert\/react-native,billhello\/react-native,chacbumbum\/react-native,hengcj\/react-native,popovsh6\/react-native,F2EVarMan\/react-native,dvcrn\/react-native,programming086\/react-native,luqin\/react-native,christer155\/react-native,j27cai\/react-native,jekey\/react-native,southasia\/react-native,InterfaceInc\/react-native,roth1002\/react-native,callstack-io\/react-native,sahat\/react-native,HealthyWealthy\/react-native,ptmt\/react-native,iodine\/react-native,shrimpy\/react-native,insionng\/react-native,popovsh6\/react-native,lendup\/react-native,peterp\/react-native,androidgilbert\/react-native,roy0914\/react-native,xiaoking\/react-native,yimouleng\/react-native,ModusCreateOrg\/react-native,MonirAbuHilal\/react-native,gabrielbellamy\/react-native,sjchakrav\/react-native,PlexChat\/react-native,apprennet\/react-native,lee-my\/react-native,apprennet\/react-native,apprennet\/react-native,jasonals\/react-native,pandiaraj44\/react-native,hydraulic\/react-native,CodeLinkIO\/react-native,shadow000902\/react-native,charmingzuo\/react-native,jadbox\/react-native,futbalguy\/react-native,zhangxq5012\/react-native,machard\/react-native,dut3062796s\/react-native,ProjectSeptemberInc\/react-native,sghiassy\/react-native,glovebx\/react-native,madusankapremaratne\/react-native,nevir\/react-native,Rowandjj\/react-native,shadow000902\/react-native,aziz-boudi4\/react-native,ortutay\/react-native,rebeccahughes\/react-native,wustxing\/react-native,ipmobiletech\/react-native,yjh0502\/react-native,Guardiannw\/react-native,adamjmcgrath\/react-native,yjyi\/react-native,hydraulic\/react-native,exponentjs\/rex,zuolangguo\/react-native,beni55\/react-native,JackLeeMing\/react-native,alpz5566\/react-native,nanpian\/react-native,hwsyy\/react-native,futbalguy\/react-native,mchinyakov\/react-native,booxood\/react-native,mrngoitall\/react-native,yangchengwork\/react-native,Furzikov\/react-native,thotegowda\/react-native,htc2u\/react-native,hzgnpu\/react-native,bright-sparks\/react-native,tarkus\/react-native-appletv,peterp\/react-native,tgriesser\/react-native,CodeLinkIO\/react-native,CntChen\/react-native,charmingzuo\/react-native,bradens\/react-native,Jericho25\/react-native,ludaye123\/react-native,DanielMSchmidt\/react-native,Flickster42490\/react-native,ptmt\/react-native-macos,tgoldenberg\/react-native,supercocoa\/react-native,patoroco\/react-native,gabrielbellamy\/react-native,mbrock\/react-native,rickbeerendonk\/react-native,tsdl2013\/react-native,Esdeath\/react-native,htc2u\/react-native,salanki\/react-native,stan229\/react-native,Tredsite\/react-native,MonirAbuHilal\/react-native,chetstone\/react-native,thstarshine\/react-native,liubko\/react-native,tgf229\/react-native,kotdark\/react-native,slongwang\/react-native,nsimmons\/react-native,IveWong\/react-native,affinityis\/react-native,aaron-goshine\/react-native,ouyangwenfeng\/react-native,mihaigiurgeanu\/react-native,bright-sparks\/react-native,averted\/react-native,almost\/react-native,a2\/react-native,chacbumbum\/react-native,mukesh-kumar1905\/react-native,jeanblanchard\/react-native,rantianhua\/react-native,tsdl2013\/react-native,Livyli\/react-native,jaggs6\/react-native,jaredly\/react-native,gegaosong\/react-native,NunoEdgarGub1\/react-native,nickhargreaves\/react-native,kfiroo\/react-native,jabinwang\/react-native,chentsulin\/react-native,yjh0502\/react-native,neeraj-singh\/react-native,jbaumbach\/react-native,tsjing\/react-native,hharnisc\/react-native,liduanw\/react-native,csatf\/react-native,JoeStanton\/react-native,quuack\/react-native,facebook\/react-native,chrisbutcher\/react-native,chentsulin\/react-native,liduanw\/react-native,fw1121\/react-native,MattFoley\/react-native,WilliamRen\/react-native,chirag04\/react-native,jeffchienzabinet\/react-native,geoffreyfloyd\/react-native,liangmingjie\/react-native,bright-sparks\/react-native,cmhsu\/react-native,sheep902\/react-native,futbalguy\/react-native,mchinyakov\/react-native,Serfenia\/react-native,judastree\/react-native,catalinmiron\/react-native,mjetek\/react-native,zyvas\/react-native,21451061\/react-native,soulcm\/react-native,leegilon\/react-native,tgoldenberg\/react-native,pjcabrera\/react-native,chengky\/react-native,billhello\/react-native,quuack\/react-native,lendup\/react-native,shinate\/react-native,huip\/react-native,mqli\/react-native,Jonekee\/react-native,CodeLinkIO\/react-native,gs-akhan\/react-native,Rowandjj\/react-native,liuzechen\/react-native,clooth\/react-native,mironiasty\/react-native,ptomasroos\/react-native,ChristianHersevoort\/react-native,appersonlabs\/react-native,mcrooks88\/react-native,sdiaz\/react-native,vjeux\/react-native,MetSystem\/react-native,Maxwell2022\/react-native,pickhardt\/react-native,janicduplessis\/react-native,wlrhnh-David\/react-native,simple88\/react-native,chapinkapa\/react-native,jasonals\/react-native,chengky\/react-native,NunoEdgarGub1\/react-native,johnv315\/react-native,janicduplessis\/react-native,vlrchtlt\/react-native,arbesfeld\/react-native,kundanjadhav\/react-native,threepointone\/react-native-1,jeffchienzabinet\/react-native,luqin\/react-native,DannyvanderJagt\/react-native,pjcabrera\/react-native,glovebx\/react-native,Poplava\/react-native,chrisbutcher\/react-native,rickbeerendonk\/react-native,devknoll\/react-native,sahrens\/react-native,corbt\/react-native,spyrx7\/react-native,code0100fun\/react-native,YComputer\/react-native,goodheart\/react-native,sudhirj\/react-native,wildKids\/react-native,TChengZ\/react-native,sudhirj\/react-native,waynett\/react-native,codejet\/react-native,ptmt\/react-native-macos,yangshangde\/react-native,salanki\/react-native,michaelchucoder\/react-native,1988fei\/react-native,wenpkpk\/react-native,chnfeeeeeef\/react-native,wenpkpk\/react-native,elliottsj\/react-native,adamkrell\/react-native,judastree\/react-native,CntChen\/react-native,YotrolZ\/react-native,bestwpw\/react-native,satya164\/react-native,Wingie\/react-native,LytayTOUCH\/react-native,huip\/react-native,billhello\/react-native,appersonlabs\/react-native,mrspeaker\/react-native,lokilandon\/react-native,InterfaceInc\/react-native,nsimmons\/react-native,nathanajah\/react-native,ivanph\/react-native,wangjiangwen\/react-native,cazacugmihai\/react-native,ipmobiletech\/react-native,FionaWong\/react-native,madusankapremaratne\/react-native,glovebx\/react-native,TChengZ\/react-native,ndejesus1227\/react-native,DannyvanderJagt\/react-native,wangziqiang\/react-native,Heart2009\/react-native,jasonals\/react-native,charlesvinette\/react-native,BossKing\/react-native,Reparadocs\/react-native,gre\/react-native,esauter5\/react-native,bowlofstew\/react-native,ptmt\/react-native,Lohit9\/react-native,bradens\/react-native,sunblaze\/react-native,Guardiannw\/react-native,DanielMSchmidt\/react-native,gegaosong\/react-native,vincentqiu\/react-native,dubert\/react-native,iodine\/react-native,mariusbutuc\/react-native,lmorchard\/react-native,cazacugmihai\/react-native,shinate\/react-native,Rowandjj\/react-native,Jericho25\/react-native,chentsulin\/react-native,pitatensai\/react-native,bsansouci\/react-native,jordanbyron\/react-native,spyrx7\/react-native,oren\/react-native,shlomiatar\/react-native,dylanchann\/react-native,michaelchucoder\/react-native,exponent\/react-native,sheep902\/react-native,chengky\/react-native,imDangerous\/react-native,magnus-bergman\/react-native,callstack-io\/react-native,johnv315\/react-native,miracle2k\/react-native,bradens\/react-native,patoroco\/react-native,ludaye123\/react-native,ehd\/react-native,csatf\/react-native,rodneyss\/react-native,exponentjs\/react-native,jmhdez\/react-native,roy0914\/react-native,nsimmons\/react-native,josebalius\/react-native,BretJohnson\/react-native,pickhardt\/react-native,dralletje\/react-native,HSFGitHub\/react-native,devknoll\/react-native,InterfaceInc\/react-native,kotdark\/react-native,tsdl2013\/react-native,garydonovan\/react-native,liuhong1happy\/react-native,Lucifer-Kim\/react-native,pengleelove\/react-native,yusefnapora\/react-native,Rowandjj\/react-native,chirag04\/react-native,yutail\/react-native,adamkrell\/react-native,Zagorakiss\/react-native,eduardinni\/react-native,kesha-antonov\/react-native,sunblaze\/react-native,wildKids\/react-native,leopardpan\/react-native,programming086\/react-native,lwansbrough\/react-native,pjcabrera\/react-native,PhilippKrone\/react-native,catalinmiron\/react-native,bsansouci\/react-native,cxfeng1\/react-native,nickhargreaves\/react-native,zhangxq5012\/react-native,pickhardt\/react-native,charlesvinette\/react-native,Wingie\/react-native,sghiassy\/react-native,Bhullnatik\/react-native,mironiasty\/react-native,eduvon0220\/react-native,fengshao0907\/react-native,adamjmcgrath\/react-native,guanghuili\/react-native,manhvvhtth\/react-native,martinbigio\/react-native,imWildCat\/react-native,corbt\/react-native,PlexChat\/react-native,orenklein\/react-native,hoastoolshop\/react-native,liubko\/react-native,exponentjs\/rex,ivanph\/react-native,jeanblanchard\/react-native,kotdark\/react-native,imDangerous\/react-native,peterp\/react-native,tadeuzagallo\/react-native,programming086\/react-native,Suninus\/react-native,cmhsu\/react-native,nktpro\/react-native,lstNull\/react-native,MattFoley\/react-native,noif\/react-native,martinbigio\/react-native,hoangpham95\/react-native,kujohn\/react-native,naoufal\/react-native,liubko\/react-native,adamjmcgrath\/react-native,lendup\/react-native,rantianhua\/react-native,YueRuo\/react-native,zvona\/react-native,mcrooks88\/react-native,callstack-io\/react-native,dvcrn\/react-native,kassens\/react-native,jadbox\/react-native,alantrrs\/react-native,yushiwo\/react-native,YinshawnRao\/react-native,shrutic\/react-native,gabrielbellamy\/react-native,sdiaz\/react-native,bright-sparks\/react-native,jordanbyron\/react-native,pandiaraj44\/react-native,wangziqiang\/react-native,nbcnews\/react-native,Purii\/react-native,timfpark\/react-native,stan229\/react-native,patoroco\/react-native,spyrx7\/react-native,MonirAbuHilal\/react-native,lanceharper\/react-native,sdiaz\/react-native,adrie4mac\/react-native,chetstone\/react-native,ldehai\/react-native,Maxwell2022\/react-native,rushidesai\/react-native,Srikanth4\/react-native,codejet\/react-native,kamronbatman\/react-native,supercocoa\/react-native,mukesh-kumar1905\/react-native,mironiasty\/react-native,lucyywang\/react-native,shrimpy\/react-native,liduanw\/react-native,codejet\/react-native,misakuo\/react-native,chirag04\/react-native,ljhsai\/react-native,mariusbutuc\/react-native,makadaw\/react-native,chsj1\/react-native,chenbk85\/react-native,spicyj\/react-native,madusankapremaratne\/react-native,narlian\/react-native,hydraulic\/react-native,MetSystem\/react-native,sudhirj\/react-native,CodeLinkIO\/react-native,Srikanth4\/react-native,dylanchann\/react-native,Hkmu\/react-native,devknoll\/react-native,cpunion\/react-native,popovsh6\/react-native,unknownexception\/react-native,HSFGitHub\/react-native,MetSystem\/react-native,pcottle\/react-native,IveWong\/react-native,F2EVarMan\/react-native,KJlmfe\/react-native,sdiaz\/react-native,averted\/react-native,hike2008\/react-native,olivierlesnicki\/react-native,gauribhoite\/react-native,fish24k\/react-native,mcanthony\/react-native,ChristianHersevoort\/react-native,sixtomay\/react-native,wdxgtsh\/react-native,adamjmcgrath\/react-native,jeanblanchard\/react-native,zvona\/react-native,cpunion\/react-native,JulienThibeaut\/react-native,philonpang\/react-native,genome21\/react-native,guanghuili\/react-native,barakcoh\/react-native,wangziqiang\/react-native,garydonovan\/react-native,ProjectSeptemberInc\/react-native,beni55\/react-native,zenlambda\/react-native,callstack-io\/react-native,eliagrady\/react-native,tgoldenberg\/react-native,liuhong1happy\/react-native,kassens\/react-native,farazs\/react-native,nathanajah\/react-native,lprhodes\/react-native,callstack-io\/react-native,dizlexik\/react-native,Heart2009\/react-native,F2EVarMan\/react-native,luqin\/react-native,aljs\/react-native,xiayz\/react-native,doochik\/react-native,mtford90\/react-native,nickhudkins\/react-native,F2EVarMan\/react-native,magnus-bergman\/react-native,formatlos\/react-native,kentaromiura\/react-native,charmingzuo\/react-native,jaredly\/react-native,sarvex\/react-native,BretJohnson\/react-native,ericvera\/react-native,satya164\/react-native,luqin\/react-native,LytayTOUCH\/react-native,salanki\/react-native,xiaoking\/react-native,DenisIzmaylov\/react-native,kujohn\/react-native,hassanabidpk\/react-native,chsj1\/react-native,orenklein\/react-native,oren\/react-native,yjyi\/react-native,1988fei\/react-native,kesha-antonov\/react-native,Swaagie\/react-native,sonnylazuardi\/react-native,corbt\/react-native,peterp\/react-native,gauribhoite\/react-native,srounce\/react-native,pletcher\/react-native,enaqx\/react-native,charmingzuo\/react-native,dfala\/react-native,jekey\/react-native,sekouperry\/react-native,abdelouahabb\/react-native,irisli\/react-native,jeffchienzabinet\/react-native,ndejesus1227\/react-native,cdlewis\/react-native,sonnylazuardi\/react-native,xinthink\/react-native,gilesvangruisen\/react-native,krock01\/react-native,compulim\/react-native,Swaagie\/react-native,yangshangde\/react-native,pitatensai\/react-native,cosmith\/react-native,adamterlson\/react-native,wangziqiang\/react-native,rwwarren\/react-native,mrspeaker\/react-native,kushal\/react-native,compulim\/react-native,JackLeeMing\/react-native,YinshawnRao\/react-native,naoufal\/react-native,futbalguy\/react-native,dabit3\/react-native,ramoslin02\/react-native,bodefuwa\/react-native,hengcj\/react-native,tszajna0\/react-native,alpz5566\/react-native,sospartan\/react-native,NZAOM\/react-native,JoeStanton\/react-native,code0100fun\/react-native,chentsulin\/react-native,christer155\/react-native,emodeqidao\/react-native,soulcm\/react-native,puf\/react-native,yangchengwork\/react-native,jeromjoy\/react-native,FionaWong\/react-native,cpunion\/react-native,Wingie\/react-native,wlrhnh-David\/react-native,bodefuwa\/react-native,bowlofstew\/react-native,yelled3\/react-native,htc2u\/react-native,orenklein\/react-native,wangziqiang\/react-native,jeffchienzabinet\/react-native,JasonZ321\/react-native,YueRuo\/react-native,edward\/react-native,sarvex\/react-native,dut3062796s\/react-native,bouk\/react-native,codejet\/react-native,thstarshine\/react-native,folist\/react-native,pglotov\/react-native,Loke155\/react-native,jackeychens\/react-native,noif\/react-native,insionng\/react-native,yzarubin\/react-native,darrylblake\/react-native,zuolangguo\/react-native,abdelouahabb\/react-native,DanielMSchmidt\/react-native,geoffreyfloyd\/react-native,bradbumbalough\/react-native,kundanjadhav\/react-native,yushiwo\/react-native,garydonovan\/react-native,hydraulic\/react-native,WilliamRen\/react-native,Suninus\/react-native,mihaigiurgeanu\/react-native,NishanthShankar\/react-native,InterfaceInc\/react-native,shrutic123\/react-native,zhangwei001\/react-native,Ehesp\/react-native,doochik\/react-native,jonesgithub\/react-native,folist\/react-native,rodneyss\/react-native,thotegowda\/react-native,vincentqiu\/react-native,yutail\/react-native,lanceharper\/react-native,lokilandon\/react-native,marlonandrade\/react-native,monyxie\/react-native,ipmobiletech\/react-native,wangcan2014\/react-native,machard\/react-native,aziz-boudi4\/react-native,jeanblanchard\/react-native,bestwpw\/react-native,christopherdro\/react-native,xxccll\/react-native,xxccll\/react-native,hanxiaofei\/react-native,yamill\/react-native,dralletje\/react-native,genome21\/react-native,Serfenia\/react-native,mironiasty\/react-native,hengcj\/react-native,fish24k\/react-native,BossKing\/react-native,eddiemonge\/react-native,tsdl2013\/react-native,KJlmfe\/react-native,fish24k\/react-native,alpz5566\/react-native,Hkmu\/react-native,chirag04\/react-native,xinthink\/react-native,jaggs6\/react-native,chsj1\/react-native,bistacos\/react-native,hwsyy\/react-native,RGKzhanglei\/react-native,mrspeaker\/react-native,cmhsu\/react-native,DannyvanderJagt\/react-native,liufeigit\/react-native,averted\/react-native,gre\/react-native,gitim\/react-native,jmhdez\/react-native,jbaumbach\/react-native,Wingie\/react-native,lloydho\/react-native,JackLeeMing\/react-native,gre\/react-native,sonnylazuardi\/react-native,affinityis\/react-native,hoangpham95\/react-native,ide\/react-native,insionng\/react-native,judastree\/react-native,21451061\/react-native,adamterlson\/react-native,pglotov\/react-native,eddiemonge\/react-native,nevir\/react-native,tahnok\/react-native,mqli\/react-native,mjetek\/react-native,oren\/react-native,dralletje\/react-native,rkumar3147\/react-native,dfala\/react-native,arthuralee\/react-native,dabit3\/react-native,dizlexik\/react-native,yjh0502\/react-native,alpz5566\/react-native,hzgnpu\/react-native,ChristopherSalam\/react-native,Heart2009\/react-native,philikon\/react-native,appersonlabs\/react-native,adamjmcgrath\/react-native,hike2008\/react-native,thstarshine\/react-native,nktpro\/react-native,trueblue2704\/react-native,YComputer\/react-native,pandiaraj44\/react-native,zyvas\/react-native,pvinis\/react-native-desktop,Jericho25\/react-native,wangyzyoga\/react-native,ptomasroos\/react-native,fw1121\/react-native,gegaosong\/react-native,zvona\/react-native,hanxiaofei\/react-native,iodine\/react-native,NishanthShankar\/react-native,zdsiyan\/react-native,sghiassy\/react-native,yamill\/react-native,kotdark\/react-native,YueRuo\/react-native,pallyoung\/react-native,mcanthony\/react-native,jmstout\/react-native,dvcrn\/react-native,cez213\/react-native,spicyj\/react-native,Applied-Duality\/react-native,Andreyco\/react-native,jabinwang\/react-native,foghina\/react-native,kushal\/react-native,yangshangde\/react-native,ludaye123\/react-native,arbesfeld\/react-native,imjerrybao\/react-native,narlian\/react-native,happypancake\/react-native,kamronbatman\/react-native,nickhargreaves\/react-native,xiayz\/react-native,prathamesh-sonpatki\/react-native,sheep902\/react-native,kesha-antonov\/react-native,daveenguyen\/react-native,bestwpw\/react-native,Guardiannw\/react-native,hwsyy\/react-native,xiayz\/react-native,jabinwang\/react-native,sitexa\/react-native,machard\/react-native,hwsyy\/react-native,dut3062796s\/react-native,enaqx\/react-native,bimawa\/react-native,apprennet\/react-native,happypancake\/react-native,leegilon\/react-native,jackeychens\/react-native,woshili1\/react-native,leopardpan\/react-native,facebook\/react-native,popovsh6\/react-native,zhangxq5012\/react-native,imjerrybao\/react-native,hoastoolshop\/react-native,Lucifer-Kim\/react-native,christer155\/react-native,aroth\/react-native,huip\/react-native,PhilippKrone\/react-native,Purii\/react-native,MattFoley\/react-native,bistacos\/react-native,DenisIzmaylov\/react-native,mchinyakov\/react-native,TChengZ\/react-native,thstarshine\/react-native,ptmt\/react-native,michaelchucoder\/react-native,mcanthony\/react-native,carcer\/react-native,yangshangde\/react-native,zdsiyan\/react-native,jekey\/react-native,dimoge\/react-native,arbesfeld\/react-native,jackeychens\/react-native,bestwpw\/react-native,nickhudkins\/react-native,rickbeerendonk\/react-native,pjcabrera\/react-native,happypancake\/react-native,ModusCreateOrg\/react-native,lee-my\/react-native,Wingie\/react-native,shrutic123\/react-native,elliottsj\/react-native,NunoEdgarGub1\/react-native,alpz5566\/react-native,puf\/react-native,waynett\/react-native,tahnok\/react-native,steben\/react-native,jonesgithub\/react-native,jibonpab\/react-native,bistacos\/react-native,enaqx\/react-native,yiminghe\/react-native,judastree\/react-native,quyixia\/react-native,Intellicode\/react-native,jevakallio\/react-native,Bhullnatik\/react-native,dikaiosune\/react-native,nathanajah\/react-native,dimoge\/react-native,lanceharper\/react-native,zyvas\/react-native,dimoge\/react-native,mjetek\/react-native,abdelouahabb\/react-native,sarvex\/react-native,Heart2009\/react-native,MattFoley\/react-native,adamterlson\/react-native,spyrx7\/react-native,chapinkapa\/react-native,christer155\/react-native,timfpark\/react-native,irisli\/react-native,urvashi01\/react-native,mihaigiurgeanu\/react-native,csudanthi\/react-native,huangsongyan\/react-native,YotrolZ\/react-native,sghiassy\/react-native,martinbigio\/react-native,tgf229\/react-native,lucyywang\/react-native,strwind\/react-native,marlonandrade\/react-native,wesley1001\/react-native,yelled3\/react-native,gre\/react-native,jacobbubu\/react-native,zuolangguo\/react-native,charlesvinette\/react-native,ChristopherSalam\/react-native,DanielMSchmidt\/react-native,urvashi01\/react-native,hwsyy\/react-native,kfiroo\/react-native,myntra\/react-native,lstNull\/react-native,JasonZ321\/react-native,exponent\/react-native,NZAOM\/react-native,irisli\/react-native,tadeuzagallo\/react-native,supercocoa\/react-native,21451061\/react-native,j27cai\/react-native,Inner89\/react-native,rickbeerendonk\/react-native,dabit3\/react-native,Hkmu\/react-native,xiayz\/react-native,boopathi\/react-native,chacbumbum\/react-native,rainkong\/react-native,arbesfeld\/react-native,ndejesus1227\/react-native,darkrishabh\/react-native,yjh0502\/react-native,huip\/react-native,arbesfeld\/react-native,sjchakrav\/react-native,pjcabrera\/react-native,myntra\/react-native,hesling\/react-native,gs-akhan\/react-native,judastree\/react-native,common2015\/react-native,chapinkapa\/react-native,satya164\/react-native,milieu\/react-native,wdxgtsh\/react-native,jibonpab\/react-native,imjerrybao\/react-native,garydonovan\/react-native,jasonnoahchoi\/react-native,lstNull\/react-native,cez213\/react-native,ouyangwenfeng\/react-native,Rowandjj\/react-native,vlrchtlt\/react-native,leeyeh\/react-native,guanghuili\/react-native,srounce\/react-native,adamterlson\/react-native,jibonpab\/react-native,levic92\/react-native,iodine\/react-native,heyjim89\/react-native,ankitsinghania94\/react-native,wangcan2014\/react-native,tszajna0\/react-native,zhangwei001\/react-native,xxccll\/react-native,Applied-Duality\/react-native,wangjiangwen\/react-native,MetSystem\/react-native,sunblaze\/react-native,lprhodes\/react-native,ChristianHersevoort\/react-native,jaredly\/react-native,rushidesai\/react-native,genome21\/react-native,sudhirj\/react-native,mqli\/react-native,quyixia\/react-native,Flickster42490\/react-native,lgengsy\/react-native,wjb12\/react-native,rebeccahughes\/react-native,neeraj-singh\/react-native,zyvas\/react-native,hanxiaofei\/react-native,JackLeeMing\/react-native,kushal\/react-native,DerayGa\/react-native,garydonovan\/react-native,trueblue2704\/react-native,Livyli\/react-native,liuzechen\/react-native,dralletje\/react-native,sospartan\/react-native,NZAOM\/react-native,trueblue2704\/react-native,emodeqidao\/react-native,mozillo\/react-native,billhello\/react-native,ide\/react-native,luqin\/react-native,ehd\/react-native,sahrens\/react-native,Swaagie\/react-native,lee-my\/react-native,shrimpy\/react-native,Maxwell2022\/react-native,liufeigit\/react-native,frantic\/react-native,ProjectSeptemberInc\/react-native,clooth\/react-native,miracle2k\/react-native,spyrx7\/react-native,ptmt\/react-native-macos,sospartan\/react-native,Lucifer-Kim\/react-native,gs-akhan\/react-native,ajwhite\/react-native,mcrooks88\/react-native,nbcnews\/react-native,tgoldenberg\/react-native,carcer\/react-native,chapinkapa\/react-native,leegilon\/react-native,YComputer\/react-native,gre\/react-native,boopathi\/react-native,yutail\/react-native,xinthink\/react-native,quyixia\/react-native,qingsong-xu\/react-native,hesling\/react-native,mrspeaker\/react-native,tsjing\/react-native,jaggs6\/react-native,forcedotcom\/react-native,corbt\/react-native,lee-my\/react-native,jaredly\/react-native,lmorchard\/react-native,ultralame\/react-native,zhangxq5012\/react-native,JasonZ321\/react-native,tsdl2013\/react-native,lee-my\/react-native,CntChen\/react-native,kesha-antonov\/react-native,jaredly\/react-native,sheep902\/react-native,hammerandchisel\/react-native,lloydho\/react-native,appersonlabs\/react-native,ChiMarvine\/react-native,gauribhoite\/react-native,geoffreyfloyd\/react-native,yutail\/react-native,ipmobiletech\/react-native,madusankapremaratne\/react-native,esauter5\/react-native,clooth\/react-native,goodheart\/react-native,esauter5\/react-native,Furzikov\/react-native,common2015\/react-native,christer155\/react-native,dabit3\/react-native,timfpark\/react-native,enaqx\/react-native,shrutic123\/react-native,common2015\/react-native,pcottle\/react-native,milieu\/react-native,htc2u\/react-native,vincentqiu\/react-native,Iragne\/react-native,magnus-bergman\/react-native,ajwhite\/react-native,chsj1\/react-native,doochik\/react-native,lmorchard\/react-native,gs-akhan\/react-native,common2015\/react-native,common2015\/react-native,nevir\/react-native,yjh0502\/react-native,tgoldenberg\/react-native,shrutic\/react-native,urvashi01\/react-native,gs-akhan\/react-native,cazacugmihai\/react-native,callstack-io\/react-native,onesfreedom\/react-native,jeffchienzabinet\/react-native,hzgnpu\/react-native,WilliamRen\/react-native,eduardinni\/react-native,hayeah\/react-native,formatlos\/react-native,ivanph\/react-native,1988fei\/react-native,adamkrell\/react-native,wustxing\/react-native,makadaw\/react-native,JulienThibeaut\/react-native,xiaoking\/react-native,dikaiosune\/react-native,rxb\/react-native,clozr\/react-native,hammerandchisel\/react-native,almost\/react-native,happypancake\/react-native,clooth\/react-native,bestwpw\/react-native,cazacugmihai\/react-native,nickhargreaves\/react-native,rainkong\/react-native,ldehai\/react-native,xxccll\/react-native,zenlambda\/react-native,chsj1\/react-native,Andreyco\/react-native,ivanph\/react-native,jekey\/react-native,threepointone\/react-native-1,lwansbrough\/react-native,kassens\/react-native,zhangwei001\/react-native,lloydho\/react-native,carcer\/react-native,gabrielbellamy\/react-native,onesfreedom\/react-native,philikon\/react-native,gitim\/react-native,jibonpab\/react-native,huangsongyan\/react-native,bowlofstew\/react-native,HealthyWealthy\/react-native,quuack\/react-native,wlrhnh-David\/react-native,garrows\/react-native,alinz\/react-native,donyu\/react-native,lmorchard\/react-native,DerayGa\/react-native,tgoldenberg\/react-native,gpbl\/react-native,pandiaraj44\/react-native,code0100fun\/react-native,alin23\/react-native,mihaigiurgeanu\/react-native,liufeigit\/react-native,foghina\/react-native,bistacos\/react-native,cxfeng1\/react-native,glovebx\/react-native,almost\/react-native,yimouleng\/react-native,rodneyss\/react-native,Furzikov\/react-native,evilemon\/react-native,aroth\/react-native,RGKzhanglei\/react-native,hoastoolshop\/react-native,CntChen\/react-native,narlian\/react-native,mjetek\/react-native,shrutic\/react-native,ptomasroos\/react-native,andersryanc\/react-native,gabrielbellamy\/react-native,programming086\/react-native,chetstone\/react-native,Srikanth4\/react-native,yutail\/react-native,mozillo\/react-native,sheep902\/react-native,philonpang\/react-native,alinz\/react-native,formatlos\/react-native,honger05\/react-native,InterfaceInc\/react-native,johnv315\/react-native,bouk\/react-native,exponentjs\/rex,lightsofapollo\/react-native,krock01\/react-native,Tredsite\/react-native,sitexa\/react-native,javache\/react-native,mukesh-kumar1905\/react-native,tahnok\/react-native,yjh0502\/react-native,charmingzuo\/react-native,alpz5566\/react-native,chapinkapa\/react-native,srounce\/react-native,gegaosong\/react-native,mrspeaker\/react-native,leegilon\/react-native,neeraj-singh\/react-native,iodine\/react-native,sghiassy\/react-native,gabrielbellamy\/react-native,barakcoh\/react-native,bimawa\/react-native,rxb\/react-native,htc2u\/react-native,happypancake\/react-native,Tredsite\/react-native,rkumar3147\/react-native,jevakallio\/react-native,hike2008\/react-native,Jericho25\/react-native,lmorchard\/react-native,cdlewis\/react-native,harrykiselev\/react-native,jordanbyron\/react-native,guanghuili\/react-native,ajwhite\/react-native,TChengZ\/react-native,liuzechen\/react-native,aifeld\/react-native,hammerandchisel\/react-native,nickhargreaves\/react-native,hayeah\/react-native,thotegowda\/react-native,billhello\/react-native,carcer\/react-native,ktoh\/react-native,nanpian\/react-native,rodneyss\/react-native,nanpian\/react-native,tarkus\/react-native-appletv,brentvatne\/react-native,negativetwelve\/react-native,lgengsy\/react-native,supercocoa\/react-native,ProjectSeptemberInc\/react-native,luqin\/react-native,mbrock\/react-native,ktoh\/react-native,mrngoitall\/react-native,wenpkpk\/react-native,Serfenia\/react-native,chapinkapa\/react-native,mqli\/react-native,Ehesp\/react-native,kamronbatman\/react-native,Iragne\/react-native,eliagrady\/react-native,rushidesai\/react-native,madusankapremaratne\/react-native,rollokb\/react-native,csatf\/react-native,hoangpham95\/react-native,quyixia\/react-native,CodeLinkIO\/react-native,sahat\/react-native,soxunyi\/react-native,ultralame\/react-native,Tredsite\/react-native,dimoge\/react-native,mtford90\/react-native,johnv315\/react-native,Zagorakiss\/react-native,dizlexik\/react-native,farazs\/react-native,mrspeaker\/react-native,salanki\/react-native,rainkong\/react-native,wangjiangwen\/react-native,rwwarren\/react-native,jibonpab\/react-native,mqli\/react-native,slongwang\/react-native,ChristopherSalam\/react-native,harrykiselev\/react-native,NZAOM\/react-native,hydraulic\/react-native,wustxing\/react-native,mchinyakov\/react-native,dralletje\/react-native,Suninus\/react-native,HSFGitHub\/react-native,lgengsy\/react-native,makadaw\/react-native,enaqx\/react-native,Flickster42490\/react-native,yutail\/react-native,Purii\/react-native,salanki\/react-native,miracle2k\/react-native,kesha-antonov\/react-native,enaqx\/react-native,tahnok\/react-native,mironiasty\/react-native,wesley1001\/react-native,Guardiannw\/react-native,rickbeerendonk\/react-native,sonnylazuardi\/react-native,slongwang\/react-native,brentvatne\/react-native,mrngoitall\/react-native,pjcabrera\/react-native,Bhullnatik\/react-native,qq644531343\/react-native,sahat\/react-native,philonpang\/react-native,genome21\/react-native,salanki\/react-native,YComputer\/react-native,kfiroo\/react-native,kamronbatman\/react-native,rxb\/react-native,jevakallio\/react-native,lendup\/react-native,yushiwo\/react-native,gitim\/react-native,shrimpy\/react-native,zhaosichao\/react-native,srounce\/react-native,kujohn\/react-native,bright-sparks\/react-native,jasonals\/react-native,southasia\/react-native,zdsiyan\/react-native,steben\/react-native,zenlambda\/react-native,NZAOM\/react-native,yangshangde\/react-native,jackeychens\/react-native,ankitsinghania94\/react-native,kundanjadhav\/react-native,mway08\/react-native,levic92\/react-native,goodheart\/react-native,sunblaze\/react-native,ProjectSeptemberInc\/react-native,andersryanc\/react-native,wdxgtsh\/react-native,billhello\/react-native,booxood\/react-native,gilesvangruisen\/react-native,quuack\/react-native,chenbk85\/react-native,tmwoodson\/react-native,josebalius\/react-native,affinityis\/react-native,nsimmons\/react-native,hwsyy\/react-native,spicyj\/react-native,neeraj-singh\/react-native,YComputer\/react-native,rushidesai\/react-native,Rowandjj\/react-native,zvona\/react-native,heyjim89\/react-native,jmstout\/react-native,gauribhoite\/react-native,ChristianHersevoort\/react-native,liangmingjie\/react-native,mtford90\/react-native,skevy\/react-native,imWildCat\/react-native,forcedotcom\/react-native,lelandrichardson\/react-native,yangchengwork\/react-native,cpunion\/react-native,apprennet\/react-native,charlesvinette\/react-native,richardgill\/react-native,andrewljohnson\/react-native,Maxwell2022\/react-native,barakcoh\/react-native,richardgill\/react-native,facebook\/react-native,codejet\/react-native,andrewljohnson\/react-native,darkrishabh\/react-native,spicyj\/react-native,krock01\/react-native,forcedotcom\/react-native,qingsong-xu\/react-native,woshili1\/react-native,NishanthShankar\/react-native,alin23\/react-native,zhaosichao\/react-native,sospartan\/react-native,magnus-bergman\/react-native,eliagrady\/react-native,lucyywang\/react-native,ktoh\/react-native,happypancake\/react-native,srounce\/react-native,zdsiyan\/react-native,jackalchen\/react-native,aljs\/react-native,exponent\/react-native,zvona\/react-native,tszajna0\/react-native,PlexChat\/react-native,Emilios1995\/react-native,rebeccahughes\/react-native,adamterlson\/react-native,waynett\/react-native,elliottsj\/react-native,ldehai\/react-native,charmingzuo\/react-native,charmingzuo\/react-native,JackLeeMing\/react-native,machard\/react-native,cdlewis\/react-native,tszajna0\/react-native,Lohit9\/react-native,kassens\/react-native,jabinwang\/react-native,heyjim89\/react-native,southasia\/react-native,tmwoodson\/react-native,hayeah\/react-native,pglotov\/react-native,bouk\/react-native,ortutay\/react-native,soulcm\/react-native,hesling\/react-native,bimawa\/react-native,Inner89\/react-native,shrutic123\/react-native,bogdantmm92\/react-native,sghiassy\/react-native,thotegowda\/react-native,krock01\/react-native,RGKzhanglei\/react-native,jasonals\/react-native,mcrooks88\/react-native,DanielMSchmidt\/react-native,InterfaceInc\/react-native,iOSTestApps\/react-native,wesley1001\/react-native,ModusCreateOrg\/react-native,foghina\/react-native,ndejesus1227\/react-native,nickhargreaves\/react-native,magnus-bergman\/react-native,lokilandon\/react-native,leegilon\/react-native,quuack\/react-native,trueblue2704\/react-native,folist\/react-native,vlrchtlt\/react-native,satya164\/react-native,strwind\/react-native,xxccll\/react-native,almost\/react-native,Wingie\/react-native,jmhdez\/react-native,dalinaum\/react-native,zhangxq5012\/react-native,aroth\/react-native,mway08\/react-native,imDangerous\/react-native,myntra\/react-native,Purii\/react-native,wangcan2014\/react-native,aifeld\/react-native,garrows\/react-native,mqli\/react-native,sixtomay\/react-native,alantrrs\/react-native,gitim\/react-native,skevy\/react-native,lelandrichardson\/react-native,rickbeerendonk\/react-native,narlian\/react-native,mcanthony\/react-native,Intellicode\/react-native,jackalchen\/react-native,iOSTestApps\/react-native,miracle2k\/react-native,harrykiselev\/react-native,jeffchienzabinet\/react-native,emodeqidao\/react-native,spicyj\/react-native,lendup\/react-native,jaredly\/react-native,puf\/react-native,dylanchann\/react-native,mironiasty\/react-native,jasonnoahchoi\/react-native,pitatensai\/react-native,hassanabidpk\/react-native,thotegowda\/react-native,jacobbubu\/react-native,xiangjuntang\/react-native,mqli\/react-native,apprennet\/react-native,hoastoolshop\/react-native,chengky\/react-native,lucyywang\/react-native,sixtomay\/react-native,timfpark\/react-native,skatpgusskat\/react-native,pengleelove\/react-native,qingfeng\/react-native,gpbl\/react-native,formatlos\/react-native,JulienThibeaut\/react-native,soxunyi\/react-native,lprhodes\/react-native,booxood\/react-native,pglotov\/react-native,Srikanth4\/react-native,ivanph\/react-native,ProjectSeptemberInc\/react-native,JulienThibeaut\/react-native,dfala\/react-native,NZAOM\/react-native,nsimmons\/react-native,lloydho\/react-native,YotrolZ\/react-native,PhilippKrone\/react-native,gilesvangruisen\/react-native,hoangpham95\/react-native,darrylblake\/react-native,lelandrichardson\/react-native,narlian\/react-native,zenlambda\/react-native,gs-akhan\/react-native,southasia\/react-native,formatlos\/react-native,wangyzyoga\/react-native,HSFGitHub\/react-native,shadow000902\/react-native,Livyli\/react-native,simple88\/react-native,hassanabidpk\/react-native,Hkmu\/react-native,southasia\/react-native,appersonlabs\/react-native,adamjmcgrath\/react-native,nevir\/react-native,makadaw\/react-native,hanxiaofei\/react-native,kotdark\/react-native,MonirAbuHilal\/react-native,peterp\/react-native,mway08\/react-native,pglotov\/react-native,sitexa\/react-native,JasonZ321\/react-native,csudanthi\/react-native,Poplava\/react-native,gegaosong\/react-native,wangyzyoga\/react-native,jevakallio\/react-native,quyixia\/react-native,Jonekee\/react-native,rollokb\/react-native,unknownexception\/react-native,chrisbutcher\/react-native,hydraulic\/react-native,neeraj-singh\/react-native,sudhirj\/react-native,Poplava\/react-native,wjb12\/react-native,sekouperry\/react-native,ludaye123\/react-native,mozillo\/react-native,ronak301\/react-native,sahat\/react-native,eddiemonge\/react-native,adrie4mac\/react-native,udnisap\/react-native,gre\/react-native,sheep902\/react-native,dubert\/react-native,imDangerous\/react-native,pitatensai\/react-native,soulcm\/react-native,gilesvangruisen\/react-native,ouyangwenfeng\/react-native,jibonpab\/react-native,facebook\/react-native,mjetek\/react-native,johnv315\/react-native,Jonekee\/react-native,aaron-goshine\/react-native,kushal\/react-native,nbcnews\/react-native,tahnok\/react-native,hammerandchisel\/react-native,huip\/react-native,facebook\/react-native,ramoslin02\/react-native,vlrchtlt\/react-native,apprennet\/react-native,hike2008\/react-native,lloydho\/react-native,jackeychens\/react-native,lelandrichardson\/react-native,Furzikov\/react-native,johnv315\/react-native,garydonovan\/react-native,Livyli\/react-native,bogdantmm92\/react-native,Shopify\/react-native,exponentjs\/react-native,kotdark\/react-native,lmorchard\/react-native,myntra\/react-native,browniefed\/react-native,jasonnoahchoi\/react-native,charlesvinette\/react-native,garrows\/react-native,satya164\/react-native,21451061\/react-native,soxunyi\/react-native,bradbumbalough\/react-native,southasia\/react-native,mcanthony\/react-native,salanki\/react-native,unknownexception\/react-native,nickhargreaves\/react-native,janicduplessis\/react-native,honger05\/react-native,thstarshine\/react-native,jekey\/react-native,LytayTOUCH\/react-native,ludaye123\/react-native,fw1121\/react-native,codejet\/react-native,nathanajah\/react-native,almost\/react-native,lgengsy\/react-native,onesfreedom\/react-native,sitexa\/react-native,supercocoa\/react-native,yangchengwork\/react-native,JoeStanton\/react-native,maskkid\/react-native,jmhdez\/react-native,rantianhua\/react-native,heyjim89\/react-native,TChengZ\/react-native,geoffreyfloyd\/react-native,ericvera\/react-native,milieu\/react-native,sahrens\/react-native,Furzikov\/react-native,shlomiatar\/react-native,srounce\/react-native,rushidesai\/react-native,DenisIzmaylov\/react-native,shinate\/react-native,Wingie\/react-native,nickhudkins\/react-native,exponentjs\/react-native,skevy\/react-native,noif\/react-native,kushal\/react-native,steben\/react-native,mironiasty\/react-native,Ehesp\/react-native,Bronts\/react-native,qingfeng\/react-native,mukesh-kumar1905\/react-native,PhilippKrone\/react-native,bradens\/react-native,makadaw\/react-native,qingsong-xu\/react-native,chengky\/react-native,gauribhoite\/react-native,happypancake\/react-native,Shopify\/react-native,waynett\/react-native,forcedotcom\/react-native,jbaumbach\/react-native,JulienThibeaut\/react-native,eduvon0220\/react-native,olivierlesnicki\/react-native,yzarubin\/react-native,farazs\/react-native,skatpgusskat\/react-native,philikon\/react-native,puf\/react-native,tgf229\/react-native,lloydho\/react-native,dut3062796s\/react-native,waynett\/react-native,wangcan2014\/react-native,JoeStanton\/react-native,lucyywang\/react-native,lanceharper\/react-native,kfiroo\/react-native,yjyi\/react-native,shinate\/react-native,yangchengwork\/react-native,PhilippKrone\/react-native,lwansbrough\/react-native,BretJohnson\/react-native,simple88\/react-native,carcer\/react-native,hayeah\/react-native,peterp\/react-native,ldehai\/react-native,hesling\/react-native,mosch\/react-native,rickbeerendonk\/react-native,bimawa\/react-native,Rowandjj\/react-native,Esdeath\/react-native,edward\/react-native,Maxwell2022\/react-native,darrylblake\/react-native,Bhullnatik\/react-native,kassens\/react-native,sjchakrav\/react-native,simple88\/react-native,tgriesser\/react-native,wjb12\/react-native,bsansouci\/react-native,lstNull\/react-native,esauter5\/react-native,csatf\/react-native,lelandrichardson\/react-native,wangcan2014\/react-native,genome21\/react-native,Wingie\/react-native,dimoge\/react-native,ouyangwenfeng\/react-native,adrie4mac\/react-native,shlomiatar\/react-native,nickhudkins\/react-native,wlrhnh-David\/react-native,Bronts\/react-native,chetstone\/react-native,lgengsy\/react-native,ptomasroos\/react-native,kushal\/react-native,chetstone\/react-native,kundanjadhav\/react-native,mariusbutuc\/react-native,lokilandon\/react-native,misakuo\/react-native,ChristianHersevoort\/react-native,1988fei\/react-native,bouk\/react-native,TChengZ\/react-native,eliagrady\/react-native,liduanw\/react-native,aaron-goshine\/react-native,onesfreedom\/react-native,TChengZ\/react-native,shadow000902\/react-native,clozr\/react-native,cdlewis\/react-native,dabit3\/react-native,YueRuo\/react-native,taydakov\/react-native,soxunyi\/react-native,daveenguyen\/react-native,yjh0502\/react-native,Intellicode\/react-native,gabrielbellamy\/react-native,brentvatne\/react-native,harrykiselev\/react-native,trueblue2704\/react-native,thstarshine\/react-native,Swaagie\/react-native,browniefed\/react-native,wangziqiang\/react-native,adamkrell\/react-native,nickhudkins\/react-native,aaron-goshine\/react-native,sdiaz\/react-native,tgriesser\/react-native,dalinaum\/react-native,ktoh\/react-native,huangsongyan\/react-native,jhen0409\/react-native,tsjing\/react-native,liangmingjie\/react-native,ludaye123\/react-native,prathamesh-sonpatki\/react-native,martinbigio\/react-native,TChengZ\/react-native,Livyli\/react-native,wenpkpk\/react-native,ChristianHersevoort\/react-native,Andreyco\/react-native,zhaosichao\/react-native,ProjectSeptemberInc\/react-native,hzgnpu\/react-native,eduardinni\/react-native,mihaigiurgeanu\/react-native,Applied-Duality\/react-native,nevir\/react-native,Loke155\/react-native,facebook\/react-native,Serfenia\/react-native,Rowandjj\/react-native,IveWong\/react-native,philonpang\/react-native,evilemon\/react-native,onesfreedom\/react-native,christopherdro\/react-native,soxunyi\/react-native,strwind\/react-native,vjeux\/react-native,ide\/react-native,andersryanc\/react-native,zdsiyan\/react-native,Loke155\/react-native,mozillo\/react-native,stan229\/react-native,imjerrybao\/react-native,rickbeerendonk\/react-native,xinthink\/react-native,lstNull\/react-native,hharnisc\/react-native,facebook\/react-native,huangsongyan\/react-native,lstNull\/react-native,myntra\/react-native,wildKids\/react-native,popovsh6\/react-native,nsimmons\/react-native,gpbl\/react-native,CntChen\/react-native,zhangxq5012\/react-native,mchinyakov\/react-native,kesha-antonov\/react-native,hharnisc\/react-native,machard\/react-native,ktoh\/react-native,qq644531343\/react-native,cosmith\/react-native,beni55\/react-native,aljs\/react-native,Andreyco\/react-native,bowlofstew\/react-native,vlrchtlt\/react-native,adamkrell\/react-native,alvarojoao\/react-native,genome21\/react-native,cez213\/react-native,corbt\/react-native,orenklein\/react-native,gilesvangruisen\/react-native,pickhardt\/react-native,daveenguyen\/react-native,misakuo\/react-native,tarkus\/react-native-appletv,alantrrs\/react-native,jekey\/react-native,evansolomon\/react-native,mrspeaker\/react-native,aljs\/react-native,woshili1\/react-native,puf\/react-native,supercocoa\/react-native,madusankapremaratne\/react-native,dvcrn\/react-native,judastree\/react-native,steveleec\/react-native,rainkong\/react-native,ordinarybill\/react-native,hoangpham95\/react-native,insionng\/react-native,naoufal\/react-native,HealthyWealthy\/react-native,javache\/react-native,brentvatne\/react-native,hammerandchisel\/react-native,Srikanth4\/react-native,nanpian\/react-native,myntra\/react-native,jonesgithub\/react-native,jadbox\/react-native,compulim\/react-native,esauter5\/react-native,neeraj-singh\/react-native,dvcrn\/react-native,jabinwang\/react-native,ordinarybill\/react-native,xinthink\/react-native,Flickster42490\/react-native,trueblue2704\/react-native,ptmt\/react-native,imjerrybao\/react-native,lgengsy\/react-native,eduvon0220\/react-native,pairyo\/react-native,aaron-goshine\/react-native,hanxiaofei\/react-native,soulcm\/react-native,Maxwell2022\/react-native,aifeld\/react-native,christopherdro\/react-native,NZAOM\/react-native,foghina\/react-native,alantrrs\/react-native,esauter5\/react-native,YinshawnRao\/react-native,cazacugmihai\/react-native,KJlmfe\/react-native,southasia\/react-native,mrspeaker\/react-native,glovebx\/react-native,darkrishabh\/react-native,spicyj\/react-native,wesley1001\/react-native,carcer\/react-native,Emilios1995\/react-native,eduvon0220\/react-native,wlrhnh-David\/react-native,PlexChat\/react-native,yjyi\/react-native,edward\/react-native,hydraulic\/react-native,mukesh-kumar1905\/react-native,christer155\/react-native,vlrchtlt\/react-native,darkrishabh\/react-native,yamill\/react-native,Andreyco\/react-native,programming086\/react-native,edward\/react-native,wildKids\/react-native,lucyywang\/react-native,xiayz\/react-native,Flickster42490\/react-native,kundanjadhav\/react-native,popovsh6\/react-native,browniefed\/react-native,lprhodes\/react-native,satya164\/react-native,farazs\/react-native,yiminghe\/react-native,taydakov\/react-native,steveleec\/react-native,thotegowda\/react-native,bsansouci\/react-native,shinate\/react-native,tsdl2013\/react-native,lightsofapollo\/react-native,shlomiatar\/react-native,mosch\/react-native,wjb12\/react-native,frantic\/react-native,nathanajah\/react-native,zenlambda\/react-native,jackalchen\/react-native,barakcoh\/react-native,Furzikov\/react-native,bodefuwa\/react-native,thotegowda\/react-native,levic92\/react-native,leopardpan\/react-native,pallyoung\/react-native,naoufal\/react-native,andersryanc\/react-native,MonirAbuHilal\/react-native,InterfaceInc\/react-native,abdelouahabb\/react-native,alin23\/react-native,androidgilbert\/react-native,srounce\/react-native,philonpang\/react-native,pvinis\/react-native-desktop,eduardinni\/react-native,nathanajah\/react-native,Livyli\/react-native,jaredly\/react-native,Reparadocs\/react-native,adamkrell\/react-native,cxfeng1\/react-native,Esdeath\/react-native,BretJohnson\/react-native,yimouleng\/react-native,rkumar3147\/react-native,daveenguyen\/react-native,ptomasroos\/react-native,dikaiosune\/react-native,nktpro\/react-native,Guardiannw\/react-native,Bronts\/react-native,zyvas\/react-native,donyu\/react-native,jbaumbach\/react-native,marlonandrade\/react-native,skevy\/react-native,magnus-bergman\/react-native,tszajna0\/react-native,jadbox\/react-native,lightsofapollo\/react-native,tsjing\/react-native,chiefr\/react-native,gilesvangruisen\/react-native,ipmobiletech\/react-native,negativetwelve\/react-native,vincentqiu\/react-native,peterp\/react-native,Swaagie\/react-native,cazacugmihai\/react-native,Guardiannw\/react-native,stan229\/react-native,miracle2k\/react-native,mchinyakov\/react-native,ultralame\/react-native,Intellicode\/react-native,jonesgithub\/react-native,tgf229\/react-native,dimoge\/react-native,mukesh-kumar1905\/react-native,tarkus\/react-native-appletv,jhen0409\/react-native,bright-sparks\/react-native,a2\/react-native,corbt\/react-native,abdelouahabb\/react-native,clozr\/react-native,pvinis\/react-native-desktop,LytayTOUCH\/react-native,cazacugmihai\/react-native,gauribhoite\/react-native,ptmt\/react-native-macos,christer155\/react-native,exponent\/react-native,Bronts\/react-native,rantianhua\/react-native,arthuralee\/react-native,chiefr\/react-native,mozillo\/react-native,KJlmfe\/react-native,Shopify\/react-native,sahat\/react-native,ptomasroos\/react-native,madusankapremaratne\/react-native,yiminghe\/react-native,spyrx7\/react-native,hoastoolshop\/react-native,andersryanc\/react-native,NishanthShankar\/react-native,ipmobiletech\/react-native,alin23\/react-native,naoufal\/react-native,xiangjuntang\/react-native,sheep902\/react-native,arthuralee\/react-native,sjchakrav\/react-native,PlexChat\/react-native,liubko\/react-native,chengky\/react-native,jeffchienzabinet\/react-native,wangjiangwen\/react-native,shrutic123\/react-native,pairyo\/react-native,almost\/react-native,sghiassy\/react-native,yiminghe\/react-native,gre\/react-native,compulim\/react-native,barakcoh\/react-native,lucyywang\/react-native,kassens\/react-native,gre\/react-native,21451061\/react-native,Lucifer-Kim\/react-native,HealthyWealthy\/react-native,code0100fun\/react-native,timfpark\/react-native,bogdantmm92\/react-native,patoroco\/react-native,fengshao0907\/react-native,rkumar3147\/react-native,wangjiangwen\/react-native,BossKing\/react-native,mrngoitall\/react-native,zhaosichao\/react-native,tarkus\/react-native-appletv,folist\/react-native,liangmingjie\/react-native,zhangwei001\/react-native,pickhardt\/react-native,charlesvinette\/react-native,orenklein\/react-native,rainkong\/react-native,ortutay\/react-native,aifeld\/react-native,appersonlabs\/react-native,liuhong1happy\/react-native,Lohit9\/react-native,MonirAbuHilal\/react-native,jhen0409\/react-native,jonesgithub\/react-native,iOSTestApps\/react-native,wangjiangwen\/react-native,j27cai\/react-native,sospartan\/react-native,jibonpab\/react-native,javache\/react-native,dikaiosune\/react-native,FionaWong\/react-native,irisli\/react-native,peterp\/react-native,pitatensai\/react-native,evilemon\/react-native,charlesvinette\/react-native,yiminghe\/react-native,bsansouci\/react-native,brentvatne\/react-native,adrie4mac\/react-native,leegilon\/react-native,imWildCat\/react-native,ModusCreateOrg\/react-native,yamill\/react-native,exponentjs\/react-native,ptmt\/react-native-macos,tsjing\/react-native,DanielMSchmidt\/react-native,roth1002\/react-native,barakcoh\/react-native,hayeah\/react-native,rwwarren\/react-native,csatf\/react-native,darrylblake\/react-native,ehd\/react-native,bogdantmm92\/react-native,FionaWong\/react-native,sixtomay\/react-native,roth1002\/react-native,DannyvanderJagt\/react-native,garrows\/react-native,ordinarybill\/react-native,vincentqiu\/react-native,RGKzhanglei\/react-native,Furzikov\/react-native,shinate\/react-native,tadeuzagallo\/react-native,sudhirj\/react-native,xxccll\/react-native,liufeigit\/react-native,tmwoodson\/react-native,Inner89\/react-native,hharnisc\/react-native,Intellicode\/react-native,javache\/react-native,dut3062796s\/react-native,exponentjs\/react-native,BossKing\/react-native,qq644531343\/react-native,Shopify\/react-native,urvashi01\/react-native,zenlambda\/react-native,fw1121\/react-native,Swaagie\/react-native,tahnok\/react-native,ankitsinghania94\/react-native,ehd\/react-native,ronak301\/react-native,tgf229\/react-native,pglotov\/react-native,mihaigiurgeanu\/react-native,eliagrady\/react-native,lightsofapollo\/react-native,monyxie\/react-native,bradbumbalough\/react-native,frantic\/react-native,RGKzhanglei\/react-native,pairyo\/react-native,sixtomay\/react-native,ide\/react-native,cxfeng1\/react-native,KJlmfe\/react-native,callstack-io\/react-native,yutail\/react-native,pandiaraj44\/react-native,daveenguyen\/react-native,xiayz\/react-native,kassens\/react-native,yangshangde\/react-native,callstack-io\/react-native,chentsulin\/react-native,rkumar3147\/react-native,yamill\/react-native,averted\/react-native,nickhudkins\/react-native,jbaumbach\/react-native,browniefed\/react-native,facebook\/react-native,mariusbutuc\/react-native,javache\/react-native,sghiassy\/react-native,ankitsinghania94\/react-native,barakcoh\/react-native,ChiMarvine\/react-native,yzarubin\/react-native,catalinmiron\/react-native,chnfeeeeeef\/react-native,levic92\/react-native,iodine\/react-native,udnisap\/react-native,ptomasroos\/react-native,rkumar3147\/react-native,formatlos\/react-native,1988fei\/react-native,ericvera\/react-native,Esdeath\/react-native,narlian\/react-native,mihaigiurgeanu\/react-native,pletcher\/react-native,andrewljohnson\/react-native,ludaye123\/react-native,bistacos\/react-native,wildKids\/react-native,roth1002\/react-native,lelandrichardson\/react-native,Loke155\/react-native,eduardinni\/react-native,lgengsy\/react-native,cmhsu\/react-native,yusefnapora\/react-native,liduanw\/react-native,jasonals\/react-native,eliagrady\/react-native,liuhong1happy\/react-native,wenpkpk\/react-native,androidgilbert\/react-native,cdlewis\/react-native,forcedotcom\/react-native,steveleec\/react-native,androidgilbert\/react-native,andersryanc\/react-native,chetstone\/react-native,Shopify\/react-native,chenbk85\/react-native,wdxgtsh\/react-native,yjyi\/react-native,doochik\/react-native,sospartan\/react-native,Emilios1995\/react-native,sarvex\/react-native,ChristopherSalam\/react-native,jasonnoahchoi\/react-native,mozillo\/react-native,exponent\/react-native,donyu\/react-native,huangsongyan\/react-native,Ehesp\/react-native,sdiaz\/react-native,pandiaraj44\/react-native,ultralame\/react-native,xxccll\/react-native,hesling\/react-native,charmingzuo\/react-native,lokilandon\/react-native,woshili1\/react-native,eduvon0220\/react-native,shrimpy\/react-native,tgriesser\/react-native,mchinyakov\/react-native,j27cai\/react-native,sekouperry\/react-native,IveWong\/react-native,yjyi\/react-native,zuolangguo\/react-native,ndejesus1227\/react-native,WilliamRen\/react-native,HealthyWealthy\/react-native,rantianhua\/react-native,xiaoking\/react-native,hike2008\/react-native,zhangwei001\/react-native,pitatensai\/react-native,wangcan2014\/react-native,qq644531343\/react-native,exponent\/react-native,YinshawnRao\/react-native,sdiaz\/react-native,xiangjuntang\/react-native,yelled3\/react-native,xiayz\/react-native,clozr\/react-native,dabit3\/react-native,Swaagie\/react-native,Swaagie\/react-native,dvcrn\/react-native,chnfeeeeeef\/react-native,wangcan2014\/react-native,wangziqiang\/react-native,skatpgusskat\/react-native,glovebx\/react-native,ajwhite\/react-native,leeyeh\/react-native,JulienThibeaut\/react-native,ldehai\/react-native,ordinarybill\/react-native,javache\/react-native,darkrishabh\/react-native,wjb12\/react-native,wangjiangwen\/react-native,catalinmiron\/react-native,krock01\/react-native,darrylblake\/react-native,beni55\/react-native,lee-my\/react-native,DanielMSchmidt\/react-native,skatpgusskat\/react-native,javache\/react-native,htc2u\/react-native,daveenguyen\/react-native,ljhsai\/react-native,kujohn\/react-native,yiminghe\/react-native,Bronts\/react-native,hengcj\/react-native,jackalchen\/react-native,ramoslin02\/react-native,shadow000902\/react-native,patoroco\/react-native,doochik\/react-native,Emilios1995\/react-native,mtford90\/react-native,cdlewis\/react-native,aljs\/react-native,jmhdez\/react-native,eduardinni\/react-native,liangmingjie\/react-native,liduanw\/react-native,ptomasroos\/react-native,hoastoolshop\/react-native,mbrock\/react-native,Hkmu\/react-native,YotrolZ\/react-native,imDangerous\/react-native,wesley1001\/react-native,sarvex\/react-native,wjb12\/react-native,timfpark\/react-native,shrutic\/react-native,ljhsai\/react-native,garrows\/react-native,jacobbubu\/react-native,ajwhite\/react-native,gitim\/react-native,compulim\/react-native,thstarshine\/react-native,yiminghe\/react-native,fw1121\/react-native,DerayGa\/react-native,hanxiaofei\/react-native,judastree\/react-native,elliottsj\/react-native,fish24k\/react-native,Bronts\/react-native,sunblaze\/react-native,jasonnoahchoi\/react-native,ankitsinghania94\/react-native,aaron-goshine\/react-native,dralletje\/react-native,jbaumbach\/react-native,narlian\/react-native,alin23\/react-native,iOSTestApps\/react-native,martinbigio\/react-native,csatf\/react-native,Tredsite\/react-native,arthuralee\/react-native,chiefr\/react-native,yutail\/react-native,pairyo\/react-native,dikaiosune\/react-native,chacbumbum\/react-native,yushiwo\/react-native,cosmith\/react-native,alvarojoao\/react-native,mway08\/react-native,philikon\/react-native,jaggs6\/react-native,wangyzyoga\/react-native,zhangxq5012\/react-native,Ehesp\/react-native,wangjiangwen\/react-native,gegaosong\/react-native,Flickster42490\/react-native,steveleec\/react-native,naoufal\/react-native,jordanbyron\/react-native,dikaiosune\/react-native,dizlexik\/react-native,YotrolZ\/react-native,eddiemonge\/react-native,chirag04\/react-native,qingsong-xu\/react-native,sekouperry\/react-native,shrutic123\/react-native,gabrielbellamy\/react-native,evansolomon\/react-native,ldehai\/react-native,donyu\/react-native,chnfeeeeeef\/react-native,MetSystem\/react-native,quuack\/react-native,goodheart\/react-native,mariusbutuc\/react-native,onesfreedom\/react-native,bradbumbalough\/react-native,slongwang\/react-native,Furzikov\/react-native,sdiaz\/react-native,Intellicode\/react-native,jevakallio\/react-native,ModusCreateOrg\/react-native,zdsiyan\/react-native,ericvera\/react-native,androidgilbert\/react-native,andrewljohnson\/react-native,lokilandon\/react-native,browniefed\/react-native,wangyzyoga\/react-native,steben\/react-native,strwind\/react-native,chnfeeeeeef\/react-native,sonnylazuardi\/react-native,yzarubin\/react-native,lmorchard\/react-native,Hkmu\/react-native,zhangwei001\/react-native,PlexChat\/react-native,JulienThibeaut\/react-native,tadeuzagallo\/react-native,zhangwei001\/react-native,garrows\/react-native,vlrchtlt\/react-native,chetstone\/react-native,nathanajah\/react-native,steben\/react-native,F2EVarMan\/react-native,soxunyi\/react-native,Lohit9\/react-native,gs-akhan\/react-native,xxccll\/react-native,rodneyss\/react-native,RGKzhanglei\/react-native,oren\/react-native,dylanchann\/react-native,wenpkpk\/react-native,mjetek\/react-native,lprhodes\/react-native,dimoge\/react-native,huip\/react-native,ajwhite\/react-native,trueblue2704\/react-native,imDangerous\/react-native,trueblue2704\/react-native,yamill\/react-native,nanpian\/react-native,Bronts\/react-native,programming086\/react-native,lee-my\/react-native,Jonekee\/react-native,zdsiyan\/react-native,jmstout\/react-native,makadaw\/react-native,pitatensai\/react-native,affinityis\/react-native,pandiaraj44\/react-native,yusefnapora\/react-native,aljs\/react-native,MetSystem\/react-native,Srikanth4\/react-native,ortutay\/react-native,simple88\/react-native,levic92\/react-native,clozr\/react-native,Loke155\/react-native,common2015\/react-native,CntChen\/react-native,MetSystem\/react-native,MetSystem\/react-native,hengcj\/react-native,jonesgithub\/react-native,zvona\/react-native,puf\/react-native,NunoEdgarGub1\/react-native,woshili1\/react-native,jadbox\/react-native,stan229\/react-native,marlonandrade\/react-native,corbt\/react-native,PhilippKrone\/react-native,ronak301\/react-native,sekouperry\/react-native,hzgnpu\/react-native,eduvon0220\/react-native,christopherdro\/react-native,jevakallio\/react-native,martinbigio\/react-native,cez213\/react-native,tadeuzagallo\/react-native,chirag04\/react-native,mihaigiurgeanu\/react-native,nathanajah\/react-native,huip\/react-native,fish24k\/react-native,HealthyWealthy\/react-native,ankitsinghania94\/react-native,xiangjuntang\/react-native,Ehesp\/react-native,philonpang\/react-native,machard\/react-native,chapinkapa\/react-native,jmhdez\/react-native,gpbl\/react-native,Jonekee\/react-native,mjetek\/react-native,philikon\/react-native,kamronbatman\/react-native,ChristopherSalam\/react-native,mbrock\/react-native,xinthink\/react-native,jackalchen\/react-native,philonpang\/react-native,spyrx7\/react-native,harrykiselev\/react-native,judastree\/react-native,ktoh\/react-native,udnisap\/react-native,YComputer\/react-native,lucyywang\/react-native,rollokb\/react-native,sudhirj\/react-native,RGKzhanglei\/react-native,ptmt\/react-native-macos,Ehesp\/react-native,maskkid\/react-native,Zagorakiss\/react-native,Intellicode\/react-native,glovebx\/react-native,a2\/react-native,beni55\/react-native,foghina\/react-native,yimouleng\/react-native,ultralame\/react-native,ProjectSeptemberInc\/react-native,chsj1\/react-native,jekey\/react-native,naoufal\/react-native,a2\/react-native,garydonovan\/react-native,urvashi01\/react-native,ankitsinghania94\/react-native,Srikanth4\/react-native,androidgilbert\/react-native,noif\/react-native,mrngoitall\/react-native,honger05\/react-native,eddiemonge\/react-native,hzgnpu\/react-native,androidgilbert\/react-native,wjb12\/react-native,YueRuo\/react-native,jackalchen\/react-native,InterfaceInc\/react-native,iodine\/react-native,adamkrell\/react-native,huangsongyan\/react-native,Serfenia\/react-native,DenisIzmaylov\/react-native,ide\/react-native,lprhodes\/react-native,andrewljohnson\/react-native,Inner89\/react-native,Purii\/react-native,HealthyWealthy\/react-native,fish24k\/react-native,wustxing\/react-native,clooth\/react-native,ericvera\/react-native,ide\/react-native,jevakallio\/react-native,hydraulic\/react-native,fengshao0907\/react-native,simple88\/react-native,dubert\/react-native,dabit3\/react-native,affinityis\/react-native,janicduplessis\/react-native,brentvatne\/react-native,yushiwo\/react-native,naoufal\/react-native,lwansbrough\/react-native,jeromjoy\/react-native,Loke155\/react-native,aziz-boudi4\/react-native,affinityis\/react-native,jekey\/react-native,chengky\/react-native,hengcj\/react-native,mtford90\/react-native,shrimpy\/react-native,negativetwelve\/react-native,thstarshine\/react-native,code0100fun\/react-native,lee-my\/react-native,liuzechen\/react-native,wdxgtsh\/react-native,clozr\/react-native,Loke155\/react-native,negativetwelve\/react-native,farazs\/react-native,hammerandchisel\/react-native,arthuralee\/react-native,cdlewis\/react-native,zhangxq5012\/react-native,folist\/react-native,olivierlesnicki\/react-native,qingfeng\/react-native,hengcj\/react-native,tadeuzagallo\/react-native,jordanbyron\/react-native,steben\/react-native,a2\/react-native,zdsiyan\/react-native,bistacos\/react-native,alvarojoao\/react-native,mukesh-kumar1905\/react-native,misakuo\/react-native,zhangwei001\/react-native,evilemon\/react-native,pletcher\/react-native,forcedotcom\/react-native,pairyo\/react-native,sheep902\/react-native,hzgnpu\/react-native,jackalchen\/react-native,tadeuzagallo\/react-native,bestwpw\/react-native,ChristianHersevoort\/react-native,rwwarren\/react-native,christopherdro\/react-native,clooth\/react-native,philikon\/react-native,sitexa\/react-native,kfiroo\/react-native,MattFoley\/react-native,wesley1001\/react-native,satya164\/react-native,pengleelove\/react-native,appersonlabs\/react-native,yzarubin\/react-native,pletcher\/react-native,mtford90\/react-native,hoangpham95\/react-native,richardgill\/react-native,pvinis\/react-native-desktop,cxfeng1\/react-native,jeromjoy\/react-native,philikon\/react-native,manhvvhtth\/react-native,mozillo\/react-native,WilliamRen\/react-native,yangshangde\/react-native,daveenguyen\/react-native,Srikanth4\/react-native,exponentjs\/react-native,hoastoolshop\/react-native,rickbeerendonk\/react-native,ouyangwenfeng\/react-native,irisli\/react-native,zenlambda\/react-native,pitatensai\/react-native,nanpian\/react-native,browniefed\/react-native,ptmt\/react-native,adamjmcgrath\/react-native,jmhdez\/react-native,cmhsu\/react-native,philikon\/react-native,Poplava\/react-native,jacobbubu\/react-native,urvashi01\/react-native,alpz5566\/react-native,salanki\/react-native,sudhirj\/react-native,affinityis\/react-native,jonesgithub\/react-native,Shopify\/react-native,sonnylazuardi\/react-native,CodeLinkIO\/react-native,farazs\/react-native,hammerandchisel\/react-native,pcottle\/react-native,insionng\/react-native,cpunion\/react-native,tszajna0\/react-native,pallyoung\/react-native,arbesfeld\/react-native,YinshawnRao\/react-native,oren\/react-native,satya164\/react-native,Lucifer-Kim\/react-native,leegilon\/react-native,pcottle\/react-native,liuzechen\/react-native,taydakov\/react-native,ordinarybill\/react-native,kamronbatman\/react-native,thotegowda\/react-native,jackalchen\/react-native,ouyangwenfeng\/react-native,aroth\/react-native,iOSTestApps\/react-native,onesfreedom\/react-native,beni55\/react-native,dalinaum\/react-native,fish24k\/react-native,ktoh\/react-native,brentvatne\/react-native,zyvas\/react-native,kentaromiura\/react-native,browniefed\/react-native,Maxwell2022\/react-native,andersryanc\/react-native,aaron-goshine\/react-native,oren\/react-native,spyrx7\/react-native,stan229\/react-native,chnfeeeeeef\/react-native,marlonandrade\/react-native,Heart2009\/react-native,forcedotcom\/react-native,aifeld\/react-native,wustxing\/react-native,xinthink\/react-native,WilliamRen\/react-native,yelled3\/react-native,madusankapremaratne\/react-native,chengky\/react-native,liufeigit\/react-native,BretJohnson\/react-native,sekouperry\/react-native,jasonnoahchoi\/react-native,csatf\/react-native,cazacugmihai\/react-native,hengcj\/react-native,htc2u\/react-native,timfpark\/react-native,xiangjuntang\/react-native,jaggs6\/react-native,fw1121\/react-native,barakcoh\/react-native,simple88\/react-native,ouyangwenfeng\/react-native,lightsofapollo\/react-native,Applied-Duality\/react-native,jadbox\/react-native,bouk\/react-native,shadow000902\/react-native,nsimmons\/react-native,Serfenia\/react-native,clozr\/react-native,catalinmiron\/react-native,mrngoitall\/react-native,jordanbyron\/react-native,HSFGitHub\/react-native,jaggs6\/react-native,MonirAbuHilal\/react-native,imWildCat\/react-native,ericvera\/react-native,krock01\/react-native,Bhullnatik\/react-native,YinshawnRao\/react-native,simple88\/react-native,bodefuwa\/react-native,adamterlson\/react-native,eliagrady\/react-native,MattFoley\/react-native,almost\/react-native,code0100fun\/react-native,F2EVarMan\/react-native,foghina\/react-native,yusefnapora\/react-native,YueRuo\/react-native,vincentqiu\/react-native,Shopify\/react-native,richardgill\/react-native,eduardinni\/react-native,PlexChat\/react-native,negativetwelve\/react-native,jabinwang\/react-native,kassens\/react-native,folist\/react-native,tsjing\/react-native,udnisap\/react-native,dylanchann\/react-native,chenbk85\/react-native,ldehai\/react-native,ptmt\/react-native-macos,geoffreyfloyd\/react-native,gs-akhan\/react-native,eduvon0220\/react-native,pjcabrera\/react-native,sahrens\/react-native,tmwoodson\/react-native,HealthyWealthy\/react-native,luqin\/react-native,nbcnews\/react-native,rxb\/react-native,yamill\/react-native,jackeychens\/react-native,bright-sparks\/react-native,ehd\/react-native,brentvatne\/react-native,jmhdez\/react-native,bimawa\/react-native,threepointone\/react-native-1,21451061\/react-native,qingfeng\/react-native,liuzechen\/react-native,edward\/react-native,chrisbutcher\/react-native,dizlexik\/react-native,farazs\/react-native,hassanabidpk\/react-native,lelandrichardson\/react-native,shrutic\/react-native,ChristianHersevoort\/react-native,devknoll\/react-native,doochik\/react-native,magnus-bergman\/react-native,dylanchann\/react-native,jaredly\/react-native,steben\/react-native,NishanthShankar\/react-native,shrutic\/react-native,WilliamRen\/react-native,Andreyco\/react-native,fish24k\/react-native,beni55\/react-native,wangziqiang\/react-native,mosch\/react-native,mtford90\/react-native,cpunion\/react-native,fengshao0907\/react-native,Jonekee\/react-native,myntra\/react-native,charlesvinette\/react-native,nanpian\/react-native,ordinarybill\/react-native,sixtomay\/react-native,udnisap\/react-native,skatpgusskat\/react-native,chnfeeeeeef\/react-native,BretJohnson\/react-native,monyxie\/react-native,skevy\/react-native,code0100fun\/react-native,sospartan\/react-native,bouk\/react-native,arbesfeld\/react-native,miracle2k\/react-native,jeromjoy\/react-native,christopherdro\/react-native,boopathi\/react-native,wangyzyoga\/react-native,ivanph\/react-native,ldehai\/react-native,YueRuo\/react-native,esauter5\/react-native,vincentqiu\/react-native,darkrishabh\/react-native,hesling\/react-native,hoangpham95\/react-native,xinthink\/react-native,ronak301\/react-native,rwwarren\/react-native,alin23\/react-native,kfiroo\/react-native,pvinis\/react-native-desktop,yzarubin\/react-native,shrutic123\/react-native,zhaosichao\/react-native,DenisIzmaylov\/react-native,martinbigio\/react-native,NunoEdgarGub1\/react-native,eduvon0220\/react-native,gegaosong\/react-native,Purii\/react-native,ChiMarvine\/react-native,tszajna0\/react-native,narlian\/react-native,gitim\/react-native,dut3062796s\/react-native,skatpgusskat\/react-native,F2EVarMan\/react-native,southasia\/react-native,milieu\/react-native,jbaumbach\/react-native,skevy\/react-native,taydakov\/react-native,nickhudkins\/react-native,gauribhoite\/react-native,strwind\/react-native,mway08\/react-native,josebalius\/react-native,darkrishabh\/react-native,aroth\/react-native,orenklein\/react-native,rxb\/react-native,foghina\/react-native,richardgill\/react-native,billhello\/react-native,rodneyss\/react-native,Livyli\/react-native,CodeLinkIO\/react-native,javache\/react-native,wesley1001\/react-native,aljs\/react-native,jeanblanchard\/react-native,xiayz\/react-native,yjh0502\/react-native,ankitsinghania94\/react-native,zyvas\/react-native,rollokb\/react-native,chenbk85\/react-native,maskkid\/react-native,taydakov\/react-native,chacbumbum\/react-native,jasonals\/react-native,DerayGa\/react-native,kujohn\/react-native,hassanabidpk\/react-native,honger05\/react-native,milieu\/react-native,makadaw\/react-native,miracle2k\/react-native,Heart2009\/react-native,eddiemonge\/react-native,rwwarren\/react-native,gilesvangruisen\/react-native,aifeld\/react-native,wjb12\/react-native,andersryanc\/react-native,boopathi\/react-native,ajwhite\/react-native,ndejesus1227\/react-native,YinshawnRao\/react-native,liufeigit\/react-native,frantic\/react-native,abdelouahabb\/react-native,gegaosong\/react-native,bradens\/react-native,NunoEdgarGub1\/react-native,jhen0409\/react-native,Lohit9\/react-native,clooth\/react-native,mbrock\/react-native,mironiasty\/react-native,tarkus\/react-native-appletv,bestwpw\/react-native,jasonals\/react-native,guanghuili\/react-native,geoffreyfloyd\/react-native,evansolomon\/react-native,rebeccahughes\/react-native,huangsongyan\/react-native,tarkus\/react-native-appletv,rxb\/react-native,carcer\/react-native,jhen0409\/react-native,Inner89\/react-native,jevakallio\/react-native,jadbox\/react-native,strwind\/react-native,jabinwang\/react-native,mqli\/react-native,quuack\/react-native,jacobbubu\/react-native,JasonZ321\/react-native,wdxgtsh\/react-native,misakuo\/react-native,DannyvanderJagt\/react-native,yamill\/react-native,lloydho\/react-native,slongwang\/react-native,elliottsj\/react-native,CodeLinkIO\/react-native,Purii\/react-native,tgriesser\/react-native,wustxing\/react-native,folist\/react-native,FionaWong\/react-native,kesha-antonov\/react-native,unknownexception\/react-native,noif\/react-native,mjetek\/react-native,genome21\/react-native,RGKzhanglei\/react-native,hassanabidpk\/react-native,esauter5\/react-native,facebook\/react-native,codejet\/react-native,bodefuwa\/react-native,cpunion\/react-native,ndejesus1227\/react-native,DannyvanderJagt\/react-native,tarkus\/react-native-appletv,aaron-goshine\/react-native,a2\/react-native,sahat\/react-native,rebeccahughes\/react-native,nickhargreaves\/react-native,wlrhnh-David\/react-native,kentaromiura\/react-native,chsj1\/react-native,adamterlson\/react-native,bsansouci\/react-native,Serfenia\/react-native,tahnok\/react-native,wdxgtsh\/react-native,yzarubin\/react-native,garrows\/react-native,tsdl2013\/react-native,hwsyy\/react-native,edward\/react-native,lprhodes\/react-native,ronak301\/react-native,ktoh\/react-native,imWildCat\/react-native,oren\/react-native,Emilios1995\/react-native,jasonnoahchoi\/react-native,chiefr\/react-native,alpz5566\/react-native,roy0914\/react-native,happypancake\/react-native,beni55\/react-native,patoroco\/react-native,emodeqidao\/react-native,noif\/react-native,dubert\/react-native,imjerrybao\/react-native,dubert\/react-native,philonpang\/react-native,threepointone\/react-native-1,misakuo\/react-native,imWildCat\/react-native,wangyzyoga\/react-native,Bronts\/react-native,alantrrs\/react-native,martinbigio\/react-native,johnv315\/react-native,misakuo\/react-native,levic92\/react-native,kotdark\/react-native,JoeStanton\/react-native,hammerandchisel\/react-native,yiminghe\/react-native,wlrhnh-David\/react-native,michaelchucoder\/react-native,mrngoitall\/react-native,mway08\/react-native,zuolangguo\/react-native,liuhong1happy\/react-native,cdlewis\/react-native,guanghuili\/react-native,sekouperry\/react-native,Livyli\/react-native,jeanblanchard\/react-native,affinityis\/react-native,liangmingjie\/react-native,threepointone\/react-native-1,marlonandrade\/react-native,manhvvhtth\/react-native,magnus-bergman\/react-native,formatlos\/react-native,miracle2k\/react-native,skatpgusskat\/react-native,PhilippKrone\/react-native,leeyeh\/react-native,exponent\/react-native,jeanblanchard\/react-native,krock01\/react-native,janicduplessis\/react-native,pengleelove\/react-native,a2\/react-native,alantrrs\/react-native,rwwarren\/react-native,ordinarybill\/react-native,alinz\/react-native,iodine\/react-native,yangchengwork\/react-native,roy0914\/react-native,code0100fun\/react-native,j27cai\/react-native,yangshangde\/react-native,rainkong\/react-native,bowlofstew\/react-native,makadaw\/react-native,lgengsy\/react-native,michaelchucoder\/react-native,chsj1\/react-native,Heart2009\/react-native,BretJohnson\/react-native,tgoldenberg\/react-native,quyixia\/react-native,ramoslin02\/react-native,shinate\/react-native,adrie4mac\/react-native,jmstout\/react-native,kentaromiura\/react-native,adamjmcgrath\/react-native,cdlewis\/react-native,nevir\/react-native,ivanph\/react-native,zuolangguo\/react-native,bowlofstew\/react-native,Jericho25\/react-native,steveleec\/react-native,monyxie\/react-native,shrutic\/react-native,kushal\/react-native,marlonandrade\/react-native,IveWong\/react-native,yushiwo\/react-native,yjyi\/react-native,BossKing\/react-native,catalinmiron\/react-native,andrewljohnson\/react-native,DanielMSchmidt\/react-native,ljhsai\/react-native,tsjing\/react-native,alvarojoao\/react-native,Emilios1995\/react-native,ordinarybill\/react-native,orenklein\/react-native,urvashi01\/react-native,YComputer\/react-native,mchinyakov\/react-native,puf\/react-native,MattFoley\/react-native,jhen0409\/react-native,prathamesh-sonpatki\/react-native,dut3062796s\/react-native,mtford90\/react-native,mcanthony\/react-native,nevir\/react-native,DerayGa\/react-native,dimoge\/react-native,bistacos\/react-native,vlrchtlt\/react-native,leegilon\/react-native,lstNull\/react-native,enaqx\/react-native,zvona\/react-native,csudanthi\/react-native,dylanchann\/react-native,sahat\/react-native,kotdark\/react-native,hike2008\/react-native,strwind\/react-native,levic92\/react-native,Serfenia\/react-native,Iragne\/react-native,alantrrs\/react-native,manhvvhtth\/react-native,nevir\/react-native,mozillo\/react-native,wustxing\/react-native,liuhong1happy\/react-native,geoffreyfloyd\/react-native,bradbumbalough\/react-native,hoastoolshop\/react-native,rantianhua\/react-native,stan229\/react-native,mosch\/react-native,vjeux\/react-native,arbesfeld\/react-native,lanceharper\/react-native,ouyangwenfeng\/react-native,bistacos\/react-native,Ehesp\/react-native,prathamesh-sonpatki\/react-native,bsansouci\/react-native,elliottsj\/react-native,adamkrell\/react-native,Zagorakiss\/react-native,farazs\/react-native,DannyvanderJagt\/react-native,Tredsite\/react-native,DerayGa\/react-native,supercocoa\/react-native,rxb\/react-native,dfala\/react-native,Esdeath\/react-native,ide\/react-native,garydonovan\/react-native,nktpro\/react-native,roy0914\/react-native,NunoEdgarGub1\/react-native,Andreyco\/react-native,hesling\/react-native,ChiMarvine\/react-native,ljhsai\/react-native,alin23\/react-native,gpbl\/react-native,Bhullnatik\/react-native,21451061\/react-native,Flickster42490\/react-native,YueRuo\/react-native,liubko\/react-native,jeanblanchard\/react-native,chrisbutcher\/react-native,janicduplessis\/react-native,bowlofstew\/react-native,donyu\/react-native,daveenguyen\/react-native,honger05\/react-native,YComputer\/react-native,leeyeh\/react-native,clooth\/react-native,browniefed\/react-native,DerayGa\/react-native,stan229\/react-native,udnisap\/react-native,ortutay\/react-native,tahnok\/react-native,cosmith\/react-native","old_file":"packager\/launchChromeDevTools.applescript","new_file":"packager\/launchChromeDevTools.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/orenklein\/react-native.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a361d3756677c4f8864db7cccb03f00e1fbff80b","subject":"Fix music script :)","message":"Fix music script :)\n","repos":"anhari\/dotfiles-local,anhari\/dotfiles-local,anhari\/dotfiles-local","old_file":"applescripts\/music.scpt","new_file":"applescripts\/music.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/anhari\/dotfiles-local.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"763bdb1f702edf34468fd302515d3a36abdeadc2","subject":"Newline at end of file.","message":"Newline at end of file.\n","repos":"chashion\/growl,nochkin\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,nochkin\/growl,ylian\/growl,SalrJupiter\/growl,timbck2\/growl,nagyistoce\/growl,xhruso00\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,tectronics\/growl,SalrJupiter\/growl,tectronics\/growl,nochkin\/growl,nkhorman\/archive-growl,an0nym0u5\/growl,chashion\/growl,timbck2\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,timbck2\/growl,morganestes\/morganestes-growl,nochkin\/growl,an0nym0u5\/growl,timbck2\/growl,morganestes\/morganestes-growl,timbck2\/growl,an0nym0u5\/growl,ylian\/growl,ylian\/growl,nochkin\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,nagyistoce\/growl,nagyistoce\/growl,timbck2\/growl,xhruso00\/growl,tectronics\/growl,ylian\/growl,nagyistoce\/growl,morganestes\/morganestes-growl,nochkin\/growl,ylian\/growl,xhruso00\/growl,an0nym0u5\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,chashion\/growl,tectronics\/growl,chashion\/growl,SalrJupiter\/growl,tectronics\/growl,morganestes\/morganestes-growl,chashion\/growl,xhruso00\/growl,chashion\/growl,xhruso00\/growl,tectronics\/growl,xhruso00\/growl,ylian\/growl,SalrJupiter\/growl,nagyistoce\/growl,nagyistoce\/growl,SalrJupiter\/growl","old_file":"Release\/dmg_growl.applescript","new_file":"Release\/dmg_growl.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tectronics\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"bd20627d2f5482723e6b35c72a9e729791573a12","subject":"added zip to sublime-package script","message":"added zip to sublime-package script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"zip-to-sublime-package.applescript","new_file":"zip-to-sublime-package.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"ebb045d6a2d25a2cea2e394fb0b42a284b7b46bf","subject":"Spread Reviews script: bug fixes.","message":"Spread Reviews script: bug fixes.\n","repos":"amcneeney\/osx-scripts","old_file":"OmniFocus\/Spread Reviews.applescript","new_file":"OmniFocus\/Spread Reviews.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d0fd899af8bd0c1fbf67206a55ace1fe726956ce","subject":"Add an apple script made to import all PDF present in a folder to the current OmniGraffle Window and set the name of the file to the new Graffle shape This is really handly when you want to create a new stencil set.","message":"Add an apple script made to import all PDF present in a folder to the current OmniGraffle Window and set the name of the file to the new Graffle shape\nThis is really handly when you want to create a new stencil set.\n\nThanks to Yvan KOENIG who helped me here.\n","repos":"ygini\/osx_misc","old_file":"PDF to Graffle.scpt","new_file":"PDF to Graffle.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ygini\/osx_misc.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"e4348ae37dcffd26eec7de50484b415374d121cb","subject":"Pass contents to attachment scripts","message":"Pass contents to attachment scripts\n\nPass the text of the current window to document attachment scripts. This allows the scripts to either use the path information or the contents. If documentWillSave returns data, it will be used to replace the buffer. For documentDidSave it is ignored.\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1a5a9ca564dbae2ae7cc3253885ede7f7428c56a","subject":"Add barebones applescript wrapper","message":"Add barebones applescript wrapper\n","repos":"ppps\/ms-weather","old_file":"Weather.applescript","new_file":"Weather.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ppps\/ms-weather.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5d16c242f2f1f3591be02936699b95d8b879adf2","subject":"Add Fit to Screen script","message":"Add Fit to Screen script\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Scripts\/FitToScreen.applescript","new_file":"Scripts\/FitToScreen.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7ad352ab65d05dbb5654942be6e7f2bda890a751","subject":"Tiny apple script for easy VPN connection","message":"Tiny apple script for easy VPN connection\n","repos":"altvec\/dotfiles,altvec\/dotfiles,altvec\/dotfiles","old_file":"applescripts\/workVPN.applescript","new_file":"applescripts\/workVPN.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/altvec\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"7374bf39afdada1ca00bf30ceed449227a03b794","subject":"Create Jarvis-Repeat.applescript","message":"Create Jarvis-Repeat.applescript","repos":"gskielian\/Jarvis","old_file":"Jarvis-Repeat.applescript","new_file":"Jarvis-Repeat.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gskielian\/Jarvis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"69f6be6126f801a42f6f68c985d6ea2e9b0178d9","subject":"Script to load Rails dev env.","message":"Script to load Rails dev env.\n","repos":"nagi\/.dotfiles,nagi\/.dotfiles","old_file":"devrails.scpt","new_file":"devrails.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nagi\/.dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"79195635a96c419f0511524c659006331775d839","subject":"script for updating skype mood text to what is now playing on spotify","message":"script for updating skype mood text to what is now playing on spotify\n","repos":"M4Gd\/dotfiles","old_file":"bin\/Spotify2Skype.scpt","new_file":"bin\/Spotify2Skype.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/M4Gd\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"60efc5a3e1a983bd38c3f2779e2bee2599729543","subject":"moved time variable declaration into loop for each order. Was incorrectly using the same start time for every order, recorded at the very beginning of the script","message":"moved time variable declaration into loop for each order. Was incorrectly using the same start time for every order, recorded at the very beginning of the script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d8520e00b8d1265ef6002bb3cc04ba73969732e8","subject":"Create killApp.scpt","message":"Create killApp.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"killApp.scpt","new_file":"killApp.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"bb1b81815797910e29da79e10ec8a3a7f03a6fc1","subject":"ipy in OSX","message":"ipy in OSX\n","repos":"tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise,tebeka\/pythonwise","old_file":"ipy.scpt","new_file":"ipy.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tebeka\/pythonwise.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"8c49005e8efeb1946b79dfca2ee36051e5dc0bc3","subject":"Add AppleScript, which add tracks to playlist","message":"Add AppleScript, which add tracks to playlist\n","repos":"bogem\/nehm","old_file":"lib\/nehm\/playlist.scpt","new_file":"lib\/nehm\/playlist.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/bogem\/nehm.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f473df80c8210d0eee102daa8e0ea6e312dedf19","subject":"try to catch more errors that stop itrc from updating","message":"try to catch more errors that stop itrc from updating\n","repos":"jcs\/itrc","old_file":"iTRC Main.applescript","new_file":"iTRC Main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jcs\/itrc.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"cff78ac9afe136628505f09544ac87754af738e5","subject":"update","message":"update\n","repos":"rcmdnk\/AppleScript","old_file":"eisu.applescript","new_file":"eisu.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rcmdnk\/AppleScript.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"9a1f0b65a5d62d462c738d3439cdf5c6b64b10bc","subject":"fix(mac): tweak installer wording","message":"fix(mac): tweak installer wording\n","repos":"tavultesoft\/keymanweb,tavultesoft\/keymanweb","old_file":"mac\/setup\/Install Keyman.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"mac\/setup\/Install Keyman.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tavultesoft\/keymanweb.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"9a2d2539d066ad333002803e0eacb731bc8d2e99","subject":"Updated Folder Action Scripts to have an ignoreFiles list. This allows the scripts to avoid notifying when .DS_Store and .localized files are created. Users can add other filenames to the list if they want them ignored.","message":"Updated Folder Action Scripts to have an ignoreFiles list. This allows the scripts to avoid notifying when .DS_Store and .localized files are created. Users can add other filenames to the list if they want them ignored.\n\nAlso removed Finder Actions Readme.txt since this has been superseded by Folder Actions Readme.rtfd\n","repos":"chashion\/growl,tectronics\/growl,nagyistoce\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,xhruso00\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,an0nym0u5\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,chashion\/growl,xhruso00\/growl,xhruso00\/growl,timbck2\/growl,nkhorman\/archive-growl,nagyistoce\/growl,nochkin\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,CarlosCD\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,nkhorman\/archive-growl,tectronics\/growl,nochkin\/growl,nochkin\/growl,timbck2\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,xhruso00\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nkhorman\/archive-growl,tectronics\/growl,nochkin\/growl,xhruso00\/growl,morganestes\/morganestes-growl,chashion\/growl,CarlosCD\/growl,nochkin\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,nochkin\/growl,nagyistoce\/growl,ylian\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,ylian\/growl,morganestes\/morganestes-growl,timbck2\/growl,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,SalrJupiter\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,ylian\/growl,CarlosCD\/growl,timbck2\/growl,tectronics\/growl,timbck2\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,chashion\/growl","old_file":"Scripts\/Finder Folder Actions\/add - new item growl alert with filenames.scpt","new_file":"Scripts\/Finder Folder Actions\/add - new item growl alert with filenames.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"a5b45b395c81363998ee6b2ec8e197e30be1110b","subject":"Create \"adjust-brightness\" AppleScript for DarkAdapted","message":"Create \"adjust-brightness\" AppleScript for DarkAdapted\n","repos":"michaelhogg\/configs,michaelhogg\/configs","old_file":"darkadapted\/adjust-brightness.applescript","new_file":"darkadapted\/adjust-brightness.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/michaelhogg\/configs.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f631f2a74a8396d486163dac8a13dbdbcfaf8657","subject":"Thanks to Johann Richard and Ingmar J. Stein, this script is hopefully now more efficient. woo","message":"Thanks to Johann Richard and Ingmar J. Stein, this script is hopefully now more efficient. woo\n","repos":"doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,an0nym0u5\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,tectronics\/growl,nochkin\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,chashion\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,ylian\/growl,ylian\/growl,nkhorman\/archive-growl,tectronics\/growl,tectronics\/growl,CarlosCD\/growl,SalrJupiter\/growl,chashion\/growl,nochkin\/growl,CarlosCD\/growl,SalrJupiter\/growl,CarlosCD\/growl,nochkin\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,nochkin\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,nagyistoce\/growl,chashion\/growl,CarlosCD\/growl,nochkin\/growl,xhruso00\/growl,nkhorman\/archive-growl,nagyistoce\/growl,morganestes\/morganestes-growl,timbck2\/growl,Shalaco\/shalzers-growl,ylian\/growl,CarlosCD\/growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,chashion\/growl,xhruso00\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,ylian\/growl,tectronics\/growl,an0nym0u5\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,ylian\/growl,nochkin\/growl,an0nym0u5\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,timbck2\/growl,CarlosCD\/growl,xhruso00\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,timbck2\/growl,nagyistoce\/growl,tectronics\/growl,timbck2\/growl,chashion\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,ylian\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"2f771104665982f74c7147afee63c9ad71cbd19b","subject":"INTEGRATION: CWS macosxversioning01 (1.1.2); FILE ADDED 2007\/01\/06 23:01:12 mox 1.1.2.5: Manual resync with cws macosx22fixes (only relevant changes), per pjanik's request 2007\/01\/06 22:54:15 mox 1.1.2.4: Add license text, remove user profile migration, per pjanik's request 2007\/01\/06 22:27:34 mox 1.1.2.3: Change versioning strings to match the rest of the OOo code 2006\/12\/30 10:00:54 mox 1.1.2.2: Issue number: #72835# Make the Mac OS X specific application files to automatically get the appropriate OpenOffice.org version. 2006\/12\/29 22:07:19 mox 1.1.2.1: Issue number: #72835# Insert the files moved from desktop module to here, instsetoo_native. Create and adjust makefiles accordingly. Put the files that need versioning in a separate folder, this makes it possible to handle installer stuff (that also needs versioning) in the instsetoo_native\/macosx\/ -folder.","message":"INTEGRATION: CWS macosxversioning01 (1.1.2); FILE ADDED\n2007\/01\/06 23:01:12 mox 1.1.2.5: Manual resync with cws macosx22fixes (only relevant changes), per\npjanik's request\n2007\/01\/06 22:54:15 mox 1.1.2.4: Add license text, remove user profile migration, per pjanik's request\n2007\/01\/06 22:27:34 mox 1.1.2.3: Change versioning strings to match the rest of the OOo code\n2006\/12\/30 10:00:54 mox 1.1.2.2: Issue number: #72835#\nMake the Mac OS X specific application files to automatically get the\nappropriate OpenOffice.org version.\n2006\/12\/29 22:07:19 mox 1.1.2.1: Issue number: #72835#\nInsert the files moved from desktop module to here, instsetoo_native.\nCreate and adjust makefiles accordingly.\nPut the files that need versioning in a separate folder, this makes it\npossible to handle installer stuff (that also needs versioning) in the\ninstsetoo_native\/macosx\/ -folder.\n","repos":"JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core,JurassicWordExcel\/core","old_file":"instsetoo_native\/macosx\/application\/main.applescript","new_file":"instsetoo_native\/macosx\/application\/main.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/JurassicWordExcel\/core.git\/': The requested URL returned error: 403\n","license":"mpl-2.0","lang":"AppleScript"} {"commit":"7b8b6b10439121c67e508e56d73460bf0488cc21","subject":"altered supermerge move script to use regular expressions to find previous job number in customer input","message":"altered supermerge move script to use regular expressions to find previous job number in customer input\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e974ec1b66bbe4224b84a1b3cf07c4a581d6fa87","subject":"Create fliptable.scpt","message":"Create fliptable.scpt","repos":"kkirsche\/textual-applescrits","old_file":"fliptable.scpt","new_file":"fliptable.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kkirsche\/textual-applescrits.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"3cddf86be9837f198026f8f9348344a8e0aa62ad","subject":"Create getMenuItems.scpt","message":"Create getMenuItems.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"AppleScript\/getMenuItems.scpt","new_file":"AppleScript\/getMenuItems.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"1ef4304c44e2a6f08edce36eb1cf3a93aff4cafc","subject":"Send Attachments to Evernote: open the window only after we've added the PDF to the note.","message":"Send Attachments to Evernote: open the window only after we've added the PDF to the note.\n","repos":"amcneeney\/osx-scripts","old_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"902d67015296de8634fa67ac581863034f4dfe87","subject":"added Growl AppleScript Test Script - tests various AppleScript Commands","message":"added Growl AppleScript Test Script - tests various AppleScript Commands\n","repos":"tectronics\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,an0nym0u5\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,tectronics\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,nagyistoce\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,ylian\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,nkhorman\/archive-growl,ylian\/growl,nagyistoce\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,morganestes\/morganestes-growl,ylian\/growl,ylian\/growl,tectronics\/growl,CarlosCD\/growl,an0nym0u5\/growl,CarlosCD\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,nochkin\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,xhruso00\/growl,nochkin\/growl,CarlosCD\/growl,nochkin\/growl,timbck2\/growl,xhruso00\/growl,chashion\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,xhruso00\/growl,chashion\/growl,ylian\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,tectronics\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,timbck2\/growl,CarlosCD\/growl,xhruso00\/growl,timbck2\/growl,tectronics\/growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,chashion\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nochkin\/growl,nagyistoce\/growl,nochkin\/growl,nagyistoce\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl","old_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_file":"Bindings\/applescript\/Test Growl AppleScript.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f7d92f92014ba107ded395d8d6ea7948124baa2a","subject":"unity run","message":"unity run\n","repos":"katapad\/unity-runner","old_file":"run.scpt","new_file":"run.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/katapad\/unity-runner.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b196464c02948f89c05d75501233e801772375ab","subject":"Add proxy script","message":"Add proxy script\n","repos":"libec\/dotfiles","old_file":".scripts\/proxy.scpt","new_file":".scripts\/proxy.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/libec\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1d8f9f17ecf6b9b529cd938f63986dd5fa7d9ca4","subject":"This should be a little more optimized.","message":"This should be a little more optimized.\n","repos":"chashion\/growl,nochkin\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,nagyistoce\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nochkin\/growl,nagyistoce\/growl,ylian\/growl,chashion\/growl,CarlosCD\/growl,timbck2\/growl,CarlosCD\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,nagyistoce\/growl,morganestes\/morganestes-growl,chashion\/growl,CarlosCD\/growl,ylian\/growl,an0nym0u5\/growl,tectronics\/growl,tectronics\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,chashion\/growl,nochkin\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,timbck2\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,ylian\/growl,timbck2\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nagyistoce\/growl,timbck2\/growl,Shalaco\/shalzers-growl,nochkin\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,SalrJupiter\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,CarlosCD\/growl,tectronics\/growl,xhruso00\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,chashion\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,tectronics\/growl,timbck2\/growl,SalrJupiter\/growl,timbck2\/growl,nochkin\/growl,xhruso00\/growl,an0nym0u5\/growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,nochkin\/growl,nkhorman\/archive-growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1b122f6c4ecfb0292ad800e7e1d607f55a73d7ec","subject":"fixed problem with find command returning multiple results. now only returns first result","message":"fixed problem with find command returning multiple results. now only returns first result\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Import FB BG.applescript","new_file":"Import FB BG.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1c37c5a2ef36a3add1875d35cb10612942f11b68","subject":"switched logging to use tab delimeted text instead of excel document. also added username of user running the script to log.","message":"switched logging to use tab delimeted text instead of excel document. also added username of user running the script to log.\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"75b6d9452a7471cef200ac89dbc2f38ab4f55bd9","subject":"put display to sleep","message":"put display to sleep\n","repos":"epochblue\/annoy-a-tron,epochblue\/annoy-a-tron","old_file":"scripts\/sleep.applescript","new_file":"scripts\/sleep.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/epochblue\/annoy-a-tron.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"242be6d55ddda2326661e1e4d0d8f1c1a848df9b","subject":"fixed typo","message":"fixed typo\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c4c958e062401691f96917db57d6e1ae5c207f9e","subject":"NEW: Rewritten Enc. Script","message":"NEW: Rewritten Enc. Script\n","repos":"meengit\/bbdev","old_file":"dev\/Ext. Toolbox\/Ext. Toolbox.DEV\/Contents\/Scripts\/Encryption\/Encrypt with OpenSSL v2.scpt","new_file":"dev\/Ext. Toolbox\/Ext. Toolbox.DEV\/Contents\/Scripts\/Encryption\/Encrypt with OpenSSL v2.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5841020c3edff8764bde18f75f43c6ae3f8d09ee","subject":"A new, friendlier, uninstall script.","message":"A new, friendlier, uninstall script.\n\ngit-svn-id: 0c1c58af2a75831e615d1e25b31255f2faf1ea74@33 0051ed44-974d-0410-95fd-975f363cc5de\n","repos":"CarlosRDomin\/Soundflower,mLupine\/SoundflowerBed,RogueAmoeba\/Soundflower-Original,larstobi\/Soundflower,SiPiggles\/Soundflower,RogueAmoeba\/Soundflower,larstobi\/Soundflower,kawauso\/Soundflower-2x4,SiPiggles\/Soundflower,crmne\/Soundflower,anthonylauzon\/Soundflower,SiPiggles\/Soundflower,BluePhoenix\/Soundflower,martijnpieters\/Soundflower,RogueAmoeba\/Soundflower-Original,RogueAmoeba\/Soundflower-Original,martijnpieters\/Soundflower,wancharle\/Soundflower,larstobi\/Soundflower,pje\/WavTap,ajrulez\/Soundflower,CarlosRDomin\/Soundflower,pje\/WavTap,mattingalls\/Soundflower,mattingalls\/Soundflower,larstobi\/Soundflower,BluePhoenix\/Soundflower,martijnpieters\/Soundflower,CarlosRDomin\/Soundflower,wancharle\/Soundflower,derekjanni\/WavTap,mattingalls\/Soundflower,RogueAmoeba\/Soundflower,tahoeRobbo\/Soundflower,tahoeRobbo\/Soundflower,RogueAmoeba\/Soundflower,tahoeRobbo\/Soundflower,anthonylauzon\/Soundflower,crmne\/Soundflower,mattingalls\/Soundflower,BluePhoenix\/Soundflower,wancharle\/Soundflower,pje\/WavTap,ajrulez\/Soundflower,martijnpieters\/Soundflower,wancharle\/Soundflower,BluePhoenix\/Soundflower,ajrulez\/Soundflower,tahoeRobbo\/Soundflower,anthonylauzon\/Soundflower,RogueAmoeba\/Soundflower-Original,CarlosRDomin\/Soundflower,ajrulez\/Soundflower,crmne\/Soundflower,kawauso\/Soundflower-2x4,crmne\/Soundflower,anthonylauzon\/Soundflower,SiPiggles\/Soundflower,RogueAmoeba\/Soundflower,derekjanni\/WavTap","old_file":"Tools\/Uninstall Soundflower.scpt","new_file":"Tools\/Uninstall Soundflower.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/SiPiggles\/Soundflower.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f8aa7b7a6fb2599950d7be39fe10642b78421a6b","subject":"added focusMenu","message":"added focusMenu\n","repos":"rcmdnk\/AppleScript","old_file":"focusMenu.applescript","new_file":"focusMenu.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rcmdnk\/AppleScript.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2d64eb999c5347c972d5d1aa588a5c03cebeeef1","subject":"added comment for clarity","message":"added comment for clarity\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_1_PREP~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"bfc1148e2ddfb55859aa7896db4860d91513299c","subject":"add apple script to open \/Application\/Calendar","message":"add apple script to open \/Application\/Calendar\n","repos":"owenwater\/alfred-cal","old_file":"open_cal.scpt","new_file":"open_cal.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/owenwater\/alfred-cal.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c9d6db1bc823ec1ad424204080b22f35cdec9571","subject":"No actual change","message":"No actual change\n","repos":"nilness\/mhqtools","old_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"MacHQ Tools 5.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/nilness\/mhqtools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"526ac30061de0cde29308bf02aa39afcfb932d4f","subject":"fixed infinite loop in gluon BC Creator script","message":"fixed infinite loop in gluon BC Creator script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Gluon BC Creator Webimage.applescript","new_file":"Gluon BC Creator Webimage.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f24da81ccc785875487547e2e776b7a930416490","subject":"adding c&p of keynote to evernote extraction script","message":"adding c&p of keynote to evernote extraction script\n\n\nFormer-commit-id: ce9fcfc81c279348cfd33a5a9bec3e345af02b70 [formerly 9605363f138fb10340de63f4487214abff6b4780] [formerly 051b138303e70244af8e270509686d3860540d19]\nFormer-commit-id: 433ff2d6d572479c1695e6dd85a821dbd146d190\nFormer-commit-id: f494d4ebf4212504730b8eae7755d706117851a2","repos":"StanfordHCI\/cs247,StanfordHCI\/cs247,StanfordHCI\/cs247","old_file":"lab\/keynote_extraction_appl.scpt","new_file":"lab\/keynote_extraction_appl.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/StanfordHCI\/cs247.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f30b6b7c1d3e03849c4c8c3ccfb6fde658f15854","subject":"Update Back to Pro Tools.applescript","message":"Update Back to Pro Tools.applescript","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Back to Pro Tools.applescript","new_file":"AppleScripts for Pro Tools\/Back to Pro Tools.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8aa9f06c37e3254bdf2ce14339cb15419684ae9a","subject":"Terminating newline.","message":"Terminating newline.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401574\n","repos":"PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/iPod\/iPod Checker.scpt","new_file":"Scripts\/iPod\/iPod Checker.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"c4a6dec52e36fce4006a1d747c622922765f8ad6","subject":"Create click_DownDragUP.scpt","message":"Create click_DownDragUP.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"click_DownDragUP.scpt","new_file":"click_DownDragUP.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"6b1a380608503c39dd57470427846c54430c8825","subject":"Toggle Skype Mic: remove sound","message":"Toggle Skype Mic: remove sound\n","repos":"hlissner\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions","old_file":"actions\/Toggle Skype Mic.lbaction\/Contents\/Scripts\/default.applescript","new_file":"actions\/Toggle Skype Mic.lbaction\/Contents\/Scripts\/default.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lordlycastle\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"80da73cac67c89ba6f09d359b7f4f5b7006f2e1f","subject":"Add simple clipboard-finder interaction","message":"Add simple clipboard-finder interaction\n","repos":"chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox","old_file":"applescript\/Set_Clipboard_to_Path_of_Chosen_Folder.applescript","new_file":"applescript\/Set_Clipboard_to_Path_of_Chosen_Folder.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/chbrown\/sandbox.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"335c8d903070fb4a0112e8bf7886617d69f14e2f","subject":"Create example of using AppleScript's \"System Events\" to automate Menubar Countdown","message":"Create example of using AppleScript's \"System Events\" to automate Menubar Countdown\n","repos":"kristopherjohnson\/MenubarCountdown","old_file":"Scripts\/AppleScript\/Menubar Countdown System Events Example.scpt","new_file":"Scripts\/AppleScript\/Menubar Countdown System Events Example.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kristopherjohnson\/MenubarCountdown.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1dcc54325cfdf9fc2d6fa299a25552db5b92e46b","subject":"First pass at rating script","message":"First pass at rating script\n","repos":"theriex\/itsip","old_file":"src\/itsipCategorize.applescript","new_file":"src\/itsipCategorize.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/theriex\/itsip.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e762a764dc2ecf6a278424015ca2f8ddeac07bca","subject":"Added empty note script","message":"Added empty note script","repos":"kolovos\/scriptbar","old_file":"io.dimitris.scriptbar\/scripts\/highlights\/Empty.applescript","new_file":"io.dimitris.scriptbar\/scripts\/highlights\/Empty.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kolovos\/scriptbar.git\/': The requested URL returned error: 403\n","license":"epl-1.0","lang":"AppleScript"} {"commit":"6a0b4dc9056cdc7c94e9e5b0de632ff3d571b536","subject":"removed check from HOM calendars 2006","message":"removed check from HOM calendars 2006\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Copy Archived Job For Pick & Prints.applescript","new_file":"Copy Archived Job For Pick & Prints.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"e3f039c4eeff01c07a68ccf96e120c84003111cb","subject":"altered pad printfiles script to not rely on templates as much by creating the correctly sized document on the fly, and also get job number from current document title, or ask user input if there isnt one","message":"altered pad printfiles script to not rely on templates as much by creating the correctly sized document on the fly, and also get job number from current document title, or ask user input if there isnt one\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Pad Printfiles.applescript","new_file":"Pad Printfiles.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"98370a8079ba6e4fefcfc87c9c4557ee4d230d1e","subject":"languages\/littecode\/applescript\/tmp\/test_4.scpt","message":"languages\/littecode\/applescript\/tmp\/test_4.scpt\n","repos":"sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis,sharkspeed\/dororis","old_file":"languages\/littecode\/applescript\/tmp\/test_4.scpt","new_file":"languages\/littecode\/applescript\/tmp\/test_4.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/sharkspeed\/dororis.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"7e23a03d20ea84ce615a76756dd3d0fca41cc88e","subject":"Added AppleScript wrapper.","message":"Added AppleScript wrapper.\n","repos":"heliotrip\/thinkbook2html","old_file":"thinkbook2html.scpt","new_file":"thinkbook2html.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/heliotrip\/thinkbook2html.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"8b4782131aae725c930b88348f1ff08c89db276c","subject":"Tweak Growl commits AppleScript No longer show changed files - this was taking up too much room and was not very useful No longer show Date - not useful Change \"New Revision:\" to \"Revision:\" to match \"Author:\" better","message":"Tweak Growl commits AppleScript\nNo longer show changed files - this was taking up too much room and was not very useful\nNo longer show Date - not useful\nChange \"New Revision:\" to \"Revision:\" to match \"Author:\" better\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401314\n","repos":"incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl","old_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_file":"Scripts\/Growl SVN Repo Scripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"749c70be1911be226da7e3b219507304b2d3b865","subject":"Create getSourceFromAllTabsSafari.scpt","message":"Create getSourceFromAllTabsSafari.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"getSourceFromAllTabsSafari.scpt","new_file":"getSourceFromAllTabsSafari.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"a549aee1a8a18d41de7f419485d66e44fa5462c6","subject":"Create cleanList.scpt","message":"Create cleanList.scpt","repos":"typkrft\/Cookbook-for-AppleScript-and-Shell-Script","old_file":"cleanList.scpt","new_file":"cleanList.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/typkrft\/Cookbook-for-AppleScript-and-Shell-Script.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"518e0af22a0904d935ad8932a341414f9f473e1c","subject":"Added TrackWalker to convert older representations","message":"Added TrackWalker to convert older representations\n","repos":"theriex\/itsip","old_file":"hack\/TrackWalker.applescript","new_file":"hack\/TrackWalker.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/theriex\/itsip.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6c7fd8efdc4f646c98deb7dcfc8a98cdbe04fbd9","subject":"text version of q_workflow","message":"text version of q_workflow\n","repos":"HackerTool\/alfred-reminders","old_file":"q_workflow.applescript","new_file":"q_workflow.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/HackerTool\/alfred-reminders.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"25037e22e5c575fde83b7d2ccd24e92c84e35f94","subject":"demo recorder","message":"demo recorder\n","repos":"eendroroy\/alien-minimal","old_file":"alien-minimal.scpt","new_file":"alien-minimal.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/eendroroy\/alien-minimal.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1d9df5cb1c96e03f80eeb99094ab3b4732640e35","subject":"Added QT_recording Applescript","message":"Added QT_recording Applescript\n","repos":"gkaguirrelab\/LiveTrackfMRIToolbox,gkaguirrelab\/LiveTrackfMRIToolbox","old_file":"Tools\/QT_recording.scpt","new_file":"Tools\/QT_recording.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gkaguirrelab\/LiveTrackfMRIToolbox.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"bdaea4fa72a719376968b8584d48e9b8753dc440","subject":"Delete cache-reminders (Synaesthesia's conflicted copy 2013-10-04).scpt","message":"Delete cache-reminders (Synaesthesia's conflicted copy 2013-10-04).scpt","repos":"HackerTool\/alfred-reminders","old_file":"cache-reminders (Synaesthesia's conflicted copy 2013-10-04).scpt","new_file":"cache-reminders (Synaesthesia's conflicted copy 2013-10-04).scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/HackerTool\/alfred-reminders.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8fd886399f519bee80206476bc33876fe80eb58c","subject":"Uninstall Script now functions correctly on Lion, given changes Apple made to the package receipts path.","message":"Uninstall Script now functions correctly on Lion, given changes Apple made to the package receipts path.\n","repos":"kawauso\/Soundflower-2x4,RogueAmoeba\/Soundflower,crmne\/Soundflower,CarlosRDomin\/Soundflower,mattingalls\/Soundflower,RogueAmoeba\/Soundflower,RogueAmoeba\/Soundflower-Original,crmne\/Soundflower,SiPiggles\/Soundflower,SiPiggles\/Soundflower,mattingalls\/Soundflower,mattingalls\/Soundflower,BluePhoenix\/Soundflower,RogueAmoeba\/Soundflower-Original,SiPiggles\/Soundflower,tahoeRobbo\/Soundflower,CarlosRDomin\/Soundflower,anthonylauzon\/Soundflower,ajrulez\/Soundflower,crmne\/Soundflower,RogueAmoeba\/Soundflower-Original,tahoeRobbo\/Soundflower,wancharle\/Soundflower,ajrulez\/Soundflower,tahoeRobbo\/Soundflower,ajrulez\/Soundflower,CarlosRDomin\/Soundflower,wancharle\/Soundflower,BluePhoenix\/Soundflower,derekjanni\/WavTap,RogueAmoeba\/Soundflower,pje\/WavTap,anthonylauzon\/Soundflower,anthonylauzon\/Soundflower,pje\/WavTap,ajrulez\/Soundflower,derekjanni\/WavTap,martijnpieters\/Soundflower,CarlosRDomin\/Soundflower,mLupine\/SoundflowerBed,wancharle\/Soundflower,larstobi\/Soundflower,wancharle\/Soundflower,BluePhoenix\/Soundflower,larstobi\/Soundflower,larstobi\/Soundflower,pje\/WavTap,anthonylauzon\/Soundflower,kawauso\/Soundflower-2x4,BluePhoenix\/Soundflower,martijnpieters\/Soundflower,larstobi\/Soundflower,RogueAmoeba\/Soundflower-Original,RogueAmoeba\/Soundflower,tahoeRobbo\/Soundflower,martijnpieters\/Soundflower,SiPiggles\/Soundflower,crmne\/Soundflower,martijnpieters\/Soundflower,mattingalls\/Soundflower","old_file":"Tools\/Uninstall Soundflower.scpt","new_file":"Tools\/Uninstall Soundflower.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/SiPiggles\/Soundflower.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"6b66545fb4f914dd32cb3b2e8fb9240b13386f27","subject":"Add AppleScript script, which add track to iTunes playlist","message":"Add AppleScript script, which add track to iTunes playlist\n","repos":"bogem\/nehm","old_file":"lib\/nehm\/playlist.applescript","new_file":"lib\/nehm\/playlist.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/bogem\/nehm.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f8ca38a7146634a3fe2471007d943358576a8063","subject":"Mail to Evernote: use workaround for Evernote bug suggestion by support.","message":"Mail to Evernote: use workaround for Evernote bug suggestion by support.\n","repos":"amcneeney\/osx-scripts","old_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_file":"Mail\/Services\/Send Attachments to Evernote.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/amcneeney\/osx-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"72d2d09598df3233039e796cb3f5757c7a3e6f8f","subject":"Create main.scpt","message":"Create main.scpt","repos":"Fornost461\/JavaDowngrader","old_file":"main.scpt","new_file":"main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Fornost461\/JavaDowngrader.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"e9a7ae462ed71220cbf55d869ccbb9c19ef4690c","subject":"fix doc","message":"fix doc\n","repos":"azizshamim\/thumbscrew,helaili\/thumbscrew","old_file":"thumbscrew.scpt","new_file":"thumbscrew.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/azizshamim\/thumbscrew.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"513435f7c6a0798f8740ea86b0ad6371c0d7c7b3","subject":"add plain text version of helper applescript","message":"add plain text version of helper applescript\n","repos":"yene\/Open-in-Chrome,lhagan\/Open-in-Chrome,yene\/Open-in-Chrome","old_file":"ChromeHelper.applescript","new_file":"ChromeHelper.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lhagan\/Open-in-Chrome.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"87f1813125d192232b48b3c2375ef27721c117cd","subject":"Remove unused openpdf.scpt","message":"Remove unused openpdf.scpt\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf.scpt","new_file":"src\/openpdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"5d97ad330e9786143abf4defcbf9002619eeeb53","subject":"Create Jarvis.applescript","message":"Create Jarvis.applescript","repos":"gskielian\/Jarvis","old_file":"Jarvis.applescript","new_file":"Jarvis.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gskielian\/Jarvis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f141f8111b65b578500a0d9aead5ef15a8bd791f","subject":"Update window name","message":"Update window name","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"Send to RX\/Back to Pro Tools.applescript","new_file":"Send to RX\/Back to Pro Tools.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a4d6b249e196104347828aeed679eda67c71f065","subject":"Add apple script to change terminal background","message":"Add apple script to change terminal background\n","repos":"ArloL\/dotfiles,ArloL\/dotfiles","old_file":"terminal-background.applescript","new_file":"terminal-background.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ArloL\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2616bc74db383e3422f3b6de391555501b6185e8","subject":"Added test script for testing in OSX Terminal.","message":"Added test script for testing in OSX Terminal.\n","repos":"scalien\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,timoc\/scaliendb,scalien\/scaliendb,scalien\/scaliendb,scalien\/scaliendb","old_file":"test\/test.applescript","new_file":"test\/test.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/timoc\/scaliendb.git\/': The requested URL returned error: 403\n","license":"agpl-3.0","lang":"AppleScript"} {"commit":"9b6ee26462b3c347aefad9cf09072ee6d44669c7","subject":"add Toogle Composite View for RX","message":"add Toogle Composite View for RX\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts\/Applications\/iZotope RX 8\/Toggle Composite View.applescript","new_file":"AppleScripts\/Applications\/iZotope RX 8\/Toggle Composite View.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"f19382d60b3fd351c04e96a4587dbbac45a39c61","subject":"now attempts to save and catches errors instead of just failing","message":"now attempts to save and catches errors instead of just failing\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Export Name Badge.applescript","new_file":"Export Name Badge.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"52bd80dc928bc9486379b917ce079b1831598c73","subject":"Add the Photos script for Moments->Album conversion.","message":"Add the Photos script for Moments->Album conversion.\n","repos":"wkoszek\/tools,wkoszek\/tools,wkoszek\/tools","old_file":"osx_photos.scpt","new_file":"osx_photos.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/wkoszek\/tools.git\/': The requested URL returned error: 403\n","license":"bsd-2-clause","lang":"AppleScript"} {"commit":"6071fc9fa8fa39c7969bdc61d6b958512dd46eb0","subject":"multi now gets\/sets Set Variable script steps","message":"multi now gets\/sets Set Variable script steps\n","repos":"DanShockley\/FmClipTools","old_file":"Clipboard FileMAker Objects to Multi-Objects.applescript","new_file":"Clipboard FileMAker Objects to Multi-Objects.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/DanShockley\/FmClipTools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d8f657e4ae2bfa9702b8215fe0906455806c049b","subject":"- Purged old MacOS BT lock script.","message":"- Purged old MacOS BT lock script.\n","repos":"dezwart\/unix_env,pdzwart-atlassian\/unix_env","old_file":"bin\/outofrange.scpt","new_file":"bin\/outofrange.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pdzwart-atlassian\/unix_env.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4c7f7810f558734ded063ab594ddf60c126e64ae","subject":"Add applescript which will send f keystroke to chrome","message":"Add applescript which will send f keystroke to chrome\n","repos":"kimmobrunfeldt\/portal,kimmobrunfeldt\/portal,kimmobrunfeldt\/portal","old_file":"send_f_to_chrome.applescript","new_file":"send_f_to_chrome.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/kimmobrunfeldt\/portal.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"934a5b5a9d873f27094d81546abd301a4d3fd376","subject":"Remove unused code","message":"Remove unused code\n","repos":"ashkanr\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,lordlycastle\/lb6-actions,lordlycastle\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,ashkanr\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions,hlissner\/lb6-actions,lordlycastle\/lb6-actions","old_file":"Get Image in Clipboard.lbaction\/Contents\/Scripts\/default.scpt","new_file":"Get Image in Clipboard.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/lordlycastle\/lb6-actions.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"a4033adc106d552e1a87498fe68e6cd36ee7ff0a","subject":"added more advanced mail.app notification applescript (uses sender's picture and tries to avoid notifying spam)","message":"added more advanced mail.app notification applescript (uses sender's picture and tries to avoid notifying spam)\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%401474\n","repos":"incbee\/Growl,incbee\/Growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl,PersonifyInc\/growl","old_file":"Scripts\/Email\/Mail Advanced.scpt","new_file":"Scripts\/Email\/Mail Advanced.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"185ce6e9b30860ff843f63b94cf721d91c0b58e5","subject":"Update openAutomation function","message":"Update openAutomation function\n\nAdd: menu bar item \"Window\" to the openAutomation() function","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_file":"AppleScripts for Pro Tools\/Suspend Automation.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8cb1d705fed008e44d5413ba85d09f34abe78162","subject":"fix merge conflict. pulled changes to gluon printfile script","message":"fix merge conflict. pulled changes to gluon printfile script\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"Gluon BC Creator Webimage.applescript","new_file":"Gluon BC Creator Webimage.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"3e9ab47ddb8527afad7821fe7b06283078133805","subject":"fix all psk modes when logging","message":"fix all psk modes when logging\n","repos":"mikegrb\/p5-Misc-MacLoggerDX,mikegrb\/p5-Misc-MacLoggerDX","old_file":"Lookup.applescript","new_file":"Lookup.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mikegrb\/p5-Misc-MacLoggerDX.git\/': The requested URL returned error: 403\n","license":"artistic-2.0","lang":"AppleScript"} {"commit":"a72322fe4e602a581c5800888905a674720cb35c","subject":"Scripts to automate ssh into ec2 machines","message":"Scripts to automate ssh into ec2 machines\n","repos":"softwaremill\/mqperf,softwaremill\/mqperf","old_file":"scripts\/ec2.scpt","new_file":"scripts\/ec2.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/softwaremill\/mqperf.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"a54a2cabaec5823b1719ca9fefc5e740505ed375","subject":"Added a quick start script for our OSX users. - It launches all 3 servers (login char map) in a single terminal window, each under it's own tab.","message":"Added a quick start script for our OSX users.\n- It launches all 3 servers (login char map) in a single terminal window, each under it's own tab.\n\ngit-svn-id: c1e39603916b71782cde5facdf0b79eff05c1414@16081 54d463be-8e91-2dee-dedb-b68131a5f0ec\n","repos":"Nipol\/Siesta,Nipol\/Siesta,Nipol\/Siesta","old_file":"mac.rathena-start.scpt","new_file":"mac.rathena-start.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/Nipol\/Siesta.git\/': The requested URL returned error: 403\n","license":"agpl-3.0","lang":"AppleScript"} {"commit":"212f3820997eecdcd7d42db661352b3cf2202abe","subject":"Adding junk ignore if loop. It is only 2 lines to remove if you dislike this.","message":"Adding junk ignore if loop. It is only 2 lines to remove if you dislike this.\n","repos":"coltonfisher\/coltonfisher-growl,nochkin\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,tectronics\/growl,chashion\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,nagyistoce\/growl,nkhorman\/archive-growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,chashion\/growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,timbck2\/growl,timbck2\/growl,xhruso00\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,nkhorman\/archive-growl,ylian\/growl,timbck2\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,CarlosCD\/growl,tectronics\/growl,timbck2\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,ylian\/growl,timbck2\/growl,chashion\/growl,CarlosCD\/growl,chashion\/growl,an0nym0u5\/growl,an0nym0u5\/growl,nochkin\/growl,CarlosCD\/growl,ylian\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,nagyistoce\/growl,xhruso00\/growl,nochkin\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,morganestes\/morganestes-growl,tectronics\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,chashion\/growl,ylian\/growl,CarlosCD\/growl,morganestes\/morganestes-growl,CarlosCD\/growl,chashion\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,nochkin\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,xhruso00\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,nkhorman\/archive-growl,nagyistoce\/growl,tectronics\/growl,nagyistoce\/growl,nkhorman\/archive-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,timbck2\/growl,an0nym0u5\/growl,an0nym0u5\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"f869a9f99dd88e029584e3cf43eec19d598e12da","subject":"Add neovim.app script for Mac OS","message":"Add neovim.app script for Mac OS","repos":"oh-my-neovim\/oh-my-neovim","old_file":"neovim.scpt","new_file":"neovim.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/oh-my-neovim\/oh-my-neovim.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"1defd3afce5e66e192878811289fd95f82923b9b","subject":"removed the old script","message":"removed the old script\n","repos":"danijeljames\/remparallels","old_file":"Remove Parallels.scpt","new_file":"Remove Parallels.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/danijeljames\/remparallels.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"de95f506978763de3a23ed18ab595edd31ca11b3","subject":"replaced all 'do shell script's with functions; fixed ambiguities in variable names & repetitive use of variables; cleaned up whitespace","message":"replaced all 'do shell script's with functions; fixed ambiguities in variable names & repetitive use of variables; cleaned up whitespace\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_file":"SuperMerge\/~SuperMerge_3_MOVE~ALEX.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"75d52e9e8d643e2cd765f8bacfd43a89eaa28126","subject":"add Show Coverage script to display test coverage using CoverStory","message":"add Show Coverage script to display test coverage using CoverStory\n","repos":"blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant,blazingcloud\/sealant","old_file":"Scripts\/ShowCoverage.applescript","new_file":"Scripts\/ShowCoverage.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/blazingcloud\/sealant.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"67a77902bbbe9dae4cbd8eb9c0c11498f7a2f7b4","subject":"FIX: Handling for every thing is fine (no ESLint errors)","message":"FIX: Handling for every thing is fine (no ESLint errors)\n","repos":"meengit\/bbdev","old_file":"dev\/Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run ESLint.scpt","new_file":"dev\/Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run ESLint.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fc43cf88658dbeaf5e9523e745383013747cad44","subject":"Create lockSession.scpt","message":"Create lockSession.scpt","repos":"rodolfosantos\/applescripts","old_file":"lockSession.scpt","new_file":"lockSession.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/rodolfosantos\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0dde75d527522a992225f7c5b20efefe053163c6","subject":"Modifiy terminal background color","message":"Modifiy terminal background color\n","repos":"mgreau\/dotfiles","old_file":"termcolours.scpt","new_file":"termcolours.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mgreau\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0e22b59342b77696125292c8238d2c110d17e6b9","subject":"shouldPrettify made true in Clipboard FileMaker Objects to XML.applescript","message":"shouldPrettify made true in Clipboard FileMaker Objects to XML.applescript\n","repos":"DanShockley\/FmClipTools","old_file":"Clipboard FileMaker Objects to XML.applescript","new_file":"Clipboard FileMaker Objects to XML.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/DanShockley\/FmClipTools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"086c7f5c93525647ac5d88d54d37de0e5580e138","subject":"Add found Preview file-change-reload script","message":"Add found Preview file-change-reload script\n","repos":"chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox,chbrown\/sandbox","old_file":"applescript\/Reload_Preview_Document.applescript","new_file":"applescript\/Reload_Preview_Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/chbrown\/sandbox.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"2c7a1dd6ed9c873ec5dba7dc4807187b9b64130c","subject":"update Suspend Automation","message":"update Suspend Automation\n","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"send to RX\/Suspend Automation.scpt","new_file":"send to RX\/Suspend Automation.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d5aed0cb085fadc2cfca65f711ff98957f1e969a","subject":"AppleScript checked in as text using git filter","message":"AppleScript checked in as text using git filter\n","repos":"gennaios\/alfred-gnosis,gennaios\/alfred-gnosis,gennaios\/alfred-gnosis","old_file":"src\/openpdf.scpt","new_file":"src\/openpdf.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/gennaios\/alfred-gnosis.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"b6ab641c1e6ef6ac6d5249577264874fd30c6979","subject":"Updated script to change notification title based on affected repository","message":"Updated script to change notification title based on affected repository\n","repos":"timbck2\/growl,nochkin\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,ylian\/growl,CarlosCD\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,nagyistoce\/growl,xhruso00\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,morganestes\/morganestes-growl,SalrJupiter\/growl,chashion\/growl,CarlosCD\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,timbck2\/growl,timbck2\/growl,CarlosCD\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,ylian\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,nkhorman\/archive-growl,xhruso00\/growl,morganestes\/morganestes-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,xhruso00\/growl,ylian\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,timbck2\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,CarlosCD\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,chashion\/growl,chashion\/growl,nkhorman\/archive-growl,nkhorman\/archive-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,timbck2\/growl,an0nym0u5\/growl,SalrJupiter\/growl,an0nym0u5\/growl,an0nym0u5\/growl,ylian\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,ylian\/growl,SalrJupiter\/growl,tectronics\/growl,chashion\/growl,tectronics\/growl,chashion\/growl,xhruso00\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,tectronics\/growl,SalrJupiter\/growl,ylian\/growl,nochkin\/growl,nochkin\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,tectronics\/growl,nkhorman\/archive-growl,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,tectronics\/growl,xhruso00\/growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"44d852e7315d419eaf22d2c9a4971a8b55cb944f","subject":"Add Format Java Code script","message":"Add Format Java Code script\n","repos":"drbr\/dotfiles","old_file":"appleScript\/Format Java Code No Line Numbers.scpt","new_file":"appleScript\/Format Java Code No Line Numbers.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/drbr\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"d89aefec5c6b06319400c6c5881f35c43adf4f1a","subject":"Refactor of Document attachment script","message":"Refactor of Document attachment script\n\nLooks for each package to have <package root>\/Contents\/Resources\/package.scpt for the library\n","repos":"ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport,ascarter\/BBEditSupport","old_file":"Attachment Scripts\/Document.applescript","new_file":"Attachment Scripts\/Document.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ascarter\/BBEditSupport.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"03e966a45d34e3f0dda3acd542fd55dfd3c64442","subject":"Initial checkin of basic AppleScript app to notify blinkstick of new IMs","message":"Initial checkin of basic AppleScript app to notify blinkstick of new IMs\n","repos":"ncuster\/bstick","old_file":"BlinkStickIM.applescript","new_file":"BlinkStickIM.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ncuster\/bstick.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"b9bed3d68d6fbe63676b34dd082144b3ca94ae0f","subject":"spotify script for textual irc","message":"spotify script for textual irc\n","repos":"ahluntang\/misc-scripts,ahluntang\/misc-scripts","old_file":"applescript\/spotify.scpt","new_file":"applescript\/spotify.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/ahluntang\/misc-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"fd24e56016bdbdf0ba2f946f1246f01afdaebbf5","subject":"Fix opening AppleScript dictionary","message":"Fix opening AppleScript dictionary\n","repos":"eric-seekas\/CotEditor,angi2\/CotEditor,uchuugaka\/CotEditor,yangchenghu\/CotEditor,angi2\/CotEditor,onevcat\/CotEditor,uchuugaka\/CotEditor,uchuugaka\/CotEditor,eric-seekas\/CotEditor,eric-seekas\/CotEditor,uchuugaka\/CotEditor,angi2\/CotEditor,yangchenghu\/CotEditor,uchuugaka\/CotEditor,uchuugaka\/CotEditor,yangchenghu\/CotEditor,angi2\/CotEditor,eric-seekas\/CotEditor,angi2\/CotEditor,onevcat\/CotEditor,angi2\/CotEditor,yangchenghu\/CotEditor,eric-seekas\/CotEditor,eric-seekas\/CotEditor,eric-seekas\/CotEditor,uchuugaka\/CotEditor,eric-seekas\/CotEditor,onevcat\/CotEditor,yangchenghu\/CotEditor,angi2\/CotEditor,uchuugaka\/CotEditor","old_file":"CotEditor\/InternalScript\/openDictionary.applescript","new_file":"CotEditor\/InternalScript\/openDictionary.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/onevcat\/CotEditor.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"b12ec9204e6a92370f7d818a1ced5770d738cc25","subject":"This should be a little more optimized.","message":"This should be a little more optimized.\n\n--HG--\nextra : convert_revision : svn%3A99687598-2e92-11dd-8019-fe7b9d601d1b\/trunk%40549\n","repos":"incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl,PersonifyInc\/growl,incbee\/Growl,incbee\/Growl,PersonifyInc\/growl","old_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_file":"Examples\/AppleScripts\/Mail Notification.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/incbee\/Growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1e1934557f3bd56474acec6de96fb4eab31c4f75","subject":"add uninstaller.applescript","message":"add uninstaller.applescript\n","repos":"tekezo\/NoEjectDelay,tekezo\/NoEjectDelay,tekezo\/NoEjectDelay","old_file":"files\/extra\/uninstaller.applescript","new_file":"files\/extra\/uninstaller.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/tekezo\/NoEjectDelay.git\/': The requested URL returned error: 403\n","license":"unlicense","lang":"AppleScript"} {"commit":"0c14aab124cef98ddd75bba7366bfc657e8a4c3f","subject":"clean duplicated or dead tracks from itunes","message":"clean duplicated or dead tracks from itunes\n","repos":"metasmile\/termini,stellarstep\/scripts,metasmile\/scripts,stellarstep\/scripts,stellarstep\/scripts,metasmile\/termini,metasmile\/scripts,metasmile\/scripts,metasmile\/termini,metasmile\/scripts,stellarstep\/scripts,metasmile\/scripts,metasmile\/scripts,stellarstep\/scripts,stellarstep\/scripts","old_file":"clean_itunes.scpt","new_file":"clean_itunes.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/metasmile\/termini.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"bccb8be3560beb83ed8e40f330675fd694416b47","subject":"better pwd gen","message":"better pwd gen\n","repos":"mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar,marcomasser\/launchbar-prenagha,mlinzner\/LaunchBar-Actions-Padraic,prenagha\/launchbar,marcomasser\/launchbar-prenagha,Joilence\/launchbar,prenagha\/launchbar","old_file":"Generate Password.lbaction\/Contents\/Scripts\/default.scpt","new_file":"Generate Password.lbaction\/Contents\/Scripts\/default.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/mlinzner\/LaunchBar-Actions-Padraic.git\/': The requested URL returned error: 403\n","license":"apache-2.0","lang":"AppleScript"} {"commit":"7169e78baf07ea55467d6b564aac764896c5a1a6","subject":"added trimWhitespace","message":"added trimWhitespace\n","repos":"NYHTC\/applescript-fm-helper","old_file":"library\/text parsing\/trimWhitespace.applescript","new_file":"library\/text parsing\/trimWhitespace.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/NYHTC\/applescript-fm-helper.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"94a1d8cb241e0997abae455459b3540f7dbbfa89","subject":"Porting code over to Applescript from Python","message":"Porting code over to Applescript from Python\n","repos":"jgallen23\/RTM_QSB","old_file":"rtm_tests.applescript","new_file":"rtm_tests.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/jgallen23\/RTM_QSB.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"0500e85a9ca71238a1cd4af4a363cd3ecac978e7","subject":"Fixed an incorrect boolean test","message":"Fixed an incorrect boolean test\n","repos":"timbck2\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,an0nym0u5\/growl,CarlosCD\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,timbck2\/growl,nochkin\/growl,timbck2\/growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,chashion\/growl,chashion\/growl,SalrJupiter\/growl,xhruso00\/growl,xhruso00\/growl,nochkin\/growl,coltonfisher\/coltonfisher-growl,xhruso00\/growl,xhruso00\/growl,tectronics\/growl,SalrJupiter\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,CarlosCD\/growl,an0nym0u5\/growl,morganestes\/morganestes-growl,SalrJupiter\/growl,nagyistoce\/growl,nochkin\/growl,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,nkhorman\/archive-growl,ylian\/growl,tectronics\/growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,morganestes\/morganestes-growl,nochkin\/growl,nkhorman\/archive-growl,tectronics\/growl,chashion\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,chashion\/growl,timbck2\/growl,doshinirav\/doshinirav-myversion,nochkin\/growl,nagyistoce\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,ylian\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,nochkin\/growl,ylian\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,tectronics\/growl,nkhorman\/archive-growl,SalrJupiter\/growl,an0nym0u5\/growl,xhruso00\/growl,ylian\/growl,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,nkhorman\/archive-growl,CarlosCD\/growl,Shalaco\/shalzers-growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,timbck2\/growl,nagyistoce\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,Shalaco\/shalzers-growl,CarlosCD\/growl,SalrJupiter\/growl,nkhorman\/archive-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,CarlosCD\/growl,an0nym0u5\/growl","old_file":"Examples\/AppleScripts\/Growl commits.scpt","new_file":"Examples\/AppleScripts\/Growl commits.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"5d7523e3600525997109a48c17d4b59614d2173a","subject":"add script to rename iTunes tracks","message":"add script to rename iTunes tracks\n","repos":"pjones\/emacsrc","old_file":"macosx\/scripts\/release-date-in-name.applescript","new_file":"macosx\/scripts\/release-date-in-name.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/pjones\/emacsrc.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"3e3306da685202e74915af678b7f5a8adf5b21b4","subject":"Update description","message":"Update description","repos":"fantopop\/post-production-scripts,fantopop\/post-production-scripts,fantopop\/post-production-scripts","old_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_file":"AppleScripts for Pro Tools\/Render & Fades.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/fantopop\/post-production-scripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"440b7883243621e303ba691fb00c3c8afd38e62a","subject":"Salling Clicker script: - fixed spelling typo - tried to fix #193","message":"Salling Clicker script:\n- fixed spelling typo\n- tried to fix #193\n","repos":"chashion\/growl,xhruso00\/growl,chashion\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,nkhorman\/archive-growl,timbck2\/growl,Shalaco\/shalzers-growl,chashion\/growl,tectronics\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,tectronics\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,CarlosCD\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,ylian\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,chashion\/growl,ylian\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,Shalaco\/shalzers-growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,Shalaco\/shalzers-growl,CarlosCD\/growl,coltonfisher\/coltonfisher-growl,ylian\/growl,xhruso00\/growl,coltonfisher\/coltonfisher-growl,SalrJupiter\/growl,nagyistoce\/growl,xhruso00\/growl,timbck2\/growl,timbck2\/growl,ylian\/growl,chashion\/growl,CarlosCD\/growl,an0nym0u5\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,tectronics\/growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,morganestes\/morganestes-growl,nochkin\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,nkhorman\/archive-growl,nagyistoce\/growl,nochkin\/growl,nochkin\/growl,nkhorman\/archive-growl,chashion\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,nagyistoce\/growl,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,morganestes\/morganestes-growl,an0nym0u5\/growl,nochkin\/growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,nkhorman\/archive-growl,tectronics\/growl,doshinirav\/doshinirav-myversion,tectronics\/growl,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,nagyistoce\/growl,morganestes\/morganestes-growl,timbck2\/growl,an0nym0u5\/growl,tectronics\/growl,Shalaco\/shalzers-growl,nagyistoce\/growl,timbck2\/growl,ylian\/growl,nochkin\/growl,xhruso00\/growl,an0nym0u5\/growl,coltonfisher\/coltonfisher-growl","old_file":"Scripts\/Salling Clicker\/Growl Calling Information.scpt","new_file":"Scripts\/Salling Clicker\/Growl Calling Information.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"59db08281d1ff9915a65f3a7c6fd9bb16346bd62","subject":"removed old check for existence of pdf","message":"removed old check for existence of pdf\n","repos":"AlexanderGalen\/applescripts,AlexanderGalen\/applescripts","old_file":"FIP Script Working.applescript","new_file":"FIP Script Working.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/AlexanderGalen\/applescripts.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"8a76a7688581a4abbe6febac6b41733cf0641e4b","subject":"Update Safari New Tab script","message":"Update Safari New Tab script\n","repos":"stevenberg\/dotfiles,stevenberg\/dotfiles,stevenberg\/dotfiles","old_file":"tag-mac\/Library\/Scripts\/Applications\/Safari\/New Tab.scpt","new_file":"tag-mac\/Library\/Scripts\/Applications\/Safari\/New Tab.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/stevenberg\/dotfiles.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"01a484ded47b968deeb8d0bfbdfcc8fc8082803c","subject":"Only quit GHA and GrowlMenu if they are actually running","message":"Only quit GHA and GrowlMenu if they are actually running\n","repos":"tectronics\/growl,nkhorman\/archive-growl,ylian\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,doshinirav\/doshinirav-myversion,CarlosCD\/growl,nagyistoce\/growl,nkhorman\/archive-growl,Shalaco\/shalzers-growl,ylian\/growl,timbck2\/growl,tectronics\/growl,xhruso00\/growl,nagyistoce\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,ylian\/growl,doshinirav\/doshinirav-myversion,doshinirav\/doshinirav-myversion,an0nym0u5\/growl,doshinirav\/doshinirav-myversion,SalrJupiter\/growl,timbck2\/growl,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,CarlosCD\/growl,chashion\/growl,nochkin\/growl,Shalaco\/shalzers-growl,tectronics\/growl,morganestes\/morganestes-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,CarlosCD\/growl,SalrJupiter\/growl,tectronics\/growl,coltonfisher\/coltonfisher-growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,chashion\/growl,nkhorman\/archive-growl,CarlosCD\/growl,SalrJupiter\/growl,morganestes\/morganestes-growl,Shalaco\/shalzers-growl,coltonfisher\/coltonfisher-growl,doshinirav\/doshinirav-myversion,xhruso00\/growl,nochkin\/growl,nochkin\/growl,Shalaco\/shalzers-growl,ylian\/growl,chashion\/growl,nkhorman\/archive-growl,nagyistoce\/growl,Shalaco\/shalzers-growl,xhruso00\/growl,timbck2\/growl,coltonfisher\/coltonfisher-growl,nochkin\/growl,xhruso00\/growl,an0nym0u5\/growl,chashion\/growl,Shalaco\/shalzers-growl,tectronics\/growl,an0nym0u5\/growl,xhruso00\/growl,nagyistoce\/growl,Shalaco\/shalzers-growl,morganestes\/morganestes-growl,SalrJupiter\/growl,morganestes\/morganestes-growl,an0nym0u5\/growl,Shalaco\/shalzers-growl,an0nym0u5\/growl,tectronics\/growl,CarlosCD\/growl,SalrJupiter\/growl,doshinirav\/doshinirav-myversion,coltonfisher\/coltonfisher-growl,morganestes\/morganestes-growl,chashion\/growl,nkhorman\/archive-growl,xhruso00\/growl,timbck2\/growl,CarlosCD\/growl,an0nym0u5\/growl,timbck2\/growl,ylian\/growl,chashion\/growl,nagyistoce\/growl,ylian\/growl,CarlosCD\/growl,SalrJupiter\/growl,Shalaco\/shalzers-growl","old_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_file":"Release\/Uninstall Growl.app\/Contents\/Resources\/Scripts\/main.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/CarlosCD\/growl.git\/': The requested URL returned error: 403\n","license":"bsd-3-clause","lang":"AppleScript"} {"commit":"1d755534dc1f7f9ea9f7d32858ab888e395281f3","subject":"updated Perform Find to Scritp Steps to auto-paste and add better warning","message":"updated Perform Find to Scritp Steps to auto-paste and add better warning\n","repos":"DanShockley\/FmClipTools","old_file":"Perform Find to Script Steps.applescript","new_file":"Perform Find to Script Steps.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/DanShockley\/FmClipTools.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"4b6968000a181af21cd555896b4287033a33d45c","subject":"removed a comment suggesting a different method of bringing FCP to front. Tried it, didn't work.","message":"removed a comment suggesting a different method of bringing FCP to front. Tried it, didn't work.\n\ngit-svn-id: c87f87383e9e570476b37173748f840982b11a31@163 a0cc1e66-070c-0410-9f8a-b213d8d4c38a\n","repos":"joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters,joemaller\/joesfilters","old_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_file":"fxscriptcompiler\/Joe's FXScript Compiler.applescript","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/joemaller\/joesfilters.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"c41f5e122bc611054873abe3c6be2bc84dd7538b","subject":"NEW: First part of Version 2 in applescript","message":"NEW: First part of Version 2 in applescript\n","repos":"meengit\/bbdev","old_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs v2.scpt","new_file":"Linter Toolbox\/Linter Toolbox.DEV\/Contents\/Scripts\/Run jscs v2.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/meengit\/bbdev.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"} {"commit":"051b138303e70244af8e270509686d3860540d19","subject":"adding c&p of keynote to evernote extraction script","message":"adding c&p of keynote to evernote extraction script\n","repos":"mbernst\/website,bsoe003\/introHCI_Website,bsoe003\/introHCI_Website,IntroHCI\/website,mbernst\/website,bsoe003\/introHCI_Website,bsoe003\/introHCI_Website,bsoe003\/introHCI_Website,IntroHCI\/website","old_file":"lab\/keynote_extraction_appl.scpt","new_file":"lab\/keynote_extraction_appl.scpt","new_contents":"","old_contents":"","returncode":128,"stderr":"fatal: unable to access 'https:\/\/github.com\/IntroHCI\/website.git\/': The requested URL returned error: 403\n","license":"mit","lang":"AppleScript"}